From 8091b230927854520c3e94bb378a0547c748f536 Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 23 Oct 2023 16:38:00 +0200 Subject: [PATCH 01/61] feat: remove fn_suffix and add dir_suffix to have for each template a separate dir and benchmark that can be run via the new groups --- data/text_sampling/text_sampling.py | 183 ++++++++++++++++++---------- 1 file changed, 118 insertions(+), 65 deletions(-) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index e4ae707df..68b910bcd 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -48,22 +48,22 @@ User: Yes, the molecule should have a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}: {SMILES#}""", # noqa: E501 # Benchmarking text templates - "The {TARGET__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 - "The {TARGET__names__noun} of the {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 - "The {TARGET__names__noun} of the molecule {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the molecule with the {SMILES__description} {SMILES#} is:{TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the {SMILES__description} {SMILES#} is:{TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the molecule {SMILES__description} {SMILES#} is:{TARGET#} {TARGET__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {TARGET__names__noun} in {TARGET__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {TARGET__units} without using any {#other|additional!} words. -Result: {TARGET#} {TARGET__units}""", # noqa: E501 +Result:{TARGET#} {TARGET__units}""", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {TARGET__names__noun} in {TARGET__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {TARGET__units} without the unit and without using any {#other|additional!} words. -Result: {TARGET#}""", # noqa: E501 +Result:{TARGET#}""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. Description: A molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}. -Result: {SMILES#}""", # noqa: E501 +Result:{SMILES#}""", # noqa: E501 ] @@ -132,18 +132,15 @@ lm_eval_yaml_template_loglikelihood = { "group": [ + "chemnlp", "loglikelihood", ], "task": None, "dataset_path": None, "dataset_name": None, "output_type": "loglikelihood", - "test_split": "test", - "template_aliases": "", - "doc_to_text": "{{input}}", - "doc_to_target": "{{output}}", - # "should_decontaminate": True, - # "doc_to_decontamination_query": "{{text}}", + "doc_to_text": "input", + "doc_to_target": "output", "metric_list": [ { "metric": "perplexity", @@ -160,19 +157,16 @@ lm_eval_yaml_template_multiple_choice = { "group": [ + "chemnlp", "multiple_choice", ], "task": None, "dataset_path": None, "dataset_name": None, "output_type": "multiple_choice", - "test_split": "test", - "template_aliases": "{% set gold = correct_output_index %}", - "doc_to_text": "{{input}}", - "doc_to_target": "{{output}}", - "gold_alias": "{{gold}}", - # "should_decontaminate": True, - # "doc_to_decontamination_query": "{{text}}", + "doc_to_text": "input", + "doc_to_target": "output", + "doc_to_choice": "{{answer_choices}}", "metric_list": [ { "metric": "acc", @@ -818,7 +812,7 @@ def apply_sampling(self, template_idx: int = None): lambda sample: self.sample(sample, template_idx), axis=1 ) - def export(self, fn_suffix: str = None): + def export(self, dir_suffix: str = None): """Exports the sampled data as separate jsonl files based on the split and benchmarking templates.""" assert "sample" in self.df.columns, "Run apply_sampling before running export." print_data = { @@ -869,30 +863,46 @@ def export(self, fn_suffix: str = None): str, str_presenter ) # to use with safe_dum + group_name = self.path_data_dir.split("/")[-1] + if self.multiple_choice_benchmarking_templates: if self.multiple_choice_benchmarking_format: - output_path_dir = ( - self.path_lm_eval_data_dir - + f"/{self.path_data_dir.split('/')[-1]}_benchmark_multiple_choice_format-{self.multiple_choice_benchmarking_format}/" # noqa: E501 + task_name = ( + group_name + + f"_benchmark_multiple_choice_format-{self.multiple_choice_benchmarking_format}" ) else: - output_path_dir = ( - self.path_lm_eval_data_dir - + f"/{self.path_data_dir.split('/')[-1]}_benchmark_multiple_choice_format/" # noqa: E501 - ) - + if dir_suffix: + task_name = ( + group_name + f"_benchmark_multiple_choice_{dir_suffix}" + ) + else: + task_name = group_name + "_benchmark_multiple_choice" + + output_path_dir = os.path.abspath( + self.path_lm_eval_data_dir + f"/{task_name}/" + ) os.makedirs(output_path_dir, exist_ok=True) - output_path = output_path_dir + f"{split}.jsonl" + output_path = output_path_dir + f"/{split}.jsonl" - lm_eval_yaml_template_multiple_choice[ - "task" - ] = self.path_data_dir.split("/")[-1] + lm_eval_yaml_template_multiple_choice["group"].append(group_name) + lm_eval_yaml_template_multiple_choice["task"] = task_name lm_eval_yaml_template_multiple_choice[ "dataset_path" ] = output_path_dir - lm_eval_yaml_template_multiple_choice[ - "dataset_name" - ] = self.path_data_dir.split("/")[-1] + lm_eval_yaml_template_multiple_choice["dataset_name"] = task_name + + for split_out in self.df.split.unique(): + if split_out == "train": + lm_eval_yaml_template_multiple_choice[ + "training_split" + ] = "train" + if split_out == "valid": + lm_eval_yaml_template_multiple_choice[ + "validation_split" + ] = "validation" + if split_out == "valid": + lm_eval_yaml_template_multiple_choice["test_split"] = "test" fn_lm_eval_yaml = output_path_dir + "/config.yaml" with open(fn_lm_eval_yaml, "w") as f: @@ -900,22 +910,38 @@ def export(self, fn_suffix: str = None): lm_eval_yaml_template_multiple_choice, f, sort_keys=False ) else: - output_path_dir = ( - self.path_lm_eval_data_dir - + f"/{self.path_data_dir.split('/')[-1]}_benchmark/" + if dir_suffix: + task_name = ( + self.path_data_dir.split("/")[-1] + + f"_benchmark_{dir_suffix}" + ) + else: + task_name = self.path_data_dir.split("/")[-1] + "_benchmark" + + output_path_dir = os.path.abspath( + self.path_lm_eval_data_dir + f"/{task_name}/" ) os.makedirs(output_path_dir, exist_ok=True) - output_path = output_path_dir + f"{split}_{fn_suffix}.jsonl" + output_path = output_path_dir + f"/{split}.jsonl" - lm_eval_yaml_template_loglikelihood[ - "task" - ] = self.path_data_dir.split("/")[-1] + lm_eval_yaml_template_loglikelihood["group"].append(group_name) + lm_eval_yaml_template_loglikelihood["task"] = task_name lm_eval_yaml_template_loglikelihood[ "dataset_path" ] = output_path_dir - lm_eval_yaml_template_loglikelihood[ - "dataset_name" - ] = self.path_data_dir.split("/")[-1] + lm_eval_yaml_template_loglikelihood["dataset_name"] = task_name + + for split_out in self.df.split.unique(): + if split_out == "train": + lm_eval_yaml_template_loglikelihood[ + "training_split" + ] = "train" + if split_out == "valid": + lm_eval_yaml_template_loglikelihood[ + "validation_split" + ] = "validation" + if split_out == "valid": + lm_eval_yaml_template_loglikelihood["test_split"] = "test" fn_lm_eval_yaml = output_path_dir + "/config.yaml" with open(fn_lm_eval_yaml, "w") as f: @@ -923,15 +949,18 @@ def export(self, fn_suffix: str = None): lm_eval_yaml_template_loglikelihood, f, sort_keys=False ) else: - output_path_dir = ( - self.path_lm_eval_data_dir - + f"/{self.path_data_dir.split('/')[-1]}/" + group_name = self.path_data_dir.split("/")[-1] + + if dir_suffix: + task_name = group_name + f"_{dir_suffix}" + else: + task_name = group_name + + output_path_dir = os.path.abspath( + self.path_lm_eval_data_dir + f"/{task_name}/" ) os.makedirs(output_path_dir, exist_ok=True) - if fn_suffix is not None: - output_path = output_path_dir + f"{split}_{fn_suffix}.jsonl" - else: - output_path = output_path_dir + f"{split}.jsonl" + output_path = output_path_dir + f"/{split}.jsonl" with open(output_path, "w") as f: f.write(df_out.to_json(orient="records", lines=True, force_ascii=False)) @@ -949,11 +978,11 @@ def export(self, fn_suffix: str = None): return pd.DataFrame(print_data) def apply_sampling_and_export( - self, template_idx: int = None, fn_suffix: str = None + self, template_idx: int = None, dir_suffix: str = None ): """Applies the sampling and exports the data.""" self.apply_sampling(template_idx=template_idx) - df_results = self.export(fn_suffix=fn_suffix) + df_results = self.export(dir_suffix=dir_suffix) print(f"\n### results\n{df_results.to_string()}") @@ -1057,7 +1086,7 @@ def apply_sampling_and_export( print(f"\nRunning sampling for template {i}:\n{template}") tempsamp.apply_sampling_and_export( template_idx=i, - fn_suffix=i, + dir_suffix=str(i), ) if any(["" in t for t in meta["templates"]]): @@ -1089,19 +1118,12 @@ def apply_sampling_and_export( print(f"\nRunning sampling for template {i}:\n{template}") tempsamp.apply_sampling_and_export( template_idx=i, - fn_suffix=i, + dir_suffix=str(i), ) if any(["%multiple_choice_" in t for t in meta["templates"]]): - TemplateSampler( - path, - path_lm_eval_data_dir, - multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, - additional_templates=additional_templates, - benchmarking_templates=True, - multiple_choice_benchmarking_templates=True, - ).apply_sampling_and_export() - + # uncomment to sample from all templates for each benchmarking format + # and save the output to a separate directory # for i, s in enumerate(multiple_choice_rnd_symbols): # TemplateSampler( # path, @@ -1112,3 +1134,34 @@ def apply_sampling_and_export( # multiple_choice_benchmarking_templates=True, # multiple_choice_benchmarking_format=i, # ).apply_sampling_and_export() + + # uncomment to randomly sample from all templates and save the output to a single file + # TemplateSampler( + # path, + # path_lm_eval_data_dir, + # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + # additional_templates=additional_templates, + # benchmarking_templates=True, + # multiple_choice_benchmarking_templates=True, + # ).apply_sampling_and_export() + + tempsamp = TemplateSampler( + path, + path_lm_eval_data_dir, + multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + additional_templates=additional_templates, + benchmarking_templates=True, + multiple_choice_benchmarking_templates=True, + ) + for i, template in enumerate( + [ + t + for t in meta["templates"] + if "" in t and "%multiple_choice_" in t + ] + ): + print(f"\nRunning sampling for template {i}:\n{template}") + tempsamp.apply_sampling_and_export( + template_idx=i, + dir_suffix=str(i), + ) From efae142a365065cf030fcbd73b3df225610f17cf Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 23 Oct 2023 16:47:48 +0200 Subject: [PATCH 02/61] Revert "feat: remove fn_suffix and add dir_suffix to have for each template a separate dir and benchmark that can be run via the new groups" This reverts commit 8091b230927854520c3e94bb378a0547c748f536. --- data/text_sampling/text_sampling.py | 183 ++++++++++------------------ 1 file changed, 65 insertions(+), 118 deletions(-) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 68b910bcd..e4ae707df 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -48,22 +48,22 @@ User: Yes, the molecule should have a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}: {SMILES#}""", # noqa: E501 # Benchmarking text templates - "The {TARGET__names__noun} of the molecule with the {SMILES__description} {SMILES#} is:{TARGET#} {TARGET__units}", # noqa: E501 - "The {TARGET__names__noun} of the {SMILES__description} {SMILES#} is:{TARGET#} {TARGET__units}", # noqa: E501 - "The {TARGET__names__noun} of the molecule {SMILES__description} {SMILES#} is:{TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the molecule {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {TARGET__names__noun} in {TARGET__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {TARGET__units} without using any {#other|additional!} words. -Result:{TARGET#} {TARGET__units}""", # noqa: E501 +Result: {TARGET#} {TARGET__units}""", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {TARGET__names__noun} in {TARGET__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {TARGET__units} without the unit and without using any {#other|additional!} words. -Result:{TARGET#}""", # noqa: E501 +Result: {TARGET#}""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. Description: A molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}. -Result:{SMILES#}""", # noqa: E501 +Result: {SMILES#}""", # noqa: E501 ] @@ -132,15 +132,18 @@ lm_eval_yaml_template_loglikelihood = { "group": [ - "chemnlp", "loglikelihood", ], "task": None, "dataset_path": None, "dataset_name": None, "output_type": "loglikelihood", - "doc_to_text": "input", - "doc_to_target": "output", + "test_split": "test", + "template_aliases": "", + "doc_to_text": "{{input}}", + "doc_to_target": "{{output}}", + # "should_decontaminate": True, + # "doc_to_decontamination_query": "{{text}}", "metric_list": [ { "metric": "perplexity", @@ -157,16 +160,19 @@ lm_eval_yaml_template_multiple_choice = { "group": [ - "chemnlp", "multiple_choice", ], "task": None, "dataset_path": None, "dataset_name": None, "output_type": "multiple_choice", - "doc_to_text": "input", - "doc_to_target": "output", - "doc_to_choice": "{{answer_choices}}", + "test_split": "test", + "template_aliases": "{% set gold = correct_output_index %}", + "doc_to_text": "{{input}}", + "doc_to_target": "{{output}}", + "gold_alias": "{{gold}}", + # "should_decontaminate": True, + # "doc_to_decontamination_query": "{{text}}", "metric_list": [ { "metric": "acc", @@ -812,7 +818,7 @@ def apply_sampling(self, template_idx: int = None): lambda sample: self.sample(sample, template_idx), axis=1 ) - def export(self, dir_suffix: str = None): + def export(self, fn_suffix: str = None): """Exports the sampled data as separate jsonl files based on the split and benchmarking templates.""" assert "sample" in self.df.columns, "Run apply_sampling before running export." print_data = { @@ -863,46 +869,30 @@ def export(self, dir_suffix: str = None): str, str_presenter ) # to use with safe_dum - group_name = self.path_data_dir.split("/")[-1] - if self.multiple_choice_benchmarking_templates: if self.multiple_choice_benchmarking_format: - task_name = ( - group_name - + f"_benchmark_multiple_choice_format-{self.multiple_choice_benchmarking_format}" + output_path_dir = ( + self.path_lm_eval_data_dir + + f"/{self.path_data_dir.split('/')[-1]}_benchmark_multiple_choice_format-{self.multiple_choice_benchmarking_format}/" # noqa: E501 ) else: - if dir_suffix: - task_name = ( - group_name + f"_benchmark_multiple_choice_{dir_suffix}" - ) - else: - task_name = group_name + "_benchmark_multiple_choice" - - output_path_dir = os.path.abspath( - self.path_lm_eval_data_dir + f"/{task_name}/" - ) + output_path_dir = ( + self.path_lm_eval_data_dir + + f"/{self.path_data_dir.split('/')[-1]}_benchmark_multiple_choice_format/" # noqa: E501 + ) + os.makedirs(output_path_dir, exist_ok=True) - output_path = output_path_dir + f"/{split}.jsonl" + output_path = output_path_dir + f"{split}.jsonl" - lm_eval_yaml_template_multiple_choice["group"].append(group_name) - lm_eval_yaml_template_multiple_choice["task"] = task_name + lm_eval_yaml_template_multiple_choice[ + "task" + ] = self.path_data_dir.split("/")[-1] lm_eval_yaml_template_multiple_choice[ "dataset_path" ] = output_path_dir - lm_eval_yaml_template_multiple_choice["dataset_name"] = task_name - - for split_out in self.df.split.unique(): - if split_out == "train": - lm_eval_yaml_template_multiple_choice[ - "training_split" - ] = "train" - if split_out == "valid": - lm_eval_yaml_template_multiple_choice[ - "validation_split" - ] = "validation" - if split_out == "valid": - lm_eval_yaml_template_multiple_choice["test_split"] = "test" + lm_eval_yaml_template_multiple_choice[ + "dataset_name" + ] = self.path_data_dir.split("/")[-1] fn_lm_eval_yaml = output_path_dir + "/config.yaml" with open(fn_lm_eval_yaml, "w") as f: @@ -910,38 +900,22 @@ def export(self, dir_suffix: str = None): lm_eval_yaml_template_multiple_choice, f, sort_keys=False ) else: - if dir_suffix: - task_name = ( - self.path_data_dir.split("/")[-1] - + f"_benchmark_{dir_suffix}" - ) - else: - task_name = self.path_data_dir.split("/")[-1] + "_benchmark" - - output_path_dir = os.path.abspath( - self.path_lm_eval_data_dir + f"/{task_name}/" + output_path_dir = ( + self.path_lm_eval_data_dir + + f"/{self.path_data_dir.split('/')[-1]}_benchmark/" ) os.makedirs(output_path_dir, exist_ok=True) - output_path = output_path_dir + f"/{split}.jsonl" + output_path = output_path_dir + f"{split}_{fn_suffix}.jsonl" - lm_eval_yaml_template_loglikelihood["group"].append(group_name) - lm_eval_yaml_template_loglikelihood["task"] = task_name + lm_eval_yaml_template_loglikelihood[ + "task" + ] = self.path_data_dir.split("/")[-1] lm_eval_yaml_template_loglikelihood[ "dataset_path" ] = output_path_dir - lm_eval_yaml_template_loglikelihood["dataset_name"] = task_name - - for split_out in self.df.split.unique(): - if split_out == "train": - lm_eval_yaml_template_loglikelihood[ - "training_split" - ] = "train" - if split_out == "valid": - lm_eval_yaml_template_loglikelihood[ - "validation_split" - ] = "validation" - if split_out == "valid": - lm_eval_yaml_template_loglikelihood["test_split"] = "test" + lm_eval_yaml_template_loglikelihood[ + "dataset_name" + ] = self.path_data_dir.split("/")[-1] fn_lm_eval_yaml = output_path_dir + "/config.yaml" with open(fn_lm_eval_yaml, "w") as f: @@ -949,18 +923,15 @@ def export(self, dir_suffix: str = None): lm_eval_yaml_template_loglikelihood, f, sort_keys=False ) else: - group_name = self.path_data_dir.split("/")[-1] - - if dir_suffix: - task_name = group_name + f"_{dir_suffix}" - else: - task_name = group_name - - output_path_dir = os.path.abspath( - self.path_lm_eval_data_dir + f"/{task_name}/" + output_path_dir = ( + self.path_lm_eval_data_dir + + f"/{self.path_data_dir.split('/')[-1]}/" ) os.makedirs(output_path_dir, exist_ok=True) - output_path = output_path_dir + f"/{split}.jsonl" + if fn_suffix is not None: + output_path = output_path_dir + f"{split}_{fn_suffix}.jsonl" + else: + output_path = output_path_dir + f"{split}.jsonl" with open(output_path, "w") as f: f.write(df_out.to_json(orient="records", lines=True, force_ascii=False)) @@ -978,11 +949,11 @@ def export(self, dir_suffix: str = None): return pd.DataFrame(print_data) def apply_sampling_and_export( - self, template_idx: int = None, dir_suffix: str = None + self, template_idx: int = None, fn_suffix: str = None ): """Applies the sampling and exports the data.""" self.apply_sampling(template_idx=template_idx) - df_results = self.export(dir_suffix=dir_suffix) + df_results = self.export(fn_suffix=fn_suffix) print(f"\n### results\n{df_results.to_string()}") @@ -1086,7 +1057,7 @@ def apply_sampling_and_export( print(f"\nRunning sampling for template {i}:\n{template}") tempsamp.apply_sampling_and_export( template_idx=i, - dir_suffix=str(i), + fn_suffix=i, ) if any(["" in t for t in meta["templates"]]): @@ -1118,12 +1089,19 @@ def apply_sampling_and_export( print(f"\nRunning sampling for template {i}:\n{template}") tempsamp.apply_sampling_and_export( template_idx=i, - dir_suffix=str(i), + fn_suffix=i, ) if any(["%multiple_choice_" in t for t in meta["templates"]]): - # uncomment to sample from all templates for each benchmarking format - # and save the output to a separate directory + TemplateSampler( + path, + path_lm_eval_data_dir, + multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + additional_templates=additional_templates, + benchmarking_templates=True, + multiple_choice_benchmarking_templates=True, + ).apply_sampling_and_export() + # for i, s in enumerate(multiple_choice_rnd_symbols): # TemplateSampler( # path, @@ -1134,34 +1112,3 @@ def apply_sampling_and_export( # multiple_choice_benchmarking_templates=True, # multiple_choice_benchmarking_format=i, # ).apply_sampling_and_export() - - # uncomment to randomly sample from all templates and save the output to a single file - # TemplateSampler( - # path, - # path_lm_eval_data_dir, - # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, - # additional_templates=additional_templates, - # benchmarking_templates=True, - # multiple_choice_benchmarking_templates=True, - # ).apply_sampling_and_export() - - tempsamp = TemplateSampler( - path, - path_lm_eval_data_dir, - multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, - additional_templates=additional_templates, - benchmarking_templates=True, - multiple_choice_benchmarking_templates=True, - ) - for i, template in enumerate( - [ - t - for t in meta["templates"] - if "" in t and "%multiple_choice_" in t - ] - ): - print(f"\nRunning sampling for template {i}:\n{template}") - tempsamp.apply_sampling_and_export( - template_idx=i, - dir_suffix=str(i), - ) From ca6d8ca4d4815c1b06f04a1b990c06bd2cf67e69 Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Tue, 24 Oct 2023 06:16:24 +0200 Subject: [PATCH 03/61] Add MUV (#442) --- data/tabular/MUV_466/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_466/transform.py | 12 ++++++++++ data/tabular/MUV_548/meta.yaml | 37 +++++++++++++++++++++++++++++ data/tabular/MUV_548/transform.py | 12 ++++++++++ data/tabular/MUV_600/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_600/transform.py | 12 ++++++++++ data/tabular/MUV_644/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_644/transform.py | 12 ++++++++++ data/tabular/MUV_652/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_652/transform.py | 12 ++++++++++ data/tabular/MUV_689/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_689/transform.py | 12 ++++++++++ data/tabular/MUV_692/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_692/transform.py | 12 ++++++++++ data/tabular/MUV_712/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_712/transform.py | 12 ++++++++++ data/tabular/MUV_713/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_713/transform.py | 12 ++++++++++ data/tabular/MUV_733/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_733/transform.py | 12 ++++++++++ data/tabular/MUV_737/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_737/transform.py | 12 ++++++++++ data/tabular/MUV_810/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_810/transform.py | 12 ++++++++++ data/tabular/MUV_832/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_832/transform.py | 12 ++++++++++ data/tabular/MUV_846/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_846/transform.py | 12 ++++++++++ data/tabular/MUV_852/meta.yaml | 35 +++++++++++++++++++++++++++ data/tabular/MUV_852/transform.py | 12 ++++++++++ data/tabular/MUV_858/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_858/transform.py | 12 ++++++++++ data/tabular/MUV_859/meta.yaml | 36 ++++++++++++++++++++++++++++ data/tabular/MUV_859/transform.py | 12 ++++++++++ data/text_sampling/text_sampling.py | 19 ++++++++++++++- 35 files changed, 828 insertions(+), 1 deletion(-) create mode 100644 data/tabular/MUV_466/meta.yaml create mode 100644 data/tabular/MUV_466/transform.py create mode 100644 data/tabular/MUV_548/meta.yaml create mode 100644 data/tabular/MUV_548/transform.py create mode 100644 data/tabular/MUV_600/meta.yaml create mode 100644 data/tabular/MUV_600/transform.py create mode 100644 data/tabular/MUV_644/meta.yaml create mode 100644 data/tabular/MUV_644/transform.py create mode 100644 data/tabular/MUV_652/meta.yaml create mode 100644 data/tabular/MUV_652/transform.py create mode 100644 data/tabular/MUV_689/meta.yaml create mode 100644 data/tabular/MUV_689/transform.py create mode 100644 data/tabular/MUV_692/meta.yaml create mode 100644 data/tabular/MUV_692/transform.py create mode 100644 data/tabular/MUV_712/meta.yaml create mode 100644 data/tabular/MUV_712/transform.py create mode 100644 data/tabular/MUV_713/meta.yaml create mode 100644 data/tabular/MUV_713/transform.py create mode 100644 data/tabular/MUV_733/meta.yaml create mode 100644 data/tabular/MUV_733/transform.py create mode 100644 data/tabular/MUV_737/meta.yaml create mode 100644 data/tabular/MUV_737/transform.py create mode 100644 data/tabular/MUV_810/meta.yaml create mode 100644 data/tabular/MUV_810/transform.py create mode 100644 data/tabular/MUV_832/meta.yaml create mode 100644 data/tabular/MUV_832/transform.py create mode 100644 data/tabular/MUV_846/meta.yaml create mode 100644 data/tabular/MUV_846/transform.py create mode 100644 data/tabular/MUV_852/meta.yaml create mode 100644 data/tabular/MUV_852/transform.py create mode 100644 data/tabular/MUV_858/meta.yaml create mode 100644 data/tabular/MUV_858/transform.py create mode 100644 data/tabular/MUV_859/meta.yaml create mode 100644 data/tabular/MUV_859/transform.py diff --git a/data/tabular/MUV_466/meta.yaml b/data/tabular/MUV_466/meta.yaml new file mode 100644 index 000000000..60ef927e4 --- /dev/null +++ b/data/tabular/MUV_466/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_466 +description: Activity in the MUV_466 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-466 + type: boolean + description: MUV-466 + names: + - noun: an agonist of the S1P1 receptor +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14841 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-466#not + &NULL}{MUV-466__names__noun}. diff --git a/data/tabular/MUV_466/transform.py b/data/tabular/MUV_466/transform.py new file mode 100644 index 000000000..657e86c4c --- /dev/null +++ b/data/tabular/MUV_466/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_466/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_548/meta.yaml b/data/tabular/MUV_548/meta.yaml new file mode 100644 index 000000000..8a1ad7371 --- /dev/null +++ b/data/tabular/MUV_548/meta.yaml @@ -0,0 +1,37 @@ +--- +name: MUV_548 +description: Activity in the MUV_548 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-548 + type: boolean + description: MUV-548 + names: + - noun: an inhibitor of the protein kinase A (PKA) + - noun: an inhibitor of the protein kinase A + - noun: an inhibitor of PKA +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14734 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-548#not + &NULL}{MUV-548__names__noun}. diff --git a/data/tabular/MUV_548/transform.py b/data/tabular/MUV_548/transform.py new file mode 100644 index 000000000..41d20e830 --- /dev/null +++ b/data/tabular/MUV_548/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_548/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_600/meta.yaml b/data/tabular/MUV_600/meta.yaml new file mode 100644 index 000000000..58f2cdbc4 --- /dev/null +++ b/data/tabular/MUV_600/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_600 +description: Activity in the MUV_600 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-600 + type: boolean + description: MUV-600 + names: + - noun: an inhibitor of the steroidogenic factor 1 (SF-1) + - noun: an inhibitor of SF-1 +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14728 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-600#not + &NULL}{MUV-600__names__noun}. diff --git a/data/tabular/MUV_600/transform.py b/data/tabular/MUV_600/transform.py new file mode 100644 index 000000000..766aa6d2c --- /dev/null +++ b/data/tabular/MUV_600/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_600/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_644/meta.yaml b/data/tabular/MUV_644/meta.yaml new file mode 100644 index 000000000..3b97372f9 --- /dev/null +++ b/data/tabular/MUV_644/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_644 +description: Activity in the MUV_644 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-644 + type: boolean + description: MUV-644 + names: + - noun: an inhibitor of Rho-kinase 2 (ROCK-2) + - noun: an inhibitor of ROCK-2 +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14623 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-644#not + &NULL}{MUV-644__names__noun}. diff --git a/data/tabular/MUV_644/transform.py b/data/tabular/MUV_644/transform.py new file mode 100644 index 000000000..48f1a53d0 --- /dev/null +++ b/data/tabular/MUV_644/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_644/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_652/meta.yaml b/data/tabular/MUV_652/meta.yaml new file mode 100644 index 000000000..8f559d38c --- /dev/null +++ b/data/tabular/MUV_652/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_652 +description: Activity in the MUV_652 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-652 + type: boolean + description: MUV-652 + names: + - noun: an inhibitor of HIV RT-RNase +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14902 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-652#not + &NULL}{MUV-652__names__noun}. diff --git a/data/tabular/MUV_652/transform.py b/data/tabular/MUV_652/transform.py new file mode 100644 index 000000000..7d4328d39 --- /dev/null +++ b/data/tabular/MUV_652/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_652/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_689/meta.yaml b/data/tabular/MUV_689/meta.yaml new file mode 100644 index 000000000..6e1ad3423 --- /dev/null +++ b/data/tabular/MUV_689/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_689 +description: Activity in the MUV_689 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-689 + type: boolean + description: MUV-689 + names: + - noun: an inhibitor of the EPH receptor A4 +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14601 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-689#not + &NULL}{MUV-689__names__noun}. diff --git a/data/tabular/MUV_689/transform.py b/data/tabular/MUV_689/transform.py new file mode 100644 index 000000000..2fe130550 --- /dev/null +++ b/data/tabular/MUV_689/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_689/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_692/meta.yaml b/data/tabular/MUV_692/meta.yaml new file mode 100644 index 000000000..d8988d3d3 --- /dev/null +++ b/data/tabular/MUV_692/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_692 +description: Activity in the MUV_692 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-692 + type: boolean + description: MUV-692 + names: + - noun: an agonist of the steroidogenic factor 1 (SF-1) + - noun: an agonist of SF-1 +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14644 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-692#not + &NULL}{MUV-692__names__noun}. diff --git a/data/tabular/MUV_692/transform.py b/data/tabular/MUV_692/transform.py new file mode 100644 index 000000000..c66768126 --- /dev/null +++ b/data/tabular/MUV_692/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_692/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_712/meta.yaml b/data/tabular/MUV_712/meta.yaml new file mode 100644 index 000000000..15ee8d493 --- /dev/null +++ b/data/tabular/MUV_712/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_712 +description: Activity in the MUV_712 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-712 + type: boolean + description: MUV-712 + names: + - noun: an inhibitor of the heat shock protein 90 + - noun: an inhibitor of HSP90 +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14411 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-712#not + &NULL}{MUV-712__names__noun}. diff --git a/data/tabular/MUV_712/transform.py b/data/tabular/MUV_712/transform.py new file mode 100644 index 000000000..9542efdde --- /dev/null +++ b/data/tabular/MUV_712/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_712/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_713/meta.yaml b/data/tabular/MUV_713/meta.yaml new file mode 100644 index 000000000..b26d3da21 --- /dev/null +++ b/data/tabular/MUV_713/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_713 +description: Activity in the MUV_713 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-713 + type: boolean + description: MUV-713 + names: + - noun: an inhibitor of the estrogen receptor-alpha-coactivator binding + - noun: an inhibitor of the ER-alpha-coact. binding +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14836 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-713#not + &NULL}{MUV-713__names__noun}. diff --git a/data/tabular/MUV_713/transform.py b/data/tabular/MUV_713/transform.py new file mode 100644 index 000000000..0a1f53871 --- /dev/null +++ b/data/tabular/MUV_713/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_713/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_733/meta.yaml b/data/tabular/MUV_733/meta.yaml new file mode 100644 index 000000000..c29903e09 --- /dev/null +++ b/data/tabular/MUV_733/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_733 +description: Activity in the MUV_733 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-733 + type: boolean + description: MUV-733 + names: + - noun: an inhibitor of the estrogen receptor-alpha-coactivator binding +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14682 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-733#not + &NULL}{MUV-733__names__noun}. diff --git a/data/tabular/MUV_733/transform.py b/data/tabular/MUV_733/transform.py new file mode 100644 index 000000000..5a6984fc8 --- /dev/null +++ b/data/tabular/MUV_733/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_733/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_737/meta.yaml b/data/tabular/MUV_737/meta.yaml new file mode 100644 index 000000000..cf0b3deb3 --- /dev/null +++ b/data/tabular/MUV_737/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_737 +description: Activity in the MUV_737 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-737 + type: boolean + description: MUV-737 + names: + - noun: a potentiator of the estrogen receptor-alpha-coactivator binding + - noun: a potentiator of the ER-alpha-coact. binding +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14691 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-737#not + &NULL}{MUV-737__names__noun}. diff --git a/data/tabular/MUV_737/transform.py b/data/tabular/MUV_737/transform.py new file mode 100644 index 000000000..b9b7ba264 --- /dev/null +++ b/data/tabular/MUV_737/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_737/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_810/meta.yaml b/data/tabular/MUV_810/meta.yaml new file mode 100644 index 000000000..e285dd8ad --- /dev/null +++ b/data/tabular/MUV_810/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_810 +description: Activity in the MUV_810 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-810 + type: boolean + description: MUV-810 + names: + - noun: an inhibitor of the focal adhesion kinase + - noun: an inhibitor of FAK +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14644 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-810#not + &NULL}{MUV-810__names__noun}. diff --git a/data/tabular/MUV_810/transform.py b/data/tabular/MUV_810/transform.py new file mode 100644 index 000000000..48c1413b7 --- /dev/null +++ b/data/tabular/MUV_810/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_810/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_832/meta.yaml b/data/tabular/MUV_832/meta.yaml new file mode 100644 index 000000000..1c1e74835 --- /dev/null +++ b/data/tabular/MUV_832/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_832 +description: Activity in the MUV_832 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-832 + type: boolean + description: MUV-832 + names: + - noun: an inhibitor of the Cathepsin G protease +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14667 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-832#not + &NULL}{MUV-832__names__noun}. diff --git a/data/tabular/MUV_832/transform.py b/data/tabular/MUV_832/transform.py new file mode 100644 index 000000000..cdd4fcd33 --- /dev/null +++ b/data/tabular/MUV_832/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_832/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_846/meta.yaml b/data/tabular/MUV_846/meta.yaml new file mode 100644 index 000000000..d9fc0362d --- /dev/null +++ b/data/tabular/MUV_846/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_846 +description: Activity in the MUV_846 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-846 + type: boolean + description: MUV-846 + names: + - noun: an inhibitor of factor XIa (FXIa) +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14711 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-846#not + &NULL}{MUV-846__names__noun}. diff --git a/data/tabular/MUV_846/transform.py b/data/tabular/MUV_846/transform.py new file mode 100644 index 000000000..ab953bc97 --- /dev/null +++ b/data/tabular/MUV_846/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_846/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_852/meta.yaml b/data/tabular/MUV_852/meta.yaml new file mode 100644 index 000000000..86d8874fc --- /dev/null +++ b/data/tabular/MUV_852/meta.yaml @@ -0,0 +1,35 @@ +--- +name: MUV_852 +description: Activity in the MUV_852 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-852 + type: boolean + description: MUV-852 + names: + - noun: an inhibitor of factor XIIa (FXIIa) +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14651 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-852#not + &NULL}{MUV-852__names__noun}. diff --git a/data/tabular/MUV_852/transform.py b/data/tabular/MUV_852/transform.py new file mode 100644 index 000000000..051fc6154 --- /dev/null +++ b/data/tabular/MUV_852/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_852/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_858/meta.yaml b/data/tabular/MUV_858/meta.yaml new file mode 100644 index 000000000..bb110dc4e --- /dev/null +++ b/data/tabular/MUV_858/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_858 +description: Activity in the MUV_858 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-858 + type: boolean + description: MUV-858 + names: + - noun: an allosteric modulator of the dopamine receptor D1 + - noun: an allosteric modulator of the D1 receptor +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14774 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-858#not + &NULL}{MUV-858__names__noun}. diff --git a/data/tabular/MUV_858/transform.py b/data/tabular/MUV_858/transform.py new file mode 100644 index 000000000..28ab993f4 --- /dev/null +++ b/data/tabular/MUV_858/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_858/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/tabular/MUV_859/meta.yaml b/data/tabular/MUV_859/meta.yaml new file mode 100644 index 000000000..e2f43b5a3 --- /dev/null +++ b/data/tabular/MUV_859/meta.yaml @@ -0,0 +1,36 @@ +--- +name: MUV_859 +description: Activity in the MUV_859 assay +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: MUV-859 + type: boolean + description: MUV-859 + names: + - noun: an allosteric inhibitor of the muscarinic acetylcholine receptor M1 + - noun: an allosteric inhibitor of the M1 receptor +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/muv.csv.gz + description: Data source +num_points: 14746 +bibtex: + - | + @article{doi:10.1021/ci8002649, + author = {Rohrer, Sebastian G. and Baumann, Knut}, + title = {Maximum Unbiased Validation (MUV) Data Sets for Virtual Screening Based on PubChem Bioactivity Data}, + journal = {Journal of Chemical Information and Modeling}, + volume = {49}, + number = {2}, + pages = {169-184}, + year = {2009}, + doi = {10.1021/ci8002649}, + URL = {https://doi.org/10.1021/ci8002649}} +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {MUV-859#not + &NULL}{MUV-859__names__noun}. diff --git a/data/tabular/MUV_859/transform.py b/data/tabular/MUV_859/transform.py new file mode 100644 index 000000000..6123dd576 --- /dev/null +++ b/data/tabular/MUV_859/transform.py @@ -0,0 +1,12 @@ +import pandas as pd + + +def transform_data(): + df = pd.read_csv( + "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_859/data_clean.csv" + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform_data() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index e4ae707df..7b98dd4fc 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -125,7 +125,24 @@ "sr_p53_tox21", # boolean target data "tyrosyl-dna_phosphodiesterase_butkiewicz", # boolean target data "zinc", # SMILES only, has no target - "smiles_to_3d" + "smiles_to_3d", + "MUV_466", # boolean target data + "MUV_548", # boolean target data + "MUV_600", # boolean target data + "MUV_644", # boolean target data + "MUV_652", # boolean target data + "MUV_689", # boolean target data + "MUV_692", # boolean target data + "MUV_712", # boolean target data + "MUV_713", # boolean target data + "MUV_733", # boolean target data + "MUV_737", # boolean target data + "MUV_810", # boolean target data + "MUV_832", # boolean target data + "MUV_846", # boolean target data + "MUV_852", # boolean target data + "MUV_858", # boolean target data + "MUV_859" # boolean target data # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] From 06c29f7afd7d282f0c24a0e5f627a2c0f11514a2 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:26:06 +0200 Subject: [PATCH 04/61] CIF data (#445) Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> --- .../block_polymers_morphology/meta.yaml | 68 +++++ .../block_polymers_morphology/transform.py | 36 +++ data/tabular/core_mof_no_topo/meta.yaml | 267 +++++++++++++++++ data/tabular/core_mof_no_topo/transform.py | 57 ++++ data/tabular/mp_self_supervised/meta.yaml | 88 ++++++ .../mp_self_supervised/prepare_data.py | 40 +++ data/tabular/mp_self_supervised/transform.py | 22 ++ data/tabular/opv/meta.yaml | 34 +-- data/tabular/qm8/meta.yaml | 276 ++++++++++++++++++ data/tabular/qm8/transform.py | 36 +++ data/tabular/qm9/transform.py | 1 + data/tabular/qmof_gcmc/transform.py | 93 ++++++ data/tabular/smiles_to_3d/explore.ipynb | 124 -------- data/tabular/smiles_to_3d/meta.yaml | 2 +- data/tabular/smiles_to_3d/transform.py | 5 + data/tabular/solubility_aqsoldb/meta.yaml | 22 +- data/tabular/thermosol/meta.yaml | 66 +++++ data/tabular/thermosol/transform.py | 15 + data/text_sampling/text_sampling.py | 8 +- src/chemnlp/data/convert.py | 17 +- 20 files changed, 1124 insertions(+), 153 deletions(-) create mode 100644 data/tabular/block_polymers_morphology/meta.yaml create mode 100644 data/tabular/block_polymers_morphology/transform.py create mode 100644 data/tabular/core_mof_no_topo/meta.yaml create mode 100644 data/tabular/core_mof_no_topo/transform.py create mode 100644 data/tabular/mp_self_supervised/meta.yaml create mode 100644 data/tabular/mp_self_supervised/prepare_data.py create mode 100644 data/tabular/mp_self_supervised/transform.py create mode 100644 data/tabular/qm8/meta.yaml create mode 100644 data/tabular/qm8/transform.py create mode 100644 data/tabular/qmof_gcmc/transform.py delete mode 100644 data/tabular/smiles_to_3d/explore.ipynb create mode 100644 data/tabular/thermosol/meta.yaml create mode 100644 data/tabular/thermosol/transform.py diff --git a/data/tabular/block_polymers_morphology/meta.yaml b/data/tabular/block_polymers_morphology/meta.yaml new file mode 100644 index 000000000..217f624d2 --- /dev/null +++ b/data/tabular/block_polymers_morphology/meta.yaml @@ -0,0 +1,68 @@ +--- +name: block_polymers_morphology +description: |- + Results of experimental phase measurements of di-block copolymers. +targets: + - id: phase1 + description: experimentally observed phase + type: text + names: + - noun: phase + - noun: experimentally observed phase + - id: T + description: temperature of measurement + type: continuous + significant_digits: 0 + units: K + - id: Mn + description: number-average molar mass + type: continuous + units: g/mol + significant_digits: 0 + names: + - noun: number-average molar mass + - noun: Mn + - noun: number-average molar mass (Mn) + - id: f1 + description: volume fraction of block type 1 + type: continuous + significant_digits: 2 + names: + - noun: volume fraction of block type 1 + - id: Mw + description: mass-average molar mass + type: text + names: + - noun: mass-average molar mass + - noun: mass-average molar mass (Mw) + - id: D + description: dispersity + type: text + names: + - noun: dispersity + - noun: dispersity (D) +identifiers: + - id: BigSMILES + type: string + description: BigSMILES +license: CC BY 4.0 +links: + - url: https://github.com/olsenlabmit/BCDB/tree/main + description: original data source +num_points: 4438 +templates: + - The {#polymer|di-block copolymer|copolymer!} with BigSMILES {BigSMILES#}, {Mn__names__noun} of {Mn#} {Mn__units}, {f1__names__noun} of {f1#}{Mw#}{D#} + was {#measured|analyzed|studied!} at {T#} {T__units} and found to be in the {phase1#} phase. + - |- + Question: If I have a {#polymer|di-block copolymer|copolymer!} with {Mn__names__noun} of {Mn#} {Mn__units}, {f1__names__noun} of {f1#}{Mw#}{D#}, what phase will it be in at {T#} {T__units}? + Answer: The polymer will be in the {phase1#} phase. + - |- + User: I want to design a {#polymer|di-block copolymer|copolymer!} with a particular {Mn__names__noun}, {f1__names__noun}, and {phase1__names__noun}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {Mn__names__noun}, {f1__names__noun}, and {phase1__names__noun} of the polymer you want to design. + User: The {Mn__names__noun} should be {Mn#} {Mn__units}, the {f1__names__noun} should be {f1#}, and the {phase1__names__noun} should be {phase1#}. + Assistant: I {#recommend|suggest|propose|advise!} the {#polymer|di-block copolymer|copolymer!} with BigSMILES {BigSMILES#}{Mw#}{D#}. + - |- + User: I want to design a {#polymer|di-block copolymer|copolymer!} that is in the {phase1#} phase. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}{#Do you have any other constraints?|Do you have other requirements?|What else should I take into account?!} + User: The {Mn__names__noun} should be {Mn#} {Mn__units}, the {f1__names__noun} should be {f1#}. + Assistant: I {#recommend|suggest|propose|advise!} the {#polymer|di-block copolymer|copolymer!} with BigSMILES {BigSMILES#}{Mw#}{D#}. diff --git a/data/tabular/block_polymers_morphology/transform.py b/data/tabular/block_polymers_morphology/transform.py new file mode 100644 index 000000000..de3faff86 --- /dev/null +++ b/data/tabular/block_polymers_morphology/transform.py @@ -0,0 +1,36 @@ +import pandas as pd + +columns_to_keep = ["phase1", "T", "BigSMILES", "Mn", "f1", "Mw", "D"] + + +def process(): + df = pd.read_csv( + "https://raw.githubusercontent.com/olsenlabmit/BCDB/main/data/diblock.csv" + ) + df = df[df["phase2"].isna()] # remove multiple phases + mw_clean = [] + dispersity_clean = [] + + for mw, dispersity in zip(df["Mw"], df["D"]): + # if nan, make empty string + # else, add the units + if pd.isna(mw) or "nan" in str(mw): + mw_clean.append("REPLACENULL") + else: + mw_clean.append(f", average molecular mass of {mw:.1f} g/mol") + + if pd.isna(dispersity) or "nan" in str(dispersity): + # empty character that will still appear in the csv + dispersity_clean.append("REPLACENULL") + else: + dispersity_clean.append(f", and dispersity of {dispersity:.1f}") + + df["Mw"] = mw_clean + df["D"] = dispersity_clean + df.dropna(subset=columns_to_keep, inplace=True) + print(len(df)) + df[columns_to_keep].to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/core_mof_no_topo/meta.yaml b/data/tabular/core_mof_no_topo/meta.yaml new file mode 100644 index 000000000..ffef4d1aa --- /dev/null +++ b/data/tabular/core_mof_no_topo/meta.yaml @@ -0,0 +1,267 @@ +--- +name: core_mof_no_topo +description: |- + CoRE MOF is a database of "computationally ready" crystal structures of metal-organic frameworks +targets: + - id: cif + description: Crystal structure, in CIF format + type: text + names: + - noun: crystal structure in CIF format + - noun: content of a CIF file with the crystal structure + - noun: data from a CIF file with the crystal structure + - noun: content within a CIF file of the crystal structure + - noun: crystal structure represented in CIF format + - id: outputs.pure_CO2_widomHOA + description: heat of adsorption of CO2, simulated using Widom insertion + units: kJ/mol + type: continuous + significant_digits: 2 + names: + - noun: heat of adsorption of CO2 (computed using the Widom insertion technique) + - noun: simulated heat of adsorption of CO2 (obtained using Widom insertions) + - noun: heat of adsorption of carbon dioxide (computed using the Widom insertion technique) + - noun: simulated heat of adsorption of carbon dioxide (obtained using Widom insertions) + - id: outputs.pure_methane_widomHOA + description: heat of adsorption for methane, simulated using Widom insertion + units: kJ/mol + type: continuous + significant_digits: 2 + names: + - noun: heat of adsorption of methane (computed using the Widom insertion technique) + - noun: simulated heat of adsorption of methane (obtained using Widom insertions) + - noun: heat of adsorption of CH4 (computed using the Widom insertion technique) + - noun: simulated heat of adsorption of CH4 (obtained using Widom insertions) + - id: outputs.pure_uptake_CO2_298.00_15000 + description: CO2 uptake at 298 K and 15000 Pa + units: mol/kg + type: continuous + significant_digits: 1 + names: + - noun: CO2 uptake at 298 K and 15000 Pa as obtained from GCMC simulations + - noun: simulated CO2 uptake at 298 K and 15000 Pa + - noun: CO2 uptake at 298 K and 15000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: carbon dioxide uptake at 298 K and 15000 Pa as obtained from GCMC simulations + - noun: simulated carbon dioxide uptake at 298 K and 15000 Pa + - noun: carbon dioxide uptake at 298 K and 15000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: CO2 uptake at 298 K and 0.15 bar as obtained from GCMC simulations + - noun: simulated CO2 uptake at 298 K and 0.15 bar + - id: outputs.pure_uptake_CO2_298.00_1600000 + description: CO2 uptake at 298 K and 1600000 Pa + units: mol/kg + type: continuous + significant_digits: 1 + names: + - noun: CO2 uptake at 298 K and 1600000 Pa as obtained from GCMC simulations + - noun: simulated CO2 uptake at 298 K and 1600000 Pa + - noun: CO2 uptake at 298 K and 1600000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: carbon dioxide uptake at 298 K and 1600000 Pa as obtained from GCMC simulations + - noun: simulated carbon dioxide uptake at 298 K and 1600000 Pa + - noun: carbon dioxide uptake at 298 K and 1600000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: CO2 uptake at 298 K and 16 bar as obtained from GCMC simulations + - noun: simulated CO2 uptake at 298 K and 16 bar + - id: outputs.pure_uptake_methane_298.00_580000 + description: methane uptake at 298 K and 580000 Pa + units: mol/kg + type: continuous + significant_digits: 1 + names: + - noun: methane uptake at 298 K and 580000 Pa as obtained from GCMC simulations + - noun: simulated methane uptake at 298 K and 580000 Pa + - noun: methane uptake at 298 K and 580000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: CH4 uptake at 298 K and 580000 Pa as obtained from GCMC simulations + - noun: simulated CH4 uptake at 298 K and 580000 Pa + - noun: CH4 uptake at 298 K and 580000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: methane uptake at 298 K and 5.8 bar as obtained from GCMC simulations + - noun: simulated methane uptake at 298 K and 5.8 bar + - id: outputs.pure_uptake_methane_298.00_6500000 + description: methane uptake at 298 K and 6500000 Pa + units: mol/kg + type: continuous + significant_digits: 1 + names: + - noun: methane uptake at 298 K and 6500000 Pa as obtained from GCMC simulations + - noun: simulated methane uptake at 298 K and 6500000 Pa + - noun: methane uptake at 298 K and 6500000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: CH4 uptake at 298 K and 6500000 Pa as obtained from GCMC simulations + - noun: simulated CH4 uptake at 298 K and 6500000 Pa + - noun: CH4 uptake at 298 K and 6500000 Pa as obtained from grand canonical Monte Carlo simulations + - noun: methane uptake at 298 K and 65 bar as obtained from GCMC simulations + - noun: simulated methane uptake at 298 K and 65 bar + - id: outputs.logKH_CO2 + description: logarithm of Henry's constant for CO2 + units: log(mol/kg/Pa) + type: continuous + significant_digits: 2 + names: + - noun: logarithm of Henry's constant for CO2 obtained from Widom insertion simulations + - noun: logarithm of Henry's constant for carbon dioxide obtained from Widom insertion simulations + - noun: logarithm of Henry's constant for CO2 obtained from Widom insertion simulations + - noun: logarithm of Henry's constant for carbon dioxide obtained from Widom insertion simulations + - id: outputs.logKH_CH4 + description: logarithm of Henry's constant for methane + units: log(mol/kg/Pa) + type: continuous + significant_digits: 2 + names: + - noun: logarithm of Henry's constant for methane obtained from Widom insertion simulations + - noun: logarithm of Henry's constant for CH4 obtained from Widom insertion simulations + - noun: logarithm of Henry's constant for methane obtained from Widom insertion simulations + - noun: logarithm of Henry's constant for CH4 obtained from Widom insertion simulations + - id: outputs.CH4DC + description: deliverable capacity of methane + type: continuous + units: vSTP/v + names: + - noun: deliverable capacity (between 5.8 bar and 65 bar at 298 K) of methane obtained from GCMC simulations + - noun: deliverable capacity of CH4 obtained from GCMC simulations between 5.8 bar and 65 bar at 298 K + - noun: deliverable capacity of methane (between 5.8 bar and 65 bar at 298 K) obtained from GCMC simulations + - noun: deliverable capacity of CH4 (between 5.8 bar and 65 bar at 298 K) obtained from GCMC simulations + - id: info.density + description: density of the material + type: continuous + units: g/cm^3 + significant_digits: 2 + names: + - noun: density of the material + - noun: density +identifiers: + - id: smiles_linkers + description: SMILES representation of the linker + type: text + - id: smiles_nodes + description: SMILES representation of the nodes + type: text +license: CC BY 4.0 +num_points: 142 +links: + - url: https://huggingface.co/datasets/kjappelbaum/chemnlp-core-mof/tree/main + description: original data source +bibtex: + - |- + @article{Jablonka_2023, + doi = {10.1021/acscentsci.2c01177}, + url = {https://doi.org/10.1021%2Facscentsci.2c01177}, + year = 2023, + month = {mar}, + publisher = {American Chemical Society ({ACS})}, + volume = {9}, + number = {4}, + pages = {563--581}, + author = {Kevin Maik Jablonka and Andrew S. Rosen and Aditi S. Krishnapriyan and Berend Smit}, + title = {An Ecosystem for Digital Reticular Chemistry}, + journal = {ACS Cent. Sci.} + } + - |- + @article{Chung_2014, + doi = {10.1021/cm502594j}, + url = {https://doi.org/10.1021%2Fcm502594j}, + year = 2014, + month = {oct}, + publisher = {American Chemical Society ({ACS})}, + volume = {26}, + number = {21}, + pages = {6185--6192}, + author = {Yongchul G. Chung and Jeffrey Camp and Maciej Haranczyk and Benjamin J. Sikora and Wojciech Bury and Vaiva Krungleviciute and Taner Yildirim and Omar K. Farha and David S. Sholl and Randall Q. Snurr}, + title = {Computation-Ready, Experimental Metal{\textendash}Organic Frameworks: A Tool To Enable High-Throughput Screening of Nanoporous Crystals}, + journal = {Chem. Mater.} + } + - |- + @article{Chung_2019, + doi = {10.1021/acs.jced.9b00835}, + url = {https://doi.org/10.1021%2Facs.jced.9b00835}, + year = 2019, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {64}, + number = {12}, + pages = {5985--5998}, + author = {Yongchul G. Chung and Emmanuel Haldoupis and Benjamin J. Bucior and Maciej Haranczyk and Seulchan Lee and Hongda Zhang and Konstantinos D. Vogiatzis and Marija Milisavljevic and Sanliang Ling and Jeffrey S. Camp and Ben Slater and J. Ilja Siepmann and David S. Sholl and Randall Q. Snurr}, + title = {Advances, Updates, and Analytics for the Computation-Ready, Experimental Metal{\textendash}Organic Framework Database: {CoRE} {MOF} 2019}, + journal = {J. Chem. Eng. Data}amp$\mathsemicolon$ Engineering Data} + } +templates: + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} is build from linker molecules with the SMILES {smiles_linkers#} and nodes with the SMILES {smiles_nodes#}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.pure_CO2_widomHOA__names__noun} of {outputs.pure_CO2_widomHOA#} {outputs.pure_CO2_widomHOA__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.pure_methane_widomHOA__names__noun} of {outputs.pure_methane_widomHOA#} {outputs.pure_methane_widomHOA__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.pure_uptake_CO2_298.00_15000__names__noun} of {outputs.pure_uptake_CO2_298.00_15000#} {outputs.pure_uptake_CO2_298.00_15000__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.pure_uptake_CO2_298.00_1600000__names__noun} of {outputs.pure_uptake_CO2_298.00_1600000#} {outputs.pure_uptake_CO2_298.00_1600000__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.pure_uptake_methane_298.00_580000__names__noun} of {outputs.pure_uptake_methane_298.00_580000#} {outputs.pure_uptake_methane_298.00_580000__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.pure_uptake_methane_298.00_6500000__names__noun} of {outputs.pure_uptake_methane_298.00_6500000#} {outputs.pure_uptake_methane_298.00_6500000__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.logKH_CO2__names__noun} of {outputs.logKH_CO2#} {outputs.logKH_CO2__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.logKH_CH4__names__noun} of {outputs.logKH_CH4#} {outputs.logKH_CH4__units}. + - The {density__names__noun} of the {#metal-organic framework|MOF|reticular material|material|structure|metal-organic framework (MOF)!} with the following + {#CIF file|crystal structure in CIF format!} {cif#} is {density#} {density__units}. + - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} + {cif#} has a {outputs.CH4DC__names__noun} of {outputs.CH4DC#} {outputs.CH4DC__units}. + - |- + Question: What linker molecules are {#used|present!} in the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The SMILES of the linker molecules are {smiles_linkers#}. + - |- + Question: What nodes are {#used|present!} in the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The SMILES of the nodes are {smiles_nodes#}. + - |- + Question: What is the {outputs.pure_CO2_widomHOA__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.pure_CO2_widomHOA__names__noun} is {outputs.pure_CO2_widomHOA#} {outputs.pure_CO2_widomHOA__units}. + - |- + Question: What is the {outputs.pure_methane_widomHOA__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.pure_methane_widomHOA__names__noun} is {outputs.pure_methane_widomHOA#} {outputs.pure_methane_widomHOA__units}. + - |- + Question: What is the {outputs.pure_uptake_CO2_298.00_15000__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.pure_uptake_CO2_298.00_15000__names__noun} is {outputs.pure_uptake_CO2_298.00_15000#} {outputs.pure_uptake_CO2_298.00_15000__units}. + - |- + Question: What is the {outputs.pure_uptake_CO2_298.00_1600000__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.pure_uptake_CO2_298.00_1600000__names__noun} is {outputs.pure_uptake_CO2_298.00_1600000#} {outputs.pure_uptake_CO2_298.00_1600000__units}. + - |- + Question: What is the {outputs.pure_uptake_methane_298.00_580000__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.pure_uptake_methane_298.00_580000__names__noun} is {outputs.pure_uptake_methane_298.00_580000#} {outputs.pure_uptake_methane_298.00_580000__units}. + - |- + Question: What is the {outputs.pure_uptake_methane_298.00_6500000__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.pure_uptake_methane_298.00_6500000__names__noun} is {outputs.pure_uptake_methane_298.00_6500000#} {outputs.pure_uptake_methane_298.00_6500000__units}. + - |- + Question: What is the {outputs.logKH_CO2__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.logKH_CO2__names__noun} is {outputs.logKH_CO2#} {outputs.logKH_CO2__units}. + - |- + Question: What is the {outputs.logKH_CH4__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.logKH_CH4__names__noun} is {outputs.logKH_CH4#} {outputs.logKH_CH4__units}. + - |- + Question: What is the {outputs.CH4DC__names__noun} of the {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}? + Answer: The {outputs.CH4DC__names__noun} is {outputs.CH4DC#} {outputs.CH4DC__units}. + - |- + User: {#I have|I am working with|I'm interested in!} a {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}. What is the {outputs.pure_CO2_widomHOA__names__noun}? + Assistant: The {outputs.pure_CO2_widomHOA__names__noun} is {outputs.pure_CO2_widomHOA#} {outputs.pure_CO2_widomHOA__units}. + - |- + User: I just {#synthesized|made|created!} a {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}. What is the {outputs.pure_methane_widomHOA__names__noun}? + Assistant: The {outputs.pure_methane_widomHOA__names__noun} is {outputs.pure_methane_widomHOA#} {outputs.pure_methane_widomHOA__units}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} + User: {#Yes, |Yeah, |Indeed, |!}I would like to know the {outputs.pure_uptake_CO2_298.00_15000__names__noun}. + Assistant: The {outputs.pure_uptake_CO2_298.00_15000__names__noun} is {outputs.pure_uptake_CO2_298.00_15000#} {outputs.pure_uptake_CO2_298.00_15000__units}. + - |- + User: {#I am interested in|I want to make|I want to synthesize!} a {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#}. + Assistant: {#That's interesting.|Cool.|!} {#How can I help?|How can I be of assistance?|Is there anything I can help you with?!} + User: What building blocks do I need to combine to make this {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!}? + Assistant: The SMILES of the linker molecules are {smiles_linkers#} and the SMILES of the nodes are {smiles_nodes#}. + - |- + User: {#I want to|I need to|I must|I have to!} {#synthesize|create|make!} a {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with a {outputs.CH4DC__names__noun} of {outputs.CH4DC#} {outputs.CH4DC__units}. What {#building blocks|linkers and nodes!} do I need to combine? + Assistant: {#I'd go for|I'd recommend!} linkers with SMILES {smiles_linkers#} and nodes with SMILES {smiles_nodes#}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} + User: {#Yes, |Yeah, |Indeed, |!}I would like to know the {outputs.pure_uptake_CO2_298.00_15000__names__noun}. + Assistant: The {outputs.pure_uptake_CO2_298.00_15000__names__noun} is {outputs.pure_uptake_CO2_298.00_15000#} {outputs.pure_uptake_CO2_298.00_15000__units}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} + User: {#Yes, |Yeah, |Indeed, |!}I would like to know the {outputs.pure_uptake_methane_298.00_580000__names__noun}. + Assistant: The {outputs.pure_uptake_methane_298.00_580000__names__noun} is {outputs.pure_uptake_methane_298.00_580000#} {outputs.pure_uptake_methane_298.00_580000__units}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} + User: {#No, |Nope, |No thank you, |!}that's all I need to know. + Assistant: {#You're welcome.||Anytime.|Happy to help.!} + - |- + User: {#I want to|I need to|I must|I have to!} {#synthesize|create|make!} a {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with a {outputs.CH4DC__names__noun} of {outputs.CH4DC#} {outputs.CH4DC__units} and a {outputs.pure_uptake_CO2_298.00_15000__names__noun} of {outputs.pure_uptake_CO2_298.00_15000#} {outputs.pure_uptake_CO2_298.00_15000__units}. What {#building blocks|linkers and nodes!} do I need to combine? + Assistant: {#I'd go for|I'd recommend!} linkers with SMILES {smiles_linkers#} and nodes with SMILES {smiles_nodes#}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} + User: {#Yes, |Yeah, |Indeed, |!}What {#CIF file|crystal structure in CIF format!} can I expect? + Assistant: The {#CIF file|crystal structure in CIF format!} should be {cif#}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} + User: {#Yes, |Yeah, |Indeed, |!}I would like to know the {info.density__names__noun}. + Assistant: The {info.density__names__noun} is {info.density#} {info.density__units}. diff --git a/data/tabular/core_mof_no_topo/transform.py b/data/tabular/core_mof_no_topo/transform.py new file mode 100644 index 000000000..087a4345f --- /dev/null +++ b/data/tabular/core_mof_no_topo/transform.py @@ -0,0 +1,57 @@ +import pandas as pd + + +def process(): + df = pd.read_json("core_mofid.json") + # df = pd.read_json( + # "https://huggingface.co/datasets/kjappelbaum/chemnlp-core-mof/resolve/main/core_mofid.json" + # ) + df = df.query("is_longer_than_allowed==False").dropna( + subset=[ + "outputs.pure_CO2_kH", + "outputs.pure_CO2_widomHOA", + "outputs.pure_methane_kH", + "outputs.pure_methane_widomHOA", + "outputs.pure_uptake_CO2_298.00_15000", + "outputs.pure_uptake_CO2_298.00_1600000", + "outputs.pure_uptake_methane_298.00_580000", + "outputs.pure_uptake_methane_298.00_6500000", + "outputs.logKH_CO2", + "outputs.logKH_CH4", + "outputs.CH4DC", + "outputs.CH4HPSTP", + "outputs.CH4LPSTP", + "smiles_linkers", + "smiles_nodes", + ] + ) + + print(len(df)) + + df["smiles_linkers"] = df["smiles_linkers"].apply(lambda x: ", ".join(x)) + df["smiles_nodes"] = df["smiles_nodes"].apply(lambda x: ", ".join(x)) + + df[ + [ + "outputs.pure_CO2_kH", + "outputs.pure_CO2_widomHOA", + "outputs.pure_methane_kH", + "outputs.pure_methane_widomHOA", + "outputs.pure_uptake_CO2_298.00_15000", + "outputs.pure_uptake_CO2_298.00_1600000", + "outputs.pure_uptake_methane_298.00_580000", + "outputs.pure_uptake_methane_298.00_6500000", + "outputs.logKH_CO2", + "outputs.logKH_CH4", + "outputs.CH4DC", + "outputs.CH4HPSTP", + "outputs.CH4LPSTP", + "smiles_linkers", + "smiles_nodes", + "cif", + ] + ].to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/mp_self_supervised/meta.yaml b/data/tabular/mp_self_supervised/meta.yaml new file mode 100644 index 000000000..92f39c18d --- /dev/null +++ b/data/tabular/mp_self_supervised/meta.yaml @@ -0,0 +1,88 @@ +--- +name: mp_self_supervised +description: |- + QM9 is a comprehensive dataset that provides geometric, energetic, + electronic and thermodynamic properties for a subset of GDB-17 + database, comprising 134 thousand stable organic molecules with up + to 9 heavy atoms. All molecules are modeled using density + functional theory (B3LYP/6-31G(2df,p) based DFT). +targets: + - id: density + description: Density of the material + units: g/cm^3 + type: continuous + names: + - noun: density of the material + - noun: density + uris: + significant_digits: 2 + - id: spacegroup + description: Spacegroup of the material + type: categorical + names: + - noun: spacegroup of the material + - noun: spacegroup + uris: + significant_digits: 2 + - id: spacegroup_number + description: Spacegroup number of the material + type: categorical + names: + - noun: spacegroup number of the material + - noun: spacegroup number + - noun: number of the spacegroup in the International Tables for Crystallography +identifiers: + - id: cif + type: cif + description: CIF + - id: formula + type: COMPOSITION + description: reduced formula +license: CC BY 4.0 +num_points: 130542 +links: + - url: https://materialsproject.org/ + description: original data source +bibtex: + - |- + @article{jain2013commentary, + title={Commentary: The Materials Project: A materials genome approach to accelerating materials innovation}, + author={Jain, Anubhav and Ong, Shyue Ping and Hautier, Geoffroy and Chen, Wei and Richards, William Davidson and Dacek, Stephen and Cholia, Shreyas and Gunter, Dan and Skinner, David and Ceder, Gerbrand and others}, + journal={APL materials}, + volume={1}, + number={1}, + year={2013}, + publisher={AIP Publishing} + } +templates: + - The {spacegroup__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {spacegroup#}. + - The {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {density#} {density__units}. + - The {#chemical formula|composition|reduced formula!} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {formula#}. + - The {spacegroup_number__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {spacegroup_number#}. + - |- + User: I want to design a material with a particular {density__names__noun}, {spacegroup__names__noun}, and {#chemical formula|composition|reduced formula!}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {density__names__noun}, {spacegroup__names__noun}, and {#chemical formula|composition|reduced formula!} of the material you want to design. + User: The {density__names__noun} should be {density#} {density__units}, the {spacegroup__names__noun} should be {spacegroup#}, and the {#chemical formula|composition|reduced formula!} should be {formula#}. + Assistant: I {#recommend|suggest|propose|advise|!} the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}. + - |- + Question: What is the {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {density#} {density__units}. + - |- + Question: What is the {spacegroup__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {spacegroup#}. + - |- + Question: What is the {#chemical formula|composition|reduced formula!} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {formula#}. + - |- + Question: What is the {spacegroup_number__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {spacegroup_number#}. + - |- + User: I want to design a {#material|compound|solid!} with a {density__names__noun} of {density#} {density__units}, and a {#chemical formula|composition|reduced formula!} of {formula#}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I suggest the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?|!} + User: {#Yes, |Yeah, |Yep, |Indeed, |!}I also want to know the {spacegroup__names__noun} of this {#material|compound|solid!}. + Assistant: The {spacegroup__names__noun} of the {#material|compound|solid!} is {spacegroup#}. + - |- + User: I have a {#material|compound|solid|structure!} with the following {#CIF|CIF file|CIF card!} {cif#}. {#Can you tell me the density?|What is the density?|!} + Assistant: The {density__names__noun} of the {#material|compound|solid!} is {density#} {density__units}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?|!} + User: {#Yes, |Yeah, |Yep, |Indeed, |!}I also want to know the {spacegroup__names__noun} of this {#material|compound|solid!}. + Assistant: The {spacegroup__names__noun} of the {#material|compound|solid!} is {spacegroup#}. diff --git a/data/tabular/mp_self_supervised/prepare_data.py b/data/tabular/mp_self_supervised/prepare_data.py new file mode 100644 index 000000000..ee36c2400 --- /dev/null +++ b/data/tabular/mp_self_supervised/prepare_data.py @@ -0,0 +1,40 @@ +import concurrent.futures +from glob import glob + +import pandas as pd +from pymatgen.core import Structure +from tqdm import tqdm + +from chemnlp.data.convert import cif_file_to_string, is_longer_than_allowed + +data = [] + + +def compile_info(ciffile): + s = Structure.from_file(ciffile) + cif = cif_file_to_string(ciffile) + sg, sg_n = s.get_space_group_info() + + d = { + "formula": s.composition.reduced_formula, + "density": s.density, + "spacegroup": sg, + "spacegroup_number": sg_n, + "cif": cif, + "is_longer_than_allowed": is_longer_than_allowed(cif), + } + return d + + +if __name__ == "__main__": + all_structures = glob("structures/*.cif") # assumes structures have been downloaded + + data = [] + with concurrent.futures.ProcessPoolExecutor() as executor: + for d in tqdm( + executor.map(compile_info, all_structures), total=len(all_structures) + ): + data.append(d) + + df = pd.DataFrame(data) + df.to_json("mpid.json") diff --git a/data/tabular/mp_self_supervised/transform.py b/data/tabular/mp_self_supervised/transform.py new file mode 100644 index 000000000..8b82194e9 --- /dev/null +++ b/data/tabular/mp_self_supervised/transform.py @@ -0,0 +1,22 @@ +import pandas as pd + + +def remove_composition_from_cif(cif): + # in the second line of cif, split at _ and then take the first element and join it with "cif" + parts = cif.split("\n") + parts[1] = "data_cif" + return "\n".join(parts) + + +def process(): + df = pd.read_json( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-mp-cifs/resolve/main/mpid.json" + ) + df = df.query("is_longer_than_allowed==False").dropna() + df["cif"] = df["cif"].apply(remove_composition_from_cif) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/opv/meta.yaml b/data/tabular/opv/meta.yaml index f00238aaf..1107ee6cc 100644 --- a/data/tabular/opv/meta.yaml +++ b/data/tabular/opv/meta.yaml @@ -117,49 +117,49 @@ bibtex: } templates: - |- - Question: What is the {PCE_ave__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? + Question: What is the {PCE_ave__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? Answer: {#The power conversion efficiency is |The PCE is!}{PCE_ave#} %. - |- - Question: What is the {Voc__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? + Question: What is the {Voc__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? Answer: {#The open-circuit voltage is |The Voc is!}{Voc#} {Voc__units}. - |- - Question: What is the {Jsc__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? + Question: What is the {Jsc__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? Answer: {#The short-circuit current density is |The Jsc is!}{Jsc#} {Jsc__units}. - |- - Question: What is the {FF__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? + Question: What is the {FF__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}? Answer: {#The fill factor is |The FF is !}{FF#}. - |- - Question: What is the {bandgap__names__noun} of a polymer with monomer SMILES {SMILES#}? + Question: What is the {bandgap__names__noun} of a polymer with monomer {SMILES__description} {SMILES#}? Answer: {#The bandgap is |The bandgap of the polymer is!}{bandgap#} {bandgap__units}. - |- - Question: What is the {HOMO__names__noun} of a polymer with monomer SMILES {SMILES#}? + Question: What is the {HOMO__names__noun} of a polymer with monomer {SMILES__description} {SMILES#}? Answer: The {HOMO__names__noun} {#of the polymer|!} is {HOMO#} {HOMO__units}. - |- - Question: What is the {LUMO__names__noun} of a polymer with monomer SMILES {SMILES#}? + Question: What is the {LUMO__names__noun} of a polymer with monomer {SMILES__description} {SMILES#}? Answer: The {LUMO__names__noun} {#of the polymer|!} is {LUMO#} {LUMO__units}. - The {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer - SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity - index (PDI)!} of {PDI#} has a {PCE_ave__names__noun} of {PCE_ave#}%. + {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity + index|polydispersity index (PDI)!} of {PDI#} has a {PCE_ave__names__noun} of {PCE_ave#}%. - The {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer - SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity - index (PDI)!} of {PDI#} has a {Jsc__names__noun} of {Jsc#} {Jsc__units}. + {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity + index|polydispersity index (PDI)!} of {PDI#} has a {Jsc__names__noun} of {Jsc#} {Jsc__units}. - The {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a donor polymer with monomer - SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity - index (PDI)!} of {PDI#} has a {FF__names__noun} of {FF#}. + {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity + index|polydispersity index (PDI)!} of {PDI#} has a {FF__names__noun} of {FF#}. - |- User: I {#want to|would like to|aim to|wish to!} {#design|create|build!} {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}%. Assistant: {#That's interesting.|Cool.|!} Do you have a donor polymer in mind? - User: Yes, I would like to use a polymer with monomer SMILES {SMILES#} and {#would like to|need to|must!} know the {PDI__names__noun} and {Mw__names__noun} of the polymer I should use. + User: Yes, I would like to use a polymer with monomer {SMILES__description} {SMILES#} and {#would like to|need to|must!} know the {PDI__names__noun} and {Mw__names__noun} of the polymer I should use. Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and a {PDI__names__noun} of {PDI#}. - |- User: I {#want to|would like to|aim to|wish to!} {#design|create|build!} {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}%. Assistant: {#That's interesting.|Cool.|!} Do you have additional constraints? User: {#Yes, |Yeah, |Indeed, |!}I would like to have a {Jsc__names__noun} of {Jsc#} {Jsc__units}. - Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and {PDI__names__noun} of {PDI#} of a polymer with monomer SMILES {SMILES#}. + Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and {PDI__names__noun} of {PDI#} of a polymer with monomer {SMILES__description} {SMILES#}. - |- User: Can you {#recommend|suggest|propose!} a donor polymer for a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}% and a {Jsc__names__noun} of {Jsc#} {Jsc__units}? - Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and {PDI__names__noun} of {PDI#} of a polymer with monomer SMILES {SMILES#}. + Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and {PDI__names__noun} of {PDI#} of a polymer with monomer {SMILES__description} {SMILES#}. - |- Task: Predict the {PCE_ave__names__noun} of a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device based on a description of the donor polymer. - Description: The donor polymer has monomer SMILES {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}. + Description: The donor polymer has monomer {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#}. Solution: {#The power conversion efficiency is |The PCE is !}{PCE_ave#} %. diff --git a/data/tabular/qm8/meta.yaml b/data/tabular/qm8/meta.yaml new file mode 100644 index 000000000..a453f81a2 --- /dev/null +++ b/data/tabular/qm8/meta.yaml @@ -0,0 +1,276 @@ +--- +name: qm8 +description: |- + QM8 is a dataset of quantum mechanical simulations of electronic spectra + and the energy levels of excited states in small molecules. + The dataset involves the application of various techniques, + such as time-dependent density functional theories (TDDFT) + and second-order approximate coupled-cluster (CC2), + to a group of molecules, which encompasses those containing as many as eight heavy atoms. + These molecules also form a subset of the GDB-17 database. +targets: + - id: E1-CC2 + description: Excitation energy of the first excited state, computed using CC2 + units: a. u. + type: continuous + siginificant_digits: 5 + names: + - noun: S0 -> S1 transition energy computed using second-order approximate coupled-cluster theory (CC2) + - noun: S0 -> S1 transition energy computed using RI-CC2/def2TZVP + - noun: RI-CC2/def2TZVP-computed S0 -> S1 transition energy + - id: E2-CC2 + description: Excitation energy of the second excited state, computed using CC2 + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S2 transition energy computed using second-order approximate coupled-cluster theory (CC2) + - noun: S0 -> S2 transition energy computed using RI-CC2/def2TZVP + - noun: RI-CC2/def2TZVP-computed S0 -> S2 transition energy + - id: f1-CC2 + description: Oscillator strength of the first excited state, computed using CC2 + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S1 transition oscillator strength computed using second-order approximate coupled-cluster theory (CC2) + - noun: S0 -> S1 transition oscillator strength computed using RI-CC2/def2TZVP + - noun: RI-CC2/def2TZVP-computed S0 -> S1 transition oscillator strength + - id: f2-CC2 + description: Oscillator strength of the second excited state, computed using CC2 + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S2 transition oscillator strength computed using second-order approximate coupled-cluster theory (CC2) + - noun: S0 -> S2 transition oscillator strength computed using RI-CC2/def2TZVP + - noun: RI-CC2/def2TZVP-computed S0 -> S2 transition oscillator strength + - id: E1-PBE0 + description: Excitation energy of the first excited state, computed using LR-TDPBE0/def2SVP + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S1 transition energy computed using linear-response time-dependent density functional theory (LR-TDPBE0/def2SVP) + - noun: S0 -> S1 transition energy computed using LR-TDPBE0/def2SVP + - noun: LR-TDPBE0/def2SVP-computed S0 -> S1 transition energy + - id: E2-PBE0 + description: Excitation energy of the second excited state, computed using LR-TDPBE0/def2SVP + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S2 transition energy computed using linear-response time-dependent density functional theory (LR-TDPBE0/def2SVP) + - noun: S0 -> S2 transition energy computed using LR-TDPBE0/def2SVP + - noun: LR-TDPBE0/def2SVP-computed S0 -> S2 transition energy + - id: f1-PBE0 + description: Oscillator strength of the first excited state, computed using LR-TDPBE0/def2SVP + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S1 transition oscillator strength computed using linear-response time-dependent density functional theory (LR-TDPBE0/def2SVP) + - noun: S0 -> S1 transition oscillator strength computed using LR-TDPBE0/def2SVP + - noun: LR-TDPBE0/def2SVP-computed S0 -> S1 transition oscillator strength + - id: f2-PBE0 + description: Oscillator strength of the second excited state, computed using LR-TDPBE0/def2SVP + units: a. u. + type: continuous + significant_digits: 4 + names: + - noun: S0 -> S2 transition oscillator strength computed using linear-response time-dependent density functional theory (LR-TDPBE0/def2SVP) + - noun: S0 -> S2 transition oscillator strength computed using LR-TDPBE0/def2SVP + - noun: LR-TDPBE0/def2SVP-computed S0 -> S2 transition oscillator strength + - id: E1-CAM + description: Excitation energy of the first excited state, computed using CAM-B3LYP/def2TZVP + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S1 transition energy computed using Coulomb-attenuated B3LYP density functional theory (CAM-B3LYP/def2TZVP) + - noun: S0 -> S1 transition energy computed using CAM-B3LYP/def2TZVP + - noun: CAM-B3LYP/def2TZVP-computed S0 -> S1 transition energy + - id: E2-CAM + description: Excitation energy of the second excited state, computed using CAM-B3LYP/def2TZVP + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S2 transition energy computed using Coulomb-attenuated B3LYP density functional theory (CAM-B3LYP/def2TZVP) + - noun: S0 -> S2 transition energy computed using CAM-B3LYP/def2TZVP + - noun: CAM-B3LYP/def2TZVP-computed S0 -> S2 transition energy + - id: f1-CAM + description: Oscillator strength of the first excited state, computed using CAM-B3LYP/def2TZVP + units: a. u. + type: continuous + significant_digits: 5 + names: + - noun: S0 -> S1 transition oscillator strength computed using Coulomb-attenuated B3LYP density functional theory (CAM-B3LYP/def2TZVP) + - noun: S0 -> S1 transition oscillator strength computed using CAM-B3LYP/def2TZVP + - noun: CAM-B3LYP/def2TZVP-computed S0 -> S1 transition oscillator strength + - id: f2-CAM + description: Oscillator strength of the second excited state, computed using CAM-B3LYP/def2TZVP + units: a. u. + type: continuous + significant_digits: 4 + names: + - noun: S0 -> S2 transition oscillator strength computed using Coulomb-attenuated B3LYP density functional theory (CAM-B3LYP/def2TZVP) + - noun: S0 -> S2 transition oscillator strength computed using CAM-B3LYP/def2TZVP + - noun: CAM-B3LYP/def2TZVP-computed S0 -> S2 transition oscillator strength +identifiers: + - id: SMILES + type: SMILES + description: SMILES + - id: XYZ + type: XYZ + description: XYZ file + - id: MOL2000 + type: MOL2000 + description: MOL2000 file + - id: MOL3000 + type: MOL3000 + description: MOL3000 file +license: CC BY 4.0 +links: + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/gdb8.tar.gz + description: original dataset +num_points: 7015 +bibtex: + - |- + @article{Blum_2009, + doi = {10.1021/ja902302h}, + url = {https://doi.org/10.1021%2Fja902302h}, + year = 2009, + month = {jun}, + publisher = {American Chemical Society ({ACS})}, + volume = {131}, + number = {25}, + pages = {8732--8733}, + author = {Lorenz C. Blum and Jean-Louis Reymond}, + title = {970 Million Druglike Small Molecules for + Virtual Screening in the Chemical Universe Database {GDB}-13}, + journal = {J. Am. Chem. Soc.} + } + - |- + @article{Ramakrishnan_2015, + doi = {10.1063/1.4928757}, + url = {https://doi.org/10.1063%2F1.4928757}, + year = 2015, + month = {aug}, + publisher = {{AIP} Publishing}, + volume = {143}, + number = {8}, + author = {Raghunathan Ramakrishnan and Mia Hartmann + and Enrico Tapavicza and O. Anatole von Lilienfeld}, + title = {Electronic spectra from {TDDFT} + and machine learning in chemical space}, + journal = {The Journal of Chemical Physics} + } + - |- + @article{Wu_2018, + doi = {10.1039/c7sc02664a}, + url = {https://doi.org/10.1039%2Fc7sc02664a}, + year = 2018, + publisher = {Royal Society of Chemistry ({RSC})}, + volume = {9}, + number = {2}, + pages = {513--530}, + author = {Zhenqin Wu and Bharath Ramsundar and Evan~N. Feinberg + and Joseph Gomes and Caleb Geniesse and Aneesh S. Pappu + and Karl Leswing and Vijay Pande}, + title = {{MoleculeNet}: a benchmark for molecular machine learning}, + journal = {Chem. Sci.} + } +templates: + - The {E1-CC2__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {E1-CC2#} {E1-CC2__units} + - The {E2-CC2__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {E2-CC2#} {E2-CC2__units} + - The {f1-CC2__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {f1-CC2#} {f1-CC2__units} + - The {f2-CC2__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {f2-CC2#} {f2-CC2__units} + - The {E1-PBE0__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {E1-PBE0#} {E1-PBE0__units} + - The {E2-PBE0__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {E2-PBE0#} {E2-PBE0__units} + - The {f1-PBE0__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {f1-PBE0#} {f1-PBE0__units} + - The {f2-PBE0__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {f2-PBE0#} {f2-PBE0__units} + - The {E1-CAM__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {E1-CAM#} {E1-CAM__units} + - The {E2-CAM__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {E2-CAM#} {E2-CAM__units} + - The {f1-CAM__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {f1-CAM#} {f1-CAM__units} + - The {f2-CAM__names__noun} of the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#} is {f2-CAM#} {f2-CAM__units} + - |- + Question: What is the {E1-CC2__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {E1-CC2#} {E1-CC2__units} + - |- + Question: What is the {E2-CC2__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {E2-CC2#} {E2-CC2__units} + - |- + Question: What is the {f1-CC2__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {f1-CC2#} {f1-CC2__units} + - |- + Question: What is the {f2-CC2__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {f2-CC2#} {f2-CC2__units} + - |- + Question: What is the {E1-PBE0__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {E1-PBE0#} {E1-PBE0__units} + - |- + Question: What is the {E2-PBE0__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {E2-PBE0#} {E2-PBE0__units} + - |- + Question: What is the {f1-PBE0__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {f1-PBE0#} {f1-PBE0__units} + - |- + Question: What is the {f2-PBE0__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {f2-PBE0#} {f2-PBE0__units} + - |- + Question: What is the {E1-CAM__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {E1-CAM#} {E1-CAM__units} + - |- + Question: What is the {E2-CAM__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {E2-CAM#} {E2-CAM__units} + - |- + Question: What is the {f1-CAM__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {f1-CAM#} {f1-CAM__units} + - |- + Question: What is the {f2-CAM__names__noun} of the {#molecule|chemical|compound!} with the V2000 Molfile with the following content? + Description: The content of the V2000 Molfile is {MOL2000#}. + Answer: {f2-CAM#} {f2-CAM__units} + - |- + Question: What is the {E1-CC2__names__noun} of the {#molecule|chemical|compound!} with the V3000 Molfile with the following content? + Description: The content of the V3000 Molfile is {MOL3000#}. + Answer: {E1-CC2#} {E1-CC2__units} + - |- + Question: What is the {SMILES__description} of the {#molecule|chemical|compound!} with the V3000 Molfile with the following content? + Description: The content of the V3000 Molfile is {MOL3000#}. + Answer: {SMILES#}. + - |- + Question: What is the {E2-CC2__names__noun} of the {#molecule|chemical|compound!} with the V3000 Molfile with the following content? + Description: The content of the V3000 Molfile is {MOL3000#}. + Answer: {E2-CC2#} {E2-CC2__units} + - |- + User: I want to design a {#molecule|molecule|compound!} with a particular {E1-CC2__names__noun}, {E2-CC2__names__noun}, and {f1-CC2__names__noun}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {E1-CC2__names__noun}, {E2-CC2__names__noun}, and {f1-CC2__names__noun} of the molecule you want to design. + User: The {E1-CC2__names__noun} should be {E1-CC2#} {E1-CC2__units}, the {E2-CC2__names__noun} should be {E2-CC2#} {E2-CC2__units}, and the {f1-CC2__names__noun} should be {f1-CC2#} {f1-CC2__units} + Assistant: I {#recommend|suggest|propose|advise!} the {#molecule|chemical|compound!} with the V2000 Molfile with the following content: {MOL2000#}. + - |- + User: I have computed the {E1-CC2__names__noun}, {E2-CC2__names__noun}, and {f1-CC2__names__noun} of a {#molecule|molecule|compound!} and want to know its {SMILES__description}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {E1-CC2__names__noun}, {E2-CC2__names__noun}, and {f1-CC2__names__noun} of the molecule you want to know the {SMILES__description} of. + User: The {E1-CC2__names__noun} is {E1-CC2#} {E1-CC2__units}, the {E2-CC2__names__noun} is {E2-CC2#} {E2-CC2__units}, and the {f1-CC2__names__noun} is {f1-CC2#} {f1-CC2__units} + Assistant: The {SMILES__description} of the molecule is {SMILES#}. + - |- + User: I want to design a {#molecule|molecule|compound!} that has a {E1-CC2__names__noun} of {E1-CC2#} {E1-CC2__units} and a {E2-CC2__names__noun} of {E2-CC2#} {E2-CC2__units} + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}{#Do you have any other constraints?|Do you have other requirements?|What else should I take into account?!} + User: {#No, |Nope, |No, I don't, |!}I only want to know the {SMILES__description} of the molecule. + Assistant: I {#recommend|suggest|propose|advise!} the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#}. + - |- + User: I want to design a {#molecule|molecule|compound!} that has a {E1-CC2__names__noun} of {E1-CC2#} {E1-CC2__units} and a {E2-CC2__names__noun} of {E2-CC2#} {E2-CC2__units} + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}{#Do you have any other constraints?|Do you have other requirements?|What else should I take into account?!} + User: {#Yes, |Yeah, |Yep, |Indeed, |!}I {#want|would like!} the {f1-CC2__names__noun} to be {f1-CC2#} {f1-CC2__units} + Assistant: I {#recommend|suggest|propose|advise!} the {#molecule|chemical|compound!} with the {SMILES__description} {SMILES#}. diff --git a/data/tabular/qm8/transform.py b/data/tabular/qm8/transform.py new file mode 100644 index 000000000..a90d76b5c --- /dev/null +++ b/data/tabular/qm8/transform.py @@ -0,0 +1,36 @@ +import pandas as pd + + +def process(): + df = pd.read_json( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-qm8/resolve/main/qm8.json" + ) + + df = df.replace("RDKit", "ChemNLP", regex=True) + df.dropna(inplace=True) + df = df.rename(columns={"smiles": "SMILES"}) + df = df.query("is_longer_than_allowed==False") + columns = [ + "E1-CC2", + "E2-CC2", + "f1-CC2", + "f2-CC2", + "E1-PBE0", + "E2-PBE0", + "f1-PBE0", + "f2-PBE0", + "E1-CAM", + "E2-CAM", + "f1-CAM", + "f2-CAM", + ] + # filter out rows in which one of the columns is not a float. Filter explicitly for the row in which + # the values for all those columns are floats. + df = df[df[columns].apply(lambda x: x.apply(lambda y: isinstance(y, float))).all(1)] + df[columns] = df[columns].astype(float) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/qm9/transform.py b/data/tabular/qm9/transform.py index ebad0865e..6f324a01e 100644 --- a/data/tabular/qm9/transform.py +++ b/data/tabular/qm9/transform.py @@ -43,6 +43,7 @@ def prepare_data(): datapoints = len(df) # some parts of the code assume that "SMILES" is in upper case, rename this column df.rename(columns={"smiles": "SMILES"}, inplace=True) + df = df.replace("RDKit", "ChemNLP", regex=True) df.to_csv(filename_to_save, index=False) return datapoints diff --git a/data/tabular/qmof_gcmc/transform.py b/data/tabular/qmof_gcmc/transform.py new file mode 100644 index 000000000..b99d4f542 --- /dev/null +++ b/data/tabular/qmof_gcmc/transform.py @@ -0,0 +1,93 @@ +import ast + +import numpy as np +import pandas as pd + + +def process(): + df = pd.read_json( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-qmof-data/resolve/main/qmof_data.json" + ) + + df.dropna( + subset=[ + "outputs.CO2-henry_coefficient-mol--kg--Pa", + "outputs.CO2-adsorption_energy-kJ--mol", + "outputs.N2-henry_coefficient-mol--kg--Pa", + "outputs.N2-adsorption_energy-kJ--mol", + "outputs.CO2-parasitic_energy_coal-MJ--kg", + "outputs.CO2-gravimetric_working_capacity_coal-kgCO2--kg", + "outputs.CO2-volumetric_working_capacity_coal-kgCO2--m3", + "outputs.CO2-parasitic_energy_nat_gas-MJ--kg", + "outputs.CO2-gravimetric_working_capacity_nat_gas-kgCO2--kg", + "outputs.CO2-volumetric_working_capacity_nat_gas-kgCO2--m3", + "outputs.CO2-final_purity_nat_gas-mol--mol", + "outputs.CH4-henry_coefficient-mol--kg--Pa", + "outputs.CH4-adsorption_energy-kJ--mol", + "outputs.CH4-enthalphy_of_adsorption_58_bar_298_K-kJ--mol", + "outputs.CH4-enthalphy_of_adsorption_65_bar_298_K-kJ--mol", + "outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3", + "outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg", + "outputs.CH4-working_capacity_fract_58_to_65_bar_298_K-", + "outputs.CH4-working_capacity_wt%_58_to_65_bar_298_K-g--g*100", + "outputs.O2-henry_coefficient-mol--kg--Pa", + "outputs.O2-adsorption_energy-kJ--mol", + "outputs.O2-enthalphy_of_adsorption_5_bar_298_K-kJ--mol", + "outputs.O2-enthalphy_of_adsorption_140_bar_298_K-kJ--mol", + "outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3", + "outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg", + "outputs.O2-working_capacity_fract_5_to_140_bar_298_K-", + "outputs.O2-working_capacity_wt%_5_to_140_bar_298_K-g--g*100", + "outputs.Xe-henry_coefficient-mol--kg--Pa", + "outputs.Xe-adsorption_energy-kJ--mol", + "outputs.Kr-henry_coefficient-mol--kg--Pa", + "outputs.Kr-adsorption_energy-kJ--mol", + "outputs.Xe--Kr-selectivity_298_K-", + "outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L", + "outputs.H2-working_capacity_5_to_100_bar_77_K-g--L", + "outputs.H2-working_capacity_1_to_100_bar_77_K-g--L", + "outputs.H2-working_capacity_wt%_5_to_100_bar_298_to_198_K-g--g100", + "outputs.H2-working_capacity_wt%_5_to_100_bar_77_K-g--g100", + "outputs.H2-working_capacity_wt%_1_to_100_bar_77_K-g--g100", + "outputs.H2S-henry_coefficient-mol--kg--Pa", + "outputs.H2S-adsorption_energy-kJ--mol", + "outputs.H2O-henry_coefficient-mol--kg--Pa", + "outputs.H2O-adsorption_energy-kJ--mol", + "outputs.H2S--H2O-selectivity_298_K-", + "outputs.CH4--N2-selectivity_298_K-", + "info.pld", + "info.lcd", + "info.density", + "info.mofid.mofid", + "info.mofid.smiles_nodes", + "info.mofid.smiles_linkers", + "info.mofid.topology", + "info.symmetry.spacegroup_number", + ], + inplace=True, + ) + + df["lg10_CO2_Henry"] = np.log10(df['outputs.CO2-henry_coefficient-mol--kg--Pa"']) + df["lg10_N2_Henry"] = np.log10(df["outputs.N2-henry_coefficient-mol--kg--Pa"]) + df["lg10_CH4_Henry"] = np.log10(df["outputs.CH4-henry_coefficient-mol--kg--Pa"]) + df["log10_O2_Henry"] = np.log10(df["outputs.O2-henry_coefficient-mol--kg--Pa"]) + df["log10_Xe_Henry"] = np.log10(df["outputs.Xe-henry_coefficient-mol--kg--Pa"]) + df["log10_Kr_Henry"] = np.log10(df["outputs.Kr-henry_coefficient-mol--kg--Pa"]) + df["log10_H2S_Henry"] = np.log(df["outputs.H2S-henry_coefficient-mol--kg--Pa"]) + df["log10_H20_Henry"] = np.log(df["outputs.H2O-henry_coefficient-mol--kg--Pa"]) + + df["info.mofid.smiles_nodes"] = df["info.mofid.smiles_nodes"].apply( + lambda x: ", ".join(ast.literal_eval(x)) + ) + + df["info.mofid.smiles_linkers"] = df["info.mofid.smiles_linkers"].apply( + lambda x: ", ".join(ast.literal_eval(x)) + ) + + print(len(df)) + + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/smiles_to_3d/explore.ipynb b/data/tabular/smiles_to_3d/explore.ipynb deleted file mode 100644 index b56e2dac6..000000000 --- a/data/tabular/smiles_to_3d/explore.ipynb +++ /dev/null @@ -1,124 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "from rdkit import Chem \n", - "from glob import glob\n", - "\n", - "import pandas as pd\n", - "from chemnlp.data.convert import xyz_file_to_string, is_longer_than_allowed, _write_mol2000, _write_mol3000" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "all_files = glob('xyzfiles/*.xyz') # downloaded from https://data.dtu.dk/articles/dataset/xyz_files_of_the_QM9_molecules/19780570" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "from rdkit.Chem import rdDetermineBonds" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "data = []\n", - "for file in all_files:\n", - " cleaned = xyz_file_to_string(file)\n", - " if not is_longer_than_allowed(cleaned):\n", - " raw_mol = Chem.MolFromXYZFile(file)\n", - " conn_mol = Chem.Mol(raw_mol)\n", - " rdDetermineBonds.DetermineConnectivity(conn_mol)\n", - " smiles = Chem.MolToSmiles(conn_mol)\n", - " data.append(\n", - " {\"SMILES\": smiles, \"xyz\": cleaned, 'mol2000': _write_mol2000(conn_mol), 'mol3000': _write_mol3000(conn_mol)}\n", - " )" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "133631" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(data)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "df = pd.DataFrame(data)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "df.to_json('data.json', orient='records', lines=True)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "chemnlp", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.16" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/data/tabular/smiles_to_3d/meta.yaml b/data/tabular/smiles_to_3d/meta.yaml index 584a17b03..0289c7c07 100644 --- a/data/tabular/smiles_to_3d/meta.yaml +++ b/data/tabular/smiles_to_3d/meta.yaml @@ -51,7 +51,7 @@ identifiers: type: SMILES description: SMILES license: CC BY 4.0 -num_points: 133631 +num_points: 133885 links: - url: https://data.dtu.dk/articles/dataset/xyz_files_of_the_QM9_molecules/19780570 description: original data source diff --git a/data/tabular/smiles_to_3d/transform.py b/data/tabular/smiles_to_3d/transform.py index dadd805f8..8a515621e 100644 --- a/data/tabular/smiles_to_3d/transform.py +++ b/data/tabular/smiles_to_3d/transform.py @@ -1,11 +1,16 @@ from datasets import load_dataset +from chemnlp.data.convert import is_longer_than_allowed + def process(): dataset = load_dataset("kjappelbaum/chemnlp-qm9-file-translation") df = dataset["train"].to_pandas() df.replace(to_replace="RDKit", value="ChemNLP", inplace=True) + df["is_longer_than_allowed"] = df["mol2000"].apply(is_longer_than_allowed) + df = df[~df["is_longer_than_allowed"]] print(len(df)) + df = df.replace("RDKit", "ChemNLP", regex=True) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/solubility_aqsoldb/meta.yaml b/data/tabular/solubility_aqsoldb/meta.yaml index e992ad8a3..d1aaf3cf5 100644 --- a/data/tabular/solubility_aqsoldb/meta.yaml +++ b/data/tabular/solubility_aqsoldb/meta.yaml @@ -1,7 +1,7 @@ --- name: solubility_aqsoldb description: |- - Aqeuous solubility measures a drug's ability to dissolve in water. + Aqueous solubility measures a drug's ability to dissolve in water. Poor water solubility could lead to slow drug absorptions, inadequate bioavailablity and even induce toxicity. More than 40 percent of new chemical entities are not soluble. @@ -11,10 +11,9 @@ targets: units: log(mol/L) type: continuous names: - - noun: aqeuous solubility - - noun: water solubility - - noun: ability of a drug to dissolve in a water - - adjective: dissolves in a water + - noun: aqueous solubility (at room temperature) + - noun: solubility in water (at room temperature) + - noun: water-solubility at room temperature uris: - http://purl.jp/bio/4/id/200906006880450101 - http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C60821 @@ -55,3 +54,16 @@ bibtex: title = {AqSolDB, a curated reference set of aqueous solubility and 2D descriptors for a diverse set of compounds}, journal = {Scientific Data} +templates: + - The name of the {#compound|drug|chemical|molecule!} with the {#SMILES|SMILES string|!} {SMILES#} is {compound_name#}. + - The {aqeuous_solubility__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#} is {aqeuous_solubility#} + {aqeuous_solubility__units}. + - The {aqeuous_solubility__names__noun} of the {#compound|drug|chemical|molecule!} with the {compound_name__names__noun} {compound_name#} is {aqeuous_solubility#} + {aqeuous_solubility__units}. + - |- + User: I want to {#design|discover|find|identify|!} a {#compound|drug|chemical|molecule!} with a particular {aqeuous_solubility__names__noun}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {aqeuous_solubility__names__noun} of the {#compound|drug|chemical|molecule!} you want to {#design|discover|find|identify|!}. + User: The {aqeuous_solubility__names__noun} should be {aqeuous_solubility#} {aqeuous_solubility__units}. + Assistant: I {#recommend|suggest|propose|advise|!} the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?|!} + User: {#Yes, |}I would like to know the {common_name__names__noun} of the {#compound|drug|chemical|molecule!}. + Assistant: The {common_name__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#} is {common_name#}. diff --git a/data/tabular/thermosol/meta.yaml b/data/tabular/thermosol/meta.yaml new file mode 100644 index 000000000..af2abecc9 --- /dev/null +++ b/data/tabular/thermosol/meta.yaml @@ -0,0 +1,66 @@ +--- +name: thermosol +description: |- + Solubility in pH 7.4 buffer using solid starting material using the method described in J. Assoc. Lab. Autom. 2011, 16, 276-284. + Experimental range 0.10 to 1500 uM +targets: + - id: target + description: aqueous solubility + units: log(microM) + type: continuous + significant_digits: 3 + names: + - noun: aqueous solubility in pH 7.4 buffer at 20 deg C + - noun: solubility in aqueous pH 7.4 buffer at 20 deg C + uris: + - http://purl.jp/bio/4/id/200906006880450101 + - http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C60821 +identifiers: + - id: SMILES + type: SMILES + description: SMILES +license: CC BY-SA 3.0 DEED +links: + - url: https://journals.sagepub.com/doi/10.1016/j.jala.2010.10.002 + description: corresponding publication + - url: https://www.ebi.ac.uk/chembl/assay_report_card/CHEMBL3301364/ + description: corresponding assay report card +num_points: 1763 +bibtex: + - |- + @article{Wenlock_2011, + doi = {10.1016/j.jala.2010.10.002}, + url = {https://doi.org/10.1016%2Fj.jala.2010.10.002}, + year = 2011, + month = {aug}, + publisher = {{SAGE} Publications}, + volume = {16}, + number = {4}, + pages = {276--284}, + author = {Mark C. Wenlock and Rupert P. Austin and Tim Potter and Patrick Barton}, + title = {A Highly Automated Assay for Determining the Aqueous Equilibrium Solubility of Drug Discovery Compounds}, + journal = {JALA: Journal of the Association for Laboratory Automation}: Journal of the Association for Laboratory Automation} + } + - |- + @article{Wu2018, + doi = {10.1039/c7sc02664a}, + url = {https://doi.org/10.1039/c7sc02664a}, + year = {2018}, + publisher = {Royal Society of Chemistry (RSC)}, + volume = {9}, + number = {2}, + pages = {513--530}, + author = {Zhenqin Wu and Bharath Ramsundar and Evan~N. Feinberg and Joseph Gomes + and Caleb Geniesse and Aneesh S. Pappu and Karl Leswing and Vijay Pande}, + title = {MoleculeNet: a benchmark for molecular machine learning}, + journal = {Chemical Science} +templates: + - The {target__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#} is {target#} {target__units}. + - |- + Question: What is the {target__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#}? + Answer: {target#} {target__units}. + - |- + User: I want to {#design|discover|find|identify|!} a {#compound|drug|chemical|molecule!} with a particular {target__names__noun}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {target__names__noun} of the {#compound|drug|chemical|molecule!} you want to design. + User: The {target__names__noun} should be {target#} {target__units}. + Assistant: I {#recommend|suggest|propose|advise|!} the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#}. diff --git a/data/tabular/thermosol/transform.py b/data/tabular/thermosol/transform.py new file mode 100644 index 000000000..9b8ff07df --- /dev/null +++ b/data/tabular/thermosol/transform.py @@ -0,0 +1,15 @@ +import pandas as pd + + +def process(): + df = pd.read_csv( + "http://deepchem.io.s3-website-us-west-1.amazonaws.com/datasets/thermosol.csv" + ) + df.rename(columns={"smile": "SMILES"}, inplace=True) + df.dropna(inplace=True) + print(len(df)) + df[["SMILES", "target"]].to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 7b98dd4fc..dd01f8b2d 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -74,6 +74,7 @@ "bioavailability_ma_et_al", # because it is boolean target data "blood_brain_barrier_martins_et_al", # because it is boolean target data "carcinogens", # because it is boolean target data + "core_mof_no_topo", "cav3_t-type_calcium_channels_butkiewicz", # because it is boolean target data "chebi_20", # target is text description "chembl_v29", # text only, no SMILES @@ -399,7 +400,9 @@ def __init__( self.meta = load_yaml(self.path_data_meta) # dataframe from csv - df = pd.read_csv(self.path_data_csv, low_memory=False) + df = pd.read_csv(self.path_data_csv, low_memory=False).replace( + "REPLACENULL", "" + ) def check_targets_and_identifiers(meta: dict, df: pd.DataFrame): all_identifiers = [x["id"] for x in meta["identifiers"]] + [ @@ -458,6 +461,7 @@ def check_targets_and_identifiers(meta: dict, df: pd.DataFrame): self.meta["targets"].append(additional_targets[col]) # assert not df.duplicated().sum() + df.drop_duplicates(inplace=True) if "split" not in df.columns: df["split"] = "train" @@ -987,7 +991,7 @@ def apply_sampling_and_export( # path_data_dir = path_data_dir[index:] for path in path_data_dir: - # if "smiles_to_3d" not in path: + # if "qm8" not in path: # continue # subselect one path # if path.find("data/tabular/") == -1: continue diff --git a/src/chemnlp/data/convert.py b/src/chemnlp/data/convert.py index 6125dee66..3ab4a3bd2 100644 --- a/src/chemnlp/data/convert.py +++ b/src/chemnlp/data/convert.py @@ -22,15 +22,19 @@ def cif_file_to_string( symprec (float, optional): If not None, symmetrizes the structure with the given symmetry tolerance. In this case, the space group (and other symmetry info) will be in the CIF. Defaults to None. - significant_figures (int, optional): No. of significant figures to write. Defaults to 3. + significant_figures (int, optional): No. of significant figures to write. + Defaults to 3. Returns: str: String representation of the cif file """ s = Structure.from_file(path) + return _structure_to_cif(s, primitive, symprec, significant_figures) + + +def _structure_to_cif(s, primitive, symprec, significant_figures): if primitive: s = s.get_primitive_structure() - return ( "[CIF]\n" + str( @@ -75,7 +79,7 @@ def smiles_to_3Dstring( conformer_kwargs = {} mol, _conformer = _get_conformer(smiles, **conformer_kwargs) if outformat == "xyz": - return "[XYZ]\n" + Chem.MolToXYZBlock(mol, confId=-1) + "[\XYZ]" # noqa + return _write_xyz(mol) elif outformat == "V2000MolBlock": return _write_mol2000(mol) elif outformat == "V3000MolBlock": @@ -84,6 +88,10 @@ def smiles_to_3Dstring( raise ValueError(f"outformat {outformat} not supported") +def _write_xyz(mol): + return "[XYZ]\n" + Chem.MolToXYZBlock(mol, confId=-1) + "[\XYZ]" # noqa + + def _write_mol2000(mol): return "[V2000]\n" + Chem.MolToMolBlock(mol, confId=-1) + "[\V2000]" # noqa @@ -96,7 +104,8 @@ def get_token_count(string): from transformers import GPTNeoXTokenizerFast tokenizer = GPTNeoXTokenizerFast.from_pretrained("EleutherAI/gpt-neox-20b") - return len(tokenizer(string)) + tokenized = tokenizer(string) + return len(tokenized["input_ids"]) def is_longer_than_allowed(string, tolerance=0.8, window=2000): From 7f7942bbe155a7db6430eeadbeb550d596b9c060 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:38:33 +0200 Subject: [PATCH 05/61] add qmof quantum full (#439) --- data/tabular/qmof_quantum/meta.yaml | 353 +++++++++++++++++++++++++ data/tabular/qmof_quantum/transform.py | 48 ++++ 2 files changed, 401 insertions(+) create mode 100644 data/tabular/qmof_quantum/meta.yaml create mode 100644 data/tabular/qmof_quantum/transform.py diff --git a/data/tabular/qmof_quantum/meta.yaml b/data/tabular/qmof_quantum/meta.yaml new file mode 100644 index 000000000..9d85970b6 --- /dev/null +++ b/data/tabular/qmof_quantum/meta.yaml @@ -0,0 +1,353 @@ +--- +name: qmof_quantum +description: |- + QMOF is a database of electronic properties of MOFs, assembled by Rosen et al. + Jablonka et al. added gas adsorption properties. +targets: + - id: outputs.pbe.bandgap + type: continuous + significant_digits: 3 + units: eV + names: + - noun: PAW-PBE-D3(BJ) calculated band gap + - noun: PAW-PBE-D3(BJ) computed band gap + - id: outputs.pbe.cbm + type: continuous + significant_digits: 3 + units: eV + names: + - noun: PAW-PBE-D3(BJ) calculated conduction band minimum + - noun: PAW-PBE-D3(BJ) computed conduction band minimum + - noun: PAW-PBE-D3(BJ) calculated conduction band minimum (CBM) + - noun: PAW-PBE-D3(BJ) computed conduction band minimum (CBM) + - noun: PAW-PBE-D3(BJ) calculated energy of conduction band minimum + - id: outputs.pbe.vbm + type: continuous + significant_digits: 3 + units: eV + names: + - noun: PAW-PBE-D3(BJ) calculated valence band maximum + - noun: PAW-PBE-D3(BJ) computed valence band maximum + - noun: PAW-PBE-D3(BJ) calculated valence band maximum (VBM) + - noun: PAW-PBE-D3(BJ) computed valence band maximum (VBM) + - noun: PAW-PBE-D3(BJ) computed energy of valence band maximum (VBM) + - id: outputs.hle17.bandgap + type: continuous + significant_digits: 3 + units: eV + names: + - noun: HLE17 calculated band gap of a PBE-D3(BJ) optimized structure + - noun: HLE17 computed band gap of a PBE-D3(BJ) optimized structure + - noun: HLE17 computed band gap (HLE17 single-point after PBE-D3(BJ) optimization) + - id: outputs.hle17.cbm + type: continuous + significant_digits: 3 + units: eV + names: + - noun: HLE17 calculated conduction band minimum of a PBE-D3(BJ) optimized structure + - noun: HLE17 computed conduction band minimum of a PBE-D3(BJ) optimized structure + - id: outputs.hle17.vbm + type: continuous + units: eV + significant_digits: 3 + names: + - noun: HLE17 calculated valence band maximum of a PBE-D3(BJ) optimized structure + - noun: HLE17 computed valence band maximum of a PBE-D3(BJ) optimized structure + - id: outputs.hse06.bandgap + type: continuous + units: eV + significant_digits: 3 + names: + - noun: HSE06 calculated band gap of a PBE-D3(BJ) optimized structure + - noun: HSE06 computed band gap of a PBE-D3(BJ) optimized structure + - noun: HSE06 computed band gap (HSE06 single-point after PBE-D3(BJ) optimization) + - id: outputs.hse06.cbm + type: continuous + units: eV + significant_digits: 3 + names: + - noun: HSE06 calculated conduction band minimum of a PBE-D3(BJ) optimized structure + - noun: HSE06 computed conduction band minimum of a PBE-D3(BJ) optimized structure + - id: outputs.hse06.vbm + type: continuous + units: eV + significant_digits: 3 + names: + - noun: HSE06 calculated valence band maximum of a PBE-D3(BJ) optimized structure + - noun: HSE06 computed valence band maximum of a PBE-D3(BJ) optimized structure + - id: info.pld + type: continuous + units: \AA + significant_digits: 3 + names: + - noun: pore limiting diameter + - noun: pore limiting diameter (PLD) + - id: info.lcd + type: continuous + units: \AA + significant_digits: 3 + names: + - noun: largest cavity diameter + - noun: largest cavity diameter (LCD) + - id: info.density + type: continuous + units: g/cm^3 + significant_digits: 3 + names: + - noun: density +identifiers: + - id: info.mofid.mofid + type: Other + description: MOF ID + - id: info.mofid.smiles_nodes + type: Other + description: SMILES of nodes + - id: info.mofid.smiles_linkers + type: Other + description: SMILES of linkers + - id: info.mofid.smiles + type: Other + description: SMILES + - id: info.mofid.topology + type: Other + description: Topology RCSR ID + - id: info.symmetry.spacegroup_number + type: Other + description: Spacegroup number + names: + - noun: space group number +license: CC-BY-4.0 +num_points: 1986 +links: + - url: https://figshare.com/collections/Quantum_chemistry_structures_and_properties_of_134_kilo_molecules/978904 + description: original data source + - url: https://huggingface.co/datasets/n0w0f/qm9-csv/blob/main/qm9_dataset.csv + description: parsed dataset in csv format +bibtex: + - |- + @article{Rosen_2021, + doi = {10.1016/j.matt.2021.02.015}, + url = {https://doi.org/10.1016%2Fj.matt.2021.02.015}, + year = 2021, + month = {may}, + publisher = {Elsevier {BV}}, + volume = {4}, + number = {5}, + pages = {1578--1597}, + author = {Andrew S. Rosen and Shaelyn M. Iyer and Debmalya Ray and Zhenpeng Yao and Al{\'{a}}n Aspuru-Guzik and Laura Gagliardi and Justin M. Notestein and Randall Q. Snurr}, + title = {Machine learning the quantum-chemical properties of metal{\textendash}organic frameworks for accelerated materials discovery}, + journal = {Matter} + } + - |- + @article{Rosen_2022, + doi = {10.1038/s41524-022-00796-6}, + url = {https://doi.org/10.1038%2Fs41524-022-00796-6}, + year = 2022, + month = {may}, + publisher = {Springer Science and Business Media {LLC}}, + volume = {8}, + number = {1}, + author = {Andrew S. Rosen and Victor Fung and Patrick Huck and Cody T. O'Donnell and Matthew K. Horton and Donald G. Truhlar and Kristin A. Persson and Justin M. Notestein and Randall Q. Snurr}, + title = {High-throughput predictions of metal{\textendash}organic framework electronic properties: theoretical challenges, graph neural networks, and data exploration}, + journal = {npj Comput Mater} + } + - |- + @article{Jablonka_2023, + doi = {10.1021/acscentsci.2c01177}, + url = {https://doi.org/10.1021%2Facscentsci.2c01177}, + year = 2023, + month = {mar}, + publisher = {American Chemical Society ({ACS})}, + volume = {9}, + number = {4}, + pages = {563--581}, + author = {Kevin Maik Jablonka and Andrew S. Rosen and Aditi S. Krishnapriyan and Berend Smit}, + title = {An Ecosystem for Digital Reticular Chemistry}, + journal = {ACS Cent. Sci.} Central Science} + } +templates: + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {#density|mass density!} of {info.density#} {info.density__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {#density|mass density|mass + density (density)!} of {info.density#} {info.density__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {#pore limiting diameter|pore limiting diameter (PLD)!} + of {info.pld#} {info.pld__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {#pore limiting diameter|pore + limiting diameter (PLD)!} of {info.pld#} {info.pld__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {#largest cavity diameter|largest cavity diameter (LCD)!} + of {info.lcd#} {info.lcd__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {#largest cavity diameter|largest + cavity diameter (LCD)!} of {info.lcd#} {info.lcd__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.pbe.bandgap__names__noun} of {outputs.pbe.bandgap#} + {outputs.pbe.bandgap__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.pbe.bandgap__names__noun} + of {outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.pbe.cbm__names__noun} of {outputs.pbe.cbm#} + {outputs.pbe.cbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.pbe.cbm__names__noun} + of {outputs.pbe.cbm#} {outputs.pbe.cbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.pbe.vbm__names__noun} of {outputs.pbe.vbm#} + {outputs.pbe.vbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.pbe.vbm__names__noun} + of {outputs.pbe.vbm#} {outputs.pbe.vbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.hle17.bandgap__names__noun} of {outputs.hle17.bandgap#} + {outputs.hle17.bandgap__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.hle17.bandgap__names__noun} + of {outputs.hle17.bandgap#} {outputs.hle17.bandgap__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.hle17.cbm__names__noun} of {outputs.hle17.cbm#} + {outputs.hle17.cbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.hle17.cbm__names__noun} + of {outputs.hle17.cbm#} {outputs.hle17.cbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.hle17.vbm__names__noun} of {outputs.hle17.vbm#} + {outputs.hle17.vbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.hle17.vbm__names__noun} + of {outputs.hle17.vbm#} {outputs.hle17.vbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.hse06.bandgap__names__noun} of {outputs.hse06.bandgap#} + {outputs.hse06.bandgap__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.hse06.bandgap__names__noun} + of {outputs.hse06.bandgap#} {outputs.hse06.bandgap__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.hse06.cbm__names__noun} of {outputs.hse06.cbm#} + {outputs.hse06.cbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.hse06.cbm__names__noun} + of {outputs.hse06.cbm#} {outputs.hse06.cbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.hse06.vbm__names__noun} of {outputs.hse06.vbm#} + {outputs.hse06.vbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {outputs.hse06.vbm__names__noun} + of {outputs.hse06.vbm#} {outputs.hse06.vbm__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} has a {#spacegroup number|space + group number!} of {info.symmetry.spacegroup_number#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} is a {#metal-organic framework|metal-organic framework (MOF)|reticular + material!} with the MOFid {info.mofid.mofid#}. + - |- + Question: {#What is|How large is!} the {#density|mass density!} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The density is |The mass density is |!}{info.density#} {info.density__units}. + - |- + Question: {#What is|How large is!} the {#density|mass density!} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The density is |The mass density is |!}{info.density#} {info.density__units}. + - |- + Question: {#What is|How large is!} the {#pore limiting diameter|pore limiting diameter (PLD)!} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The pore limiting diameter is |The pore limiting diameter (PLD) is |!}{info.pld#} {info.pld__units}. + - |- + Question: {#What is|How large is!} the {#pore limiting diameter|pore limiting diameter (PLD)!} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The pore limiting diameter is |The pore limiting diameter (PLD) is |!}{info.pld#} {info.pld__units}. + - |- + Question: {#What is|How large is!} the {#largest cavity diameter|largest cavity diameter (LCD)!} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The largest cavity diameter is |The largest cavity diameter (LCD) is |!}{info.lcd#} {info.lcd__units}. + - |- + Question: {#What is|How large is!} the {#largest cavity diameter|largest cavity diameter (LCD)!} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The largest cavity diameter is |The largest cavity diameter (LCD) is |!}{info.lcd#} {info.lcd__units}. + - |- + Question: {#What is|How large is!} the {outputs.pbe.bandgap__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The band gap is |The band gap of the MOF is |!}{outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}. + - |- + Question: {#What is|How large is!} the {outputs.pbe.bandgap__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The band gap is |The band gap of the MOF is |!}{outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}. + - |- + Question: {#What is|How large is!} the {outputs.pbe.cbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The conduction band minimum is |The conduction band minimum of the MOF is |!}{outputs.pbe.cbm#} {outputs.pbe.cbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.pbe.cbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The conduction band minimum is |The conduction band minimum of the MOF is |!}{outputs.pbe.cbm#} {outputs.pbe.cbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.pbe.vbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The valence band maximum is |The valence band maximum of the MOF is |!}{outputs.pbe.vbm#} {outputs.pbe.vbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.pbe.vbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The valence band maximum is |The valence band maximum of the MOF is |!}{outputs.pbe.vbm#} {outputs.pbe.vbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hle17.bandgap__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The band gap is |The band gap of the MOF is |!}{outputs.hle17.bandgap#} {outputs.hle17.bandgap__units}. + - |- + Question: {#What is|How large is!} the {outputs.hle17.bandgap__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The band gap is |The band gap of the MOF is |!}{outputs.hle17.bandgap#} {outputs.hle17.bandgap__units}. + - |- + Question: {#What is|How large is!} the {outputs.hle17.cbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The conduction band minimum is |The conduction band minimum of the MOF is |!}{outputs.hle17.cbm#} {outputs.hle17.cbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hle17.cbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The conduction band minimum is |The conduction band minimum of the MOF is |!}{outputs.hle17.cbm#} {outputs.hle17.cbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hle17.vbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The valence band maximum is |The valence band maximum of the MOF is |!}{outputs.hle17.vbm#} {outputs.hle17.vbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hle17.vbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The valence band maximum is |The valence band maximum of the MOF is |!}{outputs.hle17.vbm#} {outputs.hle17.vbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hse06.bandgap__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The band gap is |The band gap of the MOF is |!}{outputs.hse06.bandgap#} {outputs.hse06.bandgap__units}. + - |- + Question: {#What is|How large is!} the {outputs.hse06.bandgap__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The band gap is |The band gap of the MOF is |!}{outputs.hse06.bandgap#} {outputs.hse06.bandgap__units}. + - |- + Question: {#What is|How large is!} the {outputs.hse06.cbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The conduction band minimum is |The conduction band minimum of the MOF is |!}{outputs.hse06.cbm#} {outputs.hse06.cbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hse06.cbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: {#The conduction band minimum is |The conduction band minimum of the MOF is |!}{outputs.hse06.cbm#} {outputs.hse06.cbm__units}. + - |- + Question: {#What is|How large is!} the {outputs.hse06.vbm__names__noun} of the {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#}? + Answer: {#The valence band maximum is |The valence band maximum of the MOF is |!}{outputs.hse06.vbm#} {outputs.hse06.vbm__units}. + - |- + Question: In which {#topology|net!} do the linkers with SMILES {info.mofid.smiles_linkers#} and nodes with SMILES {info.mofid.smiles_nodes#} self-assemble to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#}? + Answer: The {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} self-assembles to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net!} {info.mofid.topology#}. + - |- + User: With which linkers do I have to combine my nodes with SMILES {info.mofid.smiles_nodes#} to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net!} {info.mofid.topology#}? + Assistant: You have to combine your nodes with SMILES {info.mofid.smiles_nodes#} with linkers with SMILES {info.mofid.smiles_linkers#} to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {info.mofid.topology#} {#topology|net!}. + - |- + User: With which nodes do I have to combine my linkers with SMILES {info.mofid.smiles_linkers#} to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net!} {info.mofid.topology#}? + Assistant: You have to combine your linkers with SMILES {info.mofid.smiles_linkers#} with nodes with SMILES {info.mofid.smiles_nodes#} to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {info.mofid.topology#} {#topology|net!}. + - |- + User: Which linkers and nodes do I have to combine to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {info.lcd__names__noun} {info.lcd#} {info.lcd__units}? + Assistant: {#Do you have other constraints?|Do you have other requirements?|Are there additional constraints?|Is there anything else I should take into account?!} + User: {#Yes, |Indeed, |Thanks, |!}I want to use linkers with SMILES {info.mofid.smiles_linkers#}. + Assistant: You have to combine your linkers with SMILES {info.mofid.smiles_linkers#} with nodes with SMILES {info.mofid.smiles_nodes#} to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {info.lcd__names__noun} {info.lcd#} {info.lcd__units}. + - |- + User: Which linkers and nodes do I have to combine to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {info.pld__names__noun} {info.pld#} {info.pld__units}? + Assistant: {#Do you have other constraints?|Do you have other requirements?|Are there additional constraints?|Is there anything else I should take into account?!} + User: {#Yes, |Indeed, |Thanks, |!}I want to use linkers with SMILES {info.mofid.smiles_linkers#} and want a {outputs.pbe.bandgap__names__noun} of {outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}. + Assistant: You have to combine your linkers with SMILES {info.mofid.smiles_linkers#} with nodes with SMILES {info.mofid.smiles_nodes#}. + - |- + User: Which linkers and nodes do I have to combine to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {outputs.pbe.bandgap__names__noun} of {outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}? + Assistant: {#Do you have other constraints?|Do you have other requirements?|Are there additional constraints?|Is there anything else I should take into account?!} + User: {#Yes, |Indeed, |Thanks, |!}I want to have a {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#} and {outputs.pbe.cbm__names__noun} of {outputs.pbe.cbm#} {outputs.pbe.cbm__units}. + Assistant: You have to combine your linkers with SMILES {info.mofid.smiles_linkers#} with nodes with SMILES {info.mofid.smiles_nodes#}. + User: {#One more thing, |I have one more question, |!}What is the {info.density__names__noun} and the {info.symmetry.spacegroup_number__names__noun}? + Assistant: The {info.density__names__noun} is {info.density#} {info.density__units} and the {info.symmetry.spacegroup_number__names__noun} is {info.symmetry.spacegroup_number#}. + - |- + User: What {#suggestion|proposals|ideas|recommendations!} do you have if I {#want|need!} a {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {outputs.pbe.bandgap__names__noun} of {outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}? + Assistant: {#Do you have other constraints?|Do you have other requirements?|Are there additional constraints?|Is there anything else I should take into account?!} + User: {#Yes, |Indeed, |Thanks, |!}I want to have a {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#} and {outputs.pbe.cbm__names__noun} of {outputs.pbe.cbm#} {outputs.pbe.cbm__units}. + Assistant: {#Is that it?|Is there anything else I should take into account?|Do you have other constraints?|Do you have other requirements?|Are there additional constraints?!} + User: {#One more thing, |I have one more request, |!}The {info.density__names__noun} should be {info.density#} {info.density__units} and the {info.symmetry.spacegroup_number__names__noun} should be {info.symmetry.spacegroup_number#}. + Assistant: {#I recommend that you |I propose that you |I suggest that you |!} combine your linkers with SMILES {info.mofid.smiles_linkers#} with nodes with SMILES {info.mofid.smiles_nodes#}. + - |- + User: I'm thinking about the band gaps of {#metal-organic frameworks|metal-organic frameworks (MOFs)|reticular materials!}. + Assistant: {#That's interesting.|How can I help?|How can I be of assistance?|Is there anything I can do?|What can I do for you?!} + User: How does the {outputs.pbe.bandgap__names__noun} of the {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} compare to the {outputs.hse06.bandgap__names__noun} and the {outputs.hle17.bandgap__names__noun}? + Assistant: The {outputs.pbe.bandgap__names__noun} is {outputs.pbe.bandgap#} {outputs.pbe.bandgap__units}, the {outputs.hse06.bandgap__names__noun} is {outputs.hse06.bandgap#} {outputs.hse06.bandgap__units} and the {outputs.hle17.bandgap__names__noun} is {outputs.hle17.bandgap#} {outputs.hle17.bandgap__units}. + - |- + User: I'm thinking about the conduction band minima and valence band maxima of {#metal-organic frameworks|metal-organic frameworks (MOFs)|reticular materials!}. + Assistant: {#That's interesting.|How can I help?|How can I be of assistance?|Is there anything I can do?|What can I do for you?!} + User: How does the {outputs.pbe.cbm__names__noun} of the {#metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFid {info.mofid.mofid#} compare to the {outputs.hse06.cbm__names__noun} and the {outputs.hle17.cbm__names__noun}? + Assistant: The {outputs.pbe.cbm__names__noun} is {outputs.pbe.cbm#} {outputs.pbe.cbm__units}, the {outputs.hse06.cbm__names__noun} is {outputs.hse06.cbm#} {outputs.hse06.cbm__units} and the {outputs.hle17.cbm__names__noun} is {outputs.hle17.cbm#} {outputs.hle17.cbm__units}. + User: {#And how does it look like for|And how about|How about!} the {outputs.pbe.vbm__names__noun}? + Assistant: The {outputs.pbe.vbm__names__noun} is {outputs.pbe.vbm#} {outputs.pbe.vbm__units}, the {outputs.hse06.vbm__names__noun} is {outputs.hse06.vbm#} {outputs.hse06.vbm__units} and the {outputs.hle17.vbm__names__noun} is {outputs.hle17.vbm#} {outputs.hle17.vbm__units}. + - |- + User: I'm {#thinking|wondering!} about the {#topology|net|RCSR code|RCSR identifier!} of {#metal-organic frameworks|metal-organic frameworks (MOFs)|reticular materials!}. + Assistant: {#That's interesting.|How can I help?|How can I be of assistance?|Is there anything I can do?|What can I do for you?!} + User: Which {#topology|net|RCSR code|RCSR identifier!} do the linkers with SMILES {info.mofid.smiles_linkers#} and nodes with SMILES {info.mofid.smiles_nodes#} self-assemble to form a {#metal-organic framework|metal-organic framework (MOF)|reticular material!}? + Assistant: Into the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}. + User: {#One more thing, |I have one more request, |Another question, |I have one more question, |!}What density do you {#predict|expect|estimate!} for this {#metal-organic framework|metal-organic framework (MOF)|reticular material|material!}? + Assistant: The {info.density__names__noun} is {info.density#} {info.density__units}. diff --git a/data/tabular/qmof_quantum/transform.py b/data/tabular/qmof_quantum/transform.py new file mode 100644 index 000000000..43654cde7 --- /dev/null +++ b/data/tabular/qmof_quantum/transform.py @@ -0,0 +1,48 @@ +import ast + +import pandas as pd + + +def process(): + df = pd.read_json( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-qmof-data/resolve/main/qmof_data.json" + ) + + df.dropna( + subset=[ + "outputs.pbe.bandgap", + "outputs.pbe.cbm", + "outputs.pbe.vbm", + "outputs.hle17.bandgap", + "outputs.hle17.cbm", + "outputs.hle17.vbm", + "outputs.hse06.bandgap", + "outputs.hse06.cbm", + "outputs.hse06.vbm", + "info.pld", + "info.lcd", + "info.density", + "info.mofid.mofid", + "info.mofid.smiles_nodes", + "info.mofid.smiles_linkers", + "info.mofid.topology", + "info.symmetry.spacegroup_number", + ], + inplace=True, + ) + + df["info.mofid.smiles_nodes"] = df["info.mofid.smiles_nodes"].apply( + lambda x: ", ".join(ast.literal_eval(x)) + ) + + df["info.mofid.smiles_linkers"] = df["info.mofid.smiles_linkers"].apply( + lambda x: ", ".join(ast.literal_eval(x)) + ) + + print(len(df)) + + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() From 110701c5a528eb768e5ad32e71feae0a55777dfd Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:37:41 +0200 Subject: [PATCH 06/61] add rdkit features (#453) --- data/tabular/RedDB/transform.py | 30 ++--- data/tabular/rdkit_features/meta.yaml | 151 +++++++++++++++++++++++ data/tabular/rdkit_features/transform.py | 60 +++++++++ data/text_sampling/text_sampling.py | 3 +- 4 files changed, 228 insertions(+), 16 deletions(-) create mode 100644 data/tabular/rdkit_features/meta.yaml create mode 100644 data/tabular/rdkit_features/transform.py diff --git a/data/tabular/RedDB/transform.py b/data/tabular/RedDB/transform.py index cb1f4f2b4..990b61290 100644 --- a/data/tabular/RedDB/transform.py +++ b/data/tabular/RedDB/transform.py @@ -44,35 +44,35 @@ def read_dataset(): "id": "solubilityAqSolPred", "description": "Aqueous solubility prediction using machine learning", "units": "logS", - "type": "continous", + "type": "continuous", "names": [{"noun": "ML-predicted aqueous solubility"}], }, { "id": "molecularSurface", "description": "Total surface area of a molecule", "units": "\\AA^2", - "type": "continous", + "type": "continuous", "names": [{"noun": "molecular surface area"}], }, { "id": "reactionFieldEnergy", "description": "Energy associated with the interaction during a chemical reaction", "units": "kT", - "type": "continous", + "type": "continuous", "names": [{"noun": "chemical reaction field energy"}], }, { "id": "solventAccessSurface", "description": "Surface area of a molecule accessible to a solvent", "units": "\\AA^2", - "type": "continous", + "type": "continuous", "names": [{"noun": "solvent-accessible surface area"}], }, { "id": "cavityEnergy", "description": "Energy associated with the formation of cavities in a molecular structure", "units": "kT", - "type": "continous", + "type": "continuous", "names": [ {"noun": "cavity formation energy at the PBE level of theory"} ], @@ -81,7 +81,7 @@ def read_dataset(): "id": "gasEnergy", "description": "Total energy of a molecule in the gas phase", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ {"noun": "gas-phase molecular energy at the PBE level of theory"} ], @@ -90,7 +90,7 @@ def read_dataset(): "id": "gasHomo", "description": "Highest Occupied Molecular Orbital (HOMO) energy of a gas-phase molecule", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ {"noun": "gaseous phase HOMO energy at the PBE level of theory"} ], @@ -99,7 +99,7 @@ def read_dataset(): "id": "gasLumo", "description": "Lowest Unoccupied Molecular Orbital (LUMO) energy of a gas-phase molecule", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ {"noun": "gaseous phase LUMO energy at the PBE level of theory"} ], @@ -108,7 +108,7 @@ def read_dataset(): "id": "solutionEnergy", "description": "Total energy of a molecule in a solution", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ { "noun": "aqueous phase molecular energy at the PBE level of theory" @@ -119,7 +119,7 @@ def read_dataset(): "id": "solutionHomo", "description": "Highest Occupied Molecular Orbital (HOMO) energy in a solution", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ {"noun": "aqueous phase HOMO energy at the PBE level of theory"} ], @@ -128,7 +128,7 @@ def read_dataset(): "id": "solutionLumo", "description": "Lowest Unoccupied Molecular Orbital (LUMO) energy in a solution", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ {"noun": "aqueous phase LUMO energy at the PBE level of theory"} ], @@ -137,7 +137,7 @@ def read_dataset(): "id": "nuclearRepulsionEnergy", "description": "Electrostatic repulsion energy between atomic nuclei in a molecule", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ {"noun": "nuclear repulsion energy at the PBE level of theory"} ], @@ -146,7 +146,7 @@ def read_dataset(): "id": "optGasEnergy", "description": "Total energy of an optimized gas-phase molecule", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ { "noun": "optimized gas-phase molecular energy at the PBE level of theory" @@ -157,7 +157,7 @@ def read_dataset(): "id": "optGasHomo", "description": "Highest Occupied Molecular Orbital (HOMO) energy of an optimized gas-phase molecule", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ { "noun": "optimized gas-phase HOMO energy at the PBE level of theory" @@ -168,7 +168,7 @@ def read_dataset(): "id": "optGasLumo", "description": "Lowest Unoccupied Molecular Orbital (LUMO) energy of an optimized gas-phase molecule", "units": "Hartree", - "type": "continous", + "type": "continuous", "names": [ { "noun": "optimized gas-phase LUMO energy calculated at the PBE level of theory" diff --git a/data/tabular/rdkit_features/meta.yaml b/data/tabular/rdkit_features/meta.yaml new file mode 100644 index 000000000..bb9499466 --- /dev/null +++ b/data/tabular/rdkit_features/meta.yaml @@ -0,0 +1,151 @@ +--- +names: rdkit_features +description: |- + Molecular descriptors computed using RDKit +targets: + - id: formula + type: formula + names: + - noun: formula + - noun: chemical formula + - noun: chemical formula + - noun: molecular formula + - id: NumHDonors + type: continuous + significant_digits: 0 + names: + - noun: number of hydrogen bond donors + - noun: number of hydrogen bond donor sites + - noun: count of hydrogen bond donors + - id: NumHAcceptors + type: continuous + significant_digits: 0 + names: + - noun: number of hydrogen bond acceptors + - noun: number of hydrogen bond acceptor sites + - noun: count of hydrogen bond acceptors + - id: NumHeteroatoms + type: continuous + significant_digits: 0 + names: + - noun: number of heteroatoms + - noun: count of heteroatoms + - noun: heteroatom count + - id: RingCount + type: continuous + significant_digits: 0 + names: + - noun: number of rings + - noun: count of rings + - noun: ring count + - id: NumRotatableBonds + type: continuous + significant_digits: 0 + names: + - noun: number of rotatable bonds + - noun: count of rotatable bonds + - noun: rotatable bond count + - id: NumAromaticBonds + type: continuous + significant_digits: 0 + names: + - noun: number of aromatic bonds + - noun: count of aromatic bonds + - noun: aromatic bond count + - id: NumAcidGroups + type: continuous + significant_digits: 0 + names: + - noun: number of acid groups + - noun: count of acid groups + - noun: acid group count + - id: NumBasicGroups + type: continuous + significant_digits: 0 + names: + - noun: number of basic groups + - noun: count of basic groups + - noun: basic group count + - id: Apol + type: continuous + significant_digits: 2 + names: + - noun: sum of atomic polarizabilities + - noun: total sum of atomic polarizabilities + - id: MolLogP + type: continuous + significant_digits: 2 + names: + - noun: Wildman-Crippen LogP value computed using RDKit + - noun: Wildman-Crippen LogP value + - noun: LogP value computed using the Wildman-Crippen method +benchmarks: + - names: WhiteLab + link: https://huggingface.co/datasets/maykcaldas/smiles-transformers/viewer/default/train?p=9080867 + split_column: split +identifiers: + - id: SMILES + type: SMILES + description: SMILES +license: MIT +links: + - url: https://huggingface.co/datasets/maykcaldas/smiles-transformers/viewer/default/train?p=9080867 + description: Data source +num_points: 1009179703 +templates: + - The {formula__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {formula#}. + - The {NumHDonors__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumHDonors#}. + - The {NumHAcceptors__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumHAcceptors#}. + - The {NumHeteroatoms__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumHeteroatoms#}. + - The {RingCount__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {RingCount#}. + - The {NumRotatableBonds__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumRotatableBonds#}. + - The {NumAromaticBonds__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumAromaticBonds#}. + - The {NumAcidGroups__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumAcidGroups#}. + - The {NumBasicGroups__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {NumBasicGroups#}. + - The {Apol__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {Apol#}. + - The {MolLogP__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {MolLogP#}. + - |- + User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {formula__names__noun} of {formula#}. + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations|!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {NumHDonors__names__noun} to be {NumHDonors#}, the {NumHAcceptors__names__noun} to be {NumHAcceptors#}. + Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise|!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. + - |- + Question: What is the {formula__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {formula#} + - |- + Question: What is the {NumHDonors__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumHDonors#} + - |- + Question: What is the {NumHAcceptors__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumHAcceptors#} + - |- + Question: What is the {NumHeteroatoms__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumHeteroatoms#} + - |- + Question: What is the {RingCount__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {RingCount#} + - |- + Question: What is the {NumRotatableBonds__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumRotatableBonds#} + - |- + Question: What is the {NumAromaticBonds__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumAromaticBonds#} + - |- + Question: What is the {NumAcidGroups__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumAcidGroups#} + - |- + Question: What is the {NumBasicGroups__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {NumBasicGroups#} + - |- + Question: What is the {Apol__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? + Answer: {Apol#} + - |- + User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {NumHDonors__names__noun} of {NumHDonors#} and a {NumHAcceptors__names__noun} of {NumHAcceptors#}. + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations|!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {NumHeteroatoms__names__noun} to be {NumHeteroatoms#}. + Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise|!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. + - |- + User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {NumHDonors__names__noun} of {NumHDonors#}, a {NumHAcceptors__names__noun} of {NumHAcceptors#} and a {MolLogP__names__noun} of {MolLogP#}. + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations|!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {formula__names__noun} to be {formula#}. + Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise|!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. diff --git a/data/tabular/rdkit_features/transform.py b/data/tabular/rdkit_features/transform.py new file mode 100644 index 000000000..b6f3af4bf --- /dev/null +++ b/data/tabular/rdkit_features/transform.py @@ -0,0 +1,60 @@ +import fire +import pandas as pd +from datasets import load_dataset + + +def process(debug=False): + if debug: + dataset = load_dataset("maykcaldas/smiles-transformers", split="train[:100]") + train_pandas = dataset.to_pandas() + test_pandas = dataset.to_pandas() + valid_pandas = dataset.to_pandas() + else: + dataset = load_dataset("maykcaldas/smiles-transformers") + train_pandas = dataset["train"].to_pandas() + test_pandas = dataset["test"].to_pandas() + valid_pandas = dataset["validation"].to_pandas() + train_pandas["split"] = "train" + test_pandas["split"] = "test" + valid_pandas["split"] = "valid" + df = pd.concat([train_pandas, test_pandas, valid_pandas]) + df.dropna(inplace=True) + df[ + [ + "NumHDonors", + "NumHAcceptors", + "NumHeteroatoms", + "RingCount", + "NumRotatableBonds", + "NumAromaticBonds", + "NumAcidGroups", + "NumBasicGroups", + ] + ] = df[ + [ + "NumHDonors", + "NumHAcceptors", + "NumHeteroatoms", + "RingCount", + "NumRotatableBonds", + "NumAromaticBonds", + "NumAcidGroups", + "NumBasicGroups", + ] + ].astype( + int + ) + + df["MolLogP"] = df["MolLogP"].astype(float) + df["Apol"] = df["Apol"].astype(float) + + print(df.columns) + df.rename(columns={"text": "SMILES"}, inplace=True) + + print(len(df)) + + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + fire.Fire(process) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index dd01f8b2d..a434acf88 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -559,7 +559,8 @@ def _get_target_from_row(self, sample: pd.Series, var: str) -> str: ][0] data_type = var_dict["type"] if data_type == "continuous": - assert isinstance(out, float) + if not isinstance(out, (float, int)): + raise ValueError(f"out is not a number (int or float): {out}") significant_digits = var_dict.get( "significant_digits", DEFAULT_SIGNIFICANT_DIGITS ) From e3eb1d822e478c9de6f73465ce59d3856c685740 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:40:46 +0200 Subject: [PATCH 07/61] add ORD data (#457) --- data/tabular/ord_masked/meta.yaml | 51 ++++++++++++ data/tabular/ord_masked/transform.py | 18 ++++ data/tabular/ord_predictions/meta.yaml | 64 ++++++++++++++ data/tabular/ord_predictions/transform.py | 35 ++++++++ data/tabular/ord_procedure_steps/meta.yaml | 54 ++++++++++++ data/tabular/ord_procedure_steps/transform.py | 21 +++++ .../ord_rxn_smiles_procedure/meta.yaml | 63 ++++++++++++++ .../ord_rxn_smiles_procedure/transform.py | 40 +++++++++ .../ord_rxn_smiles_yield_pred/meta.yaml | 53 ++++++++++++ .../ord_rxn_smiles_yield_pred/transform.py | 38 +++++++++ data/tabular/ord_steps_yield/meta.yaml | 54 ++++++++++++ data/tabular/ord_steps_yield/transform.py | 20 +++++ data/tabular/rhea_db_masked/meta.yaml | 70 ++++++++++++++++ data/tabular/rhea_db_masked/transform.py | 14 ++++ data/tabular/rhea_db_predictions/meta.yaml | 83 +++++++++++++++++++ data/tabular/rhea_db_predictions/transform.py | 28 +++++++ pyproject.toml | 1 + 17 files changed, 707 insertions(+) create mode 100644 data/tabular/ord_masked/meta.yaml create mode 100644 data/tabular/ord_masked/transform.py create mode 100644 data/tabular/ord_predictions/meta.yaml create mode 100644 data/tabular/ord_predictions/transform.py create mode 100644 data/tabular/ord_procedure_steps/meta.yaml create mode 100644 data/tabular/ord_procedure_steps/transform.py create mode 100644 data/tabular/ord_rxn_smiles_procedure/meta.yaml create mode 100644 data/tabular/ord_rxn_smiles_procedure/transform.py create mode 100644 data/tabular/ord_rxn_smiles_yield_pred/meta.yaml create mode 100644 data/tabular/ord_rxn_smiles_yield_pred/transform.py create mode 100644 data/tabular/ord_steps_yield/meta.yaml create mode 100644 data/tabular/ord_steps_yield/transform.py create mode 100644 data/tabular/rhea_db_masked/meta.yaml create mode 100644 data/tabular/rhea_db_masked/transform.py create mode 100644 data/tabular/rhea_db_predictions/meta.yaml create mode 100644 data/tabular/rhea_db_predictions/transform.py diff --git a/data/tabular/ord_masked/meta.yaml b/data/tabular/ord_masked/meta.yaml new file mode 100644 index 000000000..3871ec22f --- /dev/null +++ b/data/tabular/ord_masked/meta.yaml @@ -0,0 +1,51 @@ +--- +name: ord_rxn_smiles_yield_pred +description: |- + The open reaction database is a database of chemical reactions and their conditions +identifiers: + - id: masked_rxn_smiles + type: text + description: reaction SMILES with one element masked + names: + - noun: reaction SMILES with one element masked as `MASK` + - noun: reaction SMILES with one element hidden as `MASK` + - noun: masked reaction SMILES (one component masked as `MASK`) + - noun: masked reaction SMILES string (one component masked as `MASK`) + - noun: masked RXNSMILES (one component masked as `MASK`) +targets: + - id: missing_component + type: text + description: masked element +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 2263983 +bibtex: + - |- + @article{Kearnes_2021, + doi = {10.1021/jacs.1c09820}, + url = {https://doi.org/10.1021%2Fjacs.1c09820}, + year = 2021, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {143}, + number = {45}, + pages = {18820--18826}, + author = {Steven M. Kearnes and Michael R. Maser + and Michael Wleklinski and Anton Kast and Abigail G. Doyle + and Spencer D. Dreher and Joel M. Hawkins + and Klavs F. Jensen and Connor W. Coley}, + title = {The Open Reaction Database}, + journal = {J. Am. Chem. Soc.} + } +templates: + - The masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#} is {missing_component#}. + - The {#chemical|compound!} with SMILES {missing_component#} is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}. + - |- + Question: What is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}? + Answer: {missing_component#}. + - |- + Task: Predict the masked component in a {masked_rxn_smiles__names__noun}. + Description: {masked_rxn_smiles#} + {#Answer|Solution!}: {missing_component#} diff --git a/data/tabular/ord_masked/transform.py b/data/tabular/ord_masked/transform.py new file mode 100644 index 000000000..c9bf091fa --- /dev/null +++ b/data/tabular/ord_masked/transform.py @@ -0,0 +1,18 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-ord", + filename="ord_rxn.json", + repo_type="dataset", + ) + df = pd.read_json(file) + df.dropna(subset=["masked_rxn_smiles", "missing_component"], inplace=True) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/ord_predictions/meta.yaml b/data/tabular/ord_predictions/meta.yaml new file mode 100644 index 000000000..c6878bba8 --- /dev/null +++ b/data/tabular/ord_predictions/meta.yaml @@ -0,0 +1,64 @@ +--- +name: ord_rxn_smiles_yield_pred +description: |- + The open reaction database is a database of chemical reactions and their conditions +identifiers: + - id: educt_string + type: text + description: reaction educts + names: + - noun: reaction educts + - noun: educts + - noun: starting materials + - id: RXNSMILES + type: RXNSMILES + description: reaction SMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) +targets: + - id: product_string + type: text + description: reaction products + names: + - noun: reaction products + - noun: products +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 2263057 +bibtex: + - |- + @article{Kearnes_2021, + doi = {10.1021/jacs.1c09820}, + url = {https://doi.org/10.1021%2Fjacs.1c09820}, + year = 2021, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {143}, + number = {45}, + pages = {18820--18826}, + author = {Steven M. Kearnes and Michael R. Maser + and Michael Wleklinski and Anton Kast and Abigail G. Doyle + and Spencer D. Dreher and Joel M. Hawkins + and Klavs F. Jensen and Connor W. Coley}, + title = {The Open Reaction Database}, + journal = {J. Am. Chem. Soc.} + } +templates: + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {educt_string__names__noun} {educt_string#} and the {product_string__names__noun} {product_string#}. + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {product_string__names__noun} {product_string#} and the {educt_string__names__noun} {educt_string#}. + - |- + Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} the {product_string__names__noun} {product_string#}? + Answer: {educt_string#}. + - |- + Question: {#What|Which!} {product_string__names__noun} are produced from the {educt_string__names__noun} {educt_string#}? + Answer: {product_string#}. + - |- + User: I {#want|would like to|must|need to!} {#synthesize|produce!} the {product_string__names__noun} {product_string#}. + Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? + User: {#Yes, |!}I would like to know the {educt_string__names__noun} I need to produce the {product_string__names__noun} {product_string#}. + Assistant: {#I recommend|I suggest|I propose|I advise!} the following {educt_string__names__noun}: {educt_string#}. diff --git a/data/tabular/ord_predictions/transform.py b/data/tabular/ord_predictions/transform.py new file mode 100644 index 000000000..ec074f4f9 --- /dev/null +++ b/data/tabular/ord_predictions/transform.py @@ -0,0 +1,35 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def oxford_comma_join(elements): + try: + if len(elements) == 1: + return elements[0] + elif len(elements) == 2: + return " and ".join(elements) + else: + return ", ".join(elements[:-1]) + ", and " + elements[-1] + except Exception: + return None + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-ord", + filename="ord_rxn.json", + repo_type="dataset", + ) + df = pd.read_json(file) + df["educt_string"] = df["educts"].apply(oxford_comma_join) + df["product_string"] = df["products"].apply(oxford_comma_join) + df.rename(columns={"canonical_rxn_smiles": "RXNSMILES"}, inplace=True) + df.dropna(subset=["educt_string", "product_string"], inplace=True) + print(len(df)) + df[["RXNSMILES", "educt_string", "product_string"]].to_csv( + "data_clean.csv", index=False + ) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/ord_procedure_steps/meta.yaml b/data/tabular/ord_procedure_steps/meta.yaml new file mode 100644 index 000000000..7b8568f53 --- /dev/null +++ b/data/tabular/ord_procedure_steps/meta.yaml @@ -0,0 +1,54 @@ +--- +name: ord_procedure_steps +description: |- + The open reaction database is a database of chemical reactions and their conditions +identifiers: + - id: steps_string + type: text + description: reaction action sequence + names: + - noun: reaction action sequence + - noun: reaction action steps +targets: + - id: procedure + type: text + description: reaction procedure + names: + - noun: reaction procedure + - noun: description of reaction procedure + - noun: reaction procedure description + - noun: procedure +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 76815 +bibtex: + - |- + @article{Kearnes_2021, + doi = {10.1021/jacs.1c09820}, + url = {https://doi.org/10.1021%2Fjacs.1c09820}, + year = 2021, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {143}, + number = {45}, + pages = {18820--18826}, + author = {Steven M. Kearnes and Michael R. Maser + and Michael Wleklinski and Anton Kast and Abigail G. Doyle + and Spencer D. Dreher and Joel M. Hawkins + and Klavs F. Jensen and Connor W. Coley}, + title = {The Open Reaction Database}, + journal = {J. Am. Chem. Soc.} + } +templates: + - |- + User: {#Can you|Could you!} {#tell me|give me|show me!} the {procedure__names__noun} for the {steps_string__names__noun} {steps_string#}? + Assistant: {#I propose|I suggest!} the {procedure__names__noun} {procedure#} + - |- + User: {#Can you|Could you!} {#tell me|give me|show me!} the {steps_string__names__noun} for the {procedure__names__noun} {procedure#}? + Assistant: {#I propose|I suggest!} the {steps_string__names__noun} {steps_string#} + - |- + Task: Convert a {procedure__names__noun} into a {steps_string__names__noun}. + Procedure: {procedure#} + Answer: {steps_string#} diff --git a/data/tabular/ord_procedure_steps/transform.py b/data/tabular/ord_procedure_steps/transform.py new file mode 100644 index 000000000..b52fd563b --- /dev/null +++ b/data/tabular/ord_procedure_steps/transform.py @@ -0,0 +1,21 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-ord", + filename="ord_data_compiled.json", + repo_type="dataset", + ) + df = pd.read_json(file) + df = df.dropna(subset=["steps_string", "procedure"]) + df.query("steps_string != 'None'", inplace=True) + df.query("procedure != 'None'", inplace=True) + df = df[["steps_string", "procedure"]] + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/ord_rxn_smiles_procedure/meta.yaml b/data/tabular/ord_rxn_smiles_procedure/meta.yaml new file mode 100644 index 000000000..dd02c6a9e --- /dev/null +++ b/data/tabular/ord_rxn_smiles_procedure/meta.yaml @@ -0,0 +1,63 @@ +--- +name: ord_rxn_smiles_procedure +description: |- + The open reaction database is a database of chemical reactions and their conditions +targets: + - id: procedure + type: text + description: reaction procedure + names: + - noun: reaction procedure + - noun: description of reaction procedure + - noun: reaction procedure description + - noun: procedure +identifiers: + - id: RXNSMILES + type: RXNSMILES + description: reaction SMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 76648 +bibtex: + - |- + @article{Kearnes_2021, + doi = {10.1021/jacs.1c09820}, + url = {https://doi.org/10.1021%2Fjacs.1c09820}, + year = 2021, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {143}, + number = {45}, + pages = {18820--18826}, + author = {Steven M. Kearnes and Michael R. Maser + and Michael Wleklinski and Anton Kast and Abigail G. Doyle + and Spencer D. Dreher and Joel M. Hawkins + and Klavs F. Jensen and Connor W. Coley}, + title = {The Open Reaction Database}, + journal = {J. Am. Chem. Soc.} + } +templates: + - |- + The {RXNSMILES__names__noun} of a reaction with the {procedure__names__noun} below is {RXNSMILES#}. + Procedure: {procedure#} + - The {procedure__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is {procedure#} + - |- + User: {#I want|I need|I would like!} to run a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}. + Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? + User: {#Yes, |!}I would like to know the {procedure__names__noun} I should follow to run the reaction. + Assistant: {#I recommend|I suggest|I propose|I advise!} the following procedure: {procedure#} + - |- + User: {#I want|I need|I would like!} to run a reaction with the {procedure__names__noun} below and now need to know the {RXNSMILES__names__noun}. + Procedure: {procedure#} + Assistant: The {RXNSMILES__names__noun} of the reaction is {RXNSMILES#}. + - |- + Task: Extract the {RXNSMILES__names__noun} of a reaction based on its {procedure__names__noun}. + Procedure: {procedure#} + Answer: {RXNSMILES#} diff --git a/data/tabular/ord_rxn_smiles_procedure/transform.py b/data/tabular/ord_rxn_smiles_procedure/transform.py new file mode 100644 index 000000000..731a301b6 --- /dev/null +++ b/data/tabular/ord_rxn_smiles_procedure/transform.py @@ -0,0 +1,40 @@ +import pandas as pd +from huggingface_hub import hf_hub_download +from rxn.chemutils.reaction_equation import rxn_standardization +from rxn.chemutils.reaction_smiles import parse_any_reaction_smiles + + +def canoncialize_rxn_smiles(rxn_smiles): + try: + return rxn_standardization(parse_any_reaction_smiles(rxn_smiles)).to_string() + except Exception: + return None + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-ord", + filename="ord_data_compiled.json", + repo_type="dataset", + ) + df = pd.read_json(file) + df["canonical_rxn_smiles"] = df["rxn_smiles"].apply(canoncialize_rxn_smiles) + df.rename(columns={"canonical_rxn_smiles": "RXNSMILES"}, inplace=True) + df = df.dropna(subset=["RXNSMILES", "procedure"]) + df = df.query("RXNSMILES != 'None'") + # make sure RXNSMILES values have at least 10 characters + df = df[df["RXNSMILES"].str.len() > 10] + # there must be > in the reaction SMILES + df = df[df["RXNSMILES"].str.contains(">")] + df = df.query("procedure != 'None'") + df.query( + "steps_string != 'None'", inplace=True + ) # this removes cases in which is just says "follow the procedure above" + df = df.query("procedure != ''") + df = df[["RXNSMILES", "procedure"]] + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/ord_rxn_smiles_yield_pred/meta.yaml b/data/tabular/ord_rxn_smiles_yield_pred/meta.yaml new file mode 100644 index 000000000..a4c44563c --- /dev/null +++ b/data/tabular/ord_rxn_smiles_yield_pred/meta.yaml @@ -0,0 +1,53 @@ +--- +name: ord_rxn_smiles_yield_pred +description: |- + The open reaction database is a database of chemical reactions and their conditions +targets: + - id: yield + type: continuous + significant_digits: 0 + description: reaction yield + units: \% + names: + - noun: yield + - noun: reaction yield +identifiers: + - id: RXNSMILES + type: RXNSMILES + description: reaction SMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 28 +bibtex: + - |- + @article{Kearnes_2021, + doi = {10.1021/jacs.1c09820}, + url = {https://doi.org/10.1021%2Fjacs.1c09820}, + year = 2021, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {143}, + number = {45}, + pages = {18820--18826}, + author = {Steven M. Kearnes and Michael R. Maser + and Michael Wleklinski and Anton Kast and Abigail G. Doyle + and Spencer D. Dreher and Joel M. Hawkins + and Klavs F. Jensen and Connor W. Coley}, + title = {The Open Reaction Database}, + journal = {J. Am. Chem. Soc.} + } +templates: + - The {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is {yield#}{yield__units}. + - |- + User: {#I need|I want|I would like!} to run a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}. What is the {yield__names__noun} {#I can expect|I should expect|I should get|I can get!}? + Assistant: {#The|The expected|The predicted|The estimated!} {yield__names__noun} is {yield#}{yield__units}. + - |- + Question: {#What is|What's|What is the|What's the!} {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}? + Answer: {yield#}{yield__units}. diff --git a/data/tabular/ord_rxn_smiles_yield_pred/transform.py b/data/tabular/ord_rxn_smiles_yield_pred/transform.py new file mode 100644 index 000000000..bc5779b08 --- /dev/null +++ b/data/tabular/ord_rxn_smiles_yield_pred/transform.py @@ -0,0 +1,38 @@ +import pandas as pd +from huggingface_hub import hf_hub_download +from rxn.chemutils.reaction_equation import rxn_standardization +from rxn.chemutils.reaction_smiles import parse_any_reaction_smiles + + +def canoncialize_rxn_smiles(rxn_smiles): + try: + return rxn_standardization(parse_any_reaction_smiles(rxn_smiles)).to_string() + except Exception: + return None + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-ord", + filename="ord_data_compiled.json", + repo_type="dataset", + ) + df = pd.read_json(file) + df["canonical_rxn_smiles"] = df["rxn_smiles"].apply(canoncialize_rxn_smiles) + df.rename(columns={"canonical_rxn_smiles": "RXNSMILES"}, inplace=True) + df = df.dropna(subset=["RXNSMILES", "yield"]) + # make sure RXNSMILES values have at least 10 characters + df = df[df["RXNSMILES"].str.len() > 10] + # there must be > in the reaction SMILES + df = df[df["RXNSMILES"].str.contains(">")] + df.query( + "steps_string != 'None'", inplace=True + ) # this removes cases in which is just says "follow the procedure above" + df = df.query("RXNSMILES != 'None'") + df = df[["RXNSMILES", "yield"]] + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/ord_steps_yield/meta.yaml b/data/tabular/ord_steps_yield/meta.yaml new file mode 100644 index 000000000..d69ab54ca --- /dev/null +++ b/data/tabular/ord_steps_yield/meta.yaml @@ -0,0 +1,54 @@ +--- +name: ord_steps_yield +description: |- + The open reaction database is a database of chemical reactions and their conditions +identifiers: + - id: non_yield_steps_string + type: text + description: reaction action sequence + names: + - noun: reaction action sequence + - noun: reaction action steps +targets: + - id: yield + type: continuous + significant_digits: 0 + description: reaction yield + units: \% + names: + - noun: yield + - noun: reaction yield +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 30 +bibtex: + - |- + @article{Kearnes_2021, + doi = {10.1021/jacs.1c09820}, + url = {https://doi.org/10.1021%2Fjacs.1c09820}, + year = 2021, + month = {nov}, + publisher = {American Chemical Society ({ACS})}, + volume = {143}, + number = {45}, + pages = {18820--18826}, + author = {Steven M. Kearnes and Michael R. Maser + and Michael Wleklinski and Anton Kast and Abigail G. Doyle + and Spencer D. Dreher and Joel M. Hawkins + and Klavs F. Jensen and Connor W. Coley}, + title = {The Open Reaction Database}, + journal = {J. Am. Chem. Soc.} + } +templates: + - |- + The {yield__names__noun} of a reaction with the {non_yield_steps_string__names__noun} below is {yield#}{yield__units}. + {non_yield_steps_string__names__noun}: {non_yield_steps_string#} + - |- + User: {#I need|I want|I would like!} to run a reaction with the {non_yield_steps_string__names__noun} {non_yield_steps_string#}. What is the {yield__names__noun} {#I can expect|I should expect|I should get|I can get!}? + Assistant: {#The|The expected|The predicted|The estimated!} {yield__names__noun} is {yield#}{yield__units}. + - |- + Task: {#Predict|Estimate!} the {yield__names__noun} of a reaction based on the {non_yield_steps_string__names__noun}. + Description: {non_yield_steps_string#} + Answer: {yield#}{yield__units} diff --git a/data/tabular/ord_steps_yield/transform.py b/data/tabular/ord_steps_yield/transform.py new file mode 100644 index 000000000..63c83e35b --- /dev/null +++ b/data/tabular/ord_steps_yield/transform.py @@ -0,0 +1,20 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-ord", + filename="ord_data_compiled.json", + repo_type="dataset", + ) + df = pd.read_json(file) + df = df.dropna(subset=["non_yield_steps_string", "yield"]) + df = df.query("non_yield_steps_string != 'None'") + df = df[["non_yield_steps_string", "yield"]] + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/rhea_db_masked/meta.yaml b/data/tabular/rhea_db_masked/meta.yaml new file mode 100644 index 000000000..b95bfc5f2 --- /dev/null +++ b/data/tabular/rhea_db_masked/meta.yaml @@ -0,0 +1,70 @@ +--- +name: ord_procedure_steps +description: |- + The open reaction database is a database of chemical reactions and their conditions +identifiers: + - id: masked_rxn_smiles + type: text + description: reaction SMILES with one element masked + names: + - noun: reaction SMILES with one element masked as `MASK` + - noun: reaction SMILES with one element hidden as `MASK` + - noun: masked reaction SMILES (one component masked as `MASK`) + - noun: masked reaction SMILES string (one component masked as `MASK`) + - noun: masked RXNSMILES (one component masked as `MASK`) +targets: + - id: missing_component + type: text + description: masked element +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 31348 +bibtex: + - |- + @article{Bansal_2021, + doi = {10.1093/nar/gkab1016}, + url = {https://doi.org/10.1093%2Fnar%2Fgkab1016}, + year = 2021, + month = {nov}, + publisher = {Oxford University Press ({OUP})}, + volume = {50}, + number = {D1}, + pages = {D693--D700}, + author = {Parit Bansal and Anne Morgat and Kristian B Axelsen + and Venkatesh Muthukrishnan and Elisabeth Coudert and Lucila Aimo + and Nevila Hyka-Nouspikel and Elisabeth Gasteiger and Arnaud Kerhornou + and Teresa Batista Neto and Monica Pozzato and Marie-Claude Blatter + and Alex Ignatchenko and Nicole Redaschi and Alan Bridge}, + title = {Rhea, the reaction knowledgebase in 2022}, + journal = {Nucleic Acids Research} + } + - |- + @article{Alc_ntara_2011, + doi = {10.1093/nar/gkr1126}, + url = {https://doi.org/10.1093%2Fnar%2Fgkr1126}, + year = 2011, + month = {nov}, + publisher = {Oxford University Press ({OUP})}, + volume = {40}, + number = {D1}, + pages = {D754--D760}, + author = {Rafael Alc{\'{a}}ntara and Kristian B. Axelsen + and Anne Morgat and Eugeni Belda and Elisabeth Coudert + and Alan Bridge and Hong Cao and Paula de Matos and Marcus Ennis + and Steve Turner and Gareth Owen and Lydie Bougueleret + and Ioannis Xenarios and Christoph Steinbeck}, + title = {Rhea{\textemdash}a manually curated resource of biochemical reactions}, + journal = {Nucleic Acids Research} + } +templates: + - The masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#} is {missing_component#}. + - The {#chemical|compound!} with SMILES {missing_component#} is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}. + - |- + Question: What is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}? + Answer: {missing_component#}. + - |- + Task: Predict the masked component in a {masked_rxn_smiles__names__noun}. + Description: {masked_rxn_smiles#} + {#Answer|Solution!}: {missing_component#} diff --git a/data/tabular/rhea_db_masked/transform.py b/data/tabular/rhea_db_masked/transform.py new file mode 100644 index 000000000..a7d02a82a --- /dev/null +++ b/data/tabular/rhea_db_masked/transform.py @@ -0,0 +1,14 @@ +import pandas as pd + + +def process(): + df = pd.read_json( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-rhea-db/resolve/main/rhea-reaction-smiles_prompts.json" + ) + df.dropna(subset=["masked_rxn_smiles", "missing_component"], inplace=True) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/rhea_db_predictions/meta.yaml b/data/tabular/rhea_db_predictions/meta.yaml new file mode 100644 index 000000000..be4b104ce --- /dev/null +++ b/data/tabular/rhea_db_predictions/meta.yaml @@ -0,0 +1,83 @@ +--- +name: ord_procedure_steps +description: |- + The open reaction database is a database of chemical reactions and their conditions +identifiers: + - id: educt_string + type: text + description: reaction educts + names: + - noun: reaction educts + - noun: educts + - noun: starting materials + - id: RXNSMILES + type: RXNSMILES + description: reaction SMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) +targets: + - id: product_string + type: text + description: reaction products + names: + - noun: reaction products + - noun: products +license: CC BY SA 4.0 +links: + - url: https://github.com/open-reaction-database/ord-data + description: original data source +num_points: 31348 +bibtex: + - |- + @article{Bansal_2021, + doi = {10.1093/nar/gkab1016}, + url = {https://doi.org/10.1093%2Fnar%2Fgkab1016}, + year = 2021, + month = {nov}, + publisher = {Oxford University Press ({OUP})}, + volume = {50}, + number = {D1}, + pages = {D693--D700}, + author = {Parit Bansal and Anne Morgat and Kristian B Axelsen + and Venkatesh Muthukrishnan and Elisabeth Coudert and Lucila Aimo + and Nevila Hyka-Nouspikel and Elisabeth Gasteiger and Arnaud Kerhornou + and Teresa Batista Neto and Monica Pozzato and Marie-Claude Blatter + and Alex Ignatchenko and Nicole Redaschi and Alan Bridge}, + title = {Rhea, the reaction knowledgebase in 2022}, + journal = {Nucleic Acids Research} + } + - |- + @article{Alc_ntara_2011, + doi = {10.1093/nar/gkr1126}, + url = {https://doi.org/10.1093%2Fnar%2Fgkr1126}, + year = 2011, + month = {nov}, + publisher = {Oxford University Press ({OUP})}, + volume = {40}, + number = {D1}, + pages = {D754--D760}, + author = {Rafael Alc{\'{a}}ntara and Kristian B. Axelsen + and Anne Morgat and Eugeni Belda and Elisabeth Coudert + and Alan Bridge and Hong Cao and Paula de Matos and Marcus Ennis + and Steve Turner and Gareth Owen and Lydie Bougueleret + and Ioannis Xenarios and Christoph Steinbeck}, + title = {Rhea{\textemdash}a manually curated resource of biochemical reactions}, + journal = {Nucleic Acids Research} + } +templates: + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {educt_string__names__noun} {educt_string#} and the {product_string__names__noun} {product_string#}. + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {product_string__names__noun} {product_string#} and the {educt_string__names__noun} {educt_string#}. + - |- + Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} the {product_string__names__noun} {product_string#}? + Answer: {educt_string#}. + - |- + Question: {#What|Which!} {product_string__names__noun} are produced from the {educt_string__names__noun} {educt_string#}? + Answer: {product_string#}. + - |- + User: I {#want|would like to|must|need to!} {#synthesize|produce!} the {product_string__names__noun} {product_string#}. + Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? + User: {#Yes, |!}I would like to know the {educt_string__names__noun} I need to produce the {product_string__names__noun} {product_string#}. + Assistant: {#I recommend|I suggest|I propose|I advise!} the following {educt_string__names__noun}: {educt_string#}. diff --git a/data/tabular/rhea_db_predictions/transform.py b/data/tabular/rhea_db_predictions/transform.py new file mode 100644 index 000000000..94abf76fb --- /dev/null +++ b/data/tabular/rhea_db_predictions/transform.py @@ -0,0 +1,28 @@ +import pandas as pd + + +def oxford_comma_join(elements): + if len(elements) == 1: + return elements[0] + elif len(elements) == 2: + return " and ".join(elements) + else: + return ", ".join(elements[:-1]) + ", and " + elements[-1] + + +def process(): + df = pd.read_json( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-rhea-db/resolve/main/rhea-reaction-smiles_prompts.json" + ) + df["educt_string"] = df["educts"].apply(oxford_comma_join) + df["product_string"] = df["products"].apply(oxford_comma_join) + df.rename(columns={"canonical_rxn_smiles": "RXNSMILES"}, inplace=True) + df.dropna(subset=["educt_string", "product_string"], inplace=True) + print(len(df)) + df[["RXNSMILES", "educt_string", "product_string"]].to_csv( + "data_clean.csv", index=False + ) + + +if __name__ == "__main__": + process() diff --git a/pyproject.toml b/pyproject.toml index b107ccd5e..96c3c1f14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,7 @@ dataset_creation = [ "pubchempy", "canonicalize_psmiles@git+https://github.com/Ramprasad-Group/canonicalize_psmiles.git", #"tucan@git+https://github.com/TUCAN-nest/TUCAN.git" # the current version has bugs due to the type checking, maybe this is due to our python version? + "rxn-chem-utils" ] training = [ From 7d5ad60b3a6c9799095d705ba00d8d49a1ba5e72 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:07:31 +0100 Subject: [PATCH 08/61] add uspto (#459) --- data/tabular/ord_predictions/meta.yaml | 4 +- data/tabular/uspto/meta.yaml | 77 ++++++++++++++++++++++++++ data/tabular/uspto/transform.py | 54 ++++++++++++++++++ data/tabular/uspto_yield/meta.yaml | 62 +++++++++++++++++++++ data/tabular/uspto_yield/transform.py | 54 ++++++++++++++++++ 5 files changed, 249 insertions(+), 2 deletions(-) create mode 100644 data/tabular/uspto/meta.yaml create mode 100644 data/tabular/uspto/transform.py create mode 100644 data/tabular/uspto_yield/meta.yaml create mode 100644 data/tabular/uspto_yield/transform.py diff --git a/data/tabular/ord_predictions/meta.yaml b/data/tabular/ord_predictions/meta.yaml index c6878bba8..19f0689a8 100644 --- a/data/tabular/ord_predictions/meta.yaml +++ b/data/tabular/ord_predictions/meta.yaml @@ -52,13 +52,13 @@ templates: - The {RXNSMILES__names__noun} {RXNSMILES#} has the {educt_string__names__noun} {educt_string#} and the {product_string__names__noun} {product_string#}. - The {RXNSMILES__names__noun} {RXNSMILES#} has the {product_string__names__noun} {product_string#} and the {educt_string__names__noun} {educt_string#}. - |- - Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} the {product_string__names__noun} {product_string#}? + Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} {product_string#}? Answer: {educt_string#}. - |- Question: {#What|Which!} {product_string__names__noun} are produced from the {educt_string__names__noun} {educt_string#}? Answer: {product_string#}. - |- - User: I {#want|would like to|must|need to!} {#synthesize|produce!} the {product_string__names__noun} {product_string#}. + User: I {#want|would like to|must|need to!} {#synthesize|produce!} {product_string#}. Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? User: {#Yes, |!}I would like to know the {educt_string__names__noun} I need to produce the {product_string__names__noun} {product_string#}. Assistant: {#I recommend|I suggest|I propose|I advise!} the following {educt_string__names__noun}: {educt_string#}. diff --git a/data/tabular/uspto/meta.yaml b/data/tabular/uspto/meta.yaml new file mode 100644 index 000000000..bc1c9fe1b --- /dev/null +++ b/data/tabular/uspto/meta.yaml @@ -0,0 +1,77 @@ +--- +name: uspto +description: |- + The USPTO dataset is a collection of reaction mined from US patents. +targets: + - id: masked_rxn_smiles + type: text + description: reaction SMILES with one element masked + names: + - noun: reaction SMILES with one element masked as `MASK` + - noun: reaction SMILES with one element hidden as `MASK` + - noun: masked reaction SMILES (one component masked as `MASK`) + - noun: masked reaction SMILES string (one component masked as `MASK`) + - noun: masked RXNSMILES (one component masked as `MASK`) + - id: educt_string + type: text + description: reaction educts + names: + - noun: reaction educts + - noun: educts + - noun: starting materials + - id: product_string + type: text + description: reaction products + names: + - noun: reaction products + - noun: products +identifiers: + - id: RXNSMILES + type: RXNSMILES + description: RXNSMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) + - id: missing_component + type: text + description: masked element +license: CC0 +links: + - url: https://figshare.com/articles/dataset/Chemical_reactions_from_US_patents_1976-Sep2016_/5104873 + description: original data source +num_points: 150774 +bibtex: + - |- + @article{Lowe2017, + author = "Daniel Lowe", + title = "{Chemical reactions from US patents (1976-Sep2016)}", + year = "2017", + month = "6", + url = "https://figshare.com/articles/dataset/Chemical_reactions_from_US_patents_1976-Sep2016_/5104873", + doi = "10.6084/m9.figshare.5104873.v1" + } +templates: + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {educt_string__names__noun} {educt_string#} and the {product_string__names__noun} {product_string#}. + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {product_string__names__noun} {product_string#} and the {educt_string__names__noun} {educt_string#}. + - The masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#} is {missing_component#}. + - The {#chemical|compound!} with SMILES {missing_component#} is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}. + - |- + Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} {product_string#}? + Answer: {educt_string#}. + - |- + Question: {#What|Which!} {product_string__names__noun} are produced from the {educt_string__names__noun} {educt_string#}? + Answer: {product_string#}. + - |- + User: I {#want|would like to|must|need to!} {#synthesize|produce!} the {product_string__names__noun} {product_string#}. + Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? + User: {#Yes, |!}I would like to know the {educt_string__names__noun} I need to produce {product_string#}. + Assistant: {#I recommend|I suggest|I propose|I advise!} the following {educt_string__names__noun}: {educt_string#}. + - |- + Question: What is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}? + Answer: {missing_component#}. + - |- + Task: Predict the masked component in a {masked_rxn_smiles__names__noun}. + Description: {masked_rxn_smiles#} + {#Answer|Solution!}: {missing_component#} diff --git a/data/tabular/uspto/transform.py b/data/tabular/uspto/transform.py new file mode 100644 index 000000000..96688211e --- /dev/null +++ b/data/tabular/uspto/transform.py @@ -0,0 +1,54 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def oxford_comma_join(elements): + try: + if len(elements) == 1: + return elements[0] + elif len(elements) == 2: + return " and ".join(elements) + else: + return ", ".join(elements[:-1]) + ", and " + elements[-1] + except Exception: + return None + + +def process(): + file_train = hf_hub_download( + repo_id="kjappelbaum/chemnlp-uspto", + filename="US_patents_1976-Sep2016_1product_reactions_test_prompts.json", + repo_type="dataset", + ) + df_train = pd.read_json(file_train) + df_train["split"] = "train" + + file_test = hf_hub_download( + repo_id="kjappelbaum/chemnlp-uspto", + filename="US_patents_1976-Sep2016_1product_reactions_test_prompts.json", + repo_type="dataset", + ) + df_test = pd.read_json(file_test) + df_test["split"] = "test" + + file_valid = hf_hub_download( + repo_id="kjappelbaum/chemnlp-uspto", + filename="US_patents_1976-Sep2016_1product_reactions_test_prompts.json", + repo_type="dataset", + ) + + df_valid = pd.read_json(file_valid) + df_valid["split"] = "valid" + + df = pd.concat([df_train, df_test, df_valid]) + + df["educt_string"] = df["educts"].apply(oxford_comma_join) + df["product_string"] = df["products"].apply(oxford_comma_join) + df["RXNSMILES"] = df["canonical_rxn_smiles"] + + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/uspto_yield/meta.yaml b/data/tabular/uspto_yield/meta.yaml new file mode 100644 index 000000000..3701c1e10 --- /dev/null +++ b/data/tabular/uspto_yield/meta.yaml @@ -0,0 +1,62 @@ +--- +name: uspto_yield +description: |- + The USPTO dataset is a collection of reaction mined from US patents. +targets: + - id: yield + type: continuous + significant_digits: 0 + description: reaction yield + units: \% + names: + - noun: yield + - noun: reaction yield +identifiers: + - id: RXNSMILES + type: RXNSMILES + description: reaction SMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) + - id: educt_string + type: text + description: reaction educts + names: + - noun: reaction educts + - noun: educts + - noun: starting materials + - id: product_string + type: text + description: reaction products + names: + - noun: reaction products + - noun: products +license: CC0 +links: + - url: https://figshare.com/articles/dataset/Chemical_reactions_from_US_patents_1976-Sep2016_/5104873 + description: original data source +num_points: 36564 +bibtex: + - |- + @article{Lowe2017, + author = "Daniel Lowe", + title = "{Chemical reactions from US patents (1976-Sep2016)}", + year = "2017", + month = "6", + url = "https://figshare.com/articles/dataset/Chemical_reactions_from_US_patents_1976-Sep2016_/5104873", + doi = "10.6084/m9.figshare.5104873.v1" + } +templates: + - The {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is {yield#}{yield__units}. + - |- + User: {#I need|I want|I would like!} to run a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}. What is the {yield__names__noun} {#I can expect|I should expect|I should get|I can get!}? + Assistant: {#The|The expected|The predicted|The estimated!} {yield__names__noun} is {yield#}{yield__units}. + - |- + Question: {#What is|What's|What is the|What's the!} {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}? + Answer: {yield#}{yield__units}. + - The {yield__names__noun} of a reaction of {educt_string#} to {product_string#} is {yield#}{yield__units}. + - |- + Question: {#What is|What's|What is the|What's the!} {yield__names__noun} of a reaction of {educt_string#} to {product_string#}? + Answer: {yield#}{yield__units}. diff --git a/data/tabular/uspto_yield/transform.py b/data/tabular/uspto_yield/transform.py new file mode 100644 index 000000000..63e31c28d --- /dev/null +++ b/data/tabular/uspto_yield/transform.py @@ -0,0 +1,54 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def oxford_comma_join(elements): + try: + if len(elements) == 1: + return elements[0] + elif len(elements) == 2: + return " and ".join(elements) + else: + return ", ".join(elements[:-1]) + ", and " + elements[-1] + except Exception: + return None + + +def process(): + file_train = hf_hub_download( + repo_id="kjappelbaum/chemnlp-uspto", + filename="US_patents_1976-Sep2016_1product_reactions_test_prompts.json", + repo_type="dataset", + ) + df_train = pd.read_json(file_train) + df_train["split"] = "train" + + file_test = hf_hub_download( + repo_id="kjappelbaum/chemnlp-uspto", + filename="US_patents_1976-Sep2016_1product_reactions_test_prompts.json", + repo_type="dataset", + ) + df_test = pd.read_json(file_test) + df_test["split"] = "test" + + file_valid = hf_hub_download( + repo_id="kjappelbaum/chemnlp-uspto", + filename="US_patents_1976-Sep2016_1product_reactions_test_prompts.json", + repo_type="dataset", + ) + + df_valid = pd.read_json(file_valid) + df_valid["split"] = "valid" + + df = pd.concat([df_train, df_test, df_valid]) + df = df.query("WithinTolerance == True") + df["yield"] = df["MeanYield"] + df["educt_string"] = df["educts"].apply(oxford_comma_join) + df["product_string"] = df["products"].apply(oxford_comma_join) + df["RXNSMILES"] = df["canonical_rxn_smiles"] + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() From ba59845135f00bd4cf8b0ce9895ca9e7cb76e6d5 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:07:44 +0100 Subject: [PATCH 09/61] chemcaption smarts (#456) --- data/tabular/chem_caption_smarts/meta.yaml | 41 + .../tabular/chem_caption_smarts/preprocess.py | 810 ++++++++++++++++++ data/tabular/chem_caption_smarts/transform.py | 17 + 3 files changed, 868 insertions(+) create mode 100644 data/tabular/chem_caption_smarts/meta.yaml create mode 100644 data/tabular/chem_caption_smarts/preprocess.py create mode 100644 data/tabular/chem_caption_smarts/transform.py diff --git a/data/tabular/chem_caption_smarts/meta.yaml b/data/tabular/chem_caption_smarts/meta.yaml new file mode 100644 index 000000000..57f8ecfbe --- /dev/null +++ b/data/tabular/chem_caption_smarts/meta.yaml @@ -0,0 +1,41 @@ +--- +name: chem_caption_smarts +description: |- + This dataset contains the count of substructures in molecules +targets: + - id: smarts + type: text + description: substructure smarts + names: + - noun: SMARTS + - noun: SMiles ARbitrary Target Specification (SMARTS) + - id: completion + type: categorical + description: number of matches + - id: completion_labels + type: text + description: name of the substructure +identifiers: + - id: representation + type: text + description: representation + - id: representation_type + type: text + description: representation type +license: CC BY 4.0 +links: + - url: https://github.com/lamalab-org/chem-caption + description: Original codebase used to generate this dataset +templates: + - |- + Question: {#How many times|How often!} does the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} contain the substructure with the {smarts__names__noun} {#smarts#}? + Answer: {completion#} + - |- + Question: {#How many times|How often!} does the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} contain a {completion#} substructure? + Answer: {smarts__names__noun} {#smarts#} + - |- + User: {#I want to|I have to|I must|I would like to!} know {#how many times|how often!} the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} contains the substructure with the {smarts__names__noun} {#smarts#}. + Assistant: The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} contains the substructure with the {smarts__names__noun} {#smarts#} {completion#} times. + - |- + User: {#I want to|I have to|I must|I would like to!} know how many times the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} contains a {completion#} substructure. + Assistant: The {#molecule|chemical|compound|chemical structure!} contains the substructure with the {smarts__names__noun} {#smarts#} {completion#} times. diff --git a/data/tabular/chem_caption_smarts/preprocess.py b/data/tabular/chem_caption_smarts/preprocess.py new file mode 100644 index 000000000..06eeafe4e --- /dev/null +++ b/data/tabular/chem_caption_smarts/preprocess.py @@ -0,0 +1,810 @@ +# flake8: noqa +"""Preprocess the raw outputs from the text-output of chem-caption to a tabular dataset.""" +from glob import glob + +import pandas as pd +from datasets import Dataset +from tqdm import tqdm + +NAME_SMARTS_MAP = { + "tert-butyloxycarbonyl": "[#8]=[#6]-[#8]-[#6](-[#6])(-[#6])-[#6]", + "trityl": "[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "3,5-dimethoxyphenylisoproxycarbonyl": "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#6])(-[#8]-[#6]=[#8])-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:1", + "2-(4-biphenyl)isopropoxycarbonyl": "[#6]-[#6](-[#6])(-[#8]-[#6]=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "2-nitrophenylsulfenyl": "[#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "boc": "[#8]=[#6]-[#8]-[#6](-[#6])(-[#6])-[#6]", + "trt": "[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "ddz": "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#6])(-[#8]-[#6]=[#8])-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:1", + "bpoc": "[#6]-[#6](-[#6])(-[#8]-[#6]=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "nps": "[#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "9-fluorenylmethoxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:[#6]:[#6]:2", + "2-(4-nitrophenylsulfonyl)ethoxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]-[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1)=[#8]", + "(1,1-dioxobenzo[b]thiophene-2-yl)methyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1=[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#16]-1(=[#8])=[#8]", + "(1,1-dioxonaptho[1,2-b]thiophene-2-yl)methyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1=[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3:[#6]:2-[#16]-1(=[#8])=[#8]", + "1-(4,4-dimethyl-2,6-dioxocyclohex-1-ylidene)-3-methylbutyl": "[#6]-[#6](-[#6])-[#6]-[#6]=[#6]1-[#6](-[#6]-[#6](-[#6])(-[#6])-[#6]-[#6]-1=[#8])=[#8]", + "2,7-di-tert-butyl-fmoc": "[#6]-[#6]1:[#6]:[#6]2-[#6](-[#6]-[#8]-[#6]=[#8])-[#6]3:[#6](-[#6]:2:[#6]:[#6]:1):[#6]:[#6]:[#6](:[#6]:3)-[#6](-[#6])(-[#6])-[#6]", + "2-fluoro-fmoc": "[#9]-[#6]1:[#6]:[#6]2:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3-[#6]-2-[#6]-[#8]-[#6]=[#8]):[#6]:[#6]:1", + "2-monoisooctyl-fmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]-1:[#6]:[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8]):[#6]:[#6]:2", + "2,7-diisooctyl-fmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](:[#6]:[#6]:[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8]):[#6]:2)-[#6]2:[#6]-1:[#6]:[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8]):[#6]:[#6]:2", + "tetrachlorophthaloyl": "[#8]=[#6]-[#6]1:[#6](-[#17]):[#6](-[#17]):[#6](-[#17]):[#6](-[#17]):[#6]:1-[#6]=[#8]", + "2-[phenyl(methyl)sulfonio])ethyloxycarbonyltetrafluoroborate": "[#6]-[#16+](-[#6]-[#6]-[#8]-[#6]=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "ethanesulfonylethoxycarbonyl": "[#8]=[#6]-[#8]-[#6](-[#16](=[#8])(-[#6]-[#6])=[#8])-[#6]", + "2-(4-sulfophenylsulfonyl)ethoxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]-[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](-[#16](=[#8])(-[#8])=[#8]):[#6]:[#6]:1)=[#8]", + "fmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:[#6]:[#6]:2", + "nsc": "[#8]=[#6]-[#8]-[#6]-[#6]-[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1)=[#8]", + "bsmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1=[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#16]-1(=[#8])=[#8]", + "alpha-nsmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1=[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3:[#6]:2-[#16]-1(=[#8])=[#8]", + "ivdde": "[#6]-[#6](-[#6])-[#6]-[#6]=[#6]1-[#6](-[#6]-[#6](-[#6])(-[#6])-[#6]-[#6]-1=[#8])=[#8]", + "fmoc*": "[#6]-[#6]1:[#6]:[#6]2-[#6](-[#6]-[#8]-[#6]=[#8])-[#6]3:[#6](-[#6]:2:[#6]:[#6]:1):[#6]:[#6]:[#6](:[#6]:3)-[#6](-[#6])(-[#6])-[#6]", + "fmoc(fmoc(2f))": "[#9]-[#6]1:[#6]:[#6]2:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3-[#6]-2-[#6]-[#8]-[#6]=[#8]):[#6]:[#6]:1", + "mio-fmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]-1:[#6]:[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8]):[#6]:[#6]:2", + "dio-fmoc": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](:[#6]:[#6]:[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8]):[#6]:2)-[#6]2:[#6]-1:[#6]:[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8]):[#6]:[#6]:2", + "tcp": "[#8]=[#6]-[#6]1:[#6](-[#17]):[#6](-[#17]):[#6](-[#17]):[#6](-[#17]):[#6]:1-[#6]=[#8]", + "pms": "[#6]-[#16+](-[#6]-[#6]-[#8]-[#6]=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "esc": "[#8]=[#6]-[#8]-[#6](-[#16](=[#8])(-[#6]-[#6])=[#8])-[#6]", + "sps": "[#8]=[#6]-[#8]-[#6]-[#6]-[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](-[#16](=[#8])(-[#8])=[#8]):[#6]:[#6]:1)=[#8]", + "benzyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "allyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]=[#6]", + "o-nitrobenzenesulfonyl": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8])=[#8]", + "2,4-dinitrobenzenesulfonyl": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1-[#7+](-[#8-])=[#8])=[#8]", + "benzothiazole-2-sulfonyl": "[#8]=[#16](-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16]:1)=[#8]", + "2,2,2-trichloroethyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6](-[#17])(-[#17])-[#17]", + "dithiasuccinoyl": "[#8]=[#6]-[#16]-[#16]-[#6]=[#8]", + "p-nitrobenzyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1", + "alpha-azidoacids": "[#7-]=[#7+]=[#7]-[#6]-[#6](-[#8])=[#8]", + "proparglyoxycarbonyl": "[#6]#[#6]-[#8]-[#6](-[#6])=[#8]", + "o-nitrobenzylcarbonyl": "[#8]=[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "4-nitroveratryloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6](-[#8]-[#6]):[#6](-[#8]-[#6]):[#6]:1", + "2-(2-nitrophenyl)propyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8])-[#6]", + "2-(3,4-methylenedioxy-6-nitrophenyl)propyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6](-[#6]1:[#6]:[#6]2-[#8]-[#6]-[#8]-[#6]:2:[#6]:[#6]:1-[#7+](-[#8-])=[#8])-[#6]", + "9-(4-bromophenyl)-9-fluorenyl": "[#35]-[#6]1:[#6]:[#6]:[#6](-[#6]2-[#6]3:[#6](-[#6]4:[#6]-2:[#6]:[#6]:[#6]:[#6]:4):[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:1", + "azidomethoxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#7]=[#7+]=[#7-]", + "hexafluoroacetone": "[#8]=[#6]1-[#8]-[#6](-[#6](-[#6](-[#9])(-[#9])-[#9])-[#6](-[#9])(-[#9])-[#9])-[#7]-[#6]-1", + "Z": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "alloc": "[#8]=[#6]-[#8]-[#6]-[#6]=[#6]", + "o-nbs": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8])=[#8]", + "d-nbs": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1-[#7+](-[#8-])=[#8])=[#8]", + "bts": "[#8]=[#16](-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16]:1)=[#8]", + "troc": "[#8]=[#6]-[#8]-[#6]-[#6](-[#17])(-[#17])-[#17]", + "dts": "[#8]=[#6]-[#16]-[#16]-[#6]=[#8]", + "pnz": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1", + "poc": "[#6]#[#6]-[#8]-[#6](-[#6])=[#8]", + "onz": "[#8]=[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "nvoc": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6](-[#8]-[#6]):[#6](-[#8]-[#6]):[#6]:1", + "nppoc": "[#8]=[#6]-[#8]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8])-[#6]", + "mnppoc": "[#8]=[#6]-[#8]-[#6]-[#6](-[#6]1:[#6]:[#6]2-[#8]-[#6]-[#8]-[#6]:2:[#6]:[#6]:1-[#7+](-[#8-])=[#8])-[#6]", + "brphf": "[#35]-[#6]1:[#6]:[#6]:[#6](-[#6]2-[#6]3:[#6](-[#6]4:[#6]-2:[#6]:[#6]:[#6]:[#6]:4):[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:1", + "azoc": "[#8]=[#6]-[#8]-[#6]-[#7]=[#7+]=[#7-]", + "hfa": "[#8]=[#6]1-[#8]-[#6](-[#6](-[#6](-[#9])(-[#9])-[#9])-[#6](-[#9])(-[#9])-[#9])-[#7]-[#6]-1", + "2-chlorobenzyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]", + "4-methyltrityl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:1", + "cl-z": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]", + "mtt": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:1", + "1-(4,4-dimethyl-2,6-dioxocylohex-1-ylidene)-3-methylbutyl": "[#8]=[#6]1-[#6](-[#6](-[#6]-[#6](-[#6])-[#6]-1)=[#8])=[#6]-[#6]-[#6](-[#6])-[#6]", + "trifluoroacetyl": "[#8]=[#6]-[#6](-[#9])(-[#9])-[#9]", + "2-(methylsulfonyl)ethoxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]-[#16](=[#8])(-[#6])=[#8]", + "tfa": "[#8]=[#6]-[#6](-[#9])(-[#9])-[#9]", + "msc": "[#8]=[#6]-[#8]-[#6]-[#6]-[#16](=[#8])(-[#6])=[#8]", + "phenyldisulphanylethyloxycarbonyl": "[#8]=[#6]-[#8]-[#6](-[#16]-[#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]", + "2-pyridyldisulphanylethyloxycarbonyl": "[#8]=[#6]-[#8]-[#6](-[#16]-[#16]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1)-[#6]", + "phdec": "[#8]=[#6]-[#8]-[#6](-[#16]-[#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]", + "pydec": "[#8]=[#6]-[#8]-[#6](-[#16]-[#16]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1)-[#6]", + "tert-butyl": "[#6]-[#6](-[#6])-[#6]", + "2-chlorotrityl": "[#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "2-4-dimethyoxybenzyl": "[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:1", + "2-phenylisopropyl": "[#6]-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "5-phenyl-3,4-ethylenedioxythenyl": "[#6]-[#6]1:[#6]2-[#8]-[#6]-[#6]-[#8]-[#6]:2:[#6](:[#16]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "bu": "[#6]-[#6](-[#6])-[#6]", + "2-cl-trt": "[#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "dmb": "[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:1", + "2-ph-pr": "[#6]-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "phenyl-edotn": "[#6]-[#6]1:[#6]2-[#8]-[#6]-[#6]-[#8]-[#6]:2:[#6](:[#16]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "9-fluorenylmethyl": "[#6]-[#6]1-[#6]2:[#6](-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:[#6]:[#6]:2", + "4-(N-[1-(4,4-dimethyl-2,6-dioxocylocheylidene)-3-methylbutyl]-amino)benzyl": "[#6]-[#6]1(-[#6]-[#6](-[#6](=[#6](-[#7]-[#6]2:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:2)-[#6]-[#6](-[#6])-[#6])-[#6](-[#6]-1)=[#8])=[#8])-[#6]", + "methyl": "[#6H3]", + "ethyl": "[#6H2]-[#6]", + "carbamoylmethyl": "[#6]-[#6](-[#7])=[#8]", + "fm": "[#6]-[#6]1-[#6]2:[#6](-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:[#6]:[#6]:2", + "dmab": "[#6]-[#6]1(-[#6]-[#6](-[#6](=[#6](-[#7]-[#6]2:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:2)-[#6]-[#6](-[#6])-[#6])-[#6](-[#6]-1)=[#8])=[#8])-[#6]", + "me": "[#6]", + "et": "[#6]-[#6]", + "cam": "[#6]-[#6](-[#7])=[#8]", + "allyl": "[#6H2]-[#6]=[#6]", + "benzyl": "[#6H2]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "phenacyl": "[#6H2]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "p-nitrobenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1", + "2-trimethylsilyethyl": "[#6]-[#6]-[#6]-[Si](-[#6])(-[#6])-[#6]", + "(2-phenyl-2-trimethylsilyl)ethyl": "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[Si](-[#6])(-[#6])-[#6]", + "2-(trimethylsilyl)isopropyl": "[#6]-[#6](-[#6])(-[Si](-[#6])(-[#6])-[#6])-[#6]", + "2,2,2-trichloroethyl": "[#6]-[#6](-[#17])(-[#17])-[#17]", + "p-hydroxyphenacyl": "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6](-[#8]):[#6]:[#6]:1)=[#8]", + "4,5-dimethyoxy-2-nitrobenzyl": "[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6](-[#8]-[#6]):[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "1,1-dimethylallyl": "[#6]=[#6]-[#6](-[#6])-[#6]", + "pentaaminecobalt_III": "[#7]-[Co](-[#7])(-[#7])(-[#7])(-[#17])(-[#17])-[#7]", + "al": "[#6]-[#6]=[#6]", + "bn": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "pac": "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "pnb": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1", + "tmse": "[#6]-[#6]-[#6]-[Si](-[#6])(-[#6])-[#6]", + "ptmse": "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[Si](-[#6])(-[#6])-[#6]", + "tmsi": "[#6]-[#6](-[#6])(-[Si](-[#6])(-[#6])-[#6])-[#6]", + "tce": "[#6]-[#6](-[#17])(-[#17])-[#17]", + "php": "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6](-[#8]):[#6]:[#6]:1)=[#8]", + "dmnb": "[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6](-[#8]-[#6]):[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "dma": "[#6]=[#6]-[#6](-[#6])-[#6]", + "cyclohexyl": "[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "b-menthyl": "[#6]-[#6@H]1-[#6@H](-[#6](-[#6])-[#6])-[#6]-[#6]-[#6@@H](-[#6])-[#6]-1", + "b-3-methylpent-3-yl": "[#6]-[#6]-[#6](-[#6])-[#6]-[#6]", + "4-(3,6,9-trioxadecyl)oxybenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]-[#6]-[#8]-[#6]-[#6]-[#8]-[#6]-[#6]-[#8]-[#6]):[#6]:[#6]:1", + "chx": "[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "men": "[#6]-[#6H]1-[#6H](-[#6](-[#6])-[#6])-[#6]-[#6]-[#6H](-[#6])-[#6]-1", + "mpe": "[#6]-[#6]-[#6](-[#6])-[#6]-[#6]", + "tegbz": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]-[#6]-[#8]-[#6]-[#6]-[#8]-[#6]-[#6]-[#8]-[#6]):[#6]:[#6]:1", + "9-fluoroenylmethyl": "[#6]-[#6]1-[#6]2:[#6](-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:[#6]:[#6]:2", + "4-(N-[1-(4,4-dimethyl-2,6-dioxocyclohexylidene)-3-methyl-butyl]-amino)benzyl": "[#6]-[#6]1(-[#6]-[#6](-[#6](=[#6](-[#7]-[#6]2:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:2)-[#6]-[#6](-[#6])-[#6])-[#6](-[#6]-1)=[#8])=[#8])-[#6]", + "trimethylsilylethyl": "[#6]-[#6]-[#6]-[Si](-[#6])(-[#6])-[#6]", + "4,5-dimethoxy-2-nitrobenzyloxycarbonyl": "[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6](-[#8]-[#6]):[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "pseudoprolines": "[#6]-[#6]1(-[#6])-[#7]-[#6](-[#6](-[#8])=[#8])-[#6]-[#8]-1", + "2-hydroxy-4-methoxybenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]", + "2,4-dimethoxybenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]-[#6]", + "2,4,6-trimethoxybenzyl": "[#6]-[#6]1:[#6](-[#8]-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]-[#6]", + "1-methyl-3-indolylmethyl": "[#6]-[#6]-[#6]1:[#6]:[#7H]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "3,4-ethylene-dioxy-2-thenyl": "[#6]-[#6]1:[#6]2-[#8]-[#6]-[#6]-[#8]-[#6]:2:[#6]:[#16]:1", + "hmb": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]", + "tmob": "[#6]-[#6]1:[#6](-[#8]-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]-[#6]", + "mim": "[#6]-[#6]-[#6]1:[#6]:[#7H]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "edot": "[#6]-[#6]1:[#6]2-[#8]-[#6]-[#6]-[#8]-[#6]:2:[#6]:[#16]:1", + "4-methoxy-2-nitro-benzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "(6-hydroxy-3-oxido-1,3-benz[d]oxathiol-5-yl)methyl": "[#8]=[#16]1-[#6]-[#8]-[#6]2:[#6]-1:[#6]:[#6](-[#6]):[#6](-[#8]):[#6]:2", + "2-hydroxy-4-methoxy-5-(methylsulfinyl)benzyl": "[#6]-[#6]1:[#6]:[#6](-[#16](-[#6])=[#8]):[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]", + "n-boc-n-methyl[2-(methylamino)ethyl]carbamoyl-hmb": "[#6]-[#6](-[#6])(-[#8]-[#6](-[#7](-[#6]-[#6]-[#7](-[#6](-[#8]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:[#6]:1)=[#8])-[#6])-[#6])=[#8])-[#6]", + "9-xanthenyl": "[#6]12-[#6]-[#6]3:[#6](:[#6]:[#6]:[#6]:[#6]:3)-[#8]-[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "cyclopropyldimethylcarbinyl": "[#6]-[#6](-[#6]1-[#6]-[#6]-1)-[#6]", + "4,4-dimethoxybenzhydryl": "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1", + "xan": "[#6]12-[#6]-[#6]3:[#6](:[#6]:[#6]:[#6]:[#6]:3)-[#8]-[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "cpd": "[#6]-[#6](-[#6]1-[#6]-[#6]-1)-[#6]", + "mbh": "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1", + "p-toluenesulfonyl": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1)=[#8]", + "2,2,5,7,8-pentamethylchroman-6-sulfonyl": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#6]2-[#6]-[#6]-[#6](-[#6])(-[#6])-[#8]-[#6]:2:[#6](-[#6]):[#6]:1-[#6])=[#8]", + "2,2,4,6,7-pentamethyl-2,3-dihydrobenzofuran-5-sulfonyl": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#6](-[#6]):[#6]2-[#8]-[#6](-[#6])(-[#6])-[#6]-[#6]:2:[#6]:1-[#6])=[#8]", + "mesityl-2-sulfonyl": "[#6]-[#6]1:[#6](-[#16](=[#8])(-[#7]-[#6](-[#7])=[#7])=[#8]):[#6](-[#6]):[#6]:[#6](-[#6]):[#6]:1", + "4-methoxy-2,3,6-trimethylphenylsulfonyl": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#6]:[#6](-[#8]-[#6]):[#6](-[#6]):[#6]:1-[#6])=[#8]", + "1,2-dimethylindole-3-sulfonyl": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#7](-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)=[#8]", + "w,w-bis-tert-butyloxycarbonyl": "[#6]-[#6](-[#6])(-[#8]-[#6](/[#7]=[#6](/[#7]-[#6](-[#8]-[#6](-[#6])(-[#6])-[#6])=[#8])-[#7])=[#8])-[#6]", + "5-dibenzosuberenyl": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6]1-[#6]=[#6]-[#6]=[#6]-[#6]-1=[#6]-2", + "5-dibenzosuberyl": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6]1:[#6](:[#6]:[#6]:[#6]:[#6]:1)-[#6]-2", + "2-methoxy-5-dibenzosuberyl": "[#6]-[#8]-[#6]1:[#6]:[#6]2-[#6]-[#6]-[#6]3:[#6](-[#6]-[#6]:2:[#6]:[#6]:1):[#6]:[#6]:[#6]:[#6]:3", + "nitro": "[#8]=[#7+]-[#8-]", + "tos": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1)=[#8]", + "pmc": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#6]2-[#6]-[#6]-[#6](-[#6])(-[#6])-[#8]-[#6]:2:[#6](-[#6]):[#6]:1-[#6])=[#8]", + "pbf": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#6](-[#6]):[#6]2-[#8]-[#6](-[#6])(-[#6])-[#6]-[#6]:2:[#6]:1-[#6])=[#8]", + "mts": "[#6]-[#6]1:[#6](-[#16](=[#8])(-[#7]-[#6](-[#7])=[#7])=[#8]):[#6](-[#6]):[#6]:[#6](-[#6]):[#6]:1", + "mtr": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#6]:[#6](-[#8]-[#6]):[#6](-[#6]):[#6]:1-[#6])=[#8]", + "mis": "[#8]=[#16](-[#6]1:[#6](-[#6]):[#7](-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)=[#8]", + "bis-boc": "[#6]-[#6](-[#6])(-[#8]-[#6](/[#7]=[#6](/[#7]-[#6](-[#8]-[#6](-[#6])(-[#6])-[#6])=[#8])-[#7])=[#8])-[#6]", + "suben": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6]1-[#6]=[#6]-[#6]=[#6]-[#6]-1=[#6]-2", + "sub": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6]1:[#6](:[#6]:[#6]:[#6]:[#6]:1)-[#6]-2", + "mesub": "[#6]-[#8]-[#6]1:[#6]:[#6]2-[#6]-[#6]-[#6]3:[#6](-[#6]-[#6]:2:[#6]:[#6]:1):[#6]:[#6]:[#6]:[#6]:3", + "no2": "[#8]=[#7+]-[#8-]", + "w,w-bis-benzyloxycarbonyl": "[#8]=[#6](/[#7]=[#6](/[#7]-[#6](-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#7])-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "w,w-bis-allyloxycarbonyl": "[#8]=[#6](/[#7]=[#6](/[#7]-[#6](-[#8]-[#6]-[#6]=[#6])=[#8])-[#7])-[#8]-[#6]-[#6]=[#6]", + "z-small": "[#8]=[#6](/[#7]=[#6](/[#7]-[#6](-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#7])-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "p-methylbenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1", + "p-methoxybenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1", + "monomethoxytrityl": "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:1", + "trimethoxybenzyl": "[#6]-[#6]1:[#6](-[#8]-[#6]):[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1-[#8]-[#6]", + "2,2,4,6,7-pentamethyl-5-dihydrobenzofuranylmethyl": "[#6]-[#6]1:[#6](-[#6]):[#6](-[#6]):[#6]2-[#8]-[#6](-[#6])(-[#6])-[#6]-[#6]:2:[#6]:1-[#6]", + "1-adamantyl": "[#6]12-[#6]-[#6]3-[#6]-[#6](-[#6]-1)-[#6]-[#6](-[#6]-3)-[#6]-2", + "meb": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1", + "mob": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1", + "mmt": "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:1", + "pmbf": "[#6]-[#6]1:[#6](-[#6]):[#6](-[#6]):[#6]2-[#8]-[#6](-[#6])(-[#6])-[#6]-[#6]:2:[#6]:1-[#6]", + "1-ada": "[#6]12-[#6]-[#6]3-[#6]-[#6](-[#6]-1)-[#6]-[#6](-[#6]-3)-[#6]-2", + "2-(2,4-dinitrophenyl)ethyl": "[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "9-fluororenylmethoxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1-[#6]2:[#6](-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:[#6]:[#6]:2", + "dnpe": "[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "acetamidomethyl": "[#6]-[#7]-[#6](-[#6])=[#8]", + "phenylacetamidomethyl": "[#6]-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "5-tert-butylmercapto": "[#6]-[#6](-[#6])(-[#16])-[#6]", + "3-nitro-2-pyridinesulfenyl": "[#16]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "2-pyridinesulfenyl": "[#16]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1", + "N-allyloxycarbonyl-N-[2,3,5,6-tetrafluoro-4-(phenylthio)phenyl]]aminomethyl": "[#9]-[#6]1:[#6](-[#9]):[#6](-[#16]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6](-[#9]):[#6](-[#9]):[#6]:1-[#7](-[#6](-[#8]-[#6]-[#6]=[#6])=[#8])-[#6]", + "o-nitrobenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "4-picolyl": "[#6]-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1", + "ninhydrin": "[#8]=[#6]1-[#6]2(-[#16]-[#6]-[#6](-[#6](-[#8])=[#8])-[#7]-2)-[#6](-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2)=[#8]", + "acm": "[#6]-[#7]-[#6](-[#6])=[#8]", + "phacm": "[#6]-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "sbu": "[#6]-[#6](-[#6])(-[#16])-[#6]", + "npys": "[#16]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "s-pyr": "[#16]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1", + "fsam": "[#9]-[#6]1:[#6](-[#9]):[#6](-[#16]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6](-[#9]):[#6](-[#9]):[#6]:1-[#7](-[#6](-[#8]-[#6]-[#6]=[#6])=[#8])-[#6]", + "onb": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7+](-[#8-])=[#8]", + "nin": "[#8]=[#6]1-[#6]2(-[#16]-[#6]-[#6](-[#6](-[#8])=[#8])-[#7]-2)-[#6](-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2)=[#8]", + "n-tosyl": "[#8]=[#16](-[#7]1:[#6]:[#6]:[#7]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1)=[#8]", + "n-trityl": "[#7]1(-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#7]:[#6]:1", + "n-monomethoxytrityl": "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "n-methyltrityl": "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "n-tert-butyloxycarbonyl": "[#8]=[#6](-[#8]-[#6](-[#6])(-[#6])-[#6])-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "n-2,4-dimethylpent-3-yloxycarbonyl": "[#8]=[#6](-[#8]-[#6](-[#6](-[#6])-[#6])-[#6](-[#6])-[#6])-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "n-benzyloxymethyl": "[#7+]1(-[#6]-[#8]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7H]:[#6]:[#6]:1", + "n-tert-butoxymethyl": "[#6]-[#6](-[#6])(-[#6])-[#8]-[#6]-[#7+]1:[#6]:[#7H]:[#6]:[#6]:1", + "ntos": "[#8]=[#16](-[#7]1:[#6]:[#6]:[#7]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1)=[#8]", + "ntrt": "[#7]1(-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#7]:[#6]:1", + "nmtt": "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "nmmt": "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "nboc": "[#8]=[#6](-[#8]-[#6](-[#6])(-[#6])-[#6])-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "ndoc": "[#8]=[#6](-[#8]-[#6](-[#6](-[#6])-[#6])-[#6](-[#6])-[#6])-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "nbom": "[#7+]1(-[#6]-[#8]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7H]:[#6]:[#6]:1", + "nbum": "[#6]-[#6](-[#6])(-[#6])-[#8]-[#6]-[#7+]1:[#6]:[#7H]:[#6]:[#6]:1", + "N-9-fluorenylmethoxycarbonyl": "[#8]=[#6](-[#8]-[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "N-2,6-dimethoxybenzoyl": "[#8]=[#6](-[#6]1:[#6](-[#8]-[#6]):[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6])-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "dmbz": "[#8]=[#6](-[#6]1:[#6](-[#8]-[#6]):[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6])-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "N-2,4-dinitrophenyl": "[#8]=[#6](-[#6]1:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "dnp": "[#8]=[#6](-[#6]1:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#7]:[#6]:1", + "cyclohexyl;": "[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "tert-butyldimethylsilyl": "[#6]-[Si](-[#6](-[#6])(-[#6])-[#6])-[#6]", + "tbdms": "[#6]-[Si](-[#6](-[#6])(-[#6])-[#6])-[#6]", + "tert-butyldiphenylsilyl": "[#6]-[#6](-[Si](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6])-[#6]", + "propargyloxycarbonyl": "[#6]#[#6]-[#8]-[#6](-[#6])=[#8]", + "tbdps": "[#6]-[#6](-[Si](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6])-[#6]", + "2,6-dichlorobenzyl": "[#6]-[#6]1:[#6](-[#17]):[#6]:[#6]:[#6]:[#6]:1-[#17]", + "2-bromobenzyl": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#35]", + "2-bromobenzyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#35]", + "3-pentyl": "[#6]-[#6]-[#6]-[#6]-[#6]", + "dcb": "[#6]-[#6]1:[#6](-[#17]):[#6]:[#6]:[#6]:[#6]:1-[#17]", + "brbn": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#35]", + "brz": "[#8]=[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#35]", + "pen": "[#6]-[#6]-[#6]-[#6]-[#6]", + "tegb": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]-[#6]-[#8]-[#6]-[#6]-[#8]-[#6]-[#6]-[#8]-[#6]):[#6]:[#6]:1", + "boc-n-methyl-n-[2-(methylamino)ethyl]carbamoyl": "[#8]=[#6](-[#6](-[#8]-[#6](-[#6])(-[#6])-[#6])=[#8])-[#7](-[#6])-[#6]-[#6]-[#7]-[#6]", + "boc-nmec": "[#8]=[#6](-[#6](-[#8]-[#6](-[#6])(-[#6])-[#6])=[#8])-[#7](-[#6])-[#6]-[#6]-[#7]-[#6]", + "formyl": "[#6H]=[#8]", + "cyclohexyloxycarbonyl": "[#8]=[#6]-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "for": "[#6]=[#8]", + "hoc": "[#8]=[#6]-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "cyclopropane": "[#6]1-[#6]-[#6]-1", + "spiropentane": "[#6]1-[#6]-[#6]-12-[#6]-[#6]-2", + "cyclobutane": "[#6]1-[#6]-[#6]-[#6]-1", + "cyclopentane": "[#6]1-[#6]-[#6]-[#6]-[#6]-1", + "furan": "[#6]1:[#6]:[#6]:[#6]:[#8]:1", + "thiophene": "[#6]1:[#6]:[#6]:[#6]:[#16]:1", + "pyrrole": "[#7H]1:[#6]:[#6]:[#6]:[#6]:1", + "2H-pyrrole": "[#7]1=[#6]-[#6]=[#6]-[#6]-1", + "3H-pyrrole": "[#7]1=[#6]-[#6]-[#6]=[#6]-1", + "pyrazole": "[#7H]1:[#7]:[#6]:[#6]:[#6]:1", + "2H-imidazole": "[#6]1-[#7]=[#6]-[#6]=[#7]-1", + "1,2,3-triazole": "[#7H]1:[#7]:[#7]:[#6]:[#6]:1", + "1,2,4-triazole": "[#6]1:[#7]:[#6]:[#7]:[#7H]:1", + "1,2-dithiole": "[#16]1-[#16]-[#6]=[#6]-[#6]-1", + "1,3-dithiole": "[#16]1-[#6]-[#16]-[#6]=[#6]-1", + "3H-1,2-oxathiole": "[#8]1-[#16]-[#6]-[#6]=[#6]-1", + "isoxazole": "[#8]1:[#7]:[#6]:[#6]:[#6]:1", + "oxazole": "[#8]1:[#6]:[#7]:[#6]:[#6]:1", + "thiazole": "[#16]1:[#6]:[#7]:[#6]:[#6]:1", + "isothiazole": "[#16]1:[#7]:[#6]:[#6]:[#6]:1", + "1,2,3-oxadiazole": "[#8]1:[#7]:[#7]:[#6]:[#6]:1", + "1,2,4-oxadiazole": "[#8]1:[#7]:[#6]:[#7]:[#6]:1", + "1,2,5-oxadiazole": "[#8]1:[#7]:[#6]:[#6]:[#7]:1", + "1,3,4-oxadiazole": "[#8]1:[#6]:[#7]:[#7]:[#6]:1", + "1,2,3,4-oxatriazole": "[#8]1:[#7]:[#7]:[#7]:[#6]:1", + "1,2,3,5-oxatriazole": "[#8]1:[#7]:[#7]:[#6]:[#7]:1", + "3H-1,2,3-dioxazole": "[#8]1-[#8]-[#7]-[#6]=[#6]-1", + "1,2,4-dioxazole": "[#8]1-[#8]-[#6]=[#7]-[#6]-1", + "1,3,2-dioxazole": "[#8]1-[#7]-[#8]-[#6]=[#6]-1", + "1,3,4-dioxazole": "[#8]1-[#6]-[#8]-[#7]=[#6]-1", + "5H-1,2,5-oxathiazole": "[#8]1-[#16]-[#6]=[#6]-[#7]-1", + "1,3-oxathiole": "[#8]1-[#6]-[#16]-[#6]=[#6]-1", + "benzene": "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "cyclohexane": "[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "2H-pyran": "[#6]1-[#6]=[#6]-[#6]=[#6]-[#8]-1", + "4H-pyran": "[#6]1=[#6]-[#6]-[#6]=[#6]-[#8]-1", + "2H-pyran-2-one": "[#8]=[#6]1:[#6]:[#6]:[#6]:[#6]:[#8]:1", + "4H-pyran-4-one": "[#8]=[#6]1:[#6]:[#6]:[#8]:[#6]:[#6]:1", + "1,2-dioxin": "[#8]1-[#8]-[#6]=[#6]-[#6]=[#6]-1", + "1,3-dioxin": "[#8]1-[#6]-[#8]-[#6]=[#6]-[#6]-1", + "pyridine": "[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1", + "pyridazine": "[#6]1:[#7]:[#7]:[#6]:[#6]:[#6]:1", + "pyrimidine": "[#6]1:[#7]:[#6]:[#6]:[#6]:[#7]:1", + "pyrazine": "[#6]1:[#7]:[#6]:[#6]:[#7]:[#6]:1", + "piperazine": "[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1", + "1,3,5-triazine": "[#7]1:[#6]:[#7]:[#6]:[#7]:[#6]:1", + "1,2,4-triazine": "[#7]1:[#7]:[#6]:[#7]:[#6]:[#6]:1", + "1,2,3-triazine": "[#7]1:[#7]:[#7]:[#6]:[#6]:[#6]:1", + "4H-1,2-Oxazine": "[#8]1-[#7]=[#6]-[#6]-[#6]=[#6]-1", + "2H-1,3-Oxazine": "[#8]1-[#6]-[#7]=[#6]-[#6]=[#6]-1", + "6H-1,3-Oxazine": "[#8]1-[#6]=[#7]-[#6]=[#6]-[#6]-1", + "6H-1,2-Oxazine": "[#8]1-[#7]=[#6]-[#6]=[#6]-[#6]-1", + "1,4-Oxazine": "[#8]1-[#6]=[#6]-[#7]=[#6]-[#6]-1", + "2H-1,2-Oxazine": "[#8]1-[#7]-[#6]=[#6]-[#6]=[#6]-1", + "4H-1,4-Oxazine": "[#8]1-[#6]=[#6]-[#7]-[#6]=[#6]-1", + "1,2,5-Oxathiazine": "[#8]1-[#16]-[#6]=[#6]-[#7]=[#6]-1", + "1,2,6-Oxathiazine": "[#8]1-[#16]-[#6]=[#6]-[#6]=[#7]-1", + "1,2,4-Oxadiazine": "[#8]1-[#7]-[#6]=[#7]-[#6]=[#6]-1", + "1,3,5-Oxadiazine": "[#8]1-[#6]=[#7]-[#6]=[#7]-[#6]-1", + "morpholine": "[#7]1-[#6]-[#6]-[#8]-[#6]-[#6]-1", + "azepine": "[#7]1-[#6]=[#6]-[#6]=[#6]-[#6]=[#6]-1", + "oxepin": "[#8]1-[#6]=[#6]-[#6]=[#6]-[#6]=[#6]-1", + "thiepin": "[#16]1-[#6]=[#6]-[#6]=[#6]-[#6]=[#6]-1", + "4H-1,2-diazepine": "[#7]1=[#6]-[#6]=[#6]-[#6]-[#6]=[#7]-1", + "indene": "[#6]12:[#6](-[#6]-[#6]=[#6]-1):[#6]:[#6]:[#6]:[#6]:2", + "2H-indene": "[#6]12=[#6]-[#6]-[#6]=[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "benzofuran": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#8]:2", + "isobenzofuran": "[#6]12:[#6]:[#8]:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "benzo[b]thiophene": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#16]:2", + "benzo[c]thiophene": "[#6]12:[#6]:[#16]:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "indole": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#7H]:2", + "3H-indole": "[#6]12:[#6](-[#7]=[#6]-[#6]-1):[#6]:[#6]:[#6]:[#6]:2", + "1H-indole": "[#6]12:[#6](:[#7H]:[#6]:[#6]:1):[#6]:[#6]:[#6]:[#6]:2", + "cyclopenta[b]pyridine": "[#6]12:[#6]:[#6]:[#6]:[#6]-1:[#6]:[#6]:[#6]:[#7H]:2", + "pyrano[3,4-b]-pyrrole": "[#6]12:[#6]:[#8]:[#6]:[#6]:[#6]-1:[#6]:[#6]:[#7]:2", + "indazole": "[#6]12:[#6](:[#7H]:[#7]:[#6]:1):[#6]:[#6]:[#6]:[#6]:2", + "benzisoxazole": "[#6]12:[#7]:[#8]:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "benzoxazole": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#8]:[#6]:[#7]:2", + "2,1-benzisoxazole": "[#6]12:[#6]:[#8]:[#7]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "naphthalene": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "1,2,3,4-tetrahydronaphthalene": "[#6]12:[#6](-[#6]-[#6]-[#6]-[#6]-1):[#6]:[#6]:[#6]:[#6]:2", + "octahydronaphthalene": "[#6]12-[#6]-[#6]-[#6]-[#6]-[#6]-1=[#6]-[#6]-[#6]-[#6]-2", + "2H-1-benzopyran": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]=[#6]-2", + "2H-1-benzopyran-2-one": "[#8]=[#6]1:[#6]:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:1", + "4H-1-benzopyran-4-one": "[#8]=[#6]1:[#6]:[#6]:[#8]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:1:2", + "1H-2-benzopyran-1-one": "[#8]=[#6]1:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:[#6]:[#8]:1", + "3H-2-benzopyran-1-one": "[#8]=[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-[#8]-1", + "quinoline": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#7]:[#6]:[#6]:[#6]:2", + "isoquinoline": "[#6]12:[#6](:[#6]:[#7]:[#6]:[#6]:1):[#6]:[#6]:[#6]:[#6]:2", + "cinnoline": "[#6]12:[#6]:[#6]:[#7]:[#7]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "quinazoline": "[#6]12:[#6]:[#7]:[#6]:[#7]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "1,8-napthyhridine": "[#6]1:[#6]:[#6]2:[#6](:[#7]:[#6]:1):[#7]:[#6]:[#6]:[#6]:2", + "1,7-napththyridine": "[#6]1:[#6]:[#6]2:[#6](:[#6]:[#7]:[#6]:[#6]:2):[#7]:[#6]:1", + "1,5-napththridine": "[#6]1:[#6]:[#6]2:[#6](:[#6]:[#6]:[#6]:[#7]:2):[#7]:[#6]:1", + "1,6-napthyridine": "[#6]1:[#6]:[#6]2:[#6](:[#6]:[#6]:[#7]:[#6]:2):[#7]:[#6]:1", + "2H-1,3-benzoxazine": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#7]=[#6]-2", + "2H-1,4-benzoxazine": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]=[#7]-2", + "1H-2,3-benzoxazine": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#8]-[#7]=[#6]-2", + "4H-3,1-benzoxazine": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]=[#6]-[#8]-[#6]-2", + "2H-1,2-benzoxazine": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#7]-[#6]=[#6]-2", + "4H-1,3-benzoxazine": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]=[#7]-[#6]-2", + "anthracene": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:2", + "phenanthrene": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:2:1", + "phenalene": "[#6]12:[#6]3:[#6](-[#6]-[#6]=[#6]-1):[#6]:[#6]:[#6]:[#6]:3:[#6]:[#6]:[#6]:2", + "fluorene": "[#6]12-[#6]-[#6]3:[#6](:[#6]:[#6]:[#6]:[#6]:3)-[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "carbazole": "[#6]12:[#7H]:[#6]3:[#6](:[#6]:[#6]:[#6]:[#6]:3):[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "xanthene": "[#6]12-[#6]-[#6]3:[#6](:[#6]:[#6]:[#6]:[#6]:3)-[#8]-[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "acridine": "[#6]12:[#7]:[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "norpinane": "[#6]12-[#6]-[#6](-[#6]-[#6]-[#6]-1)-[#6]-2", + "7H-purine": "[#6]12:[#7]:[#6]:[#7]:[#6]:[#6]:1:[#7H]:[#6]:[#7]:2", + "steroid_ring_system": "[#6]12-[#6]-[#6]-[#6]-[#6]-[#6]-1-[#6]1-[#6](-[#6]3-[#6]-[#6]-[#6]-[#6]-3-[#6]-[#6]-1)-[#6]-[#6]-2", + "imidazole": "[#6]1:[#6]:[#7]:[#6]:[#7H]:1", + "thiazol-2-amine": "[#7]-[#6]1:[#7]:[#6]:[#6]:[#16]:1", + "tetrazole": "[#6]1:[#7]:[#7]:[#7]:[#7H]:1", + "cytosine": "[#8]=[#6]1:[#7]:[#6](-[#7]):[#6]:[#6]:[#7H]:1", + "adenine": "[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7H]:2", + "5-methylindole": "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:[#6]:[#7H]:2):[#6]:1", + "isocaffeine": "[#8]=[#6]1:[#7](-[#6]):[#6](:[#6]2:[#6](:[#7H]:1):[#7H]:[#6]:[#7]:2)=[#8]", + "tetrazolethiol": "[#16]-[#7]1:[#7]:[#7]:[#7]:[#6]:1", + "3-methylisoxazole": "[#6]1:[#6]:[#6]:[#7]:[#8]:1", + "1-methylimidazole": "[#6]-[#7]1:[#6]:[#7]:[#6]:[#6]:1", + "2-methylimidazole": "[#6]-[#6]1:[#7]:[#6]:[#6]:[#7H]:1", + "guanine": "[#7]-[#6]1:[#7H]:[#6](:[#6]2:[#6](:[#7]:1):[#7H]:[#6]:[#7]:2)=[#8]", + "tosufloxacin": "[#7]-[#6]1:[#6](-[#9]):[#6]:[#6]2:[#6](:[#7H]:[#6]:[#6](-[#6](-[#8])=[#8]):[#6]:2=[#8]):[#7]:1", + "acetamido": "[#8]=[#6](-[#7])-[#6]", + "acetoacetyl": "[#8]=[#6](-[#6])-[#6]-[#6](=[#8])-[#8]", + "acetyl": "[#6](-[#6])=[#8]", + "acryloyl": "[#6]=[#6]-[#6](-[#6])=[#8]", + "alanyl": "[#7]-[#6H](-[#6])-[#6](-[#6])=[#8]", + "beta-alanyl": "[#7]-[#6]-[#6]-[#6](-[#6])=[#8]", + "allylidene": "[#6H]-[#6]=[#6]", + "amidino": "[#7]-[#6]=[#7]", + "amino": "[#7]", + "amyl": "[#6H2]-[#6]-[#6]-[#6]-[#6]", + "anilino": "[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "anisidino": "[#7]-[#6]1:[#6]:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:1", + "anthranoyl": "[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#6])=[#8]", + "arsino": "[AsH3]", + "azelaoyl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "azido": "[#7]=[#7+]=[#7-]", + "azo": "[#6]/[#7]=[#7]/[#6]", + "azoxy": "[#6]/[#7]=[#7+](\\[#8-])-[#6]", + "benzal": "[#6H]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "benzamido": "[#8]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "benzhydrol": "[#8]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "benzoxy": "[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "benzoyl": "[#8]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "benzylidene": "[#6H]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "benzylidyne": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "biphenylyl": "[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#6]:[#6]:[#6]:1", + "biphenylene": "[#6]12=[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3=[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "butoxy": "[#8]-[#6]-[#6]-[#6]-[#6]", + "sec-butoxy": "[#8]-[#6](-[#6])-[#6]-[#6]", + "tert-butoxy": "[#8]-[#6](-[#6])(-[#6])-[#6]", + "butyl": "[#6H2]-[#6]-[#6]-[#6]", + "sec-butyl": "[#6]-[#6]-[#6H]-[#6]", + "butyryl": "[#8]=[#6]-[#6]-[#6]-[#6]", + "caproyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "capryl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]", + "capryloyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "carbamido": "[#6](=[#8])(-[#7])-[#7]", + "carbamoyl": "[#7]-[#6]=[#8]", + "carbamyl": "[#7]-[#6]=[#8]", + "carbazoyl": "[#7]-[#7]-[#6]=[#8]", + "carbethoxy": "[#8]=[#6]-[#8]-[#6]-[#6]", + "carbonyl": "[CX3]=[OX1]", + "carboxy": "[#8]=[#6]-[#8]", + "cetyl": "[#6H2]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]", + "chloroformyl": "[#8]=[#6]-[#17]", + "cinnamoyl": "[#8]=[#6]-[#6]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "cinnamyl": "[#6H2]-[#6]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "cinnamylidene": "[#6H]-[#6]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "cresyl": "[#8]-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1", + "crotonoyl": "[#6]/[#6]=[#6]/[#6]=[#8]", + "crotyl": "[#6H2]/[#6]=[#6]/[#6]", + "cyanamido": "[#7H]-[#6]#[#7]", + "cyanato": "[#8]-[#6]#[#7]", + "cyano": "[#6]#[#7]", + "decanedioyl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "decanoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "diazo": "[#7+]=[#7-]", + "diazoamino": "[#7]=[#7]-[#7]", + "disilanyl": "[SiH2]-[SiH3]", + "disiloxanyloxy": "[#8]-[SiH2]-[#8]-[SiH3]", + "disulfinyl": "[#8]=[#16]-[#16]=[#8]", + "dithio": "[#16]-[#16]", + "enanthoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "epoxy": "[#8]", + "ethenyl": "[#6H]=[#6]", + "ethynyl": "[#6]#[#6]", + "ethoxy": "[#8]-[#6]-[#6]", + "ethylene": "[#6]=[#6]", + "ethylidene": "[#6H]-[#6]", + "ethylthio": "[#16]-[#6]-[#6]", + "formamido": "[#8]=[#6]-[#7H]", + "furmaroyl": "[#8]=[#6]-[#8]", + "furfuryl": "[#6H2]-[#6]1:[#6]:[#6]:[#6]:[#8]:1", + "furfurylidene": "[#6H]-[#6]1:[#6]:[#6]:[#6]:[#8]:1", + "glutamoyl": "[#7]-[#6@@H](-[#6]-[#6]-[#6]=[#8])-[#6]=[#8]", + "glutaryl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "glycylamino": "[#7H]-[#6](-[#6]-[#7])=[#8]", + "glycoloyl": "[#8]-[#6]-[#6]=[#8]", + "glycyl": "[#7]-[#6]-[#6]=[#8]", + "glyoxyoyl": "[#8]=[#6]-[#6]=[#8]", + "guanidino": "[#7H]-[#6](-[#7])=[#7]", + "guanyl": "[#7]=[#6]-[#7]", + "heptadecanoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "heptanamido": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](-[#7H])=[#8]", + "heptanoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8].[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](-[#7H])=[#8]", + "hexadecanoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8].[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8].[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](-[#7H])=[#8]", + "hexamethylene": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]", + "hexanedioyl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "hippuryl": "[#6H2]-[#6]-[#7]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "hydrazino": "[#7]-[#7H]", + "hydrazo": "[#7]-[#7]", + "hydrocinnamoyl": "[#8]=[#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "hydroperoxy": "[#8]-[#8]", + "hydroxyamino": "[#7H]-[#8]", + "imino": "[#7H]", + "iodoso": "[#53]=[#8]", + "iodyl": "[#8]=[#53]=[#8]", + "isoamyl": "[#6H2]-[#6]-[#6](-[#6])-[#6]", + "isobutenyl": "[#6H]=[#6](-[#6])-[#6]", + "isobutoxy": "[#8]-[#6]-[#6](-[#6])-[#6]", + "isobutyl": "[#6H2]-[#6](-[#6])-[#6]", + "isobutylidene": "[#6H]-[#6](-[#6])-[#6]", + "isobutyryl": "[#8]=[#6]-[#6](-[#6])-[#6]", + "isocyanato": "[#7]=[#6]=[#8]", + "isocyano": "[#7+]#[#6-]", + "isohexyl": "[#6H2]-[#6]-[#6]-[#6](-[#6])-[#6]", + "isoleucyl": "[#7]-[#6@@H](-[#6@@H](-[#6])-[#6]-[#6])-[#6]=[#8]", + "isonitroso": "[#7]-[#8]", + "isopentyl": "[#6H2]-[#6]-[#6](-[#6])-[#6]", + "isopentylidene": "[#6H]-[#6]-[#6](-[#6])-[#6]", + "isopropenyl": "[#6]=[#6]-[#6]", + "isopropoxy": "[#8]-[#6](-[#6])-[#6]", + "isopropyl": "[#6]-[#6H]-[#6]", + "isopropylidene": "[#6]-[#6]-[#6]", + "isothiocynato": "[#7]=[#6]=[#16]", + "isovaleryl": "[#8]=[#6]-[#6]-[#6](-[#6])-[#6]", + "lactoyl": "[#8]-[#6](-[#6])-[#6]=[#8]", + "lauroyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "lauryl": "[#6H2]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]", + "leucyl": "[#7]-[#6@@H](-[#6]-[#6](-[#6])-[#6])-[#6]=[#8]", + "levulinoyl": "[#8]=[#6](-[#6])-[#6]-[#6]-[#6]=[#8]", + "malonyl": "[#8]=[#6]-[#6]-[#6]=[#8]", + "mandeloyl": "[#8]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]=[#8]", + "mercapto": "[#16H]", + "mesityl": "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](-[#6]):[#6]:1", + "methacryloyl": "[#6]-[#6](-[#6]=[#8])=[#6]", + "methallyl": "[#6H2]-[#6](-[#6])=[#6]", + "methionyl": "[#7]-[#6@@H](-[#6]-[#6]-[#16]-[#6])-[#6]=[#8]", + "methoxy": "[#8]-[#6]", + "methylene": "[#6H2]", + "methylthio": "[#16]-[#6]", + "myristoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "myristyl": "[#6H2]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]", + "naphthyl": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "naphthylene": "[#6]12:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:[#6]:[#6]:[#6]:2", + "neopentyl": "[#6H2]-[#6](-[#6])(-[#6])-[#6]", + "nitramino": "[#7H]-[#7+](-[#8-])=[#8]", + "nitrosamino": "[#7H]-[#7]=[#8]", + "nitroso": "[#7]=[#8]", + "nonanoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "oleoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]/[#6]=[#6]\\[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "oxalyl": "[#8]=[#6]-[#6]=[#8]", + "oxo": "[#8]", + "palmitoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "pentamethylene": "[#8]=[#6]1-[#6](-[#6]=[#6])-[#6@H]2-[#16]-[#6]-[#6]-[#7]-1-2", + "pentyl": "[#6H2]-[#6]-[#6]-[#6]-[#6]", + "tert-pentyl": "[#6]-[#6]-[#6](-[#6])-[#6]", + "phenacylidene": "[#6H]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "phenethyl": "[#6H2]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "phenoxy": "[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "phenyl": "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "phenylene": "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "phosphino": "[#15H2]", + "phosphinyl": "[#15H2]=[#8]", + "phospho": "[#8]=[#15](-[#8])-[#8]", + "phosphono": "[#8]=[#15](-[#8])-[#8]", + "phthaloyl": "[#8]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]=[#8]", + "picryl": "[#8-]-[#7+](-[#6]1:[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:[#6](-[#7+](-[#8-])=[#8]):[#6]:1)=[#8]", + "pimeloyl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "piperidino": "[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1", + "pivaloyl": "[#6]-[#6](-[#6])(-[#6])-[#6]=[#8]", + "prenyl": "[#6H2]-[#6]=[#6](-[#6])-[#6]", + "propargyl": "[#6H2]-[#6]#[#6]", + "1-propenyl": "[#6H]=[#6]-[#6]", + "2-propenyl": "[#6H2]-[#6]=[#6]", + "propionyl": "[#8]=[#6]-[#6]-[#6]", + "propoxy": "[#8]-[#6]-[#6]-[#6]", + "propyl": "[#6H2]-[#6]-[#6]", + "propylidene": "[#6H]-[#6]-[#6]", + "pyrryl": "[#7H]1:[#6]:[#6]:[#6]:[#6]:1", + "salicyloyl": "[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]=[#8]", + "selenyl": "[SeH]", + "seryl": "[#7]-[#6@@H](-[#6]-[#8])-[#6]=[#8]", + "siloxy": "[#8]-[SiH3]", + "silyl": "[SiH3]", + "silyene": "[SiH2]", + "sorboyl": "[#6]-[#6]=[#6]-[#6]=[#6]-[#6](-[#8])=[#8]", + "stearoyl": "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "stearyl": "[#6H2]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]", + "styryl": "[#6H]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "suberoyl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#8]", + "succinyl": "[#8]=[#6]-[#6]-[#6]-[#6]=[#8]", + "sulfamino": "[#7H]-[#16](=[#8])(-[#8])=[#8]", + "sulfamoyl": "[#8]=[#16](-[#7])=[#8]", + "sulfanilyl": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6](-[#7]):[#6]:[#6]:1)=[#8]", + "sulfeno": "[#16]-[#8]", + "sulfhydryl": "[#16H]", + "sulfinyl": "[#16]=[#8]", + "sulfo": "[#8]=[#16](-[#8])=[#8]", + "sulfonyl": "[#8]=[#16]=[#8]", + "terephthaloyl": "[#8]=[#6]-[#6]1:[#6]:[#6]:[#6](-[#6]=[#8]):[#6]:[#6]:1", + "tetramethylene": "[#6]-[#6]-[#6]-[#6]", + "thienyl": "[#6]1:[#6]:[#6]:[#6]:[#16]:1", + "thiocarbonyl": "[#6H]=[#16]", + "thiocarboxy": "[#16]=[#6]-[#8]", + "thiocyanato": "[#16]-[#6]#[#7]", + "thionyl": "[#16]=[#8]", + "threonyl": "[#7]-[#6@@H](-[#6@H](-[#8])-[#6])-[#6]=[#8]", + "toluidino": "[#7H]-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1", + "toluoyl": "[#6]-[#6]1:[#6]:[#6]:[#6](-[#6]=[#8]):[#6]:[#6]:1", + "tolyl": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "alpha-tolyl": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "tolylene": "[#6H]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1", + "tosyl": "[#8]=[#16](-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1)=[#8]", + "triazano": "[#7H]-[#7]-[#7H]", + "trimethylene": "[#6]-[#6]-[#6]", + "valeryl": "[#8]=[#6]-[#6]-[#6]-[#6]-[#6]", + "valyl": "[#7]-[#6@@H](-[#6](-[#6])-[#6])-[#6]=[#8]", + "vinyl": "[#6H]=[#6]", + "vinylidene": "[#6]=[#6]", + "xylidino": "[#7H]-[#6]1:[#6]:[#6]:[#6](-[#6]):[#6]:[#6]:1-[#6]", + "xylyl": "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](-[#6]):[#6]:1", + "xylylene": "[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](-[#6]-[#7]):[#6]:1", + "propiolamide": "[#6]#[#6]-[#6](-[#7])=[#8]", + "fumarate ester": "[#7]-[#6](/[#6]=[#6]/[#6]-[#6](-[#8]-[#6])=[#8])=[#8]", + "allenamide": "[#7]-[#6](-[#6]=[#6]=[#6])=[#8]", + "propiolonitrile": "[#6]#[#6]-[#6]#[#7]", + "propargylamide": "[#6]#[#6]-[#6]-[#6](-[#7])=[#8]", + "arylsulfonyl bicyclobutane": "[#8]=[#16](-[#6]12-[#6]-[#6]-1-[#6]-2)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]", + "haloalkane": "[#6]-[#35]", + "alpha-halomethyl": "[#6]-[#6](-[#6]-[#17])=[#8]", + "alpha-haloamide": "[#7]-[#6](-[#6]-[#17])=[#8]", + "alpha-haloester": "[#8]=[#6](-[#6]-[#17])-[#8]-[#6]", + "epoxide": "[#6]1-[#6]-[#8]-1", + "aziridine": "[#7]1-[#6]-[#6]-1", + "nitroalkane": "[#6]-[#6]-[#7+](-[#8-])=[#8]", + "acrylamide": "[#6]=[#6]-[#6](-[#7])=[#8]", + "cyanoenone": "[#8]=[#6](-[#6])-[#6](-[#6]#[#7])=[#6]", + "aldehyde": "[#8]=[#6H]-[#6]", + "ketone": "[#6][CX3](=O)[#6]", + "nitrile": "[#7]#[#6]-[#6]", + "cyanamide": "[#7]-[#6]#[#7]", + "isothicyanate": "[#7-]=[#6]=[#16]", + "sulfone": "[#6]-[#16]=[#8]", + "sulfonyl fluoride": "[#8]=[#16](-[#9])=[#8]", + "sulfonimidoyl fluoride": "[#7]=[#16](-[#9])(-[#9])=[#8]", + "aryl fluorosulfate": "[#8]=[#16](-[#8]-[#6]-[#6]-[#6]-[#6]-[#6])(-[#9])=[#8]", + "ester": "[#6]-[#6](-[#8]-[#6])=[#8]", + "sulfonamide": "[#8]=[#16](-[#7])=[#8]", + "2-carbonyl arylboronic acid": "[#8]=[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#5](-[#8])-[#8])-[#6]", + "n-methyl isoxazolium": "[#6]-[#7+]1:[#6]:[#6]:[#6]:[#8]:1", + "oxaziridine": "[#8]1-[#7]-[#6]-1", + "carboxyl": "[CX3](=O)[OX2H1]", + "ether": "[OD2]([#6])[#6]", + "alkanol": "[#6][OX2H]", + "thiol": "[#16X2H]", + "halogen": "[F,Cl,Br,I]", + "amine": "[NX3;H2,H1;!$(NC=O)]", + "amide": "[NH2]", +} + + +def process(chemcaption_data): + df = pd.read_json(chemcaption_data, lines=True) + + trustworthy_smarts = [ + "carboxyl", + "carbonyl", + "ether", + "alkanol", + "thiol", + "halogen", + "amine", + "amide", + "ketone", + "cyclopropane", + "spiropentane", + "cyclobutane", + "cyclopentane", + "furan", + "thiophene", + "pyrrole", + "2H-pyrrole", + "3H-pyrrole", + "pyrazole", + "2H-imidazole", + "1,2,3-triazole", + "1,2,4-triazole", + "1,2-dithiole", + "1,3-dithiole", + "3H-1,2-oxathiole", + "isoxazole", + "oxazole", + "thiazole", + "isothiazole", + "1,2,3-oxadiazole", + "1,2,4-oxadiazole", + "1,2,5-oxadiazole", + "1,3,4-oxadiazole", + "1,2,3,4-oxatriazole", + "1,2,3,5-oxatriazole", + "3H-1,2,3-dioxazole", + "1,2,4-dioxazole", + "1,3,2-dioxazole", + "1,3,4-dioxazole", + "5H-1,2,5-oxathiazole", + "1,3-oxathiole", + "benzene", + "cyclohexane", + "2H-pyran", + "4H-pyran", + "2H-pyran-2-one", + "4H-pyran-4-one", + "1,2-dioxin", + "1,3-dioxin", + "pyridine", + "pyridazine", + "pyrimidine", + "pyrazine", + "piperazine", + "1,3,5-triazine", + "1,2,4-triazine", + "1,2,3-triazine", + "4H-1,2-Oxazine", + "2H-1,3-Oxazine", + "6H-1,3-Oxazine", + "6H-1,2-Oxazine", + "1,4-Oxazine", + "2H-1,2-Oxazine", + "4H-1,4-Oxazine", + "1,2,5-Oxathiazine", + "1,2,6-Oxathiazine", + "1,2,4-Oxadiazine", + "1,3,5-Oxadiazine", + "morpholine", + "azepine", + "oxepin", + "thiepin", + "4H-1,2-diazepine", + "indene", + "2H-indene", + "benzofuran", + "isobenzofuran", + "benzo[b]thiophene", + "benzo[c]thiophene", + "indole", + "3H-indole", + "1H-indole", + "cyclopenta[b]pyridine", + "pyrano[3,4-b]-pyrrole", + "indazole", + "benzisoxazole", + "benzoxazole", + "2,1-benzisoxazole", + "naphthalene", + "1,2,3,4-tetrahydronaphthalene", + "octahydronaphthalene", + "2H-1-benzopyran", + "2H-1-benzopyran-2-one", + "4H-1-benzopyran-4-one", + "1H-2-benzopyran-1-one", + "3H-2-benzopyran-1-one", + "quinoline", + "isoquinoline", + "cinnoline", + "quinazoline", + "1,8-napthyhridine", + "1,7-napththyridine", + "1,5-napththridine", + "1,6-napthyridine", + "2H-1,3-benzoxazine", + "2H-1,4-benzoxazine", + "1H-2,3-benzoxazine", + "4H-3,1-benzoxazine", + "2H-1,2-benzoxazine", + "4H-1,3-benzoxazine", + "anthracene", + "phenanthrene", + "phenalene", + "fluorene", + "carbazole", + "xanthene", + "acridine", + "norpinane", + "7H-purine", + "steroid_ring_system", + ] + + subset = df[df["filled_prompt"].str.contains("|".join(trustworthy_smarts))] + + subset["completion_labels"] = subset["completion_labels"].apply(lambda x: x[0]) + subset["completion"] = subset["completion"].apply(lambda x: x[0]) + subset["smarts"] = subset["completion_labels"].apply( + lambda x: NAME_SMARTS_MAP[x.replace("_count", "")] + ) + + relevant_frame = subset[ + [ + "representation", + "representation_type", + "completion", + "completion_labels", + "smarts", + ] + ] + + # subsample relevant frame such that completion 0 and completion 1 are approximately equal + # this is to avoid biasing the model towards 0 + completion_0 = relevant_frame[relevant_frame["completion"] == 0] + completion_1 = relevant_frame[relevant_frame["completion"] == 1] + completion_other = relevant_frame[relevant_frame["completion"] != 0] + + completion_0 = completion_0.sample(n=len(completion_1), random_state=42) + relevant_frame = pd.concat([completion_0, completion_1, completion_other]) + + return relevant_frame + relevant_frame.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + all_files = glob("*.jsonl") + all_data = [] + + for file in tqdm(all_files): + try: + all_data.append(process(file)) + except Exception as e: + print(file, e) + df = pd.concat(all_data) + + ds = Dataset.from_pandas(df) + ds.push_to_hub(repo_id="kjappelbaum/chemnlp-chem-caption", config_name="smarts") diff --git a/data/tabular/chem_caption_smarts/transform.py b/data/tabular/chem_caption_smarts/transform.py new file mode 100644 index 000000000..7259da626 --- /dev/null +++ b/data/tabular/chem_caption_smarts/transform.py @@ -0,0 +1,17 @@ +import pandas as pd + + +def process(): + # get the smarts config + df = pd.read_parquet( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-chem-caption/resolve/main/smarts/train-00000-of-00001-71cef18c6383b463.parquet" # noqa + ) + df["completion_labels"] = df["completion_labels"].astype(str) + df["completion_labels"] = df["completion_labels"].str.replace( + "_count", "", regex=True + ) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() From 614a2ecff46071a0ddac66643fdd03329e7d92ad Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:10:05 +0100 Subject: [PATCH 10/61] add reaction data (#458) Co-authored-by: Philippe Schwaller Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- data/tabular/buchwald_hartwig/meta.yaml | 103 ++++++++ data/tabular/buchwald_hartwig/transform.py | 148 ++++++++++++ data/tabular/suzuki_miyaura_sach/meta.yaml | 102 ++++++++ data/tabular/suzuki_miyaura_sach/transform.py | 224 ++++++++++++++++++ data/text_sampling/text_sampling.py | 4 +- 6 files changed, 580 insertions(+), 3 deletions(-) create mode 100644 data/tabular/buchwald_hartwig/meta.yaml create mode 100644 data/tabular/buchwald_hartwig/transform.py create mode 100644 data/tabular/suzuki_miyaura_sach/meta.yaml create mode 100644 data/tabular/suzuki_miyaura_sach/transform.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 63e6b64e0..223740c40 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,7 @@ repos: exclude: ^experiments/configs - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 23.10.1 hooks: - id: black language_version: python3 # Should be a command that runs python3.6+ diff --git a/data/tabular/buchwald_hartwig/meta.yaml b/data/tabular/buchwald_hartwig/meta.yaml new file mode 100644 index 000000000..d777d975a --- /dev/null +++ b/data/tabular/buchwald_hartwig/meta.yaml @@ -0,0 +1,103 @@ +--- +name: buchwald_hartwig_doyle +description: |- + High-throughput experimentation palladium-catalyzed Buchwald Hardwig + C-N cross-coupling data set with yields. +targets: + - id: yield + description: Reaction yields analyzed by LCMS + units: \% + type: continuous + names: + - noun: reaction yield + - noun: yield + - noun: reaction yield (measured by LCMS) + - id: masked_rxn_smiles + type: text + description: reaction SMILES with one element masked + names: + - noun: reaction SMILES with one element masked as `MASK` + - noun: reaction SMILES with one element hidden as `MASK` + - noun: masked reaction SMILES (one component masked as `MASK`) + - noun: masked reaction SMILES string (one component masked as `MASK`) + - noun: masked RXNSMILES (one component masked as `MASK`) + - id: educt_string + type: text + description: reaction educts + names: + - noun: reaction educts + - noun: educts + - noun: starting materials + - id: product_string + type: text + description: reaction products + names: + - noun: reaction products + - noun: products +identifiers: + - id: RXNSMILES + type: RXNSMILES + description: RXNSMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) + - id: missing_component + type: text + description: masked element +license: MIT +links: + - url: https://doi.org/10.1126/science.aar5169 + description: corresponding publication + - url: https://www.sciencedirect.com/science/article/pii/S2451929420300851 + description: publication with data processing + - url: https://github.com/rxn4chemistry/rxn_yields/blob/master/rxn_yields/data.py + description: preprocessing + - url: https://github.com/reymond-group/drfp/tree/main/data + description: dataset +num_points: 3955 +url: https://doi.org/10.1126/science.aar5169 +bibtex: + - |- + @article{ahneman2018predicting, + title={Predicting reaction performance in C--N cross-coupling using machine learning}, + author={Ahneman, Derek T and Estrada, Jes{'u}s G and Lin, Shishi and Dreher, Spencer D and Doyle, Abigail G}, + journal={Science}, + volume={360}, + number={6385}, + pages={186--190}, + year={2018}, + publisher={American Association for the Advancement of Science}, + } +templates: + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {educt_string__names__noun} {educt_string#} and the {product_string__names__noun} {product_string#}. + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {product_string__names__noun} {product_string#} and the {educt_string__names__noun} {educt_string#}. + - The masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#} is {missing_component#}. + - The {#chemical|compound!} with SMILES {missing_component#} is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}. + - |- + Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} the {product_string__names__noun} {product_string#}? + Answer: {educt_string#}. + - |- + Question: {#What|Which!} {product_string__names__noun} are produced from the {educt_string__names__noun} {educt_string#}? + Answer: {product_string#}. + - |- + User: I {#want|would like to|must|need to!} {#synthesize|produce!} the {product_string__names__noun} {product_string#}. + Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? + User: {#Yes, |!}I would like to know the {educt_string__names__noun} I need to produce the {product_string__names__noun} {product_string#}. + Assistant: {#I recommend|I suggest|I propose|I advise!} the following {educt_string__names__noun}: {educt_string#}. + - |- + Question: What is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}? + Answer: {missing_component#}. + - |- + Task: Predict the masked component in a {masked_rxn_smiles__names__noun}. + Description: {masked_rxn_smiles#} + {#Answer|Solution!}: {missing_component#} + - The {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is {yield#}{yield__units}. + - |- + User: {#I need|I want|I would like!} to run a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}. What is the {yield__names__noun} {#I can expect|I should expect|I should get|I can get!}? + Assistant: {#The|The expected|The predicted|The estimated!} {yield__names__noun} is {yield#}{yield__units}. + + - |- + Question: {#What is|What's|What is the|What's the!} {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}? + Answer: {yield#}{yield__units}. diff --git a/data/tabular/buchwald_hartwig/transform.py b/data/tabular/buchwald_hartwig/transform.py new file mode 100644 index 000000000..ab6c4e151 --- /dev/null +++ b/data/tabular/buchwald_hartwig/transform.py @@ -0,0 +1,148 @@ +import random +from copy import deepcopy + +import pandas as pd +from rdkit import Chem # 2022.9.5 +from rdkit.Chem import rdChemReactions +from rxn.chemutils.reaction_smiles import parse_any_reaction_smiles + + +def oxford_comma_join(elements): + try: + if len(elements) == 1: + return elements[0] + elif len(elements) == 2: + return " and ".join(elements) + else: + return ", ".join(elements[:-1]) + ", and " + elements[-1] + except Exception: + return None + + +def extract_reaction_info(equation_string): + try: + # First, either pick from reactants or products + # then pick a random element from the chosen side + # then replace it with a mask and return the new equation as + # well as the element that was replaced + # return equation, replaced_element + equation = equation_string + std = deepcopy(equation) + type_of_list = ["educts", "products"] + type_of_list = random.choice(type_of_list) + if type_of_list == "educts": + list_of_elements = equation.reactants + else: + list_of_elements = equation.products + element = random.choice(list_of_elements) + replaced_element = element + # remove the element from the list + list_of_elements.remove(element) + # replace it with a mask + list_of_elements.append("MASK") + # return the new equation as well as the element that was replaced + if type_of_list == "educts": + equation.reactants = list_of_elements + else: + equation.products = list_of_elements + + reaction = { + "educts": std.reactants, + "products": std.products, + "canonical_rxn_smiles": std.to_string(), + "masked_rxn_smiles": equation.to_string(), + "missing_component": replaced_element, + "rxn_smiles": equation_string, + "educt_string": oxford_comma_join([str(x) for x in std.reactants]), + "product_string": oxford_comma_join([str(x) for x in std.products]), + } + except Exception as e: + print(e) + return { + "educts": None, + "products": None, + "canonical_rxn_smiles": None, + "masked_rxn_smiles": None, + "missing_component": None, + "rxn_smiles": equation_string, + "educt_string": None, + "product_string": None, + } + return reaction + + +def generate_buchwald_hartwig_rxns(df): + """ + Converts the entries in the excel files to reaction SMILES. + From: https://github.com/reymond-group/drfp/blob/main/scripts/encoding/encode_buchwald_hartwig_reactions.py + and https://github.com/rxn4chemistry/rxn_yields/blob/master/rxn_yields/data.py + """ + df = df.copy() + fwd_template = "[F,Cl,Br,I]-[c;H0;D3;+0:1](:[c,n:2]):[c,n:3].[NH2;D1;+0:4]-[c:5]>>[c,n:2]:[c;H0;D3;+0:1](:[c,n:3])-[NH;D2;+0:4]-[c:5]" # noqa + methylaniline = "Cc1ccc(N)cc1" + pd_catalyst = "O=S(=O)(O[Pd]1~[NH2]C2C=CC=CC=2C2C=CC=CC1=2)C(F)(F)F" + methylaniline_mol = Chem.MolFromSmiles(methylaniline) + rxn = rdChemReactions.ReactionFromSmarts(fwd_template) + products = [] + + for _i, row in df.iterrows(): + reacts = (Chem.MolFromSmiles(row["aryl_halide"]), methylaniline_mol) + rxn_products = rxn.RunReactants(reacts) + + rxn_products_smiles = set([Chem.MolToSmiles(mol[0]) for mol in rxn_products]) + assert len(rxn_products_smiles) == 1 + products.append(list(rxn_products_smiles)[0]) + + df["product"] = products + rxns = [] + + for _i, row in df.iterrows(): + reactants = Chem.MolToSmiles( + Chem.MolFromSmiles( + f"{row['aryl_halide']}.{methylaniline}.{pd_catalyst}.{row['ligand']}.{row['base']}.{row['additive']}" + ) + ) + rxns.append(f"{reactants.replace('N~', '[NH2]')}>>{row['product']}") + + return rxns + + +def get_and_transform_data(): + # get raw data + fn_data_original = "Dreher_and_Doyle_input_data.csv" + data = pd.read_excel( + "https://github.com/reymond-group/drfp/raw/main/data/Dreher_and_Doyle_input_data.xlsx" + ) + data.to_csv(fn_data_original, index=False) + + # create dataframe + df = pd.read_csv( + fn_data_original, + delimiter=",", + ) # not necessary but ensure we can load the saved data + + # check if fields are the same + fields_orig = df.columns.tolist() + assert fields_orig == ["Ligand", "Additive", "Base", "Aryl halide", "Output"] + + # overwrite column names = fields + fields_clean = ["ligand", "additive", "base", "aryl_halide", "yield"] + df.columns = fields_clean + + # data cleaning + reaction_SMILES = generate_buchwald_hartwig_rxns(df) # compile reactions + df.insert(4, "reaction_SMILES", reaction_SMILES) # add reaction SMILES column + + df["RXNSMILES"] = df["reaction_SMILES"] + equation = df["RXNSMILES"].apply(parse_any_reaction_smiles) + results_from_rxn_equation = equation.apply(extract_reaction_info).tolist() + df_results_from_rxn_equation = pd.DataFrame(results_from_rxn_equation) + df = pd.concat([df, df_results_from_rxn_equation], axis=1) + + # save to csv + fn_data_csv = "data_clean.csv" + df.to_csv(fn_data_csv, index=False) + + +if __name__ == "__main__": + get_and_transform_data() diff --git a/data/tabular/suzuki_miyaura_sach/meta.yaml b/data/tabular/suzuki_miyaura_sach/meta.yaml new file mode 100644 index 000000000..73fc93925 --- /dev/null +++ b/data/tabular/suzuki_miyaura_sach/meta.yaml @@ -0,0 +1,102 @@ +--- +name: suzuki_miyaura_sach +description: |- + High-throughput experimentation palladium-catalyzed Suzuki-Miyaura C-C + cross-coupling data set with yields measured by liquid chromatography-mass-spectrometry. +targets: + - id: yield + description: Reaction yields analyzed by LCMS + units: \% + type: continuous + names: + - noun: reaction yield + - noun: yield + - noun: reaction yield (measured by LCMS) + - id: masked_rxn_smiles + type: text + description: reaction SMILES with one element masked + names: + - noun: reaction SMILES with one element masked as `MASK` + - noun: reaction SMILES with one element hidden as `MASK` + - noun: masked reaction SMILES (one component masked as `MASK`) + - noun: masked reaction SMILES string (one component masked as `MASK`) + - noun: masked RXNSMILES (one component masked as `MASK`) + - id: educt_string + type: text + description: reaction educts + names: + - noun: reaction educts + - noun: educts + - noun: starting materials + - id: product_string + type: text + description: reaction products + names: + - noun: reaction products + - noun: products +identifiers: + - id: RXNSMILES + type: RXNSMILES + description: RXNSMILES + names: + - noun: reaction SMILES + - noun: reaction SMILES string + - noun: RXNSMILES + - noun: reaction SMILES (RXNSMILES) + - id: missing_component + type: text + description: masked element +license: MIT +links: + - url: https://doi.org/10.1126/science.aap9112 + description: corresponding publication + - url: https://github.com/rxn4chemistry/rxn_yields/blob/master/rxn_yields/data.py + description: preprocessing + - url: https://github.com/reymond-group/drfp/tree/main/data + description: dataset +num_points: 5760 +url: https://doi.org/10.1126/science.aap9112 +bibtex: + - |- + @article{perera2018platform, + title={A platform for automated nanomole-scale reaction screening and micromole-scale synthesis in flow}, + author={Perera, Damith and Tucker, Joseph W and Brahmbhatt, Shalini and Helal, + Christopher J and Chong, Ashley and Farrell, William and Richardson, Paul and Sach, Neal W}, + journal={Science}, + volume={359}, + number={6374}, + pages={429--434}, + year={2018}, + publisher={American Association for the Advancement of Science}, + } +templates: + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {educt_string__names__noun} {educt_string#} and the {product_string__names__noun} {product_string#}. + - The {RXNSMILES__names__noun} {RXNSMILES#} has the {product_string__names__noun} {product_string#} and the {educt_string__names__noun} {educt_string#}. + - The masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#} is {missing_component#}. + - The {#chemical|compound!} with SMILES {missing_component#} is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}. + - |- + Question: {#What|Which!} {educt_string__names__noun} are {#needed|required!} to {#produce|synthesize!} the {product_string__names__noun} {product_string#}? + Answer: {educt_string#}. + - |- + Question: {#What|Which!} {product_string__names__noun} are produced from the {educt_string__names__noun} {educt_string#}? + Answer: {product_string#}. + - |- + User: I {#want|would like to|must|need to!} {#synthesize|produce!} the {product_string__names__noun} {product_string#}. + Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? + User: {#Yes, |!}I would like to know the {educt_string__names__noun} I need to produce the {product_string__names__noun} {product_string#}. + Assistant: {#I recommend|I suggest|I propose|I advise!} the following {educt_string__names__noun}: {educt_string#}. + - |- + Question: What is the masked component in the {masked_rxn_smiles__names__noun} {masked_rxn_smiles#}? + Answer: {missing_component#}. + - |- + Task: Predict the masked component in a {masked_rxn_smiles__names__noun}. + Description: {masked_rxn_smiles#} + {#Answer|Solution!}: {missing_component#} + - The {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is {yield#}{yield__units}. + - |- + User: {#I need|I want|I would like!} to run a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}. What is the {yield__names__noun} {#I can expect|I should expect|I should get|I can get!}? + Assistant: {#The|The expected|The predicted|The estimated!} {yield__names__noun} is {yield#}{yield__units}. + + - |- + Question: {#What is|What's|What is the|What's the!} {yield__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}? + Answer: {yield#}{yield__units}. diff --git a/data/tabular/suzuki_miyaura_sach/transform.py b/data/tabular/suzuki_miyaura_sach/transform.py new file mode 100644 index 000000000..f7220c51d --- /dev/null +++ b/data/tabular/suzuki_miyaura_sach/transform.py @@ -0,0 +1,224 @@ +import random + +import pandas as pd +from rdkit import Chem # 2022.9.5 +from rxn.chemutils.reaction_equation import rxn_standardization +from rxn.chemutils.reaction_smiles import parse_any_reaction_smiles + + +def oxford_comma_join(elements): + try: + if len(elements) == 1: + return elements[0] + elif len(elements) == 2: + return " and ".join(elements) + else: + return ", ".join(elements[:-1]) + ", and " + elements[-1] + except Exception: + return None + + +def extract_reaction_info(equation_string): + # First, either pick from reactants or products + # then pick a random element from the chosen side + # then replace it with a mask and return the new equation as + # well as the element that was replaced + # return equation, replaced_element + equation = rxn_standardization(equation_string) + std = rxn_standardization(equation) + type_of_list = ["educts", "products"] + type_of_list = random.choice(type_of_list) + if type_of_list == "educts": + list_of_elements = equation.reactants + else: + list_of_elements = equation.products + element = random.choice(list_of_elements) + replaced_element = element + # remove the element from the list + list_of_elements.remove(element) + # replace it with a mask + list_of_elements.append("MASK") + # return the new equation as well as the element that was replaced + if type_of_list == "educts": + equation.reactants = list_of_elements + else: + equation.products = list_of_elements + + reaction = { + "educts": std.reactants, + "products": std.products, + "canonical_rxn_smiles": std.to_string(), + "masked_rxn_smiles": equation.to_string(), + "missing_component": replaced_element, + "rxn_smiles": equation_string, + "educt_string": oxford_comma_join([str(x) for x in std.reactants]), + "product_string": oxford_comma_join([str(x) for x in std.products]), + } + + return reaction + + +reactant_1_smiles_dict = { + "6-chloroquinoline": "C1=C(Cl)C=CC2=NC=CC=C12.CCC1=CC(=CC=C1)CC", + "6-Bromoquinoline": "C1=C(Br)C=CC2=NC=CC=C12.CCC1=CC(=CC=C1)CC", + "6-triflatequinoline": "C1C2C(=NC=CC=2)C=CC=1OS(C(F)(F)F)(=O)=O.CCC1=CC(=CC=C1)CC", + "6-Iodoquinoline": "C1=C(I)C=CC2=NC=CC=C12.CCC1=CC(=CC=C1)CC", + "6-quinoline-boronic acid hydrochloride": "C1C(B(O)O)=CC=C2N=CC=CC=12.Cl.O", + "Potassium quinoline-6-trifluoroborate": "[B-](C1=CC2=C(C=C1)N=CC=C2)(F)(F)F.[K+].O", + "6-Quinolineboronic acid pinacol ester": "B1(OC(C(O1)(C)C)(C)C)C2=CC3=C(C=C2)N=CC=C3.O", +} + +reactant_2_smiles_dict = { + "2a, Boronic Acid": "CC1=CC=C2C(C=NN2C3OCCCC3)=C1B(O)O", + "2b, Boronic Ester": "CC1=CC=C2C(C=NN2C3OCCCC3)=C1B4OC(C)(C)C(C)(C)O4", + "2c, Trifluoroborate": "CC1=CC=C2C(C=NN2C3OCCCC3)=C1[B-](F)(F)F.[K+]", + "2d, Bromide": "CC1=CC=C2C(C=NN2C3OCCCC3)=C1Br", +} + +catalyst_smiles_dict = {"Pd(OAc)2": "CC(=O)O~CC(=O)O~[Pd]"} + +ligand_smiles_dict = { + "P(tBu)3": "CC(C)(C)P(C(C)(C)C)C(C)(C)C", + "P(Ph)3 ": "c3c(P(c1ccccc1)c2ccccc2)cccc3", + "AmPhos": "CC(C)(C)P(C1=CC=C(C=C1)N(C)C)C(C)(C)C", + "P(Cy)3": "C1(CCCCC1)P(C2CCCCC2)C3CCCCC3", + "P(o-Tol)3": "CC1=CC=CC=C1P(C2=CC=CC=C2C)C3=CC=CC=C3C", + "CataCXium A": "CCCCP(C12CC3CC(C1)CC(C3)C2)C45CC6CC(C4)CC(C6)C5", + "SPhos": "COc1cccc(c1c2ccccc2P(C3CCCCC3)C4CCCCC4)OC", + "dtbpf": "CC(C)(C)P(C1=CC=C[CH]1)C(C)(C)C.CC(C)(C)P(C1=CC=C[CH]1)C(C)(C)C.[Fe]", + "XPhos": "P(c2ccccc2c1c(cc(cc1C(C)C)C(C)C)C(C)C)(C3CCCCC3)C4CCCCC4", + "dppf": "C1=CC=C(C=C1)P([C-]2C=CC=C2)C3=CC=CC=C3.C1=CC=C(C=C1)P([C-]2C=CC=C2)C3=CC=CC=C3.[Fe+2]", + "Xantphos": "O6c1c(cccc1P(c2ccccc2)c3ccccc3)C(c7cccc(P(c4ccccc4)c5ccccc5)c67)(C)C", + "None": "", +} + +reagent_1_smiles_dict = { + "NaOH": "[OH-].[Na+]", + "NaHCO3": "[Na+].OC([O-])=O", + "CsF": "[F-].[Cs+]", + "K3PO4": "[K+].[K+].[K+].[O-]P([O-])([O-])=O", + "KOH": "[K+].[OH-]", + "LiOtBu": "[Li+].[O-]C(C)(C)C", + "Et3N": "CCN(CC)CC", + "None": "", +} + +solvent_1_smiles_dict = { + "MeCN": "CC#N.O", + "THF": "C1CCOC1.O", + "DMF": "CN(C)C=O.O", + "MeOH": "CO.O", + "MeOH/H2O_V2 9:1": "CO.O", + "THF_V2": "C1CCOC1.O", +} + + +def canonicalize_smiles(smi): + mol = Chem.MolFromSmiles(smi) + if mol is not None: + return Chem.MolToSmiles(mol) + return "" + + +def make_reaction_smiles(row): + precursors = f" {row['reactant1_SMILES']}.{row['reactant2_SMILES']}.{row['catalyst_SMILES']}.{row['ligand_SMILES']}.{row['reagent_SMILES']}.{row['solvent_SMILES']} " # noqa + product = "C1=C(C2=C(C)C=CC3N(C4OCCCC4)N=CC2=3)C=CC2=NC=CC=C12" + # print(precursors, product) + can_precursors = Chem.MolToSmiles( + Chem.MolFromSmiles( + precursors.replace("...", ".") + .replace("..", ".") + .replace(" .", "") + .replace(". ", "") + .replace(" ", "") + ) + ) + can_product = Chem.MolToSmiles(Chem.MolFromSmiles(product)) + + return f"{can_precursors}>>{can_product}" + + +def add_molecules_and_rxn_smiles_to_df(df): + df["reactant1_SMILES"] = df.Reactant_1_Name.apply( + lambda molecule: canonicalize_smiles(reactant_1_smiles_dict[molecule]) + ) + df["reactant2_SMILES"] = df.Reactant_2_Name.apply( + lambda molecule: canonicalize_smiles(reactant_2_smiles_dict[molecule]) + ) + df["catalyst_SMILES"] = df.Catalyst_1_Short_Hand.apply( + lambda molecule: canonicalize_smiles(catalyst_smiles_dict[molecule]) + ) + df["ligand_SMILES"] = df.Ligand_Short_Hand.apply( + lambda molecule: canonicalize_smiles(ligand_smiles_dict[molecule]) + ) + df["reagent_SMILES"] = df.Reagent_1_Short_Hand.apply( + lambda molecule: canonicalize_smiles(reagent_1_smiles_dict[molecule]) + ) + df["solvent_SMILES"] = df.Solvent_1_Short_Hand.apply( + lambda molecule: canonicalize_smiles(solvent_1_smiles_dict[molecule]) + ) + + df["RXNSMILES"] = df.apply(lambda row: make_reaction_smiles(row), axis=1) + + equation = df["RXNSMILES"].apply(parse_any_reaction_smiles) + results_from_rxn_equation = equation.apply(extract_reaction_info).tolist() + df_results_from_rxn_equation = pd.DataFrame(results_from_rxn_equation) + df = pd.concat([df, df_results_from_rxn_equation], axis=1) + + return df + + +def get_and_transform_data(): + # get raw data + fn_data_original = "Richardson_and_Sach_input_data.csv" + data = pd.read_excel( + "https://github.com/reymond-group/drfp/raw/main/data/Suzuki-Miyaura/aap9112_Data_File_S1.xlsx" + ) + data.to_csv(fn_data_original, index=False) + df = pd.read_csv(fn_data_original, delimiter=",") + + # check if fields are the same + fields_orig = df.columns.tolist() + assert fields_orig == [ + "Reaction_No", + "Reactant_1_Name", + "Reactant_1_Short_Hand", + "Reactant_1_eq", + "Reactant_1_mmol", + "Reactant_2_Name", + "Reactant_2_eq", + "Catalyst_1_Short_Hand", + "Catalyst_1_eq", + "Ligand_Short_Hand", + "Ligand_eq", + "Reagent_1_Short_Hand", + "Reagent_1_eq", + "Solvent_1_Short_Hand", + "Product_Yield_PCT_Area_UV", + "Product_Yield_Mass_Ion_Count", + ] + + # data cleaning + df = add_molecules_and_rxn_smiles_to_df(df) + + # save to csv + fn_data_csv = "data_clean.csv" + df.dropna( + subset=[ + "RXNSMILES", + "educt_string", + "product_string", + "missing_component", + "masked_rxn_smiles", + ], + inplace=True, + ) + df = df[df["masked_rxn_smiles"].str.contains("MASK")] + df.rename(columns={"Product_Yield_PCT_Area_UV": "yield"}, inplace=True) + assert len(df["RXNSMILES"].unique()) == len(df) + print(len(df)) + df.to_csv(fn_data_csv, index=False) + + +if __name__ == "__main__": + get_and_transform_data() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index a434acf88..0543b7075 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -992,8 +992,8 @@ def apply_sampling_and_export( # path_data_dir = path_data_dir[index:] for path in path_data_dir: - # if "qm8" not in path: - # continue + # if "suzuki_miyaura_sach" not in path: + # continue # subselect one path # if path.find("data/tabular/") == -1: continue # if path.find("data/kg/") == -1: continue From 57dfdcec3cba1be4f532c8807d96bf77d9f71c9f Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:31:57 +0100 Subject: [PATCH 11/61] fix: mp description (#468) --- data/tabular/mp_self_supervised/meta.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/data/tabular/mp_self_supervised/meta.yaml b/data/tabular/mp_self_supervised/meta.yaml index 92f39c18d..e46bbb23c 100644 --- a/data/tabular/mp_self_supervised/meta.yaml +++ b/data/tabular/mp_self_supervised/meta.yaml @@ -1,11 +1,7 @@ --- name: mp_self_supervised description: |- - QM9 is a comprehensive dataset that provides geometric, energetic, - electronic and thermodynamic properties for a subset of GDB-17 - database, comprising 134 thousand stable organic molecules with up - to 9 heavy atoms. All molecules are modeled using density - functional theory (B3LYP/6-31G(2df,p) based DFT). + The materials project is a dabase of computed properties of materials. targets: - id: density description: Density of the material From f1c0a658e9851d334855a11e4402a4ba7b9c8ef0 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:36:16 +0100 Subject: [PATCH 12/61] feat: add NER tasks (#460) Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> --- data/tabular/bc5chem/meta.yaml | 55 +++++++++++++ data/tabular/bc5chem/transform.py | 40 ++++++++++ data/tabular/bc5disease/meta.yaml | 55 +++++++++++++ data/tabular/bc5disease/transform.py | 40 ++++++++++ data/tabular/bio_ner/meta.yaml | 12 ++- data/tabular/bio_ner/transform.py | 3 + data/tabular/chemdner/meta.yaml | 97 +++++++++++++++++++++++ data/tabular/chemdner/transform.py | 27 +++++++ data/tabular/ncbi_disease/meta.yaml | 55 +++++++++++++ data/tabular/ncbi_disease/transform.py | 40 ++++++++++ pyproject.toml | 1 + src/chemnlp/data/ner.py | 103 +++++++++++++++++++++++++ src/chemnlp/data/utils.py | 10 +++ tests/test_ner.py | 70 +++++++++++++++++ 14 files changed, 601 insertions(+), 7 deletions(-) create mode 100644 data/tabular/bc5chem/meta.yaml create mode 100644 data/tabular/bc5chem/transform.py create mode 100644 data/tabular/bc5disease/meta.yaml create mode 100644 data/tabular/bc5disease/transform.py create mode 100644 data/tabular/chemdner/meta.yaml create mode 100644 data/tabular/chemdner/transform.py create mode 100644 data/tabular/ncbi_disease/meta.yaml create mode 100644 data/tabular/ncbi_disease/transform.py create mode 100644 src/chemnlp/data/ner.py create mode 100644 tests/test_ner.py diff --git a/data/tabular/bc5chem/meta.yaml b/data/tabular/bc5chem/meta.yaml new file mode 100644 index 000000000..7e5ac8f91 --- /dev/null +++ b/data/tabular/bc5chem/meta.yaml @@ -0,0 +1,55 @@ +--- +name: bc5chem +description: |- + BC5CHEM is a named entity recognition dataset for chemical mentions. +targets: + - id: matched_words + description: matched words + type: text + names: + - noun: entity + - noun: matched entity +identifiers: + - id: sentence + description: Sentence + type: text + names: + - noun: sentence + - noun: text +license: https://huggingface.co/datasets/bigbio/blurb/blob/main/LICENSE +links: + - url: https://huggingface.co/datasets/bigbio/blurb + description: original dataset +benchmarks: + - name: bc5chem + link: hhttps://huggingface.co/datasets/bigbio/blurb + split_column: split +num_points: 13755 +bibtex: + - |- + @article{gu2021domain, + title = { + Domain-specific language model pretraining for biomedical natural + language processing + }, + author = { + Gu, Yu and Tinn, Robert and Cheng, Hao and Lucas, Michael and + Usuyama, Naoto and Liu, Xiaodong and Naumann, Tristan and Gao, + Jianfeng and Poon, Hoifung + }, + year = 2021, + journal = {ACM Transactions on Computing for Healthcare (HEALTH)}, + publisher = {ACM New York, NY}, + volume = 3, + number = 1, + pages = {1--23} + } +templates: + - |- + Task: Find all the mentions of {#chemicals|chemical compounds|chemical substances!} in the {#following|subsequent!} {#text|sentence!}. Return the matching {#words|entities!}. If there is no {#match|mention of a chemical|matching entity!}, return `no match`. + {#Sentence|Description!}: {sentence#} + Answer: {matched_words#} + - |- + User: Does the following text contain mentions of {#chemicals|chemical compounds|chemical substances!}?{# Can you return matches?| Can you output matches?|Please return matches!} + {#Text: |!}{sentence#} + Assistant: {#I found|There is!} {matched_words#}. diff --git a/data/tabular/bc5chem/transform.py b/data/tabular/bc5chem/transform.py new file mode 100644 index 000000000..891aa9a24 --- /dev/null +++ b/data/tabular/bc5chem/transform.py @@ -0,0 +1,40 @@ +import pandas as pd +from datasets import load_dataset + +from chemnlp.data.ner import group_tokens_by_labels, punctuation_joiner +from chemnlp.data.utils import oxford_comma_join + + +def process(): + # tokenized at whitespaces and punctuations + dataset = load_dataset("bigbio/blurb", "bc5chem") + dfs = [] + for split in ["train", "validation", "test"]: + df_ = dataset[split].to_pandas() + df_["split"] = split + dfs.append(df_) + df = pd.concat(dfs) + ner_labels = df["ner_tags"] + + matched_words = [] + for tokens, ner_label in zip(df["tokens"], ner_labels): + words = group_tokens_by_labels(tokens, ner_label) + if len(words) == 0: + matched_words.append("no match") + else: + matched_words.append(oxford_comma_join(words)) + + df["matched_words"] = matched_words + df["sentence"] = df["tokens"].apply(punctuation_joiner) + + df = df[["sentence", "matched_words"]] + + # ensure we have at least 5 words in a sentence + df = df[df["sentence"].apply(lambda x: len(x.split()) >= 5)] + + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/bc5disease/meta.yaml b/data/tabular/bc5disease/meta.yaml new file mode 100644 index 000000000..02491b3ab --- /dev/null +++ b/data/tabular/bc5disease/meta.yaml @@ -0,0 +1,55 @@ +--- +name: bc5disease +description: |- + BC5Disease is a named entity recognition dataset for disease mentions. +targets: + - id: matched_words + description: matched words + type: text + names: + - noun: entity + - noun: matched entity +identifiers: + - id: sentence + description: Sentence + type: text + names: + - noun: sentence + - noun: text +license: https://huggingface.co/datasets/bigbio/blurb/blob/main/LICENSE +links: + - url: https://huggingface.co/datasets/bigbio/blurb + description: original dataset +benchmarks: + - name: bc5chem + link: hhttps://huggingface.co/datasets/bigbio/blurb + split_column: split +num_points: 13755 +bibtex: + - |- + @article{gu2021domain, + title = { + Domain-specific language model pretraining for biomedical natural + language processing + }, + author = { + Gu, Yu and Tinn, Robert and Cheng, Hao and Lucas, Michael and + Usuyama, Naoto and Liu, Xiaodong and Naumann, Tristan and Gao, + Jianfeng and Poon, Hoifung + }, + year = 2021, + journal = {ACM Transactions on Computing for Healthcare (HEALTH)}, + publisher = {ACM New York, NY}, + volume = 3, + number = 1, + pages = {1--23} + } +templates: + - |- + Task: Find all the mentions of diseases in the {#following|subsequent!} {#text|sentence!}. Return the matching {#words|entities!}. If there is no {#match|mention of a disease|matching entity!}, return `no match`. + {#Sentence|Description!}: {sentence#} + Answer: {matched_words#} + - |- + User: Does the following text contain mentions of diseases?{# Can you return matches?| Can you output matches?|Please return matches!} + {#Text: |!}{sentence#} + Assistant: {#I found|There is!} {matched_words#}. diff --git a/data/tabular/bc5disease/transform.py b/data/tabular/bc5disease/transform.py new file mode 100644 index 000000000..59a6cf7f5 --- /dev/null +++ b/data/tabular/bc5disease/transform.py @@ -0,0 +1,40 @@ +import pandas as pd +from datasets import load_dataset + +from chemnlp.data.ner import group_tokens_by_labels, punctuation_joiner +from chemnlp.data.utils import oxford_comma_join + + +def process(): + # tokenized at whitespaces and punctuations + dataset = load_dataset("bigbio/blurb", "bc5disease") + dfs = [] + for split in ["train", "validation", "test"]: + df_ = dataset[split].to_pandas() + df_["split"] = split + dfs.append(df_) + df = pd.concat(dfs) + ner_labels = df["ner_tags"] + + matched_words = [] + for tokens, ner_label in zip(df["tokens"], ner_labels): + words = group_tokens_by_labels(tokens, ner_label) + if len(words) == 0: + matched_words.append("no match") + else: + matched_words.append(oxford_comma_join(words)) + + df["matched_words"] = matched_words + df["sentence"] = df["tokens"].apply(punctuation_joiner) + + df = df[["sentence", "matched_words"]] + + # ensure we have at least 5 words in a sentence + df = df[df["sentence"].apply(lambda x: len(x.split()) >= 5)] + + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/bio_ner/meta.yaml b/data/tabular/bio_ner/meta.yaml index 4386aea61..b076cc7c9 100644 --- a/data/tabular/bio_ner/meta.yaml +++ b/data/tabular/bio_ner/meta.yaml @@ -1,6 +1,6 @@ --- name: bio_ner -description: NER data. +description: NER task on bio-related text. identifiers: - id: Sentence description: Sentence @@ -19,16 +19,14 @@ targets: names: - noun: JSON output benchmarks: - - name: ??? - link: ??? + - name: bio_ner + link: https://github.com/ML4LitS/bio-datasets split_column: split -license: NEEDS TO BE DEFINED +license: unknown links: - url: https://github.com/ML4LitS/bio-datasets - description: ??? + description: original data source num_points: 144675 -bibtex: - - ??? templates: - |- Task: Please carry out the {#named entity recognition (NER)|named entity recognition|NER!} task for the the text below. diff --git a/data/tabular/bio_ner/transform.py b/data/tabular/bio_ner/transform.py index 87c8a2248..ab82c11e1 100644 --- a/data/tabular/bio_ner/transform.py +++ b/data/tabular/bio_ner/transform.py @@ -5,6 +5,8 @@ import pandas as pd import yaml +from chemnlp.data.ner import cleaner + # create meta yaml meta_template = { "name": None, @@ -97,6 +99,7 @@ def get_and_transform_data(): ) os.makedirs(path_export, exist_ok=True) + df["Sentence"] = df["Sentence"].apply(cleaner) fn_data_clean = path_export + "/data_clean.csv" df.to_csv(fn_data_clean, index=False) diff --git a/data/tabular/chemdner/meta.yaml b/data/tabular/chemdner/meta.yaml new file mode 100644 index 000000000..cea39af6c --- /dev/null +++ b/data/tabular/chemdner/meta.yaml @@ -0,0 +1,97 @@ +--- +name: chemdner +description: |- + The CHEMDNER corpus comprises 10,000 PubMed abstracts, which have been meticulously annotated by expert chemistry literature curators according to task-specific guidelines, identifying a total of 84,355 mentions of chemical entities. The CHEMDNER corpus is a collection of 10,000 PubMed abstracts that contain a total of 84,355 chemical entity mentions labeled manually by expert chemistry literature curators, following annotation guidelines specifically defined for this task. +targets: + - id: matched_words + description: matched words + type: text + names: + - noun: entity + - noun: matched entity +identifiers: + - id: sentence + description: Sentence + type: text + names: + - noun: sentence + - noun: text +license: unknown +links: + - url: https://huggingface.co/datasets/bigbio/chemdner + description: original dataset +benchmarks: + - name: chemdner + link: hhttps://huggingface.co/datasets/bigbio/blurb + split_column: split +num_points: 19440 +bibtex: + - |- + @article{Krallinger2015, + title = {The CHEMDNER corpus of chemicals and drugs and its annotation principles}, + author = { + Krallinger, Martin and Rabal, Obdulia and Leitner, Florian and Vazquez, + Miguel and Salgado, David and Lu, Zhiyong and Leaman, Robert and Lu, Yanan + and Ji, Donghong and Lowe, Daniel M. and Sayle, Roger A. and + Batista-Navarro, Riza Theresa and Rak, Rafal and Huber, Torsten and + Rockt{"a}schel, Tim and Matos, S{'e}rgio and Campos, David and Tang, + Buzhou and Xu, Hua and Munkhdalai, Tsendsuren and Ryu, Keun Ho and Ramanan, + S. V. and Nathan, Senthil and {{Z}}itnik, Slavko and Bajec, Marko and + Weber, Lutz and Irmer, Matthias and Akhondi, Saber A. and Kors, Jan A. and + Xu, Shuo and An, Xin and Sikdar, Utpal Kumar and Ekbal, Asif and Yoshioka, + Masaharu and Dieb, Thaer M. and Choi, Miji and Verspoor, Karin and Khabsa, + Madian and Giles, C. Lee and Liu, Hongfang and Ravikumar, Komandur + Elayavilli and Lamurias, Andre and Couto, Francisco M. and Dai, Hong-Jie + and Tsai, Richard Tzong-Han and Ata, Caglar and Can, Tolga and Usi{'e}, + Anabel and Alves, Rui and Segura-Bedmar, Isabel and Mart{'i}nez, Paloma + and Oyarzabal, Julen and Valencia, Alfonso + }, + year = 2015, + month = {Jan}, + day = 19, + journal = {Journal of Cheminformatics}, + volume = 7, + number = 1, + pages = {S2}, + doi = {10.1186/1758-2946-7-S1-S2}, + issn = {1758-2946}, + url = {https://doi.org/10.1186/1758-2946-7-S1-S2}, + abstract = { + The automatic extraction of chemical information from text requires the + recognition of chemical entity mentions as one of its key steps. When + developing supervised named entity recognition (NER) systems, the + availability of a large, manually annotated text corpus is desirable. + Furthermore, large corpora permit the robust evaluation and comparison of + different approaches that detect chemicals in documents. We present the + CHEMDNER corpus, a collection of 10,000 PubMed abstracts that contain a + total of 84,355 chemical entity mentions labeled manually by expert + chemistry literature curators, following annotation guidelines specifically + defined for this task. The abstracts of the CHEMDNER corpus were selected + to be representative for all major chemical disciplines. Each of the + chemical entity mentions was manually labeled according to its + structure-associated chemical entity mention (SACEM) class: abbreviation, + family, formula, identifier, multiple, systematic and trivial. The + difficulty and consistency of tagging chemicals in text was measured using + an agreement study between annotators, obtaining a percentage agreement of + 91. For a subset of the CHEMDNER corpus (the test set of 3,000 abstracts) + we provide not only the Gold Standard manual annotations, but also mentions + automatically detected by the 26 teams that participated in the BioCreative + IV CHEMDNER chemical mention recognition task. In addition, we release the + CHEMDNER silver standard corpus of automatically extracted mentions from + 17,000 randomly selected PubMed abstracts. A version of the CHEMDNER corpus + in the BioC format has been generated as well. We propose a standard for + required minimum information about entity annotations for the construction + of domain specific corpora on chemical and drug entities. The CHEMDNER + corpus and annotation guidelines are available at: + ttp://www.biocreative.org/resources/biocreative-iv/chemdner-corpus/ + } + } +templates: + - |- + Task: Find all the mentions of {#chemicals|chemical compounds|chemical substances!} in the {#following|subsequent!} {#text|sentence!}. Return the matching {#words|entities!}. If there is no {#match|mention of a chemical|matching entity!}, return `no match`. + {#Sentence|Description!}: {sentence#} + Answer: {matched_words#} + - |- + User: Does the following text contain mentions of {#chemicals|chemical compounds|chemical substances!}?{# Can you return matches?| Can you output matches?|Please return matches!} + {#Text: |!}{sentence#} + Assistant: {#I found|There is!} {matched_words#}. diff --git a/data/tabular/chemdner/transform.py b/data/tabular/chemdner/transform.py new file mode 100644 index 000000000..824750a77 --- /dev/null +++ b/data/tabular/chemdner/transform.py @@ -0,0 +1,27 @@ +from datasets import load_dataset + +from chemnlp.data.utils import oxford_comma_join + + +def process(): + dataset = load_dataset("kjappelbaum/chemnlp-chemdner") + df = dataset["train"].to_pandas() + + matched_words = [] + for ent in df["entities"]: + if len(ent) == 0: + matched_words.append("no match") + else: + matched_words.append(oxford_comma_join(ent)) + + df["matched_words"] = matched_words + df["sentence"] = df["text"] + + print(len(df)) + + df = df[["sentence", "matched_words"]] + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/tabular/ncbi_disease/meta.yaml b/data/tabular/ncbi_disease/meta.yaml new file mode 100644 index 000000000..8cd0a7692 --- /dev/null +++ b/data/tabular/ncbi_disease/meta.yaml @@ -0,0 +1,55 @@ +--- +name: ncbi_disease +description: |- + ncbi_disease is a named entity recognition dataset for disease mentions. +targets: + - id: matched_words + description: matched words + type: text + names: + - noun: entity + - noun: matched entity +identifiers: + - id: sentence + description: Sentence + type: text + names: + - noun: sentence + - noun: text +license: https://huggingface.co/datasets/bigbio/blurb/blob/main/LICENSE +links: + - url: https://huggingface.co/datasets/bigbio/blurb + description: original dataset +benchmarks: + - name: ncbi_disease + link: hhttps://huggingface.co/datasets/bigbio/blurb + split_column: split +num_points: 7075 +bibtex: + - |- + @article{gu2021domain, + title = { + Domain-specific language model pretraining for biomedical natural + language processing + }, + author = { + Gu, Yu and Tinn, Robert and Cheng, Hao and Lucas, Michael and + Usuyama, Naoto and Liu, Xiaodong and Naumann, Tristan and Gao, + Jianfeng and Poon, Hoifung + }, + year = 2021, + journal = {ACM Transactions on Computing for Healthcare (HEALTH)}, + publisher = {ACM New York, NY}, + volume = 3, + number = 1, + pages = {1--23} + } +templates: + - |- + Task: Find all the mentions of diseases in the {#following|subsequent!} {#text|sentence!}. Return the matching {#words|entities!}. If there is no {#match|mention of a disease|matching entity!}, return `no match`. + {#Sentence|Description!}: {sentence#} + Answer: {matched_words#} + - |- + User: Does the following text contain mentions of diseases?{# Can you return matches?| Can you output matches?!} + {#Text: |!}{sentence#} + Assistant: {#I found|There is!} {matched_words#} diff --git a/data/tabular/ncbi_disease/transform.py b/data/tabular/ncbi_disease/transform.py new file mode 100644 index 000000000..ffe05770c --- /dev/null +++ b/data/tabular/ncbi_disease/transform.py @@ -0,0 +1,40 @@ +import pandas as pd +from datasets import load_dataset + +from chemnlp.data.ner import group_tokens_by_labels, punctuation_joiner +from chemnlp.data.utils import oxford_comma_join + + +def process(): + # tokenized at whitespaces and punctuations + dataset = load_dataset("bigbio/blurb", "ncbi_disease") + dfs = [] + for split in ["train", "validation", "test"]: + df_ = dataset[split].to_pandas() + df_["split"] = split + dfs.append(df_) + df = pd.concat(dfs) + ner_labels = df["ner_tags"] + + matched_words = [] + for tokens, ner_label in zip(df["tokens"], ner_labels): + words = group_tokens_by_labels(tokens, ner_label) + if len(words) == 0: + matched_words.append("no match") + else: + matched_words.append(oxford_comma_join(words)) + + df["matched_words"] = matched_words + df["sentence"] = df["tokens"].apply(punctuation_joiner) + + df = df[["sentence", "matched_words"]] + + # ensure we have at least 5 words in a sentence + df = df[df["sentence"].apply(lambda x: len(x.split()) >= 5)] + + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/pyproject.toml b/pyproject.toml index 96c3c1f14..a56df7aee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ dataset_creation = [ "selfies", "deepsmiles", "pubchempy", + "bioc", "canonicalize_psmiles@git+https://github.com/Ramprasad-Group/canonicalize_psmiles.git", #"tucan@git+https://github.com/TUCAN-nest/TUCAN.git" # the current version has bugs due to the type checking, maybe this is due to our python version? "rxn-chem-utils" diff --git a/src/chemnlp/data/ner.py b/src/chemnlp/data/ner.py new file mode 100644 index 000000000..9ab3821ae --- /dev/null +++ b/src/chemnlp/data/ner.py @@ -0,0 +1,103 @@ +import re + + +def group_tokens_by_labels(tokens, labels, join=True): + grouped_tokens = [] + current_group = [] + + for token, label in zip(tokens, labels): + if label == 1: + if current_group: + if join: + current_group = punctuation_joiner(current_group) + grouped_tokens.append(current_group) + else: + grouped_tokens.append(current_group) + current_group = [token] + elif label == 2 and current_group: + current_group.append(token) + + if current_group: + if join: + current_group = punctuation_joiner(current_group) + grouped_tokens.append(current_group) + else: + grouped_tokens.append(current_group) + + return list(set(grouped_tokens)) + + +def punctuation_joiner(tokens): + # join tokens with spaces + joined = " ".join(tokens) + joined = cleaner(joined) + return joined + + +def cleaner(string): + # join tokens with spaces and then remove space that should not be there + # spaces that should not be there are: + # 1. space before punctuation + # 2. space after left parenthesis, including square and curly brackets + # 3. space before right parenthesis, including square and curly brackets + # 4. space before hyphen + # 5. space after hyphen + # 6. space before colon + # 7. space between numbers separated by dots + # 8. space between / and numbers or letters + # 9. space ' and letters + # 10. no space in + /- (e.g. 1+/-2) or + /- should be +/- + # 11. no space in front of + + # 12 no space after opening quote + # 13 no space before closing quote, e.g. "test " -> "test" + + # remove space before punctuation + joined = re.sub(r"\s([.,;!?])", r"\1", string) + + # remove space after left parenthesis + joined = re.sub(r"([(])\s", r"\1", joined) + + # remove space before right parenthesis + joined = re.sub(r"\s([)\]}])", r"\1", joined) + + # remove space before hyphen + joined = re.sub(r"\s(-)", r"\1", joined) + + # remove space after hyphen + joined = re.sub(r"(-)\s", r"\1", joined) + + # remove space before colon + joined = re.sub(r"\s(:)", r"\1", joined) + + # remove space between numbers separated by dots, e.g 1. 3 -> 1.3 or 1 . 3 -> 1.3 or 1 .3 -> 1.3 + joined = re.sub(r"(\d)\s(\.)\s(\d)", r"\1\2\3", joined) + joined = re.sub(r"(\d)\s(\.)(\d)", r"\1\2\3", joined) + joined = re.sub(r"(\d)(\.)\s(\d)", r"\1\2\3", joined) + + # remove space between / and numbers or letters, e.g. / 3 -> /3 or / 3.5 -> /3.5 or A/ B -> A/B or A /B -> A/B + joined = re.sub(r"([A-Za-z0-9])\s(/)\s([A-Za-z0-9])", r"\1\2\3", joined) + + # remove space between ' and letters, e.g. A' s -> A's or A 's -> A's or A ' s -> A's + joined = re.sub(r"([A-Za-z])\s(')\s([A-Za-z])", r"\1\2\3", joined) + + # remove space in + /- (e.g. 1+/-2) or + /- should be +/- + joined = re.sub(r"(\+|-)\s(/-)", r"\1\2", joined) + + # remove space in front of + + joined = re.sub(r"\s(\+)", r"\1", joined) + + # replace double quotes "" with " + joined = re.sub(r'""', '"', joined) + + # replace multiple spaces with single space + joined = re.sub(r"\s+", " ", joined) + + # remove spaces after the opening quote, make sure we have a closing quote + # i.e. the regex needs to match \"\s+(anything)" + joined = re.sub(r'"\s+(.+)"', r'"\1"', joined) + + # remove spaces before the closing quote, make sure we have an opening quote + # i.e. the regex needs to match "(anything)\s+" + joined = re.sub(r'"(.+)\s+"', r'"\1"', joined) + + return joined diff --git a/src/chemnlp/data/utils.py b/src/chemnlp/data/utils.py index 39e124d8a..69956e99c 100644 --- a/src/chemnlp/data/utils.py +++ b/src/chemnlp/data/utils.py @@ -159,3 +159,13 @@ def _pad_batched_data( "token_type_ids": [[0] * max_length] * len(padded_sequences_all), "attention_mask": attention_masks_all, } + + +def oxford_comma_join(items: List[str]) -> str: + """Join a list of items with Oxford comma""" + if len(items) == 1: + return items[0] + elif len(items) == 2: + return f"{items[0]} and {items[1]}" + else: + return ", ".join(items[:-1]) + f", and {items[-1]}" diff --git a/tests/test_ner.py b/tests/test_ner.py new file mode 100644 index 000000000..a72336bbc --- /dev/null +++ b/tests/test_ner.py @@ -0,0 +1,70 @@ +from chemnlp.data.ner import group_tokens_by_labels, punctuation_joiner + + +def test_tokens_by_label(): + tokens = ["a", "b", "c", "d", "e", "f"] + labels = [0, 1, 1, 0, 1, 0] + grouped_tokens = group_tokens_by_labels(tokens, labels, join=False) + assert grouped_tokens == [["b"], ["c"], ["e"]] + + labels = [0, 1, 2, 0, 1, 0] + grouped_tokens = group_tokens_by_labels(tokens, labels, join=False) + assert grouped_tokens == [["b", "c"], ["e"]] + + labels = [0, 1, 1, 0, 1, 0] + grouped_tokens = group_tokens_by_labels(tokens, labels, join=True) + assert grouped_tokens == ["b", "c", "e"] + + labels = [0, 1, 2, 0, 1, 0] + grouped_tokens = group_tokens_by_labels(tokens, labels, join=True) + assert grouped_tokens == ["b c", "e"] + + +def test_join_punctuation(): + token_list = [ + "This", + "is", + "a", + "list", + "of", + "tokens", + "with", + "2", + ".", + "5", + ",", + "and", + "3", + "numbers", + "intact", + "semi", + "-", + "colon", + "separated", + "words", + "with", + "decimal", + "numbers", + "split", + "at", + "dots", + ".", + "This", + "is", + "a", + "comma", + ",", + "and", + "a", + "dot", + "(", + "test", + ")", + ".", + ] + sentence = punctuation_joiner(token_list) + print(sentence) + assert ( + sentence + == "This is a list of tokens with 2.5, and 3 numbers intact semi-colon separated words with decimal numbers split at dots. This is a comma, and a dot (test)." # noqa + ) From 94dacf95245d2c00129ee29e59aadecfe887781d Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:36:51 +0100 Subject: [PATCH 13/61] add mol2svg (#469) --- data/tabular/mol2svg/meta.yaml | 25 +++++++++++++++++++++++++ data/tabular/mol2svg/transform.py | 13 +++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 data/tabular/mol2svg/meta.yaml create mode 100644 data/tabular/mol2svg/transform.py diff --git a/data/tabular/mol2svg/meta.yaml b/data/tabular/mol2svg/meta.yaml new file mode 100644 index 000000000..840134303 --- /dev/null +++ b/data/tabular/mol2svg/meta.yaml @@ -0,0 +1,25 @@ +--- +name: chem_caption_smarts +description: |- + This dataset contains SVG images of molecules, including some with substructures + highlighted. +targets: + - id: completion + type: text + description: completion +identifiers: + - id: prompt + type: text + description: prompt + - id: smiles + type: SMILES + description: SMILES +license: CC BY 4.0 +num_points: 16019 +links: + - url: https://github.com/lamalab-org/chem-caption + description: Original codebase used to generate this dataset +templates: + - |- + {prompt#} + {completion#} diff --git a/data/tabular/mol2svg/transform.py b/data/tabular/mol2svg/transform.py new file mode 100644 index 000000000..b7969fbe2 --- /dev/null +++ b/data/tabular/mol2svg/transform.py @@ -0,0 +1,13 @@ +from datasets import load_dataset + + +def preprocess(): + dataset = load_dataset("kjappelbaum/chemnlp-mol-svg") + df = dataset["train"].to_pandas() + df.dropna(inplace=True) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + preprocess() From 658378504a1242853e328d0281dde00b7cd9aa87 Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Wed, 1 Nov 2023 18:03:32 +0100 Subject: [PATCH 14/61] Migrate data to ChemNLP HF (#462) --- data/tabular/MUV_466/transform.py | 2 +- data/tabular/MUV_548/transform.py | 2 +- data/tabular/MUV_600/transform.py | 2 +- data/tabular/MUV_644/transform.py | 2 +- data/tabular/MUV_652/transform.py | 2 +- data/tabular/MUV_689/transform.py | 2 +- data/tabular/MUV_692/transform.py | 2 +- data/tabular/MUV_712/transform.py | 2 +- data/tabular/MUV_713/transform.py | 2 +- data/tabular/MUV_733/transform.py | 2 +- data/tabular/MUV_737/transform.py | 2 +- data/tabular/MUV_810/transform.py | 2 +- data/tabular/MUV_832/transform.py | 2 +- data/tabular/MUV_846/transform.py | 2 +- data/tabular/MUV_852/transform.py | 2 +- data/tabular/MUV_858/transform.py | 2 +- data/tabular/MUV_859/transform.py | 2 +- data/tabular/RedDB/transform.py | 5 ++--- data/tabular/bicerano_dataset/transform.py | 2 +- 19 files changed, 20 insertions(+), 21 deletions(-) diff --git a/data/tabular/MUV_466/transform.py b/data/tabular/MUV_466/transform.py index 657e86c4c..666a7dcc3 100644 --- a/data/tabular/MUV_466/transform.py +++ b/data/tabular/MUV_466/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_466/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_466/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_548/transform.py b/data/tabular/MUV_548/transform.py index 41d20e830..d7e17cc34 100644 --- a/data/tabular/MUV_548/transform.py +++ b/data/tabular/MUV_548/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_548/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_548/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_600/transform.py b/data/tabular/MUV_600/transform.py index 766aa6d2c..9ab65a92c 100644 --- a/data/tabular/MUV_600/transform.py +++ b/data/tabular/MUV_600/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_600/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_600/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_644/transform.py b/data/tabular/MUV_644/transform.py index 48f1a53d0..12e8f355a 100644 --- a/data/tabular/MUV_644/transform.py +++ b/data/tabular/MUV_644/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_644/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_644/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_652/transform.py b/data/tabular/MUV_652/transform.py index 7d4328d39..626733a34 100644 --- a/data/tabular/MUV_652/transform.py +++ b/data/tabular/MUV_652/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_652/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_652/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_689/transform.py b/data/tabular/MUV_689/transform.py index 2fe130550..58d16c330 100644 --- a/data/tabular/MUV_689/transform.py +++ b/data/tabular/MUV_689/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_689/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_689/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_692/transform.py b/data/tabular/MUV_692/transform.py index c66768126..2ddd685e2 100644 --- a/data/tabular/MUV_692/transform.py +++ b/data/tabular/MUV_692/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_692/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_692/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_712/transform.py b/data/tabular/MUV_712/transform.py index 9542efdde..ed8b0fdd7 100644 --- a/data/tabular/MUV_712/transform.py +++ b/data/tabular/MUV_712/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_712/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_712/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_713/transform.py b/data/tabular/MUV_713/transform.py index 0a1f53871..b5ef85ab0 100644 --- a/data/tabular/MUV_713/transform.py +++ b/data/tabular/MUV_713/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_713/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_713/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_733/transform.py b/data/tabular/MUV_733/transform.py index 5a6984fc8..ef1d85604 100644 --- a/data/tabular/MUV_733/transform.py +++ b/data/tabular/MUV_733/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_733/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_733/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_737/transform.py b/data/tabular/MUV_737/transform.py index b9b7ba264..0e4ca689e 100644 --- a/data/tabular/MUV_737/transform.py +++ b/data/tabular/MUV_737/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_737/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_737/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_810/transform.py b/data/tabular/MUV_810/transform.py index 48c1413b7..ccf427d5b 100644 --- a/data/tabular/MUV_810/transform.py +++ b/data/tabular/MUV_810/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_810/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_810/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_832/transform.py b/data/tabular/MUV_832/transform.py index cdd4fcd33..52b092599 100644 --- a/data/tabular/MUV_832/transform.py +++ b/data/tabular/MUV_832/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_832/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_832/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_846/transform.py b/data/tabular/MUV_846/transform.py index ab953bc97..448ff6021 100644 --- a/data/tabular/MUV_846/transform.py +++ b/data/tabular/MUV_846/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_846/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_846/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_852/transform.py b/data/tabular/MUV_852/transform.py index 051fc6154..8d9a6d187 100644 --- a/data/tabular/MUV_852/transform.py +++ b/data/tabular/MUV_852/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_852/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_852/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_858/transform.py b/data/tabular/MUV_858/transform.py index 28ab993f4..6b3ff6be2 100644 --- a/data/tabular/MUV_858/transform.py +++ b/data/tabular/MUV_858/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_858/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_858/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_859/transform.py b/data/tabular/MUV_859/transform.py index 6123dd576..a80a6f0af 100644 --- a/data/tabular/MUV_859/transform.py +++ b/data/tabular/MUV_859/transform.py @@ -3,7 +3,7 @@ def transform_data(): df = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/MUV/raw/main/MUV_859/data_clean.csv" + "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_859/data_clean.csv" ) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/RedDB/transform.py b/data/tabular/RedDB/transform.py index 990b61290..3714c399b 100644 --- a/data/tabular/RedDB/transform.py +++ b/data/tabular/RedDB/transform.py @@ -1,4 +1,3 @@ -import fire import pandas as pd import yaml from rdkit import Chem @@ -17,7 +16,7 @@ def is_valid_smiles(smiles: str) -> bool: def read_dataset(): hf_data = pd.read_csv( - "https://huggingface.co/datasets/AdrianM0/RedDB/resolve/main/RedDBv2.csv" + "https://huggingface.co/datasets/chemNLP/RedDB/raw/main/RedDBv2.csv" ) assert hf_data.SMILES.apply(is_valid_smiles).to_list() == [True] * len(hf_data) @@ -274,4 +273,4 @@ def str_presenter(dumper, data): if __name__ == "__main__": - fire.Fire(read_dataset) + read_dataset() diff --git a/data/tabular/bicerano_dataset/transform.py b/data/tabular/bicerano_dataset/transform.py index 69df0019d..410209a3f 100644 --- a/data/tabular/bicerano_dataset/transform.py +++ b/data/tabular/bicerano_dataset/transform.py @@ -3,7 +3,7 @@ def transform_data(): - url = "https://huggingface.co/datasets/AdrianM0/bicerano_polymers/raw/main/HT_MD_polymer_properties.csv" + url = "https://huggingface.co/datasets/chemNLP/bicerano_polymers/raw/main/HT_MD_polymer_properties.csv" original_data = pd.read_csv(url) clean_data = original_data.drop("sl_num", axis=1) From 4f036a1d812c5ee8aeef89d2291d550eb0296662 Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Wed, 1 Nov 2023 21:03:25 +0100 Subject: [PATCH 15/61] add SIDER (#438) Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Co-authored-by: Kevin Maik Jablonka --- data/tabular/SIDER/meta.yaml | 215 ++++++++++++++++++++++++++++++++ data/tabular/SIDER/transform.py | 153 +++++++++++++++++++++++ 2 files changed, 368 insertions(+) create mode 100644 data/tabular/SIDER/meta.yaml create mode 100644 data/tabular/SIDER/transform.py diff --git a/data/tabular/SIDER/meta.yaml b/data/tabular/SIDER/meta.yaml new file mode 100644 index 000000000..1472f3bfb --- /dev/null +++ b/data/tabular/SIDER/meta.yaml @@ -0,0 +1,215 @@ +--- +name: SIDER +description: Database of marketed drugs and adverse drug reactions (ADR), grouped into 23 system organ classes. +identifiers: + - id: SMILES + type: SMILES + description: SMILES +targets: + - id: hepatobiliary_disorders + description: hepatobiliary disorders + type: boolean + names: + - noun: hepatobiliary disorders + - noun: liver and gallbladder disorders + - id: metabolism_and_nutrition_disorders + description: metabolism and nutrition disorders + type: boolean + names: + - noun: metabolism and nutrition disorders + - noun: metabolic and nutritional disorders + - id: eye_disorders + description: eye disorders + type: boolean + names: + - noun: eye disorders + - noun: ophthalmic disorders + - id: musculoskeletal_and_connective_tissue_disorders + description: musculoskeletal and connective tissue disorders + type: boolean + names: + - noun: musculoskeletal and connective tissue disorders + - noun: muscle and joint disorders + - id: gastrointestinal_disorders + description: gastrointestinal disorders + type: boolean + names: + - noun: gastrointestinal disorders + - noun: digestive system disorders + - id: immune_system_disorders + description: immune system disorders + type: boolean + names: + - noun: immune system disorders + - noun: disorders of the immune system + - id: reproductive_system_and_breast_disorders + description: reproductive system and breast disorders + type: boolean + names: + - noun: reproductive system and breast disorders + - noun: disorders of the breasts and the reproductive system + - id: neoplasms_benign_malignant_and_unspecified_(incl_cysts_and_polyps) + description: neoplasms benign, malignant and unspecified (incl cysts and polyps) + type: boolean + names: + - noun: neoplasms benign, malignant and unspecified (incl cysts and polyps) + - noun: benign and malignant tumors (including cysts and polyps) + - id: general_disorders_and_administration_site_conditions + description: general disorders and administration site conditions + type: boolean + names: + - noun: general disorders and administration site conditions + - noun: general health and administration site conditions + - id: endocrine_disorders + description: endocrine disorders + type: boolean + names: + - noun: endocrine disorders + - noun: endocrine system disorders + - id: surgical_and_medical_procedures + description: surgical and medical procedures + type: boolean + names: + - noun: surgical and medical procedures + - noun: medical and surgical procedures + - id: vascular_disorders + description: vascular disorders + type: boolean + names: + - noun: vascular disorders + - noun: vascular system disorders + - id: blood_and_lymphatic_system_disorders + description: blood and lymphatic system disorders + type: boolean + names: + - noun: blood and lymphatic system disorders + - noun: disorders of the blood and lymphatic system + - id: skin_and_subcutaneous_tissue_disorders + description: skin and subcutaneous tissue disorders + type: boolean + names: + - noun: skin and subcutaneous tissue disorders + - noun: disorders of the skin and subcutaneous tissue + - id: congenital_familial_and_genetic_disorders + description: congenital, familial and genetic disorders + type: boolean + names: + - noun: congenital, familial and genetic disorders + - noun: familial, congenital and genetic disorders + - id: infections_and_infestations + description: infections and infestations + type: boolean + names: + - noun: infections and infestations + - noun: infestations and infections + - id: respiratory_thoracic_and_mediastinal_disorders + description: respiratory, thoracic and mediastinal disorders + type: boolean + names: + - noun: respiratory, thoracic and mediastinal disorders + - noun: respiratory and thoracic disorders + - id: psychiatric_disorders + description: psychiatric disorders + type: boolean + names: + - noun: psychiatric disorders + - noun: mental health and psychiatric disorders + - id: renal_and_urinary_disorders + description: renal and urinary disorders + type: boolean + names: + - noun: renal and urinary disorders + - noun: kidney and urinary tract disorders + - id: pregnancy_puerperium_and_perinatal_conditions + description: pregnancy, puerperium and perinatal conditions + type: boolean + names: + - noun: pregnancy, puerperium and perinatal conditions + - noun: pregnancy, childbirth, and newborn conditions + - id: ear_and_labyrinth_disorders + description: ear and labyrinth disorders + type: boolean + names: + - noun: ear and labyrinth disorders + - noun: ear and inner ear disorders + - id: cardiac_disorders + description: cardiac disorders + type: boolean + names: + - noun: cardiac disorders + - noun: cardiovascular disorders + - id: nervous_system_disorders + description: nervous system disorders + type: boolean + names: + - noun: nervous system disorders + - noun: disorders of the nervous system +license: CC BY 4.0 +links: + - url: https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false + description: corresponding publication + - url: https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/sider.csv.gz + description: Data source +num_points: 1427 +bibtex: + - |- + @article{10.1093/nar/gkv1075, + author = {Kuhn, Michael and Letunic, Ivica and Jensen, Lars Juhl and Bork, Peer}, + title = "{The SIDER database of drugs and side effects}", + journal = {Nucleic Acids Research}, + volume = {44}, + number = {D1}, + pages = {D1075-D1079}, + year = {2015}, + month = {10}, + issn = {0305-1048}, + doi = {10.1093/nar/gkv1075}, + url = {https://doi.org/10.1093/nar/gkv1075}, + } +templates: + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {hepatobiliary_disorders#not + a &a }{#potential cause|potential reason!} for {hepatobiliary_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {metabolism_and_nutrition_disorders#not + a &a }{#potential cause|potential reason!} for {metabolism_and_nutrition_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {eye_disorders#not + a &a }{#potential cause|potential reason!} for {eye_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {musculoskeletal_and_connective_tissue_disorders#not + a &a }{#potential cause|potential reason!} for {musculoskeletal_and_connective_tissue_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {gastrointestinal_disorders#not + a &a }{#potential cause|potential reason!} for {gastrointestinal_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {immune_system_disorders#not + a &a }{#potential cause|potential reason!} for {immune_system_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {reproductive_system_and_breast_disorders#not + a &a }{#potential cause|potential reason!} for {reproductive_system_and_breast_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {neoplasms_benign_malignant_and_unspecified_(incl_cysts_and_polyps)#not + a &a }{#potential cause|potential reason!} for {neoplasms_benign_malignant_and_unspecified_(incl_cysts_and_polyps)__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {general_disorders_and_administration_site_conditions#not + a &a }{#potential cause|potential reason!} for {general_disorders_and_administration_site_conditions__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {endocrine_disorders#not + a &a }{#potential cause|potential reason!} for {endocrine_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {surgical_and_medical_procedures#not + a &a }{#potential cause|potential reason!} for {surgical_and_medical_procedures__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {vascular_disorders#not + a &a }{#potential cause|potential reason!} for {vascular_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {blood_and_lymphatic_system_disorders#not + a &a }{#potential cause|potential reason!} for {blood_and_lymphatic_system_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {skin_and_subcutaneous_tissue_disorders#not + a &a }{#potential cause|potential reason!} for {skin_and_subcutaneous_tissue_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {congenital_familial_and_genetic_disorders#not + a &a }{#potential cause|potential reason!} for {congenital_familial_and_genetic_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {infections_and_infestations#not + a &a }{#potential cause|potential reason!} for {infections_and_infestations__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {respiratory_thoracic_and_mediastinal_disorders#not + a &a }{#potential cause|potential reason!} for {respiratory_thoracic_and_mediastinal_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {psychiatric_disorders#not + a &a }{#potential cause|potential reason!} for {psychiatric_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {renal_and_urinary_disorders#not + a &a }{#potential cause|potential reason!} for {renal_and_urinary_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {pregnancy_puerperium_and_perinatal_conditions#not + a &a }{#potential cause|potential reason!} for {pregnancy_puerperium_and_perinatal_conditions__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {ear_and_labyrinth_disorders#not + a &a }{#potential cause|potential reason!} for {ear_and_labyrinth_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {cardiac_disorders#not + a &a }{#potential cause|potential reason!} for {cardiac_disorders__names__noun}. + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} is {nervous_system_disorders#not + a &a }{#potential cause|potential reason!} for {nervous_system_disorders__names__noun}. diff --git a/data/tabular/SIDER/transform.py b/data/tabular/SIDER/transform.py new file mode 100644 index 000000000..0f4494872 --- /dev/null +++ b/data/tabular/SIDER/transform.py @@ -0,0 +1,153 @@ +from typing import List, Tuple + +import pandas as pd +import yaml + +ALT_DESCRIPTIONS = [ + "Liver and Gallbladder Disorders", + "Metabolic and Nutritional Disorders", + "Ophthalmic Disorders", + "Muscle and Joint Disorders", + "Digestive System Disorders", + "Disorders of the Immune System", + "Disorders of the breasts and the Reproductive system", + "Benign and Malignant Tumors (including Cysts and Polyps)", + "General Health and Administration Site Conditions", + "Endocrine System Disorders", + "Medical and Surgical Procedures", + "Vascular System Disorders", + "Disorders of the blood and lymphatic system", + "Disorders of the Skin and Subcutaneous Tissue", + "Familial, Congenital and Genetic Disorders", + "Infestations and Infections", + "Respiratory and Thoracic Disorders", + "Mental Health and Psychiatric Disorders", + "Kidney and Urinary Tract Disorders", + "Pregnancy, Childbirth, and Newborn Conditions", + "Ear and Inner Ear Disorders", + "Cardiovascular Disorders", + "Disorders of the Nervous System", +] + + +def load_dataset() -> pd.DataFrame: + sider = pd.read_csv( + "https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/sider.csv.gz" + ) + + sider = sider.drop( + columns=[ + "Product issues", + "Social circumstances", + "Investigations", + "Injury, poisoning and procedural complications", + ] + ) + return sider + + +def transform_data() -> Tuple[pd.DataFrame, pd.Index]: + sider = load_dataset() + old_columns = sider.columns.str.lower() + sider.columns = sider.columns.str.lower().str.replace(" ", "_").str.replace(",", "") + sider = sider.rename(columns={"smiles": "SMILES"}) + sider.to_csv("data_clean.csv", index=False) + + return sider, old_columns + + +def write_meta(column_ids: pd.Index, descriptions: List[str], num_points: int) -> None: + # Write metadata + targets = [ + { + "id": f"{col_id}", + "description": f"{description}", + "type": "boolean", + "names": [ + {"noun": f"{description}".lower()}, + {"noun": f"{alt_desc}".lower()}, + ], + } + for col_id, description, alt_desc in zip( + column_ids[1:], descriptions[1:], ALT_DESCRIPTIONS + ) + ] + + templates = [ + "The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description}" # noqa: E501 + + " {#representation of |!}{SMILES#} is {" + + col_id + + "#not a &a }" + + "{#potential cause|potential reason!} for {" + + col_id + + "__names__noun}." # noqa: E501 + for col_id in column_ids[1:] + ] + + meta = { + "name": "SIDER", # unique identifier, we will also use this for directory names + "description": f"""Database of marketed drugs and adverse drug reactions (ADR), grouped into {len(column_ids[1:])} system organ classes.""", # noqa: E501 + "identifiers": [ + { + "id": "SMILES", # column name + "type": "SMILES", + "description": "SMILES", # description (optional, except for "Other") + } + ], + "targets": targets, + "license": "CC BY 4.0", # license under which the original dataset was published + "links": [ # list of relevant links (original dataset, other uses, etc.) + { + "url": "https://academic.oup.com/nar/article/44/D1/D1075/2502602?login=false", + "description": "corresponding publication", + }, + { + "url": "https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/sider.csv.gz", + "description": "Data source", + }, + ], + "num_points": num_points, # number of datapoints in this dataset + "bibtex": [ + """@article{10.1093/nar/gkv1075, +author = {Kuhn, Michael and Letunic, Ivica and Jensen, Lars Juhl and Bork, Peer}, +title = "{The SIDER database of drugs and side effects}", +journal = {Nucleic Acids Research}, +volume = {44}, +number = {D1}, +pages = {D1075-D1079}, +year = {2015}, +month = {10}, +issn = {0305-1048}, +doi = {10.1093/nar/gkv1075}, +url = {https://doi.org/10.1093/nar/gkv1075}, +}""", + ], + "templates": templates, + } + + def str_presenter(dumper, data): + """configures yaml for dumping multiline strings + Ref: https://stackoverflow.com/questions/8640959/how-can-i-control-what-scalar-form-pyyaml-uses-for-my-data + """ + if data.count("\n") > 0: # check for multiline string + return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|") + return dumper.represent_scalar("tag:yaml.org,2002:str", data) + + yaml.add_representer(str, str_presenter) + yaml.representer.SafeRepresenter.add_representer( + str, str_presenter + ) # to use with safe_dum + fn_meta = "meta.yaml" + with open(fn_meta, "w") as f: + yaml.dump(meta, f, sort_keys=False) + + print(f"Finished processing {meta['name']} dataset!") + + +def main(): + sider, old_columns = transform_data() + write_meta(sider.columns, old_columns, len(sider)) + + +if __name__ == "__main__": + main() From 7ec31a1fe6fe2d9086f08975042c9190fece203d Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Thu, 2 Nov 2023 14:44:20 +0100 Subject: [PATCH 16/61] add ocp data (#473) --- data/tabular/ocp/meta.yaml | 46 +++++++++++++++++++++++++++++++ data/tabular/ocp/transform.py | 51 +++++++++++++++++++++++++++++++++++ pyproject.toml | 1 + 3 files changed, 98 insertions(+) create mode 100644 data/tabular/ocp/meta.yaml create mode 100644 data/tabular/ocp/transform.py diff --git a/data/tabular/ocp/meta.yaml b/data/tabular/ocp/meta.yaml new file mode 100644 index 000000000..d4668ac8f --- /dev/null +++ b/data/tabular/ocp/meta.yaml @@ -0,0 +1,46 @@ +--- +name: ocp +description: |- + CatBerta training data. +targets: + - id: target + description: target + type: continuous + units: eV + significant_digits: 4 + names: + - noun: adsorption energy +identifiers: + - id: text + type: text + description: description +license: MIT (based on ocp) +links: + - url: https://drive.google.com/drive/folders/1puiJ9FbLEA3QIHmZromecEndlemag9hg?usp=sharing + description: original data source +num_points: 125000 +bibtex: + - |- + @article{ock2023catalyst, + title={Catalyst Property Prediction with CatBERTa: Unveiling Feature Exploration Strategies through Large Language Models}, + author={Ock, Janghoon and Guntuboina, Chakradhar and Farimani, Amir Barati}, + journal={arXiv preprint arXiv:2309.00563}, + year={2023} + } + - |- + @article{ocp_dataset, + author = {Chanussot*, Lowik and Das*, Abhishek and Goyal*, Siddharth and Lavril*, Thibaut and Shuaibi*, Muhammed and Riviere, Morgane and Tran, Kevin and Heras-Domingo, Javier and Ho, Caleb and Hu, Weihua and Palizhati, Aini and Sriram, Anuroop and Wood, Brandon and Yoon, Junwoong and Parikh, Devi and Zitnick, C. Lawrence and Ulissi, Zachary}, + title = {Open Catalyst 2020 (OC20) Dataset and Community Challenges}, + journal = {ACS Catalysis}, + year = {2021}, + doi = {10.1021/acscatal.0c04525}, + } +templates: + - |- + Question: What is the adsorption energy of the following adsorbate-adsorbent pair? + Text: {text#} + Answer: {target#} {target__units} + - |- + Task: {#Predict|Estimate|Calculate|Compute|Determine!} the adsorption energy of the following adsorbate-adsorbent pair. + Text: {text#} + Answer: {target#} {target__units} diff --git a/data/tabular/ocp/transform.py b/data/tabular/ocp/transform.py new file mode 100644 index 000000000..91cd54553 --- /dev/null +++ b/data/tabular/ocp/transform.py @@ -0,0 +1,51 @@ +import pandas as pd +from datasets import load_dataset +from pylatexenc.latexencode import unicode_to_latex + + +def uniCode2Latex(text: str) -> str: + """ + converts unicode text to latex and + fixes UTF-8 chars for latex in a certain range: + ₀:$_0$ ... ₉:$_9$ + + see https://github.com/phfaist/pylatexenc/issues/72 + + Args: + text(str): the string to fix + + Return: + str: latex presentation of UTF-8 char + """ + for code in range(8320, 8330): + text = text.replace(chr(code), f"$_{code-8320}$") + + text = text.replace("\u0305", "$^-$") + text = text.replace("\u207A", "$^+$") + text = text.replace("\u207B", "$^-$") + text = text.replace("\u2074", "$^4$") + text = text.replace("\u2070", "$^0$") + text = text.replace("\u2078", "$^1$") + text = text.replace("\u2075", "$^2$") + text = text.replace("\u2076", "$^3$") + text = text.replace("\u2077", "$^5$") + + return unicode_to_latex(text) + + +def process(): + dataset = load_dataset("kjappelbaum/chemnlp-ocp") + df_train = dataset["train"].to_pandas() + df_val = dataset["valid"].to_pandas() + + df_train["split"] = "train" + df_val["split"] = "valid" + + df = pd.concat([df_train, df_val]) + df["text"] = df["text"].apply(uniCode2Latex) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/pyproject.toml b/pyproject.toml index a56df7aee..af608a9b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ dataset_creation = [ "deepsmiles", "pubchempy", "bioc", + "pylatexenc", "canonicalize_psmiles@git+https://github.com/Ramprasad-Group/canonicalize_psmiles.git", #"tucan@git+https://github.com/TUCAN-nest/TUCAN.git" # the current version has bugs due to the type checking, maybe this is due to our python version? "rxn-chem-utils" From 95fd318ab7195b666ad5bead79b46f9f459e1807 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Thu, 2 Nov 2023 14:44:48 +0100 Subject: [PATCH 17/61] feat: mofdscribe (#471) --- data/tabular/mofdscribe/meta.yaml | 61 ++++++++++++++++++++++++++++ data/tabular/mofdscribe/transform.py | 18 ++++++++ 2 files changed, 79 insertions(+) create mode 100644 data/tabular/mofdscribe/meta.yaml create mode 100644 data/tabular/mofdscribe/transform.py diff --git a/data/tabular/mofdscribe/meta.yaml b/data/tabular/mofdscribe/meta.yaml new file mode 100644 index 000000000..28bd50d84 --- /dev/null +++ b/data/tabular/mofdscribe/meta.yaml @@ -0,0 +1,61 @@ +--- +name: mofdscribe +description: |- + Text descriptions of MOF structures. +targets: + - id: description + description: description + type: text + names: + - noun: description +benchmarks: [] +identifiers: + - id: cif + type: text + description: CIFFILE + names: + - noun: CIF file + - noun: Crystallographic Information File (CIF) + - noun: CIF card +license: CC BY 4.0 +links: + - url: https://github.com/kjappelbaum/mofdscribe + description: codebase used to generate this dataset +num_points: 1267 +bibtex: + - |- + @article{Jablonka_2023, + doi = {10.1021/acscentsci.2c01177}, + url = {https://doi.org/10.1021%2Facscentsci.2c01177}, + year = 2023, + month = {mar}, + publisher = {American Chemical Society ({ACS})}, + volume = {9}, + number = {4}, + pages = {563--581}, + author = {Kevin Maik Jablonka and Andrew S. Rosen and Aditi S. Krishnapriyan and Berend Smit}, + title = {An Ecosystem for Digital Reticular Chemistry}, + journal = {ACS Cent. Sci.} + } + - |- + @article{Ganose_2019, + doi = {10.1557/mrc.2019.94}, + url = {https://doi.org/10.1557%2Fmrc.2019.94}, + year = 2019, + month = {sep}, + publisher = {Springer Science and Business Media {LLC}}, + volume = {9}, + number = {3}, + pages = {874--881}, + author = {Alex M. Ganose and Anubhav Jain}, + title = {Robocrystallographer: automated crystal structure text descriptions and analysis}, + journal = {MRS Communications} + } +templates: + - |- + Task: {#Describe|Write a description of!} the structure with the {cif__names__noun} {cif#}. + {#Answer: |A: |!}{description#} + - |- + Task: {#Create|Generate|Propose!} a {cif__names__noun} of a {#metal-organic framework|MOF|crystal structure|structure|material!} with the following description + {description#}. + {#Answer: |A: |!}{cif#} diff --git a/data/tabular/mofdscribe/transform.py b/data/tabular/mofdscribe/transform.py new file mode 100644 index 000000000..3a95af9da --- /dev/null +++ b/data/tabular/mofdscribe/transform.py @@ -0,0 +1,18 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def process(): + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-text-mofdscribe", + filename="data/train-00000-of-00001-ccae794e6d461778.parquet", + repo_type="dataset", + ) + df = pd.read_parquet(file) + print(len(df)) + + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() From 7e053e48874a5b3e5f0702a349f730235bac819f Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Thu, 2 Nov 2023 14:45:03 +0100 Subject: [PATCH 18/61] add mp descriptions (#472) --- data/tabular/mp_descriptions/meta.yaml | 98 +++++++++++++++++++++++ data/tabular/mp_descriptions/transform.py | 15 ++++ 2 files changed, 113 insertions(+) create mode 100644 data/tabular/mp_descriptions/meta.yaml create mode 100644 data/tabular/mp_descriptions/transform.py diff --git a/data/tabular/mp_descriptions/meta.yaml b/data/tabular/mp_descriptions/meta.yaml new file mode 100644 index 000000000..6a88aed46 --- /dev/null +++ b/data/tabular/mp_descriptions/meta.yaml @@ -0,0 +1,98 @@ +--- +name: mp_descriptions +description: |- + Text descriptions of materials. +targets: + - id: description + description: description + type: text + names: + - noun: description + - id: description_w_bondlengths + description: description with bond lengths + type: text + names: + - noun: description with bond lengths +identifiers: + - id: formula + type: text + description: composition + - id: cifstr + type: CIFFILE + description: CIF file + names: + - noun: CIF file + - noun: Crystallographic Information File (CIF) + - noun: CIF card +license: CC BY 4.0 +links: + - url: https://next-gen.materialsproject.org/ + description: original data source +num_points: 117576 +bibtex: + - |- + @article{Jain_2013, + doi = {10.1063/1.4812323}, + url = {https://doi.org/10.1063%2F1.4812323}, + year = 2013, + month = {jul}, + publisher = {{AIP} Publishing}, + volume = {1}, + number = {1}, + author = {Anubhav Jain and Shyue Ping Ong and Geoffroy Hautier + and Wei Chen and William Davidson Richards and Stephen Dacek + and Shreyas Cholia and Dan Gunter and David Skinner + and Gerbrand Ceder and Kristin A. Persson}, + title = {Commentary: The Materials Project: + A materials genome approach to accelerating materials innovation}, + journal = {{APL} Materials} + } + - |- + @article{Ong_2015, + doi = {10.1016/j.commatsci.2014.10.037}, + url = {https://doi.org/10.1016%2Fj.commatsci.2014.10.037}, + year = 2015, + month = {feb}, + publisher = {Elsevier {BV}}, + volume = {97}, + pages = {209--215}, + author = {Shyue Ping Ong and Shreyas Cholia and Anubhav Jain + and Miriam Brafman and Dan Gunter and Gerbrand Ceder and Kristin A. Persson}, + title = {The Materials Application Programming Interface ({API}): + A simple, flexible and efficient {API} for materials data based + on {REpresentational} State Transfer ({REST}) principles}, + journal = {Computational Materials Science} + } + - |- + @article{Ganose_2019, + doi = {10.1557/mrc.2019.94}, + url = {https://doi.org/10.1557%2Fmrc.2019.94}, + year = 2019, + month = {sep}, + publisher = {Springer Science and Business Media {LLC}}, + volume = {9}, + number = {3}, + pages = {874--881}, + author = {Alex M. Ganose and Anubhav Jain}, + title = {Robocrystallographer: automated crystal structure text descriptions and analysis}, + journal = {MRS Communications} + } +templates: + - |- + Task: {Please design|Design!} a {#crystal structure|material|compound|material structure|structure!} based on the {cifstr__names__noun}. + CIF: {cifstr#} + {#Description|Answer!}: {description#} + - |- + Task: {Please design|Design!} a {cifstr__names__noun} that matches the description below. + Description: {description#} + {#Answer|CIF!}: {cifstr#} + - |- + User: {#Can|Could!} you describe a {#crystal structure|material|compound|material structure|structure!} based on the {cifstr__names__noun}? + Assistant: {#Sure, |I can give it a try, |!} I {#would need|need|require!} the {cifstr__names__noun} to do that. + User: {cifstr#} + Assistant: {description#} + - |- + User: {#Can|Could!} you design a {cifstr__names__noun} that matches a description of a {#crystal structure|material|compound|material structure|structure!}? + Assistant: {#Sure, |I can give it a try, |!} I {#would need|need|require!} the description of the {#crystal structure|material|compound|material structure|structure!} to do that. + User: {description#} + Assistant: {cifstr#} diff --git a/data/tabular/mp_descriptions/transform.py b/data/tabular/mp_descriptions/transform.py new file mode 100644 index 000000000..fb1260d51 --- /dev/null +++ b/data/tabular/mp_descriptions/transform.py @@ -0,0 +1,15 @@ +from datasets import load_dataset + + +def process(): + dataset = load_dataset("kjappelbaum/chemnlp-robocrys") + df = dataset["train"].to_pandas() + df.dropna( + subset=["cifstr", "description", "description_w_bondlengths"], inplace=True + ) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() From 407ad17807b48acee25b6a9915f754e7ca219d8f Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Mon, 6 Nov 2023 17:15:46 +0100 Subject: [PATCH 19/61] Aminoacids table (#481) Co-authored-by: Kevin Maik Jablonka --- data/tabular/aminoacids/meta.yaml | 40 ++++++++++++++++++++++++++++ data/tabular/aminoacids/transform.py | 13 +++++++++ 2 files changed, 53 insertions(+) create mode 100644 data/tabular/aminoacids/meta.yaml create mode 100644 data/tabular/aminoacids/transform.py diff --git a/data/tabular/aminoacids/meta.yaml b/data/tabular/aminoacids/meta.yaml new file mode 100644 index 000000000..f0af5cdef --- /dev/null +++ b/data/tabular/aminoacids/meta.yaml @@ -0,0 +1,40 @@ +--- +name: aminoacids +description: |- + The list of the 20 essential aminoacids, their SMILES, one letter and three letter codes. +targets: + - id: three_letter_code + description: three-letter code + type: text + - id: one_letter_code + description: one-letter code + type: text + - id: aminoacid_name + description: name + type: text + - id: type + description: type of aminoacid + type: text +identifiers: + - id: SMILES + type: SMILES + description: SMILES +license: CC BY 4.0 +links: + - url: https://chemistry.stackexchange.com/questions/138614/why-are-tyrosine-and-tryptophan-considered-hydrophobic + description: reference for amino acid type +num_points: 20 +templates: + - The {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#} has a one-letter code {one_letter_code#} and a + three-letter code {three_letter_code#}. + - The {#essential amino acid|amino acid|amino acid (AA)|AA!} {amino acid_name#} has a one-letter code {one_letter_code#} and a three-letter code {three_letter_code#}. + - |- + Question: What is the one-letter code of the {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#}? + Answer: {one_letter_code#}. + - |- + Question: What is the one-letter code of the {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#}? + Answer: {three_letter_code#}. + - |- + Question: What is the the type of the amino acid with the one-letter code {one_letter_code#} and {SMILES__description} {SMILES#}? + Constraint: The possible types are: polar, non-polar, positively charged, negatively charged + Answer: From the provided amino acid types (polar, non-polar, positively charged, negatively charged), the amino acid with the one-letter code {one_letter_code#} is {type#}. diff --git a/data/tabular/aminoacids/transform.py b/data/tabular/aminoacids/transform.py new file mode 100644 index 000000000..48dc3b5dc --- /dev/null +++ b/data/tabular/aminoacids/transform.py @@ -0,0 +1,13 @@ +import pandas as pd + + +def extract_data(): + aminoacids = pd.read_csv( + "https://huggingface.co/datasets/chemNLP/uniprot/raw/main/aminoacid_seq.csv" + ) + aminoacids.to_csv("data_clean.csv", index=False) + return aminoacids + + +if __name__ == "__main__": + extract_data() From 7df21e64d03cdf30d63f0f94809955f7dfc18199 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 7 Nov 2023 08:22:57 +0100 Subject: [PATCH 20/61] fix: the the (#484) --- data/tabular/aminoacids/meta.yaml | 2 +- data/tabular/bio_ner/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/tabular/aminoacids/meta.yaml b/data/tabular/aminoacids/meta.yaml index f0af5cdef..9af7d5e18 100644 --- a/data/tabular/aminoacids/meta.yaml +++ b/data/tabular/aminoacids/meta.yaml @@ -35,6 +35,6 @@ templates: Question: What is the one-letter code of the {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#}? Answer: {three_letter_code#}. - |- - Question: What is the the type of the amino acid with the one-letter code {one_letter_code#} and {SMILES__description} {SMILES#}? + Question: What is the type of the amino acid with the one-letter code {one_letter_code#} and {SMILES__description} {SMILES#}? Constraint: The possible types are: polar, non-polar, positively charged, negatively charged Answer: From the provided amino acid types (polar, non-polar, positively charged, negatively charged), the amino acid with the one-letter code {one_letter_code#} is {type#}. diff --git a/data/tabular/bio_ner/meta.yaml b/data/tabular/bio_ner/meta.yaml index b076cc7c9..7a63f8fff 100644 --- a/data/tabular/bio_ner/meta.yaml +++ b/data/tabular/bio_ner/meta.yaml @@ -29,7 +29,7 @@ links: num_points: 144675 templates: - |- - Task: Please carry out the {#named entity recognition (NER)|named entity recognition|NER!} task for the the text below. + Task: Please carry out the {#named entity recognition (NER)|named entity recognition|NER!} task for the text below. Text: {#Sentence}. Constrain: Please, {#only |!}list the entities in the form NER entity, span start, span end, and type {#in separate lines |!}with a high probability of being in the text. Result: {#entity_1} From d8e53d5318a8babdca8be848f808b5e6605ec5d6 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 7 Nov 2023 08:23:08 +0100 Subject: [PATCH 21/61] add givemeconformer dependency (#485) --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index af608a9b6..4a9c05aa2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,8 @@ dataset_creation = [ "pylatexenc", "canonicalize_psmiles@git+https://github.com/Ramprasad-Group/canonicalize_psmiles.git", #"tucan@git+https://github.com/TUCAN-nest/TUCAN.git" # the current version has bugs due to the type checking, maybe this is due to our python version? - "rxn-chem-utils" + "rxn-chem-utils", + "givemeconformer" ] training = [ From 1539d40e108785565a6f795f44f02f1381372bc7 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 7 Nov 2023 08:23:24 +0100 Subject: [PATCH 22/61] suzuki miyaura fails (#479) --- data/tabular/suzuki_miyaura_sach/transform.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/data/tabular/suzuki_miyaura_sach/transform.py b/data/tabular/suzuki_miyaura_sach/transform.py index f7220c51d..2fe6fb121 100644 --- a/data/tabular/suzuki_miyaura_sach/transform.py +++ b/data/tabular/suzuki_miyaura_sach/transform.py @@ -90,6 +90,7 @@ def extract_reaction_info(equation_string): "dppf": "C1=CC=C(C=C1)P([C-]2C=CC=C2)C3=CC=CC=C3.C1=CC=C(C=C1)P([C-]2C=CC=C2)C3=CC=CC=C3.[Fe+2]", "Xantphos": "O6c1c(cccc1P(c2ccccc2)c3ccccc3)C(c7cccc(P(c4ccccc4)c5ccccc5)c67)(C)C", "None": "", + "nan": "", } reagent_1_smiles_dict = { @@ -101,6 +102,7 @@ def extract_reaction_info(equation_string): "LiOtBu": "[Li+].[O-]C(C)(C)C", "Et3N": "CCN(CC)CC", "None": "", + "nan": "", } solvent_1_smiles_dict = { @@ -199,6 +201,28 @@ def get_and_transform_data(): ] # data cleaning + # make the columns we look up to str + df[ + [ + "Reactant_1_Name", + "Reactant_2_Name", + "Catalyst_1_Short_Hand", + "Ligand_Short_Hand", + "Reagent_1_Short_Hand", + "Solvent_1_Short_Hand", + ] + ] = df[ + [ + "Reactant_1_Name", + "Reactant_2_Name", + "Catalyst_1_Short_Hand", + "Ligand_Short_Hand", + "Reagent_1_Short_Hand", + "Solvent_1_Short_Hand", + ] + ].astype( + str + ) df = add_molecules_and_rxn_smiles_to_df(df) # save to csv From bb969e73af0cb3d86bbc71caf6c33a8f5f75d626 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 7 Nov 2023 09:02:23 +0100 Subject: [PATCH 23/61] fix: MOF datasets (#486) --- data/tabular/core_mof_no_topo/meta.yaml | 17 - data/tabular/qmof_gcmc/meta.yaml | 442 ++++++++++++++++++++++++ data/tabular/qmof_gcmc/transform.py | 20 +- data/tabular/qmof_quantum/meta.yaml | 5 - data/text_sampling/text_sampling.py | 4 +- 5 files changed, 450 insertions(+), 38 deletions(-) create mode 100644 data/tabular/qmof_gcmc/meta.yaml diff --git a/data/tabular/core_mof_no_topo/meta.yaml b/data/tabular/core_mof_no_topo/meta.yaml index ffef4d1aa..ee15f93c6 100644 --- a/data/tabular/core_mof_no_topo/meta.yaml +++ b/data/tabular/core_mof_no_topo/meta.yaml @@ -117,14 +117,6 @@ targets: - noun: deliverable capacity of CH4 obtained from GCMC simulations between 5.8 bar and 65 bar at 298 K - noun: deliverable capacity of methane (between 5.8 bar and 65 bar at 298 K) obtained from GCMC simulations - noun: deliverable capacity of CH4 (between 5.8 bar and 65 bar at 298 K) obtained from GCMC simulations - - id: info.density - description: density of the material - type: continuous - units: g/cm^3 - significant_digits: 2 - names: - - noun: density of the material - - noun: density identifiers: - id: smiles_linkers description: SMILES representation of the linker @@ -199,8 +191,6 @@ templates: {cif#} has a {outputs.logKH_CO2__names__noun} of {outputs.logKH_CO2#} {outputs.logKH_CO2__units}. - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#} has a {outputs.logKH_CH4__names__noun} of {outputs.logKH_CH4#} {outputs.logKH_CH4__units}. - - The {density__names__noun} of the {#metal-organic framework|MOF|reticular material|material|structure|metal-organic framework (MOF)!} with the following - {#CIF file|crystal structure in CIF format!} {cif#} is {density#} {density__units}. - The {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with the following {#CIF file|crystal structure in CIF format!} {cif#} has a {outputs.CH4DC__names__noun} of {outputs.CH4DC#} {outputs.CH4DC__units}. - |- @@ -258,10 +248,3 @@ templates: Assistant: The {outputs.pure_uptake_methane_298.00_580000__names__noun} is {outputs.pure_uptake_methane_298.00_580000#} {outputs.pure_uptake_methane_298.00_580000__units}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} User: {#No, |Nope, |No thank you, |!}that's all I need to know. Assistant: {#You're welcome.||Anytime.|Happy to help.!} - - |- - User: {#I want to|I need to|I must|I have to!} {#synthesize|create|make!} a {#metal-organic framework|MOF|reticular material|metal-organic framework (MOF)!} with a {outputs.CH4DC__names__noun} of {outputs.CH4DC#} {outputs.CH4DC__units} and a {outputs.pure_uptake_CO2_298.00_15000__names__noun} of {outputs.pure_uptake_CO2_298.00_15000#} {outputs.pure_uptake_CO2_298.00_15000__units}. What {#building blocks|linkers and nodes!} do I need to combine? - Assistant: {#I'd go for|I'd recommend!} linkers with SMILES {smiles_linkers#} and nodes with SMILES {smiles_nodes#}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} - User: {#Yes, |Yeah, |Indeed, |!}What {#CIF file|crystal structure in CIF format!} can I expect? - Assistant: The {#CIF file|crystal structure in CIF format!} should be {cif#}. {#Is there anything else you want to know?|Is there anything else I can do for you?!} - User: {#Yes, |Yeah, |Indeed, |!}I would like to know the {info.density__names__noun}. - Assistant: The {info.density__names__noun} is {info.density#} {info.density__units}. diff --git a/data/tabular/qmof_gcmc/meta.yaml b/data/tabular/qmof_gcmc/meta.yaml new file mode 100644 index 000000000..a63cdd68f --- /dev/null +++ b/data/tabular/qmof_gcmc/meta.yaml @@ -0,0 +1,442 @@ +--- +name: qmof_gcmc +description: |- + QMOF is a database of electronic properties of MOFs, assembled by Rosen et al. + Jablonka et al. added gas adsorption properties. +targets: + - id: lg10_CO2_Henry + description: CO2 Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of CO2 Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of carbon dioxide Henry coefficient (computed using grand canonical Monte Carlo) + - id: lg10_N2_Henry + description: N2 Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of N2 Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of nitrogen Henry coefficient (computed using grand canonical Monte Carlo) + - id: lg10_CH4_Henry + description: CH4 Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of CH4 Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of methane Henry coefficient (computed using grand canonical Monte Carlo) + - id: lg10_O2_Henry + description: O2 Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of O2 Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of oxygen Henry coefficient using grand canonical Monte Carlo + - id: lg10_Xe_Henry + description: Xe Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of Xe Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of xenon Henry coefficient (computed using grand canonical Monte Carlo) + - id: lg10_Kr_Henry + description: Kr Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of Kr Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of krypton Henry coefficient (computed using grand canonical Monte Carlo) + - id: lg10_H2S_Henry + description: H2S Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of H2S Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of hydrogen sulfide Henry coefficient (computed using grand canonical Monte Carlo) + - id: lg10_H2O_Henry + description: H2O Henry coefficient + type: continuous + units: mol/kg/Pa + significant_digits: 3 + names: + - noun: 10-based logarithm of H2O Henry coefficient (computed using grand canonical Monte Carlo) + - noun: 10-based logarithm of water Henry coefficient (computed using grand canonical Monte Carlo) + - id: outputs.CO2-adsorption_energy-kJ--mol + description: CO2 adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: CO2 adsorption energy (computed using grand canonical Monte Carlo) + - noun: carbon dioxide adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.N2-adsorption_energy-kJ--mol + description: N2 adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: N2 adsorption energy (computed using grand canonical Monte Carlo) + - noun: nitrogen adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.CH4-adsorption_energy-kJ--mol + description: CH4 adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: CH4 adsorption energy (computed using grand canonical Monte Carlo) + - noun: methane adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.O2-adsorption_energy-kJ--mol + description: O2 adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: O2 adsorption energy (computed using grand canonical Monte Carlo) + - noun: oxygen adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.Xe-adsorption_energy-kJ--mol + description: Xe adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: Xe adsorption energy (computed using grand canonical Monte Carlo) + - noun: xenon adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.Kr-adsorption_energy-kJ--mol + description: Kr adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: Kr adsorption energy (computed using grand canonical Monte Carlo) + - noun: krypton adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.H2S-adsorption_energy-kJ--mol + description: H2S adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: H2S adsorption energy (computed using grand canonical Monte Carlo) + - noun: hydrogen sulfide adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.H2O-adsorption_energy-kJ--mol + description: H2O adsorption energy + type: continuous + units: kJ/mol + significant_digits: 3 + names: + - noun: H2O adsorption energy (computed using grand canonical Monte Carlo) + - noun: water adsorption energy (computed using grand canonical Monte Carlo) + - id: outputs.H2S--H2O-selectivity_298_K- + description: H2S/H2O selectivity + type: continuous + units: dimensionless + significant_digits: 3 + names: + - noun: H2S/H2O selectivity (computed using grand canonical Monte Carlo) + - noun: hydrogen sulfide/water selectivity (computed using grand canonical Monte Carlo) + - id: outputs.CH4--N2-selectivity_298_K- + description: CH4/N2 selectivity + type: continuous + units: dimensionless + significant_digits: 3 + names: + - noun: CH4/N2 selectivity (computed using grand canonical Monte Carlo) + - noun: methane/nitrogen selectivity (computed using grand canonical Monte Carlo) + - id: outputs.Xe--Kr-selectivity_298_K- + description: Xe/Kr selectivity + type: continuous + units: dimensionless + significant_digits: 3 + names: + - noun: Xe/Kr selectivity (computed using grand canonical Monte Carlo) + - noun: xenon/krypton selectivity (computed using grand canonical Monte Carlo) + - id: outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3 + description: CH4 working capacity + type: continuous + units: cm^3 STP/cm^3 + significant_digits: 3 + names: + - noun: CH4 working capacity between 58 and 65 bar at 298 K (computed using grand canonical Monte Carlo) + - noun: methane working capacity between 58 and 65 bar at 298 K (computed using grand canonical Monte Carlo) + - id: outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg + description: CH4 working capacity + type: continuous + units: mol/kg + significant_digits: 3 + names: + - noun: CH4 working capacity between 58 and 65 bar at 298 K (computed using grand canonical Monte Carlo) + - noun: methane working capacity between 58 and 65 bar at 298 K (computed using grand canonical Monte Carlo) + - id: outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3 + description: O2 working capacity + type: continuous + units: cm^3 STP/cm^3 + significant_digits: 3 + names: + - noun: O2 working capacity between 5 and 140 bar at 298 K (computed using grand canonical Monte Carlo) + - noun: oxygen working capacity between 5 and 140 bar at 298 K (computed using grand canonical Monte Carlo) + - id: outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg + description: O2 working capacity + type: continuous + units: mol/kg + significant_digits: 3 + names: + - noun: O2 working capacity between 5 and 140 bar at 298 K (computed using grand canonical Monte Carlo) + - noun: oxygen working capacity between 5 and 140 bar at 298 K (computed using grand canonical Monte Carlo) + - id: outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L + description: H2 working capacity + type: continuous + units: g/L + significant_digits: 3 + names: + - noun: H2 working capacity between 5 and 100 bar at 298 K (computed using grand canonical Monte Carlo) + - noun: hydrogen working capacity between 5 and 100 bar at 298 K (computed using grand canonical Monte Carlo) + - id: outputs.H2-working_capacity_5_to_100_bar_77_K-g--L + description: H2 working capacity + type: continuous + units: g/L + significant_digits: 3 + names: + - noun: H2 working capacity between 5 and 100 bar at 77 K (computed using grand canonical Monte Carlo) + - noun: hydrogen working capacity between 5 and 100 bar at 77 K (computed using grand canonical Monte Carlo) + - id: outputs.H2-working_capacity_1_to_100_bar_77_K-g--L + description: H2 working capacity + type: continuous + units: g/L + significant_digits: 3 + names: + - noun: H2 working capacity between 1 and 100 bar at 77 K (computed using grand canonical Monte Carlo) + - noun: hydrogen working capacity between 1 and 100 bar at 77 K (computed using grand canonical Monte Carlo) + - id: info.pld + type: continuous + units: \AA + significant_digits: 3 + names: + - noun: pore limiting diameter + - noun: pore limiting diameter (PLD) + - id: info.lcd + type: continuous + units: \AA + significant_digits: 3 + names: + - noun: largest cavity diameter + - noun: largest cavity diameter (LCD) + - id: info.density + type: continuous + units: g/cm^3 + significant_digits: 3 + names: + - noun: density +identifiers: + - id: info.mofid.mofid + type: Other + description: MOFId + - id: info.mofid.smiles_nodes + type: Other + description: SMILES of nodes + - id: info.mofid.smiles_linkers + type: Other + description: SMILES of linkers + - id: info.mofid.smiles + type: Other + description: SMILES + - id: info.mofid.topology + type: Other + description: Topology RCSR ID + - id: info.symmetry.spacegroup_number + type: Other + description: Spacegroup number + names: + - noun: space group number +license: CC-BY-4.0 +num_points: 88 +bibtex: + - |- + @article{Rosen_2021, + doi = {10.1016/j.matt.2021.02.015}, + url = {https://doi.org/10.1016%2Fj.matt.2021.02.015}, + year = 2021, + month = {may}, + publisher = {Elsevier {BV}}, + volume = {4}, + number = {5}, + pages = {1578--1597}, + author = {Andrew S. Rosen and Shaelyn M. Iyer and Debmalya Ray and Zhenpeng Yao and Al{\'{a}}n Aspuru-Guzik and Laura Gagliardi and Justin M. Notestein and Randall Q. Snurr}, + title = {Machine learning the quantum-chemical properties of metal{\textendash}organic frameworks for accelerated materials discovery}, + journal = {Matter} + } + - |- + @article{Rosen_2022, + doi = {10.1038/s41524-022-00796-6}, + url = {https://doi.org/10.1038%2Fs41524-022-00796-6}, + year = 2022, + month = {may}, + publisher = {Springer Science and Business Media {LLC}}, + volume = {8}, + number = {1}, + author = {Andrew S. Rosen and Victor Fung and Patrick Huck and Cody T. O'Donnell and Matthew K. Horton and Donald G. Truhlar and Kristin A. Persson and Justin M. Notestein and Randall Q. Snurr}, + title = {High-throughput predictions of metal{\textendash}organic framework electronic properties: theoretical challenges, graph neural networks, and data exploration}, + journal = {npj Comput Mater} + } + - |- + @article{Jablonka_2023, + doi = {10.1021/acscentsci.2c01177}, + url = {https://doi.org/10.1021%2Facscentsci.2c01177}, + year = 2023, + month = {mar}, + publisher = {American Chemical Society ({ACS})}, + volume = {9}, + number = {4}, + pages = {563--581}, + author = {Kevin Maik Jablonka and Andrew S. Rosen and Aditi S. Krishnapriyan and Berend Smit}, + title = {An Ecosystem for Digital Reticular Chemistry}, + journal = {ACS Cent. Sci.} Central Science} + } +templates: + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_CO2_Henry__names__noun} of {lg10_CO2_Henry#} {lg10_CO2_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_CO2_Henry__names__noun} + of {lg10_CO2_Henry#} {lg10_CO2_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_N2_Henry__names__noun} of {lg10_N2_Henry#} {lg10_N2_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_N2_Henry__names__noun} + of {lg10_N2_Henry#} {lg10_N2_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_CH4_Henry__names__noun} of {lg10_CH4_Henry#} {lg10_CH4_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_CH4_Henry__names__noun} + of {lg10_CH4_Henry#} {lg10_CH4_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_O2_Henry__names__noun} of {lg10_O2_Henry#} {lg10_O2_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_O2_Henry__names__noun} + of {lg10_O2_Henry#} {lg10_O2_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_Xe_Henry__names__noun} of {lg10_Xe_Henry#} {lg10_Xe_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_Xe_Henry__names__noun} + of {lg10_Xe_Henry#} {lg10_Xe_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_Kr_Henry__names__noun} of {lg10_Kr_Henry#} {lg10_Kr_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_Kr_Henry__names__noun} + of {lg10_Kr_Henry#} {lg10_Kr_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_H2S_Henry__names__noun} of {lg10_H2S_Henry#} {lg10_H2S_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_H2S_Henry__names__noun} + of {lg10_H2S_Henry#} {lg10_H2S_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {lg10_H2O_Henry__names__noun} of {lg10_H2O_Henry#} {lg10_H2O_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {lg10_H2O_Henry__names__noun} + of {lg10_H2O_Henry#} {lg10_H2O_Henry__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.CO2-adsorption_energy-kJ--mol__names__noun} + of {outputs.CO2-adsorption_energy-kJ--mol#} {outputs.CO2-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.CO2-adsorption_energy-kJ--mol__names__noun} + of {outputs.CO2-adsorption_energy-kJ--mol#} {outputs.CO2-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.N2-adsorption_energy-kJ--mol__names__noun} + of {outputs.N2-adsorption_energy-kJ--mol#} {outputs.N2-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.N2-adsorption_energy-kJ--mol__names__noun} + of {outputs.N2-adsorption_energy-kJ--mol#} {outputs.N2-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.CH4-adsorption_energy-kJ--mol__names__noun} + of {outputs.CH4-adsorption_energy-kJ--mol#} {outputs.CH4-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.CH4-adsorption_energy-kJ--mol__names__noun} + of {outputs.CH4-adsorption_energy-kJ--mol#} {outputs.CH4-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.O2-adsorption_energy-kJ--mol__names__noun} + of {outputs.O2-adsorption_energy-kJ--mol#} {outputs.O2-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.O2-adsorption_energy-kJ--mol__names__noun} + of {outputs.O2-adsorption_energy-kJ--mol#} {outputs.O2-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.Xe-adsorption_energy-kJ--mol__names__noun} + of {outputs.Xe-adsorption_energy-kJ--mol#} {outputs.Xe-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.Xe-adsorption_energy-kJ--mol__names__noun} + of {outputs.Xe-adsorption_energy-kJ--mol#} {outputs.Xe-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.Kr-adsorption_energy-kJ--mol__names__noun} + of {outputs.Kr-adsorption_energy-kJ--mol#} {outputs.Kr-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.Kr-adsorption_energy-kJ--mol__names__noun} + of {outputs.Kr-adsorption_energy-kJ--mol#} {outputs.Kr-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.H2S-adsorption_energy-kJ--mol__names__noun} + of {outputs.H2S-adsorption_energy-kJ--mol#} {outputs.H2S-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.H2S-adsorption_energy-kJ--mol__names__noun} + of {outputs.H2S-adsorption_energy-kJ--mol#} {outputs.H2S-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.H2O-adsorption_energy-kJ--mol__names__noun} + of {outputs.H2O-adsorption_energy-kJ--mol#} {outputs.H2O-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.H2O-adsorption_energy-kJ--mol__names__noun} + of {outputs.H2O-adsorption_energy-kJ--mol#} {outputs.H2O-adsorption_energy-kJ--mol__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.H2S--H2O-selectivity_298_K-__names__noun} of + {outputs.H2S--H2O-selectivity_298_K-#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {outputs.H2S--H2O-selectivity_298_K-__names__noun} + of {outputs.H2S--H2O-selectivity_298_K-#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.CH4--N2-selectivity_298_K-__names__noun} of + {outputs.CH4--N2-selectivity_298_K-#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {outputs.CH4--N2-selectivity_298_K-__names__noun} + of {outputs.CH4--N2-selectivity_298_K-#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.Xe--Kr-selectivity_298_K-__names__noun} of {outputs.Xe--Kr-selectivity_298_K-#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {outputs.Xe--Kr-selectivity_298_K-__names__noun} + of {outputs.Xe--Kr-selectivity_298_K-#}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3__names__noun} + of {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3#} {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3__names__noun} + of {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3#} {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has a {outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg__names__noun} + of {outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg#} {outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg__names__noun} + of {outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg#} {outputs.CH4-working_capacity_mol_58_to_65_bar_298_K-mol--kg__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3__names__noun} + of {outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3#} {outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3__names__noun} + of {outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3#} {outputs.O2-working_capacity_vol_5_to_140_bar_298_K-cm3_STP--cm3__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg__names__noun} + of {outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg#} {outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg__names__noun} + of {outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg#} {outputs.O2-working_capacity_mol_5_to_140_bar_298_K-mol--kg__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L__names__noun} + of {outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L#} {outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L__names__noun} + of {outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L#} {outputs.H2-working_capacity_5_to_100_bar_298_to_198_K-g--L__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.H2-working_capacity_5_to_100_bar_77_K-g--L__names__noun} + of {outputs.H2-working_capacity_5_to_100_bar_77_K-g--L#} {outputs.H2-working_capacity_5_to_100_bar_77_K-g--L__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.H2-working_capacity_5_to_100_bar_77_K-g--L__names__noun} + of {outputs.H2-working_capacity_5_to_100_bar_77_K-g--L#} {outputs.H2-working_capacity_5_to_100_bar_77_K-g--L__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the {#topology|net|RCSR code|RCSR identifier!} {info.mofid.topology#}, + linker SMILES {info.mofid.smiles_linkers#}, and node SMILES {info.mofid.smiles_nodes#} has an {outputs.H2-working_capacity_1_to_100_bar_77_K-g--L__names__noun} + of {outputs.H2-working_capacity_1_to_100_bar_77_K-g--L#} {outputs.H2-working_capacity_1_to_100_bar_77_K-g--L__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has an {outputs.H2-working_capacity_1_to_100_bar_77_K-g--L__names__noun} + of {outputs.H2-working_capacity_1_to_100_bar_77_K-g--L#} {outputs.H2-working_capacity_1_to_100_bar_77_K-g--L__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {info.pld__names__noun} + of {info.pld#} {info.pld__units} + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {info.lcd__names__noun} + of {info.lcd#} {info.lcd__units}. + - The {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with the MOFId {info.mofid.mofid#} has a {info.density__names__noun} + of {info.density#} {info.density__units}. + - |- + User: I {#want|would like|have|need|must!} to {#design|synthesize|find!} a {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with specific gas adsorption properties. + Assistant: {#How can I help you?|How can I be of assistance?|What can I do for you?|That's cool, how can I help?|Interesting, can I be of any help?|Seems interesting, how can I support you?!} + User: I {#want|would like!} the {outputs.H2S--H2O-selectivity_298_K-__names__noun} to be {outputs.H2S--H2O-selectivity_298_K-#} and the {outputs.CH4--N2-selectivity_298_K-__names__noun} to be {outputs.CH4--N2-selectivity_298_K-#}. + Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend} {info.mofid.mofid#}. + - |- + User: I {#want|would like|have|need|must!} to {#design|synthesize|find!} a {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with specific gas adsorption properties. + Assistant: {#How can I help you?|How can I be of assistance?|What can I do for you?|That's cool, how can I help?|Interesting, can I be of any help?|Seems interesting, how can I support you?!} + User: I {#want|would like!} the {outputs.CH4--N2-selectivity_298_K-__names__noun} to be {outputs.CH4--N2-selectivity_298_K-#}, the {outputs.H2S--H2O-selectivity_298_K-__names__noun} to be {outputs.H2S--H2O-selectivity_298_K-#}, and the {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3__names__noun} to be {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3#}. + Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend} {info.mofid.mofid#}. + - |- + User: I {#want|would like|have|need|must!} to {#design|synthesize|find!} a {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with specific gas adsorption properties. + Assistant: {#How can I help you?|How can I be of assistance?|What can I do for you?|That's cool, how can I help?|Interesting, can I be of any help?|Seems interesting, how can I support you?!} + User: I {#want|would like!} the {outputs.CO2-adsorption_energy-kJ--mol__names__noun} to be {outputs.CO2-adsorption_energy-kJ--mol#}, the {outputs.N2-adsorption_energy-kJ--mol__names__noun} to be {outputs.N2-adsorption_energy-kJ--mol#}, and the {outputs.CH4-adsorption_energy-kJ--mol__names__noun} to be {outputs.CH4-adsorption_energy-kJ--mol#}. + Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend} {info.mofid.mofid#}. diff --git a/data/tabular/qmof_gcmc/transform.py b/data/tabular/qmof_gcmc/transform.py index b99d4f542..1ec7d9482 100644 --- a/data/tabular/qmof_gcmc/transform.py +++ b/data/tabular/qmof_gcmc/transform.py @@ -8,20 +8,12 @@ def process(): df = pd.read_json( "https://huggingface.co/datasets/kjappelbaum/chemnlp-qmof-data/resolve/main/qmof_data.json" ) - df.dropna( subset=[ "outputs.CO2-henry_coefficient-mol--kg--Pa", "outputs.CO2-adsorption_energy-kJ--mol", "outputs.N2-henry_coefficient-mol--kg--Pa", "outputs.N2-adsorption_energy-kJ--mol", - "outputs.CO2-parasitic_energy_coal-MJ--kg", - "outputs.CO2-gravimetric_working_capacity_coal-kgCO2--kg", - "outputs.CO2-volumetric_working_capacity_coal-kgCO2--m3", - "outputs.CO2-parasitic_energy_nat_gas-MJ--kg", - "outputs.CO2-gravimetric_working_capacity_nat_gas-kgCO2--kg", - "outputs.CO2-volumetric_working_capacity_nat_gas-kgCO2--m3", - "outputs.CO2-final_purity_nat_gas-mol--mol", "outputs.CH4-henry_coefficient-mol--kg--Pa", "outputs.CH4-adsorption_energy-kJ--mol", "outputs.CH4-enthalphy_of_adsorption_58_bar_298_K-kJ--mol", @@ -67,14 +59,14 @@ def process(): inplace=True, ) - df["lg10_CO2_Henry"] = np.log10(df['outputs.CO2-henry_coefficient-mol--kg--Pa"']) + df["lg10_CO2_Henry"] = np.log10(df["outputs.CO2-henry_coefficient-mol--kg--Pa"]) df["lg10_N2_Henry"] = np.log10(df["outputs.N2-henry_coefficient-mol--kg--Pa"]) df["lg10_CH4_Henry"] = np.log10(df["outputs.CH4-henry_coefficient-mol--kg--Pa"]) - df["log10_O2_Henry"] = np.log10(df["outputs.O2-henry_coefficient-mol--kg--Pa"]) - df["log10_Xe_Henry"] = np.log10(df["outputs.Xe-henry_coefficient-mol--kg--Pa"]) - df["log10_Kr_Henry"] = np.log10(df["outputs.Kr-henry_coefficient-mol--kg--Pa"]) - df["log10_H2S_Henry"] = np.log(df["outputs.H2S-henry_coefficient-mol--kg--Pa"]) - df["log10_H20_Henry"] = np.log(df["outputs.H2O-henry_coefficient-mol--kg--Pa"]) + df["lg10_O2_Henry"] = np.log10(df["outputs.O2-henry_coefficient-mol--kg--Pa"]) + df["lg10_Xe_Henry"] = np.log10(df["outputs.Xe-henry_coefficient-mol--kg--Pa"]) + df["lg10_Kr_Henry"] = np.log10(df["outputs.Kr-henry_coefficient-mol--kg--Pa"]) + df["lg10_H2S_Henry"] = np.log(df["outputs.H2S-henry_coefficient-mol--kg--Pa"]) + df["lg10_H2O_Henry"] = np.log(df["outputs.H2O-henry_coefficient-mol--kg--Pa"]) df["info.mofid.smiles_nodes"] = df["info.mofid.smiles_nodes"].apply( lambda x: ", ".join(ast.literal_eval(x)) diff --git a/data/tabular/qmof_quantum/meta.yaml b/data/tabular/qmof_quantum/meta.yaml index 9d85970b6..f59ef16cb 100644 --- a/data/tabular/qmof_quantum/meta.yaml +++ b/data/tabular/qmof_quantum/meta.yaml @@ -118,11 +118,6 @@ identifiers: - noun: space group number license: CC-BY-4.0 num_points: 1986 -links: - - url: https://figshare.com/collections/Quantum_chemistry_structures_and_properties_of_134_kilo_molecules/978904 - description: original data source - - url: https://huggingface.co/datasets/n0w0f/qm9-csv/blob/main/qm9_dataset.csv - description: parsed dataset in csv format bibtex: - |- @article{Rosen_2021, diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 0543b7075..797fc2578 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -75,6 +75,8 @@ "blood_brain_barrier_martins_et_al", # because it is boolean target data "carcinogens", # because it is boolean target data "core_mof_no_topo", + "qmof_gcmc", + "qmof_quantum", "cav3_t-type_calcium_channels_butkiewicz", # because it is boolean target data "chebi_20", # target is text description "chembl_v29", # text only, no SMILES @@ -992,8 +994,6 @@ def apply_sampling_and_export( # path_data_dir = path_data_dir[index:] for path in path_data_dir: - # if "suzuki_miyaura_sach" not in path: - # continue # subselect one path # if path.find("data/tabular/") == -1: continue # if path.find("data/kg/") == -1: continue From 6ef4e29b1dc7b3838ea1c79c6cd4d0461b7ba773 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 7 Nov 2023 19:45:04 +0100 Subject: [PATCH 24/61] feat: re-add orbnet (#487) --- data/tabular/orbnet_denali/meta.yaml | 104 ++++++++++++++++++ .../orbnet_denali_structures/meta.yaml | 46 -------- .../orbnet_denali_structures/transform.py | 83 -------------- data/tabular/orbnet_denali/transform.py | 14 +++ data/text_sampling/text_sampling.py | 3 +- 5 files changed, 120 insertions(+), 130 deletions(-) create mode 100644 data/tabular/orbnet_denali/meta.yaml delete mode 100644 data/tabular/orbnet_denali/orbnet_denali_structures/meta.yaml delete mode 100644 data/tabular/orbnet_denali/orbnet_denali_structures/transform.py create mode 100644 data/tabular/orbnet_denali/transform.py diff --git a/data/tabular/orbnet_denali/meta.yaml b/data/tabular/orbnet_denali/meta.yaml new file mode 100644 index 000000000..4120879ec --- /dev/null +++ b/data/tabular/orbnet_denali/meta.yaml @@ -0,0 +1,104 @@ +--- +name: orbnet_denali +description: |- + Structures (including conformers, protomers, ...) of structures. + Has been used for training of OrbNet Denali. +targets: + - id: charge + type: ordinal + description: integer charge of the molecule + names: + - noun: charge + - id: xtb1_energy + type: continuous + description: XTB1 energy + units: Hartree + significant_digits: 5 + names: + - noun: total energy computed at the GFN1-xTB level of theory + - id: dft_energy + type: continuous + description: DFT energy + units: Hartree + significant_digits: 5 + names: + - noun: total energy computed at the {\omega}B97X-D3/def2-TZVP level of theory + - lot: the {\omega}B97X-D3/def2-TZVP +identifiers: + - id: SMILES + type: SMILES + description: SMILES + - id: xyz + type: XYZFILE + description: XYZ file + names: + - noun: XYZ file + - id: mol2000 + type: MOL2000FILE + description: MOL2000 file + names: + - noun: MOL2000 file + - id: mol3000 + type: MOL3000FILE + description: MOL3000 file + names: + - noun: MOL3000 file +license: CC BY 4.0 +links: + - url: https://arxiv.org/abs/2107.00299 + description: corresponding publication + - url: https://figshare.com/ndownloader/files/28672287 + description: structure download + md5: edd35e95a018836d5f174a3431a751df + - url: https://figshare.com/ndownloader/files/28672248 + description: label download + md5: bc9b612f75373d1d191ce7493eebfd62 + - url: https://figshare.com/articles/dataset/OrbNet_Denali_Training_Data/14883867?file=28672248 + description: data source +num_points: 1050713 +bibtex: + - |- + @article{Christensen_2021, + doi = {10.1063/5.0061990}, + url = {https://doi.org/10.1063%2F5.0061990}, + year = 2021, + month = {nov}, + publisher = {{AIP} Publishing}, + volume = {155}, + number = {20}, + author = {Anders S. Christensen and Sai Krishna Sirumalla and Zhuoran Qiao and Michael B. O'Connor and Daniel G. A. Smith and Feizhi Ding and Peter J. Bygrave and Animashree Anandkumar and Matthew Welborn and Frederick R. Manby and Thomas F. Miller}, + title = {{OrbNet} Denali: A machine learning potential for biological and organic chemistry with semi-empirical cost and {DFT} accuracy}, + journal = {The Journal of Chemical Physics} + } +templates: + - The {#molecule|chemical|compound|chemical structure!} with {SMILES__description} {SMILES#} has a charge of {charge#}. + - |- + Question: {#What is the|What's the!} structure of a conformer of the {#molecule|chemical|compound|chemical structure!} with {SMILES__description} {SMILES#}? + Constraint: Return a {xyz__names__noun}. + Answer: {xyz#} + - |- + Question: {#What is the|What's the!} structure of a conformer of the {#molecule|chemical|compound|chemical structure!} with {SMILES__description} {SMILES#}? + Constraint: Return a {mol2000__names__noun}. + Answer: {mol2000#} + - |- + Question: {#What is the|What's the!} structure of a conformer of the {#molecule|chemical|compound|chemical structure!} with {SMILES__description} {SMILES#}? + Constraint: Return a {mol3000__names__noun}. + Answer: {mol3000#} + - |- + Task: Return the total energy of a {#molecule|chemical|compound|chemical structure!} computed at the GFN1-xTB level of theory. + Description: The {#molecule|chemical|compound|chemical structure!} has the {xyz__names__noun} {xyz#}. + Answer: {xtb1_energy#} {xtb1_energy__units} + - |- + Task: Return the total energy of a {#molecule|chemical|compound|chemical structure!} computed at {dft_energy__names__lot} level of theory. + Description: The {#molecule|chemical|compound|chemical structure!} has the {xyz__names__noun} {xyz#}. + Answer: {dft_energy#} {dft_energy__units} + - |- + User: {#I want to|I have to|I must|I would like to!} know the GFN1-xTB total energy of the {#molecule|chemical|compound|chemical structure!} with {SMILES__description} {SMILES#}. + Assistant: Do you have the {xyz__names__noun} file of a conformer of the {#molecule|chemical|compound|chemical structure!}? + User: {#Yes:|Here it is:|I have it:|I do:!} {xyz#} + Assistant: The GFN1-xTB total energy of the {#molecule|chemical|compound|chemical structure!} is {xtb1_energy#} {xtb1_energy__units}. + - |- + User: {#I want to|I have to|I must|I would like to!} know {dft_energy__names__lot} total energy of the {#molecule|chemical|compound|chemical structure!} with {SMILES__description} {SMILES#}. + Assistant: Do you have the {xyz__names__noun} file of a conformer of the {#molecule|chemical|compound|chemical structure!}? + User: {#Yes:|Here it is:|I have it:|I do:!} {xyz#} + Assistant: The total energy on {dft_energy__names__lot} level of theory of the {#molecule|chemical|compound|chemical structure!} is {dft_energy#} {dft_energy__units}. diff --git a/data/tabular/orbnet_denali/orbnet_denali_structures/meta.yaml b/data/tabular/orbnet_denali/orbnet_denali_structures/meta.yaml deleted file mode 100644 index f9fe8461f..000000000 --- a/data/tabular/orbnet_denali/orbnet_denali_structures/meta.yaml +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: orbnet_denali_structures -description: |- - Structures (including conformers, protomers, ...) of structures. - Has been used for training of OrbNet Denali. -labels: - - id: charge - type: ordinal - description: integer charge of the molecule - names: - noun: charge -identifiers: - - id: SMILES - type: SMILES - description: SMILES - - id: path - type: XYZ - description: XYZ file -license: CC BY 4.0 -links: - - url: https://arxiv.org/abs/2107.00299 - description: corresponding publication - - url: https://figshare.com/ndownloader/files/28672287 - description: structure download - md5: edd35e95a018836d5f174a3431a751df - - url: https://figshare.com/ndownloader/files/28672248 - description: label download - md5: bc9b612f75373d1d191ce7493eebfd62 - - url: https://figshare.com/articles/dataset/OrbNet_Denali_Training_Data/14883867?file=28672248 - description: data source -num_points: 2344594 -bibtex: - - |- - @article{Broccatelli2011, - doi = {10.1021/jm101421d}, - url = {https://doi.org/10.1021/jm101421d}, - year = {2011}, - month = feb, - publisher = {American Chemical Society (ACS)}, - volume = {54}, - number = {6}, - author = {Fabio Broccatelli and Emanuele Carosati and Annalisa Neri and - Maria Frosini and Laura Goracci and Tudor I. Oprea and Gabriele Cruciani}, - title = {A Novel Approach for Predicting P-Glycoprotein (ABCB1) Inhibition - Using Molecular Interaction Fields}, - journal = {Journal of Medicinal Chemistry} diff --git a/data/tabular/orbnet_denali/orbnet_denali_structures/transform.py b/data/tabular/orbnet_denali/orbnet_denali_structures/transform.py deleted file mode 100644 index 3ceabaa58..000000000 --- a/data/tabular/orbnet_denali/orbnet_denali_structures/transform.py +++ /dev/null @@ -1,83 +0,0 @@ -import os - -import modin.pandas as pd -import numpy as np -from fire import Fire -from rdkit import Chem - -from chemnlp.utils import extract_tarball, load_config, xyz_to_mol - -_THIS_DIR = os.path.dirname(os.path.abspath(__file__)) -_LABEL_FILE = os.path.join(_THIS_DIR, "../denali_labels.csv") -_STRUCTURE_DIR = os.path.join(_THIS_DIR, "../xyz_files") - - -# perhaps set export MODIN_ENGINE=ray - - -def _download_files_if_not_existent(config): - # for some reason the number of files does not equal the number of rows - if not os.path.exists(_STRUCTURE_DIR): - print("🚧 Didn't find structure dir") - structure_link = list( - filter(lambda x: x["description"] == "structure download", config["links"]) - ) - extract_tarball(structure_link[0]["url"], "..", md5=structure_link[0]["md5"]) - # now, rerun check - # if not os.path.exists(_STRUCTURE_DIR) or len(xyz_files) != config["num_points"]: - # raise ValueError("Download failed!") - - if ( - not os.path.exists(_LABEL_FILE) - or len(pd.read_csv(_LABEL_FILE)) != config["num_points"] - ): - print(f"🚧 Didn't find enough rows, found {len(pd.read_csv(_LABEL_FILE))}") - csv_link = list( - filter(lambda x: x["description"] == "label download", config["links"]) - ) - extract_tarball(csv_link[0]["url"], "..", md5=csv_link[0]["md5"]) - # now, rerun check - if ( - not os.path.exists(_LABEL_FILE) - or len(pd.read_csv(_LABEL_FILE)) != config["num_points"] - ): - raise ValueError("Download failed!") - - -def _add_smiles_and_filepath(row) -> pd.Series: - try: - filepath = os.path.join( - _STRUCTURE_DIR, row["mol_id"], row["sample_id"] + ".xyz" - ) - mol = xyz_to_mol(filepath, row["charge"]) - path = os.path.abspath(filepath) - - return pd.Series([Chem.MolToSmiles(mol), str(path)]) - - except Exception: - return pd.Series([np.nan, np.nan]) - - -def _create_smiles_and_filepath(debug: bool = False): - df = pd.read_csv(_LABEL_FILE) - - if debug: - df = df.sample(50) - - df[["SMILES", "path"]] = df.apply(_add_smiles_and_filepath, axis=1) - - df.dropna(subset=["SMILES", "path", "charge"], inplace=True) - - df.to_csv("data_clean.csv") - - -def cli(debug: bool = False): - config = load_config(os.path.join(_THIS_DIR, "meta.yaml")) - - _download_files_if_not_existent(config=config) - - _create_smiles_and_filepath(debug) - - -if __name__ == "__main__": - Fire(cli) diff --git a/data/tabular/orbnet_denali/transform.py b/data/tabular/orbnet_denali/transform.py new file mode 100644 index 000000000..da31a0596 --- /dev/null +++ b/data/tabular/orbnet_denali/transform.py @@ -0,0 +1,14 @@ +from datasets import load_dataset + + +def process(): + dataset = load_dataset("kjappelbaum/chemnlp-orbnet-denali") + df = dataset["train"].to_pandas() + df = df.dropna() + print(len(df)) + df.rename(columns={"smiles": "SMILES"}, inplace=True) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 797fc2578..7743c0276 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -145,7 +145,8 @@ "MUV_846", # boolean target data "MUV_852", # boolean target data "MUV_858", # boolean target data - "MUV_859" # boolean target data + "MUV_859", # boolean target data + "orbnet_denali" # only makes sense for the structure files # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] From 24d0c580414f7876922e91cedac901dfd81f17d9 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Tue, 7 Nov 2023 19:47:23 +0100 Subject: [PATCH 25/61] Add SAFE representation (#482) Co-authored-by: Kevin Maik Jablonka Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> --- .github/workflows/install.yaml | 7 +- conda.yaml | 4 +- data/text_sampling/extend_tabular.py | 110 ++---------------- .../text_sampling/extend_tabular_processed.py | 1 + pyproject.toml | 20 ++-- src/chemnlp/data/ner.py | 3 +- src/chemnlp/data/reprs.py | 77 ++++++++++++ tests/test_ner.py | 15 +-- tests/test_reprs.py | 15 +++ 9 files changed, 123 insertions(+), 129 deletions(-) create mode 100644 src/chemnlp/data/reprs.py create mode 100644 tests/test_reprs.py diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index de88ecc61..bc327c087 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -14,7 +14,7 @@ jobs: with: environment-file: conda.yaml activate-environment: chemnlp - python-version: 3.8 + python-version: 3.9 auto-update-conda: true auto-activate-base: false - name: Validate yaml @@ -22,3 +22,8 @@ jobs: run: | conda activate chemnlp python -m src.chemnlp.data_val.validate data + - name: Tests + shell: bash -l {0} + run: | + pip install pytest + pytest tests diff --git a/conda.yaml b/conda.yaml index ebcc2e300..b6badfc78 100644 --- a/conda.yaml +++ b/conda.yaml @@ -1,9 +1,9 @@ --- name: dummy dependencies: - - python==3.8.* + - python==3.9.* - pip - pip: - . - .[dev] - # - ".[dataset_creation]" + - .[dataset_creation] diff --git a/data/text_sampling/extend_tabular.py b/data/text_sampling/extend_tabular.py index d6cf17a8e..9d39fc5b3 100644 --- a/data/text_sampling/extend_tabular.py +++ b/data/text_sampling/extend_tabular.py @@ -5,109 +5,16 @@ import time from functools import partial -import deepsmiles import pandas as pd -import pubchempy as pcp -import requests -import selfies -from rdkit import Chem - -# tucan needs very likely python 3.10 -# from tucan.canonicalization import canonicalize_molecule -# from tucan.io import graph_from_molfile_text -# from tucan.serialization import serialize_molecule from utils import load_yaml -# not used yet -# def augment_smiles(smiles: str, int_aug: int = 50, deduplicate: bool = True) -> str: -# """ -# Takes a SMILES (not necessarily canonical) and returns `int_aug` random variations of this SMILES. -# """ -# -# mol = Chem.MolFromSmiles(smiles) -# -# if mol is None: -# return None -# else: -# if int_aug > 0: -# augmented = [ -# Chem.MolToSmiles(mol, canonical=False, doRandom=True) -# for _ in range(int_aug) -# ] -# if deduplicate: -# augmented = list(set(augmented)) -# return augmented -# else: -# raise ValueError("int_aug must be greater than zero.") - - -def smiles_to_selfies(smiles: str) -> str: - """ - Takes a SMILES and return the selfies encoding. - """ - - return selfies.encoder(smiles) - - -def smiles_to_deepsmiles(smiles: str) -> str: - """ - Takes a SMILES and return the DeepSMILES encoding. - """ - converter = deepsmiles.Converter(rings=True, branches=True) - return converter.encode(smiles) - - -def smiles_to_canoncial(smiles: str) -> str: - """ - Takes a SMILES and return the canoncial SMILES. - """ - mol = Chem.MolFromSmiles(smiles) - return Chem.MolToSmiles(mol) - - -def smiles_to_inchi(smiles: str) -> str: - """ - Takes a SMILES and return the InChI. - """ - mol = Chem.MolFromSmiles(smiles) - return Chem.MolToInchi(mol) - - -# def smiles_to_tucan(smiles: str) -> str: -# """ -# Takes a SMILES and return the Tucan encoding. -# For this, create a molfile as StringIO, read it with graph_from_file, -# canonicalize it and serialize it. -# """ -# molfile = Chem.MolToMolBlock(Chem.MolFromSmiles(smiles), forceV3000=True) -# mol = graph_from_molfile_text(molfile) -# mol = canonicalize_molecule(mol) -# return serialize_molecule(mol) - - -CACTUS = "https://cactus.nci.nih.gov/chemical/structure/{0}/{1}" - - -def smiles_to_iupac_name(smiles: str) -> str: - """Use the chemical name resolver https://cactus.nci.nih.gov/chemical/structure. - If this does not work, use pubchem. - """ - try: - time.sleep(0.001) - rep = "iupac_name" - url = CACTUS.format(smiles, rep) - response = requests.get(url, allow_redirects=True, timeout=10) - response.raise_for_status() - name = response.text - if "html" in name: - return None - return name - except Exception: - try: - compound = pcp.get_compounds(smiles, "smiles") - return compound[0].iupac_name - except Exception: - return None +from chemnlp.data.reprs import ( # smiles_to_safe, + smiles_to_canoncial, + smiles_to_deepsmiles, + smiles_to_inchi, + smiles_to_iupac_name, + smiles_to_selfies, +) def _try_except_none(func, *args, **kwargs): @@ -141,8 +48,8 @@ def line_reps_from_smiles( "deepsmiles": _try_except_none(smiles_to_deepsmiles, smiles), "canonical": _try_except_none(smiles_to_canoncial, smiles), "inchi": _try_except_none(smiles_to_inchi, smiles), - # "tucan": _try_except_none(smiles_to_tucan, smiles), "iupac_name": _try_except_none(smiles_to_iupac_name, smiles), + # "safe": _try_except_none(smiles_to_safe, smiles), } # Note: This needs proper filelocking to work. @@ -248,6 +155,7 @@ def line_reps_from_smiles( "inchi": [], # "tucan": [], "iupac_name": [], + # "safe": [], } for entry in parsed: diff --git a/data/text_sampling/extend_tabular_processed.py b/data/text_sampling/extend_tabular_processed.py index 0fc3ffd8b..9882d525d 100644 --- a/data/text_sampling/extend_tabular_processed.py +++ b/data/text_sampling/extend_tabular_processed.py @@ -16,6 +16,7 @@ "canonical", "inchi", "iupac_name", + # "safe", ] if not os.path.isfile(path_processed_smiles): diff --git a/pyproject.toml b/pyproject.toml index 4a9c05aa2..9b197dd80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,17 +6,10 @@ build-backend = "setuptools.build_meta" name = "chemnlp" description = "Open source chemistry dataset & LLM" readme = "README.md" -requires-python = "==3.8.*" # required for gpt-neox +requires-python = "==3.9.*" dependencies = [ - "datasets>=2.8.0", - "numpy>=1.21.2", - "openpyxl>=3.0.9", - "pandas>=1.3.3", - "peft", + "pandas", "pydantic", - "pytdc>=0.3.9", - "transformers", - "wandb==0.10.28" ] dynamic = ["version"] @@ -30,7 +23,7 @@ dev = [ "pre-commit", "pydantic_yaml<=0.11.2", "pytest", - "pubchempy" + "pubchempy", ] dataset_creation = [ @@ -44,9 +37,10 @@ dataset_creation = [ "bioc", "pylatexenc", "canonicalize_psmiles@git+https://github.com/Ramprasad-Group/canonicalize_psmiles.git", - #"tucan@git+https://github.com/TUCAN-nest/TUCAN.git" # the current version has bugs due to the type checking, maybe this is due to our python version? "rxn-chem-utils", - "givemeconformer" + # "safe-mol", + "backoff", + "givemeconformer", ] training = [ @@ -61,7 +55,7 @@ tokenisation = [ "zstandard", "apache_beam", "mwparserfromhell", - "jsonlines" + "jsonlines", ] [tool.setuptools_scm] diff --git a/src/chemnlp/data/ner.py b/src/chemnlp/data/ner.py index 9ab3821ae..d7b7954b7 100644 --- a/src/chemnlp/data/ner.py +++ b/src/chemnlp/data/ner.py @@ -1,7 +1,8 @@ import re -def group_tokens_by_labels(tokens, labels, join=True): +def group_tokens_by_labels(tokens, labels): + join = True grouped_tokens = [] current_group = [] diff --git a/src/chemnlp/data/reprs.py b/src/chemnlp/data/reprs.py new file mode 100644 index 000000000..58beb4c5d --- /dev/null +++ b/src/chemnlp/data/reprs.py @@ -0,0 +1,77 @@ +import backoff +import deepsmiles +import pubchempy as pcp +import requests +import safe +import selfies +from rdkit import Chem + + +def smiles_to_selfies(smiles: str) -> str: + """ + Takes a SMILES and return the selfies encoding. + """ + + return selfies.encoder(smiles) + + +def smiles_to_deepsmiles(smiles: str) -> str: + """ + Takes a SMILES and return the DeepSMILES encoding. + """ + converter = deepsmiles.Converter(rings=True, branches=True) + return converter.encode(smiles) + + +def smiles_to_canoncial(smiles: str) -> str: + """ + Takes a SMILES and return the canoncial SMILES. + """ + mol = Chem.MolFromSmiles(smiles) + return Chem.MolToSmiles(mol) + + +def smiles_to_inchi(smiles: str) -> str: + """ + Takes a SMILES and return the InChI. + """ + mol = Chem.MolFromSmiles(smiles) + return Chem.MolToInchi(mol) + + +def smiles_to_safe(smiles: str) -> str: + """ + Takes a SMILES and return the SAFE. + """ + return safe.encode(smiles, seed=42, canonical=True, randomize=False) + + +CACTUS = "https://cactus.nci.nih.gov/chemical/structure/{0}/{1}" + + +@backoff.on_exception(backoff.expo, requests.exceptions.RequestException, max_time=10) +def cactus_request_w_backoff(smiles, rep="iupac_name"): + url = CACTUS.format(smiles, rep) + response = requests.get(url, allow_redirects=True, timeout=10) + response.raise_for_status() + name = response.text + if "html" in name: + return None + return name + + +def smiles_to_iupac_name(smiles: str) -> str: + """Use the chemical name resolver https://cactus.nci.nih.gov/chemical/structure. + If this does not work, use pubchem. + """ + try: + name = cactus_request_w_backoff(smiles, rep="iupac_name") + if name is None: + raise Exception + return name + except Exception: + try: + compound = pcp.get_compounds(smiles, "smiles") + return compound[0].iupac_name + except Exception: + return None diff --git a/tests/test_ner.py b/tests/test_ner.py index a72336bbc..09b1a65be 100644 --- a/tests/test_ner.py +++ b/tests/test_ner.py @@ -3,21 +3,14 @@ def test_tokens_by_label(): tokens = ["a", "b", "c", "d", "e", "f"] - labels = [0, 1, 1, 0, 1, 0] - grouped_tokens = group_tokens_by_labels(tokens, labels, join=False) - assert grouped_tokens == [["b"], ["c"], ["e"]] - - labels = [0, 1, 2, 0, 1, 0] - grouped_tokens = group_tokens_by_labels(tokens, labels, join=False) - assert grouped_tokens == [["b", "c"], ["e"]] labels = [0, 1, 1, 0, 1, 0] - grouped_tokens = group_tokens_by_labels(tokens, labels, join=True) - assert grouped_tokens == ["b", "c", "e"] + grouped_tokens = group_tokens_by_labels(tokens, labels) + assert set(grouped_tokens) == set(["b", "c", "e"]) labels = [0, 1, 2, 0, 1, 0] - grouped_tokens = group_tokens_by_labels(tokens, labels, join=True) - assert grouped_tokens == ["b c", "e"] + grouped_tokens = group_tokens_by_labels(tokens, labels) + assert set(grouped_tokens) == set(["b c", "e"]) def test_join_punctuation(): diff --git a/tests/test_reprs.py b/tests/test_reprs.py new file mode 100644 index 000000000..9e8c7583f --- /dev/null +++ b/tests/test_reprs.py @@ -0,0 +1,15 @@ +from chemnlp.data.reprs import smiles_to_iupac_name, smiles_to_safe + + +def test_smiles_to_safe(): + safe = smiles_to_safe("CC(Cc1ccc(cc1)C(C(=O)O)C)C") + # equivalent, only rotations, it is not completely deterministic + assert ( + safe == "c12ccc3cc1.C3(C)C(=O)O.CC(C)C2" + or safe == "c13ccc2cc1.C2(C)C(=O)O.CC(C)C3" + ) + + +def test_smiles_to_iupac_name(): + iupac_name = smiles_to_iupac_name("CC(Cc1ccc(cc1)C(C(=O)O)C)C") + assert iupac_name == "2-[4-(2-methylpropyl)phenyl]propanoic acid" From 2fd4d75a9dfc09bca45ddca18d9122dedeb73479 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 8 Nov 2023 07:46:56 +0100 Subject: [PATCH 26/61] feat: add chemcaption data (#466) --- data/tabular/chemcaption_rdkit/meta.yaml | 342 +++++++++++++++++++ data/tabular/chemcaption_rdkit/preprocess.py | 79 +++++ data/tabular/chemcaption_rdkit/transform.py | 68 ++++ data/text_sampling/text_sampling.py | 1 + src/chemnlp/data/reprs.py | 3 +- tests/test_reprs.py | 20 +- 6 files changed, 502 insertions(+), 11 deletions(-) create mode 100644 data/tabular/chemcaption_rdkit/meta.yaml create mode 100644 data/tabular/chemcaption_rdkit/preprocess.py create mode 100644 data/tabular/chemcaption_rdkit/transform.py diff --git a/data/tabular/chemcaption_rdkit/meta.yaml b/data/tabular/chemcaption_rdkit/meta.yaml new file mode 100644 index 000000000..929d57f27 --- /dev/null +++ b/data/tabular/chemcaption_rdkit/meta.yaml @@ -0,0 +1,342 @@ +--- +name: chemcaption_rdkit +description: |- + This dataset contains molecular descriptors, mostly derived using RDKit. +targets: + - id: num_valence_electrons + type: categorical + description: number of valence electrons + names: + - noun: number of valence electrons + - noun: valence electron count + - only_name: valence electrons + - id: rotable_proportion + type: continuous + significant_digits: 3 + description: proportion of rotatable bonds + names: + - noun: proportion of rotatable bonds + - noun: rotatable bond proportion + - id: non_rotable_proportion + type: continuous + significant_digits: 3 + description: proportion of non-rotatable bonds + names: + - noun: proportion of non-rotatable bonds + - noun: non-rotatable bond proportion + - id: num_single_bonds + type: categorical + description: number of single bonds + names: + - noun: number of single bonds + - only_name: single bonds + - id: num_double_bonds + type: categorical + description: number of double bonds + names: + - noun: number of double bonds + - only_name: double bonds + - id: num_triple_bonds + type: categorical + description: number of triple bonds + names: + - noun: number of triple bonds + - only_name: triple bonds + - id: num_aromatic_bonds + type: categorical + description: number of aromatic bonds + names: + - noun: number of aromatic bonds + - only_name: aromatic bonds + - id: num_bonds + type: categorical + description: number of bonds + names: + - noun: number of bonds + - noun: bond count + - only_name: bonds + - id: num_carbon_atoms + type: categorical + description: number of carbon atoms + names: + - noun: number of carbon atoms + - noun: carbon atom count + - only_name: carbon atoms + - id: num_hydrogen_atoms + type: categorical + description: number of hydrogen atoms + names: + - noun: number of hydrogen atoms + - noun: hydrogen atom count + - only_name: hydrogen atoms + - id: num_nitrogen_atoms + type: categorical + description: number of nitrogen atoms + names: + - noun: number of nitrogen atoms + - noun: nitrogen atom count + - only_name: nitrogen atoms + - id: num_oxygen_atoms + type: categorical + description: number of oxygen atoms + names: + - noun: number of oxygen atoms + - noun: oxygen atom count + - only_name: oxygen atoms + - id: num_hydrogen_bond_acceptors + type: categorical + description: number of hydrogen bond acceptors + names: + - noun: number of hydrogen bond acceptors + - noun: hydrogen bond acceptor count + - only_name: hydrogen bond acceptors + - id: num_hydrogen_bond_donors + type: categorical + description: number of hydrogen bond donors + names: + - noun: number of hydrogen bond donors + - noun: hydrogen bond donor count + - only_name: hydrogen bond donors + - id: num_lipinski_violations + type: categorical + description: number of Lipinski violations + names: + - noun: number of violations of Lipinski's rule of five + - noun: number of violations of Lipinski's rule of 5 + - only_name: violations of Lipinski's rule of five + - only_name: violations of Lipinski's rule of 5 + - id: monoisotopic_molecular_mass + type: continuous + significant_digits: 3 + description: monoisotopic molecular mass + names: + - noun: monoisotopic molecular mass + - noun: monoisotopic mass + units: Da + - id: carbon_mass + type: continuous + significant_digits: 3 + description: carbon mass + names: + - noun: carbon mass fraction + - noun: carbon mass proportion + - id: hydrogen_mass + type: continuous + significant_digits: 3 + description: hydrogen mass + names: + - noun: hydrogen mass fraction + - noun: hydrogen mass proportion + - id: nitrogen_mass + type: continuous + significant_digits: 3 + description: nitrogen mass + names: + - noun: nitrogen mass fraction + - noun: nitrogen mass proportion + - id: oxygen_mass + type: continuous + significant_digits: 3 + description: oxygen mass + names: + - noun: oxygen mass fraction + - noun: oxygen mass proportion + - id: num_chiral_centers + type: categorical + description: number of chiral centers + names: + - noun: number of chiral centers + - noun: chiral center count + - only_name: chiral centers + - id: inertial_shape_factor + type: continuous + significant_digits: 3 + description: inertial shape factor + names: + - noun: inertial shape factor + - id: eccentricity + type: continuous + significant_digits: 3 + description: eccentricity + names: + - noun: eccentricity + - id: asphericity + type: continuous + significant_digits: 3 + description: asphericity + names: + - noun: asphericity + - id: npr1_value + type: continuous + significant_digits: 3 + description: NPR1 value + names: + - noun: NPR1 value + - noun: normalized principal moment of inertia ratio 1 value + - noun: normalized principal moment of inertia ratio 1 (NPR1) value + - id: npr2_value + type: continuous + significant_digits: 3 + description: NPR2 value + names: + - noun: NPR2 value + - noun: normalized principal moment of inertia ratio 2 value + - noun: normalized principal moment of inertia ratio 2 (NPR2) value + - id: pmi1_value + type: continuous + significant_digits: 3 + description: PMI1 value + names: + - noun: PMI1 value + - noun: principal moment of inertia 1 value + - noun: principal moment of inertia 1 (PMI1) value + - id: pmi2_value + type: continuous + significant_digits: 3 + description: PMI2 value + names: + - noun: PMI2 value + - noun: principal moment of inertia 2 value + - noun: principal moment of inertia 2 (PMI2) value + - id: molecular_formula + type: text + description: molecular formula + names: + - noun: molecular formula + - noun: chemical formula +identifiers: + - id: representation + type: text + description: representation + - id: representation_type + type: text + description: representation type +license: CC BY 4.0 +num_points: 79811 +links: + - url: https://github.com/lamalab-org/chem-caption + description: Original codebase used to generate this dataset +templates: + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_valence_electrons#} {num_valence_electrons__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {rotable_proportion__names__noun} of {rotable_proportion#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {non_rotable_proportion__names__noun} of + {non_rotable_proportion#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_single_bonds#} {num_single_bonds__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_double_bonds#} {num_double_bonds__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_triple_bonds#} {num_triple_bonds__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_aromatic_bonds#} {num_aromatic_bonds__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_bonds#} {num_bonds__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_carbon_atoms#} {num_carbon_atoms__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_hydrogen_atoms#} {num_hydrogen_atoms__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_nitrogen_atoms#} {num_nitrogen_atoms__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_oxygen_atoms#} {num_oxygen_atoms__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_lipinski_violations#} {num_lipinski_violations__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {monoisotopic_molecular_mass__names__noun} + of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {carbon_mass__names__noun} of {carbon_mass#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {hydrogen_mass__names__noun} of {hydrogen_mass#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {nitrogen_mass__names__noun} of {nitrogen_mass#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has an {oxygen_mass__names__noun} of {oxygen_mass#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has {num_chiral_centers#} {num_chiral_centers__names__only_name}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has an {inertial_shape_factor__names__noun} of + {inertial_shape_factor#}. + - A conformer of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has an {eccentricity__names__noun} + of {eccentricity#}. + - A conformer of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has an {asphericity__names__noun} + of {asphericity#}. + - A conformer of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has an {npr1_value__names__noun} + of {npr1_value#}. + - A conformer of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has an {npr2_value__names__noun} + of {npr2_value#}. + - A conformer of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {pmi1_value__names__noun} + of {pmi1_value#}. + - A conformer of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has a {pmi2_value__names__noun} + of {pmi2_value#}. + - The {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#} has the {molecular_formula__names__noun} {molecular_formula#}. + - |- + Question: What is the {molecular_formula__names__noun} and {monoisotopic_molecular_mass__names__noun} of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#}? + Constraint: Answer by only returning the values separated by a comma. + Answer: {molecular_formula#}, {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units} + - |- + Question: What is the {molecular_formula__names__noun} and {num_valence_electrons__names__noun} of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#}? + Constraint: Answer by only returning the values separated by a comma. + Answer: {molecular_formula#}, {num_valence_electrons#} + - |- + Question: What is the {molecular_formula__names__noun}, {rotable_proportion__names__noun}, and {num_chiral_centers__names__noun} of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#}? + Constraint: Answer by only returning the values separated by a comma. + Answer: {molecular_formula#}, {rotable_proportion#}, {num_chiral_centers#} + - |- + Question: What is the {carbon_mass__names__noun}, {hydrogen_mass__names__noun}, {nitrogen_mass__names__noun}, and {oxygen_mass__names__noun} of the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#}? + Constraint: Answer by only returning the values separated by a comma. + Answer: {carbon_mass#}, {hydrogen_mass#}, {nitrogen_mass#}, {oxygen_mass#} + - |- + User: I {#want|need|have!} to design a {#molecule|chemical|compound|chemical structure!} with {molecular_formula__names__noun} {molecular_formula#}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: I {#want|would like!} the {#molecule|chemical|compound|chemical structure!} to have {num_valence_electrons#} {num_valence_electrons__names__noun}, {num_chiral_centers#} {num_chiral_centers__names__only_name}, and {num_lipinski_violations#} {num_lipinski_violations__names__only_name}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|need|have!} to design a {#molecule|chemical|compound|chemical structure!} with {num_lipinski_violations#} {num_lipinski_violations__names__only_name}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: I {#want|would like!} the {#molecule|chemical|compound|chemical structure!} to have {num_bonds#} {num_bonds__names__only_name}, {num_chiral_centers#} {num_chiral_centers__names__only_name}, and a {carbon_mass__names__noun} of {carbon_mass#}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|need|have!} to design a {#molecule|chemical|compound|drug|chemical structure!} with {num_lipinski_violations#} {num_lipinski_violations__names__only_name}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have {num_bonds#} {num_bonds__names__only_name}. + Assistant: {#OK, that already helps constraining my search. |Thanks, that already helps constraining my search. |Thanks, that already helps. |OK, that already helps. |!}It would {#help|be great|be useful!} if you could tell me more about the {#molecule|chemical|compound|drug|chemical structure!} you are looking for. + User: I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have {num_chiral_centers#} {num_chiral_centers__names__only_name}. {#In addition,|Additionally,|Moreover,!} I want the {#molecule|chemical|compound|drug|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|need|have!} to design a {#molecule|chemical|compound|drug|chemical structure!} with {num_lipinski_violations#} {num_lipinski_violations__names__only_name}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have {num_bonds#} {num_bonds__names__only_name}. + Assistant: {#OK, that already helps constraining my search. |Thanks, that already helps constraining my search. |Thanks, that already helps. |OK, that already helps. |!}It would {#help|be great|be useful!} if you could tell me more about the {#molecule|chemical|compound|drug|chemical structure!} you {#want to design|are looking for|are interested in!}. + User: I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have {num_chiral_centers#} {num_chiral_centers__names__only_name}. {#In addition,|Additionally,|Moreover,!} I want the {#molecule|chemical|compound|drug|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|need|have!} to design a {#molecule|chemical|compound|drug|chemical structure!} with a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have {num_bonds#} {num_bonds__names__only_name}. + Assistant: {#OK, that already helps constraining my search. |Thanks, that already helps constraining my search. |Thanks, that already helps. |OK, that already helps. |!}It would {#help|be great|be useful!} if you could tell me more about the {#molecule|chemical|compound|drug|chemical structure!} you {#want to design|are looking for|are interested in!}. + User: I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have {num_chiral_centers#} {num_chiral_centers__names__only_name}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#have some questions|want to ask you!} about the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + Assistant: {#How can I help?|What can I do for you?|How can I be of assistance?!} + User: {#What is|I want to know|I need to know!} the {molecular_formula__names__noun} and {monoisotopic_molecular_mass__names__noun} of this {#molecule|chemical|compound|drug|chemical structure!}. + Assistant: The {#molecule|chemical|compound|drug|chemical structure!} has the {molecular_formula__names__noun} {molecular_formula#} and a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. + - |- + User: I {#have some questions|want to ask you!} about the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + Assistant: {#How can I help?|What can I do for you?|How can I be of assistance?!} + User: {#What is|I want to know|I need to know!} the {asphericity__names__noun} of this {#molecule|chemical|compound|drug|chemical structure!}. + Assistant: The {#molecule|chemical|compound|drug|chemical structure!} has an {asphericity__names__noun} of {asphericity#}. + - |- + User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {asphericity__names__noun} of {asphericity#}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {eccentricity__names__noun} of {eccentricity#}. + Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {npr1_value__names__noun} of {npr1_value#} and a {molecular_formula__names__noun} of {molecular_formula#}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {eccentricity__names__noun} of {eccentricity#}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {asphericity__names__noun} of {asphericity#}. + Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {num_lipinski_violations#} {num_lipinski_violations__names__only_name} and a {molecular_formula__names__noun} of {molecular_formula#}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {npr1_value__names__noun} of {npr1_value#}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {npr2_value__names__noun} of {npr2_value#}. + Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {molecular_formula__names__noun} of {molecular_formula#}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. + - |- + User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {pmi1_value__names__noun} of {pmi1_value#}. + Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {pmi2_value__names__noun} of {pmi2_value#}. + Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} + User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {molecular_formula__names__noun} of {molecular_formula#}. + Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. diff --git a/data/tabular/chemcaption_rdkit/preprocess.py b/data/tabular/chemcaption_rdkit/preprocess.py new file mode 100644 index 000000000..4d05334c0 --- /dev/null +++ b/data/tabular/chemcaption_rdkit/preprocess.py @@ -0,0 +1,79 @@ +import ast +from collections import defaultdict +from glob import glob + +import pandas as pd +from datasets import Dataset + +allowed_single_output_features = [ + "['num_valence_electrons']", + "['monoisotopic_molecular_mass']", + "['molecular_formula']", + "['num_hydrogen_bond_acceptors']", + "['num_hydrogen_bond_donors']", + "['num_lipinski_violations']", + "['inertial_shape_factor']", + "['eccentricity']", + "['asphericity']", + "['num_chiral_centers']", +] + +allowed_multi_output_features = [ + "['rotable_proportion', 'non_rotable_proportion']", + "['num_unspecified_bond', 'num_single_bonds', 'num_double_bonds', 'num_triple_bonds', 'num_quadruple_bonds', 'num_quintuple_bonds', 'num_hextuple_bonds', 'num_oneandahalf_bonds', 'num_twoandahalf_bonds', 'num_threeandahalf_bonds', 'num_fourandahalf_bonds', 'num_fiveandahalf_bonds', 'num_aromatic_bonds', 'num_ionic_bonds', 'num_hydrogen_bonds', 'num_threecenter_bonds', 'num_dativeone_bonds', 'num_dative_bonds', 'num_other_bonds', 'num_zero_bonds', 'num_bonds']", # noqa + "['carbon_mass', 'hydrogen_mass', 'nitrogen_mass', 'oxygen_mass']", + "['num_carbon_atoms', 'num_hydrogen_atoms', 'num_nitrogen_atoms', 'num_oxygen_atoms']", + "['npr1_value', 'npr2_value']", + "['pmi1_value', 'pmi2_value', 'pmi3_value']", +] + + +def get_allowed_features(): + return allowed_single_output_features + allowed_multi_output_features + + +def extract_output_feature(row): + completion = row["completion"] + completion = ast.literal_eval(completion) + labels = row["completion_labels"] + labels = ast.literal_eval(labels) + + return dict(zip(completion, labels)) + + +def extract_features_frame(file): + molecular_features = defaultdict(dict) + df = pd.read_json(file, lines=True) + df["completion_labels"] = df["completion_labels"].astype(str) + df["completion"] = df["completion"].astype(str) + subset = df[df["completion_labels"].str.contains("|".join(get_allowed_features()))] + + for _index, row in subset.iterrows(): + molecule = row["representation"] + representation_type = row["representation_type"] + features = extract_output_feature(row) + features["representation_type"] = representation_type + molecular_features[molecule].update(features) + + list_of_dicts = [] + for k, v in molecular_features.items(): + v["representation"] = k + list_of_dicts.append(v) + + del molecular_features + del df + + return pd.DataFrame(list_of_dicts) + + +if __name__ == "__main__": + all_files = glob("*.jsonl") + all_dfs = [] + for file in all_files: + df = extract_features_frame(file) + all_dfs.append(df) + + df = pd.concat(all_dfs) + + ds = Dataset.from_pandas(df) + ds.push_to_hub(repo_id="kjappelbaum/chemnlp-chem-caption", config_name="rdkit_feat") diff --git a/data/tabular/chemcaption_rdkit/transform.py b/data/tabular/chemcaption_rdkit/transform.py new file mode 100644 index 000000000..5448be304 --- /dev/null +++ b/data/tabular/chemcaption_rdkit/transform.py @@ -0,0 +1,68 @@ +import fire +import pandas as pd + + +def process(): + df = pd.read_parquet( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-chem-caption/resolve/main/rdkit_feat/train-00000-of-00001-7cea16ab26bf74cf.parquet?download=true" # noqa + ) + df["num_bonds_simple"] = df[ + [ + "num_single_bonds", + "num_double_bonds", + "num_triple_bonds", + "num_quadruple_bonds", + "num_quintuple_bonds", + "num_aromatic_bonds", + ] + ].sum(axis=1) + + df = df[df["num_bonds_simple"].astype(int) == df["num_bonds"].astype(int)] + + df[ + [ + "num_valence_electrons", + "num_single_bonds", + "num_double_bonds", + "num_triple_bonds", + "num_quadruple_bonds", + "num_quintuple_bonds", + "num_aromatic_bonds", + "num_bonds", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ] = df[ + [ + "num_valence_electrons", + "num_single_bonds", + "num_double_bonds", + "num_triple_bonds", + "num_quadruple_bonds", + "num_quintuple_bonds", + "num_aromatic_bonds", + "num_bonds", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ].astype( + int + ) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + fire.Fire(process) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 7743c0276..df1f300c7 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -80,6 +80,7 @@ "cav3_t-type_calcium_channels_butkiewicz", # because it is boolean target data "chebi_20", # target is text description "chembl_v29", # text only, no SMILES + "chemcaption_rdkit", # text only, no SMILES "choline_transporter_butkiewicz", # because it is boolean target data "clintox", # because it is boolean target data "cyp2c9_substrate_carbonmangels", # boolean target data diff --git a/src/chemnlp/data/reprs.py b/src/chemnlp/data/reprs.py index 58beb4c5d..0660ea115 100644 --- a/src/chemnlp/data/reprs.py +++ b/src/chemnlp/data/reprs.py @@ -2,7 +2,6 @@ import deepsmiles import pubchempy as pcp import requests -import safe import selfies from rdkit import Chem @@ -43,6 +42,8 @@ def smiles_to_safe(smiles: str) -> str: """ Takes a SMILES and return the SAFE. """ + import safe + return safe.encode(smiles, seed=42, canonical=True, randomize=False) diff --git a/tests/test_reprs.py b/tests/test_reprs.py index 9e8c7583f..0cc648030 100644 --- a/tests/test_reprs.py +++ b/tests/test_reprs.py @@ -1,13 +1,13 @@ -from chemnlp.data.reprs import smiles_to_iupac_name, smiles_to_safe - - -def test_smiles_to_safe(): - safe = smiles_to_safe("CC(Cc1ccc(cc1)C(C(=O)O)C)C") - # equivalent, only rotations, it is not completely deterministic - assert ( - safe == "c12ccc3cc1.C3(C)C(=O)O.CC(C)C2" - or safe == "c13ccc2cc1.C2(C)C(=O)O.CC(C)C3" - ) +from chemnlp.data.reprs import smiles_to_iupac_name + +# not used at the moment +# def test_smiles_to_safe(): +# safe = smiles_to_safe("CC(Cc1ccc(cc1)C(C(=O)O)C)C") +# # equivalent, only rotations, it is not completely deterministic +# assert ( +# safe == "c12ccc3cc1.C3(C)C(=O)O.CC(C)C2" +# or safe == "c13ccc2cc1.C2(C)C(=O)O.CC(C)C3" +# ) def test_smiles_to_iupac_name(): From ff97b24577672d84842a9f8cfbb6d3c85e522d18 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 8 Nov 2023 12:15:07 +0100 Subject: [PATCH 27/61] deduplicate NER (#489) --- data/tabular/bio_ner/transform.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/data/tabular/bio_ner/transform.py b/data/tabular/bio_ner/transform.py index ab82c11e1..7c5e2cb50 100644 --- a/data/tabular/bio_ner/transform.py +++ b/data/tabular/bio_ner/transform.py @@ -77,6 +77,12 @@ def get_and_transform_data(): # create dict with entity count as key data = {} for path in paths: + if "BC5CDR-chem" in path: + continue # treated separately + if "BC5CDR-disease" in path: + continue # treated separately + if "NCBI-disease" in path: + continue # treated separately entity_count = get_entity_count(path) if entity_count in data: data[entity_count].append(path) From 4b8c4880f22141b45e9d9bd087d54186cd1c8bf7 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Thu, 9 Nov 2023 09:32:18 +0100 Subject: [PATCH 28/61] fix: fix zinc smiles col to SMILES (#490) --- data/tabular/zinc/transform.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/data/tabular/zinc/transform.py b/data/tabular/zinc/transform.py index a39c0169f..8ee2d9361 100644 --- a/data/tabular/zinc/transform.py +++ b/data/tabular/zinc/transform.py @@ -29,6 +29,11 @@ def get_single_dataset(dataset_name): "split", "dataset", ] + df.columns = [ + "SMILES", + "split", + "dataset", + ] assert not df.duplicated().sum() # save to csv From 38f3c8281fe018d54b341222af4d82695955b902 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Thu, 9 Nov 2023 09:32:56 +0100 Subject: [PATCH 29/61] feat: batch-wise rdkit processing (#488) --- data/tabular/rdkit_features/transform.py | 49 ++++++++++++++---------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/data/tabular/rdkit_features/transform.py b/data/tabular/rdkit_features/transform.py index b6f3af4bf..d499275ff 100644 --- a/data/tabular/rdkit_features/transform.py +++ b/data/tabular/rdkit_features/transform.py @@ -1,23 +1,10 @@ +import os.path + import fire -import pandas as pd from datasets import load_dataset -def process(debug=False): - if debug: - dataset = load_dataset("maykcaldas/smiles-transformers", split="train[:100]") - train_pandas = dataset.to_pandas() - test_pandas = dataset.to_pandas() - valid_pandas = dataset.to_pandas() - else: - dataset = load_dataset("maykcaldas/smiles-transformers") - train_pandas = dataset["train"].to_pandas() - test_pandas = dataset["test"].to_pandas() - valid_pandas = dataset["validation"].to_pandas() - train_pandas["split"] = "train" - test_pandas["split"] = "test" - valid_pandas["split"] = "valid" - df = pd.concat([train_pandas, test_pandas, valid_pandas]) +def clean_df(df): df.dropna(inplace=True) df[ [ @@ -44,16 +31,36 @@ def process(debug=False): ].astype( int ) - df["MolLogP"] = df["MolLogP"].astype(float) df["Apol"] = df["Apol"].astype(float) - - print(df.columns) df.rename(columns={"text": "SMILES"}, inplace=True) + return df - print(len(df)) - df.to_csv("data_clean.csv", index=False) +def process(): + if not (os.path.isfile("data_clean.csv")): + df = load_dataset( + "maykcaldas/smiles-transformers", split="validation" + ).to_pandas() + df = clean_df(df) + df["split"] = "valid" + df.to_csv("data_clean.csv", index=False) + del df + + df = load_dataset("maykcaldas/smiles-transformers", split="test").to_pandas() + df = clean_df(df) + df["split"] = "test" + df.to_csv("data_clean.csv", index=False, mode="a", header=False) + del df + + splits = [f"train[{k}%:{k+5}%]" for k in range(0, 100, 5)] + for s in splits: + df = load_dataset("maykcaldas/smiles-transformers", split=s).to_pandas() + df = clean_df(df) + df["split"] = "train" + df.to_csv("data_clean.csv", index=False, mode="a", header=False) + else: + print("Reusing present data_clean.csv.") if __name__ == "__main__": From 1ab8c8bbfed0baf39f27cdaf2fee8fa9a09c3ef5 Mon Sep 17 00:00:00 2001 From: Pixelatory Date: Sat, 11 Nov 2023 05:06:12 -0500 Subject: [PATCH 30/61] Adding odd-one-out dataset (#491) Co-authored-by: Kevin Maik Jablonka --- data/tabular/odd_one_out/meta.yaml | 93 ++++++++++++++ data/tabular/odd_one_out/transform.py | 175 ++++++++++++++++++++++++++ data/text_sampling/text_sampling.py | 5 +- 3 files changed, 272 insertions(+), 1 deletion(-) create mode 100644 data/tabular/odd_one_out/meta.yaml create mode 100644 data/tabular/odd_one_out/transform.py diff --git a/data/tabular/odd_one_out/meta.yaml b/data/tabular/odd_one_out/meta.yaml new file mode 100644 index 000000000..779ccead1 --- /dev/null +++ b/data/tabular/odd_one_out/meta.yaml @@ -0,0 +1,93 @@ +--- +name: odd_one_out +description: |- + Tanimoto distance between Morgan fingerprints of SMILES in the ZINC dataset. + We performed filtering to exclude sequences of molecules where there is no strong difference. +targets: + - id: smallest_similarities + type: continuous + description: smallest Tanimoto similarity between Morgan fingerprints + names: + - noun: smallest Tanimoto similarity between Morgan fingerprints + - id: biggest_similarities + type: continuous + description: largest Tanimoto similarity between Morgan fingerprints + names: + - noun: largest Tanimoto similarity between Morgan fingerprints +benchmarks: + - name: TDC + link: https://tdcommons.ai/ + split_column: split +identifiers: + - id: smi_1 + type: SMILES + description: SMILES + - id: smi_2 + type: SMILES + description: SMILES + - id: smi_3 + type: SMILES + description: SMILES + - id: smi_4 + type: SMILES + description: SMILES + - id: odd_one_out_mol + type: SMILES + description: SMILES + - id: biggest_sim_0 + description: SMILES + type: SMILES + - id: biggest_sim_1 + type: SMILES + description: SMILES + - id: most_diff_0 + type: SMILES + description: SMILES + - id: most_diff_1 + type: SMILES + description: SMILES +license: MIT +num_points: 98715 +bibtex: + - |- + @article{Irwin_2020, + doi = {10.1021/acs.jcim.0c00675}, + url = {https://doi.org/10.1021%2Facs.jcim.0c00675}, + year = 2020, + month = {oct}, + publisher = {American Chemical Society ({ACS})}, + volume = {60}, + number = {12}, + pages = {6065--6073}, + author = {John J. Irwin and Khanh G. Tang and Jennifer Young and Chinzorig Dandarchuluun + and Benjamin R. Wong and Munkhzul Khurelbaatar and Yurii S. Moroz and John Mayfield and Roger A. Sayle}, + title = {{ZINC}20{\textemdash}A Free Ultralarge-Scale Chemical Database for Ligand Discovery}, + journal = {J. Chem. Inf. Model.} + } +templates: + - |- + Task: You are given a {#list|sequence!} of SMILES of {#molecules|chemicals|chemical compounds!} and {#must|are asked to!} find the {#molecule|chemical|compound!} that is {#most|maximally!} different from the others. + Molecules: {smi_1#}, {smi_2#}, {smi_3#}, and {smi_4#} + Constraint: Answer by returning the SMILES string. Similarity is measured in terms of Tanimoto distance between Morgan fingerprints of radius {#two|2!}. + Answer: {odd_one_out_mol#} + - |- + Task: You are given a {#list|sequence!} of SMILES of {#molecules|chemicals|chemical compounds!} and {#must|are asked to!} find the pair {#molecule|chemical|compound!} that is {#most|maximally!} different from each other. + Molecules: {smi_1#}, {smi_2#}, {smi_3#}, and {smi_4#} + Constraint: Answer by returning two SMILES strings separated by a comma. Similarity is measured in terms of Tanimoto distance between Morgan fingerprints of radius {#two|2!}. + Answer: {most_diff_0#}, {most_diff_1#} + - |- + Task: You are given a {#list|sequence!} of SMILES of {#molecules|chemicals|chemical compounds!} and {#must|are asked to!} find the pair {#molecule|chemical|compound!} that is {#most|maximally!} similar to each other. + Molecules: {smi_1#}, {smi_2#}, {smi_3#}, and {smi_4#} + Constraint: Answer by returning two SMILES strings separated by a comma. Similarity is measured in terms of Tanimoto distance between Morgan fingerprints of radius {#two|2!}. + Answer: {biggest_sim_1#}, {biggest_sim_0#} + - |- + Question: I have a {#list|sequence!} of SMILES for {#molecules|chemicals|chemical compounds!}: {smi_1#}, {smi_2#}, {smi_3#}, and {smi_4#}. Which two molecules have the highest similarity based on their Tanimoto distance calculated from Morgan fingerprints of radius {#two|2!}? + Answer: The two most similar molecules are {biggest_sim_1#} and {biggest_sim_0#}. + - |- + Question: I have the following SMILES strings: {smi_1#}, {smi_2#}, {smi_3#}, and {smi_4#}. Which {#molecule|chemical|chemical compound|compound!} is the most {#dissimilar|different!} from the all others based on Tanimoto distance of their Morgan fingerprints of radius {#two|2!}? + Answer: The most dissimilar {#molecule|chemical|chemical compound|compound!} is {odd_one_out_mol#}. + - |- + User: I have the following SMILES strings: {smi_1#}, {smi_2#}, {smi_3#}, and {smi_4#}. Which is the odd one in this list? + Assistant: {#Interesting question, what do you|Interesting, what do you|Cool, what do you|What do you!} {#mean by|understand as!} "odd one"? + User: {#For now, we|Let's assume we|We!} measure similarity in terms of Tanimoto distance between Morgan fingerprints of radius two. The "odd one" is the molecule that is most different from the others. + Assistant: {#In that case,|Then,!} I {#think|believe|propose!} that {odd_one_out_mol#} is the "odd one" you're looking for. diff --git a/data/tabular/odd_one_out/transform.py b/data/tabular/odd_one_out/transform.py new file mode 100644 index 000000000..a529046d6 --- /dev/null +++ b/data/tabular/odd_one_out/transform.py @@ -0,0 +1,175 @@ +import numpy as np +import pandas as pd +from rdkit import Chem, DataStructs +from rdkit.Chem import AllChem +from tdc.generation import MolGen +from tqdm import tqdm + +""" +Creating the odd-one-out dataset, for an example application such as below: + +"Q: Which molecule is the least similar to the others? +1. [Mol 1] +2. [Mol 2] +3. [Mol 3] +4. [Mol 4] + +A: [Answer]" + +Uses Tanimoto Similarity with Morgan Fingerprints implemented in RDKit, with radius 2. +""" + + +def load_dataset(): + return MolGen(name="ChEMBL_V29").get_split() + + +def transform_dataset(dataset, n_permutations): + smis = dataset["smiles"].values + # Make sure smi_idx_arr contain no duplicate indexes in any of its rows + smi_idx_arr = np.stack([np.arange(len(dataset)) for _ in range(n_permutations)]).T + for i in range(n_permutations): + smi_idx_arr[:, i] += i + smi_idx_arr[:, i] %= len(dataset) + + odd_one_out_idx = [] # the least similar index, or the "odd-one-out" + similarity_list = [] + + most_diff_pairs = [] + biggest_sim_pairs = [] + similarity_sum_list = [] + + smallest_similariies = [] + biggest_similarities = [] + for row in tqdm(smi_idx_arr): + try: + # gather Morgan fingerprints for all mols in row, with radius of 2 + fingerprints = [] + for val in row: + mol = Chem.MolFromSmiles(smis[val]) + fingerprint = AllChem.GetMorganFingerprint(mol, 2) + fingerprints.append(fingerprint) + + # Calculate summed Tanimoto similarity of mol i to all remaining mols + similarities = [] + similarity_sums = [] + most_diff = None + + smallest_similarity = np.inf + + biggest_sim = None + biggest_similarity = -np.inf + + for i in range(len(fingerprints)): + similarity_sum = 0 + for j in range(len(fingerprints)): + if i != j: + sim = DataStructs.TanimotoSimilarity( + fingerprints[i], fingerprints[j] + ) + similarity_sum += sim + if sim < smallest_similarity: + smallest_similarity = sim + most_diff = (i, j) + if sim > biggest_similarity: + biggest_similarity = sim + biggest_sim = (i, j) + similarity_sums.append(similarity_sum) + similarities.append(sim) + + most_diff_pairs.append(most_diff) + biggest_sim_pairs.append(biggest_sim) + smallest_similariies.append(smallest_similarity) + biggest_similarities.append(biggest_similarity) + + lowest_similarity = np.argmin(similarity_sums) + odd_one_out_idx.append(lowest_similarity) + similarity_list.append(similarities) + similarity_sum_list.append(similarity_sums) + except Exception: + odd_one_out_idx.append(np.nan) + similarity_list.append(np.nan) + biggest_sim_pairs.append(np.nan) + lowest_similarity = np.nan + smallest_similariies.append(np.nan) + biggest_similarities.append(np.nan) + similarity_sum_list.append(np.nan) + most_diff_pairs.append(np.nan) + + return { + # "smi_idx_arr": smi_idx_arr, + "smi_1": smis[smi_idx_arr[:, 0]], + "smi_2": smis[smi_idx_arr[:, 1]], + "smi_3": smis[smi_idx_arr[:, 2]], + "smi_4": smis[smi_idx_arr[:, 3]], + "odd_one_out_idx": odd_one_out_idx, + "odd_one_out_mol": [ + smis[smi_idx_arr[i, int(odd_one_out_idx[i])]] + if not np.isnan(odd_one_out_idx[i]) + else np.nan + for i in range(len(odd_one_out_idx)) + ], + # "similarity_list": similarity_list, + "smallest_to_second_smallest_ratio": [ + division_catch_zero(x) for x in similarity_sum_list + ], + "most_diff_0": [ + smis[smi_idx_arr[i, x[0]]] if not isinstance(x, float) else np.nan + for i, x in enumerate(most_diff_pairs) + ], + "most_diff_1": [ + smis[smi_idx_arr[i, x[1]]] if not isinstance(x, float) else np.nan + for i, x in enumerate(most_diff_pairs) + ], + "biggest_sim_0": [ + smis[smi_idx_arr[i, x[0]]] if not isinstance(x, float) else np.nan + for i, x in enumerate(biggest_sim_pairs) + ], + "biggest_sim_1": [ + smis[smi_idx_arr[i, x[1]]] if not isinstance(x, float) else np.nan + for i, x in enumerate(biggest_sim_pairs) + ], + "smallest_similarities": smallest_similariies, + "biggest_similarities": biggest_similarities, + } + + +def division_catch_zero(x): + try: + x = sorted(x) + try: + return x[0] / x[1] + except ZeroDivisionError: + return np.nan + except Exception: + return np.nan + + +# tune this to tune difficulty of task, not optimized atm +MAX_SECOND_FIRST_RATIO = 0.5 +MIN_SMALLEST_TO_LARGEST_DIFF = 0.2 + +if __name__ == "__main__": + n_permutations = 4 # Controls how many molecules are given in the question + + df = load_dataset() + + out_train = pd.DataFrame(transform_dataset(df["train"], n_permutations)) + + out_valid = pd.DataFrame(transform_dataset(df["valid"], n_permutations)) + + out_test = pd.DataFrame(transform_dataset(df["test"], n_permutations)) + + all_data = pd.concat([out_train, out_valid, out_test]) + all_data["smallest_to_largest_diff"] = ( + all_data["biggest_similarities"] - all_data["smallest_similarities"] + ) + all_data = all_data[ + all_data["smallest_to_largest_diff"] >= MIN_SMALLEST_TO_LARGEST_DIFF + ] + all_data = all_data[ + all_data["smallest_to_second_smallest_ratio"] <= MAX_SECOND_FIRST_RATIO + ] + all_data.dropna(inplace=True) + print(len(all_data)) + all_data.to_csv("data_clean.csv", index=False) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index df1f300c7..fe48a08aa 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -147,7 +147,8 @@ "MUV_852", # boolean target data "MUV_858", # boolean target data "MUV_859", # boolean target data - "orbnet_denali" # only makes sense for the structure files + "orbnet_denali", # only makes sense for the structure files + "odd_one_out" # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] @@ -997,6 +998,8 @@ def apply_sampling_and_export( for path in path_data_dir: # subselect one path + # if not "odd_one_out" in path: + # continue # if path.find("data/tabular/") == -1: continue # if path.find("data/kg/") == -1: continue # if path.find("chembl33") != -1: continue From e50d3307ab14a3dca119db52ec69eb7717f9d26c Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sat, 11 Nov 2023 11:14:48 +0100 Subject: [PATCH 31/61] prepare chemcaption templates (#416) --- data/tabular/chemcaption_fragments/meta.yaml | 51 +++++++++++++++++++ .../chemcaption_fragments/transform.py | 17 +++++++ data/text_sampling/text_sampling.py | 1 + 3 files changed, 69 insertions(+) create mode 100644 data/tabular/chemcaption_fragments/meta.yaml create mode 100644 data/tabular/chemcaption_fragments/transform.py diff --git a/data/tabular/chemcaption_fragments/meta.yaml b/data/tabular/chemcaption_fragments/meta.yaml new file mode 100644 index 000000000..d10c228c1 --- /dev/null +++ b/data/tabular/chemcaption_fragments/meta.yaml @@ -0,0 +1,51 @@ +--- +name: chemcaption_fragments +description: |- + Checks if a given fragment is present in a molecule. +targets: + - id: presence + description: flag indicating whether the fragment is present in the molecule + type: boolean +identifiers: + - id: molecule + type: text + description: identifier of the molecule + - id: fragment + type: text + description: identifier of the fragment + - id: smarts + type: text + description: SMARTS of the fragment + - id: representation_type + type: text + description: representation type of the molecule +license: MIT +links: + - url: https://github.com/lamalab-org/chem-caption + description: software used to generate the data +num_points: 812177 +templates: + - |- + {#Question: |Q: !}Is the fragment with SMARTs {smarts#} present in the molecule with {representation_type#} {molecule#}? + {#Answer: |A: |!}{presence#No&Yes} + - |- + {#Question: |Q: !}Is a {fragment#} fragment present in the molecule with {representation_type#} {molecule#}? + {#Answer: |A: |!}{presence#No&Yes} + - A {fragment#} fragment is {presence#present&absent} in the molecule with {representation_type#} {molecule#}. + - |- + Task: {#Answer a question about substructures|Answer a question about fragments!} + {#Question: |Q: !}Is the fragment with SMARTS {smarts#} {#present in|part of!} the molecule with {representation_type#} {molecule#}? + {#Answer: |A: |!}{presence#No&Yes} + - |- + User: Is the fragment {fragment#} {#present in|part of!} the molecule with {representation_type#} {molecule#}? + Assistant: {presence#No&Yes} + - |- + User: I have a question about the molecule with {representation_type#} {molecule#}. + Assistant: {#Sure, what is your question?|How can I help?|That sounds interesting, how can I help?|Interesting, how can I help?!} + User: Is a {fragment#} fragment {#present in|part of!} the molecule? + Assistant: {presence#No&Yes} + - |- + User: I want to know more about the molecule with {representation_type#} {molecule#}. + Assistant: {#Sure, what is your question?|How can I help?|That sounds interesting, how can I help?|Interesting, how can I help?!} + User: Is a {fragment#} fragment {#present in|part of of|substructure of!} the molecule? + Assistant: {presence#No&Yes} diff --git a/data/tabular/chemcaption_fragments/transform.py b/data/tabular/chemcaption_fragments/transform.py new file mode 100644 index 000000000..bde0e5566 --- /dev/null +++ b/data/tabular/chemcaption_fragments/transform.py @@ -0,0 +1,17 @@ +import pandas as pd + + +def process(): + df = pd.read_parquet( + "https://huggingface.co/datasets/kjappelbaum/chemnlp-chem-caption/resolve/main/smarts/train-00000-of-00001-71cef18c6383b463.parquet?download=true" # noqa + ) + df.dropna(inplace=True) + print(len(df)) + df["fragment"] = df["completion_labels"].str.replace("_count", "") + df["presence"] = df["completion"] > 0 + df["molecule"] = df["representation"] + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index fe48a08aa..b79c0cf45 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -83,6 +83,7 @@ "chemcaption_rdkit", # text only, no SMILES "choline_transporter_butkiewicz", # because it is boolean target data "clintox", # because it is boolean target data + "chemcaption_fragments", "cyp2c9_substrate_carbonmangels", # boolean target data "cyp2d6_substrate_carbonmangels", # boolean target data "cyp3a4_substrate_carbonmangels", # boolean target data From 14118d328261696a8b2e245c837396c8f3e4a247 Mon Sep 17 00:00:00 2001 From: Nawaf <86834161+n0w0f@users.noreply.github.com> Date: Tue, 14 Nov 2023 11:40:59 +0100 Subject: [PATCH 32/61] feat: add nomad dataset with structural data (#492) Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Co-authored-by: Kevin Maik Jablonka --- data/tabular/mofdscribe/transform.py | 4 +- data/tabular/mp_descriptions/transform.py | 3 + data/tabular/nomad_structure/meta.yaml | 146 ++++++++++++++++++++++ data/tabular/nomad_structure/transform.py | 46 +++++++ 4 files changed, 198 insertions(+), 1 deletion(-) create mode 100644 data/tabular/nomad_structure/meta.yaml create mode 100644 data/tabular/nomad_structure/transform.py diff --git a/data/tabular/mofdscribe/transform.py b/data/tabular/mofdscribe/transform.py index 3a95af9da..4dc3b037a 100644 --- a/data/tabular/mofdscribe/transform.py +++ b/data/tabular/mofdscribe/transform.py @@ -1,6 +1,8 @@ import pandas as pd from huggingface_hub import hf_hub_download +from chemnlp.data.convert import remove_composition_rows + def process(): file = hf_hub_download( @@ -10,7 +12,7 @@ def process(): ) df = pd.read_parquet(file) print(len(df)) - + df["cif"] = df["cif"].apply(remove_composition_rows) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/mp_descriptions/transform.py b/data/tabular/mp_descriptions/transform.py index fb1260d51..ad4ba0525 100644 --- a/data/tabular/mp_descriptions/transform.py +++ b/data/tabular/mp_descriptions/transform.py @@ -1,5 +1,7 @@ from datasets import load_dataset +from chemnlp.data.convert import remove_composition_rows + def process(): dataset = load_dataset("kjappelbaum/chemnlp-robocrys") @@ -7,6 +9,7 @@ def process(): df.dropna( subset=["cifstr", "description", "description_w_bondlengths"], inplace=True ) + df["cifstr"] = df["cifstr"].apply(remove_composition_rows) print(len(df)) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/nomad_structure/meta.yaml b/data/tabular/nomad_structure/meta.yaml new file mode 100644 index 000000000..5812c76c5 --- /dev/null +++ b/data/tabular/nomad_structure/meta.yaml @@ -0,0 +1,146 @@ +--- +name: nomad-structure +description: |- + A subset from NOMAD dataset, which is a database of DFT computed results of materials. + This subset consists of cif structures of around 0.5 million bulk stable materials and their geometric and structural information. + All materials in this dataset are modeled using Density Functional Theory using GGA functional. +targets: + - id: density + description: Density of the material + units: kg/m^3 + type: continuous + significant_digits: 3 + names: + - noun: density + uris: + - id: crystal_system + description: Geometric arrangement of atoms within a crystal + type: categorical + names: + - noun: crystal system + uris: + - id: spacegroup + description: Spacegroup of the material + type: categorical + names: + - noun: spacegroup + uris: + - id: pointgroup + description: Pointgroup of the material + type: categorical + names: + - noun: pointgroup + uris: + - id: spacegroup_number + description: Spacegroup number of the material + type: categorical + names: + - noun: spacegroup number + - noun: number of the spacegroup in the International Tables for Crystallography + uris: + - id: cif_masked + description: CIF file of the material + type: text + names: + - noun: CIF file with masked rows + - noun: CIF card with masked rows +identifiers: + - id: cif + type: cif + description: CIF + - id: formula + type: COMPOSITION + description: reduced formula + names: + - noun: chemical formula + - noun: composition + - noun: reduced formula +license: CC BY 4.0 +num_points: 527984 +links: + - url: https://nomad-lab.eu/nomad-lab/ + description: original data source +bibtex: + - |- + @article{scheidgen2023nomad, + title={NOMAD: A distributed web-based platform for managing materials science research data}, + author={Scheidgen, Markus and Himanen, Lauri and Ladines, Alvin Noe and Sikter, David and Nakhaee, Mohammad and Fekete, {\'A}d{\'a}m and Chang, Theodore and Golparvar, Amir and M{\'a}rquez, Jos{\'e} A and Brockhauser, Sandor and others}, + journal={Journal of Open Source Software}, + volume={8}, + number={90}, + pages={5388}, + year={2023} + } +templates: + - The {spacegroup__names__noun} of the symmetrized version of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {spacegroup#}. + - The {crystal_system__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {crystal_system#}. + - The {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {density#} {density__units}. + - The {#chemical formula|composition|reduced formula!} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {formula#}. + - The {spacegroup_number__names__noun} of the symmetrized version of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {spacegroup_number#}. + - The {#CIF|CIF file|CIF card!} of the material with {#chemical formula|composition|reduced formula!} {formula#}, {spacegroup_number__names__noun} {spacegroup_number#} + and {density__names__noun} {density#} {density__units} is {cif#}. + - |- + Question: {#What is the|What's the!} structure of {#material|compound|solid!} with {#chemical formula|composition|reduced formula!} {formula#} and {spacegroup_number__names__noun} {spacegroup_number#}? + Constraint: Return a {#CIF|CIF file|CIF card!}. + Answer: {cif#} + - |- + User: In the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}, what is the {pointgroup__names__noun}? + Assistant: The {pointgroup__names__noun} of the symmetrized version of the {#material|compound|solid!} is {pointgroup#}. + - |- + Question: {#What is the|What's the!} {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: The {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#} is {density#} {density__units}. + - |- + User: I want to design a material with a particular {density__names__noun}, {spacegroup__names__noun}, and {#chemical formula|composition|reduced formula!}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {density__names__noun}, {spacegroup__names__noun}, and {#chemical formula|composition|reduced formula!} of the material you want to design. + User: The {density__names__noun} should be {density#} {density__units}, the {spacegroup__names__noun} should be {spacegroup#}, and the {#chemical formula|composition|reduced formula!} should be {formula#}. + Assistant: I {#recommend|suggest|propose|advise|!} the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}. + - |- + Question: What is the {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {density#} {density__units}. + - |- + Question: What is the {spacegroup__names__noun} of the symmetrized version of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {spacegroup#}. + - |- + Question: What is the {#chemical formula|composition|reduced formula!} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {formula#}. + - |- + Question: What is the {spacegroup_number__names__noun} of the symmetrized version of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? + Answer: {spacegroup_number#}. + - |- + User: The {#CIF|CIF file|CIF card!} of the {#material|compound|solid!} is {cif#}. {#Tell|Show|Give|!} me the {#chemical formula|composition|reduced formula!}. + Assistant: {#Certainly|Sure|Of course!}, the {formula__names__noun} is {formula#} + - |- + User: The {#CIF|CIF file|CIF card!} of the {#material|compound|solid!} is {cif#}. {#Tell|Show|Give|!} me the {density__names__noun}. + Assistant: {#Certainly|Sure|Of course!}, {density__names__noun} of the {#material|compound|solid!} is {density#} {density__units} + - |- + User: I want to design a {#material|compound|solid!} with a {density__names__noun} of {density#} {density__units}, and a {#chemical formula|composition|reduced formula!} of {formula#}. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I suggest the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?!} + User: {#Yes, |Yeah, |Yep, |Indeed, |!}I also want to know the {spacegroup__names__noun} of the symmetrized version of this {#material|compound|solid!}. + Assistant: The {spacegroup__names__noun} of the {#material|compound|solid!} is {spacegroup#}. + - |- + User: I have a {#material|compound|solid|structure!} with the following {#CIF|CIF file|CIF card!} {cif#}. {#Can you tell me the density?|What is the density?!} + Assistant: The {density__names__noun} of the {#material|compound|solid!} is {density#} {density__units}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?!} + User: {#Yes, |Yeah, |Yep, |Indeed, |!}I also want to know the {spacegroup__names__noun} of the symmetrized version of this {#material|compound|solid!}. + Assistant: The {spacegroup__names__noun} of the {#material|compound|solid!} is {spacegroup#}. + - |- + User: For a {#material|compound|solid|structure!} with {spacegroup_number__names__noun} {spacegroup#}, can you estimate the {density__names__noun} in {density__units}, and the {pointgroup__names__noun}? + Assistant: Certainly, the {density__names__noun} is {density#} {density__units}, and the {pointgroup__names__noun} is {pointgroup#}. + - |- + User: I want you to {#write|tell|suggest!} the {#CIF|CIF file|CIF card!} of a {#material|compound|solid!} with a {density__names__noun} of {density#} {density__units}, and {#chemical formula|composition|reduced formula!} {formula#}. Also the {spacegroup__names__noun} of the {#material|compound|solid!} should be {spacegroup#} + Assistant: {#Certainly|Sure|Of course!}, the {#CIF|CIF file|CIF card!} is {cif#}. + - |- + Task: Fill the rows masked with `[MASK]` in this {#CIF|CIF file|CIF card!} to fulfill the given constraints. Return the {#CIF|CIF file|CIF card!} with the masked rows filled. + Masked {#CIF|CIF file|CIF card!}: {cif_masked#} + Constraint: The {density__names__noun} should be {density#} {density__units}, and the {#chemical formula|composition|reduced formula!} should be {formula#}. + Answer: {cif#} + - |- + Task: Fill the rows masked with `[MASK]` in this {#CIF|CIF file|CIF card!} to fulfill the given constraints. Return the {#CIF|CIF file|CIF card!} with the masked rows filled. + Masked {#CIF|CIF file|CIF card!}: {cif_masked#} + Constraint: The {density__names__noun} should be {density#} {density__units}, the {#chemical formula|composition|reduced formula!} should be {formula#}, and the {spacegroup__names__noun} should be {spacegroup#}. + Answer: {cif#} + - |- + Question: {#What is the|What's the!} complete {#CIF|CIF file|CIF card!} of the {#material|compound|solid!} with the masked {#CIF|CIF file|CIF card!} {cif_masked#} and {density__names__noun} {density#} {density__units}? + Answer: {cif#} + - |- + Question: {#What is the|What's the!} complete {#CIF|CIF file|CIF card!} of the {#material|compound|solid!} with the masked {#CIF|CIF file|CIF card!} {cif_masked#}, {density__names__noun} {density#} {density__units}, and {#chemical formula|composition|reduced formula!} {formula#}? + Answer: {cif#} diff --git a/data/tabular/nomad_structure/transform.py b/data/tabular/nomad_structure/transform.py new file mode 100644 index 000000000..9c58cff75 --- /dev/null +++ b/data/tabular/nomad_structure/transform.py @@ -0,0 +1,46 @@ +import datasets +import pandas as pd + +from chemnlp.data.convert import mask_cif_lines, remove_composition_rows + +DATASET_NAME = "nomad-structure" + + +def prepare_data(): + dataset_name = "n0w0f/nomad-structure-csv" + split_name = "train" # data without any split @ hf + filename_to_save = "data_clean.csv" + + # Load the dataset from Hugging Face + dataset = datasets.load_dataset(dataset_name, split=split_name) + + df = pd.DataFrame(dataset) + df = df[~df["is_longer_than_allowed"]] + # assert column names + fields_orig = df.columns.tolist() + assert fields_orig == [ + "cif", + "formula", + "spacegroup", + "spacegroup_number", + "crystal_system", + "pointgroup", + "density", + "is_longer_than_allowed", + ] + df["cif"] = df["cif"].apply(remove_composition_rows) + df["cif_masked"] = df["cif"].apply(mask_cif_lines) + # remove duplicates if any + df = df.drop_duplicates() + df.dropna(inplace=True) + df.to_csv(filename_to_save, index=False) + datapoints = len(df) + return datapoints + + +if __name__ == "__main__": + print(f" Preparing clean tabular {DATASET_NAME} datatset") + datapoints = prepare_data() + print( + f" Finished Preparing clean tabular {DATASET_NAME} datatset with {datapoints} datapoints" + ) From a791a4bc9bb3346a75c20cd782ec4dff1cc55493 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:09:29 +0100 Subject: [PATCH 33/61] "a" missing in OPV template (#496) --- data/tabular/opv/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/tabular/opv/meta.yaml b/data/tabular/opv/meta.yaml index 1107ee6cc..d3ec78513 100644 --- a/data/tabular/opv/meta.yaml +++ b/data/tabular/opv/meta.yaml @@ -147,12 +147,12 @@ templates: {SMILES__description} {SMILES#} and {#Mw|weight-average molecular weight|weight-average molecular weight (Mw)!} {Mw#} g/mol and {#PDI|polydispersity index|polydispersity index (PDI)!} of {PDI#} has a {FF__names__noun} of {FF#}. - |- - User: I {#want to|would like to|aim to|wish to!} {#design|create|build!} {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}%. + User: I {#want to|would like to|aim to|wish to!} {#design|create|build!} a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}%. Assistant: {#That's interesting.|Cool.|!} Do you have a donor polymer in mind? User: Yes, I would like to use a polymer with monomer {SMILES__description} {SMILES#} and {#would like to|need to|must!} know the {PDI__names__noun} and {Mw__names__noun} of the polymer I should use. Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and a {PDI__names__noun} of {PDI#}. - |- - User: I {#want to|would like to|aim to|wish to!} {#design|create|build!} {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}%. + User: I {#want to|would like to|aim to|wish to!} {#design|create|build!} a {#non-fullerene|PC71BM|PCBM!} {#organic photovoltaics|OPV|organic solar cell|organic photovoltaics (OPV)!} device with a {PCE_ave__names__noun} of {PCE_ave#}%. Assistant: {#That's interesting.|Cool.|!} Do you have additional constraints? User: {#Yes, |Yeah, |Indeed, |!}I would like to have a {Jsc__names__noun} of {Jsc#} {Jsc__units}. Assistant: {#I recommend|I suggest|I propose!} trying a {Mw__names__noun} of {Mw#} g/mol and {PDI__names__noun} of {PDI#} of a polymer with monomer {SMILES__description} {SMILES#}. From 87d121853bd7d61330829c10e5dee1b15dfa4e85 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:09:46 +0100 Subject: [PATCH 34/61] feat: add masking and cleaning code (#495) --- src/chemnlp/data/convert.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/chemnlp/data/convert.py b/src/chemnlp/data/convert.py index 3ab4a3bd2..6a4e34434 100644 --- a/src/chemnlp/data/convert.py +++ b/src/chemnlp/data/convert.py @@ -1,6 +1,7 @@ from pathlib import Path from typing import Optional, Union +import numpy as np from givemeconformer.api import _get_conformer from pymatgen.core import Molecule, Structure from pymatgen.io.cif import CifWriter @@ -8,6 +9,35 @@ from rdkit import Chem +def remove_composition_rows(cif_string: str) -> str: + rows = cif_string.split("\n") + new_rows = [] + for row in rows: + if "chemical_formula" in row: + continue + new_rows.append(row) + return "\n".join(new_rows) + + +def mask_cif_lines( + cif_string: str, mask_min_ratio: float = 0.1, mask_max_ratio: float = 0.4 +) -> str: + # chose a random number of lines to mask. don't mask the first line and the last line + rows = cif_string.split("\n") + num_rows = len(rows) + num_rows_to_mask = int(num_rows * np.random.uniform(mask_min_ratio, mask_max_ratio)) + rows_to_mask = np.random.choice( + np.arange(1, num_rows - 1), size=num_rows_to_mask, replace=False + ) + new_rows = [] + for i, row in enumerate(rows): + if i in rows_to_mask: + new_rows.append("[MASK]]") + else: + new_rows.append(row) + return "\n".join(new_rows) + + def cif_file_to_string( path: Union[Path, str], primitive: bool = True, From 6ae0349ec0a916a7c0a73d64a7ec5bf0eabb7c96 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:20:04 +0100 Subject: [PATCH 35/61] Molecular representation translation tasks (#493) * feat: draft msds cleaning * feat: minor fixes * feat: remove mol_repr_transl/meta.yaml * feat: update exclude_from_standard_tabular_text_templates * feat: update templates * feat: update for split information * add hydrogen atoms --------- Co-authored-by: Kevin Maik Jablonka --- data/tabular/mol_repr_transl/transform.py | 171 ++++++++++++++++++++++ data/text_sampling/text_sampling.py | 17 ++- 2 files changed, 187 insertions(+), 1 deletion(-) create mode 100644 data/tabular/mol_repr_transl/transform.py diff --git a/data/tabular/mol_repr_transl/transform.py b/data/tabular/mol_repr_transl/transform.py new file mode 100644 index 000000000..c89e42bca --- /dev/null +++ b/data/tabular/mol_repr_transl/transform.py @@ -0,0 +1,171 @@ +import os + +import pandas as pd +import yaml +from rdkit import Chem + +# create meta yaml +meta_template = { + "name": None, + "description": "Molecule representation translation task data.", + "identifiers": None, + "targets": None, + "benchmarks": [ + { + "name": None, + "link": None, + "split_column": "split", # name of the column that contains the split information + }, + ], + "license": "Please see source material.", + "links": [ + { + "url": None, + "description": None, + }, + ], + "num_points": None, + "bibtex": ["Please see source material."], + "templates": [ + "The molecule with the {IDENTIFIER__names__noun} {#representation of |!}{IDENTIFIER#} can also be represented with the {TARGET__names__noun} {#representation |!}{TARGET#}.", # noqa: E501 + "The molecule with the {TARGET__names__noun} {#representation of |!}{TARGET#} can also be represented with the {IDENTIFIER__names__noun} {#representation |!}{IDENTIFIER#}.", # noqa: E501 + # Instruction tuning text templates + """Task: Please {#create|generate!} a molecule representation based on {#the input molecule representation and |!}the description. +Description: {#Generate|Create!} the {TARGET__names__noun} from the {IDENTIFIER__names__noun}. +{#Molecule |!}{IDENTIFIER__names__noun}: {IDENTIFIER#} +Constraint: Even if you are {#uncertain|not sure!}, you must answer with a representation without using any {#other|additional!} words. +Result: {TARGET#}""", # noqa: E501 + """Task: Please {#create|generate!} a molecule representation based on {#the input molecule representation and |!}the description. +Description: {#Generate|Create!} the {IDENTIFIER__names__noun} from the {TARGET__names__noun}. +{#Molecule |!}{TARGET__names__noun}: {TARGET#} +Constraint: Even if you are {#uncertain|not sure!}, you must answer with a representation without using any {#other|additional!} words. +Result: {IDENTIFIER#}""", # noqa: E501 + # Conversational text templates + """User: Can you {#tell me|create|generate!} the {TARGET__names__noun} of the molecule with the {IDENTIFIER__names__noun} {IDENTIFIER#}? +Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, this molecule has a {TARGET__names__noun} of {TARGET#}.""", # noqa: E501 + """User: Can you {#tell me|create|generate!} the {IDENTIFIER__names__noun} of the molecule with the {TARGET__names__noun} {TARGET#}? +Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, this molecule has a {IDENTIFIER__names__noun} of {IDENTIFIER#}.""", # noqa: E501 + # Benchmarking text templates + "The molecule with the {IDENTIFIER__names__noun} {#representation of |!}{IDENTIFIER#} can also be represented with the {TARGET__names__noun}{# representation|!}: {TARGET#}.", # noqa: E501 + "The molecule with the {TARGET__names__noun} {#representation of |!}{TARGET#} can also be represented with the {IDENTIFIER__names__noun}{# representation|!}: {IDENTIFIER#}.", # noqa: E501 + """Task: Please {#create|generate!} a molecule representation based on {#the input molecule representation and |!}the description. +Description: {#Generate|Create!} the {TARGET__names__noun} from the {IDENTIFIER__names__noun}. +{#Molecule |!}{IDENTIFIER__names__noun}: {IDENTIFIER#} +Constraint: Even if you are {#uncertain|not sure!}, you must answer with a representation without using any {#other|additional!} words. +Result: {TARGET#}""", # noqa: E501 + """Task: Please {#create|generate!} a molecule representation based on {#the input molecule representation and |!}the description. +Description: {#Generate|Create!} the {IDENTIFIER__names__noun} from the {TARGET__names__noun}. +{#Molecule |!}{TARGET__names__noun}: {TARGET#} +Constraint: Even if you are {#uncertain|not sure!}, you must answer with a representation without using any {#other|additional!} words. +Result: {IDENTIFIER#}""", # noqa: E501 + ], +} + + +def str_presenter(dumper, data: str): + """configures yaml for dumping multiline strings + Ref: https://stackoverflow.com/questions/8640959/how-can-i-control-what-scalar-form-pyyaml-uses-for-my-data + """ + if data.count("\n") > 0: # check for multiline string + return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|") + return dumper.represent_scalar("tag:yaml.org,2002:str", data) + + +def smiles_with_hydrogens(smiles): + """Add hydrogens to smiles string""" + + mol = Chem.MolFromSmiles(smiles) + mol = Chem.AddHs(mol) + return Chem.MolToSmiles(mol) + + +def get_and_transform_data(): + path_base = os.getcwd() + path_csv = ( + "/".join(path_base.split("/")[:-2]) + + "/text_sampling/extend_tabular_processed.csv" + ) + + df = pd.read_csv( + path_csv, + delimiter=",", + ) + df["smiles_with_hydrogens"] = df["smiles"].apply(smiles_with_hydrogens) + + if "split" in df.columns: + assert df.columns[-1] == "split", "Split column needs to be the last column." + col_len = len(df.columns) - 1 + else: + print( + "CAUTION: No split information found, maybe you need to rerun the train_test_split.py script over extend_tabular_processed.csv?" # noqa: E501 + ) + col_len = len(df.columns) + + for i in range(col_len): + for j in range(i + 1, col_len): + subset_cols = [df.columns[i], df.columns[j]] + dataset_name = "mol_repr_transl_" + "_".join(subset_cols) + dataset_name = dataset_name.lower() + + path_export = "/".join(path_base.split("/")[:-1]) + "/" + dataset_name + os.makedirs(path_export, exist_ok=True) + + # df export + col_suffix = "_text" # to exclude from other preprocessing steps + if "split" in df.columns: + df_subset = df[subset_cols + ["split"]].dropna() + else: + df_subset = df[subset_cols].dropna() + df_subset.columns = [ + x + col_suffix if x != "split" else x for x in subset_cols + ] + df_subset.to_csv(path_export + "/data_clean.csv", index=False) + + # meta yaml export + names = { + "SMILES": "SMILES", + "selfies": "SELFIES", + "deepsmiles": "DeepSMILES", + "canonical": "canonical SMILES", + "inchi": "InChI string", + "iupac_name": "IUPAC name", + "SMILES_with_H": "SMILES with hydrogens", + } + meta_copy = meta_template.copy() + meta_copy["name"] = dataset_name + meta_copy["num_points"] = len(df_subset) + meta_copy["identifiers"] = [ + { + "id": subset_cols[0] + col_suffix, + "description": subset_cols[0], + "type": "Other", + "names": [{"noun": names[subset_cols[0]]}], + } + ] + meta_copy["targets"] = [ + { + "id": subset_cols[1] + col_suffix, + "description": subset_cols[1], + "type": "Other", + "names": [{"noun": names[subset_cols[1]]}], + } + ] + + meta_copy["templates"] = [ + t.replace("TARGET", subset_cols[0] + col_suffix).replace( + "IDENTIFIER", subset_cols[1] + col_suffix + ) + for t in meta_copy["templates"] + ] + + yaml.add_representer(str, str_presenter) + yaml.representer.SafeRepresenter.add_representer(str, str_presenter) + fn_meta = path_export + "/meta.yaml" + with open(fn_meta, "w") as f: + yaml.dump(meta_copy, f, sort_keys=False) + + print(dataset_name) + + +if __name__ == "__main__": + get_and_transform_data() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index b79c0cf45..43a5ef2ea 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -149,7 +149,22 @@ "MUV_858", # boolean target data "MUV_859", # boolean target data "orbnet_denali", # only makes sense for the structure files - "odd_one_out" + "odd_one_out", + "mol_repr_transl_smiles_selfies", + "mol_repr_transl_smiles_deepsmiles", + "mol_repr_transl_smiles_canonical", + "mol_repr_transl_smiles_inchi", + "mol_repr_transl_smiles_iupac_name", + "mol_repr_transl_selfies_deepsmiles", + "mol_repr_transl_selfies_canonical", + "mol_repr_transl_selfies_inchi", + "mol_repr_transl_selfies_iupac_name", + "mol_repr_transl_deepsmiles_canonical", + "mol_repr_transl_deepsmiles_inchi", + "mol_repr_transl_deepsmiles_iupac_name", + "mol_repr_transl_canonical_inchi", + "mol_repr_transl_canonical_iupac_name", + "mol_repr_transl_inchi_iupac_name", # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] From 03b016b054ceaee2337de64ca938423ee77dee45 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Fri, 17 Nov 2023 11:45:10 +0100 Subject: [PATCH 36/61] fix: typo in rdkit yaml schema (#497) --- data/tabular/rdkit_features/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/tabular/rdkit_features/meta.yaml b/data/tabular/rdkit_features/meta.yaml index bb9499466..8524ecc88 100644 --- a/data/tabular/rdkit_features/meta.yaml +++ b/data/tabular/rdkit_features/meta.yaml @@ -1,5 +1,5 @@ --- -names: rdkit_features +name: rdkit_features description: |- Molecular descriptors computed using RDKit targets: From 36ab83943ffcdea43f45b02a9d4fe3ba8ce60971 Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Fri, 17 Nov 2023 16:06:28 +0100 Subject: [PATCH 37/61] fix: exclude_from_standard_tabular_text_templates for peptide tasks --- data/text_sampling/text_sampling.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index b79c0cf45..0c905323a 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -118,6 +118,8 @@ "p_glycoprotein_inhibition_broccatelli_et_al", # boolean target data "pampa_ncats", # boolean target data "peptides_hemolytic", # boolean target data + "peptides_soluble", # boolean target data + "peptides_nonfouling", # boolean target data "potassium_ion_channel_kir2_1_butkiewicz", # boolean target data "sarscov2_3clpro_diamond", # boolean target data "sarscov2_vitro_touret", # boolean target data From 09e672113290f10b7467d955659ab3102646ec7a Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Fri, 17 Nov 2023 16:39:10 +0100 Subject: [PATCH 38/61] Added random split for non-SMILES identifiers (#452) Co-authored-by: Kevin Maik Jablonka Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> --- data/tabular/formation_energies/meta.yaml | 2 +- data/tabular/h2_storage_materials/meta.yaml | 2 +- data/tabular/mp_anisotropy/meta.yaml | 2 +- data/tabular/mp_shear_modulus/meta.yaml | 2 +- data/tabular/peptides_hemolytic/meta.yaml | 2 +- data/tabular/peptides_nonfouling/meta.yaml | 16 +- data/tabular/peptides_soluble/meta.yaml | 14 +- data/tabular/perovskite_db/meta.yaml | 2 +- data/tabular/rdkit_features/meta.yaml | 2 +- data/tabular/scaffold_split.py | 184 +++++++++++++++++ data/tabular/train_test_split.py | 211 +++++++++----------- src/chemnlp/data/split.py | 106 ++++++++++ 12 files changed, 404 insertions(+), 141 deletions(-) create mode 100644 data/tabular/scaffold_split.py create mode 100644 src/chemnlp/data/split.py diff --git a/data/tabular/formation_energies/meta.yaml b/data/tabular/formation_energies/meta.yaml index 2a33e045c..47c47d2b7 100644 --- a/data/tabular/formation_energies/meta.yaml +++ b/data/tabular/formation_energies/meta.yaml @@ -22,7 +22,7 @@ targets: benchmarks: [] identifiers: - id: composition - type: text + type: COMPOSITION description: chemical formula license: CC BY 4.0 links: diff --git a/data/tabular/h2_storage_materials/meta.yaml b/data/tabular/h2_storage_materials/meta.yaml index d1bf9944b..6a464062b 100644 --- a/data/tabular/h2_storage_materials/meta.yaml +++ b/data/tabular/h2_storage_materials/meta.yaml @@ -19,7 +19,7 @@ identifiers: type: IUPAC description: chemical name - id: chemical_formula - type: Other + type: COMPOSITION names: - noun: chemical formula description: chemical formula diff --git a/data/tabular/mp_anisotropy/meta.yaml b/data/tabular/mp_anisotropy/meta.yaml index 933ed7be8..5c71ec6e7 100644 --- a/data/tabular/mp_anisotropy/meta.yaml +++ b/data/tabular/mp_anisotropy/meta.yaml @@ -19,7 +19,7 @@ benchmarks: split_column: split identifiers: - id: formula - type: text + type: COMPOSITION description: composition license: CC BY 4.0 links: diff --git a/data/tabular/mp_shear_modulus/meta.yaml b/data/tabular/mp_shear_modulus/meta.yaml index 703c729a7..5fe3878f3 100644 --- a/data/tabular/mp_shear_modulus/meta.yaml +++ b/data/tabular/mp_shear_modulus/meta.yaml @@ -19,7 +19,7 @@ benchmarks: split_column: split identifiers: - id: formula - type: text + type: COMPOSITION description: composition license: CC BY 4.0 links: diff --git a/data/tabular/peptides_hemolytic/meta.yaml b/data/tabular/peptides_hemolytic/meta.yaml index 1a882fdda..9dff6ed05 100644 --- a/data/tabular/peptides_hemolytic/meta.yaml +++ b/data/tabular/peptides_hemolytic/meta.yaml @@ -24,7 +24,7 @@ targets: benchmarks: [] identifiers: - id: sequence - type: Other + type: AS_SEQUENCE description: amino acid sequence license: CC BY 4.0 links: diff --git a/data/tabular/peptides_nonfouling/meta.yaml b/data/tabular/peptides_nonfouling/meta.yaml index b61a7e1d5..66cc7216a 100644 --- a/data/tabular/peptides_nonfouling/meta.yaml +++ b/data/tabular/peptides_nonfouling/meta.yaml @@ -2,13 +2,13 @@ name: peptides_nonfouling description: |- Non-fouling is defined as resistance to non-specific interactions. - A non-fouling peptide (positive example) is defined using the mechanism proposed in - ref white2012decoding. Briefly, ref white2012decoding, showed that the exterior surfaces - of proteins have a significantly different frequency of amino acids, and this increases - in aggregation prone environments, like the cytoplasm. Synthesizing self-assembling peptides - that follow this amino acid distribution and coating surfaces with the peptides creates - non-fouling surfaces. This pattern was also found inside chaperone proteins, - another area where resistance to non-specific interactions is important (ref white2012role). + A non-fouling peptide (positive example) is defined using the mechanism proposed in + ref white2012decoding. Briefly, ref white2012decoding, showed that the exterior surfaces + of proteins have a significantly different frequency of amino acids, and this increases + in aggregation prone environments, like the cytoplasm. Synthesizing self-assembling peptides + that follow this amino acid distribution and coating surfaces with the peptides creates + non-fouling surfaces. This pattern was also found inside chaperone proteins, + another area where resistance to non-specific interactions is important (ref white2012role). targets: - id: nonfouling description: The nonfouling activity of a peptide sequence (1) or not (0). @@ -21,7 +21,7 @@ targets: benchmarks: [] identifiers: - id: sequence - type: Other + type: AS_SEQUENCE description: amino acid sequence license: CC BY 4.0 links: diff --git a/data/tabular/peptides_soluble/meta.yaml b/data/tabular/peptides_soluble/meta.yaml index eaf54c81a..759e0b0bd 100644 --- a/data/tabular/peptides_soluble/meta.yaml +++ b/data/tabular/peptides_soluble/meta.yaml @@ -2,12 +2,12 @@ name: peptides_soluble description: |- Solubility was estimated by retrospective analysis of electronic laboratory notebooks. - The notebooks were part of a large effort called the Protein Structure Initiative and consider sequences - linearly through the following stages: Selected, Cloned, Expressed, Soluble, Purified, Crystallized, - HSQC (heteronuclear single quantum coherence), Structure, and deposited in PDB. The peptides were identified - as soluble or insoluble by "Comparing the experimental status at two time points, September 2009 and May 2010, - we were able to derive a set of insoluble proteins defined as those which were not - soluble in September 2009 and still remained in that state 8 months later." + The notebooks were part of a large effort called the Protein Structure Initiative and consider sequences + linearly through the following stages: Selected, Cloned, Expressed, Soluble, Purified, Crystallized, + HSQC (heteronuclear single quantum coherence), Structure, and deposited in PDB. The peptides were identified + as soluble or insoluble by "Comparing the experimental status at two time points, September 2009 and May 2010, + we were able to derive a set of insoluble proteins defined as those which were not + soluble in September 2009 and still remained in that state 8 months later." targets: - id: soluble description: The solubility of a peptide sequence (1) or not (0). @@ -20,7 +20,7 @@ targets: benchmarks: [] identifiers: - id: sequence - type: Other + type: AS_SEQUENCE description: amino acid sequence license: CC BY 4.0 links: diff --git a/data/tabular/perovskite_db/meta.yaml b/data/tabular/perovskite_db/meta.yaml index 682b0e239..319dfa4df 100644 --- a/data/tabular/perovskite_db/meta.yaml +++ b/data/tabular/perovskite_db/meta.yaml @@ -46,7 +46,7 @@ targets: benchmarks: [] identifiers: - id: reduced_formulas - type: Other + type: COMPOSITION description: reduced chemical formula - id: iupac_formulas type: Other diff --git a/data/tabular/rdkit_features/meta.yaml b/data/tabular/rdkit_features/meta.yaml index 8524ecc88..bb9499466 100644 --- a/data/tabular/rdkit_features/meta.yaml +++ b/data/tabular/rdkit_features/meta.yaml @@ -1,5 +1,5 @@ --- -name: rdkit_features +names: rdkit_features description: |- Molecular descriptors computed using RDKit targets: diff --git a/data/tabular/scaffold_split.py b/data/tabular/scaffold_split.py new file mode 100644 index 000000000..a84502950 --- /dev/null +++ b/data/tabular/scaffold_split.py @@ -0,0 +1,184 @@ +import os +import subprocess +from functools import partial +from glob import glob +from typing import List + +import fire +import pandas as pd +import yaml +from pandarallel import pandarallel + +from chemnlp.data.split import _create_scaffold_split + +pandarallel.initialize(progress_bar=True) + +to_scaffold_split = [ + "blood_brain_barrier_martins_et_al", + "serine_threonine_kinase_33_butkiewicz", + "ld50_zhu", + "herg_blockers", + "clearance_astrazeneca", + "half_life_obach", + "drug_induced_liver_injury", + "kcnq2_potassium_channel_butkiewicz", + "sarscov2_3clpro_diamond", + "volume_of_distribution_at_steady_state_lombardo_et_al", + "sr_hse_tox21", + "nr_er_tox21", + "cyp2c9_substrate_carbonmangels", + "nr_aromatase_tox21", + "cyp_p450_2d6_inhibition_veith_et_al", + "cyp_p450_1a2_inhibition_veith_et_al", + "cyp_p450_2c9_inhibition_veith_et_al", + "m1_muscarinic_receptor_antagonists_butkiewicz", + "nr_ar_tox21", + "sr_atad5_tox21", + "tyrosyl-dna_phosphodiesterase_butkiewicz", + "cav3_t-type_calcium_channels_butkiewicz", + "clintox" "sr_p53_tox21", + "nr_er_lbd_tox21" "pampa_ncats", + "sr_mmp_tox21", + "caco2_wang", + "sarscov2_vitro_touret", + "choline_transporter_butkiewicz", + "orexin1_receptor_butkiewicz", + "human_intestinal_absorption", + "nr_ahr_tox21", + "cyp3a4_substrate_carbonmangels", + "herg_karim_et_al", + "hiv", + "carcinogens", + "sr_are_tox21", + "nr_ppar_gamma_tox21", + "solubility_aqsoldb", + "m1_muscarinic_receptor_agonists_butkiewicz", + "ames_mutagenicity", + "potassium_ion_channel_kir2_1_butkiewicz", + "cyp_p450_3a4_inhibition_veith_et_al", + "skin_reaction", + "cyp2d6_substrate_carbonmangels", + "cyp_p450_2c19_inhibition_veith_et_al", + "nr_ar_lbd_tox21", + "p_glycoprotein_inhibition_broccatelli_et_al", + "bioavailability_ma_et_al", + "BACE", + "hiv", + "lipophilicity", + "thermosol", + "MUV_466", + "MUV_548", + "MUV_600", + "MUV_644", + "MUV_652", + "MUV_689", + "MUV_692", + "MUV_712", + "MUV_713", + "MUV_733", + "MUV_737", + "MUV_810", + "MUV_832", + "MUV_846", + "MUV_852", + "MUV_858", + "MUV_859", +] + + +def split_for_smiles(smiles: str, train_smiles: List[str], val_smiles: List[str]): + if smiles in train_smiles: + return "train" + elif smiles in val_smiles: + return "valid" + else: + return "test" + + +def main( + data_dir, + override: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + seed: int = 42, + debug: bool = False, +): + all_yaml_files = glob(os.path.join(data_dir, "**", "*.yaml"), recursive=True) + if debug: + all_yaml_files = all_yaml_files[:5] + transformed_files = [] + for file in all_yaml_files: + with open(file, "r") as f: + meta = yaml.safe_load(f) + + if meta["name"] in to_scaffold_split: + # run transform.py script in this directory if `data_clean.csv` does not exist + # use this dir as cwd + if not os.path.exists( + os.path.join(os.path.dirname(file), "data_clean.csv") + ): + subprocess.run( + ["python", "transform.py"], + cwd=os.path.dirname(file), + ) + + transformed_files.append( + os.path.join(os.path.dirname(file), "data_clean.csv") + ) + + all_smiles = set() + for file in transformed_files: + df = pd.read_csv(file, low_memory=False) + all_smiles.update(df["SMILES"].tolist()) + del df # ensure memory is freed + + all_smiles = list(all_smiles) + splits = _create_scaffold_split( + all_smiles, frac=[train_frac, val_frac, test_frac], seed=42 + ) + + # select the right indices for each split + train_smiles = [all_smiles[i] for i in splits["train"]] + val_smiles = [all_smiles[i] for i in splits["valid"]] + print( + "Train smiles:", + len(train_smiles), + "Val smiles:", + len(val_smiles), + "Test smiles:", + len(splits["test"]), + ) + + # now for each dataframe, add a split column based on in which list in the `splits` dict the smiles is + # smiles are in the SMILES column + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` and write the new file to `data_clean.csv` + # we print the train/val/test split sizes and fractions for each dataset + + split_for_smiles_curried = partial( + split_for_smiles, train_smiles=train_smiles, val_smiles=val_smiles + ) + for file in transformed_files: + df = pd.read_csv(file, low_memory=False) + df["split"] = df["SMILES"].parallel_apply(split_for_smiles_curried) + + # to ensure overall scaffold splitting does not distort train/val/test split sizes for each dataset + print( + f"Dataset {file} has {len(df)} datapoints. Split sizes: {len(df[df['split'] == 'train'])} train, {len(df[df['split'] == 'valid'])} valid, {len(df[df['split'] == 'test'])} test." # noqa: E501 + ) + print( + f"Dataset {file} has {len(df)} datapoints. Split fractions: {len(df[df['split'] == 'train']) / len(df)} train, {len(df[df['split'] == 'valid']) / len(df)} valid, {len(df[df['split'] == 'test']) / len(df)} test." # noqa: E501 + ) + if override: + # write the new data_clean.csv file + df.to_csv(file, index=False) + else: + # copy the old data_clean.csv to data_clean_old.csv + os.rename(file, file.replace(".csv", "_old.csv")) + # write the new data_clean.csv file + df.to_csv(file, index=False) + + +if __name__ == "__main__": + fire.Fire(main) diff --git a/data/tabular/train_test_split.py b/data/tabular/train_test_split.py index 877619954..f27554c0b 100644 --- a/data/tabular/train_test_split.py +++ b/data/tabular/train_test_split.py @@ -14,116 +14,41 @@ """ import os -import sys -from collections import defaultdict from glob import glob -from random import Random -from typing import Dict, List +from typing import List import fire +import numpy as np import pandas as pd -from rdkit import Chem, RDLogger -from rdkit.Chem.Scaffolds import MurckoScaffold +from rdkit import RDLogger from tqdm import tqdm -RDLogger.DisableLog("rdApp.*") - - -def print_sys(s): - """system print - - Args: - s (str): the string to print - """ - print(s, flush=True, file=sys.stderr) - - -def create_scaffold_split( - df: pd.DataFrame, seed: int, frac: List[float], entity: str = "SMILES" -) -> Dict[str, pd.DataFrame]: - """create scaffold split. it first generates molecular scaffold for each molecule - and then split based on scaffolds - adapted from: https://github.com/mims-harvard/TDC/tdc/utils/split.py - - Args: - df (pd.DataFrame): dataset dataframe - fold_seed (int): the random seed - frac (list): a list of train/valid/test fractions - entity (str): the column name for where molecule stores - - Returns: - dict: a dictionary of splitted dataframes, where keys are train/valid/test - and values correspond to each dataframe - """ - random = Random(seed) +from chemnlp.data.split import create_scaffold_split - s = df[entity].values - scaffolds = defaultdict(set) +RDLogger.DisableLog("rdApp.*") - error_smiles = 0 - for i, smiles in tqdm(enumerate(s), total=len(s)): - try: - scaffold = MurckoScaffold.MurckoScaffoldSmiles( - mol=Chem.MolFromSmiles(smiles), includeChirality=False - ) - scaffolds[scaffold].add(i) - except Exception: - print_sys(smiles + " returns RDKit error and is thus omitted...") - error_smiles += 1 - - train, val, test = [], [], [] - train_size = int((len(df) - error_smiles) * frac[0]) - val_size = int((len(df) - error_smiles) * frac[1]) - test_size = (len(df) - error_smiles) - train_size - val_size - train_scaffold_count, val_scaffold_count, test_scaffold_count = 0, 0, 0 - - # index_sets = sorted(list(scaffolds.values()), key=lambda i: len(i), reverse=True) - index_sets = list(scaffolds.values()) - big_index_sets = [] - small_index_sets = [] - for index_set in index_sets: - if len(index_set) > val_size / 2 or len(index_set) > test_size / 2: - big_index_sets.append(index_set) - else: - small_index_sets.append(index_set) - random.seed(seed) - random.shuffle(big_index_sets) - random.shuffle(small_index_sets) - index_sets = big_index_sets + small_index_sets - - if frac[2] == 0: - for index_set in index_sets: - if len(train) + len(index_set) <= train_size: - train += index_set - train_scaffold_count += 1 - else: - val += index_set - val_scaffold_count += 1 - else: - for index_set in index_sets: - if len(train) + len(index_set) <= train_size: - train += index_set - train_scaffold_count += 1 - elif len(val) + len(index_set) <= val_size: - val += index_set - val_scaffold_count += 1 - else: - test += index_set - test_scaffold_count += 1 - return { - "train": df.iloc[train].reset_index(drop=True), - "valid": df.iloc[val].reset_index(drop=True), - "test": df.iloc[test].reset_index(drop=True), - } +REPRESENTATION_LIST = [ + "SMILES", + "PSMILES", + "SELFIES", + "RXNSMILES", + "RXNSMILESWAdd", + "IUPAC", + "InChI", + "InChIKey", + "COMPOSITION", + "Sentence", + "AS_SEQUENCE", +] def rewrite_data_with_splits( csv_paths: List[str], + repr_col: str, train_test_df: pd.DataFrame, override: bool = False, check: bool = True, - repr_col: str = "SMILES", ) -> None: """Rewrite dataframes with the correct split column @@ -138,8 +63,12 @@ def rewrite_data_with_splits( repr_col (str): the column name for where SMILES representation is stored defaults to "SMILES" """ + + for path in csv_paths: + read_dataset = pd.read_csv(path) + if check: - train_smiles = set(train_test_df.query("split == 'train'")["SMILES"].to_list()) + train_smiles = set(train_test_df.query("split == 'train'")[repr_col].to_list()) for path in csv_paths: read_dataset = pd.read_csv(path) @@ -153,11 +82,8 @@ def rewrite_data_with_splits( except KeyError: print(f"No split column in {path}") - col_to_merge = "SMILES" - merged_data = pd.merge( - read_dataset, train_test_df, on=col_to_merge, how="left" - ) - merged_data = merged_data.dropna() + merged_data = pd.merge(read_dataset, train_test_df, on=repr_col, how="left") + # merged_data = merged_data.dropna() if override: merged_data.to_csv(path, index=False) else: @@ -172,15 +98,17 @@ def rewrite_data_with_splits( raise ValueError("Split failed, no test data") if check: test_split_smiles = set( - merged_data.query("split == 'test'")["SMILES"].to_list() + merged_data.query("split == 'test'")[repr_col].to_list() ) if len(train_smiles.intersection(test_split_smiles)) > 0: raise ValueError("Split failed, train and test overlap") - else: - print(f"Skipping {path} as it does not contain {repr_col} column") -def cli( +TRACKED_DATASETS = [] + + +def per_repr( + repr_col: str, seed: int = 42, train_size: float = 0.8, val_size: float = 0.0, @@ -188,7 +116,6 @@ def cli( path: str = "*/data_clean.csv", override: bool = False, check: bool = True, - repr_col: str = "SMILES", ): paths_to_data = glob(path) @@ -197,40 +124,86 @@ def cli( # for path in paths_to_data: # if "flashpoint" in path: # filtered_paths.append(path) - # elif "freesolv" in path: + # elif "BBBP" in path: # filtered_paths.append(path) # elif "peptide" in path: # filtered_paths.append(path) + # elif "bicerano_dataset" in path: + # filtered_paths.append(path) # paths_to_data = filtered_paths - REPRESENTATION_LIST = [] + representations = [] - for path in tqdm(paths_to_data): + for path in paths_to_data: df = pd.read_csv(path) - if repr_col in df.columns: - REPRESENTATION_LIST.extend(df[repr_col].to_list()) - REPR_DF = pd.DataFrame() - REPR_DF["SMILES"] = list(set(REPRESENTATION_LIST)) + if repr_col in df.columns and path not in TRACKED_DATASETS: + print("Processing", path.split("/")[0]) + TRACKED_DATASETS.append(path) + representations.extend(df[repr_col].to_list()) - scaffold_split = create_scaffold_split( - REPR_DF, seed=seed, frac=[train_size, val_size, test_size] - ) + repr_df = pd.DataFrame() + repr_df[repr_col] = list(set(representations)) + + if "SMILES" in repr_df.columns: + split = create_scaffold_split( + repr_df, seed=seed, frac=[train_size, val_size, test_size] + ) + else: + split_ = pd.DataFrame( + np.random.choice( + ["train", "test", "valid"], + size=len(repr_df), + p=[1 - val_size - test_size, test_size, val_size], + ) + ) + + repr_df["split"] = split_ + train = repr_df.query("split == 'train'").reset_index(drop=True) + test = repr_df.query("split == 'test'").reset_index(drop=True) + valid = repr_df.query("split == 'valid'").reset_index(drop=True) + + split = {"train": train, "test": test, "valid": valid} # create train and test dataframes - train_df = scaffold_split["train"] - test_df = scaffold_split["test"] + train_df = split["train"] + test_df = split["test"] + valid_df = split["valid"] # add split columns to train and test dataframes train_df["split"] = len(train_df) * ["train"] test_df["split"] = len(test_df) * ["test"] + valid_df["split"] = len(valid_df) * ["valid"] # merge train and test across all datasets - merge = pd.concat([train_df, test_df], axis=0) + merge = pd.concat([train_df, test_df, valid_df], axis=0) # rewrite data_clean.csv for each dataset rewrite_data_with_splits( - paths_to_data, merge, override=override, check=check, repr_col=repr_col + csv_paths=paths_to_data, + repr_col=repr_col, + train_test_df=merge, + override=override, + check=check, ) +def cli( + seed: int = 42, + train_size: float = 0.75, + val_size: float = 0.125, + test_size: float = 0.125, + path: str = "*/data_clean.csv", + override: bool = False, + check: bool = True, +): + for representation in tqdm(REPRESENTATION_LIST): + if representation == "SMILES": + print("Processing priority representation: SMILES") + else: + print("Processing datasets with the representation column:", representation) + per_repr( + representation, seed, train_size, val_size, test_size, path, override, check + ) + + if __name__ == "__main__": fire.Fire(cli) diff --git a/src/chemnlp/data/split.py b/src/chemnlp/data/split.py new file mode 100644 index 000000000..05ac2f76c --- /dev/null +++ b/src/chemnlp/data/split.py @@ -0,0 +1,106 @@ +from collections import defaultdict +from random import Random +from typing import Dict, Iterable, List + +import pandas as pd +from rdkit import Chem +from rdkit.Chem.Scaffolds import MurckoScaffold +from tqdm import tqdm + + +def create_scaffold_split( + df: pd.DataFrame, seed: int, frac: List[float], entity: str = "SMILES" +): + """create scaffold split. it first generates molecular scaffold for each molecule + and then split based on scaffolds + adapted from: https://github.com/mims-harvard/TDC/tdc/utils/split.py + + Args: + df (pd.DataFrame): dataset dataframe + fold_seed (int): the random seed + frac (list): a list of train/valid/test fractions + entity (str): the column name for where molecule stores + + Returns: + dict: a dictionary of splitted dataframes, where keys are train/valid/test + and values correspond to each dataframe + """ + return _create_scaffold_split(df[entity], seed, frac) + + +def _create_scaffold_split( + smiles: Iterable[str], seed: int, frac: List[float] +) -> Dict[str, pd.DataFrame]: + """create scaffold split. it first generates molecular scaffold for each molecule + and then split based on scaffolds + adapted from: https://github.com/mims-harvard/TDC/tdc/utils/split.py + + Args: + smiles (Iterable[str]): dataset smiles + fold_seed (int): the random seed + frac (list): a list of train/valid/test fractions + + Returns: + dict: a dictionary of indices for splitted data, where keys are train/valid/test + """ + random = Random(seed) + + s = smiles + scaffolds = defaultdict(set) + + error_smiles = 0 + for i, smiles in tqdm(enumerate(s), total=len(s)): + try: + scaffold = MurckoScaffold.MurckoScaffoldSmiles( + mol=Chem.MolFromSmiles(smiles), includeChirality=False + ) + scaffolds[scaffold].add(i) + except Exception: + print(smiles + " returns RDKit error and is thus omitted...") + error_smiles += 1 + + train, val, test = [], [], [] + train_size = int((len(s) - error_smiles) * frac[0]) + val_size = int((len(s) - error_smiles) * frac[1]) + test_size = (len(s) - error_smiles) - train_size - val_size + train_scaffold_count, val_scaffold_count, test_scaffold_count = 0, 0, 0 + + # index_sets = sorted(list(scaffolds.values()), key=lambda i: len(i), reverse=True) + index_sets = list(scaffolds.values()) + big_index_sets = [] + small_index_sets = [] + for index_set in index_sets: + if len(index_set) > val_size / 2 or len(index_set) > test_size / 2: + big_index_sets.append(index_set) + else: + small_index_sets.append(index_set) + random.seed(seed) + random.shuffle(big_index_sets) + random.shuffle(small_index_sets) + index_sets = big_index_sets + small_index_sets + + if frac[2] == 0: + for index_set in index_sets: + if len(train) + len(index_set) <= train_size: + train += index_set + train_scaffold_count += 1 + else: + val += index_set + val_scaffold_count += 1 + else: + for index_set in index_sets: + if len(train) + len(index_set) <= train_size: + train += index_set + train_scaffold_count += 1 + elif len(val) + len(index_set) <= val_size: + val += index_set + val_scaffold_count += 1 + else: + test += index_set + test_scaffold_count += 1 + + return { + "train": train, + "valid": val, + "test": test, + } From c107ffa4009040ab1fc2df06e4d265646305708a Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sat, 18 Nov 2023 09:03:02 +0100 Subject: [PATCH 39/61] get data the right way (#499) --- data/tabular/MUV_466/transform.py | 6 ++++-- data/tabular/MUV_548/transform.py | 6 ++++-- data/tabular/MUV_600/transform.py | 6 ++++-- data/tabular/MUV_644/transform.py | 6 ++++-- data/tabular/MUV_652/transform.py | 6 ++++-- data/tabular/MUV_689/transform.py | 6 ++++-- data/tabular/MUV_692/transform.py | 6 ++++-- data/tabular/MUV_712/transform.py | 6 ++++-- data/tabular/MUV_713/transform.py | 6 ++++-- data/tabular/MUV_733/transform.py | 6 ++++-- data/tabular/MUV_737/transform.py | 6 ++++-- data/tabular/MUV_810/transform.py | 6 ++++-- data/tabular/MUV_832/transform.py | 6 ++++-- data/tabular/MUV_846/transform.py | 6 ++++-- data/tabular/MUV_852/transform.py | 6 ++++-- data/tabular/MUV_858/transform.py | 6 ++++-- data/tabular/MUV_859/transform.py | 6 ++++-- data/tabular/scaffold_split.py | 1 + 18 files changed, 69 insertions(+), 34 deletions(-) diff --git a/data/tabular/MUV_466/transform.py b/data/tabular/MUV_466/transform.py index 666a7dcc3..4bdea66ee 100644 --- a/data/tabular/MUV_466/transform.py +++ b/data/tabular/MUV_466/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_466/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_466/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_548/transform.py b/data/tabular/MUV_548/transform.py index d7e17cc34..b72414fa8 100644 --- a/data/tabular/MUV_548/transform.py +++ b/data/tabular/MUV_548/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_548/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_548/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_600/transform.py b/data/tabular/MUV_600/transform.py index 9ab65a92c..a5696a283 100644 --- a/data/tabular/MUV_600/transform.py +++ b/data/tabular/MUV_600/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_600/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_600/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_644/transform.py b/data/tabular/MUV_644/transform.py index 12e8f355a..d05868f5f 100644 --- a/data/tabular/MUV_644/transform.py +++ b/data/tabular/MUV_644/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_644/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_644/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_652/transform.py b/data/tabular/MUV_652/transform.py index 626733a34..985453ac7 100644 --- a/data/tabular/MUV_652/transform.py +++ b/data/tabular/MUV_652/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_652/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_652/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_689/transform.py b/data/tabular/MUV_689/transform.py index 58d16c330..b476220f5 100644 --- a/data/tabular/MUV_689/transform.py +++ b/data/tabular/MUV_689/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_689/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_689/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_692/transform.py b/data/tabular/MUV_692/transform.py index 2ddd685e2..bf47b25c2 100644 --- a/data/tabular/MUV_692/transform.py +++ b/data/tabular/MUV_692/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_692/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_692/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_712/transform.py b/data/tabular/MUV_712/transform.py index ed8b0fdd7..fb923a5e6 100644 --- a/data/tabular/MUV_712/transform.py +++ b/data/tabular/MUV_712/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_712/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_712/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_713/transform.py b/data/tabular/MUV_713/transform.py index b5ef85ab0..7e2726afc 100644 --- a/data/tabular/MUV_713/transform.py +++ b/data/tabular/MUV_713/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_713/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_713/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_733/transform.py b/data/tabular/MUV_733/transform.py index ef1d85604..d9bd3610b 100644 --- a/data/tabular/MUV_733/transform.py +++ b/data/tabular/MUV_733/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_733/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_733/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_737/transform.py b/data/tabular/MUV_737/transform.py index 0e4ca689e..da727a986 100644 --- a/data/tabular/MUV_737/transform.py +++ b/data/tabular/MUV_737/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_737/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_737/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_810/transform.py b/data/tabular/MUV_810/transform.py index ccf427d5b..49fe19221 100644 --- a/data/tabular/MUV_810/transform.py +++ b/data/tabular/MUV_810/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_810/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_810/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_832/transform.py b/data/tabular/MUV_832/transform.py index 52b092599..ad2f50906 100644 --- a/data/tabular/MUV_832/transform.py +++ b/data/tabular/MUV_832/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_832/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_832/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_846/transform.py b/data/tabular/MUV_846/transform.py index 448ff6021..55736cb70 100644 --- a/data/tabular/MUV_846/transform.py +++ b/data/tabular/MUV_846/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_846/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_846/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_852/transform.py b/data/tabular/MUV_852/transform.py index 8d9a6d187..515678cba 100644 --- a/data/tabular/MUV_852/transform.py +++ b/data/tabular/MUV_852/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_852/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_852/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_858/transform.py b/data/tabular/MUV_858/transform.py index 6b3ff6be2..317f3e9fa 100644 --- a/data/tabular/MUV_858/transform.py +++ b/data/tabular/MUV_858/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_858/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_858/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/MUV_859/transform.py b/data/tabular/MUV_859/transform.py index a80a6f0af..6f05fc1ea 100644 --- a/data/tabular/MUV_859/transform.py +++ b/data/tabular/MUV_859/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def transform_data(): - df = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/MUV/raw/main/MUV_859/data_clean.csv" + file = hf_hub_download( + repo_id="chemNLP/MUV", filename="MUV_859/data_clean.csv", repo_type="dataset" ) + df = pd.read_csv(file) df.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/scaffold_split.py b/data/tabular/scaffold_split.py index a84502950..7563f4076 100644 --- a/data/tabular/scaffold_split.py +++ b/data/tabular/scaffold_split.py @@ -109,6 +109,7 @@ def main( all_yaml_files = all_yaml_files[:5] transformed_files = [] for file in all_yaml_files: + print(f"Processing {file}") with open(file, "r") as f: meta = yaml.safe_load(f) From 698f2ea5b540359759851cdd09cbff71c585fbd8 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sat, 18 Nov 2023 09:06:00 +0100 Subject: [PATCH 40/61] iupac <-> smiles (#500) * iupac <-> smiles * lint * lint --- data/tabular/iupac_smiles/meta.yaml | 73 ++++++++++++++++++++++++++ data/tabular/iupac_smiles/transform.py | 21 ++++++++ 2 files changed, 94 insertions(+) create mode 100644 data/tabular/iupac_smiles/meta.yaml create mode 100644 data/tabular/iupac_smiles/transform.py diff --git a/data/tabular/iupac_smiles/meta.yaml b/data/tabular/iupac_smiles/meta.yaml new file mode 100644 index 000000000..143009aa8 --- /dev/null +++ b/data/tabular/iupac_smiles/meta.yaml @@ -0,0 +1,73 @@ +--- +name: iupac_to_smiles +description: |- + PubChem is an open chemistry database at the National Institutes of Health (NIH). + This dataset contains the SMILES and different versions of the IUPAC names +targets: + - id: Traditional + description: traditional IUPAC name + type: string + names: + - noun: traditional IUPAC name + - id: Systematic + description: systematic IUPAC name + type: string + names: + - noun: systematic IUPAC name + - id: CAS_like_Style + description: CAS-like name + type: string + names: + - noun: CAS-like IUPAC name + - noun: IUAPC name in CAS-like style + - id: Preferred + description: preferred IUPAC name + type: string + names: + - noun: preferred IUPAC name + - noun: IUPAC name +identifiers: + - id: SMILES + type: SMILES + description: SMILES + names: + - noun: SMILES +license: CC0 (Public Domain) +links: + - url: https://pubchem.ncbi.nlm.nih.gov/ + description: original data source +num_points: 5551 +bibtex: + - |- + @article{Kim_2022, title={PubChem 2023 update}, + volume={51}, ISSN={1362-4962}, + url={http://dx.doi.org/10.1093/nar/gkac956}, + DOI={10.1093/nar/gkac956}, number={D1}, + journal={Nucleic Acids Research}, + publisher={Oxford University Press (OUP)}, + author={Kim, Sunghwan and Chen, Jie and Cheng, Tiejun + and Gindulyte, Asta and He, Jia and He, Siqian + and Li, Qingliang and Shoemaker, Benjamin A + and Thiessen, Paul A and Yu, Bo and Zaslavsky, Leonid + and Zhang, Jian and Bolton, Evan E}, + year={2022}, month=oct, pages={D1373–D1380} } +templates: + - The {Traditional__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} is {Traditional#}. + - The {CAS_like_Style__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} is {CAS_like_Style#}. + - The {Preferred__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} is {Preferred#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Traditional__names__noun} is {SMILES#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Systematic__names__noun} is {SMILES#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} is {SMILES#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Preferred__names__noun} is {SMILES#}. + - |- + Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of the {#molecule|chemical|compound!} with {Traditional__names__noun} {#IUPAC|IUPAC name!}. + IUPAC name: {Traditional#} + Result: {SMILES#} + - |- + Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of the {#molecule|chemical|compound!} with {Systematic__names__noun} {#IUPAC|IUPAC name!}. + IUPAC name: {Systematic#} + Result: {SMILES#} + - |- + Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} {#IUPAC|IUPAC name!}. + IUPAC name: {CAS_like_Style#} + Result: {SMILES#} diff --git a/data/tabular/iupac_smiles/transform.py b/data/tabular/iupac_smiles/transform.py new file mode 100644 index 000000000..3c19ce462 --- /dev/null +++ b/data/tabular/iupac_smiles/transform.py @@ -0,0 +1,21 @@ +import os + +import pandas as pd +from datasets import load_dataset + + +def process(): + if not os.path.exists("combined_json.jsonl"): + dataset = load_dataset("kjappelbaum/chemnlp_iupac_smiles") + df = pd.DataFrame(dataset["train"]) + else: + file = "combined_json.jsonl" + df = pd.read_json(file, lines=True) + + df.drop_duplicates(subset=["SMILES"], inplace=True) + print(len(df)) + df.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + process() From ef1bb66cbf1b5d46de7692898101cfd538c134c9 Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Sat, 18 Nov 2023 20:43:26 +0100 Subject: [PATCH 41/61] feat: add Uniprot (#470) Co-authored-by: Kevin Maik Jablonka Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Co-authored-by: Michael Pieler --- data/tabular/uniprot_binding_sites/meta.yaml | 58 +++++++++++++++++++ .../uniprot_binding_sites/transform.py | 25 ++++++++ data/tabular/uniprot_organisms/meta.yaml | 47 +++++++++++++++ data/tabular/uniprot_organisms/transform.py | 25 ++++++++ data/tabular/uniprot_reactions/meta.yaml | 56 ++++++++++++++++++ data/tabular/uniprot_reactions/transform.py | 25 ++++++++ data/tabular/uniprot_sentences/meta.yaml | 48 +++++++++++++++ data/tabular/uniprot_sentences/transform.py | 36 ++++++++++++ data/text_sampling/text_sampling.py | 4 ++ 9 files changed, 324 insertions(+) create mode 100644 data/tabular/uniprot_binding_sites/meta.yaml create mode 100644 data/tabular/uniprot_binding_sites/transform.py create mode 100644 data/tabular/uniprot_organisms/meta.yaml create mode 100644 data/tabular/uniprot_organisms/transform.py create mode 100644 data/tabular/uniprot_reactions/meta.yaml create mode 100644 data/tabular/uniprot_reactions/transform.py create mode 100644 data/tabular/uniprot_sentences/meta.yaml create mode 100644 data/tabular/uniprot_sentences/transform.py diff --git a/data/tabular/uniprot_binding_sites/meta.yaml b/data/tabular/uniprot_binding_sites/meta.yaml new file mode 100644 index 000000000..40710a2c6 --- /dev/null +++ b/data/tabular/uniprot_binding_sites/meta.yaml @@ -0,0 +1,58 @@ +--- +name: uniprot_binding_sites +description: |- + Binding sites of a molecule in protein sequences. +targets: + - id: start_binding_site + description: index for start of the binding sites of a protein + type: text + names: + - noun: start binding site + - id: end_binding_site + description: index for emd of the binding sites of a protein + type: text + names: + - noun: end binding site + - id: SMILES + description: SMILES + type: SMILES + names: + - noun: SMILES +identifiers: + - id: sequence + type: AS_SEQUENCE + description: other +license: MIT +links: + - url: https://www.uniprot.org/ + description: data source +num_points: 780449 +bibtex: + - |- + @article{10.1093/nar/gkac1052, + author = {The UniProt Consortium}, + title = {UniProt - the Universal Protein Knowledgebase in 2023}, + journal = {Nucleic Acids Research}, + volume = {51}, + number = {D1}, + pages = {D523-D531}, + year = {2022}, + month = {11}, + issn = {0305-1048}, + doi = {10.1093/nar/gkac1052}, + url = {https://doi.org/10.1093/nar/gkac1052}} +templates: + - |- + Question: What are the binding sites of the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} in this {#AA|amino acid!} sequence {sequence#}? + Answer: The binding site for the {#molecule|chemical|compound!} with the SMILES {SMILES#} in the given {#AA|amino acid!} sequence is: {start_binding_site#}-{end_binding_site#}. + - |- + Question: What molecule can bind in the binding site {start_binding_site#}-{end_binding_site#} in the amino acid sequence below? + {#AA|amino acid!} sequence: {sequence#}. + Answer: {SMILES#} + - |- + Task: Design a binding site in the {#AA|amino acid!} sequence {sequence#}, in which the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} can bind. + Answer: {start_binding_site#}-{end_binding_site#} + - |- + Task: Design a {#molecule|chemical|compound!} that binds to a given site in the {#AA|amino acid!} sequence {sequence#}. + Description: The binding site is {start_binding_site#}-{end_binding_site#}. + Answer: {SMILES#} diff --git a/data/tabular/uniprot_binding_sites/transform.py b/data/tabular/uniprot_binding_sites/transform.py new file mode 100644 index 000000000..a8eb68bbc --- /dev/null +++ b/data/tabular/uniprot_binding_sites/transform.py @@ -0,0 +1,25 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + +DATA = "uniprot_binding_sites" + + +def load_dataset() -> pd.DataFrame: + uniprot = hf_hub_download( + repo_id="chemnlp/uniprot", + filename=f"{DATA}/data_clean.csv", + repo_type="dataset", + ) + uniprot = pd.read_csv(uniprot) + uniprot.end_binding_site = uniprot.end_binding_site.astype(int) + uniprot.drop_duplicates( + inplace=True, + ) + print(f"Successfully loaded {DATA}! {len(uniprot)} rows") + uniprot.to_csv("data_clean.csv", index=False) + print(f"Successfully loaded {DATA}!") + return uniprot + + +if __name__ == "__main__": + load_dataset() diff --git a/data/tabular/uniprot_organisms/meta.yaml b/data/tabular/uniprot_organisms/meta.yaml new file mode 100644 index 000000000..a54710d4e --- /dev/null +++ b/data/tabular/uniprot_organisms/meta.yaml @@ -0,0 +1,47 @@ +--- +name: uniprot_organisms +description: |- + Organisms in which a amino-acid sequence can be found. +targets: + - id: organisms + description: organisms in which a protein can be found + type: text + names: + - noun: organisms +identifiers: + - id: other + type: AS_SEQUENCE + description: other +license: MIT +links: + - url: https://www.uniprot.org/ + description: data source +num_points: 559428 +bibtex: + - |- + @article{10.1093/nar/gkac1052, + author = {The UniProt Consortium}, + title = {UniProt - the Universal Protein Knowledgebase in 2023}, + journal = {Nucleic Acids Research}, + volume = {51}, + number = {D1}, + pages = {D523-D531}, + year = {2022}, + month = {11}, + issn = {0305-1048}, + doi = {10.1093/nar/gkac1052}, + url = {https://doi.org/10.1093/nar/gkac1052}} +templates: + - |- + The protein with the {#amino acid sequence|AA sequence!} {other#} can be found in {#the organism |!}{organisms#}. + - |- + Task: {#Predict|Identify!} the organism in which this {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. + {#Amino acid sequence |Sequence|AA sequence!}: {other#} + Result: {organisms#} + - |- + User: In what organism can you find the following {#protein|amino acid sequence|AA sequence|polypeptide!}: {other#}? + Assistant: The given {#polypeptide|protein|amino acid sequence|AA sequence!} can be found in {organisms#}. + - |- + Task: {#Predict|Identify!} the organism in which this {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. + {#Amino acid sequence |Sequence|AA sequence!}: {other#} + Result: {organisms#} diff --git a/data/tabular/uniprot_organisms/transform.py b/data/tabular/uniprot_organisms/transform.py new file mode 100644 index 000000000..40e2eb827 --- /dev/null +++ b/data/tabular/uniprot_organisms/transform.py @@ -0,0 +1,25 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + +DATA = "uniprot_organisms" + + +def load_dataset() -> pd.DataFrame: + uniprot = hf_hub_download( + repo_id="chemnlp/uniprot", + filename=f"{DATA}/data_clean.csv", + repo_type="dataset", + ) + uniprot = pd.read_csv(uniprot) + uniprot.rename(columns={"sequence": "other"}, inplace=True) + uniprot.drop_duplicates( + inplace=True, + ) + print(f"Successfully loaded {DATA}! {len(uniprot)} rows") + uniprot.to_csv("data_clean.csv", index=False) + print(f"Successfully loaded {DATA}!") + return uniprot + + +if __name__ == "__main__": + load_dataset() diff --git a/data/tabular/uniprot_reactions/meta.yaml b/data/tabular/uniprot_reactions/meta.yaml new file mode 100644 index 000000000..79bb5f255 --- /dev/null +++ b/data/tabular/uniprot_reactions/meta.yaml @@ -0,0 +1,56 @@ +--- +name: uniprot_reactions +description: |- + Protein sequences and the reactions these can catalyze. +targets: + - id: reactions + description: biochemical reactions catalyzed by a protein + type: text + names: + - noun: chemical reactions + - noun: biochemical reactions +identifiers: + - id: other + type: AS_SEQUENCE + description: other +license: MIT +links: + - url: https://www.uniprot.org/ + description: data source +num_points: 253713 +bibtex: + - |- + @article{10.1093/nar/gkac1052, + author = {The UniProt Consortium}, + title = {UniProt - the Universal Protein Knowledgebase in 2023}, + journal = {Nucleic Acids Research}, + volume = {51}, + number = {D1}, + pages = {D523-D531}, + year = {2022}, + month = {11}, + issn = {0305-1048}, + doi = {10.1093/nar/gkac1052}, + url = {https://doi.org/10.1093/nar/gkac1052}} +templates: + - |- + The {#protein|amino acid sequence|AA sequence|polypeptide!} {#with the sequence |!}{other#} catalyzes the {#following |!}{#chemical |biochemical |!}reaction: {reactions#} + - |- + Task: {#Predict|Identify!} a {#biochemical |chemical |!}reaction that can be catalyzed by {#this|the following!} {#protein|amino acid sequence|AA sequence|polypeptide!}. + {#Amino acid sequence |Sequence|AA sequence!}: {other#} + Result: {reactions#} + - |- + Task: {#Generate|Create|Come up with!} a {#protein|amino acid sequence|AA sequence|polypeptide!} that can catalyze {#a|this!} specific {#biochemical |chemical |!}reaction. + Reaction: {reactions#} + {#Output|Result!}: {other#} + - |- + User: Can you {#tell me|come up with!} a {#biochemical |chemical |!}reaction that can be catalyzed by the following {#protein|amino acid sequence|AA sequence|polypeptide!}:\n{other#} + Assistant: {#Yes, the|Sure, the|Yes, sure, the|The!} {#chemical |biochemical |!}reaction that can be catalyzed by the given {#protein|amino acid sequence|AA sequence|polypeptide!} are:\n{reactions#} + - |- + Task: {#Predict|Identify!} a {#biochemical |chemical |!}reaction that can be catalyzed by {#this|the following!} {#protein|amino acid sequence|AA sequence|polypeptide!}. + {#Amino acid sequence |Sequence|AA sequence!}: {other#} + Result: {reactions#} + - |- + Task: {#Generate|Create|Come up with|Design!} a {#protein|amino acid sequence|AA sequence|polypeptide!} that can catalyze {#a|this!} specific {#biochemical |chemical |!}reaction. + Reaction: {reactions#} + {#Output|Result!}: {other#} diff --git a/data/tabular/uniprot_reactions/transform.py b/data/tabular/uniprot_reactions/transform.py new file mode 100644 index 000000000..6f2add7b4 --- /dev/null +++ b/data/tabular/uniprot_reactions/transform.py @@ -0,0 +1,25 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + +DATA = "uniprot_reactions" + + +def load_dataset() -> pd.DataFrame: + uniprot = hf_hub_download( + repo_id="chemnlp/uniprot", + filename=f"{DATA}/data_clean.csv", + repo_type="dataset", + ) + uniprot = pd.read_csv(uniprot) + uniprot.rename(columns={"sequence": "other"}, inplace=True) + uniprot.drop_duplicates( + inplace=True, + ) + print(f"Successfully loaded {DATA}! {len(uniprot)} rows") + uniprot.to_csv("data_clean.csv", index=False) + print(f"Successfully loaded {DATA}!") + return uniprot + + +if __name__ == "__main__": + load_dataset() diff --git a/data/tabular/uniprot_sentences/meta.yaml b/data/tabular/uniprot_sentences/meta.yaml new file mode 100644 index 000000000..a8c56ea81 --- /dev/null +++ b/data/tabular/uniprot_sentences/meta.yaml @@ -0,0 +1,48 @@ +--- +name: uniprot_sentences +description: |- + Descriptions of the function of a protein. +targets: + - id: sentences + description: sentences describing the function of a protein + type: text + names: + - noun: function +identifiers: + - id: sequence + type: AS_SEQUENCE + description: other +license: MIT +links: + - url: https://www.uniprot.org/ + description: data source +num_points: 396241 +bibtex: + - |- + @article{10.1093/nar/gkac1052, + author = {The UniProt Consortium}, + title = {UniProt - the Universal Protein Knowledgebase in 2023}, + journal = {Nucleic Acids Research}, + volume = {51}, + number = {D1}, + pages = {D523-D531}, + year = {2022}, + month = {11}, + issn = {0305-1048}, + doi = {10.1093/nar/gkac1052}, + url = {https://doi.org/10.1093/nar/gkac1052}} +templates: + - |- + User: {#Please describe|Describe|Please briefly describe|Briefly describe!} the {#biological |biochemical |!}function of {#the|this!} {#protein|amino acid sequence|AA sequence|polypeptide!}: {sequence#} + Assistant: {sentences#}. + - |- + User: What {#protein|amino acid sequence|AA sequence|polypeptide!} fits the {#biological |biochemical |!}description {#in the next sentence(s) |below |!}best?\n{sentences#} + Assistant: A {#protein|amino acid sequence|AA sequence|polypeptide!} that fits the {#description|sentences!} is:\n{sequence#} + - |- + Task: {#Generate|Create|Come up with!} a {#protein|amino acid sequence|AA sequence|polypeptide!} based on the description. + Description: {sentences#} + {#Output|Result!}: {sequence#} + - |- + Task: {#Generate|Create|Come up with!} a {#protein|amino acid sequence|AA sequence|polypeptide!} based on the description. + Description: {sentences#} + {#Output|Result!}: {sequence#} diff --git a/data/tabular/uniprot_sentences/transform.py b/data/tabular/uniprot_sentences/transform.py new file mode 100644 index 000000000..4188a16b8 --- /dev/null +++ b/data/tabular/uniprot_sentences/transform.py @@ -0,0 +1,36 @@ +import pandas as pd +import regex as re +from huggingface_hub import hf_hub_download + +DATA = "uniprot_sentences" + + +def clean_up_sentences(text: str) -> str: + "Remove (By similarity) from the sentences" + + updated_text = re.sub(r"\s*\((?:By\.? similarity)\)\s*", "", text) + updated_text = updated_text.replace(" . ", ". ") + updated_text = updated_text.replace(" .", ".") + return updated_text + + +def load_dataset() -> pd.DataFrame: + uniprot = hf_hub_download( + repo_id="chemnlp/uniprot", + filename=f"{DATA}/data_clean.csv", + repo_type="dataset", + ) + + uniprot = pd.read_csv(uniprot) + uniprot.sentences = uniprot.sentences.apply(clean_up_sentences) + uniprot.drop_duplicates( + inplace=True, + ) + print(f"Successfully loaded {DATA}! {len(uniprot)} rows") + uniprot.to_csv("data_clean.csv", index=False) + print(f"Successfully loaded {DATA}!") + return uniprot + + +if __name__ == "__main__": + load_dataset() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index ff28c3c2f..cc7c5e031 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -168,6 +168,10 @@ "mol_repr_transl_canonical_iupac_name", "mol_repr_transl_inchi_iupac_name", # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples + "uniprot_binding_sites", + "uniprot_organisms", + "uniprot_reactions", + "uniprot_sentences", ] From 44ce7641fc6f8a19c6eb7f8be39a56c143457c55 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sun, 19 Nov 2023 11:59:11 +0100 Subject: [PATCH 42/61] fix: iupac <-> smiles (#503) * iupac <-> smiles * lint * lint * fix bugs --- data/tabular/iupac_smiles/meta.yaml | 22 +++++++++++----------- data/tabular/iupac_smiles/transform.py | 9 +++++++-- data/text_sampling/text_sampling.py | 3 ++- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/data/tabular/iupac_smiles/meta.yaml b/data/tabular/iupac_smiles/meta.yaml index 143009aa8..5ddf51f81 100644 --- a/data/tabular/iupac_smiles/meta.yaml +++ b/data/tabular/iupac_smiles/meta.yaml @@ -36,7 +36,7 @@ license: CC0 (Public Domain) links: - url: https://pubchem.ncbi.nlm.nih.gov/ description: original data source -num_points: 5551 +num_points: 27224618 bibtex: - |- @article{Kim_2022, title={PubChem 2023 update}, @@ -52,22 +52,22 @@ bibtex: and Zhang, Jian and Bolton, Evan E}, year={2022}, month=oct, pages={D1373–D1380} } templates: - - The {Traditional__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} is {Traditional#}. - - The {CAS_like_Style__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} is {CAS_like_Style#}. - - The {Preferred__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} is {Preferred#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Traditional__names__noun} is {SMILES#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Systematic__names__noun} is {SMILES#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} is {SMILES#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Preferred__names__noun} is {SMILES#}. + - The {Traditional__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} {SMILES#} is {Traditional#}. + - The {CAS_like_Style__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} {SMILES#} is {CAS_like_Style#}. + - The {Preferred__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} {SMILES#} is {Preferred#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Traditional__names__noun} {Traditional#} is {SMILES#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Systematic__names__noun} {Systematic#} is {SMILES#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} {CAS_like_Style#} is {SMILES#}. + - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Preferred__names__noun} {Preferred#} is {SMILES#}. - |- - Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of the {#molecule|chemical|compound!} with {Traditional__names__noun} {#IUPAC|IUPAC name!}. + Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {Traditional__names__noun}. IUPAC name: {Traditional#} Result: {SMILES#} - |- - Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of the {#molecule|chemical|compound!} with {Systematic__names__noun} {#IUPAC|IUPAC name!}. + Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {Systematic__names__noun}. IUPAC name: {Systematic#} Result: {SMILES#} - |- - Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} {#IUPAC|IUPAC name!}. + Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {CAS_like_Style__names__noun}. IUPAC name: {CAS_like_Style#} Result: {SMILES#} diff --git a/data/tabular/iupac_smiles/transform.py b/data/tabular/iupac_smiles/transform.py index 3c19ce462..c46f607fb 100644 --- a/data/tabular/iupac_smiles/transform.py +++ b/data/tabular/iupac_smiles/transform.py @@ -1,10 +1,11 @@ import os +import fire import pandas as pd from datasets import load_dataset -def process(): +def process(debug=False): if not os.path.exists("combined_json.jsonl"): dataset = load_dataset("kjappelbaum/chemnlp_iupac_smiles") df = pd.DataFrame(dataset["train"]) @@ -14,8 +15,12 @@ def process(): df.drop_duplicates(subset=["SMILES"], inplace=True) print(len(df)) + + if debug: + df = df.sample(1000) + df.to_csv("data_clean.csv", index=False) if __name__ == "__main__": - process() + fire.Fire(process) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index cc7c5e031..060bedadc 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -167,6 +167,7 @@ "mol_repr_transl_canonical_inchi", "mol_repr_transl_canonical_iupac_name", "mol_repr_transl_inchi_iupac_name", + "iupac_smiles" # translation from IUPAC name to SMILES # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples "uniprot_binding_sites", "uniprot_organisms", @@ -1020,7 +1021,7 @@ def apply_sampling_and_export( for path in path_data_dir: # subselect one path - # if not "odd_one_out" in path: + # if not "iupac" in path: # continue # if path.find("data/tabular/") == -1: continue # if path.find("data/kg/") == -1: continue From 38525ea1898e4d0ab94cc6e43b9e1e12b54aa36c Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 20 Nov 2023 10:32:35 +0100 Subject: [PATCH 43/61] feat: add more diverse templates incl. benchmark templates to uniprot_binding_sites --- data/tabular/uniprot_binding_sites/meta.yaml | 43 ++++++++++++++------ 1 file changed, 30 insertions(+), 13 deletions(-) diff --git a/data/tabular/uniprot_binding_sites/meta.yaml b/data/tabular/uniprot_binding_sites/meta.yaml index 40710a2c6..9ffc76354 100644 --- a/data/tabular/uniprot_binding_sites/meta.yaml +++ b/data/tabular/uniprot_binding_sites/meta.yaml @@ -13,15 +13,15 @@ targets: type: text names: - noun: end binding site +identifiers: + - id: sequence + type: AS_SEQUENCE + description: other - id: SMILES description: SMILES type: SMILES names: - noun: SMILES -identifiers: - - id: sequence - type: AS_SEQUENCE - description: other license: MIT links: - url: https://www.uniprot.org/ @@ -42,17 +42,34 @@ bibtex: doi = {10.1093/nar/gkac1052}, url = {https://doi.org/10.1093/nar/gkac1052}} templates: +# - |- +# The {#molecule|chemical|compound!} with the {SMILES__description}{# representation|!} {SMILES#} binds to the {#AA sequence|amino acid sequence|peptide sequence|protein!} {sequence#} at the {#site|binding site|position!} {start_binding_site#}{#-| to !}{end_binding_site#}. - |- - Question: What are the binding sites of the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} in this {#AA|amino acid!} sequence {sequence#}? - Answer: The binding site for the {#molecule|chemical|compound!} with the SMILES {SMILES#} in the given {#AA|amino acid!} sequence is: {start_binding_site#}-{end_binding_site#}. + Task: {#Find|Identify|Come up with!} a binding site in the {#AA sequence|amino acid sequence|peptide sequence|protein!} for the {#molecule|chemical|compound!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + {SMILES__description}{# representation|!}: {SMILES#} + Constraint: Please {#always |!}{#indicate|show!} the {#site|binding site|position!} with a range without any additional words. When {#the range is of length one|the length is one!} please use the same {#index|position!} for the {#start|beginning!} and the end{# position|!}. + {#Output|Result!}: {start_binding_site#}-{end_binding_site#} - |- - Question: What molecule can bind in the binding site {start_binding_site#}-{end_binding_site#} in the amino acid sequence below? - {#AA|amino acid!} sequence: {sequence#}. - Answer: {SMILES#} + Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + Binding site{# position|!}: {start_binding_site#}{#-| to !}{end_binding_site#} + {#Output|Result!}: {SMILES#} - |- - Task: Design a binding site in the {#AA|amino acid!} sequence {sequence#}, in which the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} can bind. - Answer: {start_binding_site#}-{end_binding_site#} + Question: Can you {#give me one example of a|find one!} binding site of the {#molecule|chemical|compound!} with the {SMILES__description}{# representation|!} {SMILES#} in this {#AA sequence|amino acid sequence|peptide sequence|protein!} {sequence#}? + Answer: One {#possible |!}{#binding |!}site for the {#chemical|molecule|compound!} is {start_binding_site#}{#-| to !}{end_binding_site#}. - |- - Task: Design a {#molecule|chemical|compound!} that binds to a given site in the {#AA|amino acid!} sequence {sequence#}. - Description: The binding site is {start_binding_site#}-{end_binding_site#}. + Question: What {#molecule|chemical|compound!} can {#possibly |!}bind to the {#binding |!}site {#at |at the position !}{start_binding_site#}{#-| to !}{end_binding_site#} in the {#given |!}{#AA|amino acid|protein!} sequence{# below|!}? + Sequence: {sequence#} Answer: {SMILES#} + - |- + Task: {#Find|Identify|Come up with!} a binding site in the {#AA sequence|amino acid sequence|peptide sequence|protein!} for the {#molecule|chemical|compound!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + {SMILES__description}{# representation|!}: {SMILES#} + Constraint: Please {#always |!}{#indicate|show!} the {#site|binding site|position!} with a range without any additional words. When {#the range is of length one|the length is one!} please use the same {#index|position!} for the {#start|beginning!} and the end{# position|!}. + {#Output|Result!}: {start_binding_site#}-{end_binding_site#} + - |- + Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + Binding site{# position|!}: {start_binding_site#}{#-| to !}{end_binding_site#} + {#Output|Result!}: {SMILES#} From 3f95b2ba366b05e7a01533bc0e0028e2e937bb54 Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 20 Nov 2023 10:36:53 +0100 Subject: [PATCH 44/61] fix: missing comma in list --- data/text_sampling/text_sampling.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 060bedadc..1f5f442a1 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -167,12 +167,12 @@ "mol_repr_transl_canonical_inchi", "mol_repr_transl_canonical_iupac_name", "mol_repr_transl_inchi_iupac_name", - "iupac_smiles" # translation from IUPAC name to SMILES - # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples + "iupac_smiles", # translation from IUPAC name to SMILES "uniprot_binding_sites", "uniprot_organisms", "uniprot_reactions", "uniprot_sentences", + # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] From ce2d2f0e3fe23a253d9b48669936a7d23af40e69 Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 20 Nov 2023 10:49:34 +0100 Subject: [PATCH 45/61] feat: add more diverse templates incl. benchmark templates to uniprot_organisms --- data/tabular/uniprot_organisms/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/tabular/uniprot_organisms/meta.yaml b/data/tabular/uniprot_organisms/meta.yaml index a54710d4e..c430df262 100644 --- a/data/tabular/uniprot_organisms/meta.yaml +++ b/data/tabular/uniprot_organisms/meta.yaml @@ -35,13 +35,13 @@ templates: - |- The protein with the {#amino acid sequence|AA sequence!} {other#} can be found in {#the organism |!}{organisms#}. - |- - Task: {#Predict|Identify!} the organism in which this {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. + Task: {#Predict|Identify!} the organism in which {#the below|this!} {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. {#Amino acid sequence |Sequence|AA sequence!}: {other#} Result: {organisms#} - |- - User: In what organism can you find the following {#protein|amino acid sequence|AA sequence|polypeptide!}: {other#}? - Assistant: The given {#polypeptide|protein|amino acid sequence|AA sequence!} can be found in {organisms#}. + User: In what organism can you find the following {#protein|amino acid sequence|AA sequence|polypeptide!}:\n{other#} + Assistant: The given {#protein|amino acid sequence|AA sequence|polypeptide!} can be found in {organisms#}. - |- - Task: {#Predict|Identify!} the organism in which this {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. + Task: {#Predict|Identify!} the organism in which {#the below|this!} {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. {#Amino acid sequence |Sequence|AA sequence!}: {other#} Result: {organisms#} From eabbc4598dd6cd19d3d21bb26cf6cf745be3e76a Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 20 Nov 2023 11:15:33 +0100 Subject: [PATCH 46/61] feat: add more diverse templates incl. benchmark templates to uniprot_sentences --- data/tabular/uniprot_sentences/meta.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/data/tabular/uniprot_sentences/meta.yaml b/data/tabular/uniprot_sentences/meta.yaml index a8c56ea81..672362de3 100644 --- a/data/tabular/uniprot_sentences/meta.yaml +++ b/data/tabular/uniprot_sentences/meta.yaml @@ -34,14 +34,22 @@ bibtex: templates: - |- User: {#Please describe|Describe|Please briefly describe|Briefly describe!} the {#biological |biochemical |!}function of {#the|this!} {#protein|amino acid sequence|AA sequence|polypeptide!}: {sequence#} - Assistant: {sentences#}. + Assistant: {sentences#} - |- - User: What {#protein|amino acid sequence|AA sequence|polypeptide!} fits the {#biological |biochemical |!}description {#in the next sentence(s) |below |!}best?\n{sentences#} - Assistant: A {#protein|amino acid sequence|AA sequence|polypeptide!} that fits the {#description|sentences!} is:\n{sequence#} + User: What {#protein|amino acid sequence|AA sequence|polypeptide!} fits the {#biological |biochemical |!}description {#in the next sentences |below |!}best?\n{sentences#} + Assistant: A {#protein|amino acid sequence|AA sequence|polypeptide!} that fits the {#description|points|sentences!} is:\n{sequence#} + - |- + Task: {#Generate|Create|Come up with!} a description {#of a few sentences |!}for the {#protein|amino acid sequence|AA sequence|polypeptide!}{# below|!}. + {#Protein|Amino acid sequence|AA sequence|Polypeptide!}: {sequence#} + {#Output|Result!}: {sentences#} - |- Task: {#Generate|Create|Come up with!} a {#protein|amino acid sequence|AA sequence|polypeptide!} based on the description. Description: {sentences#} {#Output|Result!}: {sequence#} + - |- + Task: {#Generate|Create|Come up with!} a description {#of a few sentences |!}for the {#protein|amino acid sequence|AA sequence|polypeptide!}{# below|!}. + {#Protein|Amino acid sequence|AA sequence|Polypeptide!}: {sequence#} + {#Output|Result!}: {sentences#} - |- Task: {#Generate|Create|Come up with!} a {#protein|amino acid sequence|AA sequence|polypeptide!} based on the description. Description: {sentences#} From ce478b6cbc0f4c562fb1c16b43661499d9ab98d9 Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 20 Nov 2023 11:18:14 +0100 Subject: [PATCH 47/61] fix: last sentence ending in uniprot_sentences --- data/tabular/uniprot_sentences/transform.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/tabular/uniprot_sentences/transform.py b/data/tabular/uniprot_sentences/transform.py index 4188a16b8..78041f6d9 100644 --- a/data/tabular/uniprot_sentences/transform.py +++ b/data/tabular/uniprot_sentences/transform.py @@ -11,6 +11,9 @@ def clean_up_sentences(text: str) -> str: updated_text = re.sub(r"\s*\((?:By\.? similarity)\)\s*", "", text) updated_text = updated_text.replace(" . ", ". ") updated_text = updated_text.replace(" .", ".") + updated_text = updated_text.strip() + if not (updated_text.endswith(".")): + updated_text += "." return updated_text From fb82a6d5856bec93275d1c277c11323bb2225c34 Mon Sep 17 00:00:00 2001 From: Michael Pieler Date: Mon, 20 Nov 2023 15:44:41 +0100 Subject: [PATCH 48/61] feat: update kg dirs and meta.yaml --- .../meta.yaml | 107 ++++++++++++++++ data/kg/compound_chebi/meta.yaml | 50 +++++--- data/kg/compound_chebi_chebi/meta.yaml | 46 ++++--- .../kg/compound_chebi_chebi_chebi_1/meta.yaml | 110 ++++++++++++++++ .../kg/compound_chebi_chebi_chebi_2/meta.yaml | 110 ++++++++++++++++ data/kg/compound_protein/meta.yaml | 52 +++++--- data/kg/compound_protein_compound_1/meta.yaml | 105 ++++++++++++++++ data/kg/compound_protein_compound_2/meta.yaml | 105 ++++++++++++++++ data/kg/compound_protein_compound_3/meta.yaml | 105 ++++++++++++++++ data/kg/compound_protein_disease/meta.yaml | 54 ++++---- data/kg/compound_protein_domain/meta.yaml | 52 +++++--- data/kg/compound_protein_ec_number/meta.yaml | 54 ++++---- .../meta.yaml | 63 ++++++---- .../meta.yaml | 73 +++++------ data/kg/compound_protein_go_term_3/meta.yaml | 94 ++++++++++++++ data/kg/compound_protein_go_term_4/meta.yaml | 94 ++++++++++++++ data/kg/compound_protein_hpo/meta.yaml | 54 ++++---- .../compound_protein_hpo_disease_1/meta.yaml | 118 ++++++++++++++++++ .../compound_protein_hpo_disease_2/meta.yaml | 118 ++++++++++++++++++ data/kg/compound_protein_pathway/meta.yaml | 49 +++++--- .../meta.yaml | 118 ++++++++++++++++++ .../meta.yaml | 118 ++++++++++++++++++ .../meta.yaml | 118 ++++++++++++++++++ data/kg/compound_protein_protein/meta.yaml | 54 ++++---- data/kg/drug_chebi/meta.yaml | 46 ++++--- data/kg/drug_chebi_chebi/meta.yaml | 46 ++++--- data/kg/drug_disease_pathway/meta.yaml | 46 ++++--- .../kg/drug_disease_pathway_protein/meta.yaml | 118 ++++++++++++++++++ data/kg/drug_protein/meta.yaml | 50 +++++--- data/kg/drug_protein_disease/meta.yaml | 52 +++++--- data/kg/drug_protein_domain/meta.yaml | 52 +++++--- data/kg/drug_protein_drug/meta.yaml | 54 ++++---- data/kg/drug_protein_ec_number/meta.yaml | 58 +++++---- data/kg/drug_protein_go_term/meta.yaml | 53 +++++--- data/kg/drug_protein_hpo/meta.yaml | 52 +++++--- data/kg/drug_protein_hpo_disease/meta.yaml | 118 ++++++++++++++++++ data/kg/drug_protein_pathway/meta.yaml | 53 +++++--- .../kg/drug_protein_pathway_disease/meta.yaml | 118 ++++++++++++++++++ data/kg/drug_protein_protein/meta.yaml | 54 ++++---- 39 files changed, 2522 insertions(+), 469 deletions(-) create mode 100644 data/kg/chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles/meta.yaml create mode 100644 data/kg/compound_chebi_chebi_chebi_1/meta.yaml create mode 100644 data/kg/compound_chebi_chebi_chebi_2/meta.yaml create mode 100644 data/kg/compound_protein_compound_1/meta.yaml create mode 100644 data/kg/compound_protein_compound_2/meta.yaml create mode 100644 data/kg/compound_protein_compound_3/meta.yaml rename data/kg/{compound_protein_go_term => compound_protein_go_term_1}/meta.yaml (77%) rename data/kg/{compound_protein_compound => compound_protein_go_term_2}/meta.yaml (68%) create mode 100644 data/kg/compound_protein_go_term_3/meta.yaml create mode 100644 data/kg/compound_protein_go_term_4/meta.yaml create mode 100644 data/kg/compound_protein_hpo_disease_1/meta.yaml create mode 100644 data/kg/compound_protein_hpo_disease_2/meta.yaml create mode 100644 data/kg/compound_protein_pathway_disease_1/meta.yaml create mode 100644 data/kg/compound_protein_pathway_disease_2/meta.yaml create mode 100644 data/kg/compound_protein_pathway_disease_3/meta.yaml create mode 100644 data/kg/drug_disease_pathway_protein/meta.yaml create mode 100644 data/kg/drug_protein_hpo_disease/meta.yaml create mode 100644 data/kg/drug_protein_pathway_disease/meta.yaml diff --git a/data/kg/chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles/meta.yaml b/data/kg/chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles/meta.yaml new file mode 100644 index 000000000..50b55545d --- /dev/null +++ b/data/kg/chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles/meta.yaml @@ -0,0 +1,107 @@ +--- +name: chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles +description: Knowledgegraph data samples. +targets: + - id: protein_name + description: protein_name + type: Other + units: protein_name + names: + - noun: protein_name + - id: pchembl_value + description: pchembl_value + type: Other + units: pchembl_value + names: + - noun: pchembl_value + - id: standard_type + description: standard_type + type: Other + units: standard_type + names: + - noun: standard_type + - id: standard_value + description: standard_value + type: Other + units: standard_value + names: + - noun: standard_value + - id: standard_units + description: standard_units + type: Other + units: standard_units + names: + - noun: standard_units + - id: description + description: description + type: Other + units: description + names: + - noun: description +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 1059070 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {#molecule with the |!}{SMILES__description} {#representation of |!}{SMILES#} {#shows|exhibits|displays!} a {#bioaffinity|affinity!} for {#the + protein |!}{protein_name#} with a {standard_type#} {#value |!}of {standard_value#} {standard_units#}. + - |- + Task: Please {#derive|estimate|approximate!} {#the bioaffinity|the affinity!} of a {#molecule to a protein|protein to a molecule!}. + Protein{# name|!}: {protein_name#} + {#Molecule |!}{SMILES__description}: {SMILES#} + Constraint{#s|!}: The {#resulting|derived|calculated!} {standard_type#} {#value |!}should be in {standard_units#}. Even if you are {#uncertain|not sure!}, you must {#derive|estimate|come up with!} a {standard_type#} {#value |!}without using any {#other|additional!} words. + Result: {standard_value#} {standard_units#} + - |- + Task: Please {#create|generate!} {#a molecule |a !}{SMILES__description} that has a {#bioaffinity|affinity!} to {#the protein |!}{protein_name#} with a {standard_type#} {#value |!}of {standard_value#} {standard_units#}. + Result: {SMILES#} + - |- + User: Can you {#give me|come up with!} {#one|an!} example of a protein that has a {#bioaffinity|affinity!} to the {SMILES__description} {SMILES#}? + Assistant: {#For example, the protein |For example, |!}{protein_name#} has a {#bioaffinity|affinity!} to the {SMILES__description} {SMILES#}. + User: Can you {#derive|estimate|approximate!} the {standard_type#} {#of this molecule|of this molecule for me|for me!}? + Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, the {standard_type#} {#value |!}is {standard_value#} {standard_units#}. + - |- + User: Can you {#give me|come up with!} {#one|an!} example of a protein that has a {#bioaffinity|affinity!} to the {SMILES__description} {SMILES#}? + Assistant: {#The protein |!}{protein_name#} has for example a {#bioaffinity|affinity!} to the {SMILES__description} {SMILES#}. + User: Can you {#derive|estimate|approximate!} the {standard_type#} {#of this molecule|of this molecule for me|for me!}? + Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, the {standard_type#} {#value |!}is {standard_value#} {standard_units#}. + User: Can you give {#me |!}{#additional|more!} {#information|details!} {#on|about!} the assay{# used| used for this estimation!}? + Assistant: {#Sure|Yes|Of course!}, here you go: + {description#} + - |- + Task: Please {#derive|estimate|approximate!} {#the bioaffinity|the affinity!} of a {#molecule to a protein|protein to a molecule!}. + Protein{# name|!}: {protein_name#} + {#Molecule |!}{SMILES__description}: {SMILES#} + Constraint{#s|!}: The {#resulting|derived|calculated!} {standard_type#} {#value |!}should be in {standard_units#}. Even if you are {#uncertain|not sure!}, you must {#derive|estimate|come up with!} a {standard_type#} {#value |!}without using any {#other|additional!} words. + Result: {standard_value#} {standard_units#} + - |- + Task: Please {#create|generate!} a {#molecule |!}{SMILES__description} that has a {#bioaffinity|affinity!} to {#the protein |!}{protein_name#} with a {standard_type#} {#value |!}of {standard_value#} {standard_units#}. + Result: {SMILES#} + - |- + Task: Please answer the multiple choice question. + Question: What is the {#the bioaffinity|the affinity!} of a {#molecule to a protein|protein to a molecule!}? + Protein{# name|!}: {protein_name#} + {#Molecule |!}{SMILES__description}: {SMILES#} + Constraint: The {#shown|listed!} {standard_type#} values {#below |!}are in {standard_units#}. Even if you are {#uncertain|not sure!}, you must pick either {%multiple_choice_enum%3-5%aA1} without using any other words. + Options: + {standard_value%} + Answer: {%multiple_choice_result} + - |- + Task: Please answer the multiple choice question. + Question: What is the {#the bioaffinity|the affinity!} of a {#molecule to a protein|protein to a molecule!}? + Protein{# name|!}: {protein_name#} + {#Molecule |!}{SMILES__description}: {SMILES#} + Constraint: The {#shown|listed!} {standard_type#} values {#below |!}are in {standard_units#}. Even if you are {#uncertain|not sure!}, you must pick either {%multiple_choice_enum%3-5%aA1} without using any other words. + Options: + {standard_value%} + Answer: {%multiple_choice_result} diff --git a/data/kg/compound_chebi/meta.yaml b/data/kg/compound_chebi/meta.yaml index de5475c77..0215a4eac 100644 --- a/data/kg/compound_chebi/meta.yaml +++ b/data/kg/compound_chebi/meta.yaml @@ -2,6 +2,30 @@ name: compound_chebi description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -21,21 +45,9 @@ targets: names: - noun: node2_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org @@ -48,4 +60,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} SMILES {node1_smiles#} {rel1_type#} {node2_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} {node2_name#}. + - |- + Task: Please {#create|generate!} {#a compound |a !}{SMILES__description} that {rel1_type#} {node2_name#}. + Result: {SMILES#} + - |- + Task: Please {#create|generate!} {#a compound |a !}{SMILES__description} that {rel1_type#} {node2_name#}. + Result: {SMILES#} diff --git a/data/kg/compound_chebi_chebi/meta.yaml b/data/kg/compound_chebi_chebi/meta.yaml index 264c96dbd..91e13ec0c 100644 --- a/data/kg/compound_chebi_chebi/meta.yaml +++ b/data/kg/compound_chebi_chebi/meta.yaml @@ -2,6 +2,30 @@ name: compound_chebi_chebi description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -45,26 +69,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 30439 +num_points: 26991 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -72,4 +84,4 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} SMILES {node1_smiles#} {rel1_type#} {node2_name#} and {rel2_type#} {node3_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} {node2_name#} and {rel2_type#} {node3_name#}. diff --git a/data/kg/compound_chebi_chebi_chebi_1/meta.yaml b/data/kg/compound_chebi_chebi_chebi_1/meta.yaml new file mode 100644 index 000000000..b1153cc31 --- /dev/null +++ b/data/kg/compound_chebi_chebi_chebi_1/meta.yaml @@ -0,0 +1,110 @@ +--- +name: compound_chebi_chebi_chebi_1 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9936872 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: [] diff --git a/data/kg/compound_chebi_chebi_chebi_2/meta.yaml b/data/kg/compound_chebi_chebi_chebi_2/meta.yaml new file mode 100644 index 000000000..0a0bd567b --- /dev/null +++ b/data/kg/compound_chebi_chebi_chebi_2/meta.yaml @@ -0,0 +1,110 @@ +--- +name: compound_chebi_chebi_chebi_2 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 1480272 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: [] diff --git a/data/kg/compound_protein/meta.yaml b/data/kg/compound_protein/meta.yaml index 77fb7173e..c4e2a093f 100644 --- a/data/kg/compound_protein/meta.yaml +++ b/data/kg/compound_protein/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -27,26 +51,14 @@ targets: names: - noun: node2_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 630251 +num_points: 619840 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -54,8 +66,8 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} SMILES {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. - - The {node2_type#} {node2_protein_names#} is targeted by the drug with the SMILES {node1_smiles#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + - The {node2_type#} {node2_protein_names#} is targeted by the drug with the {SMILES__description} {SMILES#}. - |- - User: Can you give me an example for a {node1_type#} SMILES that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: Yes, The {node1_type#} SMILES {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. diff --git a/data/kg/compound_protein_compound_1/meta.yaml b/data/kg/compound_protein_compound_1/meta.yaml new file mode 100644 index 000000000..8e5bb3948 --- /dev/null +++ b/data/kg/compound_protein_compound_1/meta.yaml @@ -0,0 +1,105 @@ +--- +name: compound_protein_compound_1 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_smiles + description: node3_smiles + type: Other + units: node3_smiles + names: + - noun: node3_smiles + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9851748 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}. + - The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}. + - |- + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}. diff --git a/data/kg/compound_protein_compound_2/meta.yaml b/data/kg/compound_protein_compound_2/meta.yaml new file mode 100644 index 000000000..4d27e0568 --- /dev/null +++ b/data/kg/compound_protein_compound_2/meta.yaml @@ -0,0 +1,105 @@ +--- +name: compound_protein_compound_2 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_smiles + description: node3_smiles + type: Other + units: node3_smiles + names: + - noun: node3_smiles + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9906551 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}. + - The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}. + - |- + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}. diff --git a/data/kg/compound_protein_compound_3/meta.yaml b/data/kg/compound_protein_compound_3/meta.yaml new file mode 100644 index 000000000..52b7eef1c --- /dev/null +++ b/data/kg/compound_protein_compound_3/meta.yaml @@ -0,0 +1,105 @@ +--- +name: compound_protein_compound_3 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_smiles + description: node3_smiles + type: Other + units: node3_smiles + names: + - noun: node3_smiles + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9764124 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}. + - The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}. + - |- + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}. diff --git a/data/kg/compound_protein_disease/meta.yaml b/data/kg/compound_protein_disease/meta.yaml index 29eea4ad3..54de1a39b 100644 --- a/data/kg/compound_protein_disease/meta.yaml +++ b/data/kg/compound_protein_disease/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein_disease description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 1449715 +num_points: 1424348 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,11 +90,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}. - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the - {node3_type#} {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_type#} + {node3_name#}. - |- - User: Give me an example for a protein that is targeted by the {node1_type#} {node1_smiles#}? - Assistant: Sure, the {node2_type#} {node2_protein_names#} is targeted by the {node1_type#} {node1_smiles#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that is targeted by the {node1_type#} {SMILES#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} is targeted by the {node1_type#} {SMILES#}. User: Can you tell me which disease the {node2_type#} {node2_protein_names#} {rel2_type#}? Assistant: The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#} {node3_type#}. diff --git a/data/kg/compound_protein_domain/meta.yaml b/data/kg/compound_protein_domain/meta.yaml index 6de0142d3..15184bf4c 100644 --- a/data/kg/compound_protein_domain/meta.yaml +++ b/data/kg/compound_protein_domain/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein_domain description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 1632110 +num_points: 1589285 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,10 +90,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - '{node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}.' - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}. + - '{SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}.' + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}. - |- - User: Can you give me an example for a protein that binds the {node1_type#} {node1_smiles#}? - Assistant: Yes, the {node1_type#} {node1_smiles#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a domain of the {node2_type#} {node2_protein_names#}? Assistant: The {node2_type#} {node2_protein_names#} {rel2_type#} a {node3_name#}. diff --git a/data/kg/compound_protein_ec_number/meta.yaml b/data/kg/compound_protein_ec_number/meta.yaml index 4659b82d2..aecaa2ceb 100644 --- a/data/kg/compound_protein_ec_number/meta.yaml +++ b/data/kg/compound_protein_ec_number/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein_ec_number description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 486783 +num_points: 405980 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,11 +90,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_name#} (EC {node3_id#}). - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. Furthermore, the {node1_type#} {node1_smiles#} {rel2_type#} - the {node3_name#} (EC {node3_id#}). + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_name#} (EC {node3_id#}). + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. Furthermore, the {node1_type#} {SMILES#} {rel2_type#} the {node3_name#} + (EC {node3_id#}). - |- - User: Can you give me an example for a protein that binds the {node1_type#} {node1_smiles#}? - Assistant: Of course, the {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. User: Can you tell me which enzyme the {node2_type#} {node2_protein_names#} {rel2_type#}? Assistant: The {node2_type#} {node2_protein_names#} {rel2_type#} a {node3_name#} (EC {node3_id#}). diff --git a/data/kg/compound_protein_go_term/meta.yaml b/data/kg/compound_protein_go_term_1/meta.yaml similarity index 77% rename from data/kg/compound_protein_go_term/meta.yaml rename to data/kg/compound_protein_go_term_1/meta.yaml index 6a18a3429..f24c8ee1c 100644 --- a/data/kg/compound_protein_go_term/meta.yaml +++ b/data/kg/compound_protein_go_term_1/meta.yaml @@ -1,25 +1,49 @@ --- -name: compound_protein_go_term +name: compound_protein_go_term_1 description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other units: node2_type names: - noun: node2_type - - id: node2_protein_names - description: node2_protein_names - type: Other - units: node2_protein_names - names: - - noun: node2_protein_names - id: node2_name description: node2_name type: Other units: node2_name names: - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names - id: node2_id description: node2_id type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 14695 +num_points: 9820893 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,6 +90,5 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the - {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_compound/meta.yaml b/data/kg/compound_protein_go_term_2/meta.yaml similarity index 68% rename from data/kg/compound_protein_compound/meta.yaml rename to data/kg/compound_protein_go_term_2/meta.yaml index 12425e4df..3c022921b 100644 --- a/data/kg/compound_protein_compound/meta.yaml +++ b/data/kg/compound_protein_go_term_2/meta.yaml @@ -1,25 +1,49 @@ --- -name: compound_protein_compound +name: compound_protein_go_term_2 description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other units: node2_type names: - noun: node2_type - - id: node2_protein_names - description: node2_protein_names - type: Other - units: node2_protein_names - names: - - noun: node2_protein_names - id: node2_name description: node2_name type: Other units: node2_name names: - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names - id: node2_id description: node2_id type: Other @@ -38,12 +62,6 @@ targets: units: node3_type names: - noun: node3_type - - id: node3_smiles - description: node3_smiles - type: Other - units: node3_smiles - names: - - noun: node3_smiles - id: node3_name description: node3_name type: Other @@ -57,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 205166 +num_points: 9781374 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -84,10 +90,5 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} SMILES {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_name#}. - - The {node2_type#} {node2_protein_names#} is targeted by the drug with the SMILES {node1_smiles#} and {node3_name#}. - - |- - User: Can you give me an example for a {node1_type#} SMILES that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: Yes, The {node1_type#} SMILES {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. - User: Can you tell me another {node1_type#} SMILES that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: Of course, the {node1_type#} SMILES {node1_smiles#} {rel1_type#} the {node3_type#} SMILES {node3_smiles#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_3/meta.yaml b/data/kg/compound_protein_go_term_3/meta.yaml new file mode 100644 index 000000000..587929032 --- /dev/null +++ b/data/kg/compound_protein_go_term_3/meta.yaml @@ -0,0 +1,94 @@ +--- +name: compound_protein_go_term_3 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9798619 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_4/meta.yaml b/data/kg/compound_protein_go_term_4/meta.yaml new file mode 100644 index 000000000..e54e737bd --- /dev/null +++ b/data/kg/compound_protein_go_term_4/meta.yaml @@ -0,0 +1,94 @@ +--- +name: compound_protein_go_term_4 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 1767147 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_hpo/meta.yaml b/data/kg/compound_protein_hpo/meta.yaml index a83713181..4aea5ce91 100644 --- a/data/kg/compound_protein_hpo/meta.yaml +++ b/data/kg/compound_protein_hpo/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein_hpo description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 3033609 +num_points: 2971239 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,8 +90,8 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} {node3_name#}. - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the - human phenotype represented by {node3_name#}. - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the human + phenotype represented by {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_hpo_disease_1/meta.yaml b/data/kg/compound_protein_hpo_disease_1/meta.yaml new file mode 100644 index 000000000..a8d5bdd83 --- /dev/null +++ b/data/kg/compound_protein_hpo_disease_1/meta.yaml @@ -0,0 +1,118 @@ +--- +name: compound_protein_hpo_disease_1 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9815355 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/compound_protein_hpo_disease_2/meta.yaml b/data/kg/compound_protein_hpo_disease_2/meta.yaml new file mode 100644 index 000000000..c5b744322 --- /dev/null +++ b/data/kg/compound_protein_hpo_disease_2/meta.yaml @@ -0,0 +1,118 @@ +--- +name: compound_protein_hpo_disease_2 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 2786883 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/compound_protein_pathway/meta.yaml b/data/kg/compound_protein_pathway/meta.yaml index f69f2b501..8059ada61 100644 --- a/data/kg/compound_protein_pathway/meta.yaml +++ b/data/kg/compound_protein_pathway/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein_pathway description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 6007016 +num_points: 5872197 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,6 +90,5 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the - {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_pathway_disease_1/meta.yaml b/data/kg/compound_protein_pathway_disease_1/meta.yaml new file mode 100644 index 000000000..623bf8483 --- /dev/null +++ b/data/kg/compound_protein_pathway_disease_1/meta.yaml @@ -0,0 +1,118 @@ +--- +name: compound_protein_pathway_disease_1 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9797638 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/compound_protein_pathway_disease_2/meta.yaml b/data/kg/compound_protein_pathway_disease_2/meta.yaml new file mode 100644 index 000000000..e458aba48 --- /dev/null +++ b/data/kg/compound_protein_pathway_disease_2/meta.yaml @@ -0,0 +1,118 @@ +--- +name: compound_protein_pathway_disease_2 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 9780116 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/compound_protein_pathway_disease_3/meta.yaml b/data/kg/compound_protein_pathway_disease_3/meta.yaml new file mode 100644 index 000000000..a39472f08 --- /dev/null +++ b/data/kg/compound_protein_pathway_disease_3/meta.yaml @@ -0,0 +1,118 @@ +--- +name: compound_protein_pathway_disease_3 +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 8349447 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/compound_protein_protein/meta.yaml b/data/kg/compound_protein_protein/meta.yaml index b0814ee62..29e5b86dd 100644 --- a/data/kg/compound_protein_protein/meta.yaml +++ b/data/kg/compound_protein_protein/meta.yaml @@ -2,6 +2,30 @@ name: compound_protein_protein description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -57,26 +81,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 10371880 +num_points: 10139561 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -84,10 +96,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}. - - The {node2_type#} {node2_protein_names#} is targeted by {node1_smiles#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}. + - The {node2_type#} {node2_protein_names#} is targeted by {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. - |- - User: Can you give me an example for a protein that binds the {node1_type#} {node1_smiles#}? - Assistant: The {node1_type#} {node1_smiles#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#}? + Assistant: The {node1_type#} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a {node3_type#} that {rel2_type#} {node2_type#} {node2_protein_names#}? - Assistant: Yes, the {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. diff --git a/data/kg/drug_chebi/meta.yaml b/data/kg/drug_chebi/meta.yaml index 0fd1b6569..354090f45 100644 --- a/data/kg/drug_chebi/meta.yaml +++ b/data/kg/drug_chebi/meta.yaml @@ -2,6 +2,30 @@ name: drug_chebi description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -21,26 +45,14 @@ targets: names: - noun: node2_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 3038 +num_points: 3033 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -48,4 +60,4 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} {node2_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} {node2_name#}. diff --git a/data/kg/drug_chebi_chebi/meta.yaml b/data/kg/drug_chebi_chebi/meta.yaml index a15ef7c96..9f8a26513 100644 --- a/data/kg/drug_chebi_chebi/meta.yaml +++ b/data/kg/drug_chebi_chebi/meta.yaml @@ -2,6 +2,30 @@ name: drug_chebi_chebi description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -45,26 +69,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 6898 +num_points: 5710 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -72,4 +84,4 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} {node2_name#} and {rel2_type#} {node3_name#}. + - The {node1_type#} {SMILES#} {rel1_type#} {node2_name#} and {rel2_type#} {node3_name#}. diff --git a/data/kg/drug_disease_pathway/meta.yaml b/data/kg/drug_disease_pathway/meta.yaml index eaebe07fb..f4f863858 100644 --- a/data/kg/drug_disease_pathway/meta.yaml +++ b/data/kg/drug_disease_pathway/meta.yaml @@ -2,6 +2,30 @@ name: drug_disease_pathway description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -45,26 +69,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 345 +num_points: 276 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -72,4 +84,4 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} is indicated for the {node2_name#} {node2_type#} and {rel2_type#} the {node3_name#} {node3_type#}. + - The {node1_type#} {SMILES#|node1_name#} is indicated for the {node2_name#} {node2_type#} and {rel2_type#} the {node3_name#} {node3_type#}. diff --git a/data/kg/drug_disease_pathway_protein/meta.yaml b/data/kg/drug_disease_pathway_protein/meta.yaml new file mode 100644 index 000000000..14a7ace63 --- /dev/null +++ b/data/kg/drug_disease_pathway_protein/meta.yaml @@ -0,0 +1,118 @@ +--- +name: drug_disease_pathway_protein +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_protein_names + description: node4_protein_names + type: Other + units: node4_protein_names + names: + - noun: node4_protein_names + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 33215 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#|node1_name#} is indicated for the {node2_name#} {node2_type#} and {rel2_type#} the {node3_name#} {node3_type#}. The {node3_type#} + {node3_name#} {rel3_type#} the {node4_type#} {node4_protein_names#}. diff --git a/data/kg/drug_protein/meta.yaml b/data/kg/drug_protein/meta.yaml index c29450fe9..9f491fe08 100644 --- a/data/kg/drug_protein/meta.yaml +++ b/data/kg/drug_protein/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -27,26 +51,14 @@ targets: names: - noun: node2_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 16739 +num_points: 15303 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -54,7 +66,7 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. - |- - User: Give me an example for a protein that is targeted by the {node1_type#} {node1_name#|node1_smiles#}? - Assistant: Sure, the {node2_type#} {node2_protein_names#} is targeted by the {node1_type#} {node1_name#|node1_smiles#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that is targeted by the {node1_type#} {SMILES#|node1_name#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} is targeted by {#this|the above!} {node1_type#}. diff --git a/data/kg/drug_protein_disease/meta.yaml b/data/kg/drug_protein_disease/meta.yaml index 86c716084..5797f8635 100644 --- a/data/kg/drug_protein_disease/meta.yaml +++ b/data/kg/drug_protein_disease/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_disease description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 33161 +num_points: 28774 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,11 +90,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}. - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_type#} {node3_name#}. - |- - User: Give me an example for a protein that is targeted by the {node1_type#} {node1_name#|node1_smiles#}? - Assistant: Sure, the {node2_type#} {node2_protein_names#} is targeted by the {node1_type#} {node1_name#|node1_smiles#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that is targeted by the {node1_type#} {SMILES#|node1_name#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} is targeted by {#this|the above!} {node1_type#}. User: Can you tell me which disease the {node2_type#} {node2_protein_names#} {rel2_type#}? Assistant: The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#} {node3_type#}. diff --git a/data/kg/drug_protein_domain/meta.yaml b/data/kg/drug_protein_domain/meta.yaml index ee60d4dec..8a62099e6 100644 --- a/data/kg/drug_protein_domain/meta.yaml +++ b/data/kg/drug_protein_domain/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_domain description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 37941 +num_points: 33850 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,10 +90,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - '{node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}.' - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}. + - '{SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}.' + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} a {node3_name#}. - |- - User: Can you give me an example for a protein that binds the {node1_type#} {node1_name#|node1_smiles#}? - Assistant: Yes, the {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#|node1_name#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a domain of the {node2_type#} {node2_protein_names#}? Assistant: The {node2_type#} {node2_protein_names#} {rel2_type#} a {node3_name#}. diff --git a/data/kg/drug_protein_drug/meta.yaml b/data/kg/drug_protein_drug/meta.yaml index d6604cc6d..4c9195819 100644 --- a/data/kg/drug_protein_drug/meta.yaml +++ b/data/kg/drug_protein_drug/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_drug description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -57,26 +81,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 540556 +num_points: 451843 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -84,10 +96,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_name#|node3_smiles#}. - - The {node2_type#} {node2_protein_names#} is targeted by the drugs {node1_name#|node1_smiles#} and {node3_name#|node3_smiles#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_type#} {node3_name#|node3_smiles#}. + - The {node2_type#} {node2_protein_names#} is targeted by the drugs {SMILES#|node1_name#} and {node3_name#|node3_smiles#}. - |- - User: Can you give me an example for a {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: Yes, The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {rel1_type#} the {node2_type#} {node2_protein_names#}. User: Can you tell me another {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: Of course, the {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node3_type#} {node3_name#|node3_smiles#}. + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node3_type#} {node3_name#|node3_smiles#}. diff --git a/data/kg/drug_protein_ec_number/meta.yaml b/data/kg/drug_protein_ec_number/meta.yaml index b30bd44c7..2762b5203 100644 --- a/data/kg/drug_protein_ec_number/meta.yaml +++ b/data/kg/drug_protein_ec_number/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_ec_number description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 9368 +num_points: 7636 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,11 +90,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_name#} and {rel2_type#} the {node3_name#} (EC {node3_id#}). - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_name#}. Furthermore, the {node1_type#} {node1_name#|node1_smiles#} - {rel2_type#} the {node3_name#} (EC {node3_id#}). + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#} which {rel2_type#} the {node3_name#} (EC {node3_id#}) reaction. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#}. Furthermore, the {node2_type#} {node2_name#} {rel2_type#} the + {node3_name#} (EC {node3_id#}) reaction. - |- - User: Can you give me an example for a protein that binds the {node1_type#} {node1_name#|node1_smiles#}? - Assistant: Of course, the {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_name#}. - User: Can you tell me which enzyme the {node2_type#} {node2_name#} {rel2_type#}? - Assistant: The {node2_type#} {node2_name#} {rel2_type#} a {node3_name#} (EC {node3_id#}). + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#|node1_name#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#}. + User: Can you tell me which reaction the {node2_type#} {node2_name#} {rel2_type#}? + Assistant: The {node2_type#} {node2_name#} {rel2_type#} a {node3_name#} (EC {node3_id#}) reaction. diff --git a/data/kg/drug_protein_go_term/meta.yaml b/data/kg/drug_protein_go_term/meta.yaml index 2f8c9ed96..81f97935e 100644 --- a/data/kg/drug_protein_go_term/meta.yaml +++ b/data/kg/drug_protein_go_term/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_go_term description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 722679 +num_points: 656202 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,5 +90,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_name#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_name#}. The {node2_type#} {node2_name#} {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#}. The {node2_type#} {node2_name#} {rel2_type#} the {node3_name#}. + - |- + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#|node1_name#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#}. + User: Can you tell me more {#details |!}about {node2_type#} {node2_name#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node2_type#} {node2_name#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/drug_protein_hpo/meta.yaml b/data/kg/drug_protein_hpo/meta.yaml index 94a28a5f2..6bbb7dc01 100644 --- a/data/kg/drug_protein_hpo/meta.yaml +++ b/data/kg/drug_protein_hpo/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_hpo description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 80267 +num_points: 71321 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,9 +90,9 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} {node3_name#}. - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the human phenotype represented by {node3_name#}. - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. This {node2_type#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/drug_protein_hpo_disease/meta.yaml b/data/kg/drug_protein_hpo_disease/meta.yaml new file mode 100644 index 000000000..99ebc2738 --- /dev/null +++ b/data/kg/drug_protein_hpo_disease/meta.yaml @@ -0,0 +1,118 @@ +--- +name: drug_protein_hpo_disease +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 293872 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/drug_protein_pathway/meta.yaml b/data/kg/drug_protein_pathway/meta.yaml index fed4db29c..a8e7a8180 100644 --- a/data/kg/drug_protein_pathway/meta.yaml +++ b/data/kg/drug_protein_pathway/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_pathway description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -51,26 +75,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 138390 +num_points: 124609 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -78,6 +90,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. + - |- + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#|node1_name#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#}. + User: Can you tell me more {#details |!}about {node2_type#} {node2_name#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_name#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/drug_protein_pathway_disease/meta.yaml b/data/kg/drug_protein_pathway_disease/meta.yaml new file mode 100644 index 000000000..1d5a20c11 --- /dev/null +++ b/data/kg/drug_protein_pathway_disease/meta.yaml @@ -0,0 +1,118 @@ +--- +name: drug_protein_pathway_disease +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_protein_names + description: node2_protein_names + type: Other + units: node2_protein_names + names: + - noun: node2_protein_names + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 617318 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: + - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. + The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/drug_protein_protein/meta.yaml b/data/kg/drug_protein_protein/meta.yaml index c3cfa1446..849021429 100644 --- a/data/kg/drug_protein_protein/meta.yaml +++ b/data/kg/drug_protein_protein/meta.yaml @@ -2,6 +2,30 @@ name: drug_protein_protein description: Knowledgegraph data samples. targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type - id: node2_type description: node2_type type: Other @@ -57,26 +81,14 @@ targets: names: - noun: node3_id identifiers: - - id: node1_type - description: node1_type - type: Other - - id: node1_smiles - description: node1_smiles - type: Other - - id: node1_name - description: node1_name - type: Other - - id: node1_id - description: node1_id - type: Other - - id: rel1_type - description: rel1_type - type: Other + - id: SMILES + description: SMILES + type: SMILES license: CC BY 4.0 links: - url: https://crossbar.kansil.org description: original knowledge graph web GUI link -num_points: 269234 +num_points: 245582 bibtex: - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ @@ -84,10 +96,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}. - - The {node2_type#} {node2_protein_names#} is targeted by {node1_name#|node1_smiles#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. + - The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}. + - The {node2_type#} {node2_protein_names#} is targeted by {SMILES#|node1_name#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. - |- - User: Can you give me an example for a protein that binds the {node1_type#} {node1_name#|node1_smiles#}? - Assistant: The {node1_type#} {node1_name#|node1_smiles#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#|node1_name#}? + Assistant: The {node1_type#} {SMILES#|node1_name#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a {node3_type#} that {rel2_type#} {node2_type#} {node2_protein_names#}? - Assistant: Yes, the {node2_type#} {node2_name#} {rel2_type#} {node3_name#}. + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_name#} {rel2_type#} {node3_type#} {node3_name#}. From 99d396eca11430004a2c4f5f17076150d4fa3170 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 22 Nov 2023 07:19:00 +0100 Subject: [PATCH 49/61] update uniprot (#505) * update uniprot * update * update * remove lint * Update data/tabular/uniprot_binding_sites_multiple/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_sites_multiple/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_single/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_single/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_single/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_single/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_single/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/uniprot_binding_single/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> --------- Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> --- data/tabular/uniprot_binding_single/meta.yaml | 68 +++++++++++++++++++ .../uniprot_binding_single/transform.py | 26 +++++++ .../meta.yaml | 10 ++- .../transform.py | 1 + 4 files changed, 99 insertions(+), 6 deletions(-) create mode 100644 data/tabular/uniprot_binding_single/meta.yaml create mode 100644 data/tabular/uniprot_binding_single/transform.py rename data/tabular/{uniprot_binding_sites => uniprot_binding_sites_multiple}/meta.yaml (80%) rename data/tabular/{uniprot_binding_sites => uniprot_binding_sites_multiple}/transform.py (89%) diff --git a/data/tabular/uniprot_binding_single/meta.yaml b/data/tabular/uniprot_binding_single/meta.yaml new file mode 100644 index 000000000..d7a9961c5 --- /dev/null +++ b/data/tabular/uniprot_binding_single/meta.yaml @@ -0,0 +1,68 @@ +--- +name: uniprot_binding_single +description: |- + Binding sites of a molecule in protein sequences. +targets: + - id: start_binding_site + description: index for start of the binding sites of a protein + type: text + names: + - noun: start binding site +identifiers: + - id: sequence + type: AS_SEQUENCE + description: other + - id: SMILES + description: SMILES + type: SMILES + names: + - noun: SMILES +license: MIT +links: + - url: https://www.uniprot.org/ + description: data source +num_points: 604383 +bibtex: + - |- + @article{10.1093/nar/gkac1052, + author = {The UniProt Consortium}, + title = {UniProt - the Universal Protein Knowledgebase in 2023}, + journal = {Nucleic Acids Research}, + volume = {51}, + number = {D1}, + pages = {D523-D531}, + year = {2022}, + month = {11}, + issn = {0305-1048}, + doi = {10.1093/nar/gkac1052}, + url = {https://doi.org/10.1093/nar/gkac1052}} +templates: +# - |- +# The {#molecule|chemical|compound!} with the {SMILES__description}{# representation|!} {SMILES#} binds to the {#AA sequence|amino acid sequence|peptide sequence|protein!} {sequence#} at the {#site|binding site|position!} {start_binding_site#}{#-| to !}{end_binding_site#}. + - |- + Task: {#Find|Identify|Come up with!} a binding site for the {#molecule|chemical|compound!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + {SMILES__description}{# representation|!}: {SMILES#} + {#Output|Result!}: {start_binding_site#} + - |- + Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + Binding {#site|position!}: {start_binding_site#} + {#Output|Result!}: {SMILES#} + - |- + Question: Can you {#give me one example of a|find one!} binding site of the {#molecule|chemical|compound!} with the {SMILES__description}{# representation|!} {SMILES#} in this {#AA sequence|amino acid sequence|peptide sequence|protein!} {sequence#}? + Answer: One {#possible |!}{#binding |!}site for the {#chemical|molecule|compound!} is {start_binding_site#}. + - |- + Question: What {#molecule|chemical|compound!} can {#possibly |!}bind to the {#binding |!}site {#at |at the position !}{start_binding_site#} in the {#given |!}{#AA|amino acid|protein!} sequence{# below|!}? + Sequence: {sequence#} + Answer: {SMILES#} + - |- + Task: {#Find|Identify|Come up with!} a binding site in the {#AA sequence|amino acid sequence|peptide sequence|protein!} for the {#molecule|chemical|compound!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + {SMILES__description}{# representation|!}: {SMILES#} + {#Output|Result!}: {start_binding_site#} + - |- + Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. + {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} + Binding site{# position|!}: {start_binding_site#} + {#Output|Result!}: {SMILES#} diff --git a/data/tabular/uniprot_binding_single/transform.py b/data/tabular/uniprot_binding_single/transform.py new file mode 100644 index 000000000..08e70cf96 --- /dev/null +++ b/data/tabular/uniprot_binding_single/transform.py @@ -0,0 +1,26 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + +DATA = "uniprot_binding_sites" + + +def load_dataset() -> pd.DataFrame: + uniprot = hf_hub_download( + repo_id="chemnlp/uniprot", + filename=f"{DATA}/data_clean.csv", + repo_type="dataset", + ) + uniprot = pd.read_csv(uniprot) + uniprot.end_binding_site = uniprot.end_binding_site.astype(int) + uniprot.drop_duplicates( + inplace=True, + ) + uniprot = uniprot[uniprot.end_binding_site == uniprot.start_binding_site] + print(f"Successfully loaded {DATA}! {len(uniprot)} rows") + uniprot.to_csv("data_clean.csv", index=False) + print(f"Successfully loaded {DATA}!") + return uniprot + + +if __name__ == "__main__": + load_dataset() diff --git a/data/tabular/uniprot_binding_sites/meta.yaml b/data/tabular/uniprot_binding_sites_multiple/meta.yaml similarity index 80% rename from data/tabular/uniprot_binding_sites/meta.yaml rename to data/tabular/uniprot_binding_sites_multiple/meta.yaml index 9ffc76354..879aa74db 100644 --- a/data/tabular/uniprot_binding_sites/meta.yaml +++ b/data/tabular/uniprot_binding_sites_multiple/meta.yaml @@ -1,5 +1,5 @@ --- -name: uniprot_binding_sites +name: uniprot_binding_sites_multiple description: |- Binding sites of a molecule in protein sequences. targets: @@ -9,7 +9,7 @@ targets: names: - noun: start binding site - id: end_binding_site - description: index for emd of the binding sites of a protein + description: index for end of the binding sites of a protein type: text names: - noun: end binding site @@ -26,7 +26,7 @@ license: MIT links: - url: https://www.uniprot.org/ description: data source -num_points: 780449 +num_points: 176066 bibtex: - |- @article{10.1093/nar/gkac1052, @@ -45,10 +45,9 @@ templates: # - |- # The {#molecule|chemical|compound!} with the {SMILES__description}{# representation|!} {SMILES#} binds to the {#AA sequence|amino acid sequence|peptide sequence|protein!} {sequence#} at the {#site|binding site|position!} {start_binding_site#}{#-| to !}{end_binding_site#}. - |- - Task: {#Find|Identify|Come up with!} a binding site in the {#AA sequence|amino acid sequence|peptide sequence|protein!} for the {#molecule|chemical|compound!}. + Task: {#Find|Identify|Come up with!} a binding site for the {#molecule|chemical|compound!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} {SMILES__description}{# representation|!}: {SMILES#} - Constraint: Please {#always |!}{#indicate|show!} the {#site|binding site|position!} with a range without any additional words. When {#the range is of length one|the length is one!} please use the same {#index|position!} for the {#start|beginning!} and the end{# position|!}. {#Output|Result!}: {start_binding_site#}-{end_binding_site#} - |- Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. @@ -66,7 +65,6 @@ templates: Task: {#Find|Identify|Come up with!} a binding site in the {#AA sequence|amino acid sequence|peptide sequence|protein!} for the {#molecule|chemical|compound!}. {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} {SMILES__description}{# representation|!}: {SMILES#} - Constraint: Please {#always |!}{#indicate|show!} the {#site|binding site|position!} with a range without any additional words. When {#the range is of length one|the length is one!} please use the same {#index|position!} for the {#start|beginning!} and the end{# position|!}. {#Output|Result!}: {start_binding_site#}-{end_binding_site#} - |- Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. diff --git a/data/tabular/uniprot_binding_sites/transform.py b/data/tabular/uniprot_binding_sites_multiple/transform.py similarity index 89% rename from data/tabular/uniprot_binding_sites/transform.py rename to data/tabular/uniprot_binding_sites_multiple/transform.py index a8eb68bbc..95876eff3 100644 --- a/data/tabular/uniprot_binding_sites/transform.py +++ b/data/tabular/uniprot_binding_sites_multiple/transform.py @@ -15,6 +15,7 @@ def load_dataset() -> pd.DataFrame: uniprot.drop_duplicates( inplace=True, ) + uniprot = uniprot[uniprot.end_binding_site > uniprot.start_binding_site] print(f"Successfully loaded {DATA}! {len(uniprot)} rows") uniprot.to_csv("data_clean.csv", index=False) print(f"Successfully loaded {DATA}!") From 2ea5e7a24e6988e71cba48f8e746b8177da1c9c6 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Wed, 22 Nov 2023 09:17:51 +0100 Subject: [PATCH 50/61] fix: make transform.py standalone (#506) --- data/tabular/bicerano_dataset/transform.py | 9 +++++++-- data/tabular/core_mof_no_topo/transform.py | 11 +++++++---- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/data/tabular/bicerano_dataset/transform.py b/data/tabular/bicerano_dataset/transform.py index 410209a3f..e7dccda96 100644 --- a/data/tabular/bicerano_dataset/transform.py +++ b/data/tabular/bicerano_dataset/transform.py @@ -1,10 +1,15 @@ import pandas as pd from canonicalize_psmiles.canonicalize import canonicalize +from huggingface_hub import hf_hub_download def transform_data(): - url = "https://huggingface.co/datasets/chemNLP/bicerano_polymers/raw/main/HT_MD_polymer_properties.csv" - original_data = pd.read_csv(url) + file = hf_hub_download( + repo_id="chemNLP/bicerano_polymers", + filename="HT_MD_polymer_properties.csv", + repo_type="dataset", + ) + original_data = pd.read_csv(file) clean_data = original_data.drop("sl_num", axis=1) assert not clean_data.duplicated().sum() diff --git a/data/tabular/core_mof_no_topo/transform.py b/data/tabular/core_mof_no_topo/transform.py index 087a4345f..8b841f2f1 100644 --- a/data/tabular/core_mof_no_topo/transform.py +++ b/data/tabular/core_mof_no_topo/transform.py @@ -1,11 +1,14 @@ import pandas as pd +from huggingface_hub import hf_hub_download def process(): - df = pd.read_json("core_mofid.json") - # df = pd.read_json( - # "https://huggingface.co/datasets/kjappelbaum/chemnlp-core-mof/resolve/main/core_mofid.json" - # ) + file = hf_hub_download( + repo_id="kjappelbaum/chemnlp-core-mof", + filename="core_mofid.json", + repo_type="dataset", + ) + df = pd.read_json(file) df = df.query("is_longer_than_allowed==False").dropna( subset=[ "outputs.pure_CO2_kH", From 5ae54c8d3ec85817f2ac16dab3c93cb78dfb6a95 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Tue, 28 Nov 2023 17:22:11 +0100 Subject: [PATCH 51/61] complete train/test split routine (#502) Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> Co-authored-by: Michael Pieler --- data/tabular/RedDB/transform.py | 10 +- data/tabular/aminoacids/transform.py | 6 +- data/tabular/check_pandas.py | 128 +++ data/tabular/check_smiles_split.py | 200 +++++ data/tabular/chembl_v29/transform.py | 1 + data/tabular/merge.py | 47 ++ data/tabular/rdkit_features/meta.yaml | 2 +- data/tabular/scaffold_split.py | 185 ----- data/tabular/train_test_split.py | 1071 +++++++++++++++++++++---- pyproject.toml | 1 + 10 files changed, 1294 insertions(+), 357 deletions(-) create mode 100644 data/tabular/check_pandas.py create mode 100644 data/tabular/check_smiles_split.py create mode 100644 data/tabular/merge.py delete mode 100644 data/tabular/scaffold_split.py diff --git a/data/tabular/RedDB/transform.py b/data/tabular/RedDB/transform.py index 3714c399b..1d7a6f86b 100644 --- a/data/tabular/RedDB/transform.py +++ b/data/tabular/RedDB/transform.py @@ -1,5 +1,6 @@ import pandas as pd import yaml +from huggingface_hub import hf_hub_download from rdkit import Chem @@ -15,10 +16,13 @@ def is_valid_smiles(smiles: str) -> bool: def read_dataset(): - hf_data = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/RedDB/raw/main/RedDBv2.csv" + # hf_data = pd.read_csv( + # "https://huggingface.co/datasets/chemNLP/RedDB/raw/main/RedDBv2.csv" + # ) + file = hf_hub_download( + repo_id="chemNLP/RedDB", filename="RedDBv2.csv", repo_type="dataset" ) - + hf_data = pd.read_csv(file) assert hf_data.SMILES.apply(is_valid_smiles).to_list() == [True] * len(hf_data) assert not hf_data.duplicated().sum() diff --git a/data/tabular/aminoacids/transform.py b/data/tabular/aminoacids/transform.py index 48dc3b5dc..c4c32a08e 100644 --- a/data/tabular/aminoacids/transform.py +++ b/data/tabular/aminoacids/transform.py @@ -1,10 +1,12 @@ import pandas as pd +from huggingface_hub import hf_hub_download def extract_data(): - aminoacids = pd.read_csv( - "https://huggingface.co/datasets/chemNLP/uniprot/raw/main/aminoacid_seq.csv" + file = hf_hub_download( + repo_id="chemNLP/uniprot", filename="aminoacid_seq.csv", repo_type="dataset" ) + aminoacids = pd.read_csv(file) aminoacids.to_csv("data_clean.csv", index=False) return aminoacids diff --git a/data/tabular/check_pandas.py b/data/tabular/check_pandas.py new file mode 100644 index 000000000..5f3dee33e --- /dev/null +++ b/data/tabular/check_pandas.py @@ -0,0 +1,128 @@ +import os +from glob import glob +from pathlib import Path + +import fire +import pandas as pd +from tqdm import tqdm + +with open("test_smiles.txt", "r") as f: + test_smiles_ref = f.readlines() + test_smiles_ref = [x.strip() for x in test_smiles_ref] + +with open("val_smiles.txt", "r") as f: + valid_smiles_ref = f.readlines() + valid_smiles_ref = [x.strip() for x in valid_smiles_ref] + + +def leakage_check(file, outdir="out"): + # mirror subdir structures in outdir + if not os.path.exists(outdir): + os.makedirs(outdir) + print(f"Checking {file}") + df = pd.read_csv(file, low_memory=False) + print(df["split"].value_counts()) + train_smiles = df[df["split"] == "train"]["SMILES"].to_list() + train_smiles = set(train_smiles) + test_smiles = df[df["split"] == "test"]["SMILES"].to_list() + test_smiles = set(test_smiles) + valid_smiles = df[df["split"] == "valid"]["SMILES"].to_list() + valid_smiles = set(valid_smiles) + + try: + assert ( + len(train_smiles.intersection(test_smiles)) == 0 + ), "Smiles in train and test" + assert ( + len(train_smiles.intersection(valid_smiles)) == 0 + ), "Smiles in train and valid" + assert ( + len(test_smiles.intersection(valid_smiles)) == 0 + ), "Smiles in test and valid" + except AssertionError as e: + path = os.path.join(outdir, Path(file).parts[-2], Path(file).name) + print(f"Leakage in {file}: {e}. Fixing... {path}") + is_in_test = df["SMILES"].isin(test_smiles) + is_in_val = df["SMILES"].isin(valid_smiles) + + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + os.makedirs(os.path.dirname(path), exist_ok=True) + df.to_csv(path, index=False) + print(f"Saved fixed file to {path}") + print("Checking fixed file...") + leakage_check(path, outdir) + + try: + assert ( + len(train_smiles.intersection(test_smiles_ref)) == 0 + ), "Smiles in train and scaffold test" + + assert ( + len(train_smiles.intersection(valid_smiles_ref)) == 0 + ), "Smiles in train and scaffold valid" + + assert ( + len(test_smiles.intersection(valid_smiles_ref)) == 0 + ), "Smiles in test and scaffold valid" + except AssertionError as e: + path = os.path.join(outdir, Path(file).parts[-2], Path(file).name) + print(f"Leakage in {file}: {e}. Fixing... {path}") + is_in_test = df["SMILES"].isin(test_smiles) + is_in_val = df["SMILES"].isin(valid_smiles) + + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + test_smiles = df[df["split"] == "test"]["SMILES"].to_list() + test_smiles = set(test_smiles) + + valid_smiles = df[df["split"] == "valid"]["SMILES"].to_list() + valid_smiles = set(valid_smiles) + + is_in_test = df["SMILES"].isin(test_smiles) + is_in_val = df["SMILES"].isin(valid_smiles) + + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + path = os.path.join(outdir, Path(file).parts[-2], Path(file).name) + os.makedirs(os.path.dirname(path), exist_ok=True) + df.to_csv(path, index=False) + print(f"Saved fixed file to {path}") + print("Checking fixed file...") + leakage_check(path, outdir) + + print(f"No leakage in {file}") + with open("leakage_check.txt", "a") as f: + f.write(f"No leakage in {file}\n") + f.write(f"train: {len(train_smiles)}\n") + f.write(f"test: {len(test_smiles)}\n") + f.write(f"valid: {len(valid_smiles)}\n") + return True + + +def check_all_files(data_dir): + all_csv_files = sorted(glob(os.path.join(data_dir, "**", "**", "data_clean.csv"))) + for csv_file in tqdm(all_csv_files): + if Path(csv_file).parts[-2] not in [ + "odd_one_out", + "uniprot_binding_single", + "uniprot_binding_sites_multiple", + "uniprot_organisms", + "uniprot_reactions", + "uniprot_sentences", + ]: + # if filesize < 35 GB: + if os.path.getsize(csv_file) < 35 * 1024 * 1024 * 1024: + try: + leakage_check(csv_file) + except Exception as e: + print(f"Could not process {csv_file}: {e}") + else: + print(f"Skipping {csv_file} due to size") + + +if __name__ == "__main__": + fire.Fire(check_all_files) diff --git a/data/tabular/check_smiles_split.py b/data/tabular/check_smiles_split.py new file mode 100644 index 000000000..a16030c1a --- /dev/null +++ b/data/tabular/check_smiles_split.py @@ -0,0 +1,200 @@ +"""This script checks for data leakage in the splits of a tabular dataset.""" +import os +from glob import glob +from pathlib import Path +from typing import List, Literal, Union + +import dask.dataframe as dd +import fire +import yaml + + +def get_all_yamls(data_dir): + """Returns all yaml files in the data directory""" + return glob(str(Path(data_dir) / "**" / "*.yaml"), recursive=True) + + +def get_columns_of_type( + yaml_file: Union[str, Path], + column_type: Literal["SMILES", "AS_SEQUENCE"] = "SMILES", +) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + smiles_columns = [] + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == column_type: + smiles_columns.append(target["id"]) + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == column_type: + smiles_columns.append(identifier["id"]) + + return smiles_columns + + +def get_all_identifier_columns(yaml_file: Union[str, Path]) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + identifier_columns = [] + if "identifiers" in meta: + for identifier in meta["identifiers"]: + identifier_columns.append(identifier["id"]) + + return identifier_columns + + +def check_general_data_leakage( + data_path, +): + """Checks for data leakage in the splits of a tabular dataset. + Only checks for overlaps in identifiers (all identifier columns need + to be the same to count as a data leak). + """ + identifier_columns = get_all_identifier_columns(data_path) + # check if train/valid/test splits have the same identifiers + data_dir = Path(data_path).parent + table = os.path.join(data_dir, "data_clean.csv") + + data = dd.read_csv(table) + train = data[data["split"] == "train"] + valid = data[data["split"] == "valid"] + test = data[data["split"] == "test"] + + train_valid = dd.merge( + train[identifier_columns], valid[identifier_columns], how="inner" + ).compute() + + train_test = dd.merge( + train[identifier_columns], test[identifier_columns], how="inner" + ).compute() + + valid_test = dd.merge( + valid[identifier_columns], test[identifier_columns], how="inner" + ).compute() + + if not train_valid.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are identifiers that appear in both train and valid splits." + ) + if not train_test.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are identifiers that appear in both train and test splits." + ) + if not valid_test.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are identifiers that appear in both valid and test splits." + ) + + +def check_data_leakage( + data_path, + test_smiles_path="test_smiles.txt", + val_smiles_path="val_smiles.txt", + test_as_path="test_as.txt", + val_as_path="val_as.txt", + col_type="SMILES", +): + """Checks for data leakage in the splits of a tabular dataset. + This function checks for overlaps between predefined test and validation + SMILES/Amino acid sequences and the splits in the dataset.""" + # Load the data with Dask + data_dir = Path(data_path).parent + table = os.path.join(data_dir, "data_clean.csv") + data = dd.read_csv(table) + + columns = get_columns_of_type(data_path, col_type) + + if col_type == "SMILES": + # Load predefined SMILES lists + with open(test_smiles_path) as f: + test_smiles_list = f.read().splitlines() + + with open(val_smiles_path) as f: + val_smiles_list = f.read().splitlines() + + elif col_type == "AS_SEQUENCE": + # Load predefined SMILES lists + with open(test_as_path) as f: + test_smiles_list = f.read().splitlines() + + with open(val_as_path) as f: + val_smiles_list = f.read().splitlines() + + # Compute split counts (optional, just to have an overview) + split_counts = data["split"].value_counts().compute() + print("Split counts:") + print(split_counts) + + for col in columns: + # Check that all predefined test SMILES are only in the test set + test_smiles_in_data = data[data[col].isin(test_smiles_list)].compute() + val_smiles_in_data = data[data[col].isin(val_smiles_list)].compute() + print(test_smiles_in_data) + + # Check for overlaps between predefined SMILES and splits + test_in_val_or_train = test_smiles_in_data["split"] != "test" + val_in_test_or_train = val_smiles_in_data["split"] != "valid" + + if test_in_val_or_train.any(): + raise ValueError( + f"Data leakage detected {data_path}: Some test SMILES are in validation or train splits." + ) + if val_in_test_or_train.any(): + raise ValueError( + f"Data leakage detected {data_path}: Some validation SMILES are in test or train splits." + ) + + # Check for overlaps between splits by merging on SMILES and checking for multiple split assignments + merged_splits = dd.merge( + data[data["split"] == "train"][[col]], + data[data["split"] == "valid"][[col]], + on=col, + how="inner", + ) + merged_splits = dd.merge( + merged_splits, + data[data["split"] == "test"][[col]], + on=col, + how="inner", + ).compute() + + if not merged_splits.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are SMILES that appear in multiple splits." + ) + + print(f"No data leakage detected in {data_path}.") + + +def run_check(file): + has_as_columns = len(get_columns_of_type(file, "AS_SEQUENCE")) > 0 + has_smiles_columns = len(get_columns_of_type(file, "SMILES")) > 0 + + if has_as_columns: + check_data_leakage(file, col_type="AS_SEQUENCE") + + if has_smiles_columns: + check_data_leakage(file, col_type="SMILES") + + # check_general_data_leakage(file) + + +def check_all_data_leakage(data_dir): + yamls = get_all_yamls(data_dir) + print(f"Checking {len(yamls)} datasets for data leakage.") + for file in yamls: + try: + run_check(file) + except Exception as e: + print(f"Error in {file}: {e}") + with open("data_leakage_errors.txt", "a") as f: + f.write(f"{file} {e}\n") + + +if __name__ == "__main__": + fire.Fire(check_all_data_leakage) diff --git a/data/tabular/chembl_v29/transform.py b/data/tabular/chembl_v29/transform.py index 4b967eda4..38d611caf 100644 --- a/data/tabular/chembl_v29/transform.py +++ b/data/tabular/chembl_v29/transform.py @@ -34,6 +34,7 @@ def get_single_dataset(dataset_name): # save to csv fn_data_csv = "data_clean.csv" + df.rename(columns={"smiles": "SMILES"}, inplace=True) df.to_csv(fn_data_csv, index=False) # create meta yaml diff --git a/data/tabular/merge.py b/data/tabular/merge.py new file mode 100644 index 000000000..ad0fe06f2 --- /dev/null +++ b/data/tabular/merge.py @@ -0,0 +1,47 @@ +import os +from glob import glob +from pathlib import Path +from typing import Union + +import fire +import pandas as pd +from tqdm import tqdm + + +def merge_files(dir): + fns = sorted(glob(os.path.join(dir, "data_clean-*.csv"))) + fn_merged = os.path.join(dir, "data_clean.csv") + if os.path.exists(fn_merged): + os.remove(fn_merged) + for fn in fns: + df = pd.read_csv(fn, index_col=False, low_memory=False) + df.to_csv( + fn_merged, mode="a", index=False, header=not os.path.exists(fn_merged) + ) + os.remove(fn) + del df + + +def process_file(file: Union[str, Path]): + dir = Path(file).parent + # check if there is any csv file + if not glob(os.path.join(dir, "*.csv")): + return + if len(glob(os.path.join(dir, "data_clean-0*.csv"))) >= 1: + merge_files(dir) + + +def process_all_files(data_dir): + all_yaml_files = sorted(glob(os.path.join(data_dir, "**", "**", "meta.yaml"))) + all_yaml_files = [f for f in all_yaml_files if "fda" in f] + print(all_yaml_files) + for yaml_file in tqdm(all_yaml_files): + print(f"Processing {yaml_file}") + try: + process_file(yaml_file) + except Exception as e: + print(f"Could not process {yaml_file}: {e}") + + +if __name__ == "__main__": + fire.Fire(process_all_files) diff --git a/data/tabular/rdkit_features/meta.yaml b/data/tabular/rdkit_features/meta.yaml index bb9499466..8524ecc88 100644 --- a/data/tabular/rdkit_features/meta.yaml +++ b/data/tabular/rdkit_features/meta.yaml @@ -1,5 +1,5 @@ --- -names: rdkit_features +name: rdkit_features description: |- Molecular descriptors computed using RDKit targets: diff --git a/data/tabular/scaffold_split.py b/data/tabular/scaffold_split.py deleted file mode 100644 index 7563f4076..000000000 --- a/data/tabular/scaffold_split.py +++ /dev/null @@ -1,185 +0,0 @@ -import os -import subprocess -from functools import partial -from glob import glob -from typing import List - -import fire -import pandas as pd -import yaml -from pandarallel import pandarallel - -from chemnlp.data.split import _create_scaffold_split - -pandarallel.initialize(progress_bar=True) - -to_scaffold_split = [ - "blood_brain_barrier_martins_et_al", - "serine_threonine_kinase_33_butkiewicz", - "ld50_zhu", - "herg_blockers", - "clearance_astrazeneca", - "half_life_obach", - "drug_induced_liver_injury", - "kcnq2_potassium_channel_butkiewicz", - "sarscov2_3clpro_diamond", - "volume_of_distribution_at_steady_state_lombardo_et_al", - "sr_hse_tox21", - "nr_er_tox21", - "cyp2c9_substrate_carbonmangels", - "nr_aromatase_tox21", - "cyp_p450_2d6_inhibition_veith_et_al", - "cyp_p450_1a2_inhibition_veith_et_al", - "cyp_p450_2c9_inhibition_veith_et_al", - "m1_muscarinic_receptor_antagonists_butkiewicz", - "nr_ar_tox21", - "sr_atad5_tox21", - "tyrosyl-dna_phosphodiesterase_butkiewicz", - "cav3_t-type_calcium_channels_butkiewicz", - "clintox" "sr_p53_tox21", - "nr_er_lbd_tox21" "pampa_ncats", - "sr_mmp_tox21", - "caco2_wang", - "sarscov2_vitro_touret", - "choline_transporter_butkiewicz", - "orexin1_receptor_butkiewicz", - "human_intestinal_absorption", - "nr_ahr_tox21", - "cyp3a4_substrate_carbonmangels", - "herg_karim_et_al", - "hiv", - "carcinogens", - "sr_are_tox21", - "nr_ppar_gamma_tox21", - "solubility_aqsoldb", - "m1_muscarinic_receptor_agonists_butkiewicz", - "ames_mutagenicity", - "potassium_ion_channel_kir2_1_butkiewicz", - "cyp_p450_3a4_inhibition_veith_et_al", - "skin_reaction", - "cyp2d6_substrate_carbonmangels", - "cyp_p450_2c19_inhibition_veith_et_al", - "nr_ar_lbd_tox21", - "p_glycoprotein_inhibition_broccatelli_et_al", - "bioavailability_ma_et_al", - "BACE", - "hiv", - "lipophilicity", - "thermosol", - "MUV_466", - "MUV_548", - "MUV_600", - "MUV_644", - "MUV_652", - "MUV_689", - "MUV_692", - "MUV_712", - "MUV_713", - "MUV_733", - "MUV_737", - "MUV_810", - "MUV_832", - "MUV_846", - "MUV_852", - "MUV_858", - "MUV_859", -] - - -def split_for_smiles(smiles: str, train_smiles: List[str], val_smiles: List[str]): - if smiles in train_smiles: - return "train" - elif smiles in val_smiles: - return "valid" - else: - return "test" - - -def main( - data_dir, - override: bool = False, - train_frac: float = 0.7, - val_frac: float = 0.15, - test_frac: float = 0.15, - seed: int = 42, - debug: bool = False, -): - all_yaml_files = glob(os.path.join(data_dir, "**", "*.yaml"), recursive=True) - if debug: - all_yaml_files = all_yaml_files[:5] - transformed_files = [] - for file in all_yaml_files: - print(f"Processing {file}") - with open(file, "r") as f: - meta = yaml.safe_load(f) - - if meta["name"] in to_scaffold_split: - # run transform.py script in this directory if `data_clean.csv` does not exist - # use this dir as cwd - if not os.path.exists( - os.path.join(os.path.dirname(file), "data_clean.csv") - ): - subprocess.run( - ["python", "transform.py"], - cwd=os.path.dirname(file), - ) - - transformed_files.append( - os.path.join(os.path.dirname(file), "data_clean.csv") - ) - - all_smiles = set() - for file in transformed_files: - df = pd.read_csv(file, low_memory=False) - all_smiles.update(df["SMILES"].tolist()) - del df # ensure memory is freed - - all_smiles = list(all_smiles) - splits = _create_scaffold_split( - all_smiles, frac=[train_frac, val_frac, test_frac], seed=42 - ) - - # select the right indices for each split - train_smiles = [all_smiles[i] for i in splits["train"]] - val_smiles = [all_smiles[i] for i in splits["valid"]] - print( - "Train smiles:", - len(train_smiles), - "Val smiles:", - len(val_smiles), - "Test smiles:", - len(splits["test"]), - ) - - # now for each dataframe, add a split column based on in which list in the `splits` dict the smiles is - # smiles are in the SMILES column - # if the override option is true, we write this new file to `data_clean.csv` in the same directory - # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` and write the new file to `data_clean.csv` - # we print the train/val/test split sizes and fractions for each dataset - - split_for_smiles_curried = partial( - split_for_smiles, train_smiles=train_smiles, val_smiles=val_smiles - ) - for file in transformed_files: - df = pd.read_csv(file, low_memory=False) - df["split"] = df["SMILES"].parallel_apply(split_for_smiles_curried) - - # to ensure overall scaffold splitting does not distort train/val/test split sizes for each dataset - print( - f"Dataset {file} has {len(df)} datapoints. Split sizes: {len(df[df['split'] == 'train'])} train, {len(df[df['split'] == 'valid'])} valid, {len(df[df['split'] == 'test'])} test." # noqa: E501 - ) - print( - f"Dataset {file} has {len(df)} datapoints. Split fractions: {len(df[df['split'] == 'train']) / len(df)} train, {len(df[df['split'] == 'valid']) / len(df)} valid, {len(df[df['split'] == 'test']) / len(df)} test." # noqa: E501 - ) - if override: - # write the new data_clean.csv file - df.to_csv(file, index=False) - else: - # copy the old data_clean.csv to data_clean_old.csv - os.rename(file, file.replace(".csv", "_old.csv")) - # write the new data_clean.csv file - df.to_csv(file, index=False) - - -if __name__ == "__main__": - fire.Fire(main) diff --git a/data/tabular/train_test_split.py b/data/tabular/train_test_split.py index f27554c0b..a015e62f3 100644 --- a/data/tabular/train_test_split.py +++ b/data/tabular/train_test_split.py @@ -1,209 +1,948 @@ -"""Perform scaffold split on all datasets and rewrite data_clean.csv files. +"""Perform train/test split on all tabular and knowledge graph datasets. -Scaffold split is a method of splitting data that ensures that the same scaffold -is not present in both the train and test sets. This is important for evaluating -the generalizability of a model. +First, a scaffold split is run on selected SMILES datasets, than a random split is run on all other datasets. +For this second step, we ensure if there are SMILES in the dataset, that the there is no SMILES +that is in the validation or test set of the scaffold split that is in the training set of the random split. -For more information, see: - - Wu, Z.; Ramsundar, B.; Feinberg, E. N.; Gomes, J.; Geniesse, C.; Pappu, A. S.; - Leswing, K.; Pande, V. MoleculeNet: A Benchmark for Molecular Machine Learning. - Chemical Science 2018, 9 (2), 513–530. https://doi.org/10.1039/c7sc02664a. - - Jablonka, K. M.; Rosen, A. S.; Krishnapriyan, A. S.; Smit, B. - An Ecosystem for Digital Reticular Chemistry. ACS Central Science 2023, 9 (4), 563–581. - https://doi.org/10.1021/acscentsci.2c01177. +If there are multiple SMILES columns, we move to test/val if any of the SMILES +is in the test/val set of the scaffold split. +The meta.yaml files are used to determine the if there are SMILES in the dataset. +For this reason, certain scripts (e.g. preprocess_kg.py, several transform.py) need to be run before this script +as they sometimes update or create the meta.yaml files. + +Prior to the SMILES split and the split of all other files, we perform a random split on the files with +amino acid sequences. + +Warning: + - Note that the logic assumes that the SMILES columns only contain valid SMILES. + - The current script does not set up a dask client. If distributed computing is needed, please set up. + - Some CSV files contain complicated strings. We cannot parse them in a chunked manner. + In this case, we set blocksize=None and read the whole file into memory. """ +import logging import os +import random +import subprocess +from functools import partial from glob import glob -from typing import List +from pathlib import Path +from typing import List, Literal, Union +import dask.array as da +import dask.dataframe as dd import fire import numpy as np import pandas as pd -from rdkit import RDLogger +import yaml +from pandarallel import pandarallel +from pandas.errors import ParserError from tqdm import tqdm -from chemnlp.data.split import create_scaffold_split +from chemnlp.data.split import _create_scaffold_split + +pandarallel.initialize(progress_bar=True) + + +# Set up logging +logging.basicConfig(level=logging.INFO) + +# see issue https://github.com/OpenBioML/chemnlp/issues/498 for the list of datasets +# mostly those from TDC/moleculenet that have scaffold split as recommended method +to_scaffold_split = [ + "blood_brain_barrier_martins_et_al", + "serine_threonine_kinase_33_butkiewicz", + "ld50_zhu", + "herg_blockers", + "clearance_astrazeneca", + "half_life_obach", + "drug_induced_liver_injury", + "kcnq2_potassium_channel_butkiewicz", + "sarscov2_3clpro_diamond", + "volume_of_distribution_at_steady_state_lombardo_et_al", + "sr_hse_tox21", + "nr_er_tox21", + "cyp2c9_substrate_carbonmangels", + "nr_aromatase_tox21", + "cyp_p450_2d6_inhibition_veith_et_al", + "cyp_p450_1a2_inhibition_veith_et_al", + "cyp_p450_2c9_inhibition_veith_et_al", + "m1_muscarinic_receptor_antagonists_butkiewicz", + "nr_ar_tox21", + "sr_atad5_tox21", + "tyrosyl-dna_phosphodiesterase_butkiewicz", + "cav3_t-type_calcium_channels_butkiewicz", + "clintox", + "sr_p53_tox21", + "nr_er_lbd_tox21", + "pampa_ncats", + "sr_mmp_tox21", + "caco2_wang", + "sarscov2_vitro_touret", + "choline_transporter_butkiewicz", + "orexin1_receptor_butkiewicz", + "human_intestinal_absorption", + "nr_ahr_tox21", + "cyp3a4_substrate_carbonmangels", + "herg_karim_et_al", + "hiv", + "carcinogens", + "sr_are_tox21", + "nr_ppar_gamma_tox21", + "solubility_aqsoldb", + "m1_muscarinic_receptor_agonists_butkiewicz", + "ames_mutagenicity", + "potassium_ion_channel_kir2_1_butkiewicz", + "cyp_p450_3a4_inhibition_veith_et_al", + "skin_reaction", + "cyp2d6_substrate_carbonmangels", + "cyp_p450_2c19_inhibition_veith_et_al", + "nr_ar_lbd_tox21", + "p_glycoprotein_inhibition_broccatelli_et_al", + "bioavailability_ma_et_al", + "BACE", + "lipophilicity", + "thermosol", + "MUV_466", + "MUV_548", + "MUV_600", + "MUV_644", + "MUV_652", + "MUV_689", + "MUV_692", + "MUV_712", + "MUV_713", + "MUV_733", + "MUV_737", + "MUV_810", + "MUV_832", + "MUV_846", + "MUV_852", + "MUV_858", + "MUV_859", + # kg datasets + # "chebi_chebi", + "chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles", + "compound_chebi", + "compound_chebi_chebi", + "compound_chebi_chebi_chebi_1", + "compound_chebi_chebi_chebi_2", + "compound_protein", + "compound_protein_compound_1", + "compound_protein_compound_2", + "compound_protein_compound_3", + "compound_protein_disease", + "compound_protein_domain", + "compound_protein_ec_number", + "compound_protein_go_term_1", + "compound_protein_go_term_2", + "compound_protein_go_term_3", + "compound_protein_go_term_4", + "compound_protein_hpo", + "compound_protein_hpo_disease_1", + "compound_protein_hpo_disease_2", + "compound_protein_pathway", + "compound_protein_pathway_disease_1", + "compound_protein_pathway_disease_2", + "compound_protein_pathway_disease_3", + "compound_protein_protein", + "drug_chebi", + "drug_chebi_chebi", + "drug_chebi_chebi_chebi", + "drug_disease_pathway", + "drug_disease_pathway_protein", + "drug_protein", + "drug_protein_disease", + "drug_protein_domain", + "drug_protein_drug", + "drug_protein_ec_number", + "drug_protein_go_term", + "drug_protein_hpo", + "drug_protein_hpo_disease", + "drug_protein_pathway", + "drug_protein_pathway_disease", + "drug_protein_protein", +] -RDLogger.DisableLog("rdApp.*") +def cull_empty_partitions(df): + ll = list(df.map_partitions(len).compute()) + df_delayed = df.to_delayed() + df_delayed_new = list() + pempty = None + for ix, n in enumerate(ll): + if 0 == n: + print("culled") + pempty = df.get_partition(ix) + else: + df_delayed_new.append(df_delayed[ix]) + if pempty is not None: + df = dd.from_delayed(df_delayed_new, meta=pempty) + return df + + +def split_for_smiles( + smiles: str, train_smiles: List[str], val_smiles: List[str] +) -> str: + """Returns the split for a SMILES based on the train and val smiles.""" + if smiles in train_smiles: + return "train" + elif smiles in val_smiles: + return "valid" + else: + return "test" -REPRESENTATION_LIST = [ - "SMILES", - "PSMILES", - "SELFIES", - "RXNSMILES", - "RXNSMILESWAdd", - "IUPAC", - "InChI", - "InChIKey", - "COMPOSITION", - "Sentence", - "AS_SEQUENCE", -] +def yaml_file_has_column_of_type( + yaml_file: Union[str, Path], data_type: Literal["AS_SEQUENCE", "SMILES"] +) -> bool: + """Returns True if the yaml file has a SMILES column. + + Those columns are in either the targets or identifiers keys + (which are both lists). In there, we have dicts and it is a SMILES + if the key type is SMILES. + """ + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == data_type: + return True + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == data_type: + return True + + return False + + +def is_in_scaffold_split_list(yaml_file: Union[str, Path]) -> bool: + """Returns True if the yaml file is in the to_scaffold_split list.""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + return meta["name"] in to_scaffold_split -def rewrite_data_with_splits( - csv_paths: List[str], - repr_col: str, - train_test_df: pd.DataFrame, + +def get_meta_yaml_files(data_dir: Union[str, Path]) -> List[str]: + """Returns all yaml files in the data_dir directory.""" + return sorted( + glob(os.path.join(data_dir, "**", "**", "meta.yaml")) + ) # , recursive=True) + + +def run_transform(file: Union[str, Path]) -> None: + if not os.path.exists(os.path.join(os.path.dirname(file), "data_clean.csv")): + subprocess.run( + ["python", "transform.py"], + cwd=os.path.dirname(file), + ) + + +def get_columns_of_type( + yaml_file: Union[str, Path], + column_type: Literal["SMILES", "AS_SEQUENCE"] = "SMILES", +) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + smiles_columns = [] + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == column_type: + smiles_columns.append(target["id"]) + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == column_type: + smiles_columns.append(identifier["id"]) + + return smiles_columns + + +def remaining_split( + data_dir, override: bool = False, - check: bool = True, + seed: int = 42, + debug: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + run_transform_py: bool = False, ) -> None: - """Rewrite dataframes with the correct split column + """Run a random split on all datasets in the data_dir directory that do not have a AS_SEQUENCE column + and do not have a SMILES column. Args: - csv_paths (List[str]): list of files to merge (data_clean.csv) - train_test_df (pd.DataFrame): dataframe containing merged SMILES representations - from all datasets uniquely split into train and test - override (bool): whether to override the existing data_clean.csv files - defaults to False - check (bool): whether to check if the split was successful - defaults to True. Can be turned off to save memory - repr_col (str): the column name for where SMILES representation is stored - defaults to "SMILES" + data_dir ([type]): [description] + override (bool, optional): [description]. Defaults to False. + seed (int, optional): [description]. Defaults to 42. + debug (bool, optional): [description]. Defaults to False. + train_frac (float, optional): [description]. Defaults to 0.7. + val_frac (float, optional): [description]. Defaults to 0.15. + test_frac (float, optional): [description]. Defaults to 0.15. + run_transform_py (bool, optional): [description]. Defaults to False. + + Returns: + None """ + # make deterministic + np.random.seed(seed) + random.seed(seed) + dask_random_state = da.random.RandomState(seed) + + yaml_files = get_meta_yaml_files(data_dir) + non_smiles_yaml_files = [ + file + for file in yaml_files + # if not ( + # yaml_file_has_column_of_type(file, "SMILES") + # or yaml_file_has_column_of_type(file, "AS_SEQUENCE") + # ) + ] + + # if we debug, we only run split on the first 5 datasets + if debug: + non_smiles_yaml_files = non_smiles_yaml_files[:5] + + def assign_random_split(ddf, train_frac, test_frac, dask_random_state): + # Define a function to generate random values for each partition + def random_values_partition(partition, random_state): + # Generate random values for this partition's length + partition_random_values = random_state.random(len(partition)) + return partition_random_values + + # Use map_partitions to apply the function to each partition of the DataFrame + # This ensures that the generated random values have the same partitioning as `ddf` + random_values = ddf.map_partitions( + random_values_partition, + random_state=dask_random_state, + meta=( + "random_values", + "f8", + ), # Specify the meta for the new column, 'f8' is float64 + ) - for path in csv_paths: - read_dataset = pd.read_csv(path) - - if check: - train_smiles = set(train_test_df.query("split == 'train'")[repr_col].to_list()) + # Calculate the train, valid, and test masks based on the random values + valid_mask = (random_values >= train_frac) & ( + random_values < train_frac + test_frac + ) + test_mask = random_values >= (train_frac + test_frac) + + # Assign the 'split' column based on the masks + # Note: 'where' is not a standalone function in dask.dataframe, it's a method of DataFrame and Series + ddf["split"] = "train" # Default assignment + ddf["split"] = ddf["split"].mask(valid_mask, "valid") + ddf["split"] = ddf["split"].mask(test_mask, "test") + + return ddf + + def split_and_save(file, ddf): + ddf = assign_random_split(ddf, train_frac, test_frac, dask_random_state) + split_counts = ddf["split"].value_counts().compute() + + print(f"Dataset {file} has {len(ddf)} datapoints. Split sizes: {split_counts}") + + # we then write the new data_clean.csv file + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` + # and write the new file to `data_clean.csv` + if not override: + os.rename( + os.path.join(os.path.dirname(file), "data_clean.csv"), + os.path.join(os.path.dirname(file), "data_clean_old.csv"), + ) + ddf.to_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + index=False, + single_file=True, + ) - for path in csv_paths: - read_dataset = pd.read_csv(path) - if repr_col in read_dataset.columns: + # we run random splitting for each dataset + for file in tqdm(non_smiles_yaml_files): + print(f"Processing {file}") + if run_transform_py: + run_transform(file) + if os.path.exists(os.path.join(os.path.dirname(file), "data_clean.csv")): try: - read_dataset = read_dataset.drop("split", axis=1) - message = f"Split column found in {path}." - if override: - message += " Overriding..." - print(message) - except KeyError: - print(f"No split column in {path}") - - merged_data = pd.merge(read_dataset, train_test_df, on=repr_col, how="left") - # merged_data = merged_data.dropna() - if override: - merged_data.to_csv(path, index=False) - else: - # rename the old data_clean.csv file to data_clean_old.csv - os.rename(path, path.replace(".csv", "_old.csv")) - # write the new data_clean.csv file - merged_data.to_csv(path, index=False) - - if len(merged_data.query("split == 'train'")) == 0: - raise ValueError("Split failed, no train data") - if len(merged_data.query("split == 'test'")) == 0: - raise ValueError("Split failed, no test data") - if check: - test_split_smiles = set( - merged_data.query("split == 'test'")[repr_col].to_list() + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + ) + split_and_save(file, ddf) + except ParserError: + print(f"Could not parse {file}. Using blocksize=None.") + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + blocksize=None, ) - if len(train_smiles.intersection(test_split_smiles)) > 0: - raise ValueError("Split failed, train and test overlap") + split_and_save(file, ddf) + except ValueError as e: + if "Mismatched dtypes" in str(e): + print(f"Could not parse {file}. Inferring dtypes via pandas.") + chunk = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + d = dict( + zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values]) + ) + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + dtype=d, + assume_missing=True, + ) + split_and_save(file, ddf) + + +def as_sequence_split( + data_dir, + override: bool = False, + seed: int = 42, + debug: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + run_transform_py: bool = False, +) -> None: + """Run a random split on all datasets in the data_dir directory that have a AS_SEQUENCE column. + + Ensures that, overall, a AS_SEQUENCE is not split across train/val/test. + + Args: + data_dir ([type]): [description] + override (bool, optional): [description]. Defaults to False. + seed (int, optional): [description]. Defaults to 42. + debug (bool, optional): [description]. Defaults to False. + train_frac (float, optional): [description]. Defaults to 0.7. + val_frac (float, optional): [description]. Defaults to 0.15. + test_frac (float, optional): [description]. Defaults to 0.15. + run_transform_py (bool, optional): [description]. Defaults to False. + + Returns: + None + """ + all_yaml_files = get_meta_yaml_files(data_dir) + as_sequence_yaml_files = [ + file + for file in all_yaml_files + if yaml_file_has_column_of_type(file, "AS_SEQUENCE") + ] + + # if we debug, we only run split on the first 5 datasets + if debug: + as_sequence_yaml_files = as_sequence_yaml_files[:5] + + # make deterministic + np.random.seed(seed) + random.seed(seed) + + all_as_sequence = set() + + for file in tqdm(as_sequence_yaml_files): + print(f"Processing {file}") + if run_transform_py: + run_transform(file) + + df = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), low_memory=False + ) + for as_seq_col in get_columns_of_type(file, "AS_SEQUENCE"): + all_as_sequence.update(df[as_seq_col].tolist()) + + all_as_sequence = list(all_as_sequence) + # random split into train/val/test using numpy + # randomly take train_frac of the data for training set, val_frac for validation set + # and the rest for test set + train_size = int(len(all_as_sequence) * train_frac) + val_size = int(len(all_as_sequence) * val_frac) + + # shuffle the data + np.random.shuffle(all_as_sequence) + # split into train/val/test + train = all_as_sequence[:train_size] + val = all_as_sequence[train_size : train_size + val_size] + test = all_as_sequence[train_size + val_size :] + print( + f"In total, there are {len(all_as_sequence)} AS_SEQUENCEs. Split sizes: {len(train)} train, {len(val)} valid, {len(test)} test." # noqa: E501 + ) + with open("val_as_sequences.txt", "w") as f: + f.write("\n".join(val)) -TRACKED_DATASETS = [] + with open("test_as_sequences.txt", "w") as f: + f.write("\n".join(test)) + def assign_split(ddf, as_sequence_columns, test_sequences, val_sequences): + test_mask = ddf[as_sequence_columns].isin(test_sequences).any(axis=1) + val_mask = ddf[as_sequence_columns].isin(val_sequences).any(axis=1) -def per_repr( - repr_col: str, + # Assign the 'split' based on the masks + ddf["split"] = "train" # Default assignment + ddf["split"] = ddf["split"].mask(test_mask, "test") + ddf["split"] = ddf["split"].mask(val_mask, "valid") + return ddf + + for file in tqdm(as_sequence_yaml_files): + print(f"Processing {file}") + as_seq_cols = get_columns_of_type(file, "AS_SEQUENCE") + ddf = dd.read_csv(os.path.join(os.path.dirname(file), "data_clean.csv")) + + ddf = assign_split(ddf, as_seq_cols, test, val) + + split_counts = ddf["split"].value_counts().compute() + + print(f"Dataset {file} has {len(ddf)} datapoints. Split sizes: {split_counts}") + + # we then write the new data_clean.csv file + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` + # and write the new file to `data_clean.csv` + if not override: + os.rename( + os.path.join(os.path.dirname(file), "data_clean.csv"), + os.path.join(os.path.dirname(file), "data_clean_old.csv"), + ) + ddf.to_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + index=False, + single_file=True, + ) + + +def smiles_split( + data_dir: Union[str, Path], + override: bool = False, seed: int = 42, - train_size: float = 0.8, - val_size: float = 0.0, - test_size: float = 0.2, - path: str = "*/data_clean.csv", + debug: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + val_smiles_path: Union[str, Path] = "val_smiles.txt", + test_smiles_path: Union[str, Path] = "test_smiles.txt", + run_transform_py: bool = False, +) -> None: + """Runs a random split on all datasets in the data_dir directory that have a SMILES column. + + The validation and test sets are ensured to not contain any SMILES that are in the validation and test sets + of the scaffold split. + + Args: + data_dir (Union[str, Path]): The directory containing the directories with the datasets. + override (bool, optional): Whether to override the existing data_clean.csv files with the new ones. + Defaults to False. In this case, the old data_clean.csv files will be renamed to data_clean_old.csv. + seed (int, optional): The random seed. Defaults to 42. + debug (bool, optional): Whether to run in debug mode. Defaults to False. + In this case, only the first 5 datasets will be processed. + train_frac (float, optional): The fraction of the data to be used for training. Defaults to 0.7. + val_frac (float, optional): The fraction of the data to be used for validation. Defaults to 0.15. + test_frac (float, optional): The fraction of the data to be used for testing. Defaults to 0.15. + val_smiles_path (Union[str, Path], optional): The path to the validation smiles file. + Defaults to "val_smiles.txt". + test_smiles_path (Union[str, Path], optional): The path to the test smiles file. + Defaults to "test_smiles.txt". + run_transform_py (bool, optional): Whether to run the transform.py script in the directory of the dataset. + Defaults to False. + + Returns: + None + """ + # make deterministic + np.random.seed(seed) + random.seed(seed) + + def assign_split( + partition, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ): + # Create a random number generator with a unique seed for each partition + rng = np.random.default_rng(seed + partition.index[0]) + + # Generate random values for rows in the partition + random_values = rng.random(len(partition)) + + # Create masks for test and validation SMILES within the partition + is_test_smiles = partition[smiles_columns].isin(test_smiles).any(axis=1) + is_val_smiles = partition[smiles_columns].isin(val_smiles).any(axis=1) + + # Initialize the 'split' column with 'train' + partition["split"] = "train" + + # Update the 'split' column based on conditions + partition.loc[is_test_smiles, "split"] = "test" + partition.loc[is_val_smiles, "split"] = "valid" + + # Assign 'train', 'valid', or 'test' to remaining rows based on adjusted fractions + train_mask = (partition["split"] == "train") & (random_values < train_frac) + val_mask = ( + (partition["split"] == "train") + & (random_values >= train_frac) + & (random_values < train_frac + val_frac) + ) + test_mask = (partition["split"] == "train") & ( + random_values >= train_frac + val_frac + ) + + partition.loc[train_mask, "split"] = "train" + partition.loc[val_mask, "split"] = "valid" + partition.loc[test_mask, "split"] = "test" + + return partition + + def assign_splits( + ddf, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ): + # Ensure that the fractions sum to 1 or less + assert ( + train_frac + val_frac + test_frac <= 1 + ), "Fractions must sum to 1.0 or less" + + # Apply 'assign_split' function to each partition of the DataFrame + ddf = ddf.map_partitions( + assign_split, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ) + + return ddf + + # we err toward doing more I/O but having simpler code to ensure we don't make anything stupid + all_yaml_files = get_meta_yaml_files(data_dir) + smiles_yaml_files = [ + file + for file in all_yaml_files + if ( + yaml_file_has_column_of_type(file, "SMILES") + and not yaml_file_has_column_of_type(file, "AS_SEQUENCE") + ) # noqa: E501 + ] + # we filter those out that are in the to_scaffold_split list + not_scaffold_split_yaml_files = [ + file for file in smiles_yaml_files if not is_in_scaffold_split_list(file) + ] + + # not_scaffold_split_yaml_files = list(set( [ + # f + # for f in not_scaffold_split_yaml_files + # if Path(f).parts[-2] + # in [ + # "rdkit_features", + # #"orbnet_denali", + # #"smiles_to_3d", + # #"iupac_smiles", + # #"fda_adverse_reactions", + # ] + # ])) + # index = [ + # i + # for i, x in enumerate(not_scaffold_split_yaml_files) + # if str(x).find("orbnet_denali") != -1 + # ][0] + # # not_scaffold_split_yaml_files = not_scaffold_split_yaml_files[index:] + # # not_scaffold_split_yaml_files = not_scaffold_split_yaml_files[index+1:] + # not_scaffold_split_yaml_files = [not_scaffold_split_yaml_files[index]] + + # if we debug, we only run split on the first 5 datasets + if debug: + not_scaffold_split_yaml_files = [ + f for f in not_scaffold_split_yaml_files if "zinc" in f + ] + + # we run random splitting for each dataset but ensure that the validation and test sets + # do not contain any SMILES that are in the validation and test sets of the scaffold split + + with open(val_smiles_path, "r") as f: + val_smiles = f.read().splitlines() + + with open(test_smiles_path, "r") as f: + test_smiles = f.read().splitlines() + + # some datasets are hundreds of GB, so we have to use dask + # we will first do a random split on the whole dataset + # then we flip the values based on whether a SMILES + # is in the validation or test set of the scaffold split + # we will then write the new data_clean.csv file + + # if the is no data_clean.csv file, we run the transform.py script + # in the directory of the yaml file + # we will then read the data_clean.csv file and do the split + def split_and_save(file, ddf): + smiles_columns = get_columns_of_type(file, "SMILES") + + # Assign splits using the revised function + ddf = assign_splits( + ddf, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ) + + # split_counts = ddf["split"].value_counts().compute() + + # print( + # f"Dataset {file} has {len(ddf)} datapoints. Split sizes: {split_counts['train']} train, {split_counts['valid']} valid, {split_counts['test']} test." # noqa: E501 + # ) + + # we then write the new data_clean.csv file + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` + # and write the new file to `data_clean.csv` + if not override: + os.rename( + os.path.join(os.path.dirname(file), "data_clean.csv"), + os.path.join(os.path.dirname(file), "data_clean_old.csv"), + ) + ddf.to_csv(os.path.join(os.path.dirname(file), "data_clean-*.csv")) + + for file in tqdm(not_scaffold_split_yaml_files): + print(f"\nProcessing {file}") + if run_transform_py: + run_transform(file) + try: + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), low_memory=False + ) + # print(len(ddf)) + # s ddf = cull_empty_partitions(ddf) + # print(partition_sizes) + split_and_save(file, ddf) + + except ParserError: + print(f"Could not parse {file}. Using blocksize=None.") + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + blocksize=None, + ) + split_and_save(file, ddf) + + except ValueError as e: + if "mona" in file: + df = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + ) + ddf = dd.from_pandas(df, npartitions=1) + split_and_save(file, ddf) + + elif "Mismatched dtypes" in str(e): + print(f"Could not parse {file}. Inferring dtypes via pandas.") + chunk = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + + dtype_dict = dict( + zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values]) + ) + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + dtype=dtype_dict, + assume_missing=True, + ) + split_and_save(file, ddf) + + +def scaffold_split( + data_dir: Union[str, Path], override: bool = False, - check: bool = True, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + seed: int = 42, + debug: bool = False, + run_transform_py: bool = False, ): - paths_to_data = glob(path) - - # uncomment the following lines for debugging on a subset of data - # filtered_paths = [] - # for path in paths_to_data: - # if "flashpoint" in path: - # filtered_paths.append(path) - # elif "BBBP" in path: - # filtered_paths.append(path) - # elif "peptide" in path: - # filtered_paths.append(path) - # elif "bicerano_dataset" in path: - # filtered_paths.append(path) - # paths_to_data = filtered_paths - - representations = [] - - for path in paths_to_data: - df = pd.read_csv(path) - - if repr_col in df.columns and path not in TRACKED_DATASETS: - print("Processing", path.split("/")[0]) - TRACKED_DATASETS.append(path) - representations.extend(df[repr_col].to_list()) - - repr_df = pd.DataFrame() - repr_df[repr_col] = list(set(representations)) - - if "SMILES" in repr_df.columns: - split = create_scaffold_split( - repr_df, seed=seed, frac=[train_size, val_size, test_size] - ) - else: - split_ = pd.DataFrame( - np.random.choice( - ["train", "test", "valid"], - size=len(repr_df), - p=[1 - val_size - test_size, test_size, val_size], + """Performs scaffold splitting on all datasets in the data_dir directory + that are in the to_scaffold_split list. + + It serializes the validation and test smiles into `val_smiles.txt` and `test_smiles.txt` + in the current directory. + + It is the first step of the splitting procedure as we will then perform a random split + on the remaining datasets on all other datasets. However, if they have smiles, + we will set all smiles that are in the validation and test sets to be in the validation and test sets. + + Args: + data_dir (Union[str, Path]): The directory containing the directories with the datasets. + override (bool, optional): Whether to override the existing data_clean.csv files with the new ones. + Defaults to False. In this case, the old data_clean.csv files will be renamed to data_clean_old.csv. + train_frac (float, optional): The fraction of the data to be used for training. Defaults to 0.7. + val_frac (float, optional): The fraction of the data to be used for validation. Defaults to 0.15. + test_frac (float, optional): The fraction of the data to be used for testing. Defaults to 0.15. + seed (int, optional): The random seed. Defaults to 42. + debug (bool, optional): Whether to run in debug mode. Defaults to False. + In this case, only the first 5 datasets will be processed. + run_transform_py (bool, optional): Whether to run the transform.py script in the directory of the dataset. + """ + # make deterministic + np.random.seed(seed) + random.seed(seed) + + all_yaml_files = get_meta_yaml_files(data_dir) + if debug: + all_yaml_files = all_yaml_files[:5] + transformed_files = [] + for file in tqdm(all_yaml_files): + print(f"Processing {file}") + with open(file, "r") as f: + meta = yaml.safe_load(f) + + if meta["name"] in to_scaffold_split: + # run transform.py script in this directory if `data_clean.csv` does not exist + # use this dir as cwd + if run_transform_py: + run_transform(file) + + transformed_files.append( + os.path.join(os.path.dirname(file), "data_clean.csv") ) - ) - repr_df["split"] = split_ - train = repr_df.query("split == 'train'").reset_index(drop=True) - test = repr_df.query("split == 'test'").reset_index(drop=True) - valid = repr_df.query("split == 'valid'").reset_index(drop=True) - - split = {"train": train, "test": test, "valid": valid} - - # create train and test dataframes - train_df = split["train"] - test_df = split["test"] - valid_df = split["valid"] - # add split columns to train and test dataframes - train_df["split"] = len(train_df) * ["train"] - test_df["split"] = len(test_df) * ["test"] - valid_df["split"] = len(valid_df) * ["valid"] - - # merge train and test across all datasets - merge = pd.concat([train_df, test_df, valid_df], axis=0) - # rewrite data_clean.csv for each dataset - rewrite_data_with_splits( - csv_paths=paths_to_data, - repr_col=repr_col, - train_test_df=merge, - override=override, - check=check, + all_smiles = set() + for file in transformed_files: + df = pd.read_csv(file, low_memory=False) + all_smiles.update(df["SMILES"].tolist()) + del df # ensure memory is freed + + all_smiles = list(all_smiles) + splits = _create_scaffold_split( + all_smiles, frac=[train_frac, val_frac, test_frac], seed=seed ) + # select the right indices for each split + train_smiles = [all_smiles[i] for i in splits["train"]] + val_smiles = [all_smiles[i] for i in splits["valid"]] + test_smiles = [all_smiles[i] for i in splits["test"]] + + # write the validation and test smiles to files + with open("val_smiles.txt", "w") as f: + f.write("\n".join(val_smiles)) + with open("test_smiles.txt", "w") as f: + f.write("\n".join(test_smiles)) + + print( + "Train smiles:", + len(train_smiles), + "Val smiles:", + len(val_smiles), + "Test smiles:", + len(test_smiles), + ) -def cli( - seed: int = 42, - train_size: float = 0.75, - val_size: float = 0.125, - test_size: float = 0.125, - path: str = "*/data_clean.csv", + # now for each dataframe, add a split column based on in which list in the `splits` dict the smiles is + # smiles are in the SMILES column + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` and write the new file to `data_clean.csv` + + split_for_smiles_curried = partial( + split_for_smiles, train_smiles=train_smiles, val_smiles=val_smiles + ) + for file in tqdm(transformed_files): + df = pd.read_csv(file, low_memory=False) + df["split"] = df["SMILES"].parallel_apply(split_for_smiles_curried) + + # to ensure overall scaffold splitting does not distort train/val/test split sizes for each dataset + print( + f"Dataset {file} has {len(df)} datapoints. Split sizes: {len(df[df['split'] == 'train'])} train, {len(df[df['split'] == 'valid'])} valid, {len(df[df['split'] == 'test'])} test." # noqa: E501 + ) + print( + f"Dataset {file} has {len(df)} datapoints. Split fractions: {len(df[df['split'] == 'train']) / len(df)} train, {len(df[df['split'] == 'valid']) / len(df)} valid, {len(df[df['split'] == 'test']) / len(df)} test." # noqa: E501 + ) + if override: + # write the new data_clean.csv file + df.to_csv(file, index=False) + else: + # copy the old data_clean.csv to data_clean_old.csv + os.rename(file, file.replace(".csv", "_old.csv")) + # write the new data_clean.csv file + df.to_csv(file, index=False) + + +def run_all_split( + data_dir: Union[str, Path], override: bool = False, - check: bool = True, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + seed: int = 42, + debug: bool = False, + run_transform_py: bool = False, ): - for representation in tqdm(REPRESENTATION_LIST): - if representation == "SMILES": - print("Processing priority representation: SMILES") - else: - print("Processing datasets with the representation column:", representation) - per_repr( - representation, seed, train_size, val_size, test_size, path, override, check - ) + """Runs all splitting steps on the datasets in the data_dir directory.""" + + print('Running "as_sequence" split...') + as_sequence_split( + data_dir, + override, + seed, + debug, + train_frac, + val_frac, + test_frac, + run_transform_py=run_transform_py, + ) + print("Running scaffold split...") + scaffold_split( + data_dir, + override, + train_frac, + val_frac, + test_frac, + seed, + debug, + run_transform_py=run_transform_py, + ) + print("Running SMILES split...") + smiles_split( + data_dir, + override, + seed, + debug, + train_frac, + val_frac, + test_frac, + run_transform_py=run_transform_py, + ) + print("Running remaining split...") + remaining_split( + data_dir, + override, + seed, + debug, + train_frac=train_frac, + val_frac=val_frac, + test_frac=test_frac, + run_transform_py=run_transform_py, + ) if __name__ == "__main__": - fire.Fire(cli) + fire.Fire(run_all_split) diff --git a/pyproject.toml b/pyproject.toml index 9b197dd80..159503371 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ dataset_creation = [ # "safe-mol", "backoff", "givemeconformer", + "pandarallel" ] training = [ From 165dc6023aafaa3fbf6b582b04c73cb7a5c541bf Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Fri, 1 Dec 2023 18:23:50 +0100 Subject: [PATCH 52/61] add inverse design task (#514) --- data/tabular/inverse_1/meta.yaml | 223 +++++++++++++++++++++++++++ data/tabular/inverse_1/transform.py | 94 ++++++++++++ data/tabular/inverse_2/meta.yaml | 225 ++++++++++++++++++++++++++++ data/tabular/inverse_2/transform.py | 94 ++++++++++++ data/tabular/inverse_3/meta.yaml | 223 +++++++++++++++++++++++++++ data/tabular/inverse_3/transform.py | 99 ++++++++++++ data/text_sampling/text_sampling.py | 6 +- 7 files changed, 963 insertions(+), 1 deletion(-) create mode 100644 data/tabular/inverse_1/meta.yaml create mode 100644 data/tabular/inverse_1/transform.py create mode 100644 data/tabular/inverse_2/meta.yaml create mode 100644 data/tabular/inverse_2/transform.py create mode 100644 data/tabular/inverse_3/meta.yaml create mode 100644 data/tabular/inverse_3/transform.py diff --git a/data/tabular/inverse_1/meta.yaml b/data/tabular/inverse_1/meta.yaml new file mode 100644 index 000000000..2f949af0d --- /dev/null +++ b/data/tabular/inverse_1/meta.yaml @@ -0,0 +1,223 @@ +--- +name: inverse_1 +description: |- + Inverse design task constructed by merging solubility_aqsoldb and + nr_ar_tox21 and augmenting it with molecular descriptors. +targets: + - id: aqeuous_solubility + description: aqueous solubility + units: log(mol/L) + type: continuous + names: + - noun: aqueous solubility (logarithmic) + - noun: water solubility (measured in log(mol/L)) + - noun: water solubility (logarithmic) + - adjective: dissolves in a water + uris: + - http://purl.jp/bio/4/id/200906006880450101 + - http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C60821 + - id: toxicity_NR-AR + description: whether it toxic in a androgen receptor toxicity assay (1) or not (0) + units: + type: boolean + names: + - noun: NR-AR toxicity + - noun: NR-androgen receptor toxicity + - verb: is toxic in a androgen receptor toxicity assay + - adjective: toxic in the NR-AR assay + - adjective: toxic in the NR-androgen receptor assay + - gerund: displaying toxicity in the NR-AR assay + - gerund: exhibiting toxicity in the NR-androgen assay + - gerund: demonstrating toxicity in the NR-androgen assay + uris: + - id: carboxyl_count + description: number of carboxyl groups + type: ordinal + names: + - noun: carboxyl groups + - id: carbonyl_count + description: number of carbonyl groups + type: ordinal + names: + - noun: carbonyl groups + - id: ether_count + description: number of ether groups + type: ordinal + names: + - noun: ether groups + - id: alkanol_count + description: number of alkanol groups + type: ordinal + names: + - noun: alkanol groups + - id: thiol_count + description: number of thiol groups + type: ordinal + names: + - noun: thiol groups + - id: halogen_count + description: number of halogen groups + type: ordinal + names: + - noun: halogen groups + - id: amine_count + description: number of amine groups + type: ordinal + names: + - noun: amine groups + - id: amide_count + description: number of amide groups + type: ordinal + names: + - noun: amide groups + - id: ketone_count + description: number of ketone groups + type: ordinal + names: + - noun: ketone group count + - id: num_valence_electrons + description: number of valence electrons + type: ordinal + names: + - noun: valence electrons + - id: molecular_formula + description: molecular formula + type: text + names: + - noun: molecular formula + - id: monoisotopic_molecular_mass + description: monoisotopic molecular mass + type: continuous + units: g/mol + names: + - noun: monoisotopic molecular mass + - id: carbon_mass + description: carbon mass + type: continuous + units: g/mol + names: + - noun: carbon mass + - id: hydrogen_mass + description: hydrogen mass + type: continuous + units: g/mol + names: + - noun: hydrogen mass + - id: nitrogen_mass + description: nitrogen mass + type: continuous + units: g/mol + names: + - noun: nitrogen mass + - id: oxygen_mass + description: oxygen mass + units: g/mol + type: continuous + names: + - noun: oxygen mass + - id: num_carbon_atoms + description: number of carbon atoms + type: ordinal + names: + - noun: carbon atoms + - id: num_hydrogen_atoms + type: ordinal + description: number of hydrogen atoms + names: + - noun: hydrogen atoms + - id: num_nitrogen_atoms + description: number of nitrogen atoms + type: ordinal + names: + - noun: nitrogen atoms + - id: num_oxygen_atoms + description: number of oxygen atoms + type: ordinal + names: + - noun: oxygen atoms + - id: num_hydrogen_bond_acceptors + description: number of hydrogen bond acceptors + type: ordinal + names: + - noun: hydrogen bond acceptors + - id: num_hydrogen_bond_donors + description: number of hydrogen bond donors + type: ordinal + names: + - noun: hydrogen bond donors + - id: num_lipinski_violations + description: number of Lipinski violations + type: ordinal + names: + - noun: Lipinski violations + - noun: Lipinski rule of five violations + - id: num_chiral_centers + description: number of chiral centers + type: ordinal + names: + - noun: chiral center count +benchmarks: + - name: TDC + link: https://tdcommons.ai/ + split_column: split +identifiers: + - id: SMILES + type: SMILES + description: SMILES +license: CC BY 4.0 +links: + - url: https://doi.org/10.1038/s41597-019-0151-1 + description: corresponding publication + - url: https://tdcommons.ai/single_pred_tasks/adme/#aqeuous_solubility-aqsoldb + description: data source + - url: https://github.com/lamalab-org/chem-caption + description: software used to generate features +num_points: 2525 +bibtex: + - |- + @article{Sorkun_2019, + doi = {10.1038/s41597-019-0151-1}, + url = {https://doi.org/10.1038%2Fs41597-019-0151-1}, + year = {2019}, + month = aug, + publisher = {Springer Science and Business Media LLC}, + volume = {6}, + number = {1}, + author = {Murat Cihan Sorkun and Abhishek Khetan and + Suleyman Er}, + title = {AqSolDB, a curated reference set of aqueous aqeuous_solubility + and 2D descriptors for a diverse set of compounds}, + journal = {Scientific Data} +templates: + - |- + User: {#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. + Assistant: {#There might be multiple compounds that match these criteria. Do you have additional constraints?|Do you have additional constraints?|Is there anything else I should consider?|Is there anything else I should know?!} + User: {#No|No, there are no additional constraints.|No, there are no other constraints.|No, there are no other criteria.|No, there are no other requirements.|No, there are none.!} + Assistant: {#In this case, |OK, |Alright, |Understood, |Got it, |I see, !}the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should|will|is expected to!} fit your criteria. + - |- + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun}. + Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} + - |- + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} and has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#} {carbon_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun} and {ether_count#} {ether_count__names__noun} as well as {alkanol_count#} {alkanol_count__names__noun} and {thiol_count#} {thiol_count__names__noun}. + Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} + - |- + User: {#I am researching|I am investigating|I am studying!} {#pharmaceuticals|medicinal compounds|drug molecules!} and {#need|require|am looking for!} a {#molecule|compound|chemical structure!} with a {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. It should also be {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. {#Additionally,|Moreover,|Furthermore,!} it {#must|should|needs to!} have {amine_count#} {amine_count__names__noun}. + Assistant: {#To meet these requirements, |Considering your specifications, |Taking into account your needs, !} I {#recommend|suggest|propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}. {#This should match your criteria.|This fits your described parameters.|This aligns with your requirements.!} + - |- + User: {#As a chemist|Being a chemical researcher,|In my chemical research,!} I {#am looking for|require|need!} a {#molecule|compound|chemical structure!} with {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun} and {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun}. It {#also needs|should also!} to be {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} and have a {oxygen_mass__names__noun} of {oxygen_mass#} {oxygen_mass__units}. + Assistant: {#I've got the ideal compound for you.|I have a compound that fits these specifications.|I suggest a molecule that meets your needs.!} The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should work perfectly.|is exactly what you're looking for.|matches your requirements.!} + - |- + User: {#In my pharmaceutical research,|For my current drug discovery project,|In my medicinal chemistry studies,!} I {#require|need|am looking for!} a {#molecule|compound|chemical structure!} with {num_chiral_centers#} {num_chiral_centers__names__noun} and {num_lipinski_violations#} {num_lipinski_violations__names__noun}. It should {#also have|also possess|also contain!} a {nitrogen_mass__names__noun} of {nitrogen_mass#} {nitrogen_mass__units} and be {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. + Assistant: {#After considering your needs,|Based on your requirements,|Taking your specifications into account,!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#would be a great fit.|seems to be a perfect match.|should meet all your criteria.!} + - |- + User: {#In my research on|For my study of|While investigating!} {#non-toxic chemicals|safe compounds|environment-friendly substances!}, I {#need|require|am looking for!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} with {num_carbon_atoms#} {num_carbon_atoms__names__noun}. {#Additionally,|Furthermore,|Moreover,!} it {#should have|must have|needs to have!} {num_nitrogen_atoms#} {num_nitrogen_atoms__names__noun}. + Assistant: {#I have a compound in mind|I can suggest a molecule|I've identified a chemical structure!} that {#fits|meets|aligns with!} these requirements. The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#is suitable for your needs.|meets your specified criteria.|should work well for your research.!} + - |- + User: {#As a pharmacologist,|In my pharmacological studies,|For my drug development work,!} I {#require|need|am in need of!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} and has {num_oxygen_atoms#} {num_oxygen_atoms__names__noun}. {#Also,|In addition,|Moreover,!} it {#must|should!} have a {molecular_formula__names__noun} of {molecular_formula#}. + Assistant: {#I recommend|I suggest|I propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} that {#satisfies these conditions.|meets these criteria.|is aligned with your requirements.!} + - |- + User: {#In my environmental chemistry work,|For my eco-friendly compound research,|As part of my sustainable chemical studies,!} I {#am looking for|require|need!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} with a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#Also,|Additionally,|Moreover,!} it {#should possess|must contain|needs to have!} {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun}. + Assistant: {#Considering your needs,|Based on your specifications,|With your requirements in mind,!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#would be ideal.|seems perfect.|is a great match.!} + - |- + User: {#For my bioactive molecule research,|In my study of pharmacologically active substances,|As I explore biologically active compounds,!} I {#need|require|am searching for!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. It {#should also have|must also feature|also needs to have!} {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun} and {halogen_count#} {halogen_count__names__noun}. + Assistant: {#I've found a compound|I have a molecule|I suggest a chemical structure!} that {#fulfills|meets|matches!} these criteria. The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#would suit your research.|is in line with your needs.|fits your specifications perfectly.!} diff --git a/data/tabular/inverse_1/transform.py b/data/tabular/inverse_1/transform.py new file mode 100644 index 000000000..2d05233a5 --- /dev/null +++ b/data/tabular/inverse_1/transform.py @@ -0,0 +1,94 @@ +import concurrent.futures + +import numpy as np +import pandas as pd +from chemcaption.featurize.adaptor import ValenceElectronCountAdaptor +from chemcaption.featurize.base import MultipleFeaturizer +from chemcaption.featurize.composition import ( + ElementCountFeaturizer, + ElementMassFeaturizer, + ElementMassProportionFeaturizer, + MolecularFormulaFeaturizer, + MonoisotopicMolecularMassFeaturizer, +) +from chemcaption.featurize.electronicity import ( + HydrogenAcceptorCountFeaturizer, + HydrogenDonorCountFeaturizer, +) +from chemcaption.featurize.rules import LipinskiViolationCountFeaturizer +from chemcaption.featurize.stereochemistry import ChiralCenterCountFeaturizer +from chemcaption.featurize.substructure import SMARTSFeaturizer +from chemcaption.molecules import SMILESMolecule +from chemcaption.presets import ORGANIC + +ORGANIC = dict(zip(ORGANIC["names"], ORGANIC["smarts"])) + + +def get_smarts_featurizers(): + featurizers = [] + for name, smarts in ORGANIC.items(): + featurizers.append(SMARTSFeaturizer([smarts], names=[name])) + return featurizers + + +FEATURIZER = MultipleFeaturizer( + get_smarts_featurizers() + + [ + ValenceElectronCountAdaptor(), + MolecularFormulaFeaturizer(), + MonoisotopicMolecularMassFeaturizer(), + ElementMassFeaturizer(), + ElementCountFeaturizer(), + ElementMassProportionFeaturizer(), + HydrogenAcceptorCountFeaturizer(), + HydrogenDonorCountFeaturizer(), + LipinskiViolationCountFeaturizer(), + ChiralCenterCountFeaturizer(), + ] +) + + +def to_smiles_molecule(smiles: str): + return SMILESMolecule(smiles) + + +def featurize_smiles(smiles: str): + molecule = to_smiles_molecule(smiles) + return FEATURIZER.featurize(molecule) + + +def transform(): + df_1 = pd.read_csv("../solubility_aqsoldb/data_clean.csv") + df_2 = pd.read_csv("../nr_ar_tox21/data_clean.csv") + + # merge on SMILES, keep where we have SMILES in both datasets + merged = pd.merge(df_1, df_2, on="SMILES", how="inner") + print(len(merged)) + + features = [] + + with concurrent.futures.ProcessPoolExecutor() as executor: + for feature in executor.map(featurize_smiles, merged["SMILES"]): + features.append(feature) + + feature_names = FEATURIZER.feature_labels() + print(feature_names) + features = np.concatenate(features) + print(features.shape) + # add features to dataframe + for i, name in enumerate(feature_names): + merged[name] = features[:, i] + merged.dropna( + subset=[ + "SMILES", + ] + + FEATURIZER.feature_names() + + ["aqeuous_solubility", "toxicity_NR-AR"], + inplace=True, + ) + print(len(merged)) + merged.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform() diff --git a/data/tabular/inverse_2/meta.yaml b/data/tabular/inverse_2/meta.yaml new file mode 100644 index 000000000..4ae9505b5 --- /dev/null +++ b/data/tabular/inverse_2/meta.yaml @@ -0,0 +1,225 @@ +--- +name: inverse_2 +description: |- + Inverse design task constructed by merging solubility_aqsoldb and + sr_atad5_tox21 and augmenting it with molecular descriptors. +targets: + - id: aqeuous_solubility + description: aqueous solubility + units: log(mol/L) + type: continuous + names: + - noun: aqueous solubility (logarithmic) + - noun: water solubility (measured in log(mol/L)) + - noun: water solubility (logarithmic) + - adjective: dissolves in a water + uris: + - http://purl.jp/bio/4/id/200906006880450101 + - http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C60821 + - id: toxicity_SR-ATAD5 + description: whether it shows activitiy in the SR-ATAD5 assay (1) or not (0) + units: + type: boolean + names: + - noun: SR-Luciferase-tagged ATAD5 in human embryonic kidney cells toxicity + - noun: Luciferase-tagged ATAD5 in human embryonic kidney cells toxicity + - noun: Luciferase-tagged ATAD5 toxicity + - verb: shows activity in the SR-Luciferase-tagged ATAD5 in human embryonic kidney cells toxicity assay + - verb: is active in the Luciferase-tagged ATAD5 in human embryonic kidney cells toxicity assay + - verb: is active in the Luciferase-tagged ATAD5 toxicity assay + - adjective: toxic in the SR-Luciferase-tagged ATAD5 in human embryonic kidney cells assay + - adjective: toxic in the Luciferase-tagged ATAD5 in human embryonic kidney cells assay + - adjective: toxic in the Luciferase-tagged ATAD5 assay + - gerund: showing SR-ATAD5 toxicity + uris: + - id: carboxyl_count + description: number of carboxyl groups + type: ordinal + names: + - noun: carboxyl groups + - id: carbonyl_count + description: number of carbonyl groups + type: ordinal + names: + - noun: carbonyl groups + - id: ether_count + description: number of ether groups + type: ordinal + names: + - noun: ether groups + - id: alkanol_count + description: number of alkanol groups + type: ordinal + names: + - noun: alkanol groups + - id: thiol_count + description: number of thiol groups + type: ordinal + names: + - noun: thiol groups + - id: halogen_count + description: number of halogen groups + type: ordinal + names: + - noun: halogen groups + - id: amine_count + description: number of amine groups + type: ordinal + names: + - noun: amine groups + - id: amide_count + description: number of amide groups + type: ordinal + names: + - noun: amide groups + - id: ketone_count + description: number of ketone groups + type: ordinal + names: + - noun: ketone group count + - id: num_valence_electrons + description: number of valence electrons + type: ordinal + names: + - noun: valence electrons + - id: molecular_formula + description: molecular formula + type: text + names: + - noun: molecular formula + - id: monoisotopic_molecular_mass + description: monoisotopic molecular mass + type: continuous + units: g/mol + names: + - noun: monoisotopic molecular mass + - id: carbon_mass + description: carbon mass + type: continuous + units: g/mol + names: + - noun: carbon mass + - id: hydrogen_mass + description: hydrogen mass + type: continuous + units: g/mol + names: + - noun: hydrogen mass + - id: nitrogen_mass + description: nitrogen mass + type: continuous + units: g/mol + names: + - noun: nitrogen mass + - id: oxygen_mass + description: oxygen mass + units: g/mol + type: continuous + names: + - noun: oxygen mass + - id: num_carbon_atoms + description: number of carbon atoms + type: ordinal + names: + - noun: carbon atoms + - id: num_hydrogen_atoms + type: ordinal + description: number of hydrogen atoms + names: + - noun: hydrogen atoms + - id: num_nitrogen_atoms + description: number of nitrogen atoms + type: ordinal + names: + - noun: nitrogen atoms + - id: num_oxygen_atoms + description: number of oxygen atoms + type: ordinal + names: + - noun: oxygen atoms + - id: num_hydrogen_bond_acceptors + description: number of hydrogen bond acceptors + type: ordinal + names: + - noun: hydrogen bond acceptors + - id: num_hydrogen_bond_donors + description: number of hydrogen bond donors + type: ordinal + names: + - noun: hydrogen bond donors + - id: num_lipinski_violations + description: number of Lipinski violations + type: ordinal + names: + - noun: Lipinski violations + - noun: Lipinski rule of five violations + - id: num_chiral_centers + description: number of chiral centers + type: ordinal + names: + - noun: chiral center count +benchmarks: + - name: TDC + link: https://tdcommons.ai/ + split_column: split +identifiers: + - id: SMILES + type: SMILES + description: SMILES +license: CC BY 4.0 +links: + - url: https://doi.org/10.1038/s41597-019-0151-1 + description: corresponding publication + - url: https://tdcommons.ai/single_pred_tasks/adme/#aqeuous_solubility-aqsoldb + description: data source + - url: https://github.com/lamalab-org/chem-caption + description: software used to generate features +num_points: 2517 +bibtex: + - |- + @article{Sorkun_2019, + doi = {10.1038/s41597-019-0151-1}, + url = {https://doi.org/10.1038%2Fs41597-019-0151-1}, + year = {2019}, + month = aug, + publisher = {Springer Science and Business Media LLC}, + volume = {6}, + number = {1}, + author = {Murat Cihan Sorkun and Abhishek Khetan and + Suleyman Er}, + title = {AqSolDB, a curated reference set of aqueous aqeuous_solubility + and 2D descriptors for a diverse set of compounds}, + journal = {Scientific Data} +templates: + - |- + User: {#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. + Assistant: {#There might be multiple compounds that match these criteria. Do you have additional constraints?|Do you have additional constraints?|Is there anything else I should consider?|Is there anything else I should know?!} + User: {#No|No, there are no additional constraints.|No, there are no other constraints.|No, there are no other criteria.|No, there are no other requirements.|No, there are none.!} + Assistant: {#In this case, |OK, |Alright, |Understood, |Got it, |I see, !}the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should|will|is expected to!} fit your criteria. + - |- + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun}. + Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} + - |- + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} and has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#} {carbon_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun} and {ether_count#} {ether_count__names__noun} as well as {alkanol_count#} {alkanol_count__names__noun} and {thiol_count#} {thiol_count__names__noun}. + Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} + - |- + User: {#I am researching|I am investigating|I am studying!} {#pharmaceuticals|medicinal compounds|drug molecules!} and {#need|require|am looking for!} a {#molecule|compound|chemical structure!} with a {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. It should also be {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. {#Additionally,|Moreover,|Furthermore,!} it {#must|should|needs to!} have {amine_count#} {amine_count__names__noun}. + Assistant: {#To meet these requirements, |Considering your specifications, |Taking into account your needs, !} I {#recommend|suggest|propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}. {#This should match your criteria.|This fits your described parameters.|This aligns with your requirements.!} + - |- + User: {#As a chemist|Being a chemical researcher,|In my chemical research,!} I {#am looking for|require|need!} a {#molecule|compound|chemical structure!} with {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun} and {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun}. It {#also needs|should also!} to be {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} and have a {oxygen_mass__names__noun} of {oxygen_mass#} {oxygen_mass__units}. + Assistant: {#I've got the ideal compound for you.|I have a compound that fits these specifications.|I suggest a molecule that meets your needs.!} The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should work perfectly.|is exactly what you're looking for.|matches your requirements.!} + - |- + User: {#In my pharmaceutical research,|For my current drug discovery project,|In my medicinal chemistry studies,!} I {#require|need|am looking for!} a {#molecule|compound|chemical structure!} with {num_chiral_centers#} {num_chiral_centers__names__noun} and {num_lipinski_violations#} {num_lipinski_violations__names__noun}. It should {#also have|also possess|also contain!} a {nitrogen_mass__names__noun} of {nitrogen_mass#} {nitrogen_mass__units} and be {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. + Assistant: {#After considering your needs,|Based on your requirements,|Taking your specifications into account,!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#would be a great fit.|seems to be a perfect match.|should meet all your criteria.!} + - |- + User: {#In my research on|For my study of|While investigating!} {#non-toxic chemicals|safe compounds|environment-friendly substances!}, I {#need|require|am looking for!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} with {num_carbon_atoms#} {num_carbon_atoms__names__noun}. {#Additionally,|Furthermore,|Moreover,!} it {#should have|must have|needs to have!} {num_nitrogen_atoms#} {num_nitrogen_atoms__names__noun}. + Assistant: {#I have a compound in mind|I can suggest a molecule|I've identified a chemical structure!} that {#fits|meets|aligns with!} these requirements. The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#is suitable for your needs.|meets your specified criteria.|should work well for your research.!} + - |- + User: {#As a pharmacologist,|In my pharmacological studies,|For my drug development work,!} I {#require|need|am in need of!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} and has {num_oxygen_atoms#} {num_oxygen_atoms__names__noun}. {#Also,|In addition,|Moreover,!} it {#must|should!} have a {molecular_formula__names__noun} of {molecular_formula#}. + Assistant: {#I recommend|I suggest|I propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} that {#satisfies these conditions.|meets these criteria.|is aligned with your requirements.!} + - |- + User: {#In my environmental chemistry work,|For my eco-friendly compound research,|As part of my sustainable chemical studies,!} I {#am looking for|require|need!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} with a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#Also,|Additionally,|Moreover,!} it {#should possess|must contain|needs to have!} {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun}. + Assistant: {#Considering your needs,|Based on your specifications,|With your requirements in mind,!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#would be ideal.|seems perfect.|is a great match.!} + - |- + User: {#For my bioactive molecule research,|In my study of pharmacologically active substances,|As I explore biologically active compounds,!} I {#need|require|am searching for!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. It {#should also have|must also feature|also needs to have!} {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun} and {halogen_count#} {halogen_count__names__noun}. + Assistant: {#I've found a compound|I have a molecule|I suggest a chemical structure!} that {#fulfills|meets|matches!} these criteria. The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#would suit your research.|is in line with your needs.|fits your specifications perfectly.!} diff --git a/data/tabular/inverse_2/transform.py b/data/tabular/inverse_2/transform.py new file mode 100644 index 000000000..3988cebab --- /dev/null +++ b/data/tabular/inverse_2/transform.py @@ -0,0 +1,94 @@ +import concurrent.futures + +import numpy as np +import pandas as pd +from chemcaption.featurize.adaptor import ValenceElectronCountAdaptor +from chemcaption.featurize.base import MultipleFeaturizer +from chemcaption.featurize.composition import ( + ElementCountFeaturizer, + ElementMassFeaturizer, + ElementMassProportionFeaturizer, + MolecularFormulaFeaturizer, + MonoisotopicMolecularMassFeaturizer, +) +from chemcaption.featurize.electronicity import ( + HydrogenAcceptorCountFeaturizer, + HydrogenDonorCountFeaturizer, +) +from chemcaption.featurize.rules import LipinskiViolationCountFeaturizer +from chemcaption.featurize.stereochemistry import ChiralCenterCountFeaturizer +from chemcaption.featurize.substructure import SMARTSFeaturizer +from chemcaption.molecules import SMILESMolecule +from chemcaption.presets import ORGANIC + +ORGANIC = dict(zip(ORGANIC["names"], ORGANIC["smarts"])) + + +def get_smarts_featurizers(): + featurizers = [] + for name, smarts in ORGANIC.items(): + featurizers.append(SMARTSFeaturizer([smarts], names=[name])) + return featurizers + + +FEATURIZER = MultipleFeaturizer( + get_smarts_featurizers() + + [ + ValenceElectronCountAdaptor(), + MolecularFormulaFeaturizer(), + MonoisotopicMolecularMassFeaturizer(), + ElementMassFeaturizer(), + ElementCountFeaturizer(), + ElementMassProportionFeaturizer(), + HydrogenAcceptorCountFeaturizer(), + HydrogenDonorCountFeaturizer(), + LipinskiViolationCountFeaturizer(), + ChiralCenterCountFeaturizer(), + ] +) + + +def to_smiles_molecule(smiles: str): + return SMILESMolecule(smiles) + + +def featurize_smiles(smiles: str): + molecule = to_smiles_molecule(smiles) + return FEATURIZER.featurize(molecule) + + +def transform(): + df_1 = pd.read_csv("../solubility_aqsoldb/data_clean.csv") + df_2 = pd.read_csv("../sr_atad5_tox21/data_clean.csv") + + # merge on SMILES, keep where we have SMILES in both datasets + merged = pd.merge(df_1, df_2, on="SMILES", how="inner") + print(len(merged)) + + features = [] + + with concurrent.futures.ProcessPoolExecutor() as executor: + for feature in executor.map(featurize_smiles, merged["SMILES"]): + features.append(feature) + + feature_names = FEATURIZER.feature_labels() + print(feature_names) + features = np.concatenate(features) + print(features.shape) + # add features to dataframe + for i, name in enumerate(feature_names): + merged[name] = features[:, i] + merged.dropna( + subset=[ + "SMILES", + ] + + FEATURIZER.feature_names() + + ["aqeuous_solubility", "toxicity_SR-ATAD5"], + inplace=True, + ) + print(len(merged)) + merged.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform() diff --git a/data/tabular/inverse_3/meta.yaml b/data/tabular/inverse_3/meta.yaml new file mode 100644 index 000000000..e4628e010 --- /dev/null +++ b/data/tabular/inverse_3/meta.yaml @@ -0,0 +1,223 @@ +--- +name: inverse_3 +description: |- + Inverse design task constructed by merging kcnq2_potassium_channel_butkiewicz and + choline_transporter_butkiewicz and augmenting it with molecular descriptors. +targets: + - id: activity_kcnq2_potassium_channel + description: whether it is active against kcnq2 potassium channel receptor (1) or not (0). + units: + type: boolean + names: + - adjective: kcnq2 potassium channel inhibiting + pubchem_aids: + - 2239 + - 2287 + - 2282 + - 2283 + - 2558 + uris: [] + - id: activity_choline_transporter + description: inhibition of choline transporter receptor (1) or not (0). + units: + type: boolean + names: + - adjective: choline transporter activity inhibiting + pubchem_aids: + - 488975 + - 493221 + - 504840 + - 588401 + - 493222 + - 602208 + - id: carboxyl_count + description: number of carboxyl groups + type: ordinal + names: + - noun: carboxyl groups + - id: carbonyl_count + description: number of carbonyl groups + type: ordinal + names: + - noun: carbonyl groups + - id: ether_count + description: number of ether groups + type: ordinal + names: + - noun: ether groups + - id: alkanol_count + description: number of alkanol groups + type: ordinal + names: + - noun: alkanol groups + - id: thiol_count + description: number of thiol groups + type: ordinal + names: + - noun: thiol groups + - id: halogen_count + description: number of halogen groups + type: ordinal + names: + - noun: halogen groups + - id: amine_count + description: number of amine groups + type: ordinal + names: + - noun: amine groups + - id: amide_count + description: number of amide groups + type: ordinal + names: + - noun: amide groups + - id: ketone_count + description: number of ketone groups + type: ordinal + names: + - noun: ketone group count + - id: num_valence_electrons + description: number of valence electrons + type: ordinal + names: + - noun: valence electrons + - id: molecular_formula + description: molecular formula + type: text + names: + - noun: molecular formula + - id: monoisotopic_molecular_mass + description: monoisotopic molecular mass + type: continuous + units: g/mol + names: + - noun: monoisotopic molecular mass + - id: carbon_mass + description: carbon mass + type: continuous + units: g/mol + names: + - noun: carbon mass + - id: hydrogen_mass + description: hydrogen mass + type: continuous + units: g/mol + names: + - noun: hydrogen mass + - id: nitrogen_mass + description: nitrogen mass + type: continuous + units: g/mol + names: + - noun: nitrogen mass + - id: oxygen_mass + description: oxygen mass + units: g/mol + type: continuous + names: + - noun: oxygen mass + - id: num_carbon_atoms + description: number of carbon atoms + type: ordinal + names: + - noun: carbon atoms + - id: num_hydrogen_atoms + type: ordinal + description: number of hydrogen atoms + names: + - noun: hydrogen atoms + - id: num_nitrogen_atoms + description: number of nitrogen atoms + type: ordinal + names: + - noun: nitrogen atoms + - id: num_oxygen_atoms + description: number of oxygen atoms + type: ordinal + names: + - noun: oxygen atoms + - id: num_hydrogen_bond_acceptors + description: number of hydrogen bond acceptors + type: ordinal + names: + - noun: hydrogen bond acceptors + - id: num_hydrogen_bond_donors + description: number of hydrogen bond donors + type: ordinal + names: + - noun: hydrogen bond donors + - id: num_lipinski_violations + description: number of Lipinski violations + type: ordinal + names: + - noun: Lipinski violations + - noun: Lipinski rule of five violations + - id: num_chiral_centers + description: number of chiral centers + type: ordinal + names: + - noun: chiral center count +benchmarks: + - name: TDC + link: https://tdcommons.ai/ + split_column: split +identifiers: + - id: SMILES + type: SMILES + description: SMILES +license: CC BY 4.0 +links: + - url: https://doi.org/10.1038/s41597-019-0151-1 + description: corresponding publication + - url: https://tdcommons.ai/single_pred_tasks/adme/#aqeuous_solubility-aqsoldb + description: data source + - url: https://github.com/lamalab-org/chem-caption + description: software used to generate features +num_points: 2517 +bibtex: + - |- + @article{Sorkun_2019, + doi = {10.1038/s41597-019-0151-1}, + url = {https://doi.org/10.1038%2Fs41597-019-0151-1}, + year = {2019}, + month = aug, + publisher = {Springer Science and Business Media LLC}, + volume = {6}, + number = {1}, + author = {Murat Cihan Sorkun and Abhishek Khetan and + Suleyman Er}, + title = {AqSolDB, a curated reference set of aqueous aqeuous_solubility + and 2D descriptors for a diverse set of compounds}, + journal = {Scientific Data} +templates: + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a specific number of carbon atoms? + Assistant: What is the desired {#count for|number of!} {num_carbon_atoms__names__noun} in the molecule? + User: {#Preferably |!}{num_carbon_atoms#}. + Assistant: For a count of {num_carbon_atoms#} {num_carbon_atoms__names__noun}, a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#} {#would be suitable|would satisfy the constraints!}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a specific number of hydrogen atoms? + Assistant: What is the desired {#count for|number of!} {num_hydrogen_atoms__names__noun} in the molecule? + User: {#Preferably |!}{num_hydrogen_atoms#}. + Assistant: For a count of {num_hydrogen_atoms#} {num_hydrogen_atoms__names__noun}, a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#} {#would be suitable|would satisfy the constraints!}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a specific number of nitrogen atoms and molecular formula? + Assistant: What is the desired {molecular_formula__names__noun}? + User: {#Preferably |!}{molecular_formula#}. + Assistant: {#In this case, |!}I {#recommend|suggest|propose!} a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with {num_chiral_centers__names__noun} and a specific molecular formula? + Assistant: What is the desired {molecular_formula__names__noun}? + User: {#Preferably |Ideally |!}{molecular_formula#}. + Assistant: {#In this case, |!}I {#recommend|suggest|propose!} a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun} and a {molecular_formula__names__noun} of {molecular_formula#}? + Assistant: {#In this case, |!}I {#recommend|suggest|propose!} a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun} and a {molecular_formula__names__noun} of {molecular_formula#}? + Assistant: {#In this case, |!}I {#recommend|suggest|propose!} a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a {num_lipinski_violations#} {num_lipinski_violations__names__noun} and a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}? + Assistant: {#In this case, |!}I {#recommend|suggest|propose!} a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#}. + - |- + User: I {#need|want!} a {#molecule|chemical|drug|chemical structure!} that is {activity_kcnq2_potassium_channel#not &NULL}{activity_kcnq2_potassium_channel__names__adjective} and {activity_choline_transporter#not &NULL}{activity_choline_transporter__names__adjective}. {#Can you|Could you!} suggest something with a {num_carbon_atoms#} {num_carbon_atoms__names__noun}, {num_hydrogen_atoms#} {num_hydrogen_atoms__names__noun} and {num_nitrogen_atoms#} {num_nitrogen_atoms__names__noun}? + Assistant: {#In this case, |!}I {#recommend|suggest|propose!} a {#molecule|chemical|drug|chemical structure!} with {SMILES__description} {SMILES#}. diff --git a/data/tabular/inverse_3/transform.py b/data/tabular/inverse_3/transform.py new file mode 100644 index 000000000..6bfe0dccb --- /dev/null +++ b/data/tabular/inverse_3/transform.py @@ -0,0 +1,99 @@ +import concurrent.futures + +import numpy as np +import pandas as pd +from chemcaption.featurize.adaptor import ValenceElectronCountAdaptor +from chemcaption.featurize.base import MultipleFeaturizer +from chemcaption.featurize.composition import ( + ElementCountFeaturizer, + ElementMassFeaturizer, + ElementMassProportionFeaturizer, + MolecularFormulaFeaturizer, + MonoisotopicMolecularMassFeaturizer, +) +from chemcaption.featurize.electronicity import ( + HydrogenAcceptorCountFeaturizer, + HydrogenDonorCountFeaturizer, +) +from chemcaption.featurize.rules import LipinskiViolationCountFeaturizer +from chemcaption.featurize.stereochemistry import ChiralCenterCountFeaturizer +from chemcaption.featurize.substructure import SMARTSFeaturizer +from chemcaption.molecules import SMILESMolecule +from chemcaption.presets import ORGANIC +from tqdm import tqdm + +ORGANIC = dict(zip(ORGANIC["names"], ORGANIC["smarts"])) + + +def get_smarts_featurizers(): + featurizers = [] + for name, smarts in ORGANIC.items(): + featurizers.append(SMARTSFeaturizer([smarts], names=[name])) + return featurizers + + +FEATURIZER = MultipleFeaturizer( + get_smarts_featurizers() + + [ + ValenceElectronCountAdaptor(), + MolecularFormulaFeaturizer(), + MonoisotopicMolecularMassFeaturizer(), + ElementMassFeaturizer(), + ElementCountFeaturizer(), + ElementMassProportionFeaturizer(), + HydrogenAcceptorCountFeaturizer(), + HydrogenDonorCountFeaturizer(), + LipinskiViolationCountFeaturizer(), + ChiralCenterCountFeaturizer(), + ] +) + + +def to_smiles_molecule(smiles: str): + return SMILESMolecule(smiles) + + +def featurize_smiles(smiles: str): + try: + molecule = to_smiles_molecule(smiles) + return FEATURIZER.featurize(molecule) + except Exception: + return np.array([np.nan] * len(FEATURIZER.feature_labels())).reshape(1, -1) + + +def transform(): + df_1 = pd.read_csv("../choline_transporter_butkiewicz/data_clean.csv") + df_2 = pd.read_csv("../kcnq2_potassium_channel_butkiewicz/data_clean.csv") + + # merge on SMILES, keep where we have SMILES in both datasets + merged = pd.merge(df_1, df_2, on="SMILES", how="inner") + print(len(merged)) + + features = [] + feature_names = FEATURIZER.feature_labels() + + with concurrent.futures.ProcessPoolExecutor() as executor: + for feature in tqdm( + executor.map(featurize_smiles, merged["SMILES"]), total=len(merged) + ): + features.append(feature) + + features = np.concatenate(features) + print(features.shape) + # add features to dataframe + for i, name in enumerate(feature_names): + merged[name] = features[:, i] + merged.dropna( + subset=[ + "SMILES", + ] + + FEATURIZER.feature_names() + + ["activity_choline_transporter", "activity_kcnq2_potassium_channel"], + inplace=True, + ) + print(len(merged)) + merged.to_csv("data_clean.csv", index=False) + + +if __name__ == "__main__": + transform() diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 1f5f442a1..69705f738 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -172,6 +172,9 @@ "uniprot_organisms", "uniprot_reactions", "uniprot_sentences", + "inverse_1", + "inverse_2", + "inverse_3" # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] @@ -334,6 +337,7 @@ def get_target_from_string(meta: dict, string: str) -> str: """Gets a target string from the meta dict based on the variable string. (A variable string is what is between the curly brackets in the text template.)""" keys = string.split("__") + print(keys) def get_with_nested_keys(d: dict, keys: list) -> str: t = d.copy() @@ -1021,7 +1025,7 @@ def apply_sampling_and_export( for path in path_data_dir: # subselect one path - # if not "iupac" in path: + # if not "kcnq2_potassium_channel_butkiewicz" in path: # continue # if path.find("data/tabular/") == -1: continue # if path.find("data/kg/") == -1: continue From 8b6f7771251bd77d8d55ac9854539d4bcc13f559 Mon Sep 17 00:00:00 2001 From: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Date: Sat, 9 Dec 2023 15:48:20 +0100 Subject: [PATCH 53/61] fix: chembl request for fda adverse reactions (#509) --- data/tabular/fda_adverse_reactions/transform.py | 10 +++++----- pyproject.toml | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/data/tabular/fda_adverse_reactions/transform.py b/data/tabular/fda_adverse_reactions/transform.py index e29786e50..41ed9868d 100644 --- a/data/tabular/fda_adverse_reactions/transform.py +++ b/data/tabular/fda_adverse_reactions/transform.py @@ -1,10 +1,11 @@ import concurrent.futures import os -from xml.etree import ElementTree import pandas as pd -import requests import yaml +from chembl_webresource_client.new_client import new_client + +molecule = new_client.molecule DATASET_URL = "ftp://ftp.ebi.ac.uk/pub/databases/opentargets/platform/23.02/output/etl/json/fda/significantAdverseDrugReactions" # noqa DOWNLOAD_FOLDER = "./fda/significantAdverseDrugReactions" @@ -102,9 +103,8 @@ def parallelise_smiles_retrieval(df: pd.DataFrame) -> dict: def get_smiles_from_chembl_id(id: str) -> str: try: - xml_content = requests.get(EBI_URL.format(id)) - xml_tree = ElementTree.fromstring(xml_content.content) - smile = xml_tree[17][0].text + record_via_client = molecule.get(id) + smile = record_via_client["molecule_structures"]["canonical_smiles"] return smile except Exception: print(f"Could not find SMILES for CHEMBL ID {id}.") diff --git a/pyproject.toml b/pyproject.toml index 159503371..c95eda84f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,9 +28,8 @@ dev = [ dataset_creation = [ "PyTDC", - "rdkit-pypi", + "rdkit", "ruamel.yaml", - "modin[all]", "selfies", "deepsmiles", "pubchempy", @@ -41,6 +40,8 @@ dataset_creation = [ # "safe-mol", "backoff", "givemeconformer", + "chembl_webresource_client", + "dask", "pandarallel" ] From 0b7e1f3d6330d8e48ee6fbf56a11f50672fe3776 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:42:31 +0100 Subject: [PATCH 54/61] Recent fixes (#510) * fix: use SMILES__description instead of SMILES__names__noun for mol. repr. sampling * fix: mol_repr_transl/transform.py w/o SMILES with H and with split col only * fix: exclude uniprot binding .. * fix: missing ! and wrong variable name in template * fix: missing ! in templates * fix: and rheadb and sort exclude_from_standard_tabular_text_templates * fix: RedDB templates and fully export to meta.yaml * fix: aminoacids templates var name * fix: polymer_data templates var name * fix: var dtypes * fix: name and id * fix: add rdkit_features to /exclude_from_standard_tabular_text_templates * fix: # missing in template var * fix: # missing in template var 2 * fix: fix dialogue template in compound_protein_compound_* * fix: QC templates 1 * update reddb * update zhu * add description of representation * orexin1_receptor_butkiewicz * smiles__description * molecule with SMILES * fix: QC templates 2 * fix: QC templates 3 * fix: QC templates 3 * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * update fixes --------- Co-authored-by: Kevin Maik Jablonka Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> --- data/kg/compound_protein_compound_1/meta.yaml | 11 +- data/kg/compound_protein_compound_2/meta.yaml | 11 +- data/kg/compound_protein_compound_3/meta.yaml | 11 +- data/kg/compound_protein_go_term_1/meta.yaml | 5 +- data/kg/compound_protein_go_term_2/meta.yaml | 5 +- data/kg/compound_protein_go_term_3/meta.yaml | 5 +- data/kg/compound_protein_go_term_4/meta.yaml | 5 +- data/kg/compound_protein_protein/meta.yaml | 8 +- data/kg/drug_protein_drug/meta.yaml | 2 +- data/kg/drug_protein_hpo_disease/meta.yaml | 4 +- data/tabular/RedDB/meta.yaml | 50 +++--- data/tabular/RedDB/transform.py | 12 +- data/tabular/aminoacids/meta.yaml | 11 +- data/tabular/bc5chem/meta.yaml | 2 +- data/tabular/bicerano_dataset/meta.yaml | 168 ++++++------------ .../block_polymers_morphology/meta.yaml | 4 +- .../meta.yaml | 4 +- .../transform.py | 4 +- data/tabular/chemdner/meta.yaml | 2 +- data/tabular/formation_energies/meta.yaml | 22 +-- data/tabular/freesolv/meta.yaml | 4 +- data/tabular/freesolv/transform.py | 4 +- data/tabular/herg_central_inhib/meta.yaml | 2 +- data/tabular/hiv/meta.yaml | 4 +- data/tabular/inverse_1/meta.yaml | 10 +- data/tabular/inverse_1/transform.py | 46 +++++ data/tabular/inverse_2/meta.yaml | 10 +- data/tabular/inverse_2/transform.py | 46 +++++ data/tabular/inverse_3/meta.yaml | 19 +- data/tabular/inverse_3/transform.py | 96 +++++++++- data/tabular/iupac_smiles/meta.yaml | 14 +- data/tabular/ld50_zhu/meta.yaml | 10 +- .../mattermodeling_stackexchange/meta.yaml | 2 +- data/tabular/melting_points/meta.yaml | 6 +- data/tabular/mol2svg/meta.yaml | 4 +- data/tabular/mol_repr_transl/transform.py | 28 +-- data/tabular/mona/meta.yaml | 5 +- data/tabular/mona/transform.py | 2 +- data/tabular/mp_anisotropy/meta.yaml | 18 +- data/tabular/mp_bulk_modulus/meta.yaml | 18 +- data/tabular/mp_descriptions/meta.yaml | 4 +- data/tabular/mp_self_supervised/meta.yaml | 8 +- .../ord_rxn_smiles_procedure/meta.yaml | 4 +- .../orexin1_receptor_butkiewicz/meta.yaml | 6 +- data/tabular/peptides_soluble/meta.yaml | 8 +- data/tabular/qmof_gcmc/meta.yaml | 6 +- data/tabular/rdkit_features/meta.yaml | 12 +- data/tabular/smiles_to_3d/meta.yaml | 4 +- data/tabular/solubility_aqsoldb/meta.yaml | 4 +- .../uniprot_binding_sites_multiple/meta.yaml | 2 +- data/tabular/uniprot_organisms/meta.yaml | 2 +- data/text_sampling/preprocess_kg.py | 34 ++-- data/text_sampling/text_sampling.py | 90 +++++----- 53 files changed, 511 insertions(+), 367 deletions(-) diff --git a/data/kg/compound_protein_compound_1/meta.yaml b/data/kg/compound_protein_compound_1/meta.yaml index 8e5bb3948..6fc86bdc9 100644 --- a/data/kg/compound_protein_compound_1/meta.yaml +++ b/data/kg/compound_protein_compound_1/meta.yaml @@ -96,10 +96,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}. + - The {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} + {node3_smiles#}. - The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}. - |- - User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. - User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}. + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} with the {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#tell me|create|generate!} {#another|a!} {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the SMILES{# representation|!} {node3_smiles#} {#also |!}{rel1_type#} the {node2_type#} {node2_protein_names#}. diff --git a/data/kg/compound_protein_compound_2/meta.yaml b/data/kg/compound_protein_compound_2/meta.yaml index 4d27e0568..76ede634e 100644 --- a/data/kg/compound_protein_compound_2/meta.yaml +++ b/data/kg/compound_protein_compound_2/meta.yaml @@ -96,10 +96,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}. + - The {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} + {node3_smiles#}. - The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}. - |- - User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. - User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}. + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} with the {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#tell me|create|generate!} {#another|a!} {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the SMILES{# representation|!} {node3_smiles#} {#also |!}{rel1_type#} the {node2_type#} {node2_protein_names#}. diff --git a/data/kg/compound_protein_compound_3/meta.yaml b/data/kg/compound_protein_compound_3/meta.yaml index 52b7eef1c..efaa033e1 100644 --- a/data/kg/compound_protein_compound_3/meta.yaml +++ b/data/kg/compound_protein_compound_3/meta.yaml @@ -96,10 +96,11 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}. + - The {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} + {node3_smiles#}. - The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}. - |- - User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. - User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}. + User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} with the {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. + User: Can you {#tell me|create|generate!} {#another|a!} {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? + Assistant: {#Sure|Yes|Of course|Yes, of course!}, the SMILES{# representation|!} {node3_smiles#} {#also |!}{rel1_type#} the {node2_type#} {node2_protein_names#}. diff --git a/data/kg/compound_protein_go_term_1/meta.yaml b/data/kg/compound_protein_go_term_1/meta.yaml index f24c8ee1c..2ef46971a 100644 --- a/data/kg/compound_protein_go_term_1/meta.yaml +++ b/data/kg/compound_protein_go_term_1/meta.yaml @@ -90,5 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_2/meta.yaml b/data/kg/compound_protein_go_term_2/meta.yaml index 3c022921b..05b8a9754 100644 --- a/data/kg/compound_protein_go_term_2/meta.yaml +++ b/data/kg/compound_protein_go_term_2/meta.yaml @@ -90,5 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_3/meta.yaml b/data/kg/compound_protein_go_term_3/meta.yaml index 587929032..414c2cbf6 100644 --- a/data/kg/compound_protein_go_term_3/meta.yaml +++ b/data/kg/compound_protein_go_term_3/meta.yaml @@ -90,5 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_4/meta.yaml b/data/kg/compound_protein_go_term_4/meta.yaml index e54e737bd..724d8d81b 100644 --- a/data/kg/compound_protein_go_term_4/meta.yaml +++ b/data/kg/compound_protein_go_term_4/meta.yaml @@ -90,5 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_protein/meta.yaml b/data/kg/compound_protein_protein/meta.yaml index 29e5b86dd..ab7011f33 100644 --- a/data/kg/compound_protein_protein/meta.yaml +++ b/data/kg/compound_protein_protein/meta.yaml @@ -96,10 +96,10 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}. - - The {node2_type#} {node2_protein_names#} is targeted by {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}. + - The {node2_type#} {node2_protein_names#} is targeted by {node1_type#} with {SMILES__description} {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. - |- - User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#}? - Assistant: The {node1_type#} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} with {SMILES__description} {SMILES#}? + Assistant: The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a {node3_type#} that {rel2_type#} {node2_type#} {node2_protein_names#}? Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. diff --git a/data/kg/drug_protein_drug/meta.yaml b/data/kg/drug_protein_drug/meta.yaml index 4c9195819..9d6ffe828 100644 --- a/data/kg/drug_protein_drug/meta.yaml +++ b/data/kg/drug_protein_drug/meta.yaml @@ -102,4 +102,4 @@ templates: User: {#Can you give me|Can you come up with!} {#an|one!} example for a {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {rel1_type#} the {node2_type#} {node2_protein_names#}. User: Can you tell me another {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? - Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node3_type#} {node3_name#|node3_smiles#}. + Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node3_type#} {node3_name#|node3_smiles#} also {rel1_type#} the {node2_type#} {node2_protein_names#}. diff --git a/data/kg/drug_protein_hpo_disease/meta.yaml b/data/kg/drug_protein_hpo_disease/meta.yaml index 99ebc2738..f4d1c7558 100644 --- a/data/kg/drug_protein_hpo_disease/meta.yaml +++ b/data/kg/drug_protein_hpo_disease/meta.yaml @@ -114,5 +114,5 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. - The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}. + - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + {rel2_type#} {node3_name#}. The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/tabular/RedDB/meta.yaml b/data/tabular/RedDB/meta.yaml index e92cd460e..91ba5989e 100644 --- a/data/tabular/RedDB/meta.yaml +++ b/data/tabular/RedDB/meta.yaml @@ -11,111 +11,107 @@ description: |- (iii) aqueous solubility prediction using machine learning, (iv) data processing and database creation, have been described. targets: - - id: solubilityAqSolPred - description: Aqueous solubility prediction using machine learning - units: logS - type: continuous - significant_figures: 3 - names: - - noun: ML-predicted aqueous solubility - sample: false - id: molecularSurface description: Total surface area of a molecule units: \AA^2 type: continuous - significant_figures: 3 names: - noun: molecular surface area - id: reactionFieldEnergy description: Energy associated with the interaction during a chemical reaction units: kT type: continuous - significant_figures: 3 + significant_digits: 5 names: - - noun: chemical reaction field energy in aqueous solution modeled with a Poisson-Boltzmann Solvation Model + - noun: chemical reaction field energy - id: solventAccessSurface description: Surface area of a molecule accessible to a solvent units: \AA^2 type: continuous - significant_figures: 3 names: - noun: solvent-accessible surface area - id: cavityEnergy description: Energy associated with the formation of cavities in a molecular structure units: kT type: continuous - significant_figures: 3 names: - noun: cavity formation energy at the PBE level of theory - id: gasEnergy description: Total energy of a molecule in the gas phase units: Hartree + significant_digits: 5 type: continuous - significant_figures: 3 names: - noun: gas-phase molecular energy at the PBE level of theory - id: gasHomo description: Highest Occupied Molecular Orbital (HOMO) energy of a gas-phase molecule - units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: gaseous phase HOMO energy at the PBE level of theory + - noun: gaseous phase highest occupied molecular orbital energy at the PBE level of theory + - noun: gaseous phase highest occupied molecular orbital (HOMO) energy at the PBE level of theory - id: gasLumo description: Lowest Unoccupied Molecular Orbital (LUMO) energy of a gas-phase molecule units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: gaseous phase LUMO energy at the PBE level of theory + - noun: gaseous phase lowest unoccupied molecular orbital energy at the PBE level of theory + - noun: gaseous phase lowest unoccupied molecular orbital energy (LUMO) at the PBE level of theory - id: solutionEnergy description: Total energy of a molecule in a solution units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: aqueous phase molecular energy at the PBE level of theory - id: solutionHomo description: Highest Occupied Molecular Orbital (HOMO) energy in a solution units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: aqueous phase HOMO energy at the PBE level of theory + - noun: aqueous phase energy of the highest occupied molecular orbital at the PBE level of theory + - noun: aqueous phase energy of the highest occupied molecular orbital (HOMO) at the PBE level of theory - id: solutionLumo description: Lowest Unoccupied Molecular Orbital (LUMO) energy in a solution units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: aqueous phase LUMO energy at the PBE level of theory + - noun: aqueous phase energy of the lowest unoccupied molecular orbital at the PBE level of theory + - noun: aqueous phase energy of the lowest unoccupied molecular orbital (LUMO) at the PBE level of theory - id: nuclearRepulsionEnergy description: Electrostatic repulsion energy between atomic nuclei in a molecule units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: nuclear repulsion energy at the PBE level of theory - id: optGasEnergy description: Total energy of an optimized gas-phase molecule units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: optimized gas-phase molecular energy at the PBE level of theory - id: optGasHomo description: Highest Occupied Molecular Orbital (HOMO) energy of an optimized gas-phase molecule units: Hartree type: continuous - significant_figures: 3 + significant_digits: 5 names: - noun: optimized gas-phase HOMO energy at the PBE level of theory - id: optGasLumo description: Lowest Unoccupied Molecular Orbital (LUMO) energy of an optimized gas-phase molecule units: Hartree + significant_digits: 5 type: continuous - significant_figures: 3 names: - noun: optimized gas-phase LUMO energy calculated at the PBE level of theory - noun: optimized gas-phase LUMO energy calculated with DFT at the PBE level of theory @@ -156,7 +152,7 @@ templates: of {gasHomo#} {gasHomo__units}. - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} has a {gasLumo__names__noun} of {gasLumo#} {gasLumo__units}. - - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} has a {solutionEnergy__names__noun} + - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} has an {solutionEnergy__names__noun} of {solutionEnergy#} {solutionEnergy__units}. - The {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} {#representation of |!}{SMILES#} has a {solutionLumo__names__noun} of {solutionLumo#} {solutionLumo__units}. @@ -168,5 +164,5 @@ templates: of {optGasHomo#} {optGasHomo__units}. - |- Task: Please {#give me|create|generate!} a {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} based on the {#text |!}description{# below|!}. - Description: It has an {solutionLumo__names__noun} {solutionLumo#} {solutionLumo__units} and a {solutionHomo__names__noun} of {solutionHomo#} {solutionHomo__units}. - Result: {SMILES#} + Description: It has an {solutionLumo__names__noun} {solutionLumo#} {solutionLumo__units} and an {solutionHomo__names__noun} of {solutionHomo#} {solutionHomo__units}. + Result: {SMILES#} diff --git a/data/tabular/RedDB/transform.py b/data/tabular/RedDB/transform.py index 1d7a6f86b..442422a1b 100644 --- a/data/tabular/RedDB/transform.py +++ b/data/tabular/RedDB/transform.py @@ -243,17 +243,17 @@ def read_dataset(): """The {#molecule|compound|chemical|molecular species|chemical compound!} with the {InChI__description} {#representation of |!}{InChI#} has a {optGasHomo__names__noun} of {optGasHomo#} {optGasHomo__units}.""", # noqa: E501 """The {#molecule|compound|chemical|molecular species|chemical compound!} with the {InChI__description} {#representation of |!}{InChI#} has a {optGasLumo__names__noun} of {optGasLumo#} {optGasLumo__units}.""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} based on the {#text |!}description{# below|!}. - Description: It has an {solubilityAqSolPred__names__noun} {solubilityAqSolPred#} {solubilityAqSolPred__units} and a {cavityEnergy__names__noun} of {cavityEnergy#} {cavityEnergy__units}. +Description: It has an {solubilityAqSolPred__names__noun} {solubilityAqSolPred#} {solubilityAqSolPred__units} and a {cavityEnergy__names__noun} of {cavityEnergy#} {cavityEnergy__units}. Result: {SMILES#}""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule|compound|chemical|molecular species|chemical compound!} with the {InChI__description} based on the {#text |!}description{# below|!}. - Description: It has an {solubilityAqSolPred__names__noun} {solubilityAqSolPred#} {solubilityAqSolPred__units} and a {cavityEnergy__names__noun} of {cavityEnergy#} {cavityEnergy__units}. +Description: It has an {solubilityAqSolPred__names__noun} {solubilityAqSolPred#} {solubilityAqSolPred__units} and a {cavityEnergy__names__noun} of {cavityEnergy#} {cavityEnergy__units}. Result: {InChI#}""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule|compound|chemical|molecular species|chemical compound!} with the {SMILES__description} based on the {#text |!}description{# below|!}. - Description: It has an {solutionLumo__names__noun} {solutionLumo#} {solutionLumo__units} and a {solutionHomo__names__noun} of {solutionHomo#} {solutionHomo__units}. - Result: {SMILES#}""", # noqa: E501 +Description: It has an {solutionLumo__names__noun} {solutionLumo#} {solutionLumo__units} and a {solutionHomo__names__noun} of {solutionHomo#} {solutionHomo__units}. +Result: {SMILES#}""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule|compound|chemical|molecular species|chemical compound!} with the {InChI__description} based on the {#text |!}description{# below|!}. - Description: It has an {solutionLumo__names__noun} {solutionLumo#} {solutionLumo__units} and a {solutionHomo__names__noun} of {solutionHomo#} {solutionHomo__units}. - Result: {InChI#}""", # noqa: E501 +Description: It has an {solutionLumo__names__noun} {solutionLumo#} {solutionLumo__units} and a {solutionHomo__names__noun} of {solutionHomo#} {solutionHomo__units}. +Result: {InChI#}""", # noqa: E501 ], } diff --git a/data/tabular/aminoacids/meta.yaml b/data/tabular/aminoacids/meta.yaml index 9af7d5e18..a44611c2b 100644 --- a/data/tabular/aminoacids/meta.yaml +++ b/data/tabular/aminoacids/meta.yaml @@ -25,16 +25,17 @@ links: description: reference for amino acid type num_points: 20 templates: - - The {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#} has a one-letter code {one_letter_code#} and a - three-letter code {three_letter_code#}. - - The {#essential amino acid|amino acid|amino acid (AA)|AA!} {amino acid_name#} has a one-letter code {one_letter_code#} and a three-letter code {three_letter_code#}. + - The {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#} has the one-letter code {one_letter_code#} and + the three-letter code {three_letter_code#}. + - The {#essential amino acid|amino acid|amino acid (AA)|AA!} {aminoacid_name#} has the one-letter code {one_letter_code#} and the three-letter code + {three_letter_code#}. - |- Question: What is the one-letter code of the {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#}? Answer: {one_letter_code#}. - |- - Question: What is the one-letter code of the {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#}? + Question: What is the three-letter code of the {#essential amino acid|amino acid|amino acid (AA)|AA!} with the {SMILES__description} {SMILES#}? Answer: {three_letter_code#}. - |- Question: What is the type of the amino acid with the one-letter code {one_letter_code#} and {SMILES__description} {SMILES#}? - Constraint: The possible types are: polar, non-polar, positively charged, negatively charged + Constraint: The possible types are: polar, non-polar, positively charged, negatively charged. Answer: From the provided amino acid types (polar, non-polar, positively charged, negatively charged), the amino acid with the one-letter code {one_letter_code#} is {type#}. diff --git a/data/tabular/bc5chem/meta.yaml b/data/tabular/bc5chem/meta.yaml index 7e5ac8f91..db7f684dd 100644 --- a/data/tabular/bc5chem/meta.yaml +++ b/data/tabular/bc5chem/meta.yaml @@ -50,6 +50,6 @@ templates: {#Sentence|Description!}: {sentence#} Answer: {matched_words#} - |- - User: Does the following text contain mentions of {#chemicals|chemical compounds|chemical substances!}?{# Can you return matches?| Can you output matches?|Please return matches!} + User: Does the following text contain mentions of {#chemicals|chemical compounds|chemical substances!}?{# Can you return matches?| Can you output matches?| Please return matches.!} {#Text: |!}{sentence#} Assistant: {#I found|There is!} {matched_words#}. diff --git a/data/tabular/bicerano_dataset/meta.yaml b/data/tabular/bicerano_dataset/meta.yaml index 6c634f090..a2988e26d 100644 --- a/data/tabular/bicerano_dataset/meta.yaml +++ b/data/tabular/bicerano_dataset/meta.yaml @@ -1,120 +1,66 @@ --- -name: polymer_data +name: bicerano_dataset description: |- - This paper outlines a MD simulation workflow based on GPU MD simulation and the - refined optimized potentials for liquid simulation (OPLS) OPLS3e force field to - calculate glass transition temperatures (Tgs) of 315 polymers for which Bicerano - reported experimental values. + This paper outlines a MD simulation workflow based on GPU MD simulation and the + refined optimized potentials for liquid simulation (OPLS) OPLS3e force field to + calculate glass transition temperatures (Tgs) of 315 polymers for which Bicerano + reported experimental values. targets: - - id: Tg_exp - description: experimental glass transition temperature - units: K - type: float - names: - - noun: experimental glass transition temperature - uris: - - id: Tg_calc - description: calculated glass transition T - units: K - type: float - names: - - noun: computed glass transition temperature - - id: Tg_calc_std - description: computed standard deviation for Tg - sampled: false - units: K - type: float - names: - - noun: computed standard deviation for glass transition temperature - - id: rho_300K_exp - description: experiment density at 300K - units: g/cm^3 - type: float - names: - - noun: experimental density 300K - - id: rho_300K_calc - description: computed density at 300K - units: g/cm^3 - type: float - names: - - noun: computed polymer density at 300K - - id: glass_CTE_calc - description: computed glass coef of thermal expansion (CTE) at 300K - units: K - type: float - names: - - noun: computed glass coefficient of thermal expansion at 300K - - id: glass_CTE_calc_std - description: computed standard deviation of glass coefficient of thermal expansion (CTE) at 300K - sampled: false - units: K - type: float - names: - - noun: computed standard deviation of glass CTE - - id: rubber_CTE_calc - description: computed rubber CTE at 300K - units: K - type: float - names: - - noun: computed rubber coefficient of thermal expansion (CTE) at 300K - - id: rubber_CTE_calc_std - description: computed standard deviation of rubber CTE at 300K - sampled: false - units: K - type: float - names: - - noun: computed standard deviation of rubber coefficient of thermal expansion (CTE) at 300K + - id: Tg_exp + description: experimental glass transition temperature + units: K + type: float + names: + - noun: experimental glass transition temperature + uris: + - id: Tg_calc + description: calculated glass transition T + units: K + type: float + names: + - noun: computed glass transition temperature + - id: rho_300K_calc + description: computed density at 300K + units: g/cm^3 + type: float + names: + - noun: computed polymer density at 300K identifiers: - - id: PSMILES - type: PSMILES - description: PSMILES - - id: compound_name - type: Other - names: - - noun: compound name - description: polymer name + - id: PSMILES + type: PSMILES + description: PSMILES + - id: compound_name + type: Other + names: + - noun: compound name + description: polymer name license: CC BY 4.0 links: - - url: https://pubs.acs.org/doi/10.1021/acsapm.0c00524# - description: corresponding publication - - url: - - https://raw.githubusercontent.com/AdrianM0/chemnlp/main/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv - description: data source + - url: https://pubs.acs.org/doi/10.1021/acsapm.0c00524# + description: corresponding publication + - url: + - https://raw.githubusercontent.com/AdrianM0/chemnlp/main/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv + description: data source num_points: 315 bibtex: - - |- - @article{afzal2021, - author = {Afzal, Mohammad Atif Faiz and Browning, Andrea R. and Goldberg, Alexander and Halls, Mathew D. and Gavartin, Jacob L. and Morisato, - Tsuguo and Hughes, Thomas F. and Giesen, David J. and Goose, Joseph E.}, - title = {High-Throughput Molecular Dynamics Simulations and Validation of Thermophysical Properties of Polymers for Various Applications}, - journal = {ACS Applied Polymer Materials}, - volume = {3}, - number = {2}, - pages = {620-630}, - year = {2021}, - doi = {10.1021/acsapm.0c00524}} + - |- + @article{afzal2021, + author = {Afzal, Mohammad Atif Faiz and Browning, Andrea R. and Goldberg, Alexander and Halls, Mathew D. and Gavartin, Jacob L. and Morisato, + Tsuguo and Hughes, Thomas F. and Giesen, David J. and Goose, Joseph E.}, + title = {High-Throughput Molecular Dynamics Simulations and Validation of Thermophysical Properties of Polymers for Various Applications}, + journal = {ACS Applied Polymer Materials}, + volume = {3}, + number = {2}, + pages = {620-630}, + year = {2021}, + doi = {10.1021/acsapm.0c00524}} templates: - - The polymer with the {PSMILES__description} of {PSMILES#} has an experimental glass transition temperature of {Tg_exp#} K. - - The polymer with the {PSMILES__description} of {PSMILES#} has a computed glass transition temperature of {Tg_calc#} K. - - The polymer with the {PSMILES__description} of {PSMILES#} has an experimental density at 300 K of {rho_300K_exp#} g/cc. - - The polymer with the {PSMILES__description} of {PSMILES#} has a computed density at 300 K of {rho_300K_calc#} g/cc. - - The polymer with the {PSMILES__description} of {PSMILES#} has a computed glass coefficient of thermal expansion (CTE) at 300 K of {glass_CTE_calc#} - 1/K. - - The polymer with the {PSMILES__description} of {PSMILES#} has a computed rubber coefficient of thermal expansion (CTE) at 300 K of {rubber_CTE_calc#} - 1/K. - - The polymer with the {compound_name__id} of {compound_name#} has an experimental glass transition temperature of {Tg_exp#} K. - - The polymer with the {compound_name__id} of {compound_name#} has a computed glass transition temperature of {Tg_calc#} K. - - The polymer with the {compound_name__id} of {compound_name#} has an experimental density at 300 K of {rho_300K_exp#} g/cc. - - The polymer with the {compound_name__id} of {compound_name#} has a computed density at 300 K of {rho_300K_calc#} g/cc. - - The polymer with the {compound_name__id} of {compound_name#} has a computed glass coefficient of thermal expansion (CTE) at 300 K of {glass_CTE_calc#} - 1/K. - - The polymer with the {compound_name__id} of {compound_name#} has a computed rubber coefficient of thermal expansion (CTE) at 300 K of {rubber_CTE_calc#} - 1/K. - - 'Question: What is a polymer with an experimental glass transition temperature of {Tg_exp#} K and experimental density at 300 K of {rho_300K_exp#} - g/cc. Answer: A polymer with {PSMILES__description} {PSMILES#}' - - 'Question: What is a polymer with a computed glass coefficient of thermal expansion (CTE) at 300 K of {glass_CTE_calc#} and a computed rubber coefficient - of thermal expansion (CTE) at 300 K of {rubber_CTE_calc#} 1/K. Answer: A polymer with {PSMILES__description} {PSMILES#}' - - 'Question: What is a polymer with a computed glass transition temperature of {Tg_calc#} K and a computed density at 300 K of {rho_300K_calc#} g/cc. - Answer: A polymer with {PSMILES__description} {PSMILES#}' - - 'Question: What is a polymer with a computed glass transition temperature of {Tg_calc#} K and a computed glass coefficient of thermal expansion (CTE) - at 300 K of {glass_CTE_calc#} 1/K. Answer: A polymer with {PSMILES__description} {PSMILES#}' + - The polymer with the {PSMILES__description} of {PSMILES#} has an experimental glass transition temperature of {Tg_exp#} K. + - The polymer with the {PSMILES__description} of {PSMILES#} has a computed glass transition temperature of {Tg_calc#} K. + - The polymer with the {PSMILES__description} of {PSMILES#} has a computed density at 300 K of {rho_300K_calc#} g/cc. + - The polymer with the {compound_name__names__noun} of {compound_name#} has an experimental glass transition temperature of {Tg_exp#} K. + - The polymer with the {compound_name__names__noun} of {compound_name#} has a computed glass transition temperature of {Tg_calc#} K. + - The polymer with the {compound_name__names__noun} of {compound_name#} has a computed density at 300 K of {rho_300K_calc#} g/cc. + - |- + Question: What is a polymer with a computed glass transition temperature of {Tg_calc#} K and a computed density at 300 K of {rho_300K_calc#} g/cc. + Answer: A polymer with {PSMILES__description} {PSMILES#} diff --git a/data/tabular/block_polymers_morphology/meta.yaml b/data/tabular/block_polymers_morphology/meta.yaml index 217f624d2..874438bde 100644 --- a/data/tabular/block_polymers_morphology/meta.yaml +++ b/data/tabular/block_polymers_morphology/meta.yaml @@ -58,11 +58,11 @@ templates: Answer: The polymer will be in the {phase1#} phase. - |- User: I want to design a {#polymer|di-block copolymer|copolymer!} with a particular {Mn__names__noun}, {f1__names__noun}, and {phase1__names__noun}. - Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {Mn__names__noun}, {f1__names__noun}, and {phase1__names__noun} of the polymer you want to design. + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, !}I would need to know the {Mn__names__noun}, {f1__names__noun}, and {phase1__names__noun} of the polymer you want to design. User: The {Mn__names__noun} should be {Mn#} {Mn__units}, the {f1__names__noun} should be {f1#}, and the {phase1__names__noun} should be {phase1#}. Assistant: I {#recommend|suggest|propose|advise!} the {#polymer|di-block copolymer|copolymer!} with BigSMILES {BigSMILES#}{Mw#}{D#}. - |- User: I want to design a {#polymer|di-block copolymer|copolymer!} that is in the {phase1#} phase. - Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}{#Do you have any other constraints?|Do you have other requirements?|What else should I take into account?!} + Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, !}{#do you have any other constraints?|do you have other requirements?|what else should I take into account?!} User: The {Mn__names__noun} should be {Mn#} {Mn__units}, the {f1__names__noun} should be {f1#}. Assistant: I {#recommend|suggest|propose|advise!} the {#polymer|di-block copolymer|copolymer!} with BigSMILES {BigSMILES#}{Mw#}{D#}. diff --git a/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml b/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml index bf9416487..ef347779a 100644 --- a/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml +++ b/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml @@ -93,7 +93,7 @@ templates: Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}. - |- - Task: Please {#give me|create|generate!} a molecule {SMILES__description} based on the {#text |!}description{# below|!}. + Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical compound!} based on the {#text |!}description{# below|!}. Description: A molecule that is {penetrate_BBB__names__adjective}. Result: {SMILES#} - |- @@ -109,7 +109,7 @@ templates: User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}? Assistant: This is a molecule that is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}: {SMILES#} - |- - User: I want to {#come up with|create|generate!} a molecule {SMILES__description}. + User: I want to {#come up with|create|generate!} the {SMILES__description} of a {#molecule|chemical!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule should {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}. Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}: {SMILES#} diff --git a/data/tabular/blood_brain_barrier_martins_et_al/transform.py b/data/tabular/blood_brain_barrier_martins_et_al/transform.py index 082aa6d33..d25bc7db5 100644 --- a/data/tabular/blood_brain_barrier_martins_et_al/transform.py +++ b/data/tabular/blood_brain_barrier_martins_et_al/transform.py @@ -157,7 +157,7 @@ def get_and_transform_data(): {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}.""", # noqa: E501 - """Task: Please {#give me|create|generate!} a molecule {SMILES__description} based on the {#text |!}description{# below|!}. + """Task: Please {#give me|create|generate!} the {SMILES__description} of {#molecule|chemical|chemical structure!} based on the {#text |!}description{# below|!}. Description: A molecule that is {penetrate_BBB__names__adjective}. Result: {SMILES#}""", # noqa: E501 # Conversational text templates @@ -169,7 +169,7 @@ def get_and_transform_data(): Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, here you go: {SMILES#}""", # noqa: E501 """User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}? Assistant: This is a molecule that is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}: {SMILES#}""", # noqa: E501 - """User: I want to {#come up with|create|generate!} a molecule {SMILES__description}. + """User: I want to {#come up with|create|generate!} the {SMILES__description} of a molecule. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule should {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}. Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}: {SMILES#}""", # noqa: E501 diff --git a/data/tabular/chemdner/meta.yaml b/data/tabular/chemdner/meta.yaml index cea39af6c..4a207ba67 100644 --- a/data/tabular/chemdner/meta.yaml +++ b/data/tabular/chemdner/meta.yaml @@ -92,6 +92,6 @@ templates: {#Sentence|Description!}: {sentence#} Answer: {matched_words#} - |- - User: Does the following text contain mentions of {#chemicals|chemical compounds|chemical substances!}?{# Can you return matches?| Can you output matches?|Please return matches!} + User: Does the following text contain mentions of {#chemicals|chemical compounds|chemical substances!}? {#Can you return matches?|Can you output matches?|Please return matches.!} {#Text: |!}{sentence#} Assistant: {#I found|There is!} {matched_words#}. diff --git a/data/tabular/formation_energies/meta.yaml b/data/tabular/formation_energies/meta.yaml index 47c47d2b7..ce2b19ef9 100644 --- a/data/tabular/formation_energies/meta.yaml +++ b/data/tabular/formation_energies/meta.yaml @@ -64,22 +64,22 @@ templates: Assistant: {#Sure.|How can I help?|How can I be of help?|How can I assist?|Happy to help.!} {#What is your question?|What do you want to know?|!} User: {composition#} is {stability#not &NULL}thermodynamically stable because its decomposition enthalpy is {Ed#} {Ed__units}. - |- - User: I want to design a stability#not &NULL}thermodynamically stable {#material|structure|compound|!} What {#chemical formula|composition!} should I use? - Assistant: {#I recommend using |I suggest using |I would use |I would recommend using!}{composition#}. + User: I want to design a {stability#not &NULL}thermodynamically stable {#material|structure|compound!} What {#chemical formula|composition!} should I use? + Assistant: {#I recommend using |I suggest using |I would use |I would recommend using !}{composition#}. - |- - User: I want to design a {#material|structure|compound|!} that is {stability#not &NULL}thermodynamically stable. What {#chemical formula|composition!} should I use? - Assistant: {#Do you have|Are there!} any other {#requirements|constraints|preferences|!}? - User: The {#material|structure|compound|!} should have a decomposition enthalpy of {Ed#} {Ed__units}. - Assistant: {#I recommend using |I suggest using |I would use |I would recommend using!}{composition#}. + User: I want to design a {#material|structure|compound!} that is {stability#not &NULL}thermodynamically stable. What {#chemical formula|composition!} should I use? + Assistant: {#Do you have|Are there!} any other {#requirements|constraints|preferences!}? + User: The {#material|structure|compound!} should have a decomposition enthalpy of {Ed#} {Ed__units}. + Assistant: {#I recommend using |I suggest using |I would use |I would recommend using !}{composition#}. - |- - User: I want to design a {#material|structure|compound|!} that is {stability#not &NULL}thermodynamically stable. What {#chemical formula|composition!} should I use? - Assistant: {#Do you have|Are there!} any other {#requirements|constraints|preferences|!}? - User: The {#material|structure|compound|!} should have a formation enthalpy of {Ef#} {Ef__units}. - Assistant: {#I recommend using |I suggest using |I would use |I would recommend using!}{composition#}. + User: I want to design a {#material|structure|compound!} that is {stability#not &NULL}thermodynamically stable. What {#chemical formula|composition!} should I use? + Assistant: {#Do you have|Are there!} any other {#requirements|constraints|preferences!}? + User: The {#material|structure|compound!} should have a formation enthalpy of {Ef#} {Ef__units}. + Assistant: {#I recommend using |I suggest using |I would use |I would recommend using !}{composition#}. - |- Task: Classify the stability of {composition#}. Constraint: Give a reason for your answer. - Answer: {#The material is |The compound is |The crystal is |The solid is |!}{stability#not &NULL}thermodynamically stable because its decomposition enthalpy is {Ed#} {Ed__units}. + Answer: {#The material is |The compound is |The crystal is |The solid is !}{stability#not &NULL}thermodynamically stable because its decomposition enthalpy is {Ed#} {Ed__units}. - |- Question: What is a compound with the following decomposition reaction? Description: {rxn#} diff --git a/data/tabular/freesolv/meta.yaml b/data/tabular/freesolv/meta.yaml index ef8a321ef..2cb60ca9c 100644 --- a/data/tabular/freesolv/meta.yaml +++ b/data/tabular/freesolv/meta.yaml @@ -90,7 +90,7 @@ templates: \ {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {GAFF__names__noun} of {GAFF#} {GAFF__units}: {SMILES#}" - The {exp_value__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} - The {exp_value__names__noun} of the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} - - The {exp_value__names__noun} of the molecule {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} + - The {exp_value__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} - "Task: Please predict a molecule feature based on the description.\nDescription: Predict the {exp_value__names__noun} in {exp_value__units} of a molecule.\n\ {#Molecule |!}{SMILES__description}: {SMILES#}\nConstraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {exp_value__units}\ \ without using any {#other|additional!} words.\nResult: {exp_value#} {exp_value__units}" @@ -98,7 +98,7 @@ templates: \ that has {exp_value__names__noun} of {exp_value#} {exp_value__units}.\nResult: {SMILES#}" - The {GAFF__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} - The {GAFF__names__noun} of the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} - - The {GAFF__names__noun} of the molecule {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} + - The {GAFF__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} - "Task: Please predict a molecule feature based on the description.\nDescription: Predict the {GAFF__names__noun} in {GAFF__units} of a molecule.\n\ {#Molecule |!}{SMILES__description}: {SMILES#}\nConstraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {GAFF__units}\ \ without using any {#other|additional!} words.\nResult: {GAFF#} {GAFF__units}" diff --git a/data/tabular/freesolv/transform.py b/data/tabular/freesolv/transform.py index 5eddb9927..f5abbde3e 100644 --- a/data/tabular/freesolv/transform.py +++ b/data/tabular/freesolv/transform.py @@ -195,7 +195,7 @@ def get_and_transform_data(): # Benchmarking text templates "The {exp_value__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 "The {exp_value__names__noun} of the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 - "The {exp_value__names__noun} of the molecule {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 + "The {exp_value__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {exp_value__names__noun} in {exp_value__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} @@ -207,7 +207,7 @@ def get_and_transform_data(): # GAFF "The {GAFF__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 "The {GAFF__names__noun} of the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 - "The {GAFF__names__noun} of the molecule {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 + "The {GAFF__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {GAFF__names__noun} in {GAFF__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} diff --git a/data/tabular/herg_central_inhib/meta.yaml b/data/tabular/herg_central_inhib/meta.yaml index f21f4704d..d3be6920d 100644 --- a/data/tabular/herg_central_inhib/meta.yaml +++ b/data/tabular/herg_central_inhib/meta.yaml @@ -74,7 +74,7 @@ templates: Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, here you go: {SMILES#} - |- User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that does {herg_inhib#not &NULL}{herg_inhib__names__verb}? - #Assistant: This is a molecule that is {herg_inhib#not &NULL}a {herg_inhib__names__noun}: {SMILES#} + Assistant: This is a molecule that is {herg_inhib#not &NULL}a {herg_inhib__names__noun}: {SMILES#} - |- User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? diff --git a/data/tabular/hiv/meta.yaml b/data/tabular/hiv/meta.yaml index 0a726d55b..304f3380a 100644 --- a/data/tabular/hiv/meta.yaml +++ b/data/tabular/hiv/meta.yaml @@ -68,10 +68,10 @@ templates: Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {activity_HIV__names__adjective}? - Assistant: {activity_HIV#No&Yes}, this molecule is {activity_HIV#not &NULL}{activity_HIV__names__adjective}. + Assistant: Yes, this molecule is {activity_HIV#not &NULL}{activity_HIV__names__adjective}. - |- User: Is the molecule with the {SMILES__description} {SMILES#} {activity_HIV__names__adjective}? - Assistant: {activity_HIV#No&Yes}, it is {activity_HIV#not &NULL}{activity_HIV__names__adjective}. + Assistant: Yes, it is {activity_HIV#not &NULL}{activity_HIV__names__adjective}. - |- User: Can you {#give me|create|generate!} the {SMILES__description} of a molecule that is {activity_HIV#not &NULL}{activity_HIV__names__adjective}? Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, here you go: {SMILES#} diff --git a/data/tabular/inverse_1/meta.yaml b/data/tabular/inverse_1/meta.yaml index 2f949af0d..44014874d 100644 --- a/data/tabular/inverse_1/meta.yaml +++ b/data/tabular/inverse_1/meta.yaml @@ -190,19 +190,19 @@ bibtex: journal = {Scientific Data} templates: - |- - User: {#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. + User: {#I want to|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. Assistant: {#There might be multiple compounds that match these criteria. Do you have additional constraints?|Do you have additional constraints?|Is there anything else I should consider?|Is there anything else I should know?!} - User: {#No|No, there are no additional constraints.|No, there are no other constraints.|No, there are no other criteria.|No, there are no other requirements.|No, there are none.!} + User: {#No|No, there are no additional constraints.|No, there are no other constraints.|No, there are no other criteria.|No, there are no other requirements.!} Assistant: {#In this case, |OK, |Alright, |Understood, |Got it, |I see, !}the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should|will|is expected to!} fit your criteria. - |- - User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun}. + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want to|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun}. Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} - |- - User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} and has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#} {carbon_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun} and {ether_count#} {ether_count__names__noun} as well as {alkanol_count#} {alkanol_count__names__noun} and {thiol_count#} {thiol_count__names__noun}. + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want to|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} and has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#} {carbon_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun} and {ether_count#} {ether_count__names__noun} as well as {alkanol_count#} {alkanol_count__names__noun} and {thiol_count#} {thiol_count__names__noun}. Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} - |- User: {#I am researching|I am investigating|I am studying!} {#pharmaceuticals|medicinal compounds|drug molecules!} and {#need|require|am looking for!} a {#molecule|compound|chemical structure!} with a {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. It should also be {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective}. {#Additionally,|Moreover,|Furthermore,!} it {#must|should|needs to!} have {amine_count#} {amine_count__names__noun}. - Assistant: {#To meet these requirements, |Considering your specifications, |Taking into account your needs, !} I {#recommend|suggest|propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}. {#This should match your criteria.|This fits your described parameters.|This aligns with your requirements.!} + Assistant: {#To meet these requirements, |Considering your specifications, |Taking into account your needs, !}I {#recommend|suggest|propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}. {#This should match your criteria.|This fits your described parameters.|This aligns with your requirements.!} - |- User: {#As a chemist|Being a chemical researcher,|In my chemical research,!} I {#am looking for|require|need!} a {#molecule|compound|chemical structure!} with {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun} and {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun}. It {#also needs|should also!} to be {toxicity_NR-AR#not &NULL}{toxicity_NR-AR__names__adjective} and have a {oxygen_mass__names__noun} of {oxygen_mass#} {oxygen_mass__units}. Assistant: {#I've got the ideal compound for you.|I have a compound that fits these specifications.|I suggest a molecule that meets your needs.!} The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should work perfectly.|is exactly what you're looking for.|matches your requirements.!} diff --git a/data/tabular/inverse_1/transform.py b/data/tabular/inverse_1/transform.py index 2d05233a5..d1ed91b31 100644 --- a/data/tabular/inverse_1/transform.py +++ b/data/tabular/inverse_1/transform.py @@ -86,7 +86,53 @@ def transform(): + ["aqeuous_solubility", "toxicity_NR-AR"], inplace=True, ) + merged[ + [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ] = merged[ + [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ].astype( + int + ) print(len(merged)) + merged["split"] = merged["split_x"] merged.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/inverse_2/meta.yaml b/data/tabular/inverse_2/meta.yaml index 4ae9505b5..169beaa22 100644 --- a/data/tabular/inverse_2/meta.yaml +++ b/data/tabular/inverse_2/meta.yaml @@ -192,19 +192,19 @@ bibtex: journal = {Scientific Data} templates: - |- - User: {#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. + User: {#I want to|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. Assistant: {#There might be multiple compounds that match these criteria. Do you have additional constraints?|Do you have additional constraints?|Is there anything else I should consider?|Is there anything else I should know?!} - User: {#No|No, there are no additional constraints.|No, there are no other constraints.|No, there are no other criteria.|No, there are no other requirements.|No, there are none.!} + User: {#No|No, there are no additional constraints.|No, there are no other constraints.|No, there are no other criteria.|No, there are no other requirements.!} Assistant: {#In this case, |OK, |Alright, |Understood, |Got it, |I see, !}the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should|will|is expected to!} fit your criteria. - |- - User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun}. + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want to|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units} and is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {monoisotopic_molecular_mass__names__noun} of {monoisotopic_molecular_mass#} {monoisotopic_molecular_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun}. Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} - |- - User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} and has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#} {carbon_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun} and {ether_count#} {ether_count__names__noun} as well as {alkanol_count#} {alkanol_count__names__noun} and {thiol_count#} {thiol_count__names__noun}. + User: {#I am a medicinal chemist. |I work in drug-discovery. |!}{#I want to|I must|I have to|I need to!} {#design|synthesize|create|make|generate!} a {#molecule|compound|chemical structure!} that is {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} and has {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. {#Additionally, |Moreover, |On top of that, |In addition, |Furthermore, !}{#I|we!} {#want|need|require|would like|would prefer!} the {#molecule|compound|chemical structure!} to have a {carbon_mass__names__noun} of {carbon_mass#} {carbon_mass__units}. {#I|We!} {#want|would like to|need to!} ensure that {#there are|the molecule contains|the compound contains!} {carboxyl_count#} {carbonyl_count__names__noun} and {ether_count#} {ether_count__names__noun} as well as {alkanol_count#} {alkanol_count__names__noun} and {thiol_count#} {thiol_count__names__noun}. Assistant: {#Thanks for the detailed description. |Thanks. |!}{#I suggest|I recommend|I propose|I would suggest|I would recommend|I would propose!} the {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}.{# This compound should fulfill your needs.| This chemical should satisfy your constrains|!} - |- User: {#I am researching|I am investigating|I am studying!} {#pharmaceuticals|medicinal compounds|drug molecules!} and {#need|require|am looking for!} a {#molecule|compound|chemical structure!} with a {aqeuous_solubility__names__noun} of {aqeuous_solubility#} {aqeuous_solubility__units}. It should also be {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective}. {#Additionally,|Moreover,|Furthermore,!} it {#must|should|needs to!} have {amine_count#} {amine_count__names__noun}. - Assistant: {#To meet these requirements, |Considering your specifications, |Taking into account your needs, !} I {#recommend|suggest|propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}. {#This should match your criteria.|This fits your described parameters.|This aligns with your requirements.!} + Assistant: {#To meet these requirements, |Considering your specifications, |Taking into account your needs, !}I {#recommend|suggest|propose!} a {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#}. {#This should match your criteria.|This fits your described parameters.|This aligns with your requirements.!} - |- User: {#As a chemist|Being a chemical researcher,|In my chemical research,!} I {#am looking for|require|need!} a {#molecule|compound|chemical structure!} with {num_hydrogen_bond_acceptors#} {num_hydrogen_bond_acceptors__names__noun} and {num_hydrogen_bond_donors#} {num_hydrogen_bond_donors__names__noun}. It {#also needs|should also!} to be {toxicity_SR-ATAD5#not &NULL}{toxicity_SR-ATAD5__names__adjective} and have a {oxygen_mass__names__noun} of {oxygen_mass#} {oxygen_mass__units}. Assistant: {#I've got the ideal compound for you.|I have a compound that fits these specifications.|I suggest a molecule that meets your needs.!} The {#molecule|compound|chemical structure!} with {SMILES__description} {SMILES#} {#should work perfectly.|is exactly what you're looking for.|matches your requirements.!} diff --git a/data/tabular/inverse_2/transform.py b/data/tabular/inverse_2/transform.py index 3988cebab..1799c48b6 100644 --- a/data/tabular/inverse_2/transform.py +++ b/data/tabular/inverse_2/transform.py @@ -86,7 +86,53 @@ def transform(): + ["aqeuous_solubility", "toxicity_SR-ATAD5"], inplace=True, ) + merged[ + [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ] = merged[ + [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ].astype( + int + ) print(len(merged)) + merged["split"] = merged["split_x"] merged.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/inverse_3/meta.yaml b/data/tabular/inverse_3/meta.yaml index e4628e010..9d3d20a5d 100644 --- a/data/tabular/inverse_3/meta.yaml +++ b/data/tabular/inverse_3/meta.yaml @@ -33,11 +33,13 @@ targets: - id: carboxyl_count description: number of carboxyl groups type: ordinal + significant_digits: 0 names: - noun: carboxyl groups - id: carbonyl_count description: number of carbonyl groups type: ordinal + significant_digits: 0 names: - noun: carbonyl groups - id: ether_count @@ -47,36 +49,43 @@ targets: - noun: ether groups - id: alkanol_count description: number of alkanol groups + significant_digits: 0 type: ordinal names: - noun: alkanol groups - id: thiol_count description: number of thiol groups type: ordinal + significant_digits: 0 names: - noun: thiol groups - id: halogen_count description: number of halogen groups type: ordinal + significant_digits: 0 names: - noun: halogen groups - id: amine_count description: number of amine groups type: ordinal + significant_digits: 0 names: - noun: amine groups - id: amide_count description: number of amide groups type: ordinal + significant_digits: 0 names: - noun: amide groups - id: ketone_count description: number of ketone groups + significant_digits: 0 type: ordinal names: - noun: ketone group count - id: num_valence_electrons description: number of valence electrons + significant_digits: 0 type: ordinal names: - noun: valence electrons @@ -118,24 +127,29 @@ targets: - id: num_carbon_atoms description: number of carbon atoms type: ordinal + significant_digits: 0 names: - noun: carbon atoms - id: num_hydrogen_atoms type: ordinal + significant_digits: 0 description: number of hydrogen atoms names: - noun: hydrogen atoms - id: num_nitrogen_atoms + significant_digits: 0 description: number of nitrogen atoms type: ordinal names: - noun: nitrogen atoms - id: num_oxygen_atoms + significant_digits: 0 description: number of oxygen atoms type: ordinal names: - noun: oxygen atoms - id: num_hydrogen_bond_acceptors + significant_digits: 0 description: number of hydrogen bond acceptors type: ordinal names: @@ -143,16 +157,19 @@ targets: - id: num_hydrogen_bond_donors description: number of hydrogen bond donors type: ordinal + significant_digits: 0 names: - noun: hydrogen bond donors - id: num_lipinski_violations description: number of Lipinski violations type: ordinal + significant_digits: 0 names: - noun: Lipinski violations - noun: Lipinski rule of five violations - id: num_chiral_centers description: number of chiral centers + significant_digits: 0 type: ordinal names: - noun: chiral center count @@ -172,7 +189,7 @@ links: description: data source - url: https://github.com/lamalab-org/chem-caption description: software used to generate features -num_points: 2517 +num_points: 299452 bibtex: - |- @article{Sorkun_2019, diff --git a/data/tabular/inverse_3/transform.py b/data/tabular/inverse_3/transform.py index 6bfe0dccb..77ea46f50 100644 --- a/data/tabular/inverse_3/transform.py +++ b/data/tabular/inverse_3/transform.py @@ -47,6 +47,7 @@ def get_smarts_featurizers(): ChiralCenterCountFeaturizer(), ] ) +print(FEATURIZER.feature_labels()) def to_smiles_molecule(smiles: str): @@ -67,7 +68,7 @@ def transform(): # merge on SMILES, keep where we have SMILES in both datasets merged = pd.merge(df_1, df_2, on="SMILES", how="inner") - print(len(merged)) + print(len(merged)) features = [] feature_names = FEATURIZER.feature_labels() @@ -79,10 +80,31 @@ def transform(): features.append(feature) features = np.concatenate(features) - print(features.shape) # add features to dataframe for i, name in enumerate(feature_names): - merged[name] = features[:, i] + if name in [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ]: + merged[name] = features[:, i].astype(float) + else: + merged[name] = features[:, i] merged.dropna( subset=[ "SMILES", @@ -91,7 +113,75 @@ def transform(): + ["activity_choline_transporter", "activity_kcnq2_potassium_channel"], inplace=True, ) + merged = merged.dropna( + subset=[ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ) + merged[ + [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ] = merged[ + [ + "carboxyl_count", + "carbonyl_count", + "ether_count", + "alkanol_count", + "thiol_count", + "halogen_count", + "amine_count", + "amide_count", + "ketone_count", + "num_valence_electrons", + "num_carbon_atoms", + "num_hydrogen_atoms", + "num_nitrogen_atoms", + "num_oxygen_atoms", + "num_hydrogen_bond_acceptors", + "num_hydrogen_bond_donors", + "num_lipinski_violations", + "num_chiral_centers", + ] + ].astype( + int + ) print(len(merged)) + merged["split"] = merged["split_x"] merged.to_csv("data_clean.csv", index=False) diff --git a/data/tabular/iupac_smiles/meta.yaml b/data/tabular/iupac_smiles/meta.yaml index 5ddf51f81..45232751c 100644 --- a/data/tabular/iupac_smiles/meta.yaml +++ b/data/tabular/iupac_smiles/meta.yaml @@ -52,13 +52,13 @@ bibtex: and Zhang, Jian and Bolton, Evan E}, year={2022}, month=oct, pages={D1373–D1380} } templates: - - The {Traditional__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} {SMILES#} is {Traditional#}. - - The {CAS_like_Style__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} {SMILES#} is {CAS_like_Style#}. - - The {Preferred__names__noun} of the {#molecule|chemical|compound!} with {SMILES__names__noun} {SMILES#} is {Preferred#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Traditional__names__noun} {Traditional#} is {SMILES#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Systematic__names__noun} {Systematic#} is {SMILES#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} {CAS_like_Style#} is {SMILES#}. - - The {SMILES__names__noun} of the {#molecule|chemical|compound!} with {Preferred__names__noun} {Preferred#} is {SMILES#}. + - The {Traditional__names__noun} of the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} is {Traditional#}. + - The {CAS_like_Style__names__noun} of the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} is {CAS_like_Style#}. + - The {Preferred__names__noun} of the {#molecule|chemical|compound!} with {SMILES__description} {SMILES#} is {Preferred#}. + - The {SMILES__description} of the {#molecule|chemical|compound!} with {Traditional__names__noun} {Traditional#} is {SMILES#}. + - The {SMILES__description} of the {#molecule|chemical|compound!} with {Systematic__names__noun} {Systematic#} is {SMILES#}. + - The {SMILES__description} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} {CAS_like_Style#} is {SMILES#}. + - The {SMILES__description} of the {#molecule|chemical|compound!} with {Preferred__names__noun} {Preferred#} is {SMILES#}. - |- Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {Traditional__names__noun}. IUPAC name: {Traditional#} diff --git a/data/tabular/ld50_zhu/meta.yaml b/data/tabular/ld50_zhu/meta.yaml index 59795c41c..bf89726c0 100644 --- a/data/tabular/ld50_zhu/meta.yaml +++ b/data/tabular/ld50_zhu/meta.yaml @@ -7,13 +7,13 @@ description: |- targets: - id: acute_toxicity description: Acute Toxicity LD50. - units: log(1/(mol/kg)) + units: log10(1/(mol/kg)) type: continuous names: - - noun: acute toxicity rat LD50 - - noun: acute toxicity (LD50 in rats) - - noun: LD50 in rats - - noun: rat LD50 + - noun: acute oral toxicity rat LD50 + - noun: acute oral toxicity (LD50 in rats) + - noun: LD50 in rats (oral exposure) + - noun: rat LD50 (oral exposure) uris: - http://www.bioassayontology.org/bao#BAO_0002117 identifiers: diff --git a/data/tabular/mattermodeling_stackexchange/meta.yaml b/data/tabular/mattermodeling_stackexchange/meta.yaml index 23cac0b33..308073359 100644 --- a/data/tabular/mattermodeling_stackexchange/meta.yaml +++ b/data/tabular/mattermodeling_stackexchange/meta.yaml @@ -28,4 +28,4 @@ templates: - |- {#Task: Generate a title for this question.|Task: Create a meaningful title for this question.|Task: Summarize the question in a title.!} {#Question: |Inquiry: |\n!}{#q} - {#Assistant: |Title: |Answer: |!}{#title} + {#Assistant: |Title: |Answer: !}{#title} diff --git a/data/tabular/melting_points/meta.yaml b/data/tabular/melting_points/meta.yaml index 8d2bfd30b..dee983d9c 100644 --- a/data/tabular/melting_points/meta.yaml +++ b/data/tabular/melting_points/meta.yaml @@ -13,7 +13,7 @@ targets: - id: mp_range description: melting point range units: deg C - type: continuous + type: text names: - noun: melting point range benchmarks: [] @@ -59,10 +59,10 @@ templates: {#Answer: |A: |!}{#The melting point is |!}{mp#} deg C. - |- {#Question: |Q: !}What is the melting point of {NAME#}? - {#Answer: |A: |!}{#The melting point is in the range|!}{mp_range#} deg C. + {#Answer: |A: |!}{#The melting point is in the range |!}{mp_range#} deg C. - |- {#Question: |Q: !}What is the melting point of a {#molecule|compound!} with the {SMILES__description} {SMILES#}? - {#Answer: |A: |!}{#The melting point is in the range|!}{mp_range#} deg C. + {#Answer: |A: |!}{#The melting point is in the range |!}{mp_range#} deg C. - |- {#Question: |Q: !}What is a compound with a melting point of {mp#} deg C? {#Answer: |A: |!}{NAME#} diff --git a/data/tabular/mol2svg/meta.yaml b/data/tabular/mol2svg/meta.yaml index 840134303..4cb8400a0 100644 --- a/data/tabular/mol2svg/meta.yaml +++ b/data/tabular/mol2svg/meta.yaml @@ -1,5 +1,5 @@ --- -name: chem_caption_smarts +name: mol2svg description: |- This dataset contains SVG images of molecules, including some with substructures highlighted. @@ -11,7 +11,7 @@ identifiers: - id: prompt type: text description: prompt - - id: smiles + - id: SMILES type: SMILES description: SMILES license: CC BY 4.0 diff --git a/data/tabular/mol_repr_transl/transform.py b/data/tabular/mol_repr_transl/transform.py index c89e42bca..cd4d6dbf0 100644 --- a/data/tabular/mol_repr_transl/transform.py +++ b/data/tabular/mol_repr_transl/transform.py @@ -90,16 +90,16 @@ def get_and_transform_data(): path_csv, delimiter=",", ) - df["smiles_with_hydrogens"] = df["smiles"].apply(smiles_with_hydrogens) + # df["SMILES_with_H"] = df["SMILES"].apply(smiles_with_hydrogens) - if "split" in df.columns: - assert df.columns[-1] == "split", "Split column needs to be the last column." - col_len = len(df.columns) - 1 - else: - print( - "CAUTION: No split information found, maybe you need to rerun the train_test_split.py script over extend_tabular_processed.csv?" # noqa: E501 - ) - col_len = len(df.columns) + # if "split" in df.columns: + assert df.columns[-1] == "split", "Split column needs to be the last column." + col_len = len(df.columns) - 1 + # else: + # print( + # "CAUTION: No split information found, maybe you need to rerun the train_test_split.py script over extend_tabular_processed.csv?" # noqa: E501 + # ) + # col_len = len(df.columns) for i in range(col_len): for j in range(i + 1, col_len): @@ -112,13 +112,13 @@ def get_and_transform_data(): # df export col_suffix = "_text" # to exclude from other preprocessing steps - if "split" in df.columns: - df_subset = df[subset_cols + ["split"]].dropna() - else: - df_subset = df[subset_cols].dropna() + # if "split" in df.columns: + df_subset = df[subset_cols + ["split"]].dropna() + # else: + # df_subset = df[subset_cols].dropna() df_subset.columns = [ x + col_suffix if x != "split" else x for x in subset_cols - ] + ] + ["split"] df_subset.to_csv(path_export + "/data_clean.csv", index=False) # meta yaml export diff --git a/data/tabular/mona/meta.yaml b/data/tabular/mona/meta.yaml index d60b290f2..74982c3b3 100644 --- a/data/tabular/mona/meta.yaml +++ b/data/tabular/mona/meta.yaml @@ -22,9 +22,6 @@ identifiers: - id: inchi type: InChI description: InChI - - id: inchikey - type: InChIKey - description: InChIKey - id: id type: Other description: MassBank ID @@ -77,7 +74,7 @@ templates: Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {spectral_entropy__names__noun} of {spectral_entropy#} {spectral_entropy__units}: {SMILES#} - The {spectral_entropy__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} - The {spectral_entropy__names__noun} of the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} - - The {spectral_entropy__names__noun} of the molecule {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} + - The {spectral_entropy__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} - |- Task: Please predict a molecule feature based on the description. Description: Predict the {spectral_entropy__names__noun} in {spectral_entropy__units} of a molecule. diff --git a/data/tabular/mona/transform.py b/data/tabular/mona/transform.py index 71a4df53c..5e69223fb 100644 --- a/data/tabular/mona/transform.py +++ b/data/tabular/mona/transform.py @@ -90,7 +90,7 @@ # Benchmarking text templates "The {spectral_entropy__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 "The {spectral_entropy__names__noun} of the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 - "The {spectral_entropy__names__noun} of the molecule {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 + "The {spectral_entropy__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {spectral_entropy__names__noun} in {spectral_entropy__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} diff --git a/data/tabular/mp_anisotropy/meta.yaml b/data/tabular/mp_anisotropy/meta.yaml index 5c71ec6e7..6920ca79f 100644 --- a/data/tabular/mp_anisotropy/meta.yaml +++ b/data/tabular/mp_anisotropy/meta.yaml @@ -78,17 +78,17 @@ bibtex: journal = {Sci Data} } templates: - - The {elastic_anisotropy__names__noun} of {#the compound|the solid|!} {formula#} is {elastic_anisotropy#}. + - The {elastic_anisotropy__names__noun} of {#the compound|the solid!} {formula#} is {elastic_anisotropy#}. - |- - Question: How large is the {elastic_anisotropy__names__noun} of {#the compound|the solid|!} {formula#}? - Answer: The {elastic_anisotropy__names__noun} of {#the compound|the solid|!} {formula#} is {elastic_anisotropy#}. + Question: How large is the {elastic_anisotropy__names__noun} of {#the compound|the solid!} {formula#}? + Answer: The {elastic_anisotropy__names__noun} of {#the compound|the solid!} {formula#} is {elastic_anisotropy#}. - |- - User: {#I would like to|I want to!} know the {elastic_anisotropy__names__noun} of {#the compound|the solid|!} {formula#}. - Assistant: The {elastic_anisotropy__names__noun} of {#the compound|the solid|!} {formula#} is {elastic_anisotropy#}. + User: {#I would like to|I want to!} know the {elastic_anisotropy__names__noun} of {#the compound|the solid!} {formula#}. + Assistant: The {elastic_anisotropy__names__noun} of {#the compound|the solid!} {formula#} is {elastic_anisotropy#}. - |- - User: {#I would like to|I want to!} design a {#compound|material|solid|!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#}. - Assistant: {#I found|Here is|I have found|Here is!} a {#compound|material|solid|!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#}: {formula#}. - - A {#compound|material|solid|!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#} is {formula#}. + User: {#I would like to|I want to!} design a {#compound|material|solid!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#}. + Assistant: {#I found|Here is|I have found|Here is!} a {#compound|material|solid!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#}: {formula#}. + - A {#compound|material|solid!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#} is {formula#}. - |- - Task: Please {#give me|create|generate!} a {#compound|material|solid|!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#}. + Task: Please {#give me|create|generate!} a {#compound|material|solid!} with a {elastic_anisotropy__names__noun} of {elastic_anisotropy#}. Result: {formula#} diff --git a/data/tabular/mp_bulk_modulus/meta.yaml b/data/tabular/mp_bulk_modulus/meta.yaml index a7ce01aa0..6de8525a0 100644 --- a/data/tabular/mp_bulk_modulus/meta.yaml +++ b/data/tabular/mp_bulk_modulus/meta.yaml @@ -78,17 +78,17 @@ bibtex: journal = {Sci Data} } templates: - - The {bulk_modulus__names__noun} of {#the compound|the solid|!} {formula#} is {bulk_modulus#} {bulk_modulus__units}. + - The {bulk_modulus__names__noun} of {#the compound|the solid!} {formula#} is {bulk_modulus#} {bulk_modulus__units}. - |- - Question: How large is the {bulk_modulus__names__noun} of {#the compound|the solid|!} {formula#}? - Answer: The {bulk_modulus__names__noun} of {#the compound|the solid|!} {formula#} is {bulk_modulus#} {bulk_modulus__units}. + Question: How large is the {bulk_modulus__names__noun} of {#the compound|the solid!} {formula#}? + Answer: The {bulk_modulus__names__noun} of {#the compound|the solid!} {formula#} is {bulk_modulus#} {bulk_modulus__units}. - |- - User: {#I would like to|I want to!} know the {bulk_modulus__names__noun} of {#the compound|the solid|!} {formula#}. - Assistant: The {bulk_modulus__names__noun} of {#the compound|the solid|!} {formula#} is {bulk_modulus#} {bulk_modulus__units}. + User: {#I would like to|I want to!} know the {bulk_modulus__names__noun} of {#the compound|the solid!} {formula#}. + Assistant: The {bulk_modulus__names__noun} of {#the compound|the solid!} {formula#} is {bulk_modulus#} {bulk_modulus__units}. - |- - User: {#I would like to|I want to!} design a {#compound|material|solid|!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units}. - Assistant: {#I found|Here is|I have found|Here is!} a {#compound|material|solid|!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units}: {formula#}. - - A {#compound|material|solid|!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units} is {formula#}. + User: {#I would like to|I want to!} design a {#compound|material|solid!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units}. + Assistant: {#I found|Here is|I have found|Here is!} a {#compound|material|solid!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units}: {formula#}. + - A {#compound|material|solid!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units} is {formula#}. - |- - Task: Please {#give me|create|generate!} a {#compound|material|solid|!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units}. + Task: Please {#give me|create|generate!} a {#compound|material|solid!} with a {bulk_modulus__names__noun} of {bulk_modulus#} {bulk_modulus__units}. Result: {formula#} diff --git a/data/tabular/mp_descriptions/meta.yaml b/data/tabular/mp_descriptions/meta.yaml index 6a88aed46..ffbc3ab65 100644 --- a/data/tabular/mp_descriptions/meta.yaml +++ b/data/tabular/mp_descriptions/meta.yaml @@ -79,11 +79,11 @@ bibtex: } templates: - |- - Task: {Please design|Design!} a {#crystal structure|material|compound|material structure|structure!} based on the {cifstr__names__noun}. + Task: {#Please design|Design!} a {#crystal structure|material|compound|material structure|structure!} based on the {cifstr__names__noun}. CIF: {cifstr#} {#Description|Answer!}: {description#} - |- - Task: {Please design|Design!} a {cifstr__names__noun} that matches the description below. + Task: {#Please design|Design!} a {cifstr__names__noun} that matches the description below. Description: {description#} {#Answer|CIF!}: {cifstr#} - |- diff --git a/data/tabular/mp_self_supervised/meta.yaml b/data/tabular/mp_self_supervised/meta.yaml index e46bbb23c..85a0d9807 100644 --- a/data/tabular/mp_self_supervised/meta.yaml +++ b/data/tabular/mp_self_supervised/meta.yaml @@ -62,16 +62,16 @@ templates: Assistant: I {#recommend|suggest|propose|advise|!} the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}. - |- Question: What is the {density__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? - Answer: {density#} {density__units}. + Answer: {density#} {density__units} - |- Question: What is the {spacegroup__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? - Answer: {spacegroup#}. + Answer: {spacegroup#} - |- Question: What is the {#chemical formula|composition|reduced formula!} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? - Answer: {formula#}. + Answer: {formula#} - |- Question: What is the {spacegroup_number__names__noun} of the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}? - Answer: {spacegroup_number#}. + Answer: {spacegroup_number#} - |- User: I want to design a {#material|compound|solid!} with a {density__names__noun} of {density#} {density__units}, and a {#chemical formula|composition|reduced formula!} of {formula#}. Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I suggest the {#material|compound|solid!} with the {#CIF|CIF file|CIF card!} {cif#}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?|!} diff --git a/data/tabular/ord_rxn_smiles_procedure/meta.yaml b/data/tabular/ord_rxn_smiles_procedure/meta.yaml index dd02c6a9e..09f4780db 100644 --- a/data/tabular/ord_rxn_smiles_procedure/meta.yaml +++ b/data/tabular/ord_rxn_smiles_procedure/meta.yaml @@ -47,7 +47,9 @@ templates: - |- The {RXNSMILES__names__noun} of a reaction with the {procedure__names__noun} below is {RXNSMILES#}. Procedure: {procedure#} - - The {procedure__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is {procedure#} + - |- + The {procedure__names__noun} of a reaction with the {RXNSMILES__names__noun} {RXNSMILES#} is: + {procedure#} - |- User: {#I want|I need|I would like!} to run a reaction with the {RXNSMILES__names__noun} {RXNSMILES#}. Assistant: {#Cool, is|That's interesting, is|Great, is|Is!} there anything else I can do for you? diff --git a/data/tabular/orexin1_receptor_butkiewicz/meta.yaml b/data/tabular/orexin1_receptor_butkiewicz/meta.yaml index 71b8bc1f1..7b3534c21 100644 --- a/data/tabular/orexin1_receptor_butkiewicz/meta.yaml +++ b/data/tabular/orexin1_receptor_butkiewicz/meta.yaml @@ -126,12 +126,12 @@ templates: User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that is {activity_orexin1#not &NULL}{activity_orexin1__names__adjective}? Assistant: This is a molecule that is {activity_orexin1#not &NULL}{activity_orexin1__names__adjective}: {SMILES#} - |- - User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. + User: I want to {#come up with|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical structure!}. Assistant: This sounds {#very exciting. |very interesting. | very curious. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule should {activity_orexin1#not &NULL}be {activity_orexin1__names__adjective}. Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} is {activity_orexin1#not &NULL}{activity_orexin1__names__adjective}: {SMILES#} - |- - User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. + User: I want to {#come up with|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical structure!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should it be a special {#molecule|one!}? User: Yes, the molecule should {activity_orexin1#not &NULL}be {activity_orexin1__names__adjective}. Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} is {activity_orexin1#not &NULL}{activity_orexin1__names__adjective}: {SMILES#} @@ -143,7 +143,7 @@ templates: Constraint: Even if you are {#uncertain|not sure!}, you must pick either "True" or "False" without using any {#other|additional!} words. Result: {activity_orexin1#False&True} - |- - Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. + Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical structure!} based on the {#text |!}description{# below|!}. Description: A molecule that is {activity_orexin1__names__adjective}. Result: {SMILES#} - |- diff --git a/data/tabular/peptides_soluble/meta.yaml b/data/tabular/peptides_soluble/meta.yaml index 759e0b0bd..1f319e7d2 100644 --- a/data/tabular/peptides_soluble/meta.yaml +++ b/data/tabular/peptides_soluble/meta.yaml @@ -58,7 +58,7 @@ templates: - The amino acid sequence {sequence#} {#shows|exhibits|displays!} {soluble#no &NULL}{soluble__names__adjective} properties. - Based on the {sequence__description} {#representation |!}{sequence#}, the peptide has {soluble#no &NULL}{soluble__names__adjective} {#properties|characteristics|features!}. - The {sequence__description} {sequence#} {#represents|is from!} a peptide that is {soluble#not &NULL}identified as {soluble__names__adjective}. - - The {#amino acid sequence |sequence of amino acids (AAs) |AA sequence|peptide with amino acid sequence!} {sequence#} is {soluble#not &NULL}{soluble__names__adjective}. + - The {#amino acid sequence|sequence of amino acids (AAs)|AA sequence|peptide with amino acid sequence!} {sequence#} is {soluble#not &NULL}{soluble__names__adjective}. - |- Task: Please classify a amino acid sequence based on the description. Description: A amino acid sequence that is {soluble__names__adjective}. @@ -88,12 +88,12 @@ templates: User: I'm {#searching|looking!} for the {sequence__description} of a peptide that is {soluble#not &NULL}{soluble__names__adjective}? Assistant: This is a amino acid sequence that is {soluble#not &NULL}{soluble__names__adjective}: {sequence#} - |- - User: I want to {#come up with|create|generate!} a {#amino acid sequence |AA sequence!}. + User: I want to {#come up with|create|generate!} a {#amino acid sequence|AA sequence!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The amino acid sequence should {soluble#not &NULL}be {soluble__names__adjective}. Assistant: {#Ok|Got it!},{# here you go,|!} this {sequence__description} is {soluble#not &NULL}{soluble__names__adjective}: {sequence#} - |- - User: I want to {#come up with|create|generate!} a {#amino acid sequence |sequence|AA sequence!}. + User: I want to {#come up with|create|generate!} a {#amino acid sequence|sequence|AA sequence!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should it be a special {#amino acid sequence|one!}? User: Yes, the amino acid sequence should {soluble#not &NULL}be {soluble__names__adjective}. Assistant: {#Understood|Got it|Ok!}, this {sequence__description} is {soluble#not &NULL}{soluble__names__adjective}: {sequence#} @@ -105,7 +105,7 @@ templates: Constraint: Even if you are {#uncertain|not sure!}, you must pick either "True" or "False" without using any {#other|additional!} words. Result: {soluble#False&True} - |- - Task: Please {#give me|create|generate!} a {#amino acid sequence |sequence|AA sequence!} based on the {#text |!}description{# below|!}. + Task: Please {#give me|create|generate!} a {#amino acid sequence|sequence|AA sequence!} based on the {#text |!}description{# below|!}. Description: A amino acid sequence that is {soluble__names__adjective}. Result: {sequence#} - |- diff --git a/data/tabular/qmof_gcmc/meta.yaml b/data/tabular/qmof_gcmc/meta.yaml index a63cdd68f..5bfa323fb 100644 --- a/data/tabular/qmof_gcmc/meta.yaml +++ b/data/tabular/qmof_gcmc/meta.yaml @@ -429,14 +429,14 @@ templates: User: I {#want|would like|have|need|must!} to {#design|synthesize|find!} a {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with specific gas adsorption properties. Assistant: {#How can I help you?|How can I be of assistance?|What can I do for you?|That's cool, how can I help?|Interesting, can I be of any help?|Seems interesting, how can I support you?!} User: I {#want|would like!} the {outputs.H2S--H2O-selectivity_298_K-__names__noun} to be {outputs.H2S--H2O-selectivity_298_K-#} and the {outputs.CH4--N2-selectivity_298_K-__names__noun} to be {outputs.CH4--N2-selectivity_298_K-#}. - Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend} {info.mofid.mofid#}. + Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend!} {info.mofid.mofid#}. - |- User: I {#want|would like|have|need|must!} to {#design|synthesize|find!} a {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with specific gas adsorption properties. Assistant: {#How can I help you?|How can I be of assistance?|What can I do for you?|That's cool, how can I help?|Interesting, can I be of any help?|Seems interesting, how can I support you?!} User: I {#want|would like!} the {outputs.CH4--N2-selectivity_298_K-__names__noun} to be {outputs.CH4--N2-selectivity_298_K-#}, the {outputs.H2S--H2O-selectivity_298_K-__names__noun} to be {outputs.H2S--H2O-selectivity_298_K-#}, and the {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3__names__noun} to be {outputs.CH4-working_capacity_vol_58_to_65_bar_298_K-cm3_STP--cm3#}. - Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend} {info.mofid.mofid#}. + Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend!} {info.mofid.mofid#}. - |- User: I {#want|would like|have|need|must!} to {#design|synthesize|find!} a {#MOF|metal-organic framework|metal-organic framework (MOF)|reticular material!} with specific gas adsorption properties. Assistant: {#How can I help you?|How can I be of assistance?|What can I do for you?|That's cool, how can I help?|Interesting, can I be of any help?|Seems interesting, how can I support you?!} User: I {#want|would like!} the {outputs.CO2-adsorption_energy-kJ--mol__names__noun} to be {outputs.CO2-adsorption_energy-kJ--mol#}, the {outputs.N2-adsorption_energy-kJ--mol__names__noun} to be {outputs.N2-adsorption_energy-kJ--mol#}, and the {outputs.CH4-adsorption_energy-kJ--mol__names__noun} to be {outputs.CH4-adsorption_energy-kJ--mol#}. - Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend} {info.mofid.mofid#}. + Assistant: {#In this case, I would recommend the following MOF:|I found the following MOF for you:|I suggest|I recommend!} {info.mofid.mofid#}. diff --git a/data/tabular/rdkit_features/meta.yaml b/data/tabular/rdkit_features/meta.yaml index 8524ecc88..74edb9591 100644 --- a/data/tabular/rdkit_features/meta.yaml +++ b/data/tabular/rdkit_features/meta.yaml @@ -106,9 +106,9 @@ templates: - The {MolLogP__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#} is {MolLogP#}. - |- User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {formula__names__noun} of {formula#}. - Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations|!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {NumHDonors__names__noun} to be {NumHDonors#}, the {NumHAcceptors__names__noun} to be {NumHAcceptors#}. - Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise|!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. + Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. - |- Question: What is the {formula__names__noun} of the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}? Answer: {formula#} @@ -141,11 +141,11 @@ templates: Answer: {Apol#} - |- User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {NumHDonors__names__noun} of {NumHDonors#} and a {NumHAcceptors__names__noun} of {NumHAcceptors#}. - Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations|!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {NumHeteroatoms__names__noun} to be {NumHeteroatoms#}. - Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise|!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. + Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. - |- User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {NumHDonors__names__noun} of {NumHDonors#}, a {NumHAcceptors__names__noun} of {NumHAcceptors#} and a {MolLogP__names__noun} of {MolLogP#}. - Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations|!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {formula__names__noun} to be {formula#}. - Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise|!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. + Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. diff --git a/data/tabular/smiles_to_3d/meta.yaml b/data/tabular/smiles_to_3d/meta.yaml index 0289c7c07..45c62bc99 100644 --- a/data/tabular/smiles_to_3d/meta.yaml +++ b/data/tabular/smiles_to_3d/meta.yaml @@ -38,7 +38,7 @@ targets: type: text names: - noun: geometry in V3000 Molfile format (after optimization on B3LYP/6-31G(2df,p) level of theory) - - noun: 3D-structure in V3000 Molfile format format (after optimization on B3LYP/6-31G(2df,p) level of theory) + - noun: 3D-structure in V3000 Molfile format (after optimization on B3LYP/6-31G(2df,p) level of theory) - noun: three-dimensional structure in MOLV3000 Molfile format3000 format (after optimization on B3LYP/6-31G(2df,p) level of theory) - noun: content of a V3000 Molfile format file with the geometry (after optimization on B3LYP/6-31G(2df,p) level of theory) - noun: molecular geometry in V3000 Molfile format (optimized with B3LYP/6-31G(2df,p) level of theory) @@ -99,6 +99,6 @@ templates: User: I need to generate {#conformers|3D geometries|3D structures!} of a {#molecule|compound|chemical!}. Assistant: {#What is|Can you provide!} the {SMILES__description} of the {#molecule|compound|chemical!}? User: {SMILES#} - Assistant: The {xyz__names__noun} of the #molecule|compound|chemical!} is {xyz#}. + Assistant: The {xyz__names__noun} of the {#molecule|compound|chemical!} is {xyz#}. User: {#Can you give me the|What is the|And how about the!} {mol2000__names__noun}? Assistant: The {mol2000__names__noun} of the {#molecule|compound|chemical!} is {mol2000#}. diff --git a/data/tabular/solubility_aqsoldb/meta.yaml b/data/tabular/solubility_aqsoldb/meta.yaml index d1aaf3cf5..70bc45aa0 100644 --- a/data/tabular/solubility_aqsoldb/meta.yaml +++ b/data/tabular/solubility_aqsoldb/meta.yaml @@ -65,5 +65,5 @@ templates: Assistant: {#Cool, |Awesome, |Great, |That sounds interesting, |!}I would need to know the {aqeuous_solubility__names__noun} of the {#compound|drug|chemical|molecule!} you want to {#design|discover|find|identify|!}. User: The {aqeuous_solubility__names__noun} should be {aqeuous_solubility#} {aqeuous_solubility__units}. Assistant: I {#recommend|suggest|propose|advise|!} the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#}. {#Is there anything else I can do for you?|Do you need anything else?|Anything else?|!} - User: {#Yes, |}I would like to know the {common_name__names__noun} of the {#compound|drug|chemical|molecule!}. - Assistant: The {common_name__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#} is {common_name#}. + User: {#Yes, |!}I would like to know the {compound_name__names__noun} of the {#compound|drug|chemical|molecule!}. + Assistant: The {compound_name__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#} is {compound_name#}. diff --git a/data/tabular/uniprot_binding_sites_multiple/meta.yaml b/data/tabular/uniprot_binding_sites_multiple/meta.yaml index 879aa74db..397bfffea 100644 --- a/data/tabular/uniprot_binding_sites_multiple/meta.yaml +++ b/data/tabular/uniprot_binding_sites_multiple/meta.yaml @@ -50,7 +50,7 @@ templates: {SMILES__description}{# representation|!}: {SMILES#} {#Output|Result!}: {start_binding_site#}-{end_binding_site#} - |- - Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position|!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. + Task: {#Create|Design|Come up with!} a {#molecule|chemical|compound!} that binds to the given {#binding site|site|position!} in the {#AA sequence|amino acid sequence|peptide sequence|protein!}. {#AA sequence|Amino acid sequence|Peptide sequence|Protein!}: {sequence#} Binding site{# position|!}: {start_binding_site#}{#-| to !}{end_binding_site#} {#Output|Result!}: {SMILES#} diff --git a/data/tabular/uniprot_organisms/meta.yaml b/data/tabular/uniprot_organisms/meta.yaml index c430df262..69ca63837 100644 --- a/data/tabular/uniprot_organisms/meta.yaml +++ b/data/tabular/uniprot_organisms/meta.yaml @@ -43,5 +43,5 @@ templates: Assistant: The given {#protein|amino acid sequence|AA sequence|polypeptide!} can be found in {organisms#}. - |- Task: {#Predict|Identify!} the organism in which {#the below|this!} {#protein|amino acid sequence|AA sequence|polypeptide!} can be found. - {#Amino acid sequence |Sequence|AA sequence!}: {other#} + {#Amino acid sequence|Sequence|AA sequence!}: {other#} Result: {organisms#} diff --git a/data/text_sampling/preprocess_kg.py b/data/text_sampling/preprocess_kg.py index be154cea0..84adc737b 100644 --- a/data/text_sampling/preprocess_kg.py +++ b/data/text_sampling/preprocess_kg.py @@ -33,20 +33,12 @@ Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}.""", # noqa E501 ], "compound_protein_compound": [ - """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}.""", # noqa E501 + """The {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}.""", # noqa E501 """The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}.""", # noqa E501 - """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. -User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}.""", # noqa E501 - ], - "compound_protein_compound_3": [ - """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}.""", # noqa E501 - """The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}.""", # noqa E501 - """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. -User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}.""", # noqa E501 + """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} with the {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? +Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. +User: Can you {#tell me|create|generate!} {#another|a!} {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? +Assistant: {#Sure|Yes|Of course|Yes, of course!}, the SMILES{# representation|!} {node3_smiles#} {#also |!}{rel1_type#} the {node2_type#} {node2_protein_names#}.""", # noqa E501 ], "compound_protein_disease": [ """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}.""", # noqa E501 @@ -75,8 +67,8 @@ # todo: There are some entries that have the EC number under node3_name and node3_id # and this is not handled yet properly. "compound_protein_go_term": [ - """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}.""", # noqa E501 - """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}.""", # noqa E501 + """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}.""", # noqa E501 + """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}.""", # noqa E501 ], "compound_protein_hpo": [ """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} {node3_name#}.""", # noqa E501 @@ -95,10 +87,10 @@ """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}.""", # noqa E501 ], "compound_protein_protein": [ - """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}.""", # noqa E501 - """The {node2_type#} {node2_protein_names#} is targeted by {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}.""", # noqa E501 - """User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} {SMILES#}? -Assistant: The {node1_type#} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_prote in_names#}.""", # noqa E501 + """The {node2_type#} {node2_protein_names#} is targeted by {node1_type#} with {SMILES__description} {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_typ e#} {node3_protein_names#}.""", # noqa E501 + """User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} with {SMILES__description} {SMILES#}? +Assistant: The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a {node3_type#} that {rel2_type#} {node2_type#} {node2_protein_names#}? Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}.""", # noqa E501 ], @@ -142,7 +134,7 @@ """User: {#Can you give me|Can you come up with!} {#an|one!} example for a {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {rel1_type#} the {node2_type#} {node2_protein_names#}. User: Can you tell me another {node1_type#} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node3_type#} {node3_name#|node3_smiles#}.""", # noqa E501 +Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node3_type#} {node3_name#|node3_smiles#} also {rel1_type#} the {node2_type#} {node2_protein_names#}.""", # noqa E501 ], "drug_protein_ec_number": [ """The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_name#} which {rel2_type#} the {node3_name#} (EC {node3_id#}) reaction.""", # noqa E501 @@ -167,7 +159,7 @@ """The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. This {node2_type#} {rel2_type#} the {node3_name#}.""", # noqa E501 ], "drug_protein_hpo_disease": [ - """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}.""", # noqa E501 + """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}.""", # noqa E501 ], "drug_protein_pathway": [ """The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}.""", # noqa E501 diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 69705f738..0412f3c12 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -69,21 +69,36 @@ exclude_from_standard_tabular_text_templates = [ "BBBP", # because it is boolean target data + "MUV_466", # boolean target data + "MUV_548", # boolean target data + "MUV_600", # boolean target data + "MUV_644", # boolean target data + "MUV_652", # boolean target data + "MUV_689", # boolean target data + "MUV_692", # boolean target data + "MUV_712", # boolean target data + "MUV_713", # boolean target data + "MUV_733", # boolean target data + "MUV_737", # boolean target data + "MUV_810", # boolean target data + "MUV_832", # boolean target data + "MUV_846", # boolean target data + "MUV_852", # boolean target data + "MUV_858", # boolean target data + "MUV_859", # boolean target data "ames_mutagenicity", # because it is boolean target data "bio_ner", "bioavailability_ma_et_al", # because it is boolean target data "blood_brain_barrier_martins_et_al", # because it is boolean target data "carcinogens", # because it is boolean target data - "core_mof_no_topo", - "qmof_gcmc", - "qmof_quantum", "cav3_t-type_calcium_channels_butkiewicz", # because it is boolean target data "chebi_20", # target is text description "chembl_v29", # text only, no SMILES + "chemcaption_fragments", "chemcaption_rdkit", # text only, no SMILES "choline_transporter_butkiewicz", # because it is boolean target data "clintox", # because it is boolean target data - "chemcaption_fragments", + "core_mof_no_topo", "cyp2c9_substrate_carbonmangels", # boolean target data "cyp2d6_substrate_carbonmangels", # boolean target data "cyp3a4_substrate_carbonmangels", # boolean target data @@ -101,9 +116,25 @@ "hiv", # boolean target data "human_intestinal_absorption", # boolean target data "iupac_goldbook", # text only, no SMILES + "iupac_smiles", # translation from IUPAC name to SMILES "kcnq2_potassium_channel_butkiewicz", # boolean target data "m1_muscarinic_receptor_agonists_butkiewicz", # boolean target data "m1_muscarinic_receptor_antagonists_butkiewicz", # boolean target data + "mol_repr_transl_canonical_inchi", + "mol_repr_transl_canonical_iupac_name", + "mol_repr_transl_deepsmiles_canonical", + "mol_repr_transl_deepsmiles_inchi", + "mol_repr_transl_deepsmiles_iupac_name", + "mol_repr_transl_inchi_iupac_name", + "mol_repr_transl_selfies_canonical", + "mol_repr_transl_selfies_deepsmiles", + "mol_repr_transl_selfies_inchi", + "mol_repr_transl_selfies_iupac_name", + "mol_repr_transl_smiles_canonical", + "mol_repr_transl_smiles_deepsmiles", + "mol_repr_transl_smiles_inchi", + "mol_repr_transl_smiles_iupac_name", + "mol_repr_transl_smiles_selfies", "mona", # more than one target "moses", # SMILES only, has no target "nlmchem", # text only, no SMILES @@ -114,64 +145,37 @@ "nr_er_lbd_tox21", # boolean target data "nr_er_tox21", # boolean target data "nr_ppar_gamma_tox21", # boolean target data + "odd_one_out", + "orbnet_denali", # only makes sense for the structure files "orexin1_receptor_butkiewicz", # boolean target data "p_glycoprotein_inhibition_broccatelli_et_al", # boolean target data "pampa_ncats", # boolean target data "peptides_hemolytic", # boolean target data - "peptides_soluble", # boolean target data "peptides_nonfouling", # boolean target data + "peptides_soluble", # boolean target data "potassium_ion_channel_kir2_1_butkiewicz", # boolean target data + "qmof_gcmc", + "qmof_quantum", + "rhea_db_masked", + "rhea_db_predictions", "sarscov2_3clpro_diamond", # boolean target data "sarscov2_vitro_touret", # boolean target data "serine_threonine_kinase_33_butkiewicz", # boolean target data "skin_reaction", # boolean target data + "smiles_to_3d", "sr_are_tox21", # boolean target data "sr_atad5_tox21", # boolean target data "sr_hse_tox21", # boolean target data "sr_mmp_tox21", # boolean target data "sr_p53_tox21", # boolean target data "tyrosyl-dna_phosphodiesterase_butkiewicz", # boolean target data - "zinc", # SMILES only, has no target - "smiles_to_3d", - "MUV_466", # boolean target data - "MUV_548", # boolean target data - "MUV_600", # boolean target data - "MUV_644", # boolean target data - "MUV_652", # boolean target data - "MUV_689", # boolean target data - "MUV_692", # boolean target data - "MUV_712", # boolean target data - "MUV_713", # boolean target data - "MUV_733", # boolean target data - "MUV_737", # boolean target data - "MUV_810", # boolean target data - "MUV_832", # boolean target data - "MUV_846", # boolean target data - "MUV_852", # boolean target data - "MUV_858", # boolean target data - "MUV_859", # boolean target data - "orbnet_denali", # only makes sense for the structure files - "odd_one_out", - "mol_repr_transl_smiles_selfies", - "mol_repr_transl_smiles_deepsmiles", - "mol_repr_transl_smiles_canonical", - "mol_repr_transl_smiles_inchi", - "mol_repr_transl_smiles_iupac_name", - "mol_repr_transl_selfies_deepsmiles", - "mol_repr_transl_selfies_canonical", - "mol_repr_transl_selfies_inchi", - "mol_repr_transl_selfies_iupac_name", - "mol_repr_transl_deepsmiles_canonical", - "mol_repr_transl_deepsmiles_inchi", - "mol_repr_transl_deepsmiles_iupac_name", - "mol_repr_transl_canonical_inchi", - "mol_repr_transl_canonical_iupac_name", - "mol_repr_transl_inchi_iupac_name", - "iupac_smiles", # translation from IUPAC name to SMILES - "uniprot_binding_sites", + "uniprot_binding_single", + "uniprot_binding_sites_multiple", "uniprot_organisms", "uniprot_reactions", "uniprot_sentences", + "zinc", # SMILES only, has no target + "rdkit_features", "inverse_1", "inverse_2", "inverse_3" From b445d1f3651b7eba9b3dc10fab8ae891c8bc5aad Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:43:49 +0100 Subject: [PATCH 55/61] [pre-commit.ci] pre-commit autoupdate (#521) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 23.10.1 → 23.12.1](https://github.com/psf/black/compare/23.10.1...23.12.1) - [github.com/pycqa/isort: 5.12.0 → 5.13.2](https://github.com/pycqa/isort/compare/5.12.0...5.13.2) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 223740c40..dc61d41d3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,7 @@ repos: exclude: ^experiments/configs - repo: https://github.com/psf/black - rev: 23.10.1 + rev: 23.12.1 hooks: - id: black language_version: python3 # Should be a command that runs python3.6+ @@ -35,7 +35,7 @@ repos: - flake8-bugbear==22.7.1 - repo: https://github.com/pycqa/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort args: [--profile, black, --filter-files] diff --git a/pyproject.toml b/pyproject.toml index c95eda84f..d897c28b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dataset_creation = [ # "safe-mol", "backoff", "givemeconformer", - "chembl_webresource_client", + "chembl_webresource_client", "dask", "pandarallel" ] From 768f131dc8198342f6c83e67ba83ec7c04637638 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Thu, 8 Feb 2024 16:51:28 +0100 Subject: [PATCH 56/61] New fixes (#522) * feat: add data/check_pandas.py * add data/check_smiles_split.py * update kg meta.yaml files * add data/natural * add dataset scripts * update data/text_sampling/ * update meta and transform * additional fixes * apply pre-commit hook * sort exclude_from_standard_tabular_text_templates * more fixes (#517) * fix: use SMILES__description instead of SMILES__names__noun for mol. repr. sampling * fix: mol_repr_transl/transform.py w/o SMILES with H and with split col only * fix: exclude uniprot binding .. * fix: missing ! and wrong variable name in template * fix: missing ! in templates * fix: and rheadb and sort exclude_from_standard_tabular_text_templates * fix: RedDB templates and fully export to meta.yaml * fix: aminoacids templates var name * fix: polymer_data templates var name * fix: var dtypes * fix: name and id * fix: add rdkit_features to /exclude_from_standard_tabular_text_templates * fix: # missing in template var * fix: # missing in template var 2 * fix: fix dialogue template in compound_protein_compound_* * fix: QC templates 1 * update reddb * update zhu * add description of representation * orexin1_receptor_butkiewicz * smiles__description * molecule with SMILES * fix: QC templates 2 * fix: QC templates 3 * fix: QC templates 3 * fix: QC templates * fix: QC templates * fix: QC templates * fix: QC templates * add organism * make explicit * add representation name * add representation name * update standard templates * add representation name * add representation names * representation name use * smiles usage * must to * add representation name * Update data/kg/compound_protein_protein/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/freesolv/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/freesolv/transform.py Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/freesolv/transform.py Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/tabular/sr_p53_tox21/meta.yaml Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * Update data/kg/compound_protein_protein/meta.yaml * Update data/kg/compound_protein_protein/meta.yaml * Update data/kg/compound_protein_protein/meta.yaml * Update data/tabular/freesolv/meta.yaml * Update data/tabular/sr_p53_tox21/meta.yaml * Update data/kg/compound_protein_compound_1/meta.yaml * Update data/kg/compound_protein_compound_1/meta.yaml * Update data/kg/compound_protein_compound_1/meta.yaml * Update data/kg/compound_protein_compound_1/meta.yaml * Update data/kg/compound_protein_compound_1/meta.yaml * Update data/kg/compound_protein_compound_3/meta.yaml * Update data/kg/compound_protein_compound_3/meta.yaml * Update data/kg/compound_protein_compound_3/meta.yaml * Update data/kg/compound_protein_compound_3/meta.yaml * Update data/kg/compound_protein_compound_3/meta.yaml * Update data/kg/compound_protein_go_term_1/meta.yaml * Update data/kg/compound_protein_go_term_1/meta.yaml * Update data/kg/compound_protein_go_term_2/meta.yaml * Update data/kg/compound_protein_go_term_2/meta.yaml * Update data/kg/compound_protein_go_term_3/meta.yaml * Update data/kg/compound_protein_go_term_3/meta.yaml * Update data/kg/compound_protein_go_term_4/meta.yaml * Update data/kg/compound_protein_go_term_4/meta.yaml * Update data/kg/compound_protein_pathway_disease_2/meta.yaml * Update data/kg/drug_protein_hpo_disease/meta.yaml * Update data/tabular/chemcaption_rdkit/meta.yaml * Update data/tabular/mona/meta.yaml * Update data/tabular/mona/transform.py --------- Co-authored-by: Michael Pieler Co-authored-by: Kevin Maik Jablonka Co-authored-by: Michael Pieler <36303596+MicPie@users.noreply.github.com> * additional fixes * Update data/check_pandas.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * Update data/check_pandas.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * Update data/check_smiles_split.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * Update data/natural/preprocess_europepmc.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * Update data/natural/preprocess_msds.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * Update data/natural/preprocess_nougat.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * Update data/postprocess_split.py Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> * additional fixes 2 * additional fixes 3 * additional fixes 4 * additional fixes 5 * additional fixes 6 * additional fixes 7 * additional fixes 8 * remove linebreak * remove linebreak * Delete data/tabular/bicerano_dataset/meta.yaml those changes are incorrect, the CTE and density are not there for all polymers * feat: update yamls * Update data/text_sampling/preprocess_kg.py * Update data/text_sampling/preprocess_kg.py * Update data/text_sampling/preprocess_kg.py --------- Co-authored-by: Kevin M Jablonka <32935233+kjappelbaum@users.noreply.github.com> Co-authored-by: Kevin Maik Jablonka --- data/check_pandas.py | 145 +++ data/check_smiles_split.py | 282 ++++++ data/kg/compound_protein_go_term_1/meta.yaml | 4 +- data/kg/compound_protein_go_term_2/meta.yaml | 4 +- data/kg/compound_protein_go_term_3/meta.yaml | 4 +- data/kg/compound_protein_go_term_4/meta.yaml | 4 +- .../meta.yaml | 4 +- data/kg/compound_protein_protein/meta.yaml | 11 +- data/kg/drug_chebi_chebi_chebi/meta.yaml | 110 ++ data/kg/drug_protein_hpo_disease/meta.yaml | 2 +- data/natural/preprocess_europepmc.py | 124 +++ data/natural/preprocess_msds.py | 48 + data/natural/preprocess_nougat.py | 255 +++++ data/natural/preprocess_nougat.sh | 32 + data/postprocess_split.py | 208 ++++ data/tabular/BACE/meta.yaml | 2 +- data/tabular/BBBP/meta.yaml | 2 +- data/tabular/ames_mutagenicity/meta.yaml | 2 +- data/tabular/ames_mutagenicity/transform.py | 2 +- data/tabular/bicerano_dataset/meta.yaml | 66 -- data/tabular/bio_ner/meta.yaml | 20 +- data/tabular/bio_ner/transform.py | 8 +- .../meta.yaml | 2 +- .../transform.py | 2 +- data/tabular/carcinogens/meta.yaml | 2 +- data/tabular/carcinogens/transform.py | 2 +- .../meta.yaml | 2 +- .../transform.py | 2 +- data/tabular/chebi_20/meta.yaml | 12 +- data/tabular/chebi_20/transform.py | 12 +- data/tabular/chemcaption_rdkit/meta.yaml | 8 +- .../elsevier_oa_cc-by_corpus/meta.yaml | 26 - .../elsevier_oa_cc-by_corpus/transform.py | 194 ---- data/tabular/freesolv/meta.yaml | 4 +- data/tabular/freesolv/transform.py | 4 +- data/tabular/half_life_obach/meta.yaml | 7 +- data/tabular/half_life_obach/transform.py | 6 +- data/tabular/inverse_3/transform.py | 2 +- data/tabular/iupac_smiles/meta.yaml | 6 +- data/tabular/mol_repr_transl/transform.py | 11 +- data/tabular/mona/meta.yaml | 2 +- data/tabular/mona/transform.py | 2 +- .../meta.yaml | 8 +- .../meta.yaml | 52 - .../transform.py | 148 --- data/tabular/rdkit_features/meta.yaml | 2 +- data/tabular/solubility_aqsoldb/meta.yaml | 2 +- data/tabular/solubility_aqsoldb/transform.py | 191 ++-- data/tabular/sr_p53_tox21/meta.yaml | 7 +- data/text_sampling/extend_tabular.py | 100 +- .../text_sampling/extend_tabular_processed.py | 12 +- data/text_sampling/get_dataset_overlap.py | 42 + data/text_sampling/preprocess_kg.py | 39 +- data/text_sampling/text_sampling.py | 282 ++++-- data/train_test_split.py | 955 ++++++++++++++++++ gpt-neox | 1 - 56 files changed, 2684 insertions(+), 804 deletions(-) create mode 100644 data/check_pandas.py create mode 100644 data/check_smiles_split.py create mode 100644 data/kg/drug_chebi_chebi_chebi/meta.yaml create mode 100644 data/natural/preprocess_europepmc.py create mode 100644 data/natural/preprocess_msds.py create mode 100644 data/natural/preprocess_nougat.py create mode 100644 data/natural/preprocess_nougat.sh create mode 100644 data/postprocess_split.py delete mode 100644 data/tabular/bicerano_dataset/meta.yaml delete mode 100644 data/tabular/elsevier_oa_cc-by_corpus/meta.yaml delete mode 100644 data/tabular/elsevier_oa_cc-by_corpus/transform.py delete mode 100644 data/tabular/plasma_protein_binding_rate_astrazeneca/meta.yaml delete mode 100644 data/tabular/plasma_protein_binding_rate_astrazeneca/transform.py create mode 100644 data/text_sampling/get_dataset_overlap.py create mode 100644 data/train_test_split.py delete mode 160000 gpt-neox diff --git a/data/check_pandas.py b/data/check_pandas.py new file mode 100644 index 000000000..4526bc08f --- /dev/null +++ b/data/check_pandas.py @@ -0,0 +1,145 @@ +""" +This check performs a basic check for data leakage. The checks in this script only focus on SMILES. +Train/test split needs to be run before running this script. +This script assumes that `test_smiles.txt` and `val_smiles.txt` exist in the current working directory. + +If leakage is detected, an `AssertionError` will be thrown. + +This script has a command line interface. You can run it using `python check_pandas `, +where `` points to a nested set of directories with `data_clean.csv` files. +""" +import os +from glob import glob +from pathlib import Path + +import fire +import pandas as pd +from pandarallel import pandarallel +from tqdm import tqdm + +pandarallel.initialize(progress_bar=False) + +with open("test_smiles.txt", "r") as f: + test_smiles_ref = f.readlines() + test_smiles_ref = [x.strip() for x in test_smiles_ref] + +with open("val_smiles.txt", "r") as f: + valid_smiles_ref = f.readlines() + valid_smiles_ref = [x.strip() for x in valid_smiles_ref] + + +def leakage_check(file, outdir="out"): + # mirror subdir structures in outdir + if not os.path.exists(outdir): + os.makedirs(outdir) + print(f"Checking {file}") + df = pd.read_csv(file, low_memory=False) + print(df["split"].value_counts()) + train_smiles = df[df["split"] == "train"]["SMILES"].to_list() + train_smiles = set(train_smiles) + test_smiles = df[df["split"] == "test"]["SMILES"].to_list() + test_smiles = set(test_smiles) + valid_smiles = df[df["split"] == "valid"]["SMILES"].to_list() + valid_smiles = set(valid_smiles) + + try: + assert ( + len(train_smiles.intersection(test_smiles)) == 0 + ), "Smiles in train and test" + assert ( + len(train_smiles.intersection(valid_smiles)) == 0 + ), "Smiles in train and valid" + assert ( + len(test_smiles.intersection(valid_smiles)) == 0 + ), "Smiles in test and valid" + except AssertionError as e: + path = os.path.join(outdir, Path(file).parts[-2], Path(file).name) + print(f"Leakage in {file}: {e}. Fixing... {path}") + is_in_test = df["SMILES"].isin(test_smiles) + is_in_val = df["SMILES"].isin(valid_smiles) + + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + os.makedirs(os.path.dirname(path), exist_ok=True) + df.to_csv(path, index=False) + print(f"Saved fixed file to {path}") + print("Checking fixed file...") + leakage_check(path, outdir) + + try: + assert ( + len(train_smiles.intersection(test_smiles_ref)) == 0 + ), "Smiles in train and scaffold test" + + assert ( + len(train_smiles.intersection(valid_smiles_ref)) == 0 + ), "Smiles in train and scaffold valid" + + assert ( + len(test_smiles.intersection(valid_smiles_ref)) == 0 + ), "Smiles in test and scaffold valid" + except AssertionError as e: + path = os.path.join(outdir, Path(file).parts[-2], Path(file).name) + print(f"Leakage in {file}: {e}. Fixing... {path}") + is_in_test = df["SMILES"].isin(test_smiles) + is_in_val = df["SMILES"].isin(valid_smiles) + + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + test_smiles = df[df["split"] == "test"]["SMILES"].to_list() + test_smiles = set(test_smiles) + + valid_smiles = df[df["split"] == "valid"]["SMILES"].to_list() + valid_smiles = set(valid_smiles) + + is_in_test = df["SMILES"].isin(test_smiles) + is_in_val = df["SMILES"].isin(valid_smiles) + + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + path = os.path.join(outdir, Path(file).parts[-2], Path(file).name) + os.makedirs(os.path.dirname(path), exist_ok=True) + df.to_csv(path, index=False) + print(f"Saved fixed file to {path}") + print("Checking fixed file...") + leakage_check(path, outdir) + + print(f"No leakage in {file}") + with open("leakage_check.txt", "a") as f: + f.write(f"No leakage in {file}\n") + f.write(f"train: {len(train_smiles)}\n") + f.write(f"test: {len(test_smiles)}\n") + f.write(f"valid: {len(valid_smiles)}\n") + return True + + +def check_all_files(data_dir): + all_csv_files = glob(os.path.join(data_dir, "**", "**", "data_clean.csv")) + for csv_file in tqdm(all_csv_files): + if Path(csv_file).parts[-2] not in [ + "odd_one_out", + "uniprot_binding_single", + "uniprot_binding_sites_multiple", + "uniprot_organisms", + "uniprot_reactions", + "uniprot_sentences", + "fda_adverse_reactions", + "drugchat_liang_zhang_et_al", + "herg_central", + # those files were checked manually + ]: + # if filesize < 35 GB: + if os.path.getsize(csv_file) < 35 * 1024 * 1024 * 1024: + try: + leakage_check(csv_file) + except Exception as e: + print(f"Could not process {csv_file}: {e}") + else: + print(f"Skipping {csv_file} due to size") + + +if __name__ == "__main__": + fire.Fire(check_all_files) diff --git a/data/check_smiles_split.py b/data/check_smiles_split.py new file mode 100644 index 000000000..df6df7ffe --- /dev/null +++ b/data/check_smiles_split.py @@ -0,0 +1,282 @@ +"""This script checks for data leakage in the splits of a tabular dataset. + +The checks in this script are more general and focus on the `identifier` defined in the `meta.yaml` files. +Errors will be thrown if there are identical identifier values in train/val train/test or val/test sets. + +This script uses dask. This might cause some errors with mismatching data types, +for which there are currently a few fallbacks. +""" +import os +from glob import glob +from pathlib import Path +from typing import List, Literal, Union + +import dask.dataframe as dd +import fire +import pandas as pd +import yaml +from pandas.errors import ParserError + + +def get_all_yamls(data_dir): + """Returns all yaml files in the data directory""" + return sorted(glob(str(Path(data_dir) / "**" / "**" / "*.yaml"))) + + +def get_columns_of_type( + yaml_file: Union[str, Path], + column_type: Literal["SMILES", "AS_SEQUENCE"] = "SMILES", +) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + smiles_columns = [] + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == column_type: + smiles_columns.append(target["id"]) + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == column_type: + smiles_columns.append(identifier["id"]) + + return smiles_columns + + +def get_all_identifier_columns(yaml_file: Union[str, Path]) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + identifier_columns = [] + if "identifiers" in meta: + for identifier in meta["identifiers"]: + identifier_columns.append(identifier["id"]) + + return identifier_columns + + +def check_general_data_leakage( + data_path, +): + """Checks for data leakage in the splits of a tabular dataset. + Only checks for overlaps in identifiers (all identifier columns need + to be the same to count as a data leak). + """ + identifier_columns = get_all_identifier_columns(data_path) + # check if train/valid/test splits have the same identifiers + data_dir = Path(data_path).parent + # table = os.path.join(data_dir, "data_clean.csv") + # data = dd.read_csv(table) + try: + data = dd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + ) + except ParserError: + print( + f"Could not parse {os.path.join(data_dir, 'data_clean.csv')}. Using blocksize=None." + ) + data = dd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + blocksize=None, + ) + except ValueError as e: + if "Mismatched dtypes" in str(e): + print( + f"Could not parse {os.path.join(data_dir, 'data_clean.csv')}. Inferring dtypes via pandas." + ) + chunk = pd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + d = dict(zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values])) + if "iupac_name" in d: + d["iupac_name"] = "object" + print(d) + data = dd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + dtype=d, + assume_missing=True, + ) + + train = data[data["split"] == "train"] + valid = data[data["split"] == "valid"] + test = data[data["split"] == "test"] + + train_valid = dd.merge( + train[identifier_columns], valid[identifier_columns], how="inner" + ).compute() + + train_test = dd.merge( + train[identifier_columns], test[identifier_columns], how="inner" + ).compute() + + valid_test = dd.merge( + valid[identifier_columns], test[identifier_columns], how="inner" + ).compute() + + if not train_valid.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are identifiers that appear in both train and valid splits." + ) + if not train_test.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are identifiers that appear in both train and test splits." + ) + if not valid_test.empty: + raise ValueError( + f"Data leakage detected in {data_path}: There are identifiers that appear in both valid and test splits." + ) + + +def check_data_leakage( + data_path, + test_smiles_path="test_smiles.txt", + val_smiles_path="val_smiles.txt", + test_as_path="test_as.txt", + val_as_path="val_as.txt", + col_type="SMILES", +): + """Checks for data leakage in the splits of a tabular dataset. + This function checks for overlaps between predefined test and validation + SMILES/Amino acid sequences and the splits in the dataset.""" + # Load the data with Dask + data_dir = Path(data_path).parent + # table = os.path.join(data_dir, "data_clean.csv") + # data = dd.read_csv(table) + try: + data = dd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + ) + except ParserError: + print( + f"Could not parse {os.path.join(data_dir, 'data_clean.csv')}. Using blocksize=None." + ) + data = dd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + blocksize=None, + ) + except ValueError as e: + if "Mismatched dtypes" in str(e): + print( + f"Could not parse {os.path.join(data_dir, 'data_clean.csv')}. Inferring dtypes via pandas." + ) + chunk = pd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + d = dict(zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values])) + if "iupac_name" in d: + d["iupac_name"] = "object" + data = dd.read_csv( + os.path.join(data_dir, "data_clean.csv"), + low_memory=False, + dtype=d, + assume_missing=True, + ) + # chunksize = 1_000_000 + # with pd.read_csv(fn, chunksize=chunksize, low_memory=False) as reader: + # for chunk in reader: + # process(fn, chunk, file) + + columns = get_columns_of_type(data_path, col_type) + + if col_type == "SMILES": + # Load predefined SMILES lists + with open(test_smiles_path) as f: + test_smiles_list = f.read().splitlines() + + with open(val_smiles_path) as f: + val_smiles_list = f.read().splitlines() + + elif col_type == "AS_SEQUENCE": + # Load predefined SMILES lists + with open(test_as_path) as f: + test_smiles_list = f.read().splitlines() + + with open(val_as_path) as f: + val_smiles_list = f.read().splitlines() + + # Compute split counts (optional, just to have an overview) + split_counts = data["split"].value_counts().compute() + print("Split counts:") + print(split_counts) + + for col in columns: + # Check that all predefined test SMILES are only in the test set + test_smiles_in_data = data[data[col].isin(test_smiles_list)].compute() + val_smiles_in_data = data[data[col].isin(val_smiles_list)].compute() + print(test_smiles_in_data) + + # Check for overlaps between predefined SMILES and splits + test_in_val_or_train = test_smiles_in_data["split"] != "test" + val_in_test_or_train = val_smiles_in_data["split"] != "valid" + + if test_in_val_or_train.any(): + raise ValueError( + f"Data leakage detected {data_path}: Some test SMILES are in validation or train splits." + ) + if val_in_test_or_train.any(): + raise ValueError( + f"Data leakage detected {data_path}: Some validation SMILES are in test or train splits." + ) + + # Check for overlaps between splits by merging on SMILES and checking for multiple split assignments + merged_splits = dd.merge( + data[data["split"] == "train"][[col]], + data[data["split"] == "valid"][[col]], + on=col, + how="inner", + ) + merged_splits = dd.merge( + merged_splits, + data[data["split"] == "test"][[col]], + on=col, + how="inner", + ).compute() + + if not merged_splits.empty: + with open("data_leakage_detected.txt", "a") as f: + f.write(f"{data_path}\n") + raise ValueError( + f"!!! !!! !!! Data leakage detected in {data_path}: There are SMILES that appear in multiple splits." + ) + + print(f"No data leakage detected in {data_path}.") + + +def run_check(file): + has_as_columns = len(get_columns_of_type(file, "AS_SEQUENCE")) > 0 + has_smiles_columns = len(get_columns_of_type(file, "SMILES")) > 0 + + if has_as_columns: + check_data_leakage(file, col_type="AS_SEQUENCE") + + if has_smiles_columns: + check_data_leakage(file, col_type="SMILES") + + # check_general_data_leakage(file) + + +def check_all_data_leakage(data_dir): + yamls = get_all_yamls(data_dir) + print(f"Checking {len(yamls)} datasets for data leakage.") + for file in yamls: + try: + run_check(file) + except Exception as e: + print(f"Error in {file}: {e}") + with open("data_leakage_errors.txt", "a") as f: + f.write(f"{file} {e}\n") + + +if __name__ == "__main__": + fire.Fire(check_all_data_leakage) diff --git a/data/kg/compound_protein_go_term_1/meta.yaml b/data/kg/compound_protein_go_term_1/meta.yaml index 2ef46971a..e49613b7a 100644 --- a/data/kg/compound_protein_go_term_1/meta.yaml +++ b/data/kg/compound_protein_go_term_1/meta.yaml @@ -90,6 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_2/meta.yaml b/data/kg/compound_protein_go_term_2/meta.yaml index 05b8a9754..75b61831e 100644 --- a/data/kg/compound_protein_go_term_2/meta.yaml +++ b/data/kg/compound_protein_go_term_2/meta.yaml @@ -90,6 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_3/meta.yaml b/data/kg/compound_protein_go_term_3/meta.yaml index 414c2cbf6..ea6bda6fb 100644 --- a/data/kg/compound_protein_go_term_3/meta.yaml +++ b/data/kg/compound_protein_go_term_3/meta.yaml @@ -90,6 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_go_term_4/meta.yaml b/data/kg/compound_protein_go_term_4/meta.yaml index 724d8d81b..bebb00ce5 100644 --- a/data/kg/compound_protein_go_term_4/meta.yaml +++ b/data/kg/compound_protein_go_term_4/meta.yaml @@ -90,6 +90,6 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}. diff --git a/data/kg/compound_protein_pathway_disease_2/meta.yaml b/data/kg/compound_protein_pathway_disease_2/meta.yaml index e458aba48..51c8f8492 100644 --- a/data/kg/compound_protein_pathway_disease_2/meta.yaml +++ b/data/kg/compound_protein_pathway_disease_2/meta.yaml @@ -114,5 +114,5 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. - The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + {rel2_type#} {node3_name#}. The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/kg/compound_protein_protein/meta.yaml b/data/kg/compound_protein_protein/meta.yaml index ab7011f33..53428585a 100644 --- a/data/kg/compound_protein_protein/meta.yaml +++ b/data/kg/compound_protein_protein/meta.yaml @@ -90,16 +90,17 @@ links: description: original knowledge graph web GUI link num_points: 10139561 bibtex: - - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}. - - The {node2_type#} {node2_protein_names#} is targeted by {node1_type#} with {SMILES__description} {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}. + - The {node2_type#} {node2_protein_names#} is targeted by the {SMILES__description} {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} + {node3_protein_names#}. - |- - User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} with {SMILES__description} {SMILES#}? - Assistant: The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. + User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} with the {SMILES__description} {SMILES#}? + Assistant: The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a {node3_type#} that {rel2_type#} {node2_type#} {node2_protein_names#}? Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}. diff --git a/data/kg/drug_chebi_chebi_chebi/meta.yaml b/data/kg/drug_chebi_chebi_chebi/meta.yaml new file mode 100644 index 000000000..5cdc7ec62 --- /dev/null +++ b/data/kg/drug_chebi_chebi_chebi/meta.yaml @@ -0,0 +1,110 @@ +--- +name: drug_chebi_chebi_chebi +description: Knowledgegraph data samples. +targets: + - id: node1_type + description: node1_type + type: Other + units: node1_type + names: + - noun: node1_type + - id: node1_name + description: node1_name + type: Other + units: node1_name + names: + - noun: node1_name + - id: node1_id + description: node1_id + type: Other + units: node1_id + names: + - noun: node1_id + - id: rel1_type + description: rel1_type + type: Other + units: rel1_type + names: + - noun: rel1_type + - id: node2_type + description: node2_type + type: Other + units: node2_type + names: + - noun: node2_type + - id: node2_name + description: node2_name + type: Other + units: node2_name + names: + - noun: node2_name + - id: node2_id + description: node2_id + type: Other + units: node2_id + names: + - noun: node2_id + - id: rel2_type + description: rel2_type + type: Other + units: rel2_type + names: + - noun: rel2_type + - id: node3_type + description: node3_type + type: Other + units: node3_type + names: + - noun: node3_type + - id: node3_name + description: node3_name + type: Other + units: node3_name + names: + - noun: node3_name + - id: node3_id + description: node3_id + type: Other + units: node3_id + names: + - noun: node3_id + - id: rel3_type + description: rel3_type + type: Other + units: rel3_type + names: + - noun: rel3_type + - id: node4_type + description: node4_type + type: Other + units: node4_type + names: + - noun: node4_type + - id: node4_name + description: node4_name + type: Other + units: node4_name + names: + - noun: node4_name + - id: node4_id + description: node4_id + type: Other + units: node4_id + names: + - noun: node4_id +identifiers: + - id: SMILES + description: SMILES + type: SMILES +license: CC BY 4.0 +links: + - url: https://crossbar.kansil.org + description: original knowledge graph web GUI link +num_points: 1538960 +bibtex: + - "@article{10.1093/nar/gkab543,\nauthor = {Doğan, Tunca and Atas, Heval and Joshi, Vishal and Atakan, Ahmet and Rifaioglu, Ahmet Sureyya and Nalbat,\ + \ Esra and Nightingale, Andrew and Saidi, Rabie and Volynkin, Vladimir and Zellner, Hermann and Cetin-Atalay, Rengul and Martin, Maria and Atalay,\ + \ Volkan},\ntitle = \"{CROssBAR: comprehensive resource of biomedical relations with knowledge graph representations}\",\njournal = {Nucleic Acids\ + \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ + url = {https://doi.org/10.1093/nar/gkab543},\n}" +templates: [] diff --git a/data/kg/drug_protein_hpo_disease/meta.yaml b/data/kg/drug_protein_hpo_disease/meta.yaml index f4d1c7558..865744a14 100644 --- a/data/kg/drug_protein_hpo_disease/meta.yaml +++ b/data/kg/drug_protein_hpo_disease/meta.yaml @@ -114,5 +114,5 @@ bibtex: \ Research},\nvolume = {49},\nnumber = {16},\npages = {e96-e96},\nyear = {2021},\nmonth = {06},\nissn = {0305-1048},\ndoi = {10.1093/nar/gkab543},\n\ url = {https://doi.org/10.1093/nar/gkab543},\n}" templates: - - The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} + - The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}. diff --git a/data/natural/preprocess_europepmc.py b/data/natural/preprocess_europepmc.py new file mode 100644 index 000000000..e2a9b1b7c --- /dev/null +++ b/data/natural/preprocess_europepmc.py @@ -0,0 +1,124 @@ +"""This script performs cleaning of the EuroPMC natural text dataset. + +For this it reads `.jsonl` files, which have `text` keys with the content and then uses heuristics +encoded in regular expression to find references, authors, captions, etc. + +Before running this scripts, the filepaths need to be changed. +""" +import json +import os +import re + +import numpy as np + +# import pandas as pd + +STR_CUTOFF = 5000 +GAP_CUTOFF = 1000 +SENTENCE_END_IDX = -1 + + +rm_ref_brackets = re.compile(r"\s?\(\d+([\,\-\;] ?\d+)*\)"), "" +rm_ref_square_brackets = re.compile(r"\s?\[\d+([\,\-\;] ?\d+)*\]"), "" +rm_figure_caption_start = re.compile(r"[Ff]igure \d+\w?\.?[:\|]?\s"), "" +rm_schema_caption_start = re.compile(r"[Ss]chema \d+\w?\.?[:\|]?\s"), "" +rm_fig_caption_start = re.compile(r"[Ff]ig.? \d+\w?\.?[:\|]?\s"), "" +rm_figure_in_brackets = re.compile(r" \([Ff]igure \d+\w?\.?\)"), "" +rm_fig_in_brackets = re.compile(r" \([Ff]ig.? \d+\w?\.?\)"), "" +rm_email_with_text = re.compile(r"[Ee]mail[:\s] \S*@\S*\s?"), "" +rm_email = re.compile(r"\S*@\S*\s?"), "" + +year_numbers = re.compile(r"(19|20)\d{2}") +sentence_end = re.compile(r"[a-z]\.\s[A-Z]") + + +def clean_text_from_citation_section(text, gap_cutoff=1000, sentence_end_idx=-1): + # get spans of year numbers + year_number_spans = [x.span() for x in year_numbers.finditer(text)] + if len(year_number_spans) == 0: + return text + relative_span_diffs = [] + for s in year_number_spans: + if len(s) != 0: + relative_span_diffs.append((np.array(s) / np.max(s)).tolist()) + year_number_span_starts = [s[0] for s in year_number_spans] + + # absolute span gaps + abs_span_gaps = [ + x - y for x, y in zip(year_number_span_starts[1:], year_number_span_starts[:-1]) + ] + + # get last absolute gap based on gap cutoff + last_gap = None + for s, d in zip(reversed(year_number_spans), reversed(abs_span_gaps)): + if d > gap_cutoff: + last_gap = s[0] # get start + break + if last_gap is None: + if year_number_span_starts[0] > len(text) // 2: + last_gap = year_number_span_starts[0] + + # get sentence ends + spans_sentence_end = [x.span() for x in sentence_end.finditer(text[:last_gap])] + if len(spans_sentence_end) == 0: + return text + return text[: spans_sentence_end[sentence_end_idx][0] + 2] + + +def clean_text(text, gap_cutoff=GAP_CUTOFF, sentence_end_idx=SENTENCE_END_IDX): + # low level cleaning + reg_replace = [ + rm_ref_brackets, + rm_ref_square_brackets, + rm_figure_caption_start, + rm_schema_caption_start, + rm_fig_caption_start, + rm_figure_in_brackets, + rm_fig_in_brackets, + rm_email_with_text, + rm_email, + ] + for reg, replace in reg_replace: + text = reg.sub(replace, text) + + # citation section removal + text = clean_text_from_citation_section(text, gap_cutoff, sentence_end_idx) + return text + + +def clean_jsonl(path_jsonl_in): + print(f"{path_jsonl_in=}") + path_jsonl_out = path_jsonl_in.replace(".jsonl", "_clean.jsonl") + if os.path.isfile(path_jsonl_out): + print(f"Output file already exists, please check: {path_jsonl_out}") + return + + # pandas setup for smaller files + # df = pd.read_json(path_jsonl_in, lines=True) + # df.text = df.text.apply(clean_text) + # df.to_json(path_jsonl_out, orient='records', lines=True) + + # basic setup for large files with line-by-line processing + with open(path_jsonl_in, "r") as fin: + for line in fin: + data = json.loads(line) + data["text"] = clean_text(data["text"]) + if len(data["text"]) <= STR_CUTOFF: + # print(f"Too short text in: {fn}") + continue + else: + with open(path_jsonl_out, "a") as fout: + fout.write(json.dumps(data) + "\n") + + print(f"{path_jsonl_out=}") + + +if __name__ == "__main__": + paths = [ + "/scratch/micpie/ft_results_test.jsonl", + "/scratch/micpie/ft_results_valid.jsonl", + "/scratch/micpie/ft_results_train.jsonl", + ] + for path_base in paths: + print(path_base) + clean_jsonl(path_base) diff --git a/data/natural/preprocess_msds.py b/data/natural/preprocess_msds.py new file mode 100644 index 000000000..30f21a269 --- /dev/null +++ b/data/natural/preprocess_msds.py @@ -0,0 +1,48 @@ +"""This script parses MSDS data parsed from Sigma Aldrich +(https://huggingface.co/datasets/chemNLP/MSDS/tree/main) and flattens it. + +You need to change filepaths before running this script +""" +import json +import os + + +def get_text(d, text="", level=1, linebreaks=2): + for k in d: + if k in [ + "SECTION 6: Acidental release measures", # always empty + "SECTION 1: Toxicological information", # always empty + "SECTION 16: Other information", # always the same information + ]: + continue + + text += "#" * level + " " + k + "\n" * linebreaks + + if isinstance(d[k], str): + if d[k] != "": + text += d[k].rstrip() + "\n" * linebreaks + elif isinstance(d[k], dict): + text = get_text(d[k], text=text, level=level + 1) + return text + + +if __name__ == "__main__": + path_jsonl_in = "/fsx/proj-chemnlp/micpie/chemnlp/data/natural/msds/msds.jsonl" + + # load + with open(path_jsonl_in) as f: + data = [json.loads(line) for line in f] + + # process + data = list(map(get_text, data)) + data = [{"text": x} for x in data] + + # save + path_jsonl_out = path_jsonl_in.replace(".jsonl", "_clean.jsonl") + if os.path.isfile(path_jsonl_out): + print(f"Output file already exists, please check: {path_jsonl_out}") + else: + with open(path_jsonl_out, "a") as fout: + for sample in data: + fout.write(json.dumps(sample) + "\n") + print(f"JSONL saved to: {path_jsonl_out}") diff --git a/data/natural/preprocess_nougat.py b/data/natural/preprocess_nougat.py new file mode 100644 index 000000000..93fe85cef --- /dev/null +++ b/data/natural/preprocess_nougat.py @@ -0,0 +1,255 @@ +"""This script processes *.mmd files created by running the Nougat model +on PDFs of scientific articles. + +The processing removes sections that are typically unwanted for the training +of models (e.g. captions, references, authors, acknowledgments). + +The filepaths need to be updated before running the script. +""" +import glob +import json +import os +import re + +from tqdm import tqdm + +STR_CUTOFF = 5000 +KEEP_FIRST_HEADERS = [ + "main", + "abstract", + "introduction", + "summary", +] + + +def load_mmd_from_path(path): + with open(path) as f: + data = f.read() + return data + + +rm_ref_brackets = re.compile(r"\s?\(\d+([\,\-\;] ?\d+)*\)"), "" +rm_ref_square_brackets = re.compile(r"\s?\[\d+([\,\-\;] ?\d+)*\]"), "" +change_asterisk_headers = re.compile(r"\n\*\*(.*)\*\*.?\n"), r"\n## \1\n\n" +change_asterisk_headers_inline = re.compile(r"\n\*\*(.*)\*\*.?\s"), r"\n## \1\n\n" +change_underline_headers = re.compile(r"\n\_(.*)\_.?\n"), r"\n## \1\n" +# rm_double_asterisk = re.compile(r"\*\*"), "" +rm_line_number = re.compile(r"\n\* \d+\s"), "\n" +rm_missing_page_fail_a = re.compile(r"\n\n\[MISSING_PAGE_FAIL:\d+\]"), "" +rm_missing_page_fail_b = re.compile(r"\[MISSING_PAGE_FAIL:\d+\]"), "" +rm_missing_page_empty_a = re.compile(r"\n\n\[MISSING_PAGE_EMPTY:\d+\]"), "" +rm_missing_page_empty_b = re.compile(r"\[MISSING_PAGE_EMPTY:\d+\]"), "" +rm_missing_page_post_a = re.compile(r"\n\n\[MISSING_PAGE_POST\]"), "" +rm_missing_page_post_b = re.compile(r"\[MISSING_PAGE_POST\]"), "" +rm_figure_caption_start = re.compile(r"[Ff]igure \d+\w?\.?[:\|]?\s"), "" +rm_schema_caption_start = re.compile(r"[Ss]chema \d+\w?\.?[:\|]?\s"), "" +rm_fig_caption_start = re.compile(r"[Ff]ig.? \d+\w?\.?[:\|]?\s"), "" +rm_figure_in_brackets = re.compile(r" \([Ff]igure \d+\w?\.?\)"), "" +rm_fig_in_brackets = re.compile(r" \([Ff]ig.? \d+\w?\.?\)"), "" +rm_fig_in_brackets_asterisk = re.compile(r" \(\*\*[Ff]ig. \d+.*\*\*\)"), "" +# rm_figure_reference = re.compile(r", see [Ff]igure \d+\w?"), "" +# rm_fig_reference = re.compile(r", see [Ff]ig. \d+\w?"), "" +rm_email_with_text = re.compile(r"[Ee]mail[:\s] \S*@\S*\s?"), "" +rm_email = re.compile(r"\S*@\S*\s?"), "" +rm_empty_table = re.compile(r"\n\n\\begin{table}\n\n\\end{table}\nTable.+?\."), "\n" +rm_incomplete_sentence_start_para = re.compile(r"\n\n[a-z].+?\.\s"), "\n\n" +rm_incomplete_sentence_end_para = ( + re.compile(r"\.\s[A-Z,a-z][^\.]+?[a-z][,]?[\s]?\n"), + ".\n", +) + +find_headers = re.compile("(#{1,6}.*)\\n") + +year_numbers = re.compile(r"(19|20)\d{2}") + + +def get_headers(mmd, show=False): + headers = [] + for match in find_headers.finditer(mmd): + span = match.span() + headers.append((mmd[span[0] : span[1]], span)) + if show: + for h in headers: + print(h) + return headers + + +def get_next_header_to_remove(mmd, exclude_headers): + headers = get_headers(mmd) + for header, span in headers: + for eh in exclude_headers: + if header.lower().find(eh) != -1: + return (header, span) + return False + + +def remove_nested_headers(mmd, header_span, verbose): + header, span = header_span + count_hashtag = header.count("#") + headers = get_headers(mmd) + header_idx = headers.index(header_span) + for i, (next_header, next_span) in enumerate(headers): + if i + 1 == len(headers): + next_header_pos = len(mmd) - 1 + if i <= header_idx: + continue + if count_hashtag == next_header.count("#"): + next_header_pos = next_span[0] + if verbose: + print(f"Removed span: {span[0]}:{next_header_pos}") + mmd = mmd[: span[0]] + mmd[next_header_pos + 1 :] + return mmd + + +def remove_first_header(mmd): + headers = get_headers(mmd) + if len(headers) <= 1: + return mmd + header, span = headers[0] + if span[0] > 0: + _, next_span = headers[1] + mmd = mmd[next_span[0] :] + + headers = get_headers(mmd) + if len(headers) <= 1: + return mmd + header, span = headers[0] + if all([header.lower().find(kfh) == -1 for kfh in KEEP_FIRST_HEADERS]): + _, next_span = headers[1] + mmd = mmd[next_span[0] :] + return mmd + + +def clean_mmd(mmd, rm_first_header=False, verbose=False): + # low level cleaning + reg_replace = [ + rm_ref_brackets, + rm_ref_square_brackets, + change_asterisk_headers, + change_asterisk_headers_inline, + change_underline_headers, + # rm_double_asterisk, + rm_missing_page_fail_a, + rm_missing_page_fail_b, + rm_missing_page_empty_a, + rm_missing_page_empty_b, + rm_missing_page_post_a, + rm_missing_page_post_b, + rm_figure_caption_start, + rm_schema_caption_start, + rm_fig_caption_start, + rm_figure_in_brackets, + rm_fig_in_brackets, + rm_fig_in_brackets_asterisk, + # rm_figure_reference, + # rm_fig_reference, + rm_email_with_text, + rm_email, + rm_empty_table, + rm_incomplete_sentence_start_para, + rm_incomplete_sentence_end_para, + ] + for reg, replace in reg_replace: + mmd = reg.sub(replace, mmd) + + # section cleaning + if verbose: + _ = get_headers(mmd, show=True) + + if rm_first_header: + # we try to remove the first header two times + for _ in range(2): + mmd = remove_first_header(mmd) + header_span = True # start value + while header_span is not False: + header_span = get_next_header_to_remove(mmd, exclude_headers) + if verbose: + print(f"{header_span=}") + if isinstance(header_span, tuple): + mmd = remove_nested_headers(mmd, header_span, verbose) + + return mmd + + +exclude_headers = [ + "accession codes", + "acknowledgement", + "acknowledgment", + "additional files", + "additional information", + "associated content", + "author", # incl: "author information", "corresponding author", + "availability", + "bibliography", + "competing interest", + "contributions", + "conflict of interest", + "conflicts of interest", + "consent", + "data and software availability", + "data availability", + "declaration", + "dedication", + "disclaimer", + "disclosure", + "figure legends", + "financial support", + "funding", + "graphical toc", + "graphical abstract", + "keywords", + "note", + "orcid", + "present address", + "reference", + "supplementary material", + "supporting formation available", + "supporting information", + "table of contents", + # "abbreviations", + # "toc", # creates false positives +] + + +def create_jsonl_from_dir(path): + print(f"{path=}") + paths = sorted(glob.glob(path + "/*.mmd")) + path_jsonl = path.replace("rxiv/", "rxiv_clean.jsonl") + if os.path.isfile(path_jsonl): + print(f"Output file already exists, please check: {path_jsonl}") + return + + print(f"{path_jsonl=}") + for path in (pbar := tqdm(paths)): + fn = path.split("/")[-1].split(".mmd")[0] + pbar.set_postfix_str(fn) + mmd = load_mmd_from_path(path) + text = clean_mmd(mmd, rm_first_header=True, verbose=False) + if len(text) <= STR_CUTOFF: + # print(f"Too short text in: {fn}") + continue + elif text.count("Journal of") > 10: + # print(f'Too many "Journal of" in text: {fn}') + continue + elif text.count(" doi:") > 10: + # print(f'Too many " doi:" in text: {fn}') + continue + elif len(year_numbers.findall(text)) > 10: + # print(f"Too many year numbers in text: {fn}") + continue + else: + out = {"fn": fn, "text": text} + with open(path_jsonl, "a") as f: + f.write(json.dumps(out) + "\n") + # uncomment to diff individual files for debugging + # with open(path.replace(".mmd", "_.mmd"), "w") as f: + # f.write(text) + + +if __name__ == "__main__": + for path_base in [ + "/fsx/proj-chemnlp/data/nougat_processed_chemrxiv/", + "/fsx/proj-chemnlp/data/nougat_processed_biorxiv/", + "/fsx/proj-chemnlp/data/nougat_processed_medrxiv/", + ]: + create_jsonl_from_dir(path_base) diff --git a/data/natural/preprocess_nougat.sh b/data/natural/preprocess_nougat.sh new file mode 100644 index 000000000..5c3ebed3a --- /dev/null +++ b/data/natural/preprocess_nougat.sh @@ -0,0 +1,32 @@ +#!/bin/bash +#SBATCH --job-name=preprocess_nougat +#SBATCH --output=/fsx/proj-chemnlp/micpie/chemnlp/data/natural/%x_%j.out +#SBATCH --account chemnlp +#SBATCH --comment chemnlp +#SBATCH --partition=cpu16 +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=1 + +cd /fsx/proj-chemnlp/micpie/chemnlp/data/natural/ + +## ensure we can use activate syntax in slurm scripts +export CONDA_ENV_PATH=/admin/home-micpie/miniconda3/envs/chemnlp +CONDA_BASE=$(conda info --base) +source $CONDA_BASE/etc/profile.d/conda.sh +conda activate ${CONDA_ENV_PATH} + +python --version + +python preprocess_nougat.py + +#DATE=$(date -d "today" +"%Y%m%d%H%M") +#echo $DATE + +#mv /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_chemrxiv.jsonl /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_chemrxiv_$DATE.jsonl +#tar -cvzf /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_chemrxiv_$DATE.jsonl.tar.gz /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_chemrxiv_$DATE.jsonl + +#mv /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_biorxiv.jsonl /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_biorxiv_$DATE.jsonl +#tar -cvzf /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_biorxiv_$DATE.jsonl.tar.gz /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_biorxiv_$DATE.jsonl + +#mv /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_medrxiv.jsonl /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_medrxiv_$DATE.jsonl +#tar -cvzf /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_medrxiv_$DATE.jsonl.tar.gz /fsx/proj-chemnlp/micpie/chemnlp/data/natural/nougat_processed_medrxiv_$DATE.jsonl diff --git a/data/postprocess_split.py b/data/postprocess_split.py new file mode 100644 index 000000000..dc2353330 --- /dev/null +++ b/data/postprocess_split.py @@ -0,0 +1,208 @@ +"""This script checks again for leakage and also attempts to fix potential leakage +by assigning all "test" SMILES to the test fold in the `csv`. + +It also merges files that have been created by `dask` if they are chunks of one large dataset. + +This script needs to be run after the splitting script. +""" +import os +from glob import glob +from pathlib import Path +from typing import List, Literal, Union + +import dask.dataframe as dd +import fire +import pandas as pd +import yaml +from pandas.errors import ParserError +from tqdm import tqdm + + +def merge_files(dir): + fns = sorted(glob(os.path.join(dir, "data_clean-*.csv"))) + fn_merged = os.path.join(dir, "data_clean.csv") + if os.path.exists(fn_merged): + os.remove(fn_merged) + for fn in fns: + df = pd.read_csv(fn, index_col=False, low_memory=False) + df.to_csv( + fn_merged, mode="a", index=False, header=not os.path.exists(fn_merged) + ) + os.remove(fn) + del df + + +def get_columns_of_type( + yaml_file: Union[str, Path], + column_type: Literal["SMILES", "AS_SEQUENCE"] = "SMILES", +) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + smiles_columns = [] + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == column_type: + if target["id"] not in non_relevant_ids: + smiles_columns.append(target["id"]) + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == column_type: + if identifier["id"] not in non_relevant_ids: + smiles_columns.append(identifier["id"]) + + return smiles_columns + + +relevant_ids = ["info.mofid.mofid"] # deduplication based on this makes sense + +# these are not relevant for deduplication +non_relevant_ids = [ + "info.mofid.smiles_nodes", + "info.mofid.smiles_linkers", + "info.mofid.smiles", + "odd_one_out_mol", + "biggest_sim_0", + "biggest_sim_1", + "most_diff_0", + "most_diff_1", +] + + +def get_all_identifier_columns(yaml_file: Union[str, Path]) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + identifier_columns = [] + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if ( + identifier["type"] + in ["SMILES", "AS_SEQUENCE", "COMPOSITION", "RXNSMILES", "PSMILES"] + or identifier["id"] in relevant_ids + ): + if identifier["id"] not in non_relevant_ids: + identifier_columns.append(identifier["id"]) + + # if there are no identifiers, we simply append + if len(identifier_columns) == 0: + if "identifiers" in meta: + for identifier in meta["identifiers"]: + identifier_columns.append(identifier["id"]) + break + return identifier_columns + + +def read_ddf(file): + try: + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + ) + except ParserError: + print(f"Could not parse {file}. Using blocksize=None.") + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + blocksize=None, + ) + except ValueError as e: + if "Mismatched dtypes" in str(e): + print(f"Could not parse {file}. Inferring dtypes via pandas.") + chunk = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + d = dict(zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values])) + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + dtype=d, + assume_missing=True, + ) + return ddf + + +def process_file(file: Union[str, Path], id_cols): + # if file does not fit in memory, use dask to drop duplicates, based on identifiers + dir = Path(file).parent + # check if there is any csv file + if not glob(os.path.join(dir, "*.csv")): + return + if len(glob(os.path.join(dir, "data_clean-0*.csv"))) >= 1: + merge_files(dir) + df_file = os.path.join(dir, "data_clean.csv") + size = os.path.getsize(df_file) / (1024**3) + if size > 30: # 120 GB pandas memory assuming factor 4 + # note that this assumes that we know that the data in the large files + # is such that it does not make sense for the same identifier to + # appear multiple times + ddf = read_ddf(file) + ddf = ddf.drop_duplicates(subset=id_cols) + ddf.to_csv("data_clean-{*}.csv", index=False) + merge_files(dir) + + else: + df = pd.read_csv(df_file, index_col=False, low_memory=False) + test_smiles = [] + val_smiles = [] + + for id in id_cols: + test_smiles.extend(df[df["split"] == "test"][id].to_list()) + val_smiles.extend(df[df["split"] == "valid"][id].to_list()) + + test_smiles = set(test_smiles) + val_smiles = set(val_smiles) + + is_in_test = df.apply( + lambda x: any([s in test_smiles for s in x[id_cols]]), axis=1 + ) + + is_in_val = df.apply( + lambda x: any([s in val_smiles for s in x[id_cols]]), axis=1 + ) + df.loc[is_in_test, "split"] = "test" + df.loc[is_in_val, "split"] = "valid" + + print(df["split"].value_counts()) + + for id in id_cols: + this_test_smiles = set(df[df["split"] == "test"][id].to_list()) + this_val_smiles = set(df[df["split"] == "valid"][id].to_list()) + this_train_smiles = set(df[df["split"] == "train"][id].to_list()) + assert ( + len(this_test_smiles.intersection(this_train_smiles)) == 0 + ), f"Smiles in test and train for {id}" + assert ( + len(this_val_smiles.intersection(this_train_smiles)) == 0 + ), f"Smiles in valid and train for {id}" + assert ( + len(this_test_smiles.intersection(this_val_smiles)) == 0 + ), f"Smiles in test and valid for {id}" + + df.to_csv("data_clean.csv", index=False) + + +def process_all_files(data_dir): + all_yaml_files = sorted(glob(os.path.join(data_dir, "**", "**", "meta.yaml"))) + index = [ + i for i, x in enumerate(all_yaml_files) if str(x).find("orbnet_denali") != -1 + ][0] + all_yaml_files = [all_yaml_files[index]] + for yaml_file in tqdm(all_yaml_files): + print(f"Processing {yaml_file}") + try: + id_cols = get_all_identifier_columns(yaml_file) + smiles_columns = get_columns_of_type(yaml_file) + if smiles_columns: + id_cols = smiles_columns + process_file(yaml_file, id_cols) + except Exception as e: + print(f"Could not process {yaml_file}: {e}") + + +if __name__ == "__main__": + fire.Fire(process_all_files) diff --git a/data/tabular/BACE/meta.yaml b/data/tabular/BACE/meta.yaml index e61cba2f9..b25927a1f 100644 --- a/data/tabular/BACE/meta.yaml +++ b/data/tabular/BACE/meta.yaml @@ -57,7 +57,7 @@ templates: Result: {BACE_inhibition#False&True} - |- Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. - Description: A molecule that is {BACE_inhibition__names__adjective}. + Description: A molecule that is {BACE_inhibition#not &NULL}{BACE_inhibition__names__adjective}. Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {BACE_inhibition__names__adjective}? diff --git a/data/tabular/BBBP/meta.yaml b/data/tabular/BBBP/meta.yaml index 5cf90d370..b589d65a9 100644 --- a/data/tabular/BBBP/meta.yaml +++ b/data/tabular/BBBP/meta.yaml @@ -55,7 +55,7 @@ templates: Result: {p_np#False&True} - |- Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. - Description: A molecule that is {p_np__names__adjective}. + Description: A molecule that is {p_np#not &NULL}{p_np__names__adjective}. Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {p_np__names__adjective}? diff --git a/data/tabular/ames_mutagenicity/meta.yaml b/data/tabular/ames_mutagenicity/meta.yaml index 725ae1343..675e3a0af 100644 --- a/data/tabular/ames_mutagenicity/meta.yaml +++ b/data/tabular/ames_mutagenicity/meta.yaml @@ -71,7 +71,7 @@ templates: Result: This molecule is {mutagenic#not &NULL}{mutagenic__names__adjective}. - |- Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. - Description: A molecule that is {mutagenic__names__adjective}. + Description: A molecule that is {mutagenic#not &NULL}{mutagenic__names__adjective}. Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {mutagenic__names__adjective}? diff --git a/data/tabular/ames_mutagenicity/transform.py b/data/tabular/ames_mutagenicity/transform.py index 177390e10..293d7e38a 100644 --- a/data/tabular/ames_mutagenicity/transform.py +++ b/data/tabular/ames_mutagenicity/transform.py @@ -138,7 +138,7 @@ def get_and_transform_data(): Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {mutagenic#not &NULL}{mutagenic__names__adjective}.""", """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. -Description: A molecule that is {mutagenic__names__adjective}. +Description: A molecule that is {mutagenic#not &NULL}{mutagenic__names__adjective}. Result: {SMILES#}""", # noqa: E501 # Conversational text templates """User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {mutagenic__names__adjective}? diff --git a/data/tabular/bicerano_dataset/meta.yaml b/data/tabular/bicerano_dataset/meta.yaml deleted file mode 100644 index a2988e26d..000000000 --- a/data/tabular/bicerano_dataset/meta.yaml +++ /dev/null @@ -1,66 +0,0 @@ ---- -name: bicerano_dataset -description: |- - This paper outlines a MD simulation workflow based on GPU MD simulation and the - refined optimized potentials for liquid simulation (OPLS) OPLS3e force field to - calculate glass transition temperatures (Tgs) of 315 polymers for which Bicerano - reported experimental values. -targets: - - id: Tg_exp - description: experimental glass transition temperature - units: K - type: float - names: - - noun: experimental glass transition temperature - uris: - - id: Tg_calc - description: calculated glass transition T - units: K - type: float - names: - - noun: computed glass transition temperature - - id: rho_300K_calc - description: computed density at 300K - units: g/cm^3 - type: float - names: - - noun: computed polymer density at 300K -identifiers: - - id: PSMILES - type: PSMILES - description: PSMILES - - id: compound_name - type: Other - names: - - noun: compound name - description: polymer name -license: CC BY 4.0 -links: - - url: https://pubs.acs.org/doi/10.1021/acsapm.0c00524# - description: corresponding publication - - url: - - https://raw.githubusercontent.com/AdrianM0/chemnlp/main/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv - description: data source -num_points: 315 -bibtex: - - |- - @article{afzal2021, - author = {Afzal, Mohammad Atif Faiz and Browning, Andrea R. and Goldberg, Alexander and Halls, Mathew D. and Gavartin, Jacob L. and Morisato, - Tsuguo and Hughes, Thomas F. and Giesen, David J. and Goose, Joseph E.}, - title = {High-Throughput Molecular Dynamics Simulations and Validation of Thermophysical Properties of Polymers for Various Applications}, - journal = {ACS Applied Polymer Materials}, - volume = {3}, - number = {2}, - pages = {620-630}, - year = {2021}, - doi = {10.1021/acsapm.0c00524}} -templates: - - The polymer with the {PSMILES__description} of {PSMILES#} has an experimental glass transition temperature of {Tg_exp#} K. - - The polymer with the {PSMILES__description} of {PSMILES#} has a computed glass transition temperature of {Tg_calc#} K. - - The polymer with the {PSMILES__description} of {PSMILES#} has a computed density at 300 K of {rho_300K_calc#} g/cc. - - The polymer with the {compound_name__names__noun} of {compound_name#} has an experimental glass transition temperature of {Tg_exp#} K. - - The polymer with the {compound_name__names__noun} of {compound_name#} has a computed glass transition temperature of {Tg_calc#} K. - - The polymer with the {compound_name__names__noun} of {compound_name#} has a computed density at 300 K of {rho_300K_calc#} g/cc. - - |- - Question: What is a polymer with a computed glass transition temperature of {Tg_calc#} K and a computed density at 300 K of {rho_300K_calc#} g/cc. - Answer: A polymer with {PSMILES__description} {PSMILES#} diff --git a/data/tabular/bio_ner/meta.yaml b/data/tabular/bio_ner/meta.yaml index 7a63f8fff..af44068d2 100644 --- a/data/tabular/bio_ner/meta.yaml +++ b/data/tabular/bio_ner/meta.yaml @@ -1,6 +1,6 @@ --- name: bio_ner -description: NER task on bio-related text. +description: NER data. identifiers: - id: Sentence description: Sentence @@ -19,17 +19,19 @@ targets: names: - noun: JSON output benchmarks: - - name: bio_ner - link: https://github.com/ML4LitS/bio-datasets + - name: ??? + link: ??? split_column: split -license: unknown +license: NEEDS TO BE DEFINED links: - url: https://github.com/ML4LitS/bio-datasets - description: original data source -num_points: 144675 + description: ??? +num_points: 123509 +bibtex: + - ??? templates: - |- - Task: Please carry out the {#named entity recognition (NER)|named entity recognition|NER!} task for the text below. - Text: {#Sentence}. + Task: Please carry out the {#named entity recognition (NER)|named entity recognition|NER!} task for the the text below. + Text: {Sentence#}. Constrain: Please, {#only |!}list the entities in the form NER entity, span start, span end, and type {#in separate lines |!}with a high probability of being in the text. - Result: {#entity_1} + Result: {entity_1#} diff --git a/data/tabular/bio_ner/transform.py b/data/tabular/bio_ner/transform.py index 7c5e2cb50..4b264b073 100644 --- a/data/tabular/bio_ner/transform.py +++ b/data/tabular/bio_ner/transform.py @@ -31,9 +31,9 @@ "bibtex": ["???"], "templates": [ """Task: Please carry out the {#named entity recognition (NER)|named entity recognition|NER!} task for the the text below. -Text: {#Sentence}. +Text: {Sentence#}. Constrain: Please, {#only |!}list the entities in the form NER entity, span start, span end, and type {#in separate lines |!}with a high probability of being in the text. -Result: {#entity_1}""", # noqa: E501 +Result: {entity_1#}""", # noqa: E501 ], } @@ -141,10 +141,10 @@ def get_and_transform_data(): # adapt templates for more entities than 1 if entity_count > 1: entity_str = "\n".join( - ["{#entity_" + str(i + 1) + "}" for i in range(entity_count)] + ["{entity_" + str(i + 1) + "#}" for i in range(entity_count)] ) meta_copy["templates"] = [ - t.replace("{#entity_1}", entity_str) for t in meta_copy["templates"] + t.replace("{entity_1#}", entity_str) for t in meta_copy["templates"] ] yaml.add_representer(str, str_presenter) diff --git a/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml b/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml index ef347779a..2e55bd3c6 100644 --- a/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml +++ b/data/tabular/blood_brain_barrier_martins_et_al/meta.yaml @@ -94,7 +94,7 @@ templates: Result: This molecule is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}. - |- Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical compound!} based on the {#text |!}description{# below|!}. - Description: A molecule that is {penetrate_BBB__names__adjective}. + Description: A molecule that is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}. Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {penetrate_BBB__names__adjective}? diff --git a/data/tabular/blood_brain_barrier_martins_et_al/transform.py b/data/tabular/blood_brain_barrier_martins_et_al/transform.py index d25bc7db5..31882cbd5 100644 --- a/data/tabular/blood_brain_barrier_martins_et_al/transform.py +++ b/data/tabular/blood_brain_barrier_martins_et_al/transform.py @@ -158,7 +158,7 @@ def get_and_transform_data(): Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}.""", # noqa: E501 """Task: Please {#give me|create|generate!} the {SMILES__description} of {#molecule|chemical|chemical structure!} based on the {#text |!}description{# below|!}. -Description: A molecule that is {penetrate_BBB__names__adjective}. +Description: A molecule that is {penetrate_BBB#not &NULL}{penetrate_BBB__names__adjective}. Result: {SMILES#}""", # noqa: E501 # Conversational text templates """User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {penetrate_BBB__names__adjective}? diff --git a/data/tabular/carcinogens/meta.yaml b/data/tabular/carcinogens/meta.yaml index 931f7322e..ba2d16cd2 100644 --- a/data/tabular/carcinogens/meta.yaml +++ b/data/tabular/carcinogens/meta.yaml @@ -83,7 +83,7 @@ templates: Result: This molecule is {carcinogen#not &NULL}{carcinogen__names__adjective}. - |- Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. - Description: A molecule that is {carcinogen__names__adjective}. + Description: A molecule that is {carcinogen#not &NULL}{carcinogen__names__adjective}. Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {carcinogen__names__adjective}? diff --git a/data/tabular/carcinogens/transform.py b/data/tabular/carcinogens/transform.py index 0b2fc42d2..b301dde3c 100644 --- a/data/tabular/carcinogens/transform.py +++ b/data/tabular/carcinogens/transform.py @@ -153,7 +153,7 @@ def get_and_transform_data(): Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {carcinogen#not &NULL}{carcinogen__names__adjective}.""", """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. -Description: A molecule that is {carcinogen__names__adjective}. +Description: A molecule that is {carcinogen#not &NULL}{carcinogen__names__adjective}. Result: {SMILES#}""", # noqa: E501 # Conversational text templates """User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {carcinogen__names__adjective}? diff --git a/data/tabular/cav3_t-type_calcium_channels_butkiewicz/meta.yaml b/data/tabular/cav3_t-type_calcium_channels_butkiewicz/meta.yaml index d5108fc71..3bb5bdcaa 100644 --- a/data/tabular/cav3_t-type_calcium_channels_butkiewicz/meta.yaml +++ b/data/tabular/cav3_t-type_calcium_channels_butkiewicz/meta.yaml @@ -109,7 +109,7 @@ templates: Result: This molecule is {activity_cav3_t_type_calcium_channels#not &NULL}{activity_cav3_t_type_calcium_channels__names__gerund}. - |- Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. - Description: A molecule that is {activity_cav3_t_type_calcium_channels__names__gerund}. + Description: A molecule that is {activity_cav3_t_type_calcium_channels#not &NULL}{activity_cav3_t_type_calcium_channels__names__gerund}. Result: {SMILES#} - |- User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {activity_cav3_t_type_calcium_channels__names__gerund}? diff --git a/data/tabular/cav3_t-type_calcium_channels_butkiewicz/transform.py b/data/tabular/cav3_t-type_calcium_channels_butkiewicz/transform.py index c125be47b..0a5827f19 100644 --- a/data/tabular/cav3_t-type_calcium_channels_butkiewicz/transform.py +++ b/data/tabular/cav3_t-type_calcium_channels_butkiewicz/transform.py @@ -154,7 +154,7 @@ def get_and_transform_data(): Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {activity_cav3_t_type_calcium_channels#not &NULL}{activity_cav3_t_type_calcium_channels__names__gerund}.""", # noqa: E501 """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. -Description: A molecule that is {activity_cav3_t_type_calcium_channels__names__gerund}. +Description: A molecule that is {activity_cav3_t_type_calcium_channels#not &NULL}{activity_cav3_t_type_calcium_channels__names__gerund}. Result: {SMILES#}""", # noqa: E501 # Conversational text templates """User: Can you {#tell me|derive|estimate!} if the molecule with the {SMILES__description} {SMILES#} is {activity_cav3_t_type_calcium_channels__names__gerund}? diff --git a/data/tabular/chebi_20/meta.yaml b/data/tabular/chebi_20/meta.yaml index 66c61cbbb..123bba111 100644 --- a/data/tabular/chebi_20/meta.yaml +++ b/data/tabular/chebi_20/meta.yaml @@ -64,10 +64,10 @@ bibtex: templates: - |- The molecule with the {SMILES__description} {#representation of |!}{SMILES#} can be described {#by|as!}: - {#description} + {description#} - |- Based on the {SMILES__description} {#representation |!}{SMILES#}, the molecule can be described {#by|as!}: - {#description} + {description#} - |- Task: Please create a {#text |!}description for a molecule{# based on its representation|!}. {#Molecule |!}{SMILES__description}: {SMILES#} @@ -79,23 +79,23 @@ templates: Result: {SMILES#} - |- User: Can you {#give me|create|generate!} the {SMILES__description} of a molecule based in this description: - {#description} + {description#} Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, here you go: {SMILES#} - |- User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that can be described {#by|as!}: - {#description} + {description#} Assistant: This is a molecule that fits {#your|this!} description: {SMILES#} - |- User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule can be described {#by|as!}: - {#description} + {description#} Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} fits {#your|this!} description: {SMILES#} - |- User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should it be a special {#molecule|one!}? User: Yes, the molecule can be described {#by|as!}: - {#description} + {description#} Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} fits {#your|this!} description: {SMILES#} - |- Task: Please create a {#text |!}description for a molecule{# based on its representation|!}. diff --git a/data/tabular/chebi_20/transform.py b/data/tabular/chebi_20/transform.py index 090de7c0d..3f4516af4 100644 --- a/data/tabular/chebi_20/transform.py +++ b/data/tabular/chebi_20/transform.py @@ -87,8 +87,8 @@ }""", # noqa ], "templates": [ - "The molecule with the {SMILES__description} {#representation of |!}{SMILES#} can be described {#by|as!}:\n{#description}", # noqa - "Based on the {SMILES__description} {#representation |!}{SMILES#}, the molecule can be described {#by|as!}:\n{#description}", # noqa + "The molecule with the {SMILES__description} {#representation of |!}{SMILES#} can be described {#by|as!}:\n{description#}", # noqa + "Based on the {SMILES__description} {#representation |!}{SMILES#}, the molecule can be described {#by|as!}:\n{description#}", # noqa """Task: Please create a {#text |!}description for a molecule{# based on its representation|!}. {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Answer the question with {#full|complete!} sentences. @@ -97,20 +97,20 @@ Description: {description#} Result: {SMILES#}""", # noqa """User: Can you {#give me|create|generate!} the {SMILES__description} of a molecule based in this description: -{#description} +{description#} Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, here you go: {SMILES#}""", # noqa """User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that can be described {#by|as!}: -{#description} +{description#} Assistant: This is a molecule that fits {#your|this!} description: {SMILES#}""", # noqa """User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule can be described {#by|as!}: -{#description} +{description#} Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} fits {#your|this!} description: {SMILES#}""", # noqa """User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should it be a special {#molecule|one!}? User: Yes, the molecule can be described {#by|as!}: -{#description} +{description#} Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} fits {#your|this!} description: {SMILES#}""", # noqa """Task: Please create a {#text |!}description for a molecule{# based on its representation|!}. {#Molecule |!}{SMILES__description}: {SMILES#} diff --git a/data/tabular/chemcaption_rdkit/meta.yaml b/data/tabular/chemcaption_rdkit/meta.yaml index 929d57f27..99424eed9 100644 --- a/data/tabular/chemcaption_rdkit/meta.yaml +++ b/data/tabular/chemcaption_rdkit/meta.yaml @@ -313,28 +313,28 @@ templates: User: {#What is|I want to know|I need to know!} the {asphericity__names__noun} of this {#molecule|chemical|compound|drug|chemical structure!}. Assistant: The {#molecule|chemical|compound|drug|chemical structure!} has an {asphericity__names__noun} of {asphericity#}. - |- - User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {asphericity__names__noun} of {asphericity#}. + User: I {#want to|must|would like to|need to!} {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {asphericity__names__noun} of {asphericity#}. Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {eccentricity__names__noun} of {eccentricity#}. Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {npr1_value__names__noun} of {npr1_value#} and a {molecular_formula__names__noun} of {molecular_formula#}. Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. - |- - User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {eccentricity__names__noun} of {eccentricity#}. + User: I {#want to|must|would like to|need to!} {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {eccentricity__names__noun} of {eccentricity#}. Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {asphericity__names__noun} of {asphericity#}. Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {num_lipinski_violations#} {num_lipinski_violations__names__only_name} and a {molecular_formula__names__noun} of {molecular_formula#}. Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. - |- - User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {npr1_value__names__noun} of {npr1_value#}. + User: I {#want to|must|would like to|need to!} {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {npr1_value__names__noun} of {npr1_value#}. Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {npr2_value__names__noun} of {npr2_value#}. Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {molecular_formula__names__noun} of {molecular_formula#}. Assistant: {#Given those requirements, |In that case, |!}I recommend the {#molecule|chemical|compound|drug|chemical structure!} with {representation_type#} {representation#}. - |- - User: I {#want|must|would like|need!} to {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {pmi1_value__names__noun} of {pmi1_value#}. + User: I {#want to|must|would like to|need to!} {#design|create|synthesize|make!} a {#molecule|chemical|compound|drug|chemical structure!} with {pmi1_value__names__noun} of {pmi1_value#}. Assistant: {#That's interesting, do you have|Do you have|Cool, do you have|Awesome, do you have!} any other {#constraints|requirements|conditions|limitations!}? User: {#In addition,|Additionally,|Moreover,!} I {#want|would like!} the {#molecule|chemical|compound|drug|chemical structure!} to have a {pmi2_value__names__noun} of {pmi2_value#}. Assistant: {#Is there anything else I should know?|Is there anything else I should be aware of?|Is there anything else I should take into account?|Is there anything else I should consider?|Is there anything else I should take into consideration?|Is there anything else I should take into account?|Is there anything else I should take into consideration?|Is there anything else I should consider?!} diff --git a/data/tabular/elsevier_oa_cc-by_corpus/meta.yaml b/data/tabular/elsevier_oa_cc-by_corpus/meta.yaml deleted file mode 100644 index 8a94b9e60..000000000 --- a/data/tabular/elsevier_oa_cc-by_corpus/meta.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: elsevier_oa_cc-by_corpus -description: "This is a corpus of 40k (40,001) open access (OA)\nCC-BY articles from across Elsevier’s journals represent the first\ncross-discipline research\ - \ of data at this scale to support NLP and ML\nresearch.\nThis dataset was released to support the development of ML and NLP models\ntargeting science\ - \ articles from across all research domains. While the release\nbuilds on other datasets designed for specific domains and tasks, it will allow\nfor\ - \ similar datasets to be derived or for the development of models which can\nbe applied and tested across domains." -license: CC BY 4.0 -links: - - url: https://elsevier.digitalcommonsdata.com/datasets/zm33cdndxs/3 - description: original dataset link -num_points: 39790 -bibtex: - - |- - @article{DBLP:journals/corr/abs-2008-00774, - author = {Daniel Kershaw and Rob Koeling}, - title = {Elsevier {OA} CC-By Corpus}, - journal = {CoRR}, - volume = {abs/2008.00774}, - year = {2020}, - url = {https://arxiv.org/abs/2008.00774}, - eprinttype = {arXiv}, - eprint = {2008.00774}, - timestamp = {Fri, 07 Aug 2020 15:07:21 +0200}, - biburl = {https://dblp.org/rec/journals/corr/abs-2008-00774.bib}, - bibsource = {dblp computer science bibliography, https://dblp.org} - } diff --git a/data/tabular/elsevier_oa_cc-by_corpus/transform.py b/data/tabular/elsevier_oa_cc-by_corpus/transform.py deleted file mode 100644 index 26760c07d..000000000 --- a/data/tabular/elsevier_oa_cc-by_corpus/transform.py +++ /dev/null @@ -1,194 +0,0 @@ -import glob -import hashlib -import json -from pathlib import Path -from zipfile import ZipFile - -import requests -import yaml -from tqdm import tqdm - - -def get_text_from_json_data(data): - # sort sentences - data["body_text"].sort(key=lambda e: e["startOffset"]) - - # get text data from json dict - data_text = {} - - data_text["title"] = data["metadata"]["title"] - - if "subjareas" in data["metadata"]: - data_text["subject_classification"] = [ - e for i, e in enumerate(data["metadata"]["subjareas"]) - ] - data_text["subject_classification"] = [ - e + "," for e in data_text["subject_classification"][:-1] - ] + [data_text["subject_classification"][-1]] - - if "asjc" in data["metadata"]: - data_text["all_science_journal_classification"] = [ - e for i, e in enumerate(data["metadata"]["asjc"]) - ] - data_text["all_science_journal_classification"] = [ - e + "," for e in data_text["all_science_journal_classification"][:-1] - ] + [data_text["all_science_journal_classification"][-1]] - - if "keywords" in data["metadata"]: - data_text["keywords"] = [ - f"{e}," for i, e in enumerate(data["metadata"]["keywords"]) - ] - - data_text["abstract"] = data["abstract"] - - if "author_highlights" in data: - # sort author highlights - data["author_highlights"].sort(key=lambda e: e["startOffset"]) - data_text["author_highlights"] = [ - f"{i+1}. {e['sentence']}\n" for i, e in enumerate(data["author_highlights"]) - ] - data_text["author_highlights"] = "".join(data_text["author_highlights"]) - - for e in data["body_text"]: - if e["title"] in data_text: - data_text[e["title"]].append(e["sentence"]) - else: - data_text[e["title"]] = [] - data_text[e["title"]].append(e["sentence"]) - - # create full_text - full_text = "" - - for key in data_text: - full_text += f"\n\n# {key.replace('_',' ').title()}\n" - if isinstance(data_text[key], str): - full_text += data_text[key] - else: - full_text += " ".join(data_text[key]) - - return data_text, full_text - - -def get_and_transform_data(): - # get raw data - fn_zip_original = Path("elsevier_oa_cc-by_corpus_v3.zip") - if not (fn_zip_original.is_file()): - zip_path = "https://prod-dcd-datasets-cache-zipfiles.s3.eu-west-1.amazonaws.com/zm33cdndxs-3.zip" - data = requests.get(zip_path) - - with open(fn_zip_original, "wb") as f: - f.write(data.content) - del data - - hash_func = hashlib.new("sha256") - with open(fn_zip_original, "rb") as f: - for chunk in iter(lambda: f.read(4096), b""): - hash_func.update(chunk) - sha256_hash = hash_func.hexdigest() - sha256_hash_orig = ( - "380ee2737cc341ab15d4de1481d2c2f809de8dfefdf639c158c479249a085e6a" - ) - assert ( - sha256_hash == sha256_hash_orig - ), "Sha256 checksum doesn't match, delete downloaded file and restart this script." - del sha256_hash - - # unzip data - fn_dir_original = Path("elsevier_oa_cc-by_corpus_v3") - if not (fn_dir_original.is_dir()): - ZipFile(fn_zip_original).extractall(fn_dir_original) - ZipFile(fn_dir_original / "json.zip").extractall(fn_dir_original) - - # load json data - data_json_clean = [] - data_json_separate = [] - for filename in tqdm(glob.glob(str(fn_dir_original / "json/*.json"))): - dict_json_clean = {} - dict_json_separate = {} - dict_json_clean["filename"] = filename.split( - "elsevier_oa_cc-by_corpus_v3/json/" - )[-1] - dict_json_separate["filename"] = filename.split( - "elsevier_oa_cc-by_corpus_v3/json/" - )[-1] - with open(filename) as f: - data_json_raw = json.load(f) - if "abstract" in data_json_raw: - data_text, dict_json_clean["text"] = get_text_from_json_data(data_json_raw) - dict_json_separate = {**dict_json_separate, **data_text} - else: - continue - data_json_clean.append(dict_json_clean) - data_json_separate.append(dict_json_separate) - - assert len(data_json_clean) == len(data_json_separate) - - # save data as jsonl - with open("data_clean.jsonl", "w") as file_out: - for element in data_json_clean: - json.dump(element, file_out) - file_out.write("\n") - - with open("data_separate.jsonl", "w") as file_out: - for element in data_json_separate: - json.dump(element, file_out) - file_out.write("\n") - - # create meta yaml - meta = { - "name": "elsevier_oa_cc-by_corpus", # unique identifier, we will also use this for directory names - "description": """This is a corpus of 40k (40,001) open access (OA) -CC-BY articles from across Elsevier’s journals represent the first -cross-discipline research of data at this scale to support NLP and ML -research. -This dataset was released to support the development of ML and NLP models -targeting science articles from across all research domains. While the release -builds on other datasets designed for specific domains and tasks, it will allow -for similar datasets to be derived or for the development of models which can -be applied and tested across domains.""", - "license": "CC BY 4.0", # license under which the original dataset was published - "links": [ # list of relevant links (original dataset, other uses, etc.) - { - "url": "https://elsevier.digitalcommonsdata.com/datasets/zm33cdndxs/3", - "description": "original dataset link", - }, - ], - "num_points": len(data_json_clean), # number of datapoints in this dataset - "bibtex": [ - """@article{DBLP:journals/corr/abs-2008-00774, -author = {Daniel Kershaw and Rob Koeling}, -title = {Elsevier {OA} CC-By Corpus}, -journal = {CoRR}, -volume = {abs/2008.00774}, -year = {2020}, -url = {https://arxiv.org/abs/2008.00774}, -eprinttype = {arXiv}, -eprint = {2008.00774}, -timestamp = {Fri, 07 Aug 2020 15:07:21 +0200}, -biburl = {https://dblp.org/rec/journals/corr/abs-2008-00774.bib}, -bibsource = {dblp computer science bibliography, https://dblp.org} -}""", - ], - } - - def str_presenter(dumper, data): - """configures yaml for dumping multiline strings - Ref: https://stackoverflow.com/questions/8640959/how-can-i-control-what-scalar-form-pyyaml-uses-for-my-data - """ - if data.count("\n") > 0: # check for multiline string - return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|") - return dumper.represent_scalar("tag:yaml.org,2002:str", data) - - yaml.add_representer(str, str_presenter) - yaml.representer.SafeRepresenter.add_representer( - str, str_presenter - ) # to use with safe_dum - fn_meta = "meta.yaml" - with open(fn_meta, "w") as f: - yaml.dump(meta, f, sort_keys=False) - - print(f"Finished processing {meta['name']} dataset!") - - -if __name__ == "__main__": - get_and_transform_data() diff --git a/data/tabular/freesolv/meta.yaml b/data/tabular/freesolv/meta.yaml index 2cb60ca9c..ef75276db 100644 --- a/data/tabular/freesolv/meta.yaml +++ b/data/tabular/freesolv/meta.yaml @@ -90,7 +90,7 @@ templates: \ {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {GAFF__names__noun} of {GAFF#} {GAFF__units}: {SMILES#}" - The {exp_value__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} - The {exp_value__names__noun} of the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} - - The {exp_value__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} + - The {exp_value__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units} - "Task: Please predict a molecule feature based on the description.\nDescription: Predict the {exp_value__names__noun} in {exp_value__units} of a molecule.\n\ {#Molecule |!}{SMILES__description}: {SMILES#}\nConstraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {exp_value__units}\ \ without using any {#other|additional!} words.\nResult: {exp_value#} {exp_value__units}" @@ -98,7 +98,7 @@ templates: \ that has {exp_value__names__noun} of {exp_value#} {exp_value__units}.\nResult: {SMILES#}" - The {GAFF__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} - The {GAFF__names__noun} of the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} - - The {GAFF__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} + - The {GAFF__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units} - "Task: Please predict a molecule feature based on the description.\nDescription: Predict the {GAFF__names__noun} in {GAFF__units} of a molecule.\n\ {#Molecule |!}{SMILES__description}: {SMILES#}\nConstraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {GAFF__units}\ \ without using any {#other|additional!} words.\nResult: {GAFF#} {GAFF__units}" diff --git a/data/tabular/freesolv/transform.py b/data/tabular/freesolv/transform.py index f5abbde3e..722803e49 100644 --- a/data/tabular/freesolv/transform.py +++ b/data/tabular/freesolv/transform.py @@ -195,7 +195,7 @@ def get_and_transform_data(): # Benchmarking text templates "The {exp_value__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 "The {exp_value__names__noun} of the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 - "The {exp_value__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 + "The {exp_value__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {exp_value#} {exp_value__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {exp_value__names__noun} in {exp_value__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} @@ -207,7 +207,7 @@ def get_and_transform_data(): # GAFF "The {GAFF__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 "The {GAFF__names__noun} of the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 - "The {GAFF__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 + "The {GAFF__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {GAFF#} {GAFF__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {GAFF__names__noun} in {GAFF__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} diff --git a/data/tabular/half_life_obach/meta.yaml b/data/tabular/half_life_obach/meta.yaml index 00282314f..a9b9bcac8 100644 --- a/data/tabular/half_life_obach/meta.yaml +++ b/data/tabular/half_life_obach/meta.yaml @@ -9,10 +9,11 @@ targets: description: the time it takes for the plasma concentration of a drug in the body to be reduced by half units: hours type: continuous + significant_digits: 2 names: - - noun: half life - - noun: half life time - - noun: drug half life time + - noun: half life in humans after IV administration + - noun: half life time in humans after IV administration + - noun: drug half life time in humans after IV administration uris: - http://purl.bioontology.org/ontology/MESH/D006207 benchmarks: diff --git a/data/tabular/half_life_obach/transform.py b/data/tabular/half_life_obach/transform.py index 47b641166..7b2d98e5d 100644 --- a/data/tabular/half_life_obach/transform.py +++ b/data/tabular/half_life_obach/transform.py @@ -54,9 +54,9 @@ def get_and_transform_data(): "units": "hours", # units of the values in this column (leave empty if unitless) "type": "continuous", "names": [ # names for the property (to sample from for building the prompts) - {"noun": "half life"}, - {"noun": "half life time"}, - {"noun": "drug half life time"}, + {"noun": "half life in humans after IV administration"}, + {"noun": "half life time in humans after IV administration"}, + {"noun": "drug half life time in humans after IV administration"}, # { # "noun": "the duration by which the concentration of the drug in the body is reduced by half" # }, diff --git a/data/tabular/inverse_3/transform.py b/data/tabular/inverse_3/transform.py index 77ea46f50..52e4adb6b 100644 --- a/data/tabular/inverse_3/transform.py +++ b/data/tabular/inverse_3/transform.py @@ -68,7 +68,7 @@ def transform(): # merge on SMILES, keep where we have SMILES in both datasets merged = pd.merge(df_1, df_2, on="SMILES", how="inner") - print(len(merged)) + print(len(merged)) features = [] feature_names = FEATURIZER.feature_labels() diff --git a/data/tabular/iupac_smiles/meta.yaml b/data/tabular/iupac_smiles/meta.yaml index 45232751c..fe6f3267d 100644 --- a/data/tabular/iupac_smiles/meta.yaml +++ b/data/tabular/iupac_smiles/meta.yaml @@ -60,14 +60,14 @@ templates: - The {SMILES__description} of the {#molecule|chemical|compound!} with {CAS_like_Style__names__noun} {CAS_like_Style#} is {SMILES#}. - The {SMILES__description} of the {#molecule|chemical|compound!} with {Preferred__names__noun} {Preferred#} is {SMILES#}. - |- - Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {Traditional__names__noun}. + Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|compound!} {#given the|based on the!} {Traditional__names__noun}. IUPAC name: {Traditional#} Result: {SMILES#} - |- - Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {Systematic__names__noun}. + Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|compound!} {#given the|based on the!} {Systematic__names__noun}. IUPAC name: {Systematic#} Result: {SMILES#} - |- - Task: Please {#give me|create|generate!} the {#SMILES|SMILES representation!} of a {#molecule|chemical|compound!} {#given the|based on the!} {CAS_like_Style__names__noun}. + Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|compound!} {#given the|based on the!} {CAS_like_Style__names__noun}. IUPAC name: {CAS_like_Style#} Result: {SMILES#} diff --git a/data/tabular/mol_repr_transl/transform.py b/data/tabular/mol_repr_transl/transform.py index cd4d6dbf0..64f140084 100644 --- a/data/tabular/mol_repr_transl/transform.py +++ b/data/tabular/mol_repr_transl/transform.py @@ -74,9 +74,12 @@ def str_presenter(dumper, data: str): def smiles_with_hydrogens(smiles): """Add hydrogens to smiles string""" - mol = Chem.MolFromSmiles(smiles) - mol = Chem.AddHs(mol) - return Chem.MolToSmiles(mol) + try: + mol = Chem.MolFromSmiles(smiles) + mol = Chem.AddHs(mol) + return Chem.MolToSmiles(mol) + except BaseException: # noqa: E722 + return pd.NA def get_and_transform_data(): @@ -104,6 +107,7 @@ def get_and_transform_data(): for i in range(col_len): for j in range(i + 1, col_len): subset_cols = [df.columns[i], df.columns[j]] + print(subset_cols) dataset_name = "mol_repr_transl_" + "_".join(subset_cols) dataset_name = dataset_name.lower() @@ -115,6 +119,7 @@ def get_and_transform_data(): # if "split" in df.columns: df_subset = df[subset_cols + ["split"]].dropna() # else: + # elif "split" not in df.columns: # df_subset = df[subset_cols].dropna() df_subset.columns = [ x + col_suffix if x != "split" else x for x in subset_cols diff --git a/data/tabular/mona/meta.yaml b/data/tabular/mona/meta.yaml index 74982c3b3..fc6a0e719 100644 --- a/data/tabular/mona/meta.yaml +++ b/data/tabular/mona/meta.yaml @@ -74,7 +74,7 @@ templates: Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {spectral_entropy__names__noun} of {spectral_entropy#} {spectral_entropy__units}: {SMILES#} - The {spectral_entropy__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} - The {spectral_entropy__names__noun} of the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} - - The {spectral_entropy__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} + - The {spectral_entropy__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units} - |- Task: Please predict a molecule feature based on the description. Description: Predict the {spectral_entropy__names__noun} in {spectral_entropy__units} of a molecule. diff --git a/data/tabular/mona/transform.py b/data/tabular/mona/transform.py index 5e69223fb..9775e3f46 100644 --- a/data/tabular/mona/transform.py +++ b/data/tabular/mona/transform.py @@ -90,7 +90,7 @@ # Benchmarking text templates "The {spectral_entropy__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 "The {spectral_entropy__names__noun} of the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 - "The {spectral_entropy__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 + "The {spectral_entropy__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {spectral_entropy#} {spectral_entropy__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {spectral_entropy__names__noun} in {spectral_entropy__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} diff --git a/data/tabular/p_glycoprotein_inhibition_broccatelli_et_al/meta.yaml b/data/tabular/p_glycoprotein_inhibition_broccatelli_et_al/meta.yaml index 8916e0a12..dcd292168 100644 --- a/data/tabular/p_glycoprotein_inhibition_broccatelli_et_al/meta.yaml +++ b/data/tabular/p_glycoprotein_inhibition_broccatelli_et_al/meta.yaml @@ -75,7 +75,7 @@ templates: Constraint: Answer the question in a {#full|complete!} sentence. Result: This molecule is {Pgp_inhibition#not &NULL}{Pgp_inhibition__names__adjective}. - |- - Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. + Task: Please {#give me|create|generate!} a {SMILES__description} of a {#molecule|chemical|chemical compound!} based on the {#text |!}description{# below|!}. Description: A molecule that is {Pgp_inhibition__names__adjective}. Result: {SMILES#} - |- @@ -91,12 +91,12 @@ templates: User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that is {Pgp_inhibition#not &NULL}{Pgp_inhibition__names__adjective}? Assistant: This is a molecule that is {Pgp_inhibition#not &NULL}{Pgp_inhibition__names__adjective}: {SMILES#} - |- - User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. + User: I want to {#come up with|create|generate!} a {SMILES__description} of a {#molecule|chemical|chemical compound!}. Assistant: This sounds {#very exciting. |very interesting. | very curious. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule should {Pgp_inhibition#not &NULL}be {Pgp_inhibition__names__adjective}. Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} is {Pgp_inhibition#not &NULL}{Pgp_inhibition__names__adjective}: {SMILES#} - |- - User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. + User: I want to {#come up with|create|generate!} a {SMILES__description} of a {#molecule|chemical|chemical compound!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should it be a special {#molecule|one!}? User: Yes, the molecule should {Pgp_inhibition#not &NULL}be {Pgp_inhibition__names__adjective}. Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} is {Pgp_inhibition#not &NULL}{Pgp_inhibition__names__adjective}: {SMILES#} @@ -108,7 +108,7 @@ templates: Constraint: Even if you are {#uncertain|not sure!}, you must pick either "True" or "False" without using any {#other|additional!} words. Result: {Pgp_inhibition#False&True} - |- - Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. + Task: Please {#give me|create|generate!} a {SMILES__description} of a {#molecule|chemical|chemical compound!} based on the {#text |!}description{# below|!}. Description: A molecule that is {Pgp_inhibition__names__adjective}. Result: {SMILES#} - |- diff --git a/data/tabular/plasma_protein_binding_rate_astrazeneca/meta.yaml b/data/tabular/plasma_protein_binding_rate_astrazeneca/meta.yaml deleted file mode 100644 index d90ff06d5..000000000 --- a/data/tabular/plasma_protein_binding_rate_astrazeneca/meta.yaml +++ /dev/null @@ -1,52 +0,0 @@ ---- -name: plasma_protein_binding_rate_astrazeneca -description: |- - The human plasma protein binding rate (PPBR) is expressed as the percentage - of a drug bound to plasma proteins in the blood. This rate strongly affect a drug's - efficiency of delivery. The less bound a drug is, the more efficiently it can - traverse and diffuse to the site of actions. -targets: - - id: rate_of_PPBR - description: percentage of a drug bound to plasma proteins in the blood - units: '%' - type: continuous - names: - - noun: human plasma protein binding rate (PPBR) - - noun: human plasma protein binding rate - - noun: PPBR - uris: - - http://purl.jp/bio/4/id/201306028362680450 - - http://www.bioassayontology.org/bao#BAO_0010135 -identifiers: - - id: SMILES - type: SMILES - description: SMILES - - id: Species - type: Other - names: - - noun: species - description: species in which the measurement was carried out - - id: chembl_id - type: Other - names: - - noun: ChEMBL id - - noun: ChEMBL identifier number - description: chembl ids - sample: false -license: CC BY 4.0 -links: - - url: http://dx.doi.org/10.6019/CHEMBL3301361 - description: corresponding publication - - url: https://tdcommons.ai/single_pred_tasks/adme/#ppbr-plasma-protein-binding-rate-astrazeneca - description: data source -num_points: 8070 -bibtex: - - |- - @techreport{Hersey2015, - doi = {10.6019/chembl3301361}, - url = {https://doi.org/10.6019/chembl3301361}, - year = {2015}, - month = feb, - publisher = {EMBL-EBI}, - author = {Anne Hersey}, - title = {ChEMBL Deposited Data Set - AZ dataset} diff --git a/data/tabular/plasma_protein_binding_rate_astrazeneca/transform.py b/data/tabular/plasma_protein_binding_rate_astrazeneca/transform.py deleted file mode 100644 index 28c4f892d..000000000 --- a/data/tabular/plasma_protein_binding_rate_astrazeneca/transform.py +++ /dev/null @@ -1,148 +0,0 @@ -import pandas as pd -import yaml -from tdc.single_pred import ADME - - -def get_and_transform_data(): - # get raw data - target_subfolder = "PPBR_AZ" - data = ADME(name=target_subfolder) - dfs = [] - for species in [ - "Canis lupus familiaris", - "Cavia porcellus", - "Homo sapiens", - "Mus musculus", - "Rattus norvegicus", - ]: - data.get_other_species(species) - splits = data.get_split() - df_train = splits["train"] - df_valid = splits["valid"] - df_test = splits["test"] - df_train["split"] = "train" - df_valid["split"] = "valid" - df_test["split"] = "test" - df_tmp = pd.concat([df_train, df_valid, df_test], axis=0) - df_tmp["Species"] = species - dfs.append(df_tmp) - df = pd.concat(dfs, axis=0) - - fn_data_original = "data_original.csv" - df.to_csv(fn_data_original, index=False) - del df - - # create dataframe - df = pd.read_csv( - fn_data_original, - delimiter=",", - ) # not necessary but ensure we can load the saved data - # create dataframe - df = pd.read_csv(fn_data_original, sep=",") - # check if fields are the same - fields_orig = df.columns.tolist() - assert fields_orig == ["Drug_ID", "Drug", "Y", "split", "Species"] - - # overwrite column names = fields - fields_clean = ["chembl_id", "SMILES", "rate_of_PPBR", "split", "Species"] - df.columns = fields_clean - - # data cleaning - # remove leading and trailing white space characters - df.chembl_id = df.chembl_id.str.strip() - - df = df.dropna() - assert not df.duplicated().sum() - - # save to csv - fn_data_csv = "data_clean.csv" - df.to_csv(fn_data_csv, index=False) - meta = { - "name": "plasma_protein_binding_rate_astrazeneca", - "description": """The human plasma protein binding rate (PPBR) is expressed as the percentage -of a drug bound to plasma proteins in the blood. This rate strongly affect a drug's -efficiency of delivery. The less bound a drug is, the more efficiently it can -traverse and diffuse to the site of actions.""", - "targets": [ - { - "id": "rate_of_PPBR", - "description": "percentage of a drug bound to plasma proteins in the blood", - "units": "%", - "type": "continuous", - "names": [ - {"noun": "human plasma protein binding rate (PPBR)"}, - {"noun": "human plasma protein binding rate"}, - {"noun": "PPBR"}, - ], - "uris": [ - "http://purl.jp/bio/4/id/201306028362680450", - "http://www.bioassayontology.org/bao#BAO_0010135", - # todo: this is the assay but is the number after BAO_ the PubChem assay id? - ], - }, - ], - "identifiers": [ - { - "id": "SMILES", # column name - "type": "SMILES", # can be "SMILES", "SELFIES", "IUPAC", "Other" - "description": "SMILES", # description (optional, except for "Other") - }, - { - "id": "Species", # column name - "type": "Other", # can be "SMILES", "SELFIES", "IUPAC", "Other" - "names": [{"noun": "species"}], - "description": "species in which the measurement was carried out", - }, - { - "id": "chembl_id", # column name - "type": "Other", # can be "SMILES", "SELFIES", "IUPAC", "Other" - "names": [{"noun": "ChEMBL id"}, {"noun": "ChEMBL identifier number"}], - "description": "chembl ids", # description (optional, except for "Other") - "sample": False, - }, - ], - "license": "CC BY 4.0", # license under which the original dataset was published - "links": [ # list of relevant links (original dataset, other uses, etc.) - { - "url": "http://dx.doi.org/10.6019/CHEMBL3301361", - "description": "corresponding publication", - }, - { - "url": "https://tdcommons.ai/single_pred_tasks/adme/#ppbr-plasma-protein-binding-rate-astrazeneca", - "description": "data source", - }, - ], - "num_points": len(df), # number of datapoints in this dataset - "bibtex": [ - """@techreport{Hersey2015, -doi = {10.6019/chembl3301361}, -url = {https://doi.org/10.6019/chembl3301361}, -year = {2015}, -month = feb, -publisher = {EMBL-EBI}, -author = {Anne Hersey}, -title = {ChEMBL Deposited Data Set - AZ dataset}""", - ], - } - - def str_presenter(dumper, data): - """configures yaml for dumping multiline strings - Ref: https://stackoverflow.com/questions/8640959/how-can-i-control-what-scalar-form-pyyaml-uses-for-my-data - """ - if data.count("\n") > 0: # check for multiline string - return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|") - return dumper.represent_scalar("tag:yaml.org,2002:str", data) - - yaml.add_representer(str, str_presenter) - yaml.representer.SafeRepresenter.add_representer( - str, str_presenter - ) # to use with safe_dum - fn_meta = "meta.yaml" - with open(fn_meta, "w") as f: - yaml.dump(meta, f, sort_keys=False) - - print(f"Finished processing {meta['name']} dataset!") - - -if __name__ == "__main__": - get_and_transform_data() diff --git a/data/tabular/rdkit_features/meta.yaml b/data/tabular/rdkit_features/meta.yaml index 74edb9591..dcc7750b6 100644 --- a/data/tabular/rdkit_features/meta.yaml +++ b/data/tabular/rdkit_features/meta.yaml @@ -141,7 +141,7 @@ templates: Answer: {Apol#} - |- User: I want to {#design|create|make|synthesize|analyze!} a {#molecule|compound|chemical!} with a {NumHDonors__names__noun} of {NumHDonors#} and a {NumHAcceptors__names__noun} of {NumHAcceptors#}. - Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account|!}? + Assistant: {#Cool, do|Nice, do|Interesting, do|That's interesting, do|That is a very interesting question, do|Do!} you have some additional {#constraints|requirements|conditions|limitations!}{# I should take into account| that help me narrow down the search| that I should consider| I should consider| I should take into account!}? User: {#Yes, |Indeed, |Yeah, |Yea, |Yep, |!}I want the {NumHeteroatoms__names__noun} to be {NumHeteroatoms#}. Assistant: {#Then, |In that case, |In that situation, |In that scenario, |!}I {#recommend|suggest|propose|advise!} the {#molecule|compound|chemical!} with {SMILES__description} {SMILES#}. - |- diff --git a/data/tabular/solubility_aqsoldb/meta.yaml b/data/tabular/solubility_aqsoldb/meta.yaml index 70bc45aa0..30804254f 100644 --- a/data/tabular/solubility_aqsoldb/meta.yaml +++ b/data/tabular/solubility_aqsoldb/meta.yaml @@ -55,7 +55,7 @@ bibtex: and 2D descriptors for a diverse set of compounds}, journal = {Scientific Data} templates: - - The name of the {#compound|drug|chemical|molecule!} with the {#SMILES|SMILES string|!} {SMILES#} is {compound_name#}. + #- The name of the {#compound|drug|chemical|molecule!} with the {#SMILES|SMILES string|!} {SMILES#} is {compound_name#}. # doesn't work with class-balanced sampling - The {aqeuous_solubility__names__noun} of the {#compound|drug|chemical|molecule!} with the {SMILES__description} {SMILES#} is {aqeuous_solubility#} {aqeuous_solubility__units}. - The {aqeuous_solubility__names__noun} of the {#compound|drug|chemical|molecule!} with the {compound_name__names__noun} {compound_name#} is {aqeuous_solubility#} diff --git a/data/tabular/solubility_aqsoldb/transform.py b/data/tabular/solubility_aqsoldb/transform.py index cdb56f44f..816ef5ff6 100644 --- a/data/tabular/solubility_aqsoldb/transform.py +++ b/data/tabular/solubility_aqsoldb/transform.py @@ -1,5 +1,6 @@ import pandas as pd -import yaml + +# import yaml from tdc.single_pred import ADME @@ -43,102 +44,102 @@ def get_and_transform_data(): # save to csv fn_data_csv = "data_clean.csv" df.to_csv(fn_data_csv, index=False) - + # META YAML IS NOT USED! # create meta yaml - meta = { - "name": "solubility_aqsoldb", # unique identifier, we will also use this for directory names - "description": """Aqeuous solubility measures a drug's ability to dissolve in water. -Poor water solubility could lead to slow drug absorptions, inadequate bioavailablity -and even induce toxicity. More than 40 percent of new chemical entities are -not soluble.""", - "targets": [ - { - "id": "aqeuous_solubility", # name of the column in a tabular dataset - "description": "aqueous solubility", # description of what this column means - "units": "log(mol/L)", # units of the values in this column (leave empty if unitless) - "type": "continuous", - "names": [ # names for the property (to sample from for building the prompts) - {"noun": "aqeuous solubility"}, - {"noun": "water solubility"}, - {"noun": "ability of a drug to dissolve in a water"}, - {"adjective": "dissolves in a water"}, - ], - "uris": [ - "http://purl.jp/bio/4/id/200906006880450101", - "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C60821", - ], - }, - ], - "benchmarks": [ - { - "name": "TDC", # unique benchmark name - "link": "https://tdcommons.ai/", # benchmark URL - "split_column": "split", # name of the column that contains the split information - }, - ], - "identifiers": [ - { - "id": "SMILES", # column name - "type": "SMILES", # can be "SMILES", "SELFIES", "IUPAC", "Other" - "description": "SMILES", # description (optional, except for "Other") - }, - { - "id": "compound_name", # column name - "type": "Other", # can be "SMILES", "SELFIES", "IUPAC", "Other" - "names": [ - {"noun": "compound name"}, - {"noun": "drug name"}, - {"noun": "generic drug name"}, - ], - "description": "compound name", # description (optional, except for "Other") - }, - ], - "license": "CC BY 4.0", # license under which the original dataset was published - "links": [ # list of relevant links (original dataset, other uses, etc.) - { - "url": "https://doi.org/10.1038/s41597-019-0151-1", - "description": "corresponding publication", - }, - { - "url": "https://tdcommons.ai/single_pred_tasks/adme/#solubility-aqsoldb", - "description": "data source", - }, - ], - "num_points": len(df), # number of datapoints in this dataset - "bibtex": [ - """@article{Sorkun_2019, -doi = {10.1038/s41597-019-0151-1}, -url = {https://doi.org/10.1038%2Fs41597-019-0151-1}, -year = {2019}, -month = aug, -publisher = {Springer Science and Business Media LLC}, -volume = {6}, -number = {1}, -author = {Murat Cihan Sorkun and Abhishek Khetan and -Suleyman Er}, -title = {AqSolDB, a curated reference set of aqueous solubility -and 2D descriptors for a diverse set of compounds}, -journal = {Scientific Data}""", - ], - } - - def str_presenter(dumper, data): - """configures yaml for dumping multiline strings - Ref: https://stackoverflow.com/questions/8640959/how-can-i-control-what-scalar-form-pyyaml-uses-for-my-data - """ - if data.count("\n") > 0: # check for multiline string - return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|") - return dumper.represent_scalar("tag:yaml.org,2002:str", data) - - yaml.add_representer(str, str_presenter) - yaml.representer.SafeRepresenter.add_representer( - str, str_presenter - ) # to use with safe_dum - fn_meta = "meta.yaml" - with open(fn_meta, "w") as f: - yaml.dump(meta, f, sort_keys=False) + # meta = { + # "name": "solubility_aqsoldb", # unique identifier, we will also use this for directory names + # "description": """Aqeuous solubility measures a drug's ability to dissolve in water. + # Poor water solubility could lead to slow drug absorptions, inadequate bioavailablity + # and even induce toxicity. More than 40 percent of new chemical entities are + # not soluble.""", + # "targets": [ + # { + # "id": "aqeuous_solubility", # name of the column in a tabular dataset + # "description": "aqueous solubility", # description of what this column means + # "units": "log(mol/L)", # units of the values in this column (leave empty if unitless) + # "type": "continuous", + # "names": [ # names for the property (to sample from for building the prompts) + # {"noun": "aqeuous solubility"}, + # {"noun": "water solubility"}, + # {"noun": "ability of a drug to dissolve in a water"}, + # {"adjective": "dissolves in a water"}, + # ], + # "uris": [ + # "http://purl.jp/bio/4/id/200906006880450101", + # "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C60821", + # ], + # }, + # ], + # "benchmarks": [ + # { + # "name": "TDC", # unique benchmark name + # "link": "https://tdcommons.ai/", # benchmark URL + # "split_column": "split", # name of the column that contains the split information + # }, + # ], + # "identifiers": [ + # { + # "id": "SMILES", # column name + # "type": "SMILES", # can be "SMILES", "SELFIES", "IUPAC", "Other" + # "description": "SMILES", # description (optional, except for "Other") + # }, + # { + # "id": "compound_name", # column name + # "type": "Other", # can be "SMILES", "SELFIES", "IUPAC", "Other" + # "names": [ + # {"noun": "compound name"}, + # {"noun": "drug name"}, + # {"noun": "generic drug name"}, + # ], + # "description": "compound name", # description (optional, except for "Other") + # }, + # ], + # "license": "CC BY 4.0", # license under which the original dataset was published + # "links": [ # list of relevant links (original dataset, other uses, etc.) + # { + # "url": "https://doi.org/10.1038/s41597-019-0151-1", + # "description": "corresponding publication", + # }, + # { + # "url": "https://tdcommons.ai/single_pred_tasks/adme/#solubility-aqsoldb", + # "description": "data source", + # }, + # ], + # "num_points": len(df), # number of datapoints in this dataset + # "bibtex": [ + # """@article{Sorkun_2019, + # doi = {10.1038/s41597-019-0151-1}, + # url = {https://doi.org/10.1038%2Fs41597-019-0151-1}, + # year = {2019}, + # month = aug, + # publisher = {Springer Science and Business Media LLC}, + # volume = {6}, + # number = {1}, + # author = {Murat Cihan Sorkun and Abhishek Khetan and + # Suleyman Er}, + # title = {AqSolDB, a curated reference set of aqueous solubility + # and 2D descriptors for a diverse set of compounds}, + # journal = {Scientific Data}""", + # ], + # } + # + # def str_presenter(dumper, data): + # """configures yaml for dumping multiline strings + # Ref: https://stackoverflow.com/questions/8640959/how-can-i-control-what-scalar-form-pyyaml-uses-for-my-data + # """ + # if data.count("\n") > 0: # check for multiline string + # return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|") + # return dumper.represent_scalar("tag:yaml.org,2002:str", data) + # + # yaml.add_representer(str, str_presenter) + # yaml.representer.SafeRepresenter.add_representer( + # str, str_presenter + # ) # to use with safe_dum + # fn_meta = "meta.yaml" + # with open(fn_meta, "w") as f: + # yaml.dump(meta, f, sort_keys=False) - print(f"Finished processing {meta['name']} dataset!") + # print(f"Finished processing {meta['name']} dataset!") if __name__ == "__main__": diff --git a/data/tabular/sr_p53_tox21/meta.yaml b/data/tabular/sr_p53_tox21/meta.yaml index 94646f538..7c5647259 100644 --- a/data/tabular/sr_p53_tox21/meta.yaml +++ b/data/tabular/sr_p53_tox21/meta.yaml @@ -55,8 +55,9 @@ templates: - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {toxicity_SR-p53#not &NULL}{toxicity_SR-p53__names__adjective}. - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {toxicity_SR-p53#not &NULL}{toxicity_SR-p53__names__gerund}. - Based on the {SMILES__description} {#representation |!}{SMILES#}, the molecule has {toxicity_SR-p53#no &NULL}{toxicity_SR-p53__names__noun} {#properties|characteristics|features!}. - - The {SMILES__description} {SMILES#} {#represents|is from!} a molecule that is {toxicity_SR-p53#not &NULL}identified as {toxicity_SR-p53__names__adjective}. - - The {#molecule |!}{SMILES__description} {SMILES#} is {toxicity_SR-p53#not &NULL}{toxicity_SR-p53__names__adjective}. + - The {#molecule|chemical!} with the {SMILES__description} {SMILES#} {#represents|is from!} a molecule that is {toxicity_SR-p53#not &NULL}identified + as {toxicity_SR-p53__names__adjective}. + - The {#molecule|chemical!} with the {SMILES__description} {SMILES#} is {toxicity_SR-p53#not &NULL}{toxicity_SR-p53__names__adjective}. - |- Task: Please classify a molecule based on the description. Description: A molecule that is {toxicity_SR-p53__names__adjective}. @@ -103,7 +104,7 @@ templates: Constraint: Even if you are {#uncertain|not sure!}, you must pick either "True" or "False" without using any {#other|additional!} words. Result: {toxicity_SR-p53#False&True} - |- - Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. + Task: Please {#give me|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical compound!} based on the {#text |!}description{# below|!}. Description: A molecule that is {toxicity_SR-p53__names__adjective}. Result: {SMILES#} - |- diff --git a/data/text_sampling/extend_tabular.py b/data/text_sampling/extend_tabular.py index 9d39fc5b3..b29be4b6f 100644 --- a/data/text_sampling/extend_tabular.py +++ b/data/text_sampling/extend_tabular.py @@ -3,19 +3,19 @@ import os import random import time -from functools import partial import pandas as pd from utils import load_yaml -from chemnlp.data.reprs import ( # smiles_to_safe, +from chemnlp.data.reprs import ( # smiles_to_safe,; smiles_to_iupac_name, smiles_to_canoncial, smiles_to_deepsmiles, smiles_to_inchi, - smiles_to_iupac_name, smiles_to_selfies, ) +# from functools import partial + def _try_except_none(func, *args, **kwargs): try: @@ -35,27 +35,28 @@ def line_reps_from_smiles( Use None if some representation cannot be computed. """ - if smiles in unique_smiles_processed: - # print("SMILES was already previously processed.") - representations = df_processed[df_processed.SMILES == smiles].to_dict( - orient="records" - )[0] - else: - # print("Process SMILES.") - representations = { - "smiles": smiles, - "selfies": _try_except_none(smiles_to_selfies, smiles), - "deepsmiles": _try_except_none(smiles_to_deepsmiles, smiles), - "canonical": _try_except_none(smiles_to_canoncial, smiles), - "inchi": _try_except_none(smiles_to_inchi, smiles), - "iupac_name": _try_except_none(smiles_to_iupac_name, smiles), - # "safe": _try_except_none(smiles_to_safe, smiles), - } - - # Note: This needs proper filelocking to work. - # if path_processed_smiles: - # pd.DataFrame(representations, index=[0]).to_csv(path_processed_smiles, mode="a", header=False, index=False) - # print("Added processed SMILES to extend_tabular_processed.csv file.") + # This makes it only super slow. It is faster to always process from scratch than have the look-up. + # if smiles in unique_smiles_processed: + # # print("SMILES was already previously processed.") + # representations = df_processed[df_processed.SMILES == smiles].to_dict( + # orient="records" + # )[0] + # else: + # print("Process SMILES.") + representations = { + "smiles": smiles, + "selfies": _try_except_none(smiles_to_selfies, smiles), + "deepsmiles": _try_except_none(smiles_to_deepsmiles, smiles), + "canonical": _try_except_none(smiles_to_canoncial, smiles), + "inchi": _try_except_none(smiles_to_inchi, smiles), + # "iupac_name": _try_except_none(smiles_to_iupac_name, smiles), # not used + # "safe": _try_except_none(smiles_to_safe, smiles), # not used + } + + # Note: This needs proper filelocking to work. + # if path_processed_smiles: + # pd.DataFrame(representations, index=[0]).to_csv(path_processed_smiles, mode="a", header=False, index=False) + # print("Added processed SMILES to extend_tabular_processed.csv file.") return representations @@ -63,28 +64,49 @@ def line_reps_from_smiles( if __name__ == "__main__": path_base = __file__.replace("text_sampling/extend_tabular.py", "") path_data_dir = sorted(glob.glob(path_base + "tabular/*")) - path_data_dir += sorted( + path_data_dir = sorted( [p for p in glob.glob(path_base + "kg/*") if os.path.isdir(p)] ) + # index = [i for i, x in enumerate(path_data_dir) if x.find("herg_karim_et_al") != -1][0] + # index = [i for i, x in enumerate(path_data_dir) if x.find("rdkit_features") != -1][0] + # path_data_dir = path_data_dir[index:] + # path_data_dir = path_data_dir[index+1:] + # path_data_dir = [path_data_dir[index]] + # path_data_dir = [ + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/elsevier_oa_cc-by_corpus", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/aminoacids", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/qmof_gcmc", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/orbnet_denali", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/smiles_to_3d", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/nomad_structure", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/drugchat_liang_zhang_et_al", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/uniprot_binding_sites_multiple", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/chembl_v29", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/uniprot_binding_single", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/orbnet_denali", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/iupac_smiles", + # "/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/rdkit_features", + # ] + path_processed_smiles = path_base + "text_sampling/extend_tabular_processed.csv" - if os.path.isfile(path_processed_smiles): - df_processed = pd.read_csv(path_processed_smiles, low_memory=False) - unique_smiles_processed = df_processed.SMILES.unique().tolist() - process_func = partial( - line_reps_from_smiles, - df_processed=df_processed, - unique_smiles_processed=unique_smiles_processed, - path_processed_smiles=path_processed_smiles, - ) - print("Using preprocessed SMILES.") - else: - process_func = line_reps_from_smiles + # if os.path.isfile(path_processed_smiles): + # df_processed = pd.read_csv(path_processed_smiles, low_memory=False) + # unique_smiles_processed = df_processed.SMILES.unique().tolist() + # process_func = partial( + # line_reps_from_smiles, + # df_processed=df_processed, + # unique_smiles_processed=unique_smiles_processed, + # path_processed_smiles=path_processed_smiles, + # ) + # print("Using preprocessed SMILES.") + # else: + process_func = line_reps_from_smiles for path in path_data_dir: # subselect one path # if path.find("data/kg/compound_protein_compound") == -1: continue - # if path.find("data/tabular/h2_storage_materials") == -1: continue + # if path.find("data/tabular/uniprot_") == -1: continue if not os.path.isdir(path): continue @@ -154,7 +176,7 @@ def line_reps_from_smiles( "canonical": [], "inchi": [], # "tucan": [], - "iupac_name": [], + # "iupac_name": [], # "safe": [], } diff --git a/data/text_sampling/extend_tabular_processed.py b/data/text_sampling/extend_tabular_processed.py index 9882d525d..86bc7eb44 100644 --- a/data/text_sampling/extend_tabular_processed.py +++ b/data/text_sampling/extend_tabular_processed.py @@ -7,6 +7,7 @@ path_base = __file__.replace("text_sampling/extend_tabular_processed.py", "") path_data_dir = sorted(glob.glob(path_base + "tabular/**/data_clean.csv")) path_data_dir += sorted(glob.glob(path_base + "kg/**/data_clean.csv")) + # print(len(path_data_dir)) path_processed_smiles = path_base + "text_sampling/extend_tabular_processed.csv" cols = [ @@ -15,8 +16,9 @@ "deepsmiles", "canonical", "inchi", - "iupac_name", + # "iupac_name", # "safe", + "split", ] if not os.path.isfile(path_processed_smiles): @@ -28,6 +30,9 @@ # if path.find("data/kg/compound_chebi/data_clean.csv") == -1: continue # if path.find("data/kg/compound_protein_compound/data_clean.csv") == -1: continue # if path.find("data/tabular/h2_storage_materials") == -1: continue + # if path.find("rdkit") != -1: continue + # if path.find("qmof") != -1: continue + # if path.find("iupac_smiles") != -1: continue print(f"\n###### {path}") if not os.path.isfile(path): @@ -36,6 +41,11 @@ # check cols are there df = pd.read_csv(path, index_col=False, nrows=0) # only get columns + + if "split" not in df.columns: + print(f"No split column in: {path}") + continue + if set(cols).issubset(df.columns): df = pd.read_csv(path, low_memory=False) df_append = df[cols].copy() diff --git a/data/text_sampling/get_dataset_overlap.py b/data/text_sampling/get_dataset_overlap.py new file mode 100644 index 000000000..8c86a6409 --- /dev/null +++ b/data/text_sampling/get_dataset_overlap.py @@ -0,0 +1,42 @@ +import glob + +import pandas as pd + +skip_ds = [ + "rdkit_features", + "iupac_smiles", + "orbnet_denali", + "qmof_gcmc", + "qmof_quantum", + "zinc", +] + +if __name__ == "__main__": + path_base = __file__.replace("text_sampling/get_dataset_overlap.py", "") + fns = sorted(glob.glob(path_base + "tabular/**/data_clean.csv")) + for i in range(len(fns)): + for j in range(i + 1, len(fns)): + fn1 = fns[i] + fn2 = fns[j] + ds1 = fn1.split("/")[-2] + ds2 = fn2.split("/")[-2] + if (ds1 in skip_ds) or (ds2 in skip_ds): + continue + df1 = pd.read_csv( + fn1, index_col=False, low_memory=False, nrows=0 + ) # only get columns + df2 = pd.read_csv( + fn2, index_col=False, low_memory=False, nrows=0 + ) # only get columns + if ("SMILES" in df1.columns) and ("SMILES" in df2.columns): + df1 = pd.read_csv( + fn1, index_col=False, low_memory=False, usecols=["SMILES"] + ) + df2 = pd.read_csv( + fn2, index_col=False, low_memory=False, usecols=["SMILES"] + ) + print( + fn1.split("/")[-2], + fn2.split("/")[-2], + len(set(df1.SMILES) & set(df2.SMILES)), + ) diff --git a/data/text_sampling/preprocess_kg.py b/data/text_sampling/preprocess_kg.py index 84adc737b..81a8cc5e3 100644 --- a/data/text_sampling/preprocess_kg.py +++ b/data/text_sampling/preprocess_kg.py @@ -32,14 +32,22 @@ """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}.""", # noqa E501 ], - "compound_protein_compound": [ - """The {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}.""", # noqa E501 - """The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}.""", # noqa E501 - """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} with the {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} with the {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. -User: Can you {#tell me|create|generate!} {#another|a!} {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? -Assistant: {#Sure|Yes|Of course|Yes, of course!}, the SMILES{# representation|!} {node3_smiles#} {#also |!}{rel1_type#} the {node2_type#} {node2_protein_names#}.""", # noqa E501 - ], + # "compound_protein_compound": [ + # """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}.""", # noqa E501 + # """The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}.""", # noqa E501 + # """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? # noqa E501 + # Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. # noqa E501 + # User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? # noqa E501 + # Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}.""", # noqa E501 + # ], + # "compound_protein_compound_3": [ + # """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} the {node3_type#} {node3_smiles#}.""", # noqa E501 + # """The {node2_type#} {node2_protein_names#} is targeted by the compound with the {SMILES__description} {SMILES#} and {node3_smiles#}.""", # noqa E501 + # """User: Can you {#give me|come up with!} {#one|an!} example for a {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? # noqa E501 + # Assistant: {#Yes|Of course|Yes, of course|Sure!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. # noqa E501 + # User: Can you {#tell|create|generate!} another {node1_type#} {SMILES__description} that {rel1_type#} the {node2_type#} {node2_protein_names#}? # noqa E501 + # Assistant: {#Sure|Yes|Of course|Yes, of course!}, the {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node3_type#} {SMILES__description} {node3_smiles#}.""", # noqa E501 + # ], "compound_protein_disease": [ """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_name#}.""", # noqa E501 """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_type#} {node3_name#}.""", # noqa E501 @@ -66,10 +74,10 @@ ], # todo: There are some entries that have the EC number under node3_name and node3_id # and this is not handled yet properly. - "compound_protein_go_term": [ - """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}.""", # noqa E501 - """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}.""", # noqa E501 - ], + # "compound_protein_go_term": [ + # """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}.""", # noqa E501 + # """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} the {node3_name#}.""", # noqa E501 + # ], "compound_protein_hpo": [ """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} and {rel2_type#} {node3_name#}.""", # noqa E501 """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}.""", # noqa E501 @@ -87,8 +95,8 @@ """The {node1_type#} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} is {rel3_type#} the {node4_type#} {node4_name#}.""", # noqa E501 ], "compound_protein_protein": [ - """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_prote in_names#}.""", # noqa E501 - """The {node2_type#} {node2_protein_names#} is targeted by {node1_type#} with {SMILES__description} {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_typ e#} {node3_protein_names#}.""", # noqa E501 + """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_type#} {node3_protein_names#}.""", # noqa E501 + """The {node2_type#} {node2_protein_names#} is targeted by {node1_type#} with {SMILES__description} {SMILES#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_protein_names#}.""", # noqa E501 """User: {#Can you give me|Can you come up with!} {#an|one!} example for a protein that binds the {node1_type#} with {SMILES__description} {SMILES#}? Assistant: The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} for example the {node2_type#} {node2_protein_names#}. User: Can you tell me a {node3_type#} that {rel2_type#} {node2_type#} {node2_protein_names#}? @@ -159,7 +167,7 @@ """The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#}. This {node2_type#} {rel2_type#} the {node3_name#}.""", # noqa E501 ], "drug_protein_hpo_disease": [ - """The {node1_type#} with {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}.""", # noqa E501 + """The {node1_type#} {SMILES__description} {SMILES#} {rel1_type#} the {node2_type#} {node2_protein_names#}. The {node2_type#} {node2_protein_names#} {rel2_type#} {node3_name#}. The {node3_name#} {rel3_type#} the {node4_type#} {node4_name#}.""", # noqa E501 ], "drug_protein_pathway": [ """The {node1_type#} {SMILES#|node1_name#} {rel1_type#} the {node2_type#} {node2_protein_names#} which {rel2_type#} the {node3_name#}.""", # noqa E501 @@ -517,6 +525,7 @@ def preprocess_kg_data(path_data_dir: str): # create separate dirs, move csv files there, and save cleaned data fns_data_raw = sorted(glob.glob(path_data_dir + "*.csv")) # KG walks data fns_data_raw += sorted(glob.glob(path_data_dir + "*.tsv")) # KG assay data + # fns_data_raw = "/fsx/proj-chemnlp/micpie/chemnlp/data/kg/chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles.tsv" # noqa E501 for fn in fns_data_raw: # subselect one path diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 0412f3c12..681ba3b60 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -26,10 +26,10 @@ Result: {TARGET#} {TARGET__units}""", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {TARGET__names__noun} in {TARGET__units}. -{#Molecule |!}{SMILES__description}: {SMILES#} +{SMILES__description}: {SMILES#} Constraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {TARGET__units} without the unit and without using any {#other|additional!} words. Result: {TARGET#}""", # noqa: E501 - """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. + """Task: Please {#give me|create|generate!} a {#molecule|chemical|compound!} with {SMILES__description} based on the {#text |!}description{# below|!}. Description: A molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Result: {SMILES#}""", # noqa: E501 # Conversational text templates @@ -39,18 +39,17 @@ Assistant: {#Yes|Of course|Sure|Yes, I'm happy to help!}, here you go: {SMILES#}""", # noqa: E501 """User: I'm {#searching|looking!} for the {SMILES__description} of a molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Assistant: This is a molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}: {SMILES#}""", # noqa: E501 - """User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. + """User: I want to {#come up with|create|generate!} the {SMILES__description} of a {#molecule|chemical|chemical compound!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should I consider any {#constraints|specific points!} for the {#generation|creation!}? User: Yes, please. The molecule should have a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Assistant: {#Ok|Got it!},{# here you go,|!} this {SMILES__description} represents a molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}: {SMILES#}""", # noqa: E501 - """User: I want to {#come up with|create|generate!} a {#molecule |!}{SMILES__description}. + """User: I want to {#come up with|create|generate!} a {SMILES__description} of a {#molecule|chemical|chemical structure!}. Assistant: {#This sounds very exciting. |This sounds very interesting. !}Should it be a special {#molecule|one!}? User: Yes, the molecule should have a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Assistant: {#Understood|Got it|Ok!}, this {SMILES__description} represents a molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}: {SMILES#}""", # noqa: E501 # Benchmarking text templates "The {TARGET__names__noun} of the molecule with the {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 - "The {TARGET__names__noun} of the {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 - "The {TARGET__names__noun} of the molecule {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 + "The {TARGET__names__noun} of the molecule with {SMILES__description} {SMILES#} is: {TARGET#} {TARGET__units}", # noqa: E501 """Task: Please predict a molecule feature based on the description. Description: Predict the {TARGET__names__noun} in {TARGET__units} of a molecule. {#Molecule |!}{SMILES__description}: {SMILES#} @@ -61,13 +60,14 @@ {#Molecule |!}{SMILES__description}: {SMILES#} Constraint: Even if you are {#uncertain|not sure!}, you must answer with a numeric value in {TARGET__units} without the unit and without using any {#other|additional!} words. Result: {TARGET#}""", # noqa: E501 - """Task: Please {#give me|create|generate!} a {#molecule |!}{SMILES__description} based on the {#text |!}description{# below|!}. + """Task: Please {#give me|create|generate!} a {SMILES__description} of a {#molecule|chemical|chemical compound!} based on the {#text |!}description{# below|!}. Description: A molecule that has a {TARGET__names__noun} of {TARGET#} {TARGET__units}. Result: {SMILES#}""", # noqa: E501 ] exclude_from_standard_tabular_text_templates = [ + "BACE", "BBBP", # because it is boolean target data "MUV_466", # boolean target data "MUV_548", # boolean target data @@ -86,18 +86,31 @@ "MUV_852", # boolean target data "MUV_858", # boolean target data "MUV_859", # boolean target data + "RedDB", + "SIDER", "ames_mutagenicity", # because it is boolean target data + "aminoacids", + "bc5chem", + "bc5disease", + "bicerano_dataset", "bio_ner", "bioavailability_ma_et_al", # because it is boolean target data + "block_polymers_morphology", "blood_brain_barrier_martins_et_al", # because it is boolean target data + "buchwald_hartwig", "carcinogens", # because it is boolean target data "cav3_t-type_calcium_channels_butkiewicz", # because it is boolean target data "chebi_20", # target is text description + "chem_caption_smarts", "chembl_v29", # text only, no SMILES "chemcaption_fragments", "chemcaption_rdkit", # text only, no SMILES + "chemdner", + "chemistry_stackexchange", "choline_transporter_butkiewicz", # because it is boolean target data "clintox", # because it is boolean target data + "compound_chebi_chebi_chebi_1", + "compound_chebi_chebi_chebi_2", "core_mof_no_topo", "cyp2c9_substrate_carbonmangels", # boolean target data "cyp2d6_substrate_carbonmangels", # boolean target data @@ -107,9 +120,13 @@ "cyp_p450_2c9_inhibition_veith_et_al", # boolean target data "cyp_p450_2d6_inhibition_veith_et_al", # boolean target data "cyp_p450_3a4_inhibition_veith_et_al", # boolean target data + "drug_chebi_chebi_chebi", "drug_induced_liver_injury", # boolean target data "drugchat_liang_zhang_et_al", # text + "fda_adverse_reactions", + "formation_energies", "freesolv", # more than one target + "h2_storage_materials", "herg_blockers", # more than one target "herg_central_inhib", # boolean target data "herg_karim_et_al", # boolean target data @@ -120,6 +137,10 @@ "kcnq2_potassium_channel_butkiewicz", # boolean target data "m1_muscarinic_receptor_agonists_butkiewicz", # boolean target data "m1_muscarinic_receptor_antagonists_butkiewicz", # boolean target data + "mattermodeling_stackexchange", + "melting_points", + "mofdscribe", + "mol2svg", "mol_repr_transl_canonical_inchi", "mol_repr_transl_canonical_iupac_name", "mol_repr_transl_deepsmiles_canonical", @@ -136,8 +157,16 @@ "mol_repr_transl_smiles_iupac_name", "mol_repr_transl_smiles_selfies", "mona", # more than one target + "moses", "moses", # SMILES only, has no target + "mp_anisotropy", + "mp_bulk_modulus", + "mp_descriptions", + "mp_self_supervised", + "mp_shear_modulus", + "ncbi_disease", "nlmchem", # text only, no SMILES + "nomad_structure", "nr_ahr_tox21", # boolean target data "nr_ar_lbd_tox21", # boolean target data "nr_ar_tox21", # boolean target data @@ -145,15 +174,28 @@ "nr_er_lbd_tox21", # boolean target data "nr_er_tox21", # boolean target data "nr_ppar_gamma_tox21", # boolean target data + "ocp", "odd_one_out", + "opv", + "oqmd", "orbnet_denali", # only makes sense for the structure files + "ord_masked", + "ord_predictions", + "ord_procedure_steps", + "ord_rxn_smiles_procedure", + "ord_rxn_smiles_yield_pred", + "ord_steps_yield", "orexin1_receptor_butkiewicz", # boolean target data "p_glycoprotein_inhibition_broccatelli_et_al", # boolean target data "pampa_ncats", # boolean target data "peptides_hemolytic", # boolean target data "peptides_nonfouling", # boolean target data "peptides_soluble", # boolean target data + "perovskite_db", + "physics_stackexchange", "potassium_ion_channel_kir2_1_butkiewicz", # boolean target data + "qm8", + "qm9", "qmof_gcmc", "qmof_quantum", "rhea_db_masked", @@ -168,17 +210,16 @@ "sr_hse_tox21", # boolean target data "sr_mmp_tox21", # boolean target data "sr_p53_tox21", # boolean target data + "suzuki_miyaura_sach", "tyrosyl-dna_phosphodiesterase_butkiewicz", # boolean target data "uniprot_binding_single", "uniprot_binding_sites_multiple", "uniprot_organisms", "uniprot_reactions", "uniprot_sentences", + "uspto", + "uspto_yield", "zinc", # SMILES only, has no target - "rdkit_features", - "inverse_1", - "inverse_2", - "inverse_3" # "h2_storage_materials", # only IUPAC identifier, more than one target, LOW PRIO: has only 30 samples ] @@ -341,7 +382,6 @@ def get_target_from_string(meta: dict, string: str) -> str: """Gets a target string from the meta dict based on the variable string. (A variable string is what is between the curly brackets in the text template.)""" keys = string.split("__") - print(keys) def get_with_nested_keys(d: dict, keys: list) -> str: t = d.copy() @@ -417,6 +457,7 @@ class TemplateSampler: def __init__( self, path_data_dir: str, + df: pd.DataFrame, path_lm_eval_data_dir: str, multiple_choice_rnd_symbols: list, # = ["", ".", ".)", ")", ":", "()", "[]"], additional_templates: list = None, @@ -429,16 +470,15 @@ def __init__( # paths self.path_data_dir = path_data_dir self.path_data_meta = self.path_data_dir + "/meta.yaml" - self.path_data_csv = self.path_data_dir + "/data_clean.csv" + # self.path_data_csv = self.path_data_dir + "/data_clean.csv" self.path_lm_eval_data_dir = path_lm_eval_data_dir # meta from yaml self.meta = load_yaml(self.path_data_meta) # dataframe from csv - df = pd.read_csv(self.path_data_csv, low_memory=False).replace( - "REPLACENULL", "" - ) + # df = pd.read_csv(self.path_data_csv, low_memory=False) + df = df.replace("REPLACENULL", "") def check_targets_and_identifiers(meta: dict, df: pd.DataFrame): all_identifiers = [x["id"] for x in meta["identifiers"]] + [ @@ -1023,20 +1063,68 @@ def apply_sampling_and_export( ) path_lm_eval_data_dir = path_base + "text_sampling/export" - # index = [i for i, x in enumerate(path_data_dir) if x.find("data/tabular/sr_are_tox21") != -1][0] + # index = [i for i, x in enumerate(path_data_dir) if x.find("RedDB") != -1][0] # print(index) # path_data_dir = path_data_dir[index:] + # path_data_dir = [path_data_dir[index]] + # path_data_dir = [ + # '/weka/proj-chemnlp/micpie/chemnlp/data/tabular/bioavailability_ma_et_al', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/RedDB', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/SIDER', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/aminoacids', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/bc5chem', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/bc5disease', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/bicerano_dataset', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/block_polymers_morphology', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/buchwald_hartwig', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/chem_caption_smarts', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/chemdner', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/chemistry_stackexchange', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/compound_chebi_chebi_chebi_1', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/compound_chebi_chebi_chebi_2', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/drug_chebi_chebi_chebi', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/fda_adverse_reactions', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/formation_energies', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/h2_storage_materials', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mattermodeling_stackexchange', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/melting_points', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mofdscribe', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mol2svg', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/moses', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mp_anisotropy', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mp_bulk_modulus', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mp_descriptions', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mp_self_supervised', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/mp_shear_modulus', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ncbi_disease', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/nomad_structure', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ocp', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/opv', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/oqmd', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ord_masked', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ord_predictions', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ord_procedure_steps', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ord_rxn_smiles_procedure', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ord_rxn_smiles_yield_pred', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/ord_steps_yield', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/perovskite_db', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/physics_stackexchange', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/qm8', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/qm9', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/suzuki_miyaura_sach', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/uspto', + # '/fsx/proj-chemnlp/micpie/chemnlp/data/tabular/uspto_yield', + # ] for path in path_data_dir: # subselect one path - # if not "kcnq2_potassium_channel_butkiewicz" in path: - # continue # if path.find("data/tabular/") == -1: continue # if path.find("data/kg/") == -1: continue # if path.find("chembl33") != -1: continue # if path.find("data/kg/compound_chebi") == -1: continue # if path.find("data/tabular/cyp3a4_substrate_carbonmangels") == -1: continue # if path.find("data/tabular/bio_ner") == -1: continue + # if path.find("rdkit_features") != -1: continue print(f"\n###### {path}") path_meta = path + "/meta.yaml" @@ -1101,72 +1189,98 @@ def apply_sampling_and_export( # multiple_choice_benchmarking_templates=False, # ).apply_sampling_and_export() - tempsamp = TemplateSampler( - path, - path_lm_eval_data_dir, - multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, - additional_templates=additional_templates, - benchmarking_templates=False, - multiple_choice_benchmarking_templates=False, - ) - for i, template in enumerate( - [t for t in meta["templates"] if "" not in t] - ): - print(f"\nRunning sampling for template {i}:\n{template}") - tempsamp.apply_sampling_and_export( - template_idx=i, - fn_suffix=i, - ) - - if any(["" in t for t in meta["templates"]]): - # uncomment to randomly sample from all templates and save the output to a single file - # TemplateSampler( - # path, - # path_lm_eval_data_dir, - # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, - # additional_templates=additional_templates, - # benchmarking_templates=True, - # multiple_choice_benchmarking_templates=False, - # ).apply_sampling_and_export() - - tempsamp = TemplateSampler( - path, - path_lm_eval_data_dir, - multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, - additional_templates=additional_templates, - benchmarking_templates=True, - multiple_choice_benchmarking_templates=False, - ) - for i, template in enumerate( - [ - t - for t in meta["templates"] - if "" in t and "%multiple_choice_" not in t - ] - ): - print(f"\nRunning sampling for template {i}:\n{template}") - tempsamp.apply_sampling_and_export( - template_idx=i, - fn_suffix=i, - ) - - if any(["%multiple_choice_" in t for t in meta["templates"]]): - TemplateSampler( + # tempsamp = TemplateSampler( + # path, + # path_lm_eval_data_dir, + # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + # additional_templates=additional_templates, + # benchmarking_templates=False, + # multiple_choice_benchmarking_templates=False, + # ) + # for i, template in enumerate( + # [t for t in meta["templates"] if "" not in t] + # ): + # print(f"\nRunning sampling for template {i}:\n{template}") + # tempsamp.apply_sampling_and_export( + # template_idx=i, + # fn_suffix=i, + # ) + + chunksize = 1_000_000 + path_data_csv = path + "/data_clean.csv" + with pd.read_csv( + path_data_csv, chunksize=chunksize, low_memory=False + ) as reader: + chunk_idx = 0 + for df_chunk in reader: + tempsamp = TemplateSampler( path, + df_chunk, path_lm_eval_data_dir, multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, additional_templates=additional_templates, - benchmarking_templates=True, - multiple_choice_benchmarking_templates=True, - ).apply_sampling_and_export() - - # for i, s in enumerate(multiple_choice_rnd_symbols): - # TemplateSampler( - # path, - # path_lm_eval_data_dir, - # multiple_choice_rnd_symbols=[s], - # additional_templates=additional_templates, - # benchmarking_templates=True, - # multiple_choice_benchmarking_templates=True, - # multiple_choice_benchmarking_format=i, - # ).apply_sampling_and_export() + benchmarking_templates=False, + multiple_choice_benchmarking_templates=False, + ) + for i, template in enumerate( + [t for t in meta["templates"] if "" not in t] + ): + print(f"\nRunning sampling for template {i}:\n{template}") + tempsamp.apply_sampling_and_export( + template_idx=i, + fn_suffix=f"{chunk_idx}-{i}", + ) + chunk_idx += 1 + + # if any(["" in t for t in meta["templates"]]): + # # uncomment to randomly sample from all templates and save the output to a single file + # # TemplateSampler( + # # path, + # # path_lm_eval_data_dir, + # # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + # # additional_templates=additional_templates, + # # benchmarking_templates=True, + # # multiple_choice_benchmarking_templates=False, + # # ).apply_sampling_and_export() + + # tempsamp = TemplateSampler( + # path, + # path_lm_eval_data_dir, + # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + # additional_templates=additional_templates, + # benchmarking_templates=True, + # multiple_choice_benchmarking_templates=False, + # ) + # for i, template in enumerate( + # [ + # t + # for t in meta["templates"] + # if "" in t and "%multiple_choice_" not in t + # ] + # ): + # print(f"\nRunning sampling for template {i}:\n{template}") + # tempsamp.apply_sampling_and_export( + # template_idx=i, + # fn_suffix=i, + # ) + + # if any(["%multiple_choice_" in t for t in meta["templates"]]): + # TemplateSampler( + # path, + # path_lm_eval_data_dir, + # multiple_choice_rnd_symbols=multiple_choice_rnd_symbols, + # additional_templates=additional_templates, + # benchmarking_templates=True, + # multiple_choice_benchmarking_templates=True, + # ).apply_sampling_and_export() + + # # for i, s in enumerate(multiple_choice_rnd_symbols): + # # TemplateSampler( + # # path, + # # path_lm_eval_data_dir, + # # multiple_choice_rnd_symbols=[s], + # # additional_templates=additional_templates, + # # benchmarking_templates=True, + # # multiple_choice_benchmarking_templates=True, + # # multiple_choice_benchmarking_format=i, + # # ).apply_sampling_and_export() diff --git a/data/train_test_split.py b/data/train_test_split.py new file mode 100644 index 000000000..650586512 --- /dev/null +++ b/data/train_test_split.py @@ -0,0 +1,955 @@ +"""Perform train/test split on all tabular and knowledge graph datasets. + +First, a scaffold split is run on selected SMILES datasets, than a random split is run on all other datasets. +For this second step, we ensure if there are SMILES in the dataset, that the there is no SMILES +that is in the validation or test set of the scaffold split that is in the training set of the random split. + +If there are multiple SMILES columns, we move to test/val if any of the SMILES +is in the test/val set of the scaffold split. + +The meta.yaml files are used to determine the if there are SMILES in the dataset. +For this reason, certain scripts (e.g. preprocess_kg.py, several transform.py) need to be run before this script +as they sometimes update or create the meta.yaml files. + +Prior to the SMILES split and the split of all other files, we perform a random split on the files with +amino acid sequences. + +Warning: + - Note that the logic assumes that the SMILES columns only contain valid SMILES. + - The current script does not set up a dask client. If distributed computing is needed, please set up. + - Some CSV files contain complicated strings. We cannot parse them in a chunked manner. + In this case, we set blocksize=None and read the whole file into memory. +""" +import logging +import os +import random +import subprocess +from functools import partial +from glob import glob +from pathlib import Path +from typing import List, Literal, Union + +import dask.array as da +import dask.dataframe as dd +import fire +import numpy as np +import pandas as pd +import yaml + +# import localcluster and client +# from dask.distributed import Client, LocalCluster +from pandarallel import pandarallel +from pandas.errors import ParserError +from tqdm import tqdm + +from chemnlp.data.split import _create_scaffold_split + +pandarallel.initialize(progress_bar=True) + +# Set up logging +logging.basicConfig(level=logging.INFO) + +# see issue https://github.com/OpenBioML/chemnlp/issues/498 for the list of datasets +# mostly those from TDC/moleculenet that have scaffold split as recommended method +to_scaffold_split = [ + "blood_brain_barrier_martins_et_al", + "serine_threonine_kinase_33_butkiewicz", + "ld50_zhu", + "herg_blockers", + "clearance_astrazeneca", + "half_life_obach", + "drug_induced_liver_injury", + "kcnq2_potassium_channel_butkiewicz", + "sarscov2_3clpro_diamond", + "volume_of_distribution_at_steady_state_lombardo_et_al", + "sr_hse_tox21", + "nr_er_tox21", + "cyp2c9_substrate_carbonmangels", + "nr_aromatase_tox21", + "cyp_p450_2d6_inhibition_veith_et_al", + "cyp_p450_1a2_inhibition_veith_et_al", + "cyp_p450_2c9_inhibition_veith_et_al", + "m1_muscarinic_receptor_antagonists_butkiewicz", + "nr_ar_tox21", + "sr_atad5_tox21", + "tyrosyl-dna_phosphodiesterase_butkiewicz", + "cav3_t-type_calcium_channels_butkiewicz", + "clintox", + "sr_p53_tox21", + "nr_er_lbd_tox21", + "pampa_ncats", + "sr_mmp_tox21", + "caco2_wang", + "sarscov2_vitro_touret", + "choline_transporter_butkiewicz", + "orexin1_receptor_butkiewicz", + "human_intestinal_absorption", + "nr_ahr_tox21", + "cyp3a4_substrate_carbonmangels", + "herg_karim_et_al", + "hiv", + "carcinogens", + "sr_are_tox21", + "nr_ppar_gamma_tox21", + "solubility_aqsoldb", + "m1_muscarinic_receptor_agonists_butkiewicz", + "ames_mutagenicity", + "potassium_ion_channel_kir2_1_butkiewicz", + "cyp_p450_3a4_inhibition_veith_et_al", + "skin_reaction", + "cyp2d6_substrate_carbonmangels", + "cyp_p450_2c19_inhibition_veith_et_al", + "nr_ar_lbd_tox21", + "p_glycoprotein_inhibition_broccatelli_et_al", + "bioavailability_ma_et_al", + "BACE", + "lipophilicity", + "thermosol", + "MUV_466", + "MUV_548", + "MUV_600", + "MUV_644", + "MUV_652", + "MUV_689", + "MUV_692", + "MUV_712", + "MUV_713", + "MUV_733", + "MUV_737", + "MUV_810", + "MUV_832", + "MUV_846", + "MUV_852", + "MUV_858", + "MUV_859", + # kg datasets + # "chebi_chebi", + "chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles", + "compound_chebi", + "compound_chebi_chebi", + "compound_chebi_chebi_chebi_1", + "compound_chebi_chebi_chebi_2", + "compound_protein", + "compound_protein_compound_1", + "compound_protein_compound_2", + "compound_protein_compound_3", + "compound_protein_disease", + "compound_protein_domain", + "compound_protein_ec_number", + "compound_protein_go_term_1", + "compound_protein_go_term_2", + "compound_protein_go_term_3", + "compound_protein_go_term_4", + "compound_protein_hpo", + "compound_protein_hpo_disease_1", + "compound_protein_hpo_disease_2", + "compound_protein_pathway", + "compound_protein_pathway_disease_1", + "compound_protein_pathway_disease_2", + "compound_protein_pathway_disease_3", + "compound_protein_protein", + "drug_chebi", + "drug_chebi_chebi", + "drug_chebi_chebi_chebi", + "drug_disease_pathway", + "drug_disease_pathway_protein", + "drug_protein", + "drug_protein_disease", + "drug_protein_domain", + "drug_protein_drug", + "drug_protein_ec_number", + "drug_protein_go_term", + "drug_protein_hpo", + "drug_protein_hpo_disease", + "drug_protein_pathway", + "drug_protein_pathway_disease", + "drug_protein_protein", +] + + +def cull_empty_partitions(df): + ll = list(df.map_partitions(len).compute()) + df_delayed = df.to_delayed() + df_delayed_new = list() + pempty = None + for ix, n in enumerate(ll): + if 0 == n: + print("culled") + pempty = df.get_partition(ix) + else: + df_delayed_new.append(df_delayed[ix]) + if pempty is not None: + df = dd.from_delayed(df_delayed_new, meta=pempty) + return df + + +def split_for_smiles( + smiles: str, train_smiles: List[str], val_smiles: List[str] +) -> str: + """Returns the split for a SMILES based on the train and val smiles.""" + if smiles in train_smiles: + return "train" + elif smiles in val_smiles: + return "valid" + else: + return "test" + + +def yaml_file_has_column_of_type( + yaml_file: Union[str, Path], data_type: Literal["AS_SEQUENCE", "SMILES"] +) -> bool: + """Returns True if the yaml file has a SMILES column. + + Those columns are in either the targets or identifiers keys + (which are both lists). In there, we have dicts and it is a SMILES + if the key type is SMILES. + """ + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == data_type: + return True + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == data_type: + return True + + return False + + +def is_in_scaffold_split_list(yaml_file: Union[str, Path]) -> bool: + """Returns True if the yaml file is in the to_scaffold_split list.""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + return meta["name"] in to_scaffold_split + + +def get_meta_yaml_files(data_dir: Union[str, Path]) -> List[str]: + """Returns all yaml files in the data_dir directory.""" + return sorted( + glob(os.path.join(data_dir, "**", "**", "meta.yaml")) + ) # , recursive=True) + + +def run_transform(file: Union[str, Path]) -> None: + if not os.path.exists(os.path.join(os.path.dirname(file), "data_clean.csv")): + subprocess.run( + ["python", "transform.py"], + cwd=os.path.dirname(file), + ) + + +def get_columns_of_type( + yaml_file: Union[str, Path], + column_type: Literal["SMILES", "AS_SEQUENCE"] = "SMILES", +) -> List[str]: + """Returns the id for all columns with type SMILES""" + with open(yaml_file, "r") as f: + meta = yaml.safe_load(f) + + smiles_columns = [] + if "targets" in meta: + for target in meta["targets"]: + if target["type"] == column_type: + smiles_columns.append(target["id"]) + if "identifiers" in meta: + for identifier in meta["identifiers"]: + if identifier["type"] == column_type: + smiles_columns.append(identifier["id"]) + + return smiles_columns + + +def remaining_split( + data_dir, + override: bool = False, + seed: int = 42, + debug: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + run_transform_py: bool = False, +) -> None: + """Run a random split on all datasets in the data_dir directory that do not have a AS_SEQUENCE column + and do not have a SMILES column. + + Args: + data_dir ([type]): [description] + override (bool, optional): [description]. Defaults to False. + seed (int, optional): [description]. Defaults to 42. + debug (bool, optional): [description]. Defaults to False. + train_frac (float, optional): [description]. Defaults to 0.7. + val_frac (float, optional): [description]. Defaults to 0.15. + test_frac (float, optional): [description]. Defaults to 0.15. + run_transform_py (bool, optional): [description]. Defaults to False. + + Returns: + None + """ + # make deterministic + np.random.seed(seed) + random.seed(seed) + dask_random_state = da.random.RandomState(seed) + + yaml_files = get_meta_yaml_files(data_dir) + non_smiles_yaml_files = [ + file + for file in yaml_files + # if not ( + # yaml_file_has_column_of_type(file, "SMILES") + # or yaml_file_has_column_of_type(file, "AS_SEQUENCE") + # ) + ] + + # if we debug, we only run split on the first 5 datasets + if debug: + non_smiles_yaml_files = non_smiles_yaml_files[:5] + + def assign_random_split(ddf, train_frac, test_frac, dask_random_state): + # Define a function to generate random values for each partition + def random_values_partition(partition, random_state): + # Generate random values for this partition's length + partition_random_values = random_state.random(len(partition)) + return partition_random_values + + # Use map_partitions to apply the function to each partition of the DataFrame + # This ensures that the generated random values have the same partitioning as `ddf` + random_values = ddf.map_partitions( + random_values_partition, + random_state=dask_random_state, + meta=( + "random_values", + "f8", + ), # Specify the meta for the new column, 'f8' is float64 + ) + + # Calculate the train, valid, and test masks based on the random values + # train_mask = random_values < train_frac # Never used? + valid_mask = (random_values >= train_frac) & ( + random_values < train_frac + test_frac + ) + test_mask = random_values >= (train_frac + test_frac) + + # Assign the 'split' column based on the masks + # Note: 'where' is not a standalone function in dask.dataframe, it's a method of DataFrame and Series + ddf["split"] = "train" # Default assignment + ddf["split"] = ddf["split"].mask(valid_mask, "valid") + ddf["split"] = ddf["split"].mask(test_mask, "test") + + return ddf + + def split_and_save(file, ddf): + ddf = assign_random_split(ddf, train_frac, test_frac, dask_random_state) + split_counts = ddf["split"].value_counts().compute() + + print(f"Dataset {file} has {len(ddf)} datapoints. Split sizes: {split_counts}") + + # we then write the new data_clean.csv file + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` + # and write the new file to `data_clean.csv` + if not override: + os.rename( + os.path.join(os.path.dirname(file), "data_clean.csv"), + os.path.join(os.path.dirname(file), "data_clean_old.csv"), + ) + ddf.to_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + index=False, + single_file=True, + ) + + # we run random splitting for each dataset + for file in tqdm(non_smiles_yaml_files): + print(f"Processing {file}") + if run_transform_py: + run_transform(file) + if os.path.exists(os.path.join(os.path.dirname(file), "data_clean.csv")): + try: + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + ) + split_and_save(file, ddf) + except ParserError: + print(f"Could not parse {file}. Using blocksize=None.") + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + blocksize=None, + ) + split_and_save(file, ddf) + except ValueError as e: + if "Mismatched dtypes" in str(e): + print(f"Could not parse {file}. Inferring dtypes via pandas.") + chunk = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + d = dict( + zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values]) + ) + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + dtype=d, + assume_missing=True, + ) + split_and_save(file, ddf) + + +def as_sequence_split( + data_dir, + override: bool = False, + seed: int = 42, + debug: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + run_transform_py: bool = False, +) -> None: + """Run a random split on all datasets in the data_dir directory that have a AS_SEQUENCE column. + + Ensures that, overall, a AS_SEQUENCE is not split across train/val/test. + + Args: + data_dir ([type]): [description] + override (bool, optional): [description]. Defaults to False. + seed (int, optional): [description]. Defaults to 42. + debug (bool, optional): [description]. Defaults to False. + train_frac (float, optional): [description]. Defaults to 0.7. + val_frac (float, optional): [description]. Defaults to 0.15. + test_frac (float, optional): [description]. Defaults to 0.15. + run_transform_py (bool, optional): [description]. Defaults to False. + + Returns: + None + """ + all_yaml_files = get_meta_yaml_files(data_dir) + as_sequence_yaml_files = [ + file + for file in all_yaml_files + if yaml_file_has_column_of_type(file, "AS_SEQUENCE") + ] + + # if we debug, we only run split on the first 5 datasets + if debug: + as_sequence_yaml_files = as_sequence_yaml_files[:5] + + # make deterministic + np.random.seed(seed) + random.seed(seed) + + all_as_sequence = set() + + for file in tqdm(as_sequence_yaml_files): + print(f"Processing {file}") + if run_transform_py: + run_transform(file) + + df = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), low_memory=False + ) + for as_seq_col in get_columns_of_type(file, "AS_SEQUENCE"): + all_as_sequence.update(df[as_seq_col].tolist()) + + all_as_sequence = list(all_as_sequence) + # random split into train/val/test using numpy + # randomly take train_frac of the data for training set, val_frac for validation set + # and the rest for test set + train_size = int(len(all_as_sequence) * train_frac) + val_size = int(len(all_as_sequence) * val_frac) + + # shuffle the data + np.random.shuffle(all_as_sequence) + # split into train/val/test + train = all_as_sequence[:train_size] + val = all_as_sequence[train_size : train_size + val_size] + test = all_as_sequence[train_size + val_size :] + print( + f"In total, there are {len(all_as_sequence)} AS_SEQUENCEs. Split sizes: {len(train)} train, {len(val)} valid, {len(test)} test." # noqa: E501 + ) + + with open("val_as_sequences.txt", "w") as f: + f.write("\n".join(val)) + + with open("test_as_sequences.txt", "w") as f: + f.write("\n".join(test)) + + def assign_split(ddf, as_sequence_columns, test_sequences, val_sequences): + test_mask = ddf[as_sequence_columns].isin(test_sequences).any(axis=1) + val_mask = ddf[as_sequence_columns].isin(val_sequences).any(axis=1) + + # Assign the 'split' based on the masks + ddf["split"] = "train" # Default assignment + ddf["split"] = ddf["split"].mask(test_mask, "test") + ddf["split"] = ddf["split"].mask(val_mask, "valid") + return ddf + + for file in tqdm(as_sequence_yaml_files): + print(f"Processing {file}") + as_seq_cols = get_columns_of_type(file, "AS_SEQUENCE") + ddf = dd.read_csv(os.path.join(os.path.dirname(file), "data_clean.csv")) + + ddf = assign_split(ddf, as_seq_cols, test, val) + + split_counts = ddf["split"].value_counts().compute() + + print(f"Dataset {file} has {len(ddf)} datapoints. Split sizes: {split_counts}") + + # we then write the new data_clean.csv file + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` + # and write the new file to `data_clean.csv` + if not override: + os.rename( + os.path.join(os.path.dirname(file), "data_clean.csv"), + os.path.join(os.path.dirname(file), "data_clean_old.csv"), + ) + ddf.to_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + index=False, + single_file=True, + ) + + +def smiles_split( + data_dir: Union[str, Path], + override: bool = False, + seed: int = 42, + debug: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + val_smiles_path: Union[str, Path] = "val_smiles.txt", + test_smiles_path: Union[str, Path] = "test_smiles.txt", + run_transform_py: bool = False, +) -> None: + """Runs a random split on all datasets in the data_dir directory that have a SMILES column. + + The validation and test sets are ensured to not contain any SMILES that are in the validation and test sets + of the scaffold split. + + Args: + data_dir (Union[str, Path]): The directory containing the directories with the datasets. + override (bool, optional): Whether to override the existing data_clean.csv files with the new ones. + Defaults to False. In this case, the old data_clean.csv files will be renamed to data_clean_old.csv. + seed (int, optional): The random seed. Defaults to 42. + debug (bool, optional): Whether to run in debug mode. Defaults to False. + In this case, only the first 5 datasets will be processed. + train_frac (float, optional): The fraction of the data to be used for training. Defaults to 0.7. + val_frac (float, optional): The fraction of the data to be used for validation. Defaults to 0.15. + test_frac (float, optional): The fraction of the data to be used for testing. Defaults to 0.15. + val_smiles_path (Union[str, Path], optional): The path to the validation smiles file. + Defaults to "val_smiles.txt". + test_smiles_path (Union[str, Path], optional): The path to the test smiles file. + Defaults to "test_smiles.txt". + run_transform_py (bool, optional): Whether to run the transform.py script in the directory of the dataset. + Defaults to False. + + Returns: + None + """ + # make deterministic + np.random.seed(seed) + random.seed(seed) + + def assign_split( + partition, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ): + # Create a random number generator with a unique seed for each partition + rng = np.random.default_rng(seed + partition.index[0]) + + # Generate random values for rows in the partition + random_values = rng.random(len(partition)) + + # Create masks for test and validation SMILES within the partition + is_test_smiles = partition[smiles_columns].isin(test_smiles).any(axis=1) + is_val_smiles = partition[smiles_columns].isin(val_smiles).any(axis=1) + + # Initialize the 'split' column with 'train' + partition["split"] = "train" + + # Update the 'split' column based on conditions + partition.loc[is_test_smiles, "split"] = "test" + partition.loc[is_val_smiles, "split"] = "valid" + + # Assign 'train', 'valid', or 'test' to remaining rows based on adjusted fractions + train_mask = (partition["split"] == "train") & (random_values < train_frac) + val_mask = ( + (partition["split"] == "train") + & (random_values >= train_frac) + & (random_values < train_frac + val_frac) + ) + test_mask = (partition["split"] == "train") & ( + random_values >= train_frac + val_frac + ) + + partition.loc[train_mask, "split"] = "train" + partition.loc[val_mask, "split"] = "valid" + partition.loc[test_mask, "split"] = "test" + + return partition + + def assign_splits( + ddf, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ): + # Ensure that the fractions sum to 1 or less + assert ( + train_frac + val_frac + test_frac <= 1 + ), "Fractions must sum to 1.0 or less" + + # Apply 'assign_split' function to each partition of the DataFrame + ddf = ddf.map_partitions( + assign_split, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ) + + return ddf + + # we err toward doing more I/O but having simpler code to ensure we don't make anything stupid + all_yaml_files = get_meta_yaml_files(data_dir) + # all_yaml_files = [".../kg/chembl33_preprocessed_filtered_bioactivity_dataset_w_fullprotnames_smiles/meta.yaml"] + smiles_yaml_files = [ + file + for file in all_yaml_files + if ( + yaml_file_has_column_of_type(file, "SMILES") + and not yaml_file_has_column_of_type(file, "AS_SEQUENCE") + ) # noqa: E501 + ] + # we filter those out that are in the to_scaffold_split list + not_scaffold_split_yaml_files = [ + file for file in smiles_yaml_files if not is_in_scaffold_split_list(file) + ] + + # not_scaffold_split_yaml_files = list(set( [ + # f + # for f in not_scaffold_split_yaml_files + # if Path(f).parts[-2] + # in [ + # "rdkit_features", + # #"orbnet_denali", + # #"smiles_to_3d", + # #"iupac_smiles", + # #"fda_adverse_reactions", + # ] + # ])) + index = [ + i + for i, x in enumerate(not_scaffold_split_yaml_files) + if str(x).find("orbnet_denali") != -1 + ][0] + # not_scaffold_split_yaml_files = not_scaffold_split_yaml_files[index:] + # not_scaffold_split_yaml_files = not_scaffold_split_yaml_files[index+1:] + not_scaffold_split_yaml_files = [not_scaffold_split_yaml_files[index]] + + # if we debug, we only run split on the first 5 datasets + if debug: + not_scaffold_split_yaml_files = [ + f for f in not_scaffold_split_yaml_files if "zinc" in f + ] + + # we run random splitting for each dataset but ensure that the validation and test sets + # do not contain any SMILES that are in the validation and test sets of the scaffold split + + with open(val_smiles_path, "r") as f: + val_smiles = f.read().splitlines() + + with open(test_smiles_path, "r") as f: + test_smiles = f.read().splitlines() + + # some datasets are hundreds of GB, so we have to use dask + # we will first do a random split on the whole dataset + # then we flip the values based on whether a SMILES + # is in the validation or test set of the scaffold split + # we will then write the new data_clean.csv file + + # if the is no data_clean.csv file, we run the transform.py script + # in the directory of the yaml file + # we will then read the data_clean.csv file and do the split + def split_and_save(file, ddf): + smiles_columns = get_columns_of_type(file, "SMILES") + + # Assign splits using the revised function + ddf = assign_splits( + ddf, + smiles_columns, + test_smiles, + val_smiles, + train_frac, + val_frac, + test_frac, + seed, + ) + + # split_counts = ddf["split"].value_counts().compute() + + # print( + # f"Dataset {file} has {len(ddf)} datapoints. Split sizes: {split_counts['train']} train, {split_counts['valid']} valid, {split_counts['test']} test." # noqa: E501 + # ) + + # we then write the new data_clean.csv file + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` + # and write the new file to `data_clean.csv` + if not override: + os.rename( + os.path.join(os.path.dirname(file), "data_clean.csv"), + os.path.join(os.path.dirname(file), "data_clean_old.csv"), + ) + ddf.to_csv(os.path.join(os.path.dirname(file), "data_clean-*.csv")) + + for file in tqdm(not_scaffold_split_yaml_files): + print(f"\nProcessing {file}") + if run_transform_py: + run_transform(file) + try: + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), low_memory=False + ) + # print(len(ddf)) + # s ddf = cull_empty_partitions(ddf) + # print(partition_sizes) + split_and_save(file, ddf) + + except ParserError: + print(f"Could not parse {file}. Using blocksize=None.") + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + blocksize=None, + ) + split_and_save(file, ddf) + + except ValueError as e: + if "mona" in file: + df = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + ) + ddf = dd.from_pandas(df, npartitions=1) + split_and_save(file, ddf) + + elif "Mismatched dtypes" in str(e): + print(f"Could not parse {file}. Inferring dtypes via pandas.") + chunk = pd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + nrows=10000, + ) + + dtype_dict = dict( + zip(chunk.dtypes.index, [str(t) for t in chunk.dtypes.values]) + ) + ddf = dd.read_csv( + os.path.join(os.path.dirname(file), "data_clean.csv"), + low_memory=False, + dtype=dtype_dict, + assume_missing=True, + ) + split_and_save(file, ddf) + + +def scaffold_split( + data_dir: Union[str, Path], + override: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + seed: int = 42, + debug: bool = False, + run_transform_py: bool = False, +): + """Performs scaffold splitting on all datasets in the data_dir directory + that are in the to_scaffold_split list. + + It serializes the validation and test smiles into `val_smiles.txt` and `test_smiles.txt` + in the current directory. + + It is the first step of the splitting procedure as we will then perform a random split + on the remaining datasets on all other datasets. However, if they have smiles, + we will set all smiles that are in the validation and test sets to be in the validation and test sets. + + Args: + data_dir (Union[str, Path]): The directory containing the directories with the datasets. + override (bool, optional): Whether to override the existing data_clean.csv files with the new ones. + Defaults to False. In this case, the old data_clean.csv files will be renamed to data_clean_old.csv. + train_frac (float, optional): The fraction of the data to be used for training. Defaults to 0.7. + val_frac (float, optional): The fraction of the data to be used for validation. Defaults to 0.15. + test_frac (float, optional): The fraction of the data to be used for testing. Defaults to 0.15. + seed (int, optional): The random seed. Defaults to 42. + debug (bool, optional): Whether to run in debug mode. Defaults to False. + In this case, only the first 5 datasets will be processed. + run_transform_py (bool, optional): Whether to run the transform.py script in the directory of the dataset. + """ + # make deterministic + np.random.seed(seed) + random.seed(seed) + + all_yaml_files = get_meta_yaml_files(data_dir) + if debug: + all_yaml_files = all_yaml_files[:5] + transformed_files = [] + for file in tqdm(all_yaml_files): + print(f"Processing {file}") + with open(file, "r") as f: + meta = yaml.safe_load(f) + + if meta["name"] in to_scaffold_split: + # run transform.py script in this directory if `data_clean.csv` does not exist + # use this dir as cwd + if run_transform_py: + run_transform(file) + + transformed_files.append( + os.path.join(os.path.dirname(file), "data_clean.csv") + ) + + all_smiles = set() + for file in transformed_files: + df = pd.read_csv(file, low_memory=False) + all_smiles.update(df["SMILES"].tolist()) + del df # ensure memory is freed + + all_smiles = list(all_smiles) + splits = _create_scaffold_split( + all_smiles, frac=[train_frac, val_frac, test_frac], seed=seed + ) + + # select the right indices for each split + train_smiles = [all_smiles[i] for i in splits["train"]] + val_smiles = [all_smiles[i] for i in splits["valid"]] + test_smiles = [all_smiles[i] for i in splits["test"]] + + # write the validation and test smiles to files + with open("val_smiles.txt", "w") as f: + f.write("\n".join(val_smiles)) + with open("test_smiles.txt", "w") as f: + f.write("\n".join(test_smiles)) + + print( + "Train smiles:", + len(train_smiles), + "Val smiles:", + len(val_smiles), + "Test smiles:", + len(test_smiles), + ) + + # now for each dataframe, add a split column based on in which list in the `splits` dict the smiles is + # smiles are in the SMILES column + # if the override option is true, we write this new file to `data_clean.csv` in the same directory + # otherwise, we copy the old `data_clean.csv` to `data_clean_old.csv` and write the new file to `data_clean.csv` + + split_for_smiles_curried = partial( + split_for_smiles, train_smiles=train_smiles, val_smiles=val_smiles + ) + for file in tqdm(transformed_files): + df = pd.read_csv(file, low_memory=False) + df["split"] = df["SMILES"].parallel_apply(split_for_smiles_curried) + + # to ensure overall scaffold splitting does not distort train/val/test split sizes for each dataset + print( + f"Dataset {file} has {len(df)} datapoints. Split sizes: {len(df[df['split'] == 'train'])} train, {len(df[df['split'] == 'valid'])} valid, {len(df[df['split'] == 'test'])} test." # noqa: E501 + ) + print( + f"Dataset {file} has {len(df)} datapoints. Split fractions: {len(df[df['split'] == 'train']) / len(df)} train, {len(df[df['split'] == 'valid']) / len(df)} valid, {len(df[df['split'] == 'test']) / len(df)} test." # noqa: E501 + ) + if override: + # write the new data_clean.csv file + df.to_csv(file, index=False) + else: + # copy the old data_clean.csv to data_clean_old.csv + os.rename(file, file.replace(".csv", "_old.csv")) + # write the new data_clean.csv file + df.to_csv(file, index=False) + + +def run_all_split( + data_dir: Union[str, Path], + override: bool = False, + train_frac: float = 0.7, + val_frac: float = 0.15, + test_frac: float = 0.15, + seed: int = 42, + debug: bool = False, + run_transform_py: bool = False, +): + """Runs all splitting steps on the datasets in the data_dir directory.""" + # cluster = LocalCluster(memory_limit="64GB") + # client = Client(cluster) + # logging.info(f"Dashboard available at: {client.dashboard_link}") + + print('Running "as_sequence" split...') + as_sequence_split( + data_dir, + override, + seed, + debug, + train_frac, + val_frac, + test_frac, + run_transform_py=run_transform_py, + ) + print("Running scaffold split...") + scaffold_split( + data_dir, + override, + train_frac, + val_frac, + test_frac, + seed, + debug, + run_transform_py=run_transform_py, + ) + print("Running SMILES split...") + smiles_split( + data_dir, + override, + seed, + debug, + train_frac, + val_frac, + test_frac, + run_transform_py=run_transform_py, + ) + print("Running remaining split...") + remaining_split( + data_dir, + override, + seed, + debug, + train_frac=train_frac, + val_frac=val_frac, + test_frac=test_frac, + run_transform_py=run_transform_py, + ) + + +if __name__ == "__main__": + fire.Fire(run_all_split) diff --git a/gpt-neox b/gpt-neox deleted file mode 160000 index a5c222945..000000000 --- a/gpt-neox +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a5c22294521dc14d8554482ec1b27f987e50eb91 From b2bd91c97f0d0b1639ee8e166a04d45fe079e27e Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:26:45 +0100 Subject: [PATCH 57/61] feat: remove csv files (#526) --- .../HT_MD_polymer_properties.csv | 316 - ...rovskite_solar_cells_with_descriptions.csv | 41569 ---------------- 2 files changed, 41885 deletions(-) delete mode 100644 data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv delete mode 100644 data/tabular/perovskite_db/perovskite_solar_cells_with_descriptions.csv diff --git a/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv b/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv deleted file mode 100644 index 8d8f86dda..000000000 --- a/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv +++ /dev/null @@ -1,316 +0,0 @@ -sl_num,"Poymer name","SMILES (Atoms Ce and Th are placeholders for head and tail information, respectively)","Experiment Tg (K)","Calculated Tg (K)","Calculated Tg std. dev. (K)","Experiment density at 300K (g/cc)","Calculated density at 300K (g/cc)","Calulated density at 300K std. dev. (g/cc)","Calculated glass CTE (10-6/K)","Calculated glass CTE std. dev. (10-6/K) ","Calculated rubber CTE (10-6/K)","Calculated rubber CTE std. dev. (10-6/K)" -1,"Poly[oxy(diethylsilylene)] ",[Ce]O[Si](CC)(CC)[Th],130,137.978175297484,3.82478759807402,,0.954614133314522,0.000938682688007981,NA,NA,1047.6534189166,77.9902091866143 -2,"Poly(dimethyl siloxane) ",[Ce][Si](C)(C)O[Th],152,193.259048477146,51.1217472645399,0.965,0.961513453072118,0.00107083792599067,NA,NA,1459.12223998532,227.550411782066 -3,"Poly(1,4-butadiene) (cis)",[Ce]C/C=C\C[Th],171,211.73349156608,3.06754952845933,0.89,0.88742931382377,0.000594488197864709,NA,NA,1389.39265961122,196.658388360818 -4,"Poly(dimethylsilylenemethylene) ",[Ce][Si](C)(C)C[Th],173,258.672100173475,4.67086403061477,0.892,0.930084758590588,0.00202019230466566,NA,NA,1386.07067376403,197.839448747945 -5,"Poly[oxy(methylphenylsilylene)] ",[Ce][Si](C)(C1=CC=CC=C1)O[Th],187,286.910570286293,5.81842867401143,1.11,1.12311676478221,0.00177038820630405,NA,NA,875.991959985182,55.277667928855 -6,"Poly(3-hexoxypropylene oxide) ",[Ce]OC(COCCCCCC)C[Th],188,229.018353182911,5.08661065851277,,0.939580882664612,0.00188146421226363,NA,NA,1493.15398873748,155.440610432736 -7,"Polyoxytetramethylene ",[Ce]OCCCC[Th],190,237.969286603862,5.10402752999963,0.98,0.964877420910301,0.00243759521574537,NA,NA,1617.55415492786,258.308924022831 -8,"Poly(1 , 1 -dimethylsilazane) ",[Ce][Si](C)(C)N[Th],191,267.197133631238,5.70897684236564,,1.06211724269242,0.00158814523116498,NA,NA,1261.45801302291,174.652677674 -9,"Poly(2-n-butyl- 1 ,4-butadiene) ",[Ce]CC(CCCC)=CC[Th],192,232.562647781669,9.65734680744912,,0.864194429651711,0.00263245875161045,NA,NA,1503.69418827587,185.307585275325 -10,"Poly(vinyl n-octyl ether)",[Ce]CC(OCCCCCCCC)[Th],194,221.110333985252,5.3347167563296,0.914,0.883741180644881,0.00118764525304907,NA,NA,1351.2572173451,120.595769931678 -11,"Poly(3-butoxypropylene oxide) ",[Ce]OC(COCCCC)C[Th],194,233.769643346594,3.95438547281954,,0.969657623219765,0.00177016254241031,NA,NA,1518.65867570353,162.495181756523 -12,"Polyethylene ",[Ce]CC[Th],195,237.055293759839,3.19858380234748,0.85,0.841803436105798,0.00219069797638554,NA,NA,1622.06467810105,263.587926294852 -13,"Polyoxytrimethylene ",[Ce]CCCO[Th],195,245.83031582855,6.07774615396059,,1.00586619702628,0.00241167123791566,NA,NA,1578.81410294104,266.124898105645 -14,"Poly(2-n-propyl-1 ,4-butadiene) ",[Ce]CC(CCC)=CC[Th],196,240.574271563854,4.51406947866163,,0.868620171431636,0.00154974244483257,NA,NA,1468.8825541008,174.570655585634 -15,"Poly(2-ethyl- 1 ,4-butadiene) ",[Ce]CC(CC)=CC[Th],197,220.729780186154,7.09991570306343,0.883,0.876146733524316,0.00179905087087828,NA,NA,1364.95827042847,126.344850153969 -16,"Poly(vinyl n-decyl ether) ",[Ce]CC(OCCCCCCCCCC)[Th],197,251.161378869628,8.97812411540191,,0.879234995869072,0.00257560821957894,NA,NA,1436.02932180559,166.078617772895 -17,"Polyisobutylene ",[Ce]CC(C)(C)[Th],199,198.569298559268,37.740870484001,1.3,1.29428668450518,0.00236794569881994,NA,NA,1137.00362256784,65.601734386398 -18,"Poly[oxy(methyl y-trifluoropropylsilylene)] ",[Ce][Si](C)(CCC(F)(F)F)O[Th],199,396.052375377237,11.4578602715574,0.84,0.881919372599928,0.00347122892466138,NA,NA,957.076593931573,97.8911123955054 -19,"Poly(dimethylsilylenetrimethylene) ",[Ce][Si](C)(C)CCC[Th],203,239.977865479746,7.61507487533686,,0.861389145858834,0.00195772907971427,NA,NA,1667.82801048277,225.856806795264 -20,"Polyisoprene ",[Ce]CC=C(C)C[Th],203,236.07422234778,6.18881312547686,,0.903157981662005,0.00161201702090509,NA,NA,1641.03125580535,263.902553345147 -21,"Polyoxyoctamethylene ",[Ce]CCCCCCCCO[Th],203,276.53578092984,5.33630266462014,0.905999999999999,0.886887127546462,0.00123004254964053,NA,NA,1403.94830492136,168.29604536713 -22,"Polyoxyhexamethylene ",[Ce]CCCCCCO[Th],204,234.925596116368,3.93530602143983,0.932,0.924639808193608,0.00107975083388421,NA,NA,1676.08936395778,290.264796905684 -23,"Poly(tetramethylene adipate) ",[Ce]CCCCOC(=O)CCCCC(=O)O[Th],205,249.242179448893,5.02993192288776,1.219,1.13093028891606,0.00255336268216327,NA,NA,1043.58843065151,113.714583374212 -24,"Poly(propylene oxide) ",[Ce]CC(C)O[Th],206,260.271677508117,3.39988465052591,1.125,1.11034521905386,0.00112291980478028,NA,NA,1602.74095219483,265.110270860746 -25,"Polyoxyethylene ",[Ce]OCC[Th],206,273.9507222657,6.67987872502901,1,0.996620900270346,0.00178913697342286,NA,NA,1582.72281777152,208.289180731788 -26,"Poly(vinyl 2-ethylhexyl ether) ",[Ce]CC(OCC(CC)CCCC)[Th],207,227.817196883904,10.498302858874,0.917999999999999,0.903580680717478,0.00277314346288121,NA,NA,1373.75092019863,121.625600874647 -27,"Poly(vinyl n-pentyl ether)",[Ce]CC(OCCCCC)[Th],207,240.027793688003,30.2645646036528,0.904,0.886507865611722,0.00192338804617456,NA,NA,1059.81800690415,46.8389248265568 -28,"Poly(n-octyl acrylate) ",[Ce]CC(C(=O)OCCCCCCCC)[Th],208,221.878548129785,6.01887910474838,0.971,0.958225245513223,0.00223423188549729,NA,NA,1208.08350732131,100.039552958159 -29,"Poly(vinyl n-hexyl ether) ",[Ce]CC(OCCCCCC)[Th],209,224.946734557155,8.82872716878902,0.925,0.894875961966443,0.00187099257257821,NA,NA,1358.41260210041,114.550462436361 -30,"Poly(3-methoxypropylene oxide) ",[Ce]OC(COC)C[Th],211,277.724725385298,6.68503705038357,,1.08342747109085,0.00198038728900243,NA,NA,1543.93154695516,198.847920787691 -31,"Polypentadiene ",[Ce]C(C=CC)C[Th],213,316.047287302687,15.4373792624243,0.89,0.85123510264957,0.00346680212195514,NA,NA,1499.11751240978,151.789655420915 -32,"Poly(n-heptyl acrylate) ",[Ce]CC(C(=O)OCCCCCCC)[Th],213,227.200965653964,6.99441698318965,,0.971211104447466,0.00141040995063512,NA,NA,1190.65828238314,96.4832137286284 -33,"Poly(e-caprolactone) ",[Ce]OCCCCCC(=O)[Th],213,248.725426095468,4.38591811385529,1.095,1.08327808600727,0.00140912910160297,NA,NA,1121.76594091009,132.654282673965 -34,"Poly(n-nonyl acrylate) ",[Ce]CC(C(=O)OCCCCCCCCC)[Th],215,221.429828984364,6.39967825846948,,0.947696286562711,0.00173926584317708,NA,NA,1227.35252477707,105.683964414476 -35,"Poly(n-hexyl acrylate) ",[Ce]CC(C(=O)OCCCCCC)[Th],216,231.80293669172,6.83061606005762,,0.985249996371261,0.00178120827868813,NA,NA,1156.87303377679,80.9404917533491 -36,"Poly(decamethylene adipate) ",[Ce]CCCCCCCCCCOC(=O)CCCCC(=O)O[Th],217,240.192834549303,4.92389119364619,,1.0235548491819,0.00181912000036639,NA,NA,1231.3256709431,159.25424776634 -37,"Poly(n-dodecyl methacrylate) ",[Ce]CC(C)(C(=O)OCCCCCCCCCCCC)[Th],218,255.137965955934,7.30430945821921,1.25,1.29871102671152,0.00138713837704177,NA,NA,1186.192478868,161.148961336001 -38,"Polyoxymethylene ",[Ce]OC[Th],218,238.446937371316,7.32702027076798,0.929,0.933459198542532,0.00138371328799186,NA,NA,1195.4433193378,110.913575359025 -39,"Poly(n-butyl acrylate) ",[Ce]CC(C(=O)OCCCC)[Th],219,234.962605053117,8.68249624762844,1.087,1.02725959912552,0.00325270988972356,NA,NA,1129.83519711912,91.6484370391569 -40,"Poly (1 -heptene) ",[Ce]CC(CCCCC)[Th],220,234.874525737104,6.86421222742066,,0.834624463219398,0.00146272816121606,NA,NA,1331.82062236929,124.203749828422 -41,"Poly(oxycarbonyl-3-methylpentamethylene) ",[Ce]CCC(C)CCC(=O)O[Th],220,264.984094720756,5.82417953160687,,1.0556901278994,0.00195452302963069,NA,NA,1117.35734000851,126.002125854762 -42,"Poly(2-isopropyl-1 ,4-butadiene) ",[Ce]CC(C(C)C)=CC[Th],221,242.679353026841,9.40297660081463,0.927,0.912142422285399,0.00212625332798379,NA,NA,1390.16769522926,123.002002477916 -43,"Poly(vinyl n-butyl ether) ",[Ce]CC(OCCCC)[Th],221,278.419332515715,7.80202173554331,,0.871915430224894,0.00205959885920411,NA,NA,1346.1658921241,137.047721793798 -44,"Poly(1-pentene) ",[Ce]CC(CCC)[Th],223,260.385007535967,14.1531754307119,0.86,0.834294550900851,0.00220996252389361,NA,NA,1333.26323585249,114.140805124635 -45,Poly(1-hexene),[Ce]CC(CCCC)[Th],223,291.385899775112,15.5040511941782,0.85,0.832354496265873,0.002411693929634,NA,NA,1335.96054177695,132.570312636202 -46,"Polychloroprene ",[Ce]CC=C(Cl)C[Th],225,293.66118799244,5.2934750407625,1.24299999999999,1.21663050851177,0.00185700797887021,NA,NA,1046.1826903427,111.748743379264 -47,"Poly(propylene sulfide) ",[Ce]SC(C)C[Th],226,320.970198347197,3.41540316950677,,1.13044663254041,0.00171461885464588,NA,NA,947.231142193885,103.643381284151 -48,Poly(1-butene),[Ce]CC(CC)[Th],228,295.376874182349,10.8144327878166,0.86,0.843530686985376,0.00158233423831343,NA,NA,1310.04168638994,148.076589311953 -49,"Poly(2-octyl acrylate) ",[Ce]CC(C(=O)OC(C)CCCCCC)[Th],228,256.143459797522,3.42670066038039,1.183,1.10746308649845,0.00163424935210934,NA,NA,1085.72586772537,122.892169790012 -50,"Poly(ethylene azelate) ",[Ce]CCOC(=O)CCCCCCCC(=O)O[Th],228,241.079173214367,14.0400202807189,,0.95396388331623,0.00122591877829749,NA,NA,1072.64533912386,59.1373984312311 -51,"Poly(n-propyl acrylate) ",[Ce]CC(C(=O)OCCC)[Th],229,243.069683586561,6.04360264346544,1.08,1.06026035796531,0.0022645269096169,NA,NA,1077.58149307933,84.8293022192328 -52,"Polypropylene ",[Ce]CC(C)[Th],233,318.070133795887,6.76376498737687,0.85,0.840785084465656,0.00221569233013218,NA,NA,1376.50058124501,177.547831623198 -53,"Poly(ethylene adipate) ",[Ce]CCOC(=O)CCCCC(=O)O[Th],233,362.930763959124,9.83734107442414,1.6,1.61114506806886,0.00430593671442856,NA,NA,1398.14079558374,250.29392765352 -54,"Poly(vinylidene fluoride) ",[Ce]CC(F)(F)[Th],233,263.246420973109,2.59422456485276,1.188,1.19936825344596,0.0022279849725486,NA,NA,947.792049189123,89.3687180825135 -55,"Poly(2-heptyl acrylate) ",[Ce]CC(C(=O)OC(C)CCCCC)[Th],235,248.021718134209,9.39515899268575,,0.965459540208533,0.00165685143601716,NA,NA,1059.32240724228,66.892566452172 -56,"Poly(6-methyl-1 -heptene) ",[Ce]CC(CCCC(C)C)[Th],239,262.534932531322,15.9422952617847,,0.835796418762847,0.0022154209694323,NA,NA,1222.50853413326,85.208929958988 -57,"Poly(2-bromo-1 ,4-butadiene) ",[Ce]CC(Br)=CC[Th],241,301.2978960724,7.49385060248661,,1.77198658486036,0.00364569679822129,NA,NA,893.123745619498,81.1288219125666 -58,"Poly[(methyl)phenylsilylenetrimethylene] ",[Ce][Si](C)(C1=CC=CC=C1)CCC[Th],243,254.673074309014,1.76433190402008,1.085,1.08532237309052,0.00180709465073137,NA,NA,1126.35999487655,136.157928095944 -59,"Poly(ethylene sebacate) ",[Ce]CCOC(=O)CCCCCCCCC(=O)O[Th],243,290.654416687706,6.69684358310124,,0.999098096327427,0.00225646060582651,NA,NA,1122.66896311802,106.276295323042 -60,"Poly(isobutyl acrylate) ",[Ce]CC(C(=O)OCC(C)C)[Th],249,268.909513709756,5.45744254820062,1.06,1.02650676588256,0.00248837161784578,NA,NA,1048.07080758316,72.2553627742527 -61,"Poly(vinyl isobutyl ether) ",[Ce]CC(OCC(C)C)[Th],251,277.660757339841,6.9125520038317,0.93,0.901931034942913,0.00318775069972093,NA,NA,1250.86939628519,84.3702695402235 -62,"Poly(ethyl acrylate) ",[Ce]CC(C(=O)OCC)[Th],251,301.424399291879,9.60195460045658,1.12,1.09999008169614,0.00257668742458947,NA,NA,1014.13221485297,77.6641884886777 -63,"Poly(vinyl sec-butyl ether) ",C(C)(CC)OC(C[Th])[Ce],253,252.134088496219,8.98897782558531,0.971,0.963014672297055,0.00184363739887111,NA,NA,1139.51562355375,97.9650493833757 -64,"Poly(n-octyl methacrylate)",[Ce]CC(C)(C(=O)OCCCCCCCC)[Th],253,272.487977154637,10.2501587384726,0.92,0.912958969502965,0.00303967207139054,NA,NA,1093.30816891786,62.5180984909194 -65,"Poly(sec-butyl acrylate)",[Ce]CC(C(=O)OC(C)CC)[Th],253,270.092440229788,11.0860600677365,1.052,1.02226597371281,0.00229079172283446,NA,NA,975.22627334834,58.6115212329924 -66,"Poly(vinyl ethyl ether) ",[Ce]CC(OCC)[Th],254,320.861318875326,9.17114054677643,0.94,0.949009651657428,0.0025042797808371,NA,NA,1464.42420088409,156.542206098683 -67,"Perfluoropolymer 2 ",[Ce]C(F)(F)C(F)(F)C(F)(F)C(F)(F)C1(=NC(C(F)(F)C(F)(F)OC(F)(F)F)=NC([Th])=N1),255,345.364311753346,9.71075293298512,,1.85828131280645,0.00495679143812786,NA,NA,1245.87468028532,76.7316877802288 -68,"Poly(vinylidene chloride) ",[Ce]CC(Cl)(Cl)[Th],256,473.340868546868,26.5172131182745,1.63,1.73384071739786,0.00309517600537311,NA,NA,588.999454575179,41.3125057382276 -69,"Poly(3-pentyl acrylate) ",[Ce]CC(C(=O)OC(CC)CC)[Th],257,263.296463643001,8.03153028759273,,1.00390518093063,0.00188665653709432,NA,NA,942.841290959658,43.7840755032521 -70,Poly(5-methyl-1-hexene),[Ce]CC(CCC(C)C)[Th],259,283.596650537919,9.94195708456318,,0.833444684643874,0.00259627372975965,NA,NA,1195.59367778891,83.4656373313281 -71,"Perfluoropolymer 1",[Ce]C(F)(C(F)(F)F)OC(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)C(F)(F)OC(F)(C(F)(F)F)C1(=NC(C(F)(F)F)=NC([Th])=N1),260,364.001398576557,6.48027784206413,,1.85352596007999,0.00478536112552434,NA,NA,1286.27138083928,68.4277218913917 -72,"Poly(oxy-2,2-dichloromethyltrimethylene) ",[Ce]CC(CCl)(CCl)CO[Th],265,408.466566193854,12.1986724208312,1.386,1.32761272153515,0.00359240191356212,NA,NA,763.54700981707,62.9343505975934 -73,"Poly[(4-dimethylaminophenyl)methylsilylenetrimethylene] ",[Ce][Si](C)(C1=CC=C(N(C)C)C=C1)CCC[Th],267,339.630782901109,10.6538251296414,,1.00145854185981,0.00205055319630406,NA,NA,1241.80969340277,134.471287671934 -74,"Poly(n-hexyl methacrylate) ",[Ce]CC(C)(C(=O)OCCCCCC)[Th],268,259.415963875809,12.3025425267619,1.01,0.987942498889689,0.00211272862952233,NA,NA,1083.04706047824,85.5853913829056 -75,"Poly(1,2-butadiene)",[Ce]CC(C=C)[Th],269,286.545332214567,9.16165581843023,0.909,0.890493720768229,0.00253395611910745,NA,NA,1291.54728569336,134.420096101271 -76,"Poly(vinyl isopropyl ether) ",[Ce]CC(OC(C)C)[Th],270,307.703539564178,15.7189558899635,0.924,0.927469206699786,0.00338225914124697,NA,NA,1202.93738223897,93.3221477611799 -77,"Poly(vinyl methyl sulfide) ",[Ce]CC(SC)[Th],272,288.143865787563,6.25750416161697,1.175,1.30039536324196,0.00177325204615634,NA,NA,838.342091576881,70.7328059348425 -78,"Poly(ethylene succinate) ",[Ce]OCCOC(=O)CCC(=O)[Th],272,355.280620614147,8.29140023824976,1.18,1.13952546544086,0.00174987899431678,NA,NA,853.653209812348,82.1322687378931 -79,"Poly(oxydiphenylsilyleneoxydimethylsilylene-1,4-phenylenedimethylsilylene) ",[Ce]O[Si](C1=CC=CC=C1)(C1=CC=CC=C1)O[Si](C)(C)C1=CC=C(C=C1)[Si](C)(C)[Th],273,322.821492581665,5.60914080364779,,1.07630965605783,0.00201708559142736,NA,NA,1059.93416363333,79.4993289813243 -80,"Poly(p-n-hexoxymethyl styrene) ",[Ce]CC(C1=CC=C(COCCCCCC)C=C1)[Th],278,313.22550300351,25.9990631299735,,1.05879923484596,0.00237700378619268,NA,NA,1109.57172517125,96.2606578607824 -81,"Poly(vinyl butyrate) ",[Ce]CC(OC(=O)CCC)[Th],278,288.038620670443,12.6362573820943,,0.970379422825704,0.00200499185695953,NA,NA,1191.98349360142,104.684599496302 -82,"Poly(p-n-butyl styrene) ",[Ce]CC(C1=CC=C(CCCC)C=C1)[Th],279,281.498306741904,33.0038869316322,,0.950425392201325,0.00240272295228846,NA,NA,1101.75814261225,85.2960549185925 -83,"Poly(methyl acrylate) ",[Ce]CC(C(=O)OC)[Th],281,360.828622999145,10.9712345651515,1.22,1.1648629432436,0.00220443093348625,NA,NA,936.412763494325,76.7645560934896 -84,"Poly(vinyl propionate) ",[Ce]CC(OC(=O)CC)[Th],283,328.609315703697,14.2975590446764,1.02,1.09409760178529,0.00234099476377058,NA,NA,1048.56842558655,87.3319070943092 -85,"Poly(2-ethylbutyl methacrylate) ",[Ce]CC(C)(C(=O)OCC(CC)CC)[Th],284,294.435929554771,17.3294659242219,1.04,0.984582576269695,0.00287166829559999,NA,NA,947.485163694066,53.0346196844121 -86,"Poly(o-n-octoxy styrene) ",[Ce]CC(C1=C(OCCCCCCCC)C=CC=C1)[Th],286,292.841611388225,20.5740797045633,,0.958983985352863,0.00223951044823064,NA,NA,948.119244524376,44.2327542096195 -87,"Poly(2-t-butyl-1,4-butadiene) ",[Ce]CC(C(C)(C)C)=CC[Th],293,369.294567758393,11.5917234534817,,0.865622768043139,0.00338437349982316,NA,NA,1125.15194613367,98.0433231198152 -88,"Poly(n-butyl methacrylate) ",[Ce]CC(C)(C(=O)OCCCC)[Th],293,296.02624531675,20.2717567714079,1.055,1.01862476604723,0.0032253020826499,NA,NA,1007.98587301154,75.5097166413591 -89,"Poly(2-methoxyethyl methacrylate) ",[Ce]CC(C)(C(=O)OCCOC)[Th],293,334.797209704594,16.0026590864814,,1.12686672169798,0.00257113779473541,NA,NA,952.463083547186,76.1077886498615 -90,"Poly(p-n-propoxymethyl styrene) ",[Ce]CC(C1=CC=C(COCCC)C=C1)[Th],295,323.752995396418,23.3945502465603,,1.00750789457592,0.00236384689327502,NA,NA,1151.25976573585,98.4122886625472 -91,"Poly(ethyl-p-xylylene) ",[Ce]CC1=CC=C(C(CC)=C1)C[Th],298,371.885683660998,16.4226936464669,,0.995462593221912,0.00195767275162045,NA,NA,1062.8120376431,112.48841488594 -92,"Poly(3,3,3-trifluoropropylene) ",[Ce]CC(C(F)(F)F)[Th],300,365.34992049352,8.31462765059166,1.58,1.5200770356042,0.00489555459852356,385.34800418506,11.7123235306707,1199.82378616878,89.0984144259505 -93,"Poly(vinyl acetate) ",[Ce]CC(OC(=O)C)[Th],301,406.301319512133,12.6826523655569,1.19,1.14982779607426,0.00371680986044961,325.969641397969,10.6249318326597,950.748113555226,84.0273984309039 -94,Poly(4-methyl-1-pentene),[Ce]CC(CC(C)C)[Th],302,330.036159929939,10.6652521072076,0.838,0.824079457634344,0.00264560786879593,484.398991633133,5.85126295442797,1135.58470279371,89.24999916964 -95,"Poly(vinyl formate) ",[Ce]CC(OC(=O))[Th],304,388.498750493975,8.08794761832091,,1.24574983050856,0.00231787220466418,257.104587857783,7.34881484740066,680.999708847709,50.2214922421325 -96,"Poly(vinyl chloroacetate) ",[Ce]CC(OC(=O)CCl)[Th],304,361.661809895146,18.1497104998066,1.45,1.41712088367741,0.00266941976380697,294.393255443298,5.07140653850557,696.279189103891,47.8404393836485 -97,"Poly(neopentyl methacrylate) ",[Ce]CC(C)(C(=O)OCC(C)(C)C)[Th],306,507.577028906263,12.1844895415763,0.993,0.954322955554638,0.00404097085708867,301.188871393146,7.15560073832824,889.384653454765,54.8744831851589 -98,"Poly(n-propyl methacrylate) ",[Ce]CC(C)(C(=O)OCCC)[Th],308,336.094027531069,32.7297249011855,1.08,1.03943086633933,0.00237718845092548,375.185626407113,9.9020736798581,956.394230554064,68.2636795711909 -99,"Poly(12-aminododecanoic acid) ",[Ce]NCCCCCCCCCCCC(=O)[Th],310,285.249495438459,12.644835989708,0.99,0.958694295549184,0.00179543578574418,463.28845140578,9.99281824352598,1165.4322967365,145.582012302889 -100,"Poly[di(p-tolyl)silylenetrimethylene] ",[Ce][Si](C1=CC=C(C)C=C1)(C1=CC=C(C)C=C1)CCC[Th],311,382.990190851586,8.05455329673375,,1.01850944264903,0.00198855895692795,347.394072810819,5.64220168858982,1023.76714433171,85.5410304034991 -101,"Poly(4-cyclohexyl- 1 -butene) ",[Ce]CC(CCC1CCCCC1)[Th],313,301.142199837967,8.47867999232277,1.04,1.01551180425536,0.00193805567821971,392.104032355372,6.12439154582252,975.914615122967,104.44009874695 -102,"Poly(hexamethylene sebacamide) ",[Ce]NCCCCCCNC(=O)CCCCCCCCC(=O)[Th],313,318.776399681153,16.0838081936895,,0.901045915087942,0.00209072488324081,409.948947397139,14.8957976790088,972.935281848252,75.7184571726243 -103,"Poly[(pentafluoroethyl)ethylene] ",[Ce]CC(C(F)(F)C(F)(F)F)[Th],314,367.208134775396,10.1436206357955,,1.61777627420139,0.00606729811437653,402.082961557394,11.2586873903552,1032.08717909375,33.0893281721887 -104,"Poly(11-aminoundecanoic acid)",[Ce]NCCCCCCCCCCC(=O)[Th],315,304.744804614438,12.3470625881246,1.01,0.970207821322705,0.00174559990513403,451.364041438503,4.39057337091876,1135.63014052617,143.27188909592 -105,"Poly(t-butyl acrylate)",[Ce]CC(C(=O)OC(C)(C)C)[Th],315,378.438698471127,14.4961852753056,1,0.995074185293416,0.00299480112293228,368.595628727013,10.0937173085307,887.900888719843,61.9141746920849 -106,"Poly(3-phenoxypropylene oxide) ",[Ce]OC(COC1=CC=CC=C1)C[Th],315,329.563978348488,5.28532901698303,,1.15143777471025,0.00162942285991965,372.178315130054,5.92898701203234,973.009382273318,81.3821579298219 -107,"Poly(2,3,3,3-tetrafluoropropylene) ",[Ce]CC(F)(C(F)(F)F)[Th],315,410.128736712219,8.05072993761744,,1.68747004806483,0.00725506761217709,279.637309369222,8.3708349736757,1092.13753341449,66.1138575573844 -108,"Poly(10-aminodecanoic acid) ",[Ce]C(=O)CCCCCCCCCN[Th],316,302.017172137745,15.5386941518799,,0.980401388465335,0.00191998836296131,428.651595965917,6.79345005805028,1096.98163190972,136.855727410251 -109,"Poly(3,3-dimethylbutyl methacrylate)",[Ce]CC(C)(C(=O)OCCC(C)(C)C)[Th],318,359.835342680845,5.59764224227209,,1.24253978054746,0.00201135176738938,280.679571749467,5.19041512702977,822.418753332193,65.69799315392 -110,"Poly[oxy(m-phenylene)] ",[Ce]C1=CC(=CC=C1)O[Th],318,390.992460648788,21.8648244156226,1.001,0.968880643607946,0.00393671538661643,357.906704021379,14.0911322355972,962.909328132115,63.8881213210872 -111,"Poly(decamethylene sebacamide) ",[Ce]NCCCCCCCCCCNC(=O)CCCCCCCCC(=O)[Th],319,302.012277101311,15.6154655134607,,0.983107436365325,0.00123804945160832,437.370823871113,9.04243050732606,1086.85798239548,127.068069128937 -112,"Poly(N-butyl acrylamide) ",[Ce]CC(C(=O)NCCCC)[Th],319,297.254699439435,38.8301070300505,,1.01100752817499,0.00312638625909206,443.720311345778,10.7756731190643,1053.10069770329,90.2564127706868 -113,"Poly(vinyl trifluoroacetate) ",[Ce]CC(OC(=O)C(F)(F)F)[Th],319,407.01555138,9.98019583224402,,1.54678923955107,0.00297930357974409,345.741121071134,11.5127041995628,1041.47525222565,71.3559453671771 -114,"Poly(p-n-butoxy styrene) ",[Ce]CC(C1=CC=C(C=C1)OCCCC)[Th],320,267.488623438059,10.3833925910176,,1.00131167183742,0.00383696180001892,469.784058722416,7.26929547806098,1163.01894670051,104.845816043856 -115,"Poly(isobutyl methacrylate) ",[Ce]CC(C)(C(=O)OCC(C)C)[Th],321,375.179871455226,27.851584495564,1.045,1.0035634952532,0.00444518786909728,357.181762734761,14.3252630030521,943.128919668369,63.4066095705968 -116,Poly(3-methyl-1-butene),[Ce]CC(C(C)C)[Th],323,376.63882849128,9.51312391804812,,0.820400518959879,0.00234910148324129,386.883222097674,11.0614096920984,1024.04419881694,67.141701341178 -117,"Poly(9-aminononanoic acid) ",[Ce]C(=O)CCCCCCCCN[Th],324,309.675054872279,13.6027127044151,,0.997214550845525,0.00321935362391931,418.348415831815,7.64104975978733,1041.46568379234,116.896376185457 -118,"Poly(vinyl butyral) ",CCCC1OC([Ce])CC(C[Th])O1,324,316.402666753529,12.9032582842792,1.04,1.01484846863901,0.00137879416063576,393.252764357153,8.55675827491279,989.584586219563,109.142456098201 -119,"Poly(8-aminocaprylic acid) ",[Ce]NCCCCCCCC(=O)[Th],324,336.198787997751,9.76243396631681,1.083,1.05277152975589,0.00220087446050155,406.119713916327,8.70974697760127,1271.14757892625,165.764812197347 -120,"Poly(ethyl methacrylate) ",[Ce]CC(C)(C(=O)OCC)[Th],324,420.320825100185,9.56454156661434,1.34,1.287588942326,0.00232748008005801,213.486089072907,4.22910634116234,714.654727037386,57.5806606208921 -121,"Poly(ethylene isophthalate) ",C(=O)(O[Ce])C1=CC=CC(=C1)C(=O)OCC[Th],324,422.191376309563,14.9325048578863,1.119,1.0714747404767,0.00366970993505502,306.463047978101,10.1885450901065,881.426445412296,57.7206238442507 -122,"Poly[(4-dimethylaminophenyl)phenylsilylenetrimethylene)] ",[Ce][Si](C1=CC=CC=C1)(C1=CC=C(N(C)C)C=C1)CCC[Th],325,385.100725849258,6.81660050635309,,1.04813828992696,0.00146750402137047,344.938281259015,8.53404347969067,1031.33762723236,89.16675023221 -123,"Poly(isopropyl methacrylate) ",[Ce]CC(C)(C(=O)OC(C)C)[Th],327,455.410665515601,18.8435497205805,1.033,1.01255798289497,0.00450600351229428,293.010211213002,10.731233129524,852.787239468695,55.5954888904321 -124,"Poly(methyl-p-xylylene) ",[Ce]CC1=CC=C(C(C)=C1)C[Th],328,407.642681286309,9.47403630602296,,1.01756675800468,0.00243769216530809,267.84390393576,7.47754849316615,976.17126865101,100.331336689921 -125,"Poly(vinyl isobutyral) ",[Ce]CC(C(=O)C(C)C)[Th],329,355.615315545325,22.2265334288177,,0.980977057319205,0.002432314677786,403.047956677883,8.9809662459378,883.551151561342,53.4472623132901 -126,"Poly(p-isopentoxy styrene) ",[Ce]CC(C1=CC=C(C=C1)OCCC(C)C)[Th],330,311.012011850489,17.6297017963587,1.24,1.20110420016681,0.0036576638895461,404.659761491465,7.2456615733736,950.919053020083,71.5754405731184 -127,"Poly(sec-butyl methacrylate)",[Ce]CC(C)(C(=O)OC(C)CC)[Th],330,324.099890211659,12.7263958877064,,1.03899789965244,0.00238331872025192,365.817063030406,10.456466131673,925.133303412274,96.3377151048556 -128,"Poly(7-aminoheptanoic acid) ",[Ce]C(=O)CCCCCCN[Th],330,428.678757882458,31.9887327402071,1.052,0.998861540610524,0.00474675813330208,340.440591285407,9.67816669004049,876.757140723208,47.508105988897 -129,"Poly(hexamethylene adipamide) ",[Ce]C(=O)CCCCC(=O)NCCCCCCN[Th],330,322.930383317086,5.54017544932763,1.07,1.06946910568417,0.00216584726650997,336.942101408393,6.79512696741528,850.789261126342,79.5971379301036 -130,"Poly(n-butyl a-chloroacrylate) ",[Ce]C(Cl)(C(=O)OCCCC)C[Th],330,299.312021556086,16.8480201969897,,0.98649445610129,0.00346938206202144,451.157159867883,11.6138646332846,1136.54546441662,96.4428844538913 -131,"Poly(oxydiphenylsilylene-1,3-phenylene)",[Ce]O[Si](C1=CC=CC=C1)(C1=CC=CC=C1)C1=CC(=CC=C1)[Th],331,413.153892041637,16.4360078310705,,1.65003701363892,0.00535949447761356,399.009345356846,19.5190323033924,1021.06821157798,24.1550662847396 -132,"Poly[(heptafluoropropyl)ethylene] ",[Ce]CC(C(F)(F)C(F)(F)C(F)(F)F)[Th],331,427.933966844775,8.78714331870792,,1.14481651011672,0.0024211817972266,246.26011224048,4.03548100765754,828.462309756577,54.7993533780294 -133,"Poly(3-cyclopentyl- 1 -propene) ",[Ce]CC(CC1CCCC1)[Th],333,369.247505232976,14.7987464918571,,1.05496271088775,0.00391009694878711,322.281731077269,8.0224425901532,908.943424674761,85.0928155945333 -134,"Poly(3-phenyl- 1-propene) ",[Ce]CC(CC1=CC=CC=C1)[Th],333,350.881898062352,14.4648309560134,,0.91063778400483,0.00302181702721312,421.934687417838,8.74927414457894,958.292490074698,65.9893270607753 -135,"Poly(p-xylylene) ",[Ce]CC1=CC=C(C=C1)C[Th],333,386.731279434883,6.38618928406617,1.046,1.02029882395672,0.00190612662788326,293.146415937913,4.5526163284743,800.63463546234,45.7542510472883 -136,"Poly(e-caprolactam) ",[Ce]NCCCCCC(=O)[Th],335,332.70937818313,8.3776354892936,1.084,1.0697311793045,0.00189724328695465,342.40538701648,5.0970946335463,852.903099017778,81.3683868326684 -137,"Poly(ethylene- 1 ,4-naphthalenedicarboxylate) ",[Ce]OC(=O)C1=CC=C(C2=CC=CC=C12)C(=O)OCC[Th],337,441.961800955434,5.18566335628662,1.33,1.29187148623053,0.00151761050788657,190.061170617789,5.07502522985877,653.366035822828,49.3867237762652 -138,"Poly(p-n-propoxy styrene)",[Ce]CC(C1=CC=C(C=C1)OCCC)[Th],343,329.47162276062,34.5970734913077,,1.01226044439111,0.00331790988516533,426.621611490324,12.069655758534,1122.78374869038,84.8253195517861 -139,"Poly(n-propyl a-chloroacrylate) ",[Ce]C(Cl)(C(=O)OCCC)C[Th],344,393.42220334024,27.0041749509152,1.3,1.24429655145779,0.00477622273895403,344.48092462816,13.8483748691717,886.44734561122,60.3757478876155 -140,"Poly(ethylene-1,5-naphthalenedicarboxylate)",[Ce]OC(=O)C1=CC=CC2=C(C=CC=C12)C(=O)OCC[Th],344,433.51543797312,12.0224767712212,,1.30155438987989,0.00180867141675129,198.667615877523,4.05315714762885,643.585434396554,47.4634770981471 -141,"Poly(vinyl propional) ",[Ce]CC(C(C)C(=O))[Th],345,426.695558577805,17.9985152639557,,1.00863552029186,0.00280402058686304,271.682868476467,7.1903882031616,695.042095604753,43.2942886909065 -142,"Poly(ethylene terephthalate) ",[Ce]CCOC(=O)C1=CC=C(C=C1)C(=O)O[Th],345,434.032377747873,7.40203212957029,1.385,1.27886091536047,0.00240809881302643,210.012210711608,5.79677882248971,690.896253251335,59.2440093994265 -143,"Poly(sec-butyl a-chloroacrylate) ",[Ce]C(Cl)(C(=O)OC(C)CC)C[Th],347,380.000128208318,14.7837090066617,1.24,1.18406028072591,0.00443084060480684,328.589340476989,9.97354549874304,824.892700476085,46.2240237011886 -144,"Poly(3-cyclohexyl- 1-propene) ",[Ce]CC(CC1CCCCC1)[Th],348,421.944680764617,10.2202742698952,1.385,1.37316571995152,0.00420609479506491,218.990163188387,4.87066189856905,798.510098387934,78.0044369162632 -145,"Poly(vinyl cyclopentane) ",[Ce]CC(C1CCCC1)[Th],348,359.472349520793,12.1049736193424,,0.899125546900085,0.00373078979336884,348.622581059489,10.6981016168959,888.113858008438,55.3458678735158 -146,"Poly(vinyl chloride) ",[Ce]CC(Cl)[Th],348,423.206705284343,17.7931628927915,,0.913013763942733,0.00368855473806988,356.401679621304,10.3081229263969,868.565947710138,56.59070084056 -147,"Poly(2-hydroxypropyl methacrylate) ",[Ce]CC(C)(C(=O)OCC(O)C)[Th],349,402.66031891194,12.7162844036049,,1.15501164457513,0.00399197082581039,238.460585600608,10.0969912900224,813.382982696411,56.2489999908942 -148,"Poly(p-methoxymethyl styrene)",[Ce]CC(C1=CC=C(C=C1)COC)[Th],350,375.69794968188,23.91884036256,,1.04987178091726,0.00184459797126025,417.412642274968,5.70109912944789,1060.18186947009,87.0457543329145 -149,"Poly(chloro-p-xylylene) ",[Ce]CC1=CC=C(C(Cl)=C1)C[Th],353,408.691834059738,8.21360046084553,,1.22461871345249,0.00268900900034582,242.323373377095,4.14518880896342,804.361385586553,67.2936840581016 -150,"Poly(bromo-p-xylylene) ",[Ce]CC1=CC=C(C(Br)=C1)C[Th],353,429.946158705442,11.1758088496621,,1.5845327014969,0.00337600589185802,215.950985358565,4.85679445817783,725.058854478164,55.5003941705032 -151,"Poly(vinyl acetal) ",[Ce]CC(OC(=O)C)[Th],355,409.235986163486,10.210316430714,,1.14906439313657,0.0037256677580051,323.560796358411,11.0742667784446,950.046533028911,85.5821286416503 -152,"Poly(ethylene oxybenzoate) ",[Ce]OC1=CC=C(C=C1)C(=O)OCC[Th],355,391.142051950408,6.21924351555332,,1.24619087680625,0.00227777966178802,242.33178127897,5.7318232257052,798.364199422537,72.8883292627269 -153,"Poly(vinyl alcohol) ",[Ce]CC(O)[Th],358,412.724457109498,10.762990293122,1.19,1.21941919980961,0.00382887274066895,179.333751863697,10.8620545872756,755.617778861692,79.3531932867986 -154,"Poly[oxy(p-phenylene)] ",[Ce]C1=CC=C(C=C1)O[Th],358,391.31995002652,13.6010704536671,,1.24274989509257,0.00160877425279968,249.475089915941,5.25807604598041,820.601909464626,80.3882812531711 -155,"Poly(p-sec-butyl styrene) ",[Ce]CC(C1=CC=C(C=C1)C(C)CC)[Th],359,413.58001526578,26.4888398390871,,0.93858345744422,0.00231906654926441,417.909725366426,11.3217730867633,1016.37385712276,57.295770168531 -156,"Poly(p-ethoxy styrene) ",[Ce]CC(C1=CC=C(C=C1)OCC)[Th],359,399.269335212494,24.9900552224921,,1.03374252424747,0.00313965200292769,367.777697938698,10.5195451518954,1099.13428119435,92.1096887576485 -157,"Poly(2-hydroxyethyl methacrylate) ",[Ce]CC(C)(C(=O)OCCO)[Th],359,421.26015037491,12.7987710051942,1.15,1.20891804541701,0.00369423460682473,202.762267445051,6.37011855705566,721.539065401861,56.5746976601864 -158,"Poly(2-methyl-5-t-butyl styrene) ",[Ce]CC(C1=C(C)C=CC(=C1)C(C)(C)C)[Th],360,455.048177471128,7.52881095541173,,1.28890197929513,0.0027927531892079,194.631344421046,5.39404038674253,518.101268560197,12.8618875503216 -159,"Poly(p-isopropyl styrene) ",[Ce]CC(C1=CC=C(C=C1)C(C)C)[Th],360,444.338879702687,24.6573031837033,,0.941785517010943,0.00423551969122176,398.990677516038,11.9396999646612,1020.34299083199,72.142279678633 -160,"Poly[thio(p-phenylene)] ",[Ce]C1=CC=C(C=C1)S[Th],360,512.483405875143,30.2978000983616,,0.911710335482572,0.00305182163230684,307.567067205978,14.0082498938858,708.994892232087,31.9481734775637 -161,"Poly(p-methoxy styrene) ",[Ce]CC(C1=CC=C(C=C1)OC)[Th],362,439.284281031013,13.2316637674735,,1.06529431965507,0.00224655868413214,301.492521177884,7.4392500423393,996.112111000017,75.915720885342 -162,"Poly(vinyl cyclohexane) ",[Ce]CC(C1CCCCC1)[Th],363,451.062138931319,21.2418597518932,1.27,1.21862496703525,0.00669386515452817,272.142165980087,8.83037635814806,802.806882479577,50.7143745716064 -163,"Poly(4-methoxy-2-methyl styrene) ",[Ce]CC(C1=C(C)C=C(C=C1)OC)[Th],363,466.110514094654,14.8913048964285,,1.03920366672038,0.00395372120166324,277.971899696936,8.34054359796011,920.986535013947,56.4352195775574 -164,"Poly(cyano-p-xylylene) ",[Ce]CC1=CC=C(C(C#N)=C1)C[Th],363,476.786434314339,19.5088180564449,0.95,0.87662474102907,0.00528698725929739,258.892794877314,11.2428271417549,839.356520980638,51.4243730674864 -165,"Poly(m-xylylene adipamide) ",[Ce]C(=O)CCCCC(=O)NCC1=CC=CC(=C1)CN[Th],363,461.270848015917,10.6876363275751,,1.07154775721638,0.00283421020558607,195.421234053456,6.37631296439106,722.944555286159,52.3435037985761 -166,"Poly(m-chloro styrene) ",[Ce]CC(C1=CC(Cl)=C(C=C1))[Th],363,530.164066990397,29.851282726236,,1.48694233238918,0.00829869995052007,286.429007423509,10.5537349009305,1142.94148328967,83.5873605646919 -167,"Poly(isopropyl a-chloroacrylate) ",[Ce]C(Cl)(C(=O)OC(C)C)C[Th],363,397.906321136044,11.0054619312166,,1.16000045288587,0.00352548479535872,239.276789851294,7.55375542695445,742.11641794767,61.9350103015525 -168,"Poly(a,a,a',a'-tetrafluoro-p-xylylene) ",[Ce]C(F)(F)C1=CC=C(C=C1)C(F)(F)[Th],363,460.595915500078,8.86646867182741,,1.18805780798948,0.00320974209403356,247.831361384501,9.22992759526878,774.201378584028,41.9192321903902 -169,"Poly(2-chloroethyl methacrylate) ",[Ce]CC(C)(C(=O)OCCCl)[Th],365,403.690812403381,8.0914667937628,1.32,1.26846035331391,0.00282654777840351,252.764716852684,5.76508997519723,735.187264064515,53.1931057817622 -170,"Poly(cyclohexylmethylsilane) ",[Ce][Si](C)(C1CCCCC1)[Th],366,452.85984243854,15.0559172234132,1.39,1.3124255764775,0.00407562170742157,275.889820946727,9.97247250500499,806.680925793885,54.3572584960248 -171,"Poly(ethyl a-chloroacrylate) ",[Ce]CC(Cl)(C(=O)OCC)[Th],366,548.30579991657,33.5522025435298,,0.924175683959178,0.00465470042264921,199.109397229522,10.3005165753981,727.868062784808,51.0925098041145 -172,"Poly(1,4-cyclohexylidene dimethylene terephthalate)",[Ce]C(=O)C1=CC=C(C=C1)C(=O)OCC1CCC(CC1)CO[Th],368,426.86431716734,5.54987810131364,1.196,1.15640403781475,0.00199885212886927,225.3313849341,4.18165136933576,740.600217685398,67.5994276293074 -173,"Poly(m-methyl styrene) ",[Ce]CC(C1=CC(C)=C(C=C1))[Th],370,452.3462413968,8.81913045837814,,0.977090203697013,0.00299308647790489,308.765109489516,10.1966750370168,914.69085070285,48.7566533598323 -174,"Poly(2,5-dimethyl-p-xylylene) ",[Ce]CC1=C(C)C=C(C(C)=C1)C[Th],373,484.348607700745,5.62985354182654,,0.973675771654108,0.00284781290342584,233.111150255328,7.10664734780243,1010.41309237798,104.286195361962 -175,"Polystyrene ",[Ce]CC(C1=CC=CC=C1)[Th],373,438.467487201441,4.24845056005598,1.92,2.04900066503261,0.00527034066187414,216.803970277598,6.22664554224149,817.469435228621,70.0401217003557 -176,"Phenoxy resin ",[Ce]C1=CC=C(C=C1)C(C)(C)C1=CC=C(C=C1)OCC(O)CO[Th],373,457.53373941507,14.350948884289,1.05,1.01430684505738,0.00351491171958105,284.164105522934,6.37175538562579,842.284330599547,50.1958610396883 -177,"Polychlorotrifluoroethylene ",[Ce]C(F)(F)C(F)(Cl)[Th],373,423.067767992585,8.80858636356259,,1.12805579661136,0.00198827342430344,225.403774723835,3.82442617533346,936.491312449742,94.4825568668291 -178,"Poly(p-methyl styrene) ",[Ce]CC(C1=CC=C(C=C1)C)[Th],374,491.487867224429,7.03367576484848,1.04,0.975547323763247,0.00265694366194232,310.986838744793,10.34110894127,979.175714816243,74.4355185096487 -179,"Poly(2,5-difluoro styrene) ",[Ce]CC(C1=C(F)C=C(C(F)=C1))[Th],374,469.184063925827,10.5054907435258,,1.24282909412085,0.00391731757151955,254.460586530782,9.02987826832123,892.160846202851,38.1075436423135 -180,"Poly(o-ethyl styrene) ",[Ce]CC(C1=C(CC)C=C(C=C1))[Th],376,433.897350685257,23.9468069472737,,0.982009567859,0.0035517758239069,299.770171251393,11.2225181579006,764.977014425805,35.9900517376959 -181,"Poly(3,5-dimethyl styrene) ",[Ce]CC(C1=CC(C)=C(C(C)=C1))[Th],377,460.78734983925,2.7697375445527,,0.953187695769124,0.00134226787128802,320.000611913574,9.0920287609881,957.826573200045,49.2249320785328 -182,"Poly(cyclohexyl methacrylate) ",[Ce]CC(C)(C(=O)OC1CCCCC1)[Th],377,461.237412491565,17.3218459992882,1.09799999999999,1.02252692864046,0.00318574244578499,252.848779800172,10.2848571393326,771.193880501879,47.1675073125207 -183,"Poly(o-vinyl pyridine) ",[Ce]CC(C1=NC=CC=C1)[Th],377,506.58085042561,8.83039284655511,,1.0761577023322,0.00181728579096327,222.636450973866,6.47031423091488,722.27864807216,49.7023811955331 -184,"Polyacrylonitrile ",[Ce]CC(C#N)[Th],378,483.890332749795,13.089990614407,1.17,1.11777673581947,0.00424216304802844,196.320663568717,8.30018689930407,802.125467410392,50.895715049508 -185,"Poly(methyl methacrylate) ",[Ce]CC(C)(C(=O)OC)[Th],378,454.257679580419,9.24083276889246,1.184,1.07825741872805,0.00206797386673032,157.518926451628,5.72354075492324,532.098009574394,15.9840684925884 -186,"Poly(vinyl formal) ",[Ce]CC1OCOC(C1)[Th],378,494.085691700349,8.15790002974634,1.23,1.16478550940714,0.00559274554703276,180.077972848408,6.11092185689142,959.943308578883,106.254534278532 -187,"Poly(o-fluoro styrene) ",[Ce]CC(C1=C(F)C=C(C=C1))[Th],378,457.555557810814,8.45178642810726,,1.13436599456361,0.00250355032407484,257.552717608181,7.96930307943012,816.933603517511,39.9881129691426 -188,"Poly(2,3,4,5,6-pentafluoro styrene) ",[Ce]CC(C1=C(F)C(F)=C(F)(C(F)=C1(F)))[Th],378,461.215846311556,12.182397699298,,1.49243237044806,0.00443599624675153,268.321846963847,4.13022216494348,919.412886643598,28.6056868974332 -189,"Poly(p-fluoro styrene) ",[Ce]CC(C1=CC=C(C=C1)F)[Th],379,471.922949588091,9.04726140029951,1.15,1.35545316975024,0.00229561262016656,132.909011432067,2.66206103598746,475.872874675177,23.2547938697371 -190,"Poly(acrylic acid) ",[Ce]CC(C(=O)O)[Th],379,465.584462082034,9.81468017570159,,1.13023071134361,0.00352042279778135,276.813001817377,8.4251903886974,857.331806351815,46.9953701677567 -191,"Poly(t-butyl methacrylate) ",[Ce]CC(C)(C(=O)OC(C)(C)C)[Th],380,514.964736146095,15.9975572165055,1.02,0.961572770651919,0.00488252453737965,248.590784534021,8.64695797538428,772.273620481066,43.4301126216063 -192,"Poly(3,4-dimethyl styrene) ",[Ce]CC(C1=CC(C)=C(C=C1)C)[Th],384,482.991504657538,10.3869204853666,,0.955422552703623,0.00436448777325678,301.165214589314,12.3866859799766,949.000754673299,55.5203228864015 -193,"Poly(2-fluoro-5-methyl styrene) ",[Ce]CC(C1=C(F)C=C(C(C)=C1))[Th],384,468.104749373069,12.6720008208203,,1.07768598254486,0.00284393422273496,287.460275232098,9.47783834142994,862.953531478003,37.7289249924539 -194,"Resin F ",[Ce]C1=CC=CC(=C1)NC(=O)CCCC(=O)NC1=CC=CC(=C1)OCC(O)CO[Th],384,443.85372524657,9.63164380240398,,1.23696308415336,0.00326972551330928,183.154730783763,6.44308997052025,714.247731357658,59.0329254877062 -195,"Poly(2,4-dimethyl styrene) ",[Ce]CC(C1=C(C)C=C(C=C1)C)[Th],385,526.021442055552,14.9771786593263,,0.955885804989063,0.00429812363606313,279.40207578259,8.69878422173379,890.827333939509,53.209193706862 -196,"Poly(p-methoxycarbonyl styrene) ",[Ce]CC(C1=CC=C(C=C1)C(=O)OC)[Th],386,491.885467515757,17.1423708806745,,1.13063882265245,0.00429810674711875,255.823395207269,4.28763908316408,851.070107096335,63.0883947466738 -197,"Poly(3-methyl-4-chloro styrene) ",[Ce]CC(C1=CC(C)=C(C=C1)Cl)[Th],387,491.580533310897,13.1808637508269,,1.1373447500861,0.00470156400808519,272.441014690476,7.7955289529241,811.919904230917,42.7027071798134 -198,"Poly(cyclohexyl a-chloroacrylate) ",[Ce]C(Cl)(C(=O)OC1CCCCC1)C[Th],387,468.077503578155,14.7873356644765,1.25,1.18020775346268,0.00264278918044411,243.175793454669,8.98056990347991,740.906977782265,43.4181652780816 -199,"Poly(p-xylylene sebacamide) ",[Ce]NCC1=CC=C(C=C1)CNC(=O)CCCCCCCCC(=O)[Th],388,371.821443947937,16.4797189872236,,1.08970647537823,0.00200806507602926,311.563623623058,5.12035446107016,847.701512940077,78.6735641130798 -200,"Poly[thio bis(4-phenyl)carbonate] ",[Ce]C1=CC=C(C=C1)SC1=CC=C(C=C1)OC(=O)O[Th],388,442.88134644724,11.8128816951644,1.355,1.32157813518822,0.00180540371866919,202.130637311931,4.65157493015588,644.025385942453,44.2050271862647 -201,"Poly(p-chloro styrene) ",[Ce]CC(C1=CC=C(C=C1)Cl)[Th],389,494.992116925954,9.49747444782342,,1.18856323161678,0.00262343444726296,246.119298584579,6.68505299056834,770.16807485966,46.0077948099488 -202,"Poly(phenylmethylsilane) ",[Ce][Si](C)(C1=CC=CC=C1)[Th],390,529.975106289379,25.8051574660255,,1.92902487264749,0.0146241176440422,216.003729684557,9.93067413362693,1035.34525140313,137.282060518668 -203,"Perfluoropolymer 3",[Ce]C(F)(F)C1(F)C(F)(F)C(F)(F)C(F)(C1(F)(F))[Th],390,481.793243725896,11.1918947184186,,1.04748116397534,0.00410205776448455,248.771096992239,9.49134221978806,685.567459307319,31.6560768281696 -204,"Poly[2,2-butane bis{4-(2-methylphenyl)}carbonate] ",[Ce]C1=CC(C)=C(C=C1)C(C)(CC)C1=C(C)C=C(C=C1)OC(=O)O[Th],392,474.523536121011,11.6140929867633,,1.20365338373099,0.00361462074435327,222.0814671453,5.83377780347468,690.98338418134,34.1766523218459 -205,"Poly(o-chloro styrene) ",[Ce]CC(C1=C(Cl)C=C(C=C1))[Th],392,554.123788531595,8.47724565309759,,1.09748242656441,0.00352468444181166,196.791982327935,8.77856880005591,781.779588382126,63.4840504576481 -206,"Poly(phenyl methacrylate) ",[Ce]CC(C)(C(=O)OC1=CC=CC=C1)[Th],393,501.4578004373,10.7721758869585,,1.3372650463618,0.00393759267597376,204.939218235628,6.02691459893571,660.848888670174,28.1667688623315 -207,"Polymethacrylonitrile ",[Ce]CC(C)(C#N)[Th],393,502.182678950354,15.0222672114735,1.21,1.15114268531013,0.00382368206821387,213.088090690907,5.42846695810263,716.93337553073,45.8241356866961 -208,"Poly(2,5-dichloro styrene) ",[Ce]CC(C1=C(Cl)C=C(C(Cl)=C1))[Th],393,549.875847107562,17.3651843679152,1.1,1.02385330115105,0.00342245920596919,157.026047165498,5.88270323756174,573.640886749909,35.7756311407543 -209,"Poly(a-p-dimethyl styrene)",[Ce]CC(C)(C1=CC=C(C=C1)C)[Th],394,604.758328909435,10.5281755686677,,0.952775223421251,0.00518552624069633,211.980393959401,6.36027845550088,890.362128060182,74.5285448032095 -210,"Poly(3-fluoro-4-chloro styrene) ",[Ce]CC(C1=CC(F)=C(C=C1)Cl)[Th],395,503.047849274119,9.74916547415206,,1.28268558620155,0.00419735711449802,246.275193301603,7.4110004435893,760.245548603661,39.02488986399 -211,"Poly[1,1-butane bis(4-phenyl)carbonate] ",[Ce]C1=CC=C(C=C1)C(CCC)C1=CC=C(C=C1)OC(=O)O[Th],396,427.186777275025,21.1503557837766,,1.1561103248124,0.00228839416252516,274.659370860952,5.10776205190793,866.521543324962,85.6945614778183 -212,"Poly(ethylene-2,6-naphthalenedicarboxylate) ",[Ce]OCCOC(=O)C2=CC1=CC=C(C=C1C=C2)C(=O)[Th],397,483.622355150635,11.442981272826,,1.26461469473909,0.00276273621507921,177.596803782131,4.77005043501572,639.319299740308,49.7117541869502 -213,"Poly(m-hydroxymethyl styrene) ",[Ce]CC(C1=CC(CO)=C(C=C1))[Th],398,425.145277023365,15.4674529390199,,1.10798309547692,0.00284318245366464,227.290733038906,9.87603286399628,824.536218775334,51.3972383153508 -214,"Polyetherimide 1 ",[Ce]OC1=CC=C(C=C1)OC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)CCCCCCN1C(=O)C2=CC=C(C=C2C1(=O))[Th],401,516.045430138858,13.0948838660157,,1.33303263938496,0.00382174113479059,215.751348596293,5.40035613103918,680.404064277178,45.3727769513148 -215,"Poly(3,4-dichlorostyrene) ",[Ce]CC(C1=CC(Cl)=C(C=C1)Cl)[Th],401,475.460156809728,9.329918532514,,1.25126503727381,0.00277577043872733,180.461697279171,4.32281334356877,637.980318698652,46.8073856002636 -216,"Poly(p-t-butyl styrene)",[Ce]CC(C1=CC=C(C=C1)C(C)(C)C)[Th],402,531.937413633989,24.2397383474764,0.95,0.90951026744027,0.00450874725647044,343.586686840165,10.9946998240061,944.160078615404,57.4838707623456 -217,"Poly(hexamethylene isophthalamide) ",[Ce]NCCCCCCNC(=O)C1=CC=CC(=C1)C(=O)[Th],403,424.340748502891,13.6009718365257,,1.14857781754905,0.00307735681545404,230.719688342974,7.79434975721468,731.973845404043,60.8155633896859 -218,"Poly[1,1-ethane bis(4-phenyl)carbonate] ",[Ce]C1=CC=C(C=C1)C(C)C1=CC=C(C=C1)OC(=O)O[Th],403,431.811678839437,12.8341059887708,,1.20905497477416,0.00199651364075303,227.792904913161,6.48429610528266,770.190334597161,69.0541412459126 -219,"Poly(2,4-dichloro styrene) ",[Ce]CC(C1=C(Cl)C=C(C=C1)Cl)[Th],406,508.7783598287,12.9709447393261,,1.33989832104078,0.00308627364359328,207.5060864557,7.14328012689469,676.26252724369,38.8796882068368 -220,"Poly[2,2-butane bis(4-phenyl)carbonate] ",[Ce]C1=CC=C(C=C1)C(C)(CC)C1=CC=C(C=C1)OC(=O)O[Th],407,465.871018063941,10.3922267236312,,1.15264535538803,0.00275909992724375,206.14513782712,5.55128821106252,782.783859326452,64.1742561092033 -221,"Poly(o-methyl styrene) ",[Ce]CC(C1=CC=CC=C1(C))[Th],409,493.293421679373,11.667581932042,1.027,0.989674517458671,0.00295529503424306,245.474632189458,11.7645385143545,778.696282528756,43.4567996182301 -222,"Poly(a-methyl styrene) ",[Ce]CC(C)(C1=CC=CC=C1)[Th],409,580.313489953846,10.5207050523529,1.065,0.992293323389793,0.00499764389752062,166.056370605356,7.67563569894751,780.003785262605,60.9502039655366 -223,"Poly[2,2-pentane bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C(C)(CCC)C1=CC=C(C=C1)OC(=O)O[Th],410,462.35313829455,9.37366361202823,,1.12824922998415,0.00333658322256759,220.708180444453,7.63487616836859,842.860886785354,80.6995386759875 -224,"Poly(oxycarbonyloxy-2-chloro-1,4-phenyleneisopropylidene-2-methyl- 1,4-phenylene)",[Ce]C1=C(C)C=C(C=C1)C(C)(C)C1=CC=C(C(Cl)=C1)OC(=O)O[Th],411,550.892912982035,8.39067916514027,,1.28089046463174,0.00252309449524685,162.280882594863,3.70252565247398,633.574187878466,48.2317492496114 -225,"Poly(m-phenylene isophthalate) ",[Ce]C(=O)C1=CC=CC(=C1)C(=O)OC1=CC=CC(=C1)O[Th],411,488.695525118649,19.4587058642527,,1.06042770168296,0.00467037368824329,247.68956933176,8.72911836095318,826.481682047202,57.2954772253715 -226,"Poly(p-phenyl styrene) ",[Ce]CC(C1=CC=C(C=C1)C1=CC=CC=C1)[Th],411,508.567527595378,8.87329921170864,,1.21129182958437,0.00138650864269821,191.993095869578,7.46872528658103,813.213712098165,67.330776113437 -227,"Poly(p-hydroxymethyl styrene) ",[Ce]CC(C1=CC=C(C=C1)CO)[Th],413,455.80566099718,14.6941903912175,,1.10348735286967,0.00283780679469732,221.399181275307,5.51552096138103,859.567535894969,64.4263694983944 -228,"Poly [2,2-butane bis {4-(2-chlorophenyl)} carbonate] ",[Ce]C1=CC=C(C(Cl)=C1)C(C)(CC)C1=C(Cl)C=C(C=C1)OC(=O)O[Th],415,516.958674617387,15.1617886662982,,1.08123331679135,0.00386255727235651,194.669029503942,6.62006648385624,634.231953688051,34.327530917725 -229,"Poly(p-vinyl pyridine) ",[Ce]CC(C1=CC=NC=C1)[Th],415,574.587151052995,9.24310819832433,,1.2761634664377,0.00383696790024374,170.099480017402,8.5997769432979,697.803351896464,56.2856395347911 -230,"Poly(2,5-dimethyl styrene) ",[Ce]CC(C1=C(C)C=C(C(C)=C1))[Th],416,508.240108884073,14.1316295374856,,0.95394542756917,0.0045352723984155,275.582125199072,9.21136730042849,798.534778084992,32.603107510257 -231,"Poly(p-bromo styrene)",[Ce]CC(C1=CC=C(C=C1)Br)[Th],417,511.177742039165,13.6769837416394,,1.5479965510603,0.00401242003691629,226.724625650547,8.01630199072672,683.815149332957,37.9049927625717 -232,"Poly(N-vinyl pyrrolidone)",[Ce]CC(N1CCCC1=O)[Th],418,528.353012745947,10.0394771945596,,1.14490892912441,0.00295567826993183,227.931125222796,6.54939458663809,727.634529868284,34.4928278613583 -233,"Poly(2-methyl-4-chloro styrene)",[Ce]CC(C1=C(C)C=C(C=C1)Cl)[Th],418,569.478098893349,12.8548313296341,1.25,1.11563128525216,0.00385669058862928,243.15324639114,8.73927271678916,610.462741154899,31.4081632787198 -234,"Poly(oxycarbonyloxy-2-chloro- 1 ,4-phenyleneisopropylidene-1,4-phenylene)",[Ce]C1=CC=C(C=C1)C(C)(C)C1=CC=C(C(Cl)=C1)OC(=O)O[Th],419,484.509382934831,10.7662225784881,,1.25229814475862,0.0028186749194619,189.884775794741,6.22537588156841,755.866163345879,61.5506056252281 -235,"Poly(oxy- 1 ,4-phenylene-oxy- 1 ,4-phenylene-carbonyl-1 ,4-phenylene)",[Ce]OC1=CC=C(C=C1)OC1=CC=C(C=C1)C(=O)C1=CC=C(C=C1)[Th],419,574.191254291485,11.9715035915615,,1.30735839630319,0.00424554990269413,164.277831013592,6.27113927939151,673.514526451135,49.58317707855 -236,"Poly[2,2-propane bis{4-(2-chlorophenyl)}carbonate]",[Ce]C1=CC=C(C(Cl)=C1)C(C)(C)C1=C(Cl)C=C(C=C1)OC(=O)O[Th],419,488.473160526436,11.6594719941365,,1.22531876795062,0.00210645160513961,172.956069164131,8.85382167277161,720.837740019501,61.9138611925341 -237,"Poly[methane bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)CC1=CC=C(C=C1)OC(=O)O[Th],420,417.472952050951,12.2957511544297,1.24,1.24237741448465,0.0025847256009408,229.80992516839,5.74156609216591,724.187136282769,63.4852793822619 -238,Poly(p-hydroxybenzoate),[Ce]OC1=CC=C(C=C1)C(=O)[Th],420,589.934086749188,74.6604068926973,,1.32200569449021,0.00455599530695455,146.341370784613,5.78752512365216,540.263186181293,69.558647316946 -239,"Poly[4,4-heptane bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C(CCC)(CCC)C1=CC=C(C=C1)OC(=O)O[Th],421,508.937931230929,14.5327293774726,,1.07311824729107,0.0037352093394258,223.709715835411,8.09665363734384,918.74745001521,88.2250518068393 -240,"Poly[1,1-(2-methyl propane) bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C(C(C)C)C1=CC=C(C=C1)OC(=O)O[Th],422,467.921977056646,10.2263544264453,,1.14059405210458,0.00188180340077658,224.967660480699,6.19944731019698,826.861459524726,75.4308935975233 -241,"Poly(N-vinyl carbazole)",[Ce]CC([N]1C3=C(C2=CC=CC=C12)C=CC=C3)[Th],423,460.844398164907,6.25795105834759,1.2,1.18200340351296,0.0023283505077945,206.648265875629,8.50316143687149,753.838427054706,60.0700127473707 -242,"Bisphenol-A polycarbonate",[Ce]OC1=CC=C(C=C1)C(C)(C)C1=CC=C(C=C1)OC(=O)[Th],423,607.678151873461,17.1309740561867,1.2,1.1137881292898,0.0044341081464669,177.280548011915,3.58032827788767,591.549425789967,27.8204538868572 -243,"Poly(p-vinyl naphthalene)",[Ce]CC(C1=CC=C2C=CC=CC2=C1)[Th],424,532.764365919417,14.5905087877073,,1.05721395759633,0.00334867381760655,212.143997650465,7.15330031072301,746.299976792689,42.2214914528955 -244,Polyhexafluoropropylene,[Ce]C(F)(F)C(F)(C(F)(F)F)[Th],425,570.465316409599,12.5841892587796,,1.88632622773104,0.00542083388728533,221.040557728707,11.8935668268946,1018.19243823041,81.4668010144926 -245,"Poly[1 ,1-dichloroethylene bis(4-phenyl)carbonate] ",[Ce]C1=CC=C(C=C1)C(=C(Cl)Cl)C1=CC=C(C=C1)OC(=O)O[Th],430,509.679948899066,8.39922616285009,,1.36546689307601,0.00223697028824726,189.283318591333,4.32331046185898,734.706444155552,57.122472010777 -246,"Poly(a-vinyl naphthalene)",[Ce]CC(C1=CC=CC2=CC=CC=C12)[Th],432,516.93281511117,14.1136620337742,,1.07343312375822,0.00255935512828748,200.571090970537,9.37451826622247,664.814705473704,27.8165392133256 -247,"Poly(o-hydroxymethyl styrene)",[Ce]CC(C1=C(CO)C=C(C=C1))[Th],433,486.369257117389,13.137062529436,,1.11398093934738,0.00421966327486993,203.967941446107,7.56042628587065,717.137415096485,41.2701954286481 -248,"Poly(methyl a-cyanoacrylate)",[Ce]CC(C#N)(C(=O)OC)[Th],433,586.382142410966,15.6577650364705,1.1,1.21362660944302,0.00461780466774001,168.378439986171,6.27060610941764,705.619052813204,71.0634646348137 -249,"Poly [1,1 -cyclopentane bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C1(CCCC1)C1=CC=C(C=C1)OC(=O)O[Th],440,460.952809148834,10.3439983470326,,1.19099303041211,0.00189326444212649,216.846782588444,6.68818874119762,731.779451752424,60.9472946147165 -250,"Poly(oxyterephthaloyloxy-2-methyl-1 ,4-phenyleneisopropylidene-3-methyl-1 ,4-phenylene)",[Ce]OC(=O)C1=CC=C(C=C1)C(=O)OC1=C(C)C=C(C=C1)C(C)(C)C1=CC(C)=C(C=C1)[Th],444,584.875856890641,14.0207780023592,,1.11461215170875,0.00432922006770118,182.167075545426,6.45782717623178,797.390105011321,81.9236354755668 -251,"Poly[1,1-cyclohexane bis(4-phenyl)carbonate] ",[Ce]C1=CC=C(C=C1)C1(CCCCC1)C1=CC=C(C=C1)OC(=O)O[Th],444,508.380074996301,17.2074836915989,,1.16181263044089,0.0036446680140054,195.751087635048,5.91701876407435,729.020486635461,64.3034398061099 -252,"Poly[1,1-(1-phenylethane) bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C(C1=CC=CC=C1)(C)C1=CC=C(C=C1)OC(=O)O[Th],449,493.389501642508,9.30511152191172,,1.47671649942663,0.0053142042828261,197.283380517452,9.56881694820881,821.846182809776,67.0372556196676 -253,"Poly[2,2-hexafluoropropane bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C(C(F)(F)F)(C(F)(F)F)C1=CC=C(C=C1)OC(=O)O[Th],449,516.150444770751,12.4965622659938,1.2,1.17858250541797,0.00205625798482629,188.329574813097,3.69983972990687,753.85108470909,64.4671787162469 -254,"Poly [2,2-( 1 ,3-dichloro-1 ,1 ,3,3-tetrafluoro)propane bis(4-phenyl)carbonate]",[Ce]C1=CC=C(C=C1)C(C(F)(Cl)F)(C(F)(Cl)F)C1=CC=C(C=C1)OC(=O)O[Th],457,553.204924699084,12.3462409291874,,1.48636056102712,0.00553223858649867,172.01631799061,8.30681323435737,727.519399206692,54.2772061423769 -255,"Poly[4,4'-isopropylidene diphenoxy di(4-phenylene)sulfone]",[Ce]C1=CC=C(C=C1)C(C)(C)C1=CC=C(C=C1)OC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(C=C1)O[Th],458,562.943995660793,8.15399941029547,1.24,1.20099771773418,0.0024648679906847,186.773324062074,5.05972565879565,782.997428014383,75.058116850809 -256,"Poly(oxycarbonyloxy-2,6-dichloro-1,4-phenyleneisopropylidene-1,4-phenylene)",[Ce]C1=CC=C(C=C1)C(C)(C)C2=CC(=C(C(=C2)Cl)OC(=O)O[Th])Cl,459,551.22499988636,10.9117613273471,,1.29569641236078,0.00295217013177102,175.055595956114,5.25358301677247,757.057004057782,65.4439384624271 -257,Poly(perfluorostyrene),[Ce]C(F)(F)C(F)(C1=C(F)C(F)=C(F)(C(F)=C1(F)))[Th],467,579.942764248826,14.2243099946929,,1.6909793587326,0.00991606917653438,217.844751033745,9.11222605226694,905.93879403558,24.0159854449672 -258,"Poly[2,2-propane bis{4-(2,6-dimethylphenyl)} carbonate]",[Ce]C1=CC(C)=C(C(C)=C1)C(C)(C)C1=C(C)C=C(C=C1(C))OC(=O)O[Th],473,580.425985503941,13.0871019185426,,1.09921461147897,0.00464875356384082,184.547730282649,6.91588771115314,754.71645473057,64.5555480876285 -259,"Polyetherimide 6",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))OC1=CC=C(C=C1)SC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)C(=O)C1=CC=CC(=C1)[Th],473,631.209639775547,11.92913760223,,1.28092000031137,0.00352119164893492,139.272241753651,3.3136174911752,546.570614969952,41.4633452833738 -260,"Poly(a,b,b-trifluoro styrene) ",[Ce]C(F)(F)C(F)(C1=CC=C(C=C1))[Th],475,590.339625402846,14.0904811608527,,1.32843467689285,0.00493982270572665,186.919555815771,9.49198960766207,812.733761531513,56.8658222877677 -261,"Poly(bisphenol-A terephthalate) ",[Ce]C1=CC=C(C=C1)C(C)(C)C1=CC=C(C=C1)OC(=O)C1=CC=C(C=C1)C(=O)O[Th],478,578.207351344371,10.2137698368428,,1.16728035568999,0.00407499367515856,183.085804072435,5.51965359510358,693.086368036971,66.4192831679412 -262,"Poly[oxy(2,6-dimethyl-1 ,4-phenylene)] ",[Ce]OC1=C(C)C=C(C=C1(C))[Th],482,568.128930925171,10.4395730551893,,1.04011207259394,0.00552064586349556,245.387279886955,9.87554671122001,1069.63640783716,96.2733168973193 -263,"Polyetherimide 2",[Ce]OC1=CC=C(C=C1)SC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)N1C(=O)C2=CC=C(C=C2C1(=O))[Th],482,648.716281682868,13.5885471308986,,1.29132494288355,0.00368472786694455,134.888740975491,3.37858025504933,535.05384979543,46.2995427186242 -264,"Polyetherimide 7",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))OC1=CC=C(C=C1)SC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=C(C=CC=C1)C(=O)C1=CC=C(C=C1)[Th],485,667.506230961425,15.3336355620859,,1.2621592951896,0.00419715494292679,142.802993649028,3.40865713996796,551.79482935907,55.0882999194559 -265,"Polyetherimide 8",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))OC1=CC=C(C=C1)SC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)C(=O)C1=CC=C(C=C1)[Th],486,626.450859450798,12.0247581737085,,1.28108955360954,0.00183729224539683,137.627895179611,5.6679935087154,541.030519317624,41.9160637420664 -266,"Poly[oxy(2,6-diphenyl-1,4-phenylene)] ",[Ce]OC2=C(C1=CC=CC=C1)C=C(C=C2C3=CC=CC=C3)[Th],493,562.129838934052,15.2445966729614,1.14,1.0960330920139,0.00348427611531901,207.924464970668,9.47916548120373,808.074222689513,46.7086876472855 -267,"Ultem ",CC(C)(c1ccc(O[[Ce]])cc1)c7ccc(Oc6ccc5c(=O)n(c4cccc(n3c(=O)c2ccc([[Th]])cc2c3=O)c4)c(=O)c5c6)cc7,493,581.522571448109,9.66924206403717,1.29,1.24832349965137,0.00283763426508078,180.333787952763,7.59524408121707,720.002906265672,60.4364686717896 -268,"Poly[4,4'-diphenoxy di(4-phenylene)sulfone] ",[Ce]OC1=CC=C(C=C1)C1=CC=C(C=C1)OC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(C=C1)[Th],493,619.910664480656,8.78083881048845,1.37,1.3231442768645,0.00344406996865792,174.897275867174,5.72471212227896,638.125967480868,50.5837509727439 -269,"Poly[4,4'-sulfone diphenoxy di(4-phenylene)sulfone] ",[Ce]C1=CC=C(C=C1)S(=O)(=O)C1=CC=C(C=C1)OC1=CC=C(C=C1)S(=O)(=O)C1=CC=C(C=C1)O[Th],493,647.622987164356,16.5789749605315,1.27,1.22045460880152,0.00308634645880289,138.85202342582,4.72786809945989,579.480492344758,57.276787416677 -270,"Polyetherimide 9",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))OC1=CC=C(C=C1)SC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=C(C=C1)C(=O)C1=CC=C(C=C1)[Th],494,649.932532942166,12.3572740590391,1.27,1.27951364691581,0.00236025624749293,140.493837291203,4.34038979703809,543.214665227085,48.6112813329095 -271,"Poly[N,N'-(m,m'-oxydiphenylene-oxy-m-phenylene)pyromellitimide] ",[Ce]C1=CC=CC(=C1)N6C(=O)C5=CC2=C(C(N(C2=O)C3=CC(=CC=C3)OC4=CC=CC(=C4)O[Th])=O)C=C5C6=O,494,664.989301426639,13.1932801025463,,1.31751603361654,0.00279206118454156,128.918583545848,3.3302467532233,501.366520599537,49.5197998437074 -272,"Polyetherimide 3",[Ce]OC1=CC=C(C=C1)OC1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)N1C(=O)C2=CC=C(C=C2C1(=O))[Th],500,642.415406689265,14.1864639908091,,1.28297687248718,0.00428983070128198,133.382457569523,6.29407166509814,546.096413818296,44.7580674267794 -273,"Poly[2,2-propane bis{4-(2,6-dichlorophenyl)} carbonate] ",[Ce]C1=C(Cl)C=C(C=C1(Cl))C(C)(C)C1=CC(Cl)=C(C(Cl)=C1)OC(=O)O[Th],503,630.055757574731,13.8190268068197,,1.37704918973247,0.00429304550080938,160.11668675412,6.53009854846131,719.281286854457,67.677087729877 -274,"Polycarbonate 2",[Ce]C1=CC=C(C=C1)C1(CC2CC1CC2)C1=CC=C(C=C1)OC(=O)O[Th],505,594.200012439586,13.0756929747354,1.2,1.16234073739869,0.00363290373997337,185.156388801862,7.88222780608799,704.915809379888,61.6449573262541 -275,"Polyetherimide 4",[Ce]OC1=CC=C(C=C1)C(=O)C1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)N1C(=O)C2=CC=C(C=C2C1(=O))[Th],512,661.680603548223,7.58141475431822,,1.27999491509169,0.00404685997071531,120.249082320707,3.62246156014155,523.309063937421,53.085187120264 -276,"Polyimide 10",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))C(=O)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)C(=O)C1=CC=CC(=C1)[Th],513,743.820415639762,34.3233063260958,,1.28909956482974,0.00440036464465152,111.627370947085,5.56218589802985,438.836856401366,65.7124743165448 -277,"Polycarbonate 3",[Ce]C1=CC=C(C=C1)C2(CC3C4C(C2C3)CCC4)C5=CC=C(C=C5)OC(=O)O[Th],520,638.191394058147,11.0014653025947,,1.13671383004026,0.00287166536550889,194.531369212644,3.75940272742205,701.308730929548,67.4351609187071 -278,"Polyetherimide 5",[Ce]OC1=CC=C(C=C1)C1=CC=C(C=C1)OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)N1C(=O)C2=CC=C(C=C2C1(=O))[Th],520,692.67843261204,20.275693949755,,1.26088155233305,0.00389919347014639,128.082141648978,4.70787194906477,536.649205528916,64.636433005141 -279,"Poly[2,2-propane bis{4-(2,6-dibromophenyl)}carbonate]",[Ce]C1=C(Br)C=C(C=C1(Br))C(C)(C)C1=CC(Br)=C(C(Br)=C1)OC(=O)O[Th],523,674.771114343105,14.3302575572272,1.953,1.93181996403834,0.00348604535768345,145.49841727141,4.44959649560597,612.914889141729,68.2231159101005 -280,"Polyimide 1F",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))C(C(F)(F)F)(C(F)(F)F)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)C(=O)C1=CC=CC(=C1)[Th],533,736.229799628345,36.2823924410344,,1.36258956734198,0.00257107655948051,123.270115986589,6.64891790547586,508.13075733769,78.7070981714178 -281,"Polyquinoline 5",[Ce]C1=CC(C2=CC=CC=C2)=C2C=C(OC3=CC4=C(C=C(N=C4C=C3)C3=CC=C(OC4=CC=C([Th])C=C4)C=C3)C3=CC=CC=C3)C=CC2=N1,539,652.764732156469,13.1851235447779,,1.14116421069561,0.00361855608512728,161.160353772129,8.51805046655477,711.896326301918,78.5858860156579 -282,"Polyquinoline 1",[Ce]C1=NC2=C(C=CC=C2)C(=C1)C1=CC=C(OC2=CC=C(C=C2)C2=CC(=NC3=C2C=CC=C3)C2=CC=CC([Th])=C2)C=C1,541,706.784047931914,12.4097285213992,,1.1275135863322,0.00271555749732299,150.634956527912,5.65820589112184,664.005580945184,85.087043694899 -283,"Poly[3,5-(4-phenyl-1,2,4-triazole)-1,4-phenylene-3,5-(4-phenyl-1,2,4-triazole)-1,3-phenylene] ",[Ce]C1=CC=C(C=C1)C2=NN=C([N]2C3=CC=CC=C3)C4=CC(=CC=C4)C5=NN=C([N]5C6=CC=CC=C6)[Th],543,644.796429622886,15.5741842466519,,1.14839243833336,0.00375070172861083,149.347123440212,6.49608895766185,627.853528559341,59.4895279178431 -284,"Poly(m-phenylene isophthalamide) ",[Ce]C(=O)C1=CC=CC(=C1)C(=O)NC1=CC=CC(=C1)N[Th],545,679.997580759694,8.21265688852697,,1.26788034899849,0.00229440057993735,119.776071837797,2.82816474448061,540.555428087756,56.1672564257482 -285,"Polyquinoline 2",[Ce]C1=NC2=C(C=CC=C2)C(C2=CC=C(OC3=CC=C(C=C3)C3=C(C4=CC=CC=C4)C(=NC4=C3C=CC=C4)C3=CC=CC([Th])=C3)C=C2)=C1C1=CC=CC=C1,546,695.308978478013,16.1164360224729,,1.07633059651258,0.00446079643170133,172.819534797077,5.37418800751535,682.275751911621,83.1604253457198 -286,"Torlon ",[Ce]NC(=O)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=C(C=C1)CC1=CC=C(C=C1)[Th],550,756.938500249569,46.29418895682,,1.24404760826269,0.00498276697326679,131.960239165959,6.28213456937722,517.153900992347,79.0739416995858 -287,"Polyimide 3F",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))C(C(F)(F)F)(C(F)(F)F)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=CC(=C1)C(=O)C1=CC=C(C=C1)[Th],561,752.291575376262,44.5098485236187,,1.35922263937021,0.00426839298643005,121.479877600473,4.28835967408802,487.196255129058,79.4803467874502 -288,"Polyimide 2F",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))C(C(F)(F)F)(C(F)(F)F)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=C(C=CC=C1)C(=O)C1=CC=C(C=C1)[Th],562,801.036948385732,65.1807138641532,,1.33073245143099,0.00593304284213052,133.344695968175,9.86720124351739,432.555244954453,77.1239005726572 -289,"Polyquinoline 9",[Ce]C1=CC(C2=CC=CC=C2)=C2C=C(OC3=CC4=C(C=C(N=C4C=C3)C3=CC=C([Th])C=C3)C3=CC=CC=C3)C=CC2=N1,573,680.852735210615,38.0720626453409,,1.12112454299624,0.0067729866445951,156.503599736503,10.0009734227987,665.292917467994,99.1866936183459 -290,"Polyquinoline 6",[Ce]C1=C(C2=CC=CC=C2)C(C2=CC=CC=C2)=C2C=C(OC3=CC4=C(C5=CC=CC=C5)C(C5=CC=CC=C5)=C(N=C4C=C3)C3=CC=C(OC4=CC=C([Th])C=C4)C=C3)C=CC2=N1,578,656.674491956086,17.2437024721381,,1.08490283209747,0.00646295018653657,174.378634520773,10.2425373875478,742.709311202326,88.2228527955668 -291,"Poly(quinoxaline-2,7-diylquinoxaline-7,2-diyl-p-terphenyl-4,4'-ylene)",[Ce]C1=CN=C2C=CC(=CC2=N1)C1=CC=C2N=CC(=NC2=C1)C1=CC=C(C=C1)C1=CC=C(C=C1)C1=CC=C(C=C1)[Th],578,770.593166840295,65.7030449801381,,1.14015361951373,0.00787401806048296,143.221137582814,5.3689524203391,406.213620063919,67.80201870898 -292,"Poly(quinoxaline-2,7-diyloxyquinoxaline-7,2-diyl-1,4-phenylene) ",[Ce]C1=CN=C2C=CC(=CC2=N1)OC1=CC=C2N=CC(=NC2=C1)C1=CC=C(C=C1)[Th],579,685.539759723706,15.8608162448131,,1.23870274527369,0.00280356725172957,131.331028357065,4.86537213889338,549.620709018997,65.5084238371318 -293,"Polyphenolphthalein 2",[Ce]C1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)C(=O)OC1=CC=C(C=C1)C1=CC=C(C=C1)OC(=O)[Th],580,721.286659292942,17.8298269482554,,1.20763917844954,0.00511069024500012,161.957357517351,11.5252418762088,587.866155038921,92.9380330771144 -294,"Polyquinoline 7",[Ce]C1=CC(C2=CC=CC=C2)=C2C=C(OC3=CC4=C(C=C(N=C4C=C3)C3=CC=C(C=C3)C3=CC=C([Th])C=C3)C3=CC=CC=C3)C=CC2=N1,581,680.76621645318,24.2853572351767,,1.10704471509279,0.00626051133321597,156.26281359826,6.37192393502867,676.079743622664,103.210532337283 -295,"Polyphenolphthalein 3",[Ce]C1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)C(=O)OC1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)OC(=O)[Th],583,767.799340648339,35.5946021373387,,1.21453964912789,0.00601102270562812,160.050752114378,6.12914176714925,540.948228147522,88.9019243006654 -296,"Polyimide 4F",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))C(C(F)(F)F)(C(F)(F)F)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=C(C=C1)C(=O)C1=CC=C(C=C1)[Th],584,799.468052176151,20.5400306478095,,1.34232843162134,0.00361826672723239,123.596383809692,8.10981534352849,405.751263029149,66.987356480426 -297,"Poly(quinoxaline-2,7-diylcarbonylquinoxaline-7,2-diyl-1,4-phenylene)",[Ce]C1=CN=C2C=CC(=CC2=N1)C(=O)C1=CC=C2N=CC(=NC2=C1)C1=CC=C(C=C1)[Th],591,770.830371094546,21.4121046250611,,1.21908180119139,0.00317548679568287,121.197551173509,5.24147563675267,439.589307347928,75.4480720973888 -298,"Polyphenolphthalein 1",[Ce]C1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)C(=O)NC1=CC=C(C=C1)OC1=CC=C(C=C1)NC(=O)[Th],593,711.246322636308,9.76680359742769,,1.21974401645706,0.00371147470575654,142.229057899303,7.18184492258496,568.723969215316,74.6849976154133 -299,"Polyquinoline 3",[Ce]C1=NC2=C(C=CC=C2)C(=C1)C1=CC=C(OC2=CC=C(C=C2)C2=CC(=NC3=C2C=CC=C3)C2=CC=C(OC3=CC=C([Th])C=C3)C=C2)C=C1,599,663.982217746143,10.7072210132499,,1.14437968547634,0.00426410982165861,159.382438273077,4.70101808317222,694.49946089091,85.5188126196362 -300,"Poly(p-phenylene terephthalamide) ",[Ce]C(=O)C1=CC=C(C=C1)C(=O)NC1=CC=C(C=C1)N[Th],600,676.004838602994,63.6254163814718,,1.3192388035851,0.00459333768638298,125.445383462487,6.57626825093014,438.051974015439,62.7617616099523 -301,"Polyimide 11",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))C(=O)C1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=C(C=C1)[Th],606,838.251124992112,51.8555072114256,,1.28839583498607,0.00551497338209924,104.314790080574,3.60295432301577,308.953868912593,57.8481347860604 -302,"Poly(quinoxaline-2,7-diylsulfonylquinoxaline-7,2-diyl-1,4-phenylene)",[Ce]C1=CN=C2C=CC(=CC2=N1)S(=O)C1=CC=C2N=CC(=NC2=C1)C1=CC=C(C=C1)[Th],615,848.573450979519,13.2138313898728,,1.25130225018404,0.00345988639314427,119.546089588137,4.98180961288205,344.877625961649,47.5296698154112 -303,"Polyetherimide 12",[Ce]N1C(=O)C2=CC=C(C=C2C1(=O))OC1=CC=C2C(=O)N(C(=O)C2=C1)C1=CC=C(C=C1)[Th],615,811.169327027709,16.7709149099362,,1.29802687921241,0.00419687335766706,114.055627066581,2.88377725165756,369.378433939971,69.8274831530337 -304,"Polyquinoline 10",[Ce]C1=C(C2=CC=CC=C2)C(C2=CC=CC=C2)=C2C=C(OC3=CC4=C(C5=CC=CC=C5)C(C5=CC=CC=C5)=C(N=C4C=C3)C3=CC=C([Th])C=C3)C=CC2=N1,618,646.781932974918,8.14972406650112,,1.0948748632069,0.00483299012706541,174.346968953484,8.80061133924088,696.676462984645,64.8767252201778 -305,"Polyquinoline 4",[Ce]C1=NC2=C(C=CC=C2)C(C2=CC=C(OC3=CC=C(C=C3)C3=C(C4=CC=CC=C4)C(=NC4=C3C=CC=C4)C3=CC=C(OC4=CC=C([Th])C=C4)C=C3)C=C2)=C1C1=CC=CC=C1,618,703.482943105141,18.4572416777009,,1.05276681950878,0.00492450760298615,176.631456619569,10.4791807175722,608.36569272291,74.713709356704 -306,"Polyquinoline 8",[Ce]C1=C(C2=CC=CC=C2)C(C2=CC=CC=C2)=C2C=C(OC3=CC4=C(C5=CC=CC=C5)C(C5=CC=CC=C5)=C(N=C4C=C3)C3=CC=C(C=C3)C3=CC=C([Th])C=C3)C=CC2=N1,624,713.102258262644,15.1291205956207,,1.04305810536289,0.00704989275361718,161.102431418419,9.97027562062137,683.38858862597,107.06102336656 -307,"Polytricyclic 1",[Ce]C1=CN=C2C=C3N=CC(=NC3=CC2=N1)C1=CC=C(C=C1)OC1=CC=C(C=C1)[Th],626,788.924942836568,33.8805354883344,,1.22297213731333,0.00507826381588971,138.90346135221,6.49478268930443,408.847278518578,74.5549249117452 -308,"Poly(3-phenylquinoxaline-2,7-diyl-3-phenylquinoxaline-7,2-diyl-1,4-phenylene) ",[Ce]C1=C(N=C2C=CC(=CC2=N1)C1=CC=C2N=C(C3=CC=CC=C3)C(=NC2=C1)C1=CC=C([Th])C=C1)C1=CC=CC=C1,645,812.785456532842,42.946896537759,,1.08525202567832,0.00638498324930622,149.457350850334,5.56841848875853,371.429183928934,13.667517886854 -309,"Poly(quinoxaline-2,7-diylquinoxaline-7,2-diyl-1,4-phenylene)",[Ce]C1=CN=C2C=CC(=CC2=N1)C1=CC=C2N=CC(=NC2=C1)C1=CC=C(C=C1)[Th],649,850.550739915829,34.1355609128836,,1.17783730687649,0.00516763395798172,126.180936533947,4.1154866982781,354.572514385592,45.1871005691967 -310,"Polyphenolphthalein 4",[Ce]C1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)C(=O)NC1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)NC(=O)[Th],658,850.079296177823,27.0707401038071,,1.19765106604167,0.00616771741135182,132.798487547982,5.58154242953068,429.698493627538,70.0172612064706 -311,"Polytricyclic 2",[Ce]C3=C(N=C2C=C1N=C(C(=NC1=CC2=N3)C4=CC=C(C=C4)[Th])C5=CC=CC=C5)C6=CC=CC=C6,668,951.079114495269,48.5815163276694,,1.09951203808384,0.00517176341228923,159.737210760609,8.86647736511607,404.414212594641,63.9834089515729 -312,"Polytricyclic 3",[Ce]C3=C(N=C2C=C1N=C(C(=NC1=CC2=N3)C4=CC(=CC=C4)[Th])C5=CC=CC=C5)C6=CC=CC=C6,668,693.392759587515,37.1344117730087,,1.07713573762476,0.00759895057931967,154.534402227402,12.8036518452606,387.576016145683,47.4768610655483 -313,"Poly[N,N'-(p,p'-oxydiphenylene)pyromellitimide] ",[Ce]C1=CC=C(C=C1)N5C(=O)C4=CC2=C(C(N(C2=O)C3=CC=C(C=C3)O[Th])=O)C=C4C5=O,672,817.214393934327,38.9902549214384,,1.28528865595221,0.0076728325258012,126.393260758123,6.00399307433769,300.67627793269,30.8845629927914 -314,"Polyphenolphthalein 5",[Ce]C1=CC=C(C=C1)C1(OC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)C(=O)NC1=CC=C(C=C1)C1(NC(=O)C2=CC=CC=C12)C1=CC=C(C=C1)NC(=O)[Th],673,842.113226571184,38.1039695631374,,1.19046346477197,0.00505745570367051,130.655080387815,8.20591651514773,438.386019430657,92.4140346998824 -315,"Poly[N,N'-(p,p'-carbonyldiphenylene)pyromellitimide] ",[Ce]C1=CC=C(C=C1)N5C(=O)C4=CC2=C(C(N(C2=O)C3=CC=C(C=C3)C([Th])=O)=O)C=C4C5=O,685,782.977843112764,11.792116461059,,1.26801287782886,0.00679775423299766,111.482810962958,5.68587513524253,268.200809943845,22.172926303445 diff --git a/data/tabular/perovskite_db/perovskite_solar_cells_with_descriptions.csv b/data/tabular/perovskite_db/perovskite_solar_cells_with_descriptions.csv deleted file mode 100644 index d03b8e1e3..000000000 --- a/data/tabular/perovskite_db/perovskite_solar_cells_with_descriptions.csv +++ /dev/null @@ -1,41569 +0,0 @@ -reduced_formulas|iupac_formulas|descriptive_formulas|bandgap|voc|jsc|ff|pce|device_stack|htl|etl|structural_dimensionality|doi|entry_id|description -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|133.0|0.74|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'DPP-DTT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PDPP-DTT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|--7QgUnINWBA_TA8jw3CCbRCRrcH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'DPP-DTT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|185.9|0.78|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|--8F7Y4s3uKDX5NP3bucanTkQo8Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.632|161.0|0.57|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja307789s|--9aa7m8b7HiItY8dhvSOhYziIQL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|187.6|0.691|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|--MlWiNv1SKTzJtpJWHqwwxmmsDW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|181.9|0.588|9.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-PheDOT', 'Au']|['MeO-PheDOT']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501423|--MwIi0wc7g_1YhFm95OcLR-Gp1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-PheDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.0|0.49|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|--Phx81KXd8q_-bTnwpZPUIWWiVa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|235.0|0.762|18.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.086|--RgE_khB0mtMTpdsdxLae7XuLI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|154.3|0.51|6.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104798|--UW73hdZx_mJPNrfT2VzqLe_AvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon-tape']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2015.06.010|-09A82oyQC9E8fppw2ks3Ys6HfkE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon-tape']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8440000000000001|124.7|0.6729999999999999|7.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.03.021|-0IO-XG1_fgMXn1MzZpEZymrVenV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.95|236.0|0.59|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Phenethylamine', 'Spiro-MeOTAD', 'Au']|['Phenethylamine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603062|-0KDqwHqhhDfvD754VHcBJTx47Ls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Phenethylamine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.84|15.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr00784a|-0Q6xbgwCbN2vzwpL8ioH4bLWZBw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|125.0|0.27|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|-0ScmVBFRNWEUx0xmFGJW3b2C6IS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|211.4|0.75|16.13|['ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5048424|-0YoZGTSuTBeholJDom0fBZwvbcT|a perovskite solar cell with the following device stack: ['ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|110.0|0.489|4.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|-0bINTwBolYR1uWWD_uSXZf_VTno|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|141.1|0.68|8.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.07.238|-0e669DDaRfjtiXOsvq3lwr6V7te|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|74.3|0.36|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.037|-0jUiKrbQTqLOBTHfUxe_KcfOHrE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|233.0|0.65|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10091|-0qukldnioTRu2enzkiKsOg791Y7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.74|177.2|0.69|8.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.210|-0tQia6n0YoXq_YmCOAaMmPLJu5x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.1|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cp01432a|-0uSQAIflzMrFQpxVkZ-3hRuS7K6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|135.0|0.3|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|-0uV65nvDsjyiK9JNzwbnYtZ5U_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.03|237.0|0.79|19.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|-1NTsx5Cpuqo-uo4Km9hmgf6Dx_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.04|190.0|0.43|8.52|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'H6Bu-ZnPc', 'Ag']|['H6-ZnPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900182|-1QN9t4q0tQqW6gh7DLctV6y2crY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'H6Bu-ZnPc', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|204.2|0.578|11.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|-1rCXXydffwp7K0rCTZ-c5WXvZfT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.0|0.672|13.9|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|-1rrUzzQ_OglpamnXZJO9cHmeniz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.0|0.59|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPA-OMeTPA', 'Au']|['TPA-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|-1uxHuGKv0vQW3RD6J9WTfu4WLR1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPA-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.08|199.0|0.74|15.7|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9RA05371A|-2FFGlcl7feqBbbOUzn7DVR9qssg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.111|198.6|0.6970000000000001|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|-2JQhK2Mr1PXNWV50MqAHYkXDUWd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|200.0|0.64|12.8|['SLG', 'ITO', 'PFN; ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN; ZnO']|bulk|https://doi.org/10.1039/c5ta04695e|-2MiDsCVhb6Tgefb-PA8ljd2RN5B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.93|159.4|0.72|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.07.022|-2SnHBkqHaj5mAgg-lpGRXkCkn3M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|208.0|0.7|11.5|['SLG', 'ITO', 'PMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PMT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|-2anzhUTjTWy1BKW82C9I7eU3tVM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|224.4|0.782|18.42|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201600594|-2ftPOPxzDTdyqgk_ZZ7DwgcWh9G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.085|197.78|0.718|14.89|['A.R.C.', 'SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202003460|-2khfF1ZpadycdfA_1kFr6tLYDVC|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.26|3.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|-2sDwefm6e_RtsbGXsAi2ruwB2hr|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|183.0|0.631|11.7|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Al']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.09.138|-31pPlyLgDI6jps4eLOb09vvwHYK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|173.0|0.664|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.06.036|-399oNlZHB5GQyMoXrfyWd8e_1rQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.915|173.73000000000002|0.715|11.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||-3QEUHaf-qG4ZBNliGOImiX_rSzW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|190.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|-3X-zrAktlMgUIIopsYmVS1kHBIq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br36C20H120I24N20Pb15Sn5|Pb15Sn5C20N20H120I24Br36|MAPb0.75Sn0.25Br1.8I1.2|1.7300001844718749|0.99|151.6|0.74|11.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|-3XC68jebr4VwQQLHP1Uai89RhTw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|217.0|0.68|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|-3Yiof1nBYp2p7wEKKcyqCw1oM4Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|164.0|0.45|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|-3_TKBIqU31x67M0xYnSX-TyifrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.0|0.66|13.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00660|-3_vhlPHDIHbt8wwopiIEUY7uo12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|192.0|0.436|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1002/solr.201700066|-3gSpkn8nyAHHEDfGtmGBI0NfMAT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.632|203.7|0.693|8.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903721|-3jEr11Mqu3sbb-n9-Bt2ycV3S1U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|225.6|0.75|19.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|-3n0FUBOUS8tY54ZFdl5osAvP70Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|151.1|0.6809999999999999|9.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aa6e47|-3sEJVgc_uDlPbw8iViXCLy7kARP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.2|0.7140000000000001|14.57|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2019.134924|-3yvLC22SfF26QvSW6AoUOiZvIl2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.023|11.13|0.764|19.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806015|-495RhfW4sybP1vt5X4LqdcHLXTB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.6|0.8170000000000001|19.19|['SLG', 'ITO', 'BDT-POZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['BDT-POZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901268|-4ETdWoopgtP-gC7Glvv7BgdPB-c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BDT-POZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.1|232.8|0.74|18.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07368f|-4FXTC5S4AHNS_-3HU1VKkGxfLKF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.92|196.0|0.78|14.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|-4kZs-XQfI9yZ_8Ic6xdaZs-zeaA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|228.7|0.65|12.73|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|-4v_qAoo51EQQUzGneMA6czdVed-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.67|0.4|0.53|0.03|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|-4z5hW3amTxfasM1muJtJRt7FwHi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.072|211.8|0.71|15.71|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|-51EqaQJIRFh2DwKz8GEzaRuQ3iH|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.8|19.52|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|-52p6pQ-RIOW5d6zsIMjFCt0CWjE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|-5A4GJToRpb_jIaL7uxXNMVokYza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.91|245.0|0.62|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|-5Y-cWrBimLvwD8LFCturjR2W_Kw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.5580001661313183|1.037|214.6|0.726|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b19908|-5fSNlNqSTpmJsbkEquH4Un76tol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|218.3|0.691|16.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|-5riEtpGlvnQDXdtyMNYLbEydK5j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.894|189.3|0.675|11.42|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|-5sO2dbkbtuhyGagXl2hNaXvO753|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|130.0|0.336|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|-61mMhFs6q8m_Sqkfc8JP0pD2yZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|205.34|0.631|12.33|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|-6B7F7Xi7xaPzCjPHcsOn1T_SPN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.997|190.2|0.736|13.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25975-8|-6KS2IIq6LKM0oGyivd5KflEQnEy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sb|Pb9C10SbN10H60I30|MAPb0.9Sb0.1I3||0.937|173.70000000000002|0.557|9.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|-6WALMjHEJMcD2HBd9i6UZzxynVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.9Sb0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|188.1|0.61|11.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|-6h2G96GkmCPYPIqdXaq8HCWu5jf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|198.0|0.7659999999999999|15.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|-6qG3qZAyIrdkP9MRxWqWv1QD0O6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|161.6|0.69|16.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|-6wIdM0nN9Pyp8-JSqcbftOk1SfF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|225.4|0.622|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dib.2016.02.021|-76tdyCa0F0EEKeDBzXMhZ72qI0A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.584|3.7|0.3829999999999999|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|-77GfquuSzM3Z1tsm15EKOseiVP_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|194.0|0.67|13.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|-78Ilrb8NLbwNPncr6BJkeCT0DVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.035|139.0|0.67|9.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|-7B2bBeX_4ziXdDC5JnMy4XY_aHm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-02', 'Au']|['SP-02']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|-7CMNIskEQLMjHz4dArLsyonezH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-02', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|227.0|0.419|6.82|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|-7EGtqghrZo6c9R3goGVL01jssgf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.742|183.72|0.683|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||-7EmjWVRoxE2z-oowqsacZAocg6l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.02|9.03|0.536|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|-7M8qe4wtT5gCQrCpDQGhbZH7-8A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|186.9|0.72|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|-7MYdDRfgoRsp5vfrQ9pRwmHbePn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|176.0|0.52|8.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05373g|-7Yl-S0GiGdRqtLEoA3nmlIRbkXh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||0.899|196.0|0.6|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|-7_3IDb7715g0wK4QBMp7ZlwUOru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -Ag2Bi3I11|Ag2Bi3I11|Ag2Bi3I11|1.9200002047317917|0.54|14.6|0.36|0.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|-7piLcgM52oBNobrNdwoD43R7WHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag2Bi3I11. -CsI3Pb|CsPbI3|CsPbI3||0.68|143.3|0.6|5.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsomega.7b00814|-86OdiVrUerbNRG0l9aObwIgg5LP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.17|126.9|0.799|11.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703246|-89kmkbexGQ6nG5R4tZIU41Rqmvi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|183.0|0.4589999999999999|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|-8bJNr0c-rH9rePWgKKctezx5hdY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.21|139.3|0.79|13.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|-8eoN2m9kSmhxQo7FPeKk_IfSsAt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.78|183.1|0.61|8.71|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|-8fx0nOP-T93nPKH-O50ZRAjkye-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.73|169.0|0.5379999999999999|6.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|-8mmSYLHwbETckXhNat04MOqtlT6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|194.5|0.62|11.2|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9qi00557a|-92GY2Jdtot3Pk9Xi_0FnX6B5nwZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|77.69999999999999|0.412|3.2|['SLG', 'ITO', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']|['Carbon-nt']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226765|-9CEg-5vH3kzmciu2hWm02XnKXbx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.0|0.57|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene', 'Au']|['2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201310877|-9jRrf047nZpe-D5sHevb4xOWV-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.01|166.1|0.525|10.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|-9tF1l-qy0GTpenODIqeSO5f-eQn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.13|225.8|0.78|19.8|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c7ta04128d|-9wQc8Sn0uKmkmx8zHMLbpFQHDUO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|227.8|0.64|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|-9znkqAe0yNa8iJe2PkzWJm7DiTB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.35|84.39999999999999|0.49|1.46|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|-A76pSRn1MC8N9noYxvIuy003Cjx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|1.13|215.9|0.77|18.79|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00856|-A8OjJPua4mcaou3gByGWXL5rHpj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|229.0|0.67|6.4|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2015.02.084|-ACSoNy25cka_6ffzyWz_vH_t6ZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|121.6|0.43|4.78|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Ag']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra08680f|-AN2Vr1Ewf7_4lZZmyxC78dC6OU7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|242.0|0.556|10.8|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.08.001|-ANDkpl8VtIArDGET0iBEm__HYWE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.6800001791403176|1.13|236.9|0.8059999999999999|21.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201703852|-ANz0L4yXpTsvZVe0HkXc8Nvcu2e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C6H18I6S2Sn|SnC6H18S2I6|((CH3)3S)2SnI6||0.49|43.4|0.53|1.12|['SLG', 'FTO', 'TiO2-mp', 'D35', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'D35']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|-AZLcSTPr62SoPoBslJ9L5tcuCvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'D35', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnI6. -Br300Cs100Pb99Zn|Cs100ZnPb99Br300|CsPb0.99Zn0.01Br3||1.453|58.1|0.7809999999999999|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|-Amj6MhqKJEaUGEnpB4JEX7jce_m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.99Zn0.01Br3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.185|146.7|0.8079999999999999|13.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Aminothiazolium iodide', 'P3HT', 'Au']|['Aminothiazolium iodide', 'P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104180|-AsNAiPX7IwMDjlLsI-QLpiSg1V5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Aminothiazolium iodide', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.86|211.3|0.62|11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-carbazole', 'Ag']|['C12-carbazole']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra10148d|-Av_5bsqxxiutcMlAI3SzT1rAs8d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-carbazole', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.94|211.0|0.557|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S179360471642011X|-B0zs6OXhI_s9fepWfiSn9ZzaTVr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|156.9|0.66|10.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02852h|-B7fQ2PI0qkQQj25NQWVor2pEaTN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.6|0.632|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|-BFgC8f4mXxRR2QcoTs59_lJw8Gk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.038|232.0|0.705|14.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801717|-BPLqBJTUyvIaleWUh9i1D4kPkdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|166.0|0.455|7.19|['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw', 'ZnO-c']|bulk|https://doi.org/10.1002/aenm.201400932|-BYqqkFrOo1FslOGAtuQGGXuU-IQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|-B_4Jh8sq96GWU9dejBCDJzaT9jm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|216.0|0.735|13.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|-Bbyg0ambA1UiV2VXRIYj_7hnZ5e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||13.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|-Bcj3Y0UoFxFiNfGTrjVC53pts72|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br66C175Cs25H900I534N325Pb200|Cs25Pb200C175N325H900I534Br66|Cs0.125FA0.75MA0.125PbBr0.33I2.67||1.07|213.0|0.726|16.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|-Bcw_t5NYwM4KGQx8ZvOWXhletst|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.125FA0.75MA0.125PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|194.8|0.68|12.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b10445|-BfVnNeCYAzjsmXmsitGU7jA7Hpi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.09|238.2|0.7759999999999999|20.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MXene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MXene']|bulk|https://doi.org/10.1038/s41563-019-0478-1|-BvEGBERwmLfjFIeU2rMIIsGd3cX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MXene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.13|225.6|0.75|19.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|-ByAu9ZMCPb8uHlzmHqCajoTjevk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|226.8|0.73|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901171|-C1Pb32dqAE1xFdoYcBXUEPUWCD9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|201.2|0.5379999999999999|9.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|-C4QYI-CEgyW823QOgjcYan3X9Bs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.0|0.73|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-017-01842-4|-CHjD1b1jzK1P5IKbmIiPtK2KVnt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|191.4|0.674|10.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|-CNEiFJf-z8iqcN6uDHC_0j5mlRw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|229.8|0.718|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.03.1025|-CS8pQzrzoQeeiGXCngGy-TAhPaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|53.9|0.14|0.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Alq3']|bulk|https://doi.org/10.1039/c8ra01633j|-CSf8IdeFHMosfT_nIIXmwnrkFc_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.78|193.6|0.68|11.26|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1016/j.matlet.2020.128174|-CVejRDvfm5L7pLyhcTHV5P-F0Mu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.96|213.0|0.544|11.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1246/cl.161060|-CVzWLooEuYVBeno6N4myFUTGObb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||5.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|-CayxscwTxc2mS1dpv3vxbkxlfCw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.76|48.6|0.444|1.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|-CbWvGWFaxL_Ud6pwcOPMj96wokV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.0|0.628|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|-CeFS3-FCt-62PeUya5dhe3NIVmg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.061|230.8|0.7340000000000001|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.041|-ClJ07zlUT9seUWoYMFw2euGQjHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.95|167.10000000000002|0.6759999999999999|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|-Cve4aSMsl4IXG5UURlgY-KjEByN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|-DAeWYTNGUG50wQYHiSQt2vVob5T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr3I. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3||0.56|144.0|0.64|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|-DMR19ElWNfApf30fC7MUMyHVJBq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -Br5C20CsH105I15N35Pb20Rb|CsRbPb20C20N35H105I15Br5|Cs0.05FA0.75MA0.25Rb0.05PbBr0.25I0.75|1.6800001791403176|1.207|209.8|0.794|20.11||['NiO']|['BCP', 'PCBM-60']|not processed|https://doi.org/10.1002/adfm.202200431|-DNGrC7wbM6f5G2-WGh1oqlJ7jzr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.75MA0.25Rb0.05PbBr0.25I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.0|0.716|13.6|['SLG', 'ITO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1016/j.solmat.2016.04.034|-DcMKPOGWgkoX4Nqrx_HvVEKZqQy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|213.6|0.73|17.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']|['AQ310', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|-Dcc-DnWHJeUoV_SJFTbxDP_Ptri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|223.1|0.7829999999999999|19.75|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']|['PCDTBT1']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201801985|-Ddw3Y9_9TfIHPQpWQ9BjhYni1Vc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|220.0|0.71|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02544g|-Dj9JVp-lqVobYl2YWxjUXvLaIU7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.66|233.0|0.6709999999999999|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|-Dy6iG2HGrzkJzncPL-wKR4GtKx_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.69|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05576|-EMN_zw6BUNmy7JUbNKOE6XVKSAP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.12|192.0|0.72|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|-EQ1iqWRLNxra-sCJnckDdpBhJaN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.0|0.68|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|-EWAIcw5MKkIi21sSPT9tJjxLCsH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C217Cs30H822I260N97Pb80|Cs30Pb80C217N97H822I260|BA2Cs1.5MA2.85Pb4I13|1.6300001738087604|1.01|162.10000000000002|0.69|12.74|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|-EiGgnDrp1siQAqh-z6OMikb7sn1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs1.5MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|-EoV80PUoNlPomMDCsbdOg3LySoh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.0|0.82|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|-Eu9ro0KBA1oFmRx7T69ws3A8iXY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|179.0|0.603|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|-F2sFpwSWKEGzbpmA8Y8OtKjkDme|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.8|24.9|0.655|1.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|-F7cru5kBugEmtnGSE9RHNnyfu9d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.11|213.0|0.68|16.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|-FPLovrWDH7cKUbrkn76CTJWZmiS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|194.0|0.652|12.4|['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-70']|bulk|https://doi.org/10.1002/aenm.201401720|-FdwbA-L-7yj-ytC6jLnXLApyKQe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|-FpeLxLJXQKh36ZgiQw4DUc5EIZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|212.8|0.708|14.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'HMe2Pc', 'Au']|['HMe2Pc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.02.027|-G0orPj5q3QgXWuElt_ArYlW3Rq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'HMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb2Sn3|Pb2Sn3C5N5H30I9Br6|MAPb0.4Sn0.6Br1.2I1.8|1.2600001343552385|0.78|209.5|0.73|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|-GMKN7O6M11Qe2p7ni2lOeSDZNNb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.879|180.0|0.65|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ra25347d|-GOEBm4MnnlDvc6Ha10koW0vkhhu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.0139999999999999|5.2|0.42|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01434|-GYDJO6hSIdhbPFssovzJBXPA7pq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.0|0.778|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|-GYg9Kb0poMC8BTQsug4YRF4GdkZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|8.0|0.472|0.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201900885|-GfFjG5SwX46Xx4sOglf-vcVWu_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|139.0|0.37|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|-Gn4GE1UBBYkKshhsrtNUrs-TJMb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|159.1|0.46|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|-Gpe2-BAeeaU-TwMp7a5Q6ADujYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|188.0|0.6459999999999999|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Br-PDI', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['Br-PDI', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02617j|-Gv-vmZ0D5iLhBzcE5fd9SPQmLol|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Br-PDI', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br72C85Cs15H442I228N153Pb100|Cs15Pb100C85N153H442I228Br72|Cs0.15FA0.68MA0.17PbBr0.72I2.28|1.710000182339252|1.09|187.0|0.724|14.9||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|-GwlbcGp4JFYvtnZhOIv6e-8K6QL|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.68MA0.17PbBr0.72I2.28. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|212.8|0.72|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|-H27pp4PBARUawgaOT3lrvKS7AXy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.89|176.8|0.61|9.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|-H402C1J3lmWVv2FrLq3Ua23L4AY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|12.9|0.2|0.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|-H8DtiGx131eTKPs3AZ72IkiDG40|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|209.1|0.687|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.105|-HChfLpp-5tSBTnbopNwLgWRe1lT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.0|0.7809999999999999|18.72|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|-HKQW9EAonC3faQhSLI7hR-VJ9Ts|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.98|108.5|0.685|7.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|-HPjenadqU6P_Oet0tPGXErsLCZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|225.6|0.716|16.96|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|-HUsKiNH14rBna87xhSkVe7Qw3kd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|170.7|0.63|10.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|-HbTzGqjtcc5dzg0SYj8sBBS95a_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C203H1148I600N261Pb200|Pb200C203N261H1148I600|(EDA)0.015FA0.29MA0.695Pb1.0I3||1.064|233.8|0.74|18.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|-HfJcXv0cS_z6pU1dG4C_p4MmrBr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.015FA0.29MA0.695Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|164.1|0.56|8.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'MeO-DATPA', 'Ag']|['Al2O3-mp', 'MeO-DATPA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cp04685d|-HiEFQjjGbjCUq84b9Qt7xOfxi2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'MeO-DATPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|204.0|0.636|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3303/CET1652062|-Hk9QMmDy_cJ2piz7aYoDWQUx9zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag30Bi26Cs9I90|Cs9Ag30Bi26I90|Cs0.9Ag3Bi2.6I9||0.69|65.4|0.51|2.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|-Hmk2FUWBZxdYH2sGZIsQ6rxXhx6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.9Ag3Bi2.6I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|106.6|0.7140000000000001|7.57|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|-IB0k9q8EzB7-GddBYBdCnSSS4Vv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.7659999999999999|180.17|0.522|7.2|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|-IBwzgNXlZB8bpOEDiHQvbDHN6Y6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|172.10000000000002|0.71|10.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|-IVzfCKz3gEJBujvBBjmBIF578BV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|166.9|0.7609999999999999|13.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|-IYLlTdNhgDeR4OYl0lKSmiUNCmx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|167.89999999999998|0.537|7.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|-IjfHWd_awomnIyAt-3V3AA_XYLI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578|1.07|231.0|0.738|18.28|['SLG', 'ITO', 'TiO2-np', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'C70']|bulk|https://doi.org/10.1021/acsami.7b08429|-ItkO4x-jFLmsk829_qiAQOVUX1k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|213.49|0.738|16.81|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|-IuZ0JuD6EkYMQHRpH26cVaIgTzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.0|0.58|12.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5cp03803k|-Iv4ihOZts9RAyeyMrn6HVpSfWDv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|197.3|0.7190000000000001|16.03|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|-JK-JT_nPhF8EcQ37I8NR53N2oLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.14|217.2|0.76|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|-JWY7aT09gUBJHl38ZOj2Gv28QFX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|209.7|0.64|11.23|['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2O5', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01303e|-JXKgjLqCWZUCemFJYHdBEDvwjzC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.8220000000000001|178.5|0.534|7.84|['42P2O5-22Li2O-22ZnO-12Sm2O3-2CeO2', 'FTO', 'Perovskite', 'Metal']|['none']|['none']|bulk|https://doi.org/10.1016/j.jallcom.2017.10.143|-JZsK6iHwPPaIzF4zYieXEvIDH_q|a perovskite solar cell with the following device stack: ['42P2O5-22Li2O-22ZnO-12Sm2O3-2CeO2', 'FTO', 'Perovskite', 'Metal']? The composition of the perovskite layer is MAPb1.0I3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.5000002665778536|0.48|2.0|0.65|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']|['PEO; KI; I2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.09.054|-JbCyjXBvJe1PwHNPg7zWX8-EBSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|149.8|0.551|7.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|-Jkh-WUYvqhRkwMgaZm2RWqhIlYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.2|0.76|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aa6956|-Jp3sW5-M4m9S0AQ7OasJOSRT84J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.14|227.8|0.755|19.61|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|-JuLp9wjsbPAun7hnNbOcX4dLvTW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|108.0|0.6890000000000001|8.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aag2700|-JvPQfqdg7gf46XphjGv6MjDAWT6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|177.0|0.6829999999999999|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.019|-K6DGot1BARdoQgzlzfEQLNcT5ST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.137|242.5|0.795|21.73|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1002/adma.201905766|-K93Pg0Tta0oHkSpgsi0Ec5N-a69|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||15.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|-KJyLETKGDyM4RxqeLHtyd8O6RPC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -C23Cl2H124I60N20Pb20|Pb20C23N20H124I60Cl2|(CIEA)0.05MA0.95PbI3|1.6100001716761378|1.07|222.0|0.736|17.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.9b01975|-K_1xdVLkcyAhmvzTHu5a0lf6aYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CIEA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|84.2|0.496|3.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.06.018|-KgbEwPQYtnZ2z_sD07fTKU1ybkT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.944|212.2|0.617|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|-KlJM7V6PsLVukEeXFmGmcvA7_Fp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.092|223.5|0.836|20.41|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-T', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|-Kq9Ay_f-LkzEg-P1hwkvxO3zyo8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.87|283.8|0.87|18.13||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|-LH_6bNHhpcbC5ZumhMc9UgeYx-r|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.19|228.4|0.779|21.18|['SLG', 'ITO', 'SnO2-np', 'MSAPBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'MSAPBS']|bulk|https://doi.org/10.1002/adma.201903239|-LRptRt8GY7kdvpRP6Zk_y5tZgSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'MSAPBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsIPb|CsPbIBr|CsPbBrI|1.7500001866044976|1.16|185.3|0.7879999999999999|16.96|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1002/adma.201905143|-LqSBj7zOwzl8HnvSedIWpQkoub8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.0|0.736|14.8|['Foil', 'AZO', 'PEIE', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.056|-M5QB1Pll31akfVNln51PfGxbNd8|a perovskite solar cell with the following device stack: ['Foil', 'AZO', 'PEIE', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|180.0|0.58|7.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|-M5aGovYZhQFbo24cxddTSTLdSpi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.03|222.1|0.64|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|-MEe2-ucteIT8vnnP_1qAoyQP5G9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.0|0.74|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b04563|-MK_JhOXgMAmp0TEtSywXcyWOzBJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.9|0.71|15.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|-MXIqZZw_NHCNKrNI3SGAlLEpcdb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|185.0|0.727|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|-Mf9a3lkJ9kUj8OUgaGyCPI0QBC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.78|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adfm.201603968|-MkqjGw8W8lYj8aXhNE2IKQMyUY9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.039|197.1|0.609|12.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|-MngOBBImCCMSzBoIZj4hTbX9CyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|232.8|0.67|15.39|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c8ta00526e|-MnibvZC9Pl-HHBxoiKneFE4uNUG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.4|0.6|9.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|-MoFRZXlQVl68z3LR8nFemex5kxr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|160.99|0.536|9.3|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|-N1igYPo9Fitdgv8MU-xNhtLGm5T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|219.8|0.7340000000000001|16.62|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|-N5wstULyxzCu3F8guTMFtncMNmh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|62.9|0.38|3.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|-N6qJUYs0qxd9aikCQ_xpFgnNaSx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|226.0|0.74|16.86|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanofibers', 'PEI']|bulk|https://doi.org/10.1016/j.surfcoat.2018.08.039|-NEHb6RaFoC1VvB4Dc6ZpIRHu6rY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|165.6|0.64|11.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|-NJ2TjXXnbGf4jJaC74NHTArt1PN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.99|158.1|0.64|10.01|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07549e|-NJh8VckAJo3-ALvL6MOmlzHuEL9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2000001279573695|0.48|287.0|0.66|9.0|['SLG', 'ITO', 'SnO2-np', 'C60-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['SnO2-np', 'C60-SAM']|bulk|https://doi.org/10.1039/c8qm00620b|-NQcXUuL9tU5xi09vDZJceaIkro5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -BiCH6I9NSb|CBiSbNH6I9|MABiSbI9||0.59|2.7|0.64|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s40580-017-0120-3|-NSxVQiXKfY7OE5zMJNvkSJpijlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABiSbI9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|224.9|0.78|19.82|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|-NVFD3CB0bWXVMOuicdAQ7Ao7FIE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712|0.991|209.8|0.594|12.35|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF']|bulk|https://doi.org/10.1021/acsnano.8b02079|-NX3wHjKfDP3xEl42QEFtwuu8JB3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.0|0.643|13.2|['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2015.09.054|-NZcPJJTJtC1yE_CmMovJVjcx4-A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|1.2|221.5|0.81|21.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Oleylmine', 'Spiro-MeOTAD', 'Au']|['Oleylamine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|-NdE3UuZMTmj94JiOwUhrK76awVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Oleylmine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|223.5|0.65|12.69|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|-NiPMe3bA1Q8s4eKLTch_VQs_3KV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.03|183.0|0.72|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|-NpS7RbeCnrpiRwNiMuq8SjXR--s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.0|0.7709999999999999|16.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr02146e|-NwcQkK7a4HnsgLUu5bdRxZY7KTB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|227.3|0.7120000000000001|15.18|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|-Nxbc5LO9wZ6-XNT5N92hNnr4e31|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.0|0.66|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj02074h|-NyxaS0smagU6toWZF5HvItK6HXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.99|216.7|0.77|16.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|-O-RbbgIUAN633sGnghbVHotFf2M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.9|0.758|17.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|-O1_5Nt4cP8gMxSWv9LL4X-nw8uc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25|1.7000001812729404|1.14|203.0|0.7959999999999999|18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201905487|-O6rax4VjeYofnKf2EAPgfEpPmsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.35|45.0|0.26|0.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.09.062|-O8M5CKuDO3mnIG-7gP7EXJ47TIG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09174a|-OJq88uStKI-K7aN1mR5GI_y5RYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.01|223.3|0.71|16.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|-OOhPMlnZEabxC3ZFoI4WVSgCgtY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -Br3000Cs1000Pb997Zn3|Cs1000Zn3Pb997Br3000|CsPb0.997Zn0.003Br3||1.485|63.4|0.813|7.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|-OVZ1l-VSxrOrbubNeiYXdT4ShOh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.997Zn0.003Br3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|122.2|0.65|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|-OXj5HTfcgl9cToHzuYl8ZLBVWFe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.121|241.0|0.767|20.1|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|-OcOAAp6KO7mDPomxZ6SCVedyh_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -Br2CsISn|CsSnIBr2|CsSnBr2I|1.6300001738087604|0.575|34.13|0.5479999999999999|1.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00100b|-OeH768yYozd1X3DzHW9-gAOW1fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is CsSnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.8|0.75|17.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|-OvhNqmYEauHmx1yD6jIQ1NQs5Je|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|207.99|0.65|14.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|-OyZwR75mLsQCMvJu6ekwT4yosJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C38CsH200I120N66Pb40Rb|CsRbPb40C38N66H200I120|Cs0.025FA0.7MA0.25Rb0.025PbI3|1.5100001610130236|1.2|235.0|0.777|21.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'CdI2', 'C60', 'BCP', 'Cu']|['PTAA']|['CdI2', 'C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b13418|-PA061L7KA8ZQadw977_g7GWUnif|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'CdI2', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.025FA0.7MA0.25Rb0.025PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|226.3|0.7659999999999999|19.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|-PF2Ih4oV2IimwF7nfDOIkaddNaZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|210.1|0.706|14.04|['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'C60; C70', 'Ag']|['PEDOT:PSS']|['C60; C70']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.047|-PJdcgGZ-KMclCN5aV7TULEWO_Ny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'C60; C70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|207.0|0.74|13.3|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['WO3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8cp00645h|-PMJ37nXzIJhI4VLJpSe4QPFsM42|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|203.0|0.555|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|-PXvAX9aADe0WLPitDH6gMRjIQTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|160.0|0.59|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|-PfOr6KSLz7kGTLpPfnQ1_ntq1FX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|229.6|0.732|18.89|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'CANP', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD', 'CANP', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b02145|-PgY4LfWLiWxzGl6qiy5ZLhup3ia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'CANP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.89999999999998|0.727|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03284b|-Pm2T5SXEu3HAINT8tdohH0NgmY-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|211.9|0.772|16.32|['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoS2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2019.11.030|-Pr3BB8Y-9-0fqKPPUXo4qPbRPlm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C4H24I6N4Pb3Sn|Pb3SnC4N4H24I6Br6|MAPb0.75Sn0.25Br1.5I1.5|1.6500001759413832|0.94|163.1|0.75|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|-PrNz8o9cRIiTCKc_aNtFXafORau|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br1.5I1.5. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||0.93|209.3|0.71|14.02|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|-PuoSEwCWyBwHWfErkWkyv7xvQfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.0|0.779|18.5|['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'n-Butylamine']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|-PwBJ60t6Ao-iHJbwOgWWishiESw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8200001940686776|0.738|155.8|0.688|7.91|['SLG', 'FTO', 'TiO2-mp', 'LPP', 'N719', 'Perovskite', 'I2; KI; Propylene carbonate; Polyethylene glycol', 'Pt', 'FTO']|['I2; KI; Propylene carbonate; Polyethylene glycol']|['TiO2-mp', 'N719', 'LPP']|not processed|https://doi.org/10.1016/j.electacta.2018.06.078|-Q-p8yJ_h6obGs2_pWcNUgM9ghq9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'LPP', 'N719', 'Perovskite', 'I2; KI; Propylene carbonate; Polyethylene glycol', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.9|0.75|17.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|-Q2DTa3umjTG642a7wONYKxYRDey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.02|202.5|0.731|15.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201802231|-Q9mB8_pY_OksUB0FBm1sJzbV97m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|219.4|0.72|17.1|['SLG', 'FTO', 'ZnO-np', 'Mg-EA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'Mg-EA']|bulk|https://doi.org/10.1002/adma.201705596|-QCAdyf89EZa3WGZgY-9GBJ68Ekp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Mg-EA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.1|96.0|0.61|6.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|-QDiJTetarL28E4dP7riN2Ra3_hb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.038|215.1|0.77|17.09|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|-QOIagSJ7L4quELBM7FDzH7QZcQj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|48.0|0.43|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S7', 'Au']|['S7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2017.07.004|-QkPsM9Bt07AYgz6AaOG44Sklmob|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S7', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18H93I20N33Pb20|Pb20C18N33H93I20Br9|FA0.75MA0.15PbBr0.45I||1.07|237.0|0.74|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803287|-R8M4sUqtqXpr5Sza8KJshREaWpm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.15PbBr0.45I. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5400001642119578|1.0|222.6|0.71|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|-RMDXxxUayS1bsb0hzZCsT-xJu41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|237.7|0.58|13.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|-RNgUR3S42sQaokj9iag7ckOvawr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|208.0|0.594|13.23|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|-RNnBzYLKjw8jXLmcAiWh9DQAZb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|189.9|0.5329999999999999|10.23|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|-RO9nAwtYUTj6B84EIke49nic8-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.414|171.6|0.5329999999999999|3.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|-RT-jEGJR3nzo2yT_yYVZ_ayaF6_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.87|25.6|0.621|1.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|-RTK5XhMLhjVYt-ycaiXZK3j_J5e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|213.7|0.47|8.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra18729c|-RcznXwpxkJIhB2281XL2wyhwMwk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.66|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAZ-[MeOTPATh]2', 'Au']|['TAZ-[MeOTPATh]2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201501178|-RlywpHh6A3kUz1x-5CD-MZchyqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAZ-[MeOTPATh]2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.043|234.2|0.758|18.3|['PET', 'IZO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|-RmW4V1ShI0-ojF-TN12uSUQ8OFG|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -AgBr600C200H1200N200Pb199|AgPb199C200N200H1200Br600|MAAg0.005Pb0.995Br3|2.300000245251625|1.06|33.6|0.782|1.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|-Rpdnrlm-qfQArsu_HUeyp15ZbZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.005Pb0.995Br3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.363|172.60000000000002|0.56|3.53|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201811539|-RpgtxmcfgTZjKTVPgU7A7r35-Ug|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|218.0|0.73|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta00551j|-S2WRqHEmWg4YYfuREDYgxm75ECi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C16Cs59H24I181N2Pb60|Cs59Pb60C16N2H24I181|(PEA)2Cs59Pb60I181|1.7300001844718749|1.06|147.4|0.71|11.09|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|-S6l13L-7ZMhfFwuIPtbIdGD67sz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|168.2|0.55|8.41|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-np; TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|-SCrn-N-0HCs6vo5ATsS50sk19zs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|173.0|0.63|9.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep25648|-SE_1xKfhEfB8MUszpoPU1CSwnIu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.1|0.8|18.51|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PCDTBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; PCDTBT']|bulk|https://doi.org/10.1002/solr.201900207|-SJI1GeDLPVBZ0B4ldg1UNrnS1QJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PCDTBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||1.018|214.0|0.637|13.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag@SnO2-nw', 'Spiro-MeOTAD', 'Au']|['Au@SiO2-nw', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700151|-SNxeDbTNlwtxynRVmsXOPlaSK-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag@SnO2-nw', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|204.3|0.7290000000000001|14.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|-SQwBMA4BZqS_KaRce4-9evCUWI3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3400001428857296|0.68|195.7|0.66|8.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEIA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201807024|-ST6qPmdasfa1AU4vQsfOBJ79OJS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.074|208.33|0.773|17.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||-STItbRn2AYLOaJ0Cu2cJOSpkzog|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|187.8|0.723|14.2|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2018.06.019|-SZHLlDn3shooj7jZKIFtEOWPDw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|-ScKNGvzOIdiXGo4t0a9Arn2AR7l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|197.7|0.64|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|-Sg9RlMWG9u8bgGFmiX3pl62onVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|74.0|0.51|3.02|['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cc04685d|-ShVAn-2NaTLd7cyLc8exl_nqYKH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|192.0|0.7140000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b06020|-SjF35FI0SCwbDumQj1_NryTGY0Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|-SpnL7jh19ezGTFtjLyF1IJDO_jD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.01|237.0|0.7340000000000001|14.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon-nt']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|-SrFr35KTmR1KNB9pRjJjPYjrVUK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon-nt']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|187.0|0.691|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|-SsZVF-tEVSxKvt-HL_3jmFScKLH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|136.0|0.7|9.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00488a|-SyOu9mpl4vv4sCExnMzuXpAKBqA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br20C83Cs17H415I80N166Pb100|Cs17Pb100C83N166H415I80Br20|Cs0.17FA0.83PbBr0.2I0.8||1.244|208.0|0.795|20.56||['Spiro-MeOTAD']|['SnO2 Nanoparticle']|bulk|https://doi.org/10.1002/solr.202200252|-SzX0LCFh_85hLpW2p14dfKf4YsZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|226.0|0.753|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909737|-T-PihD9b-9nQmHD5BtUxhhWtKKr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.22|144.60000000000002|0.772|13.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/advs.201801123|-T-ly24SVt51KbY-6ga33vgwzmSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.69|38.8|0.46|1.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b01327|-TF4yguYaTOok7QcGW3kC3Fu1yKG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|216.4|0.6|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|-TFUHY_J0NIleyAtQ8G477bivlqi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|214.0|0.51|8.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2015.09.092|-THtfbqEmpiSGohp6hnVMkc-LjB1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC25H30I20N10Sb4|C25BiSb4N10H30I20|(4ApyH)Bi0.2Sb0.8I4|2.12000022605802|0.52|15.2|0.37|0.29|['SLG', 'FTO', 'PEDOT', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT']|['PCBM-60']|2D|https://doi.org/10.1021/acs.inorgchem.9b01439|-TLR1Ej01yYCj0oXzc6Lt3QgJLe-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is (4ApyH)Bi0.2Sb0.8I4. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|1.03|57.6|0.54|3.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|-TQVlJmC6KJ1zvmRl2cU1DlnFmTf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|223.3|0.69|14.5|['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FeO', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cp01432a|-TaVSYnbVXcAcc-SVUh-4i9f-Geg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.031|203.4|0.667|13.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|-TkM1X7GoqPh9WMyc4Qrk4gmTcvr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|193.5|0.73|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.005|-UC0q8FR5ZsrT3yBC6Ry9ZdlwKlD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|0.82|165.0|0.64|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|-UGRx4WqwMIhZ-_UzWN7qbAlbAZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|208.4|0.698|14.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'MoO3', 'Ag']|['M104']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|-UHyccYIUlzofTOSHVv6z2bjOjv3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|211.5|0.691|15.34|['SLG', 'ITO', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['X-DVTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b04396|-ULolaHPcqmRviLxAdIdodkkw5J5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.22|106.0|0.74|9.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7-Th', 'MoO3', 'Ag']|['PTB7-Th']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|-UmFITTBY8az6c1sywVsHd0uTJ0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7-Th', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|208.6|0.718|14.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|-UnuZsyt5qoWrf5DWzEcAfpjcJxP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|0.68|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|-Uq8kKB1wFDU8A2hQapeMmCY3cUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.105|227.4|0.7070000000000001|17.78|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|-Uv5hGi043W7ih3954rxJzh4l80e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.763|17.81|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|-Uw50V-KZltbaeiz8hwhJXNqWS1B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|142.0|0.792|10.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|-V3opkb8efP4VvkYJGEz6R2tjvsI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.9|199.0|0.76|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|-VFHtwvyvZ2_BazC1ASJxndovGKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.2|0.78|18.39|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|-VMfRu9yUrCQGMoD4oNUAlPj-ymb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.967|217.1|0.63|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']|['PEDOT:PSS']|['F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|-VNerl1aWzflCguEZJqt1svnvBol|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|201.0|0.78|17.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1039/c5ta09520d|-VO1zC9XWcjjC4IJZy-pcRVSDWAX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I60MgNPb19|MgPb19CNH6I60|MA0.05Mg0.05Pb0.95I3||0.8|104.0|0.607|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|-VOL2jwQwQrm935ad5N_OnyN_2eu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA0.05Mg0.05Pb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.0|0.77|16.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|-VqquDZ3tOtfPAzvs-hWjVL_Ka3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.035|130.97|0.306|4.2|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|-VzdFuCg1sFkZlQs7SuzK3RP0xu2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.6|0.602|10.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|-W8ZIci1W68Vo_xm4kkL8Cv43Nod|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.0|0.59|11.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201500105|-WCO5if9biuzYus0rCoi7h-XMHvQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|234.0|0.73|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X59', 'Au']|['X59']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.020|-WMfSI6NomhQx24_m6VWnNbU-Gnq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X59', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.023|205.4|0.58|12.19|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'EH44', 'MoO3', 'Al']|['EH44']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-017-0067-y|-WPrRX9-vAzIM8wK-jxJCmgouhFj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'EH44', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.037|199.89|0.768|15.93|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||-Wu7cFXid1M4QikFrPpdPyob0H90|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.6|10.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|-WylOmidGW7Wfh5rA1aq53mEF26r|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|62.0|0.47|3.13|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4cp00298a|-XLn7SDRQvEwsogTIONlvMiOXXG-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C9CsH45I21N18Pb10|CsPb10C9N18H45I21Br9|Cs0.1FA0.9PbBr0.9I2.1|1.678000178927055|1.176|203.6|0.786|18.83||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|-XQghti_iyuxifWOVbEC8Z2FWRPV|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|146.0|0.772|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/cphc.201800732|-XSjwyoZBkugH8cshxagUKQ0S2Nt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|189.0|0.74|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F2', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F2']|bulk|https://doi.org/10.1002/solr.201900223|-XUkIWWmx02NdkWY-o3gRwBs-LCT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F2', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|72.1|0.271|1.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|-XZrYPptADSRms9CWJUKvhGQYIsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|49.400000000000006|0.59|2.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1990793118040334|-XdkkOU8FXFVjL01i7uFnunzbsCJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.6|0.73|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1063/1.4941416|-Xeui74d1RGjGrgCdCDJm1Y-Taec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|196.3|0.682|10.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06960f|-XjX-UuxVv6OPIQ1e3ckbiDzg-o5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|-Xqt2PnuBO0cvAOBvuYfhimKZlzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.13|227.0|0.82|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|-XvsdWimZ9wYtHF2xA039MrLFoyC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|9.4|0.51|10.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1117/12.2291595|-Y04tWQBX8iQ2L67WxqHN0gHivKd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|243.6|0.69|17.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|-Y9mpwXNClXL-VcemvutVPjC_I04|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|178.6|0.607|8.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|-YKSi-BPMyW7dWOFKTajlsaMvSKx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.093|222.4|0.83|20.17|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-V', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|-YM_35maWOFSp6yPLpmPYMQJ0Kmt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|-YNDRNnWlzhdbgrEvlc1bU5jhPsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|227.25|0.725|16.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|-YNmmheJfZOyaRO4NtNxx5Q8LkEx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.0|0.73|17.47|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|-YZGF3Sf7pLaSXvJadrP_ExNWNhI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.89|228.8|0.6990000000000001|14.23|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.8b05610|-Ya7-yNrTxMuOusQov-ko_OhGSpQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ee02373h|-YdOQKlVt_nDnT9QtcS4O5kzI62f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.034|210.0|0.73|15.8|['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b01396|-YeLLOMXCXE5s4hJuu6w2hMCtGit|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|189.2|0.6509999999999999|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|-YogtT5Eqgi3NoPxp-1NTuBBjGpZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.72|208.0|0.52|7.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|-YsWAagQGsiW2v4VNTbT3pCxooXq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.06|166.4|0.31|5.47|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|-ZOXsWM5TqbIVnctWJHpGG8zrNRF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.83|198.3|0.69|11.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|-ZVo62EXn3ySyVBguMLmfYptQG7X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.0|0.64|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602600|-Zg54AXfyWEvXO_QZNmNSfd5HVkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|187.0|0.64|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00121|-ZikD_6crw3zjNaHwqdIW5fpABu0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|205.0|0.84|16.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b11083|-Zlp1_-0OO01ZmXKkjE5Xcj5cTqs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.84|20.0|0.579|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'D149']|bulk|https://doi.org/10.1246/bcsj.20170423|-Zry8Evu3sKsw_mmbwvXU9CwwlrC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.04|225.3|0.6890000000000001|16.21|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|-ZvUHkL5YzHxbeJgtCCaRP96iWUn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|172.60000000000002|0.366|4.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|-Zym9Q1HyZKp4JkyWuABXFsgX530|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|229.0|0.74|18.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b09803|-ZzjecbsHiaeyt-yGcyXj0lY1SnE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C122Cs5H640I291N214Pb100|Cs5Pb100C122N214H640I291Br9|Cs0.05FA0.92MA0.3PbBr0.09I2.91||1.1|200.0|0.7440000000000001|20.0|['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PEG; SnO2-mp']|bulk|https://doi.org/10.1002/admi.201901866|-_9AnQ_oVz1XnqvR0Z4oCQlEodQa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.92MA0.3PbBr0.09I2.91. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.878|193.3|0.46|8.89|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|-_NV6h7Bx9ZIAZQUjXoiEWd4YMDa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|102.6|0.47|3.95|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|-_VqhbauLqlN-q2FfmPT3CmuclnJ|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -C500H2987I1500N513Pb500|Pb500C500N513H2987I1500|FA0.026MA0.974PbI3|1.5160001616528105|1.051|248.3|0.774|20.21|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|-_YKou8igSsauq8gpCH6uSbo_23Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.026MA0.974PbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.73|119.62|0.642|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|-_ZB1DBP-9hdr2DT6QkN64RIWlR3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|161.0|0.491|4.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|-_ZoMyZJb2T53hskQIHVCpFkj-hT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.624|187.75|0.601|7.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||-_cDJz2PCaPAGdp0pkxWAVsYVGQR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C4H20I12N8Pb3Sn|Pb3SnC4N8H20I12|FAPb0.75Sn0.25I3|1.3900001482172863|0.75|194.8|0.703|10.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|-_uE5M8qlBzHRAzMIhqNj3SYxplz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FAPb0.75Sn0.25I3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||0.92|128.4|0.3429999999999999|4.08|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17141|-a34ocNNk-yELMVzcFZk-QZUt3Jv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.76|229.0|0.44|7.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPT', 'Ag']|['PEDOT:PSS']|['PDPT']|bulk|https://doi.org/10.1016/j.jssc.2018.10.045|-aA51f8G1zCivd-eoo3Z-DFCFkcu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|221.5|0.748|16.85|['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx', 'Cu phtalocyanine']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|-aAhlzBXfdlkI_3j22rsprCwgOd3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|207.0|0.63|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03103c|-aQOOIZWUC0CbA896yS6Eseza2BN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.1|201.6|0.74|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b11759|-aQVCK2QAo15cHFYk4UOWxoyljG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|146.1|0.71|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12139g|-aR0xdedF7p8VQVqGxo1phMD-Zi_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.052|203.5|0.726|16.81|['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|-aYLo6eFjuIn4Sb_vTXGUNqOs9X3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|120.9|0.55|3.13|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|-ae0TCYMZjakj7Ih8ZF56lI9DxDp|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.88|38.0|0.32|1.1|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine"", 'Au']"|"[""N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|-ajQnkJNtdjpWhx4dtAmVR_4jD6F|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|189.06|0.7|11.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2015.01.028|-awD5FvPhbclHg_bZBujGY7f4mqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.8|0.72|15.2|['SLG', 'ITO', 'TPAC2M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPAC2M']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|-ayZLpfaKBXXRLPOI59X_nInhCIA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC2M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.113|154.73000000000002|0.685|11.97|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|-b60HEygXLswRq1T-1qF5VcL5dCi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|199.5|0.71|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.112|-b6tgbu2eMwIX0EF1Lm_UELoBOik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.48|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|-b7pVb-mljuF2mHeefmViM_KUROU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|158.0|0.63|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|-bBt4qbHC8w9F70mFKYBGVhY5e_L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|197.1|0.69|14.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'RCP-BTT', 'Au']|['RCP-BTT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|-bD6GmhT9F8HUE3i33DE9Vkf6j7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'RCP-BTT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|180.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|-bFhUUtm8fG1eHAYBIoatDHZ0ENl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.3|0.76|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cjoc.201800469|-bL9X4gKVL_IYCkxoBek83uo2N76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|210.8|0.56|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|-bOJAUcABWpt407FLpbLuk_HgDdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.755|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.09.031|-bQ2JTvNM5Pdg2bMxKhMvnCc5Z-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|71.0|0.741|5.0|['SLG', 'ITO', '2EGO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['2EGO-PPV']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|-bTcU5pRktM6aOIQk2zPcrIZzt-M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2EGO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.26|50.5|0.62|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00050|-bV5kYv73HprRA4ltFZdnSFex4sR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.2|0.6990000000000001|13.17|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Au']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|-bWUwxMHgH-Rm5LAIEFcdKBl8SgT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|222.6|0.75|19.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800149|-bbN5U8Ma_zjxzBtm750thY1D07b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.8|0.7|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.8b01351|-bcEMg0bfhpQR0R5tqqEKs5Z4SgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|150.0|0.653|8.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01118|-bdPVfhsKP_QTrAQmVw13JhXAACu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|-beKcpbW1g97K3IjIwsFesN-JPfy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.6|0.69|14.35|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|-bqZoWNbxiKKD-lTB6uhdMxOl5J7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3|||||6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|-c762u0q16m2SRf1NRG4eAfLtAOA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||15.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|-c8EvL-_eKznBSFv0IW7DWTWP-IQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.8|0.747|15.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/polym11010147|-cNxa-YvYilhNAMO9foASvcWzMJY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|219.0|0.767|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Au']|['BTT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|-cRcep2XF7apuo7dxYzcU2WiR9ij|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|133.5|0.65|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|-cTPQpKHClI3u56rGvYWlDkVuRAD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.1|0.612|13.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|-cTw6SWZP3vV6fe-ITXLNX2OpeLL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|192.0|0.65|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pyridine', 'Spiro-MeOTAD', 'Au']|['Pyridine', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE08|-c_8M6agpMe6f4NNlpRamhgg9eLU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pyridine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|225.0|0.569|13.2|['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c']|bulk|https://doi.org/10.1039/c6cc04840d|-caZrmYla8jIehMZ9N6HeDB97xle|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|182.9|0.68|12.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag', 'Mox']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226768|-cePfJDdOiUBnuwAokQdpojRqMAN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag', 'Mox']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.944|204.6|0.5720000000000001|10.05|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1063/1.4989560|-cfJc-JKFzMTAfI6GkUrK3h9ZQC3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.08|217.53|0.74|17.42|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|-cfuIetvAqpG65VaApnZikLkSIR5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.0|0.792|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|-clkelCR82EfVPJVJacQF1RELSm9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.72|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Ag@SnO2-nw', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'Au@SiO2-nw']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b00309|-cvCSoPVSETFTHgfgptzWL8_3ESM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Ag@SnO2-nw', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.062|217.0|0.6940000000000001|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|-cwW4JD6xmJjiqeLocHs17tfeuE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.2|0.6709999999999999|13.03|['PET', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Ag']|['P3CT-Na']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.06.006|-dEhW87AhhOlpxATgPGPoAlJsqQB|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|213.0|0.71|15.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ee02362j|-dK7dNwCFuVI4qPTswt1kRbALas7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.8|0.72|15.85|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|-dKChCn28r-jWhQychNW2vGXOHZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|85.8|0.346|2.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|-dKbcJbkPK0iRhC2lKCBCftQ70bb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|167.5|0.353|5.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00605b|-dXbK94jb0PhmKTbaqOY_SlgBOGc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C20F2H46I15N6Pb4|Pb4C20N6H46I15F2|(oF1PEA)2MA4Pb4I13|2.5000002665778536|0.45|18.4|0.529|0.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|-ddMHkjbg4m4sNCDFDxf7TrA_9a9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (oF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|167.0|0.7|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta11128b|-dj9DnMj3jUSrnDi8N1YbUAtGeV2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.0|0.65|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04051e|-drFGsWSYJWIx5wLflYsu3-Zn0mb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||0.94|136.0|0.35|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2018.03.020|-dvUDpQi_ApiaxfnXaMy78QzW3FZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br255C475Cs25H2456I1245N1031Pb500|Cs25Pb500C475N1031H2456I1245Br255|Cs0.05FA0.788GU0.162PbBr0.51I2.49||1.06|121.0|0.591|7.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01893j|-e84GAYswf6vG_d40X2FWgbxs9vl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788GU0.162PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.12.021|-eH9vys-NNmy-7SWNJQOL8-ZTaP4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|229.6|0.794|20.36|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']|['DTP-C6Th']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|-eSi_3WnOyrF8a_BFLRaxFT6SGWD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|106.0|0.44|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|-eUzAmfcrzBHRRBSg0Rbe-FsjdU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.8|0.71|12.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen', 'Cs2CO3']|bulk|https://doi.org/10.1021/acsami.7b06681|-eVfEwensgDOkePm5NMafwy8zGA6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.0|0.7|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502206|-eWS8lmenilr_Ql99sNf3f04Avsz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.043|196.4|0.7070000000000001|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5053845|-e_raINzqyWjUD7MeRu5ITikDaq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|219.0|0.7|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|-eaCF57sZUMdID_qHVXWH7zZlIkX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|-emt14lAPzF0ZNmp42BSHpYfksF0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|124.0|0.52|4.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|-exjRLU24bb6c5r0nsrv99Or0C4Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|87.2|0.3779999999999999|7.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|-fPXK882CTzOMyVWI2pW7fikEDYH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.5|0.752|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b04924|-fhlWe2GdFFr1m_TQWo5NjNmgcMc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.9|0.71|15.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08488|-firA3H5flM-zOEdFn5YXfPRDWYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|159.60000000000002|0.578|8.76|['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']|['Co0.878Cu0.122O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|-g1S_Iw7e_NhMWmJu_i9a7dwdwmH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.0|0.66|15.0|['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|-g5YotXaPXAa0HOXR5XvUoW0Yw8G|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|232.5|0.758|19.42|['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NiO-np']|bulk|https://doi.org/10.1016/j.solener.2019.02.011|-g5oWdyilsHGNKM3QiTID8OtG5Oz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||||||['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|-gDa2--E9K8GlIQEo1NGO3VDtjGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.2|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201909738|-gNBpYOhUhRp8ANB2z6z44O1N3LE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|21.4|0.48|0.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']|['BzTA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.004|-gOIuvC6c5IhVGX8ls2rDdMfc983|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.912|198.8|0.66|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-helices', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-helices']|bulk|https://doi.org/10.1039/c4ta04988h|-gwB7yiaXAwezsz_nv0TmBtG0G5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-helices', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.0|0.772|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14423|-gzGyxJgUk6xeRJK6Osi24GJeE63|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|198.7|0.79|15.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.085|-hBwsAxew5Aj_jdst-tbFsx-VAr3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C12CsH30I7N2Pb2|CsPb2C12N2H30I7|CsHA2Pb2I7||0.327|6.82|0.462|0.103|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc00921f|-hCWLZNAbVHVV1oY36u9mUf6v9lN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsHA2Pb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|237.0|0.7|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11139d|-hES2WIUFXLIEB54OOz-jeus_US8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH100I60N33Pb20|CsPb20C19N33H100I60|Cs0.05FA0.7MA0.25PbI3||1.08|243.5|0.765|20.5|['SLG', 'FTO', 'LiNiO-c', 'Perovskite', 'PCBM-60', 'Al']|['LiNiO-c']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aap8671|-hOgNzfi0MPhpOEGCmSKWoM3-aDv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiNiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.7MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.3|0.74|14.78|['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|-hOpfIq_n7DlavXza3RMOgR0i8R-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|237.0|0.773|19.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'GDY-Tz-CH2(CH2)16CH3; PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['GDY-Tz-CH2(CH2)16CH3; PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2019.103932|-hgbFiCfD1AtIIO72JbH42NIKkEn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'GDY-Tz-CH2(CH2)16CH3; PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|215.6|0.64|12.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.077|-hpXsh_NAi46IkQnH7vQ71Khe1DR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.74|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|-hsYacYxFSEVTFns1cN5pZ_Z-NvL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|219.0|0.779|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|-hwjqF2O-J4OeEjMQOcDbzmT_gI5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3|1.2000001279573695|0.7|247.0|0.711|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen‐NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1039/C8TA05444D|-i3MVg9qa_yPqooXh1WjqRUSjPIi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen‐NaDPO', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|235.3|0.6609999999999999|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.10.001|-i7AzwYCVC8ycoVWh9NekEKrvn41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.08|224.0|0.65|15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|-i84IciR5QLRmHuRw6NXKhoLl2Wq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8690000000000001|141.7|0.445|5.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|-iKWdfyA7ljAfv4ytXmZgaNjoT7C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|188.1|0.736|15.13|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'PEI', 'Ag', 'Ta2O5']|['NiO-np']|['PCBM-60', 'Zr(acac)4', 'PEI']|bulk|https://doi.org/10.1002/adom.201801409|-iUBCfIh8Vg9t9s8pQos0ghgYUT_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'PEI', 'Ag', 'Ta2O5']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|206.0|0.73|15.27|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|-ipmrpmaLrcLWkxk93qy6I1JTkP5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|158.8|0.57|8.36|['SLG', 'ITO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5ta08375c|-itdVPG40KFGxwx3fZ8e4pBjdfI1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.04.191|-iwJSW0-N1G2g3dpD0yWSjYnsJrG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.75200018681776|1.064|178.1|0.779|14.76|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.001|-j7yg59pfTRpwMsPAJWPPidbJZ_k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|217.0|0.726|15.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.050|-j8PX_zvLpNF_nmY9G-h-7v_1eDM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|202.1|0.5670000000000001|12.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02323|-j8ViKAuelhy59mE8P26UAp_tusX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|215.5|0.545|10.48|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|-jAMwA7_kjN_pCuu8kipM0HvSJ-2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|10.3|0.59|10.9|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1117/12.2291595|-jLXvg5ccgqqD1pmSOyysTLGMC2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.075|221.55|0.768|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|-jNYqtzlZ_UOqKlDgrVF79TVtlia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|231.0|0.715|17.91|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu1.75S', 'Au']|['Spiro-MeOTAD', 'Cu1.75S']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700038|-jcQ2qA2p4VMkrK9K6OPIq2qSc_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu1.75S', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.15|207.5|0.78|18.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee02575d|-jdQM4SV5FGNsWIxG_sD1Xdj-eeu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.942|193.3|0.647|12.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']|['2TPA-2-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|-jktNMljVfu_xoAxBuiokngyxiCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|176.0|0.6|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.037|-jl6JecQiGtpnmxPfniSgM4Krt2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.105|207.6|0.71|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|-joCUXIzBu-MW7w4O2n0LcDfW8o9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -C20H120I60N20Pb19Sr|SrPb19C20N20H120I60|MAPb0.95Sr0.05I3|1.632000174022023|1.11|210.8|0.71|16.3|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.047|-k5wywwpdvTyiR_Se4wWwOs42zpg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Sr0.05I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|222.5|0.72|13.56|['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2Ox', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra04414c|-kISL2CLIwiCcN3uJCOZrvTgCLvJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8CsH24I7N2Pb2|CsPb2C8N2H24I7|BA2CsPb2I7|2.2000002345885115|0.957|88.80000000000001|0.57|0.484|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|2D|https://doi.org/10.1039/c6ta09582h|-kOyto1kOVvXlx9wEuSkEN3wQFwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2CsPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.2|0.73|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.02.013|-kWZ2l63wKIIOv8qDGI-iYxNqMuv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|182.3|0.58|10.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|-kZHwNlxAXzctKVg9rZ0i5ARC6iJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C1000Cs60H5170I249N1830Pb1000|Cs60Pb1000C1000N1830H5170I249Br510|Cs0.06FA0.83MA0.17PbBr0.51I0.249||1.11|226.0|0.753|17.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|-kg9DsnS_UQsIvXKtOu83VCDaEAR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|52.9|0.48|2.44|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon', 'FTO']|['CuSCN']|['TiO2-mp']|bulk|https://doi.org/10.1088/1742-6596/1195/1/012025|-kk-sl2wOzoB2hdhgeWF-COZ-IoR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.425|155.7|0.25|1.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|-krPUlFYaECl4uN1YpBVkM_h6HRi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']|['JY5']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|-l-lVXSk21DxO-oPK6_AA887met1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|183.0|0.6920000000000001|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra07475a|-l222ljM61mz6MXglcgleQOBF_vg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.181|140.8|0.7020000000000001|11.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c08006|-l4pmFin44MC3f47Fi3F9m0KVawk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|146.8|0.67|9.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1039/c5ta08015k|-l7Kh2szeMtTuj-4l2oe8UASYfqH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|181.0|0.52|6.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|-lFQBATk6KmCg89-M-xZY2ZSinSU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.09|232.0|0.78|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201606831|-lL8a2UIz6N-0loHCpIHlmZ4S8k7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|193.0|0.72|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|-lasdh443VzdrOFGp2GnrScZICz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.0|0.575|13.07|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|-lfQkq7Itdi6Ebkk8hEOEYzWj4CH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.116|235.0|0.82|21.14|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|-lgeyG3-5q1mITmBrOW3M0L7O4Np|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.2|0.644|13.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|-lhBoWZZCX5Xv1WyPMs_H0KCZH7q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|118.7|0.78|8.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr08344d|-lhFoVkOLz6zGUDKjEtjQF_Hg5DY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|173.29999999999998|0.634|10.64|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|-lqQXWsaX09DaIpeAMh1-avffIzg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.1|0.758|14.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.043|-lvvzFRnJ5g2wHup13wv1Fln1JqC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|209.0|0.64|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700308|-mBGaanhs1wEN11W0BFdcVUEAZp6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.061|207.7|0.67|14.73|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|-mHC-3eZ2e1VSU1pygWQ3_QH3s_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.03|206.0|0.69|15.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|-mYEAMnIMlHYKzGS2gnMDntJaOe1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|58.7|0.3|0.5|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Al']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ra07725d|-mYHfrukpOc3JrP3DkjeWJbP4lDA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|144.0|0.67|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502694g|-mq28iO9p_FzKIyHmy0smpb5Kh5v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.015|9.2|0.492|6.8|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b00041|-mwP7zcm5ZltZn7jREqXAquKHbPo|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br54C100H519I246N181Pb100|Pb100C100N181H519I246Br54|FA0.81MA0.19PbBr0.54I2.46|1.6200001727424491|1.2|144.0|0.66|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|-n32qaRtJPXHx804CacU-WnvL8-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|169.8|0.62|10.84|['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']|['CF-Sp-BTh']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.07.031|-n3oiVaHpynVSXrusy2AZvy-JPD6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|156.2|0.69|10.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|-nH4JJGqmC0c41XBRvXRq_qQP7_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.6|0.66|12.58|['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|-nI1sb1yXoTE7urE7b_KWPI8_eF4|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.123|224.0|0.79|19.87|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Rubrene', 'Au']|['Spiro-MeOTAD', 'Rubrene']|['SnO2-c']|bulk|https://doi.org/10.1039/c8me00036k|-nJuBGvQjbgcR_QfrS61G7vDGGe6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Rubrene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||0.99|182.5|0.64|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|-nKiJEkSfO5tTLjaQnELvEaMiS1M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.63|10.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01099|-nQ_Kx0Ij8V4Y3A1JBikpAZec9hT|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.114|182.4|0.72|14.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|-nTsRndKGdJjOCbs_WdaAqVaXhg4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|0.97|27.7|0.676|1.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|-nW2A5J_bRxQ0S1cNSnrPdwF-Xna|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|149.9|0.52|6.92|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.032|-naoDRbkKcM456fwLBhlqyTrjTT1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs2I3Sn2|Cs2Sn2I3Br3|CsSnBr1.5I1.5||0.135|36.9|0.26|0.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|-nde1G1Als6hdC80fzniSIb2xi6v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr1.5I1.5. -Br25C50H258I75N92Pb50|Pb50C50N92H258I75Br25|FA0.84MA0.16PbBr0.5I1.5|1.880000200466546|0.94|176.20000000000002|0.62|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.3059|-nl9ZqglTp-nAtUWND_CVZI-CehB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|143.6|0.767|11.1|['SLG', 'Ni', 'Au', 'Cu', 'Perovskite', 'C60', 'BCP', 'Al']|['Ni', 'Au', 'Cu']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5006513|-nqVJ436XSQAOdUj5p1_dAMANGsz|a perovskite solar cell with the following device stack: ['SLG', 'Ni', 'Au', 'Cu', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.8|0.79|18.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|-ntJ2e-G0uJJ4Oml-q5FBKQbyHLe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|-ntgJObXxAtrj7JOdKz4E9cr79zN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.06|84.60000000000001|0.655|5.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|-nwut1natKeH5adj7ZCCYIvRfzV2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.5|0.77|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.12.012|-o-Xj9FVL7sIRWRyOwH_eXiNxZzT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.3|0.6629999999999999|14.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.018|-o0ZYRqiOdSzIUmhD47NmkkurPBC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.96|166.9|0.7440000000000001|11.97|['SLG', 'ITO', 'Graphne oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.048|-o28XPxJkEtvbSSWd5ttS1cRZ5Jy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphne oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.0|0.67|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06771f|-o8Woqc3bTOy8N_HkKJ_pfOZIQsm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|184.5|0.7|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07079|-oHjq_44jMyFN-oJktsHSyWExrJg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.1|0.667|12.76|['SLG', 'ITO', 'C60', 'Perovskite', 'BTF2', 'MoO3', 'Ag']|['BTF2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|-oIQhO1f0Qd_K31rHpZfpkmoZ325|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'BTF2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.39|142.20000000000002|0.52|2.88|['SLG', 'ITO', 'Graphene oxide; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS; Graphene oxide']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1109/TNANO.2016.2524689|-ojSLYgStsOJKyNh2N6x-HZxpnTf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|222.5|0.7659999999999999|16.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|-oy9xo9TFHhpcSC5KwThDoogfo1u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|172.89999999999998|0.735|13.1|['Phosphor-in-glass', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.026|-ozQooq05I8B_qsYCrQcMuI3nhEp|a perovskite solar cell with the following device stack: ['Phosphor-in-glass', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|201.0|0.7340000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|-p0EiaoevOr44RuLcX4Lbguy7RHO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.09|240.3|0.784|20.55|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|-p50yv_RZM3k9j4kNTXdWD4OFu4Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|209.8|0.72|15.18|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|-p528RLX-gYju9JzT1Z4Rj6jArD7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||216.0|0.762|16.5|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']|['Graphene oxide']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C7TA01752A|-pCjsbFRDWCpnHDPfw_Rny_h58DH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|205.8|0.38|6.05|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'CZTPA-1', 'MoO3', 'Au']|['CZTPA-1']|['SnO2-c']|bulk|https://doi.org/10.3390/nano9070935|-pZJj0uFj4aAw8njmSQneKM6hvqS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'CZTPA-1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||0.6709999999999999|100.8|0.48|3.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901352|-pbzugGPRuE1jE7UmeUZD-SlkYsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.884|195.0|0.62|10.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.044|-peW5gSTzdUvEb-mxrXlkmwc8oWP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.444|73.1|0.78|8.2|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|-ped_sMdzabR4VRgrwwbgNgpQpfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br19C200H1020I181N380Pb200|Pb200C200N380H1020I181Br19|FA0.9MA0.1PbBr0.095I0.905|1.6100001716761378|1.122|211.1|0.7609999999999999|18.01|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|-q36LbKA_H2xPP5AvC6mQtyGA3-2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|148.7|0.49|4.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|-q3M7M1xYwUutt7rj_HDYUFscOKF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||0.969|206.9|0.703|14.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|-q3TGn_KqS0Gek5DDZclhQyANI4J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|184.1|0.63|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.10.018|-qEXtP9sKYXDqdN9UlmVT3C0dodF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.31|68.60000000000001|0.33|3.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|-qFYLULvD4kBiSUuKtw-AzkLSfd3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|101.5|0.517|4.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|-qOsC7IvMO5q8rVApEzHopSiucbo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.895|159.97|0.748|10.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||-qRX-WIgGPamZNBvAl07C0uR5ymt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.3|0.536|9.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|-qVtIUVz9-Y_mLB4BhcmLvxbzlcn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|185.0|0.8|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201600285|-qbELuZcIWpDUxQGuXHCsiFGhTrE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.5|0.583|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|-qdonaAou9aTHH7y6zJWGaruZGzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.0|0.72|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2H-MoS2', 'Spiro-MeOTAD', 'Au']|['2H-MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.04.005|-qhmY6DzIrhxfTEnWNknjq9jDZ3Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2H-MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.0|173.5|0.43|7.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']|['Carbozole @ S12']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|-qteeRuxJeRQ0b9xU7VgHYPryMAq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|185.2|0.48|7.8|['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdSO']|bulk|https://doi.org/10.1117/1.JPE.8.045501|-r7-R2RflpfaYY2nHoo81W_YVabw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.06|147.0|0.736|11.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.12.011|-rVPdX8_MkrQ3vv5DHwwSzdOvgQX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|231.8|0.75|18.08|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|-r_tRLzXXc9lMSDsRkOzaOf5TqGS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.07|203.0|0.608|11.92|['SLG', 'ITO', 'NiO-np', 'PAS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PAS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.03.086|-rdutr9HgaASg24_pgunD_vqKoBm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PAS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.9|0.72|13.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.12.036|-rgCTPdssJl-Nw33QIRv926TJ2Ot|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|165.0|0.727|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|-rh110W3nx2yBSW-BdJKrEhX1G1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|128.7|0.59|6.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.5.057410|-rohcFT2oiAiMYMdcDGLWP3rG_F2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|169.0|0.695|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|-rp3FNBe5Ko7z9FagFKbMusKc6LG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|207.2|0.8029999999999999|17.17|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|-rtwXpZ_3tLEG6nGCkYEtpL32Bxv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|166.6|0.4679999999999999|7.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963841|-rvJUF-SVCWfj6B-Oel10R054nWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.9|0.79|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|-rwnjaYOurmtcvgfGTtd5VcMc5hp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.004|194.7|0.684|14.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153272|-s-SLKItqUc95HyWMgl99TY-atHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.9|0.55|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b06799|-sEFePZbE3a9pEopkdFUtvKxtHir|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.06|215.2|0.77|17.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13145|-sFKY3VSJ96f87tqWfe3sq4wCtkm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|223.5|0.69|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.240|-sL8IuPiomnpCkE_39fsrr9w06aN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.693|155.2|0.496|5.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H-PheDOT', 'Au']|['H-PheDOT']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501423|-sMBYmGsyO__YqHe-1OrLOWXrnHv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H-PheDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|-sROnsykhlRdC69JAX-OJVhtKJse|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.4|0.73|15.13|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']|['PdMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|-sSOD8NtG1aXR38qz516mkHABvGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.8|0.78|14.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.8b20924|-sVDoVBXjf0gYX7DSsrBlzURy-Th|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H513I300N152Pb100|Cs5Pb100C95N152H513I300|Cs0.05FA0.57MA0.38PbI3|1.5400001642119578|1.08|232.0|0.79|19.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b01054|-sWh2FvKwTMzC9m1IBr5EKqSFvEd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.57MA0.38PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|56.0|0.427|1.49|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02562|-sXIpVKh8DVIM5QkZWyKFphW9jMs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.07|12.0|0.285|0.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|-scfDoEjlh1kGvVN4HmKU2SiaCxk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b02478|-t1Hb0Cxx_lp4a69xsdccQShYEQw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|204.4|0.632|13.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|-t1U0_8Ups9aUv5G504D5egNP7cL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|186.0|0.72|12.7|['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']|['Polythiophene']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-015-0755-5|-t3DP4eOLt9c31bnzbHe3vXF2vxG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.926|141.0|0.53|6.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|-t69NaNHr7dpgyY3uQ0ckI9ockYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|203.0|0.7829999999999999|18.0|['SLG', 'ITO', 'MoOx', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoOx', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900734|-tDFP85kQNHNIN3TwxwZR6YSF9Nw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.4|0.7859999999999999|17.11|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18867|-tGNsq5fwH9Gyi27cRw4HyF-oxwy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.1|0.74|13.49|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2018.10.009|-tQKbm7Ri4dgUKTLp7Dmypz2Kunf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|155.0|0.62|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|-tX7NoblHPDUUatJDSvHqLEcNViQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.116|226.7|0.7909999999999999|19.68|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['P3CT-N']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta06439g|-td-a_-G9w95pxijp8E_Gd5Ws0Sp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|230.5|0.75|17.36|['SLG', 'FTO', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nanosheets']|bulk|https://doi.org/10.1002/solr.201700117|-tdymthoiERoBPJDAyJTfC4y366w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|189.75|0.64|11.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|-tfS2v0_V1JDRtwz0ohNafjykpRN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|155.0|0.7|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aafea9|-tgQpe-AStXvXEP_J-VQ4FnfPkf8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.97|228.0|0.785|17.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|-thTd8pow1c874-ROWtbDODyH4ir|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|225.2|0.7490000000000001|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|-tly0_Vyal3fGcjskq6abYochS51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Ba3C100H600I300N100Pb97|Ba3Pb97C100N100H600I300|MABa0.03Pb0.97I3||0.99|204.0|0.696|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|-tpSNimQFdgOkm8mMqXUuy28gnnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.03Pb0.97I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|176.0|0.69|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b00447|-u26Z7HJ2D6O6kAPDixDykPeODGC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||0.03|3.0|0.142|0.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|-u3dKMaTG5qDkP6yrnrG7uRmWc7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (DMA)PbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|-uAADvdg7lI2WzDYYmuh0S0Sm4rH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.54|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|-uHB9BgKklPIdZ2VOwpaL8O9Kc4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|194.9|0.6|10.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-TPA', 'Au']|['OMeTPA-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|-uIzAx6BncIBUZ2wUC5f3DZeg6FY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|137.0|0.67|10.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|-uLe6BEooYbeYAt3cIC7WdgEQy2f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7190000000000001|81.1|0.588|3.43|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|-uMtsEciHuv5Cq4C8Xu251jShF9a|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.072|228.0|0.7709999999999999|18.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Cu']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|-uPwf_2PK8dk2ZL_qXCj4i9gmVbk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.3|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Hex', 'Au']|['Azu-Hex']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|-uUFfYGfrN2zkTwA_kVKXDKpzvXh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Hex', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|205.3|0.74|17.05|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']|['NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsaem.9b01200|-uZfQF17qa8W8CObu_8EtA2I7hER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|185.0|0.58|10.96|['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|-ubg5mDU9yrqU63gnqNOIKbRznTC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.8440000000000001|162.5|0.5660000000000001|3.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|-uzb4XhOrk3hSOFqqSJT-gqWTdup|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.07|210.9|0.68|15.31|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|-vBMB3xOljG-RCu3nWQljjTCLcQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|205.3|0.679|14.42|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TAPC']|['PCBM-60', 'BCB']|bulk|https://doi.org/10.1039/c8ta10630d|-vH0h9cjJCf6UBnUAbAX3XhZinP1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.11|124.0|0.53|7.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.10.003|-vPhmtr9NXsJ46qoItjzhPy_wH2x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.48|209.0|0.588|5.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|-vQ8FJBYW9RslUi7f_A3c71R0-Xs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.12|215.1|0.7929999999999999|19.03|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|-vRlD2u7Sjufr79AeKqasnodZ2rh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|193.0|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|-vdumA9ThslfzK3p4C3T4ioe1OhL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|133.6|0.6|7.99|['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS; PEI', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|-vigSqjaoqUOp12_f4lJxdhmnLlJ|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|212.0|0.747|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|-voA-hWBjSRd0C8fgQdyz9c8upM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|||12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504320h|-vrbXJm1j_3QtBe4PLltIC2Jbrr9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|186.44|0.3939999999999999|7.44|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|-vv9niqZlkIOiadeQCya0B1xOvPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|0.98|118.9|0.59|6.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|-w2wF1NCQH7M-ak3smSbPj5Q1601|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -BiCH6I3N|CBiNH6I3|MABiI3||0.53|5.699999999999999|0.3|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02843|-w7O_dHpUNcI-adrO446C1gdqAFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABiI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|187.0|0.63|11.1|['SLG', 'ITO', 'PFN-OX', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-OX']|bulk|https://doi.org/10.1039/c5ta04695e|-w9NZcoyU2BMNlQD9v_BNSz3aoe6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-OX', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.0|0.7|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.1243982|-wBAR8L9AmygZP0_t-5DByaLtH2t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|||||19.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-019-0400-8|-wT2auHMcJ4oXorDr5S2SfLZ1Mwc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|238.2|0.72|17.0|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|-wWK7iYyjfKyjEPPHPw_iyV9V48Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.0|0.63|12.69|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|-wZkVGwWezA2A7QPz2bZsBwOV2SY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.94|126.1|0.55|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|-wgpGstCycT09ozLRcd0qUXJtUqw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|84.0|0.37|2.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|-whggoWrKdnqKCcNnPHUuaQvw1Wd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.103|225.5|0.782|19.02|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201704836|-wkAzAKzP3mBCJHynhj_abRf2Fac|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|176.0|0.693|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2015.06.046|-wl9eg6IwGwbS5XRC_atxzQc8E4J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|212.7|0.765|17.67|['SLG', 'ITO', 'NiO-c', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|-wownVvzaw36eScUBcQapV0N0AEX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|199.4|0.68|14.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aaa054|-x2earoeHUXPYqK8sw6QsXQlHYVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|220.0|0.58|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07369g|-xGy1ym7JKQOaUnGMZmT7zbVVB57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.17|146.9|0.732|12.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.scib.2019.05.015|-xHUScuPymnab0Aq8Js2hpC7Vyym|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|238.1|0.748|19.06|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|-xMfUMj-8nuGsP9NTGWmOubgqi6-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.68|236.0|0.69|11.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['bis-C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00847|-xT4Gv7Q9DHPUnNrPBYJCgEQZdI0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.3|0.69|15.52|['SLG', 'ITO', 'NiPcS4', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['NiPcS4', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|-xTNP8bxhCoqOo0rHyOw31RzSzcZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPcS4', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|139.60000000000002|0.61|8.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr06217a|-xW7dks_LI43Vuj9GK8uD7Iv5l9S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|176.0|0.7|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00691|-xkEW_HhpzexJ58KvQT-1cH0G4YY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.6|0.65|14.0|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|-xsiKp3IkQNsPwSk6kVTj4q3xzO7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3|||||12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|-xslN87gS4Wik6mf8lGALqzi33Fu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.9|226.0||14.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|-xzt92N0vVCPp52qvaBJKyBBXATW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|188.61|0.74|14.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|-y7ndbNnPSjQsuABLttM2Zag1m-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']|['pBBTa‐BDT2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|-yA9oKrqIljDLlJ6iPTrnI-82NJU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.7559999999999999|18.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|-yDK08vISgQhl2JybFSmfWP6zYLO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.34|54.0|0.51|1.0|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/C4TA05819D|-yF3U78To2X85vkHkjjKNZP9yhur|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.53|66.9|0.8009999999999999|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|-yJAQIEkKujkKAd3P7x19HTN0Qmz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.07|215.1|0.72|16.64|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aaa054|-yJgnYmr05bWR0pGaf9GEa392pcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|110.7|0.455|4.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|-yPzPXpfTvc77wKcvZI8RsMVFbOp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|127.3|0.275|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|-yT-9F91AbPbDRWS206f78i7WiLS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|194.7|0.69|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanoflowers']|bulk|https://doi.org/10.1039/c7ta02822a|-yV8ZMiosIDHNJn_IeEw9WIcre5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.003|32.400000000000006|0.81|0.01|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|-yf0Xed2mTMJ1tgVTUmLvmSW5wMe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|178.9|0.54|8.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1002/cphc.201601245|-yg-ANX4cJq9L6jRSEdmE1IEC-rf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|216.0|0.68|14.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|-yjFUfHaTwgP6X04Haiu4BEWSuew|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|238.0|0.73|16.5|['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.027|-ylIgdHYvFnvxQzt2RD6Cd9C7N0L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.92|230.7|0.64|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|-yla6th1MkaK8xY2msXCxFGmJsLZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.1|62.7|0.7340000000000001|5.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20376|-ynOWd1qaZ1aQv_1KgK21rzsyqo7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|170.0|0.723|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b03902|-yurdf_vTK1H8uh_p4rQYPqxCN2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|2.400000255914739|0.95|66.39999999999999|0.36|2.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|-z4gy09u0oGzsVo1OR3d4ggUlk_A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br2C6CuH6IN|CuC6NH6IBr2|(C6H4NH2)CuBr2I|1.6500001759413832|0.37|57.0|0.36|0.63|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'ZnO-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201901185|-z6kf1uCmU9_ZPXU46qTmGAEnWvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (C6H4NH2)CuBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.915|170.5|0.72|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|-z8XONKwqXar8erYUAqt4ngCj-WC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|-zBEkedx2FzLj4aM2zjfoxss1s9j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.0|0.65|13.33|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|-zD6dMdXQxZLqqCoRMaWlx275wRm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.9|0.77|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b19330|-zKtRdhvcSrndBmRTGqnGxsGqM9N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6200001727424491|1.096|209.4|0.7659999999999999|17.6|['Willow glass', 'IZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|-zcqg3g0xPKpRbFBirh6sOgMtMur|a perovskite solar cell with the following device stack: ['Willow glass', 'IZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09174a|-zn14PptK-tgxxcCX7mThxXor9pC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C48H194I75N27Sn25|Sn25C48N27H194I75|EA0.92FA0.08SnI3||0.51|237.5|0.7|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1016/j.nanoen.2019.04.040|-zn7SvEuou37iMSnjV857E1RoDIe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is EA0.92FA0.08SnI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.25|60.7|0.51|3.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|-znF9bjzOVfmZOfs1S3DNF3XGeUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.22|154.0|0.805|14.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000001|-ztO_vHNYf_9uMsF5z3sekBzhysh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|141.2|0.785|9.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|-ztaXSeP6HsmaLiTMMORK1j4EZxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|216.1|0.63|12.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|-zuOZRFyYN8GS9yG2moPt04sYHhA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|149.0|0.61|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|0-2ut6BOzXw5HPcX19TVQLgsZJxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.6|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|0-SskJ5z9jlRoGnAouJHJyQBXdDT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|186.0|0.679|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F-graphene; P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra03466g|0-Y-2Taf3WUx0t44iGtIMm1QWPQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F-graphene; P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H15I12N6Sn|SnC3N6H15I12|FA0.75Sn0.25I3|1.400000149283598|0.58|198.0|0.466|5.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b08859|0-uele7GYgNrI-LAht_lIvpY6FB4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.4|0.674|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|0-x6R_zAoJ2OadfwG7qnKaVj48vt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|238.3|0.747|18.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|002r28KXshEUUetKmBGmJ_K_TwYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.2|0.63|12.08|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/adom.201801409|00EW3-3_NR5PTxu4RSKfcAjC_xXJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.732|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|00LYJ8O0RhiPb95dYm6jJ-waIU6I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|11.7|0.483|0.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01198a|00NIYKZepRJLQfDeUp0K0uZe-Ta7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|213.0|0.746|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|00gNg4IV3E8ZFtc1uPzriya2OBeW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.307|72.9|0.7140000000000001|6.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|00lwVQiBkTPF-T5LECx-ZZAQAyrf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.3|0.72|13.0|['SLG', 'FTO', 'TiO2-c', 'D35', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'D35']|bulk|https://doi.org/10.1021/acsaem.8b01221|00rygWaqCp9tVQPDMV5FDYGi1_rt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'D35', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5500001652782691|0.7|207.5|0.53|7.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12939|00sh8SgBFThM0qwZ07-JtY8UBqHB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.13|224.0|0.8|20.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|00tdpaKlemzx9fvgV_Vq1OjddZhx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|187.0|0.77|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|00ztThaBZHDZ5IEXwwQ-PMSDkYX-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|235.6|0.521|11.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|01-cQfCelOB5-QbroIvGTNzwxb8Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|206.5|0.733|14.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2018.10.025|01EK3HnsAFpuerINwczy59D8FExU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|187.4|0.79|14.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.02.026|01LsZgWwXGOC2fjQyB8cHZugUhA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.0|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|01Oqd5t3P9mMXTT-05pkiRRZdX4o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|229.7|0.7509999999999999|18.74|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|01QkARaCjrZk-FioDt1N-5t1PPCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|204.0|0.687|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|01SyIjiwWBmG_5Kr8cxT5wkhnMdc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|207.9|0.655|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1021/acsami.7b15195|01ZF-LbpU55nmHM0t2nFZYcq16ES|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|207.1|0.7659999999999999|16.3|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|01m0H1HmiRZ7Pe2i8dg1CNyl5Uz5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|185.8|0.51|9.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H65', 'Au']|['H65']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.019|01nrEtiKao9a6hBnIVgbQfpI-OVN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H65', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.7|0.7090000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.09.138|01nw4xIh6wznS-PpOCPcEVn-ljqx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.98|198.0|0.54|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793292019500772|01oSROwySZh-RYPg7XAtbyePzhri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0800002217927744|0.85|105.6|0.62|5.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']|['NiO-c']|['none']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.048|01p_vC4wDPAWbO029BnAZZIipt2z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5860001691169905|1.06|221.2|0.7959999999999999|18.67|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Cu']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|01rDbY2EWzpozUiFumUP3r4Om1wf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|100.0|0.66|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19702g|027EXGF4MQioyYftLrfugOqbMTmX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.68|13.7|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|02P6OQsB3Xgc4Z6vy36YE3eTS8rt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|104.0|0.63|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.043|02WYLtsykOe3mS2S5HanexuZh3EM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3|1.6300001738087604|1.12|242.3|0.805|21.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|02iYwtldxX8W5r6Oho3c6ypsXeSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|101.5|0.517|4.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|02xooCuXcEbWH9RwSoRmLaYHel9z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.983|183.7|0.7909999999999999|14.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|03-eg10SB04PV1VJg0gdh8ReNiHF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|196.9|0.662|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2020.137786|039TPWQSKB_FsvpUO9IDYa9naYBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Cs20I60Pb17|Cs20Pb17I60|CsPb0.85I3|1.930000205798103|0.769|136.0|0.65|6.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|03FACy9Lx1u9ZnxehPdHYtsT5gqM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.85I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.solener.2019.06.040|03_DS1UNdMbE90BDTNws7W-C5SWz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.7|0.639|13.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|03eqNKNkW61_35GW_97ONBtLrnUT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|124.0|0.698|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|03fHvc92wWdjlZedWKovAId1MAns|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|154.4|0.444|5.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|03fuYd-RGxCw03LHAp69hXl7JIyD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|111.0|0.74|6.4|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2014.12.002|03jsSCEcLIhU_lEmlm9WwFukVHpF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.0|0.685|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']|['TB4-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|03ki1ikg1xd_6AltwQ7D9mAo4zhn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.201|0.19|0.318|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|03mjjt9N0ToWpT2Lvdjr7KyvMwWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.1|0.715|16.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|03sLhP0C5tYy6Vkoucbf6LUWiHXz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|55.0|0.6779999999999999|3.3|['SLG', 'ITO', '3EGO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['3EGO-PPV']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|03yl6j8IEfOaQRiSM7NnNuHicWz9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3EGO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -Br51C100H516I249N184Pb100|Pb100C100N184H516I249Br51|FA0.84MA0.16PbBr0.51I2.49|1.640000174875072|1.15|222.0|0.68|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|04LwjY8xjgXEkT_kKuwA878571Q1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|126.6|0.68|7.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|04g9UzsL5jI6Ux8D4mVh0QyrW3gM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|173.2|0.48|8.28|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|04qwEOgDIoRLDD8XSwFsDWykK94x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.0|0.75|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|04v0ZQPAGL1XEMurqwo32KHivwt8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|144.3|0.395|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BChl-3', 'Ag']|['BChl-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.08.051|04wCgAqlWWPmax4nIkl0oI0m815X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BChl-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Sn4|Sn4C11N5H42I13|BA2MA3Sn4I13|1.500000159946712|0.2289999999999999|241.0|0.457|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00202|055j_jqyv2C8701RwQomtR2wH1ts|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is BA2MA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|201.9|0.737|15.21|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|05OCt9uwnyI6QtWKVa9sq9KGCUU5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C25H150I73N25Pb25|Pb25C25N25H150I73Br2|MAPbBr0.08I2.92|1.6000001706098266|0.742|162.0|0.5820000000000001|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en9050376|05_j41ttqix2EJr_uhonOhXI7Tlh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.08I2.92. -Br5C8Cs2H40I5N16Pb10|Cs2Pb10C8N16H40I5Br5|Cs0.2FA0.8PbBr0.5I0.5|1.850000197267612|1.3|155.0|0.8|16.0||['MeO-2PACz']|['PEAI', 'PCBM-60', 'AZO-np', 'SnO2']|not processed|https://doi.org/10.1038/s41586-022-04455-0|05iNHmHXMBBXQoPcVUp7CItmOFLA|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.5I0.5. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|159.8|0.544|8.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|05ifQk1XRD2y0GAcMaSFDXXxXCn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.13|213.0|0.79|19.2|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Cu']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|05l7p86SGYV4D0EFQzBTbjWMpYpR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|106.1|0.5720000000000001|5.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:OO', 'Au']|['P:OO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp04162h|05o749lebF1T-tIb_YTW6Cx2ByA4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:OO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.9|0.78|16.98|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-np']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800004|05rp2yv6hgKPqsgfTEXz5Mc_CSlb|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.14|231.7|0.732|19.33|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900182|05sU0M-FJuOu9ZlJIv1u9qQp3Whv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|231.7|0.767|19.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700492|05wZJ3YdAYXTYDOrc5M326HXTz8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.079|194.7|0.6890000000000001|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|06AsUwVD3oEiGFbSod47XjacpQDF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -C47Cs3H235I150N94Pb50|Cs3Pb50C47N94H235I150|Cs0.06FA0.94PbI3||1.03|212.3|0.75|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'ITO']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903897|06ECxqpPxUvUDudMWvYkmPQDDxYL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'ITO']? The composition of the perovskite layer is Cs0.06FA0.94PbI3. -Bi2I9Na3|Na3Bi2I9|Na3Bi2I9|2.300000245251625|0.36|4.0|0.419|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|06FpKU_z5qYpEbQ0Vhfq3qmD_oX8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Na3Bi2I9. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.04|211.2|0.68|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEA2PBI4', 'Carbon']|['PEA2PBI4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09433k|06Itf81r6jGrYryVwaaAAQAwhOJr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEA2PBI4', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.126|242.3|0.804|21.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|06ck8eyuHWHEjZrKOEMxGM57LB52|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.05|192.2|0.7390000000000001|14.91|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.072|06jkar-QVTO55pHvhL8VQ5klqaIS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|227.2|0.597|13.7|['Quartz', 'Graphene', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1002/adma.201706975|06laV1bg-58Koqp8s9GiKZNxTaGl|a perovskite solar cell with the following device stack: ['Quartz', 'Graphene', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|223.0|0.748|18.75|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|06makbW_q1_I0IKz6BacrD5Qe8W5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.9|0.72|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.007|06uUBNhBSviEKYZDQQXltQzpss2W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|139.8|0.39|3.51|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|07XeWtGRXSB8LgehZHBTqL64Etc1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.0|['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta00398c|07dEwAMpYotq9YUkS8MBi6Si62vW|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.4|0.8079999999999999|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|07gzdEY3q2aFnUQddjKsxxI_hQXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.1|218.7|0.63|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06436a|07hKhPpE1Oqrhtbdk97HCjJhBKOs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|227.7|0.733|17.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7EE03654J|07kfY5PtPAOXr9br80YFSJ-Y04Jx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|172.0|0.64|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201601309|07n2bpgkeYf9DABljdz8aH-brlzU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.7|0.632|10.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.12.047|07pouvj5rs9L5wPAz8s_P_LSvfiu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.500000159946712|1.13|232.0|0.75|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|07s0l2PWmw0VmCFIl-Aa55eDg0bM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.276|142.20000000000002|0.73|13.21|['SLG', 'FTO', 'Mg0.1Zn0.9O-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['Mg0.1Zn0.9O-np']|bulk|https://doi.org/10.1002/aenm.201902708|07vqqzk6JbxJmuI5sEs8_gyjOuqT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Mg0.1Zn0.9O-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.690000180206629|0.98|165.6|0.62|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15684|07xWwIXwtSzsw5lHeuaziOMbT_uk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|212.2|0.746|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06879k|087Cwq3xin3EqASnYewRHsmqzzVT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.15|123.0|0.6890000000000001|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|087cikIcEOo5VE-vI1vYva_nZhbg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.99|234.1|0.688|15.93|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201800399|08H95NnuZIU0pVdv6AyAgKbeeXiS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|130.0|0.784|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra16669a|08JP4Dbjm4TGb4ogvfG1mQYdDkeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs4H489I257N176Pb100|Cs4Pb100C95N176H489I257Br43|Cs0.04FA0.81MA0.14PbBr0.43I2.57||1.05|210.6|0.69|15.34|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acssuschemeng.8b04281|08ZplILscrHQudwgNiX0m5K06xME|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.81MA0.14PbBr0.43I2.57. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.067|225.7|0.696|16.76|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|08_Ac1z0Lh5ai43_tfAZ4OAranAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.3|0.68|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-04690-w|08fbmRpFsjh-heKUu8j8I_W32tv4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|0.79|16.8|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ta05004f|08htpryP4x6VVAIj0HgEknVyU6c5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.6|0.716|13.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b01038|090z7vwSKrebRP6x0NknMPIl1LNv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|192.1|0.456|7.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|0939xBSDb5vFfLiT2hp7MnQtKQP1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|144.8|0.7829999999999999|8.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|093JrLNNVhMmbZ6gwKPgJloLWl0x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|213.8|0.73|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|09KjP7wkF94olnUG5Fx5ZagMxsno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.105|179.0|0.67|16.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900191|09LQHus4Kj8NsDxPgnaBl-ZLMuxX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|152.6|0.657|9.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02193c|09byGd2AYvcfewXjqDdHoeDPMKHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.054|213.2|0.695|14.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|09eAwj7RXQa24U755KfzocpxDMA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|228.4|0.754|18.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|09efSybMlJVS2bfB8gi9GFsmEQ6X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|238.2|0.39|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|09mUy5ws_aVzZFtNMuRbUwrg-MCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H89I48N30Pb20|Cs3Pb20C17N30H89I48Br12|Cs0.15FA0.65MA0.20PbBr0.6I2.4|1.6800001791403176|1.137|196.0|0.768|17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2-c', 'ZTO', 'IZO']|['PTAA']|['C60', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1016/j.joule.2019.04.012|09r4CFQmABBjVC0W_sSVcDr-uyAh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2-c', 'ZTO', 'IZO']? The composition of the perovskite layer is Cs0.15FA0.65MA0.20PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|180.10000000000002|0.63|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|09r51B-KrlKmFs-WF7FoUTm_nJU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.08|230.0|0.7|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201606545|09rgPh41F2AfT7yfNXNfm-0mmjiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|187.0|0.73|11.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|09uZVBE1RroUQvtC6PlkvIZIAZ9d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br369C950Cs50H4873I2631N1777Pb1000|Cs50Pb1000C950N1777H4873I2631Br369|Cs0.05FA0.827MA0.123PbBr0.369I2.631||1.152|234.0|0.7829999999999999|21.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', '1‐adamantylamine hydrochloride', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201803587|0A15YZcPzyTdq3fw7tHJxhTe_E7z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', '1‐adamantylamine hydrochloride', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.827MA0.123PbBr0.369I2.631. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|182.2|0.71|12.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|0A7Y5VfrQuTT_iAcemgUknFJLTjt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C96H483I291N189Pb100|Pb100C96N189H483I291Br9|FA0.93MA0.03PbBr0.09I2.91|1.5500001652782691|1.1|251.7|0.7140000000000001|19.72|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/NENERGY.2016.177|0A88Qzt3wcxLa1J_xLRgeiqyKbf-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|113.0|0.72|5.0|['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanospheres']|bulk|https://doi.org/10.5229/JECST.2018.9.2.118|0A8Be6ZfB-aD2J-i1dQSZLSN15XG|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|118.0|0.73|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500209g|0AIDIp0WjSndaUmyrJoX0n-nI6ww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|166.0|0.5429999999999999|8.81|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|0AImQk57f_ttEICxb2oz19YokgsC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.4|0.71|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.024|0AJtAnEVydz1-uq_AeVBFbdyJc9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.5|0.732|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'SLG', 'ITO']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|0AOW9BFm7iqORzp0Agn15t-Qx6tA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'SLG', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.7|0.705|12.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|0AlALPF87jkoVnMHaVfwlgcIHKLz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|182.0|0.6759999999999999|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta03169a|0AmijZArXyfNxBaEpa1wq3t--HbF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.85|180.3|0.71|10.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|0AxVZxzBKBVwqU17yGv06MlVSCOX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.66|12.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605693|0Ay_mf9ux9i9MAHspiTIrBmzACKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|190.0|0.69|12.65|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|0B627Ja83oYfptTXzpBB4jFWI_u3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||16.33|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|0B8Bub8IwgzTy1rvUx65iQfwcxjJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.12|139.9|0.672|10.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00258|0B9ok-vU49kd0fNIT-oHvox9OtzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|207.4|0.74|15.81|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-019-51273-y|0BCZkjkOPa1b6yO58h5xbrpjc5-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.6|0.53|9.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|0BFfplNVysGqL3TKeEw_voo1Fel5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|124.0|0.741|7.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|0BL74mbykjSbbCejPYmSrqXndLfW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|132.79999999999998|0.67|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|0BLV_bnHuOKmzo-GAubV5pT946P7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|188.7|0.6659999999999999|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b03324|0BOJCDVRclHcKf3LGMKllpnIB2U7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|174.60000000000002|0.578|9.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|0BVJBxkiqiMQ4NnWmr3Chk_12g6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|124.0|0.5|5.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'MeO-DATPA', 'Ag']|['Al2O3-mp', 'MeO-DATPA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cp04685d|0BVfM1gnxMJObdMREZuR1KTcyGnk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'MeO-DATPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|146.0|0.56|5.9|['SLG', 'FTO', 'Graphene oxide; TiO2-np', 'Perovskite', 'Au']|['none']|['Graphene oxide; TiO2-np']|bulk|https://doi.org/10.1155/2016/8947597|0BWwfEG0b-xBNV1bgTWTQIqPu8uM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene oxide; TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.093|175.0|0.74|14.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|0BbxyIerf9sBpklkk6LGGCTQNTi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.941|228.9|0.614|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|0BrRJaThXlDe89s1hhq8AItG_rcV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.0|0.7|14.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|0BxiqQdDTGHAsebl5Xm7g_otEIEE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|169.0|0.41|4.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|0BypvFOtMTc3TNVTmnHKaDYbUSAz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|148.6|0.75|9.92|['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201701586|0C-1PHl_ra6BZLDqnGZlqRgmOoNl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|233.9|0.67|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|0C-SyntFu4JrU86jk1JEc4-gWffm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C16Cs9H24I34N2Pb10|Cs9Pb10C16N2H24I34|(PEA)2Cs9Pb10I34|1.7300001844718749|1.1|139.5|0.58|8.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|0C-by7nQmDJfo3rDLPLPo1XZ3jWV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs9Pb10I34. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.0|0.7390000000000001|18.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800324|0CAzEQQR55qAElDxT1xy8o4VJp67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H513I261N187Pb100|Pb100C100N187H513I261Br51|FA0.87MA0.13PbBr0.51I2.61||0.98|204.7|0.787|16.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|0CF7Ug1mOFx3tIyI92VzbkdcHtQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.9|0.754|16.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']|['NiO-c']|['PCBM-60', 'AgAl-np', 'Au-np', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|0CPoOi3Sdl-_ElhQhFm3bLzIFXyH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.4|0.72|15.33|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804286|0CRQdg41gczRo0i8Hg2ZlZyeavGd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.9|0.75|16.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|0CtxGbTrQjuWxcy4txdjGBX4Zpoh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|236.4|0.236|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904856|0CwEBandAa-PTlznk7jV7fEbOGKZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|222.0|0.574|11.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Zn-ChL', 'Ag']|['Zn-Chl']|['SnO2-np']|bulk|https://doi.org/10.1039/c9qm00377k|0DBKndnCsHR3sxr4id-TaboyTJc4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Zn-ChL', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|143.2|0.573|7.72|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|0DBRNTD7rCpUs62-Om-UihUZjYnh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|176.0|0.711|13.63|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018807|0DEVz5spJsNwT2tEwkyttLMb9kCE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.1|78.4|0.595|5.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.049|0DMAoUZNYyKufwqKp4F4h2O4FMC2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.05|201.5|0.64|13.54|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|0DMYgvR36flLsRShB8pgMZKzgGFq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|120.1|0.74|7.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.11.011|0DN-PWndyuPXjgly4cT_HZdzHR51|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.59|288.0|0.6459999999999999|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|0DOTTTyR4JmRUwzZHN1_fQlDh4kE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.11|231.4|0.741|19.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|0DWbxYrMWJpz1choBpaWusr0HMPF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|126.0|0.48|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cp04360c|0DbqasDoaHmKkdsToW-AE94vRpwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|225.0|0.7190000000000001|17.53|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201805810|0DmH8mQmPwN8Ituo5wGsaromIlW3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|1.05|224.2|0.69|16.34|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|0DqY59j8wChBY1rslrvWy4hB38aN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|187.6|0.693|12.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b03525|0E90ay67YKyJQIq4fMRcrFzsWiDO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|213.0|0.6970000000000001|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801773|0EB5sIUMX22xIVTEk6PB9Y0EKE2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.22|7.1|0.3989999999999999|0.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.7b02314|0EBxQdUO6Edt-T-kCrih-6nnNNvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|181.7|0.5329999999999999|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp00073d|0EEEUH3N_TroZH7r___vQltnvSEq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.4|0.61|11.82|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|0EM_CabDByB4IxNAmY_-3Qn66VQ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|0EVXzh2fo7SZviA8o3tP6fTWTG2L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|191.0|0.67|12.0|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|0EVj5j-x6UEQ90uW_slQOAMqe9qo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.57|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|0EZPB0RWcF3SRCIYRK_Wd_frrW6h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|198.0|0.6629999999999999|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/ja411509g|0EgaJVIDa-sjv7K4B1VtBGk2MUxK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|196.0|0.44|7.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201706317|0Ej87x5hw9MrdmJTFcPrqnZo5kM8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.06|233.6|0.667|16.51|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NO2-PEAI', 'Spiro-MeOTAD', 'Au']|['NO2-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|0ErXGafpHCPsshY5uMCQmn6kFVRh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NO2-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|190.4|0.665|11.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|0F07Zm5ayBLQz1HYXPM7NKjaze0Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|226.4|0.49|9.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aaa230|0F3kr331C1dB4OqFQ-6MMEQgCOyQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00413j|0F4FjbgHbOztgH9ULfsHgFeNpo8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.8|0.72|16.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|0F6fxaybfl_2Nb360D4ZwV98w56V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.836|207.9|0.53|8.2|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|0F7EyvUJOb-_Zo2mVDiaqqUyKJuy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.265|140.98000000000002|0.76|13.0|['SLG', 'FTO', 'Mg0.15Zn0.85O-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['Mg0.15Zn0.85O-np']|bulk|https://doi.org/10.1002/aenm.201902708|0FBe4ne2vHej2PjRH7YxvhceVG2b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Mg0.15Zn0.85O-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0659999999999998|203.4|0.713|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTP-1', 'Au']|['BTP-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801734|0FOre48fD6E2xO2MAgQL9KKnosEI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTP-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.096|218.1|0.705|16.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|0FQQ53mbzFEYp44WN6y9bDeUBK_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|194.0|0.55|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|0FRoQpgS1ysncXiQYep0LbOYvyfU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.15|233.0|0.74|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|0FW30NUTEeJOOyr4lPKXs-CbCl_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|212.3|0.61|11.27|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|0FejnS_gVjwsm00OxDwpKq61Oqie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|220.5|0.8109999999999999|19.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|0Fkna03gB6h8PxDEn3YL1U00OW5t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH97I50N36Pb20|CsPb20C19N36H97I50Br10|Cs0.05FA0.85MA0.1PbBr0.5I2.5||1.03|196.0|0.672|13.6|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'BCP', 'Cu']|['NiO-c', 'PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00135|0FlSdu1Zui0Ep0fg_iMjKP39GG0Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.3|0.7|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|0FtKtZPOQjYQCPhDhLQHb2dESBKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.07|229.7|0.74|18.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|0Fyby7dYY2hoxWOwA1Us7DmJwNeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|260.0|0.784|22.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|0GC1700VhYHvhqha0H8xaeiXxKlA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|153.8|0.789|14.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01859|0GDfrwqBgs5kDM_j9co0Ig6CmNj1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|124.2|0.601|6.87|['PET', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'TFSA-Graphene', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|0GEKGB1ESCS4cMetvARQ5i4ztumW|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'TFSA-Graphene', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.6579999999999999|14.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.029|0GFb3o6j5rs7IpfBsL1gy903OMze|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.71|3.56|0.282|0.071|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|0GKco_vZ0Cy-GVnqq0GX-SMeUHiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|207.3|0.7509999999999999|15.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|0GVn68I9_jYLkSlxKLOP1Atruxh0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.86|182.1|0.75|11.74|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|0GiPrwHHzdLIdNV0Wr_OOiIzxgs7|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.04|171.29999999999998|0.67|11.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|0GnJ40cJOg3S6j5K4wYilvjfAp7C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.46|47.1|0.442|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|0Gw0LB6Bca_Gl3q_1zyJ4MWsjeQ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.4|0.62|12.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|0H009bmAIWMqXFGCfv5iSU6s4g0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.0|0.71|17.2|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['CuSCN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201701818|0HC7jM4Pytr-trEWU5UZ5XouMUMT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPb1.0Br0.15I2.85|1.570000167410892|1.01|204.0|0.66|13.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|0HJKFPaw18chb1EgynhtIXZbvCm7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.15I2.85. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.61|35.5|0.5579999999999999|1.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/adom.201801368|0HNmdxhS4K0tOtkrvy8kIuqCRsw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs3Sb2I9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.640000174875072|1.02|191.0|0.736|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|0HOrRhvKn3bU4ivUSdWKequroazk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC', 'Au']|['TSHBC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|0H_DUA85bfF0ukpxD6IlRC_A3f2P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.83|88.0|0.502|3.6|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|0Hab_WcabqCeI1L6mIkkGuyYbTfj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|183.0|0.684|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201601309|0Hhvk51fGjCs-8XLL179jfmQ6JFU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6200001727424491|1.03|217.0|0.67|15.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201905190|0HlF1oEpma8PMfEs_FeVXoFvT6Kb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||0.72|229.0|0.47|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|0Hq-aJ5ARsNq0wYz-Xj9shrV1_qU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|185.0|0.5489999999999999|8.64|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1007/s10854-016-5492-3|0HuLRAniZYIJnJXcQUkZCTUgPz3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|202.0|0.69|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TAE1', 'Au']|['TAE1']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ee00528e|0HxYDLX9l_mv1rjTkJYAPGIiI0yO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TAE1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|31.8|0.49|1.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1990793118040334|0Hxu4JaIrcypwgQ6nSyWxjlLbyGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|192.0|0.619|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.05.027|0IGNAI2YZkTWwxjKSI2-fLSth4ci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|207.5|0.507|10.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4956436|0IJQ_JtN82E5M6Cn7YGCYJVdu8T3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.11|247.0|0.75|20.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|0IWnk7ws-6T9kO-OY5i1t61FIRGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.84|1.7999999999999998|0.35|0.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201701470|0IYGbUvyafzTPicp1NwJnSLC87zu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|152.0|0.67|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|0IdPMH5UADQS7KklSjkDQyiyrFY_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.652|4.0200000000000005|0.628|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC05|0IpIK-dd50CJeS2rmOCL0fTDTU3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|220.6|0.54|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06687e|0IwRdYMT2vB1DuPHkm6u9y8KiEEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|177.89999999999998|0.66|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|0J9KXm3TXOXoLfzhx1IfkPXAAMks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.143|105.3|0.52|6.26|['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']|['none']|['TiO2-np', 'CsBr']|bulk|https://doi.org/10.1021/acsaem.9b00944|0JImmg-0vP8PJLf-7uFYnmrwnPi6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br2C19CsH97I58N36Pb20|CsPb20C19N36H97I58Br2|Cs0.05FA0.85MA0.1PbBr0.1I2.9||0.021|249.0|0.79|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TFDIB', 'Spiro-MeOTAD', 'Au']|['TFDIB', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b13701|0JKaML3oWYwXYC4HFKnihmwag8o-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TFDIB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.11|233.9|0.7559999999999999|19.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|0JO0rMAZ4xzeWre0oCeO4PeKCSwW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.7|0.54|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b06799|0JQN3-SIoyl0WHZyRYn77clYgCVl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|159.3|0.741|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc02534f|0J_A01dwrjuS0swqdu4CHqyVdLKL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.13|224.5|0.74|18.59|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201700678|0JaQlcYKf4St3CB7l9SU4ifn5_yX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.879|141.0|0.72|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04904k|0JnjqSn7L-Wddn8Bg1QSaiGvu8xR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|230.3|0.754|18.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b01063|0Jq2Pgpuv8RJvHbNsY6sKsU82SXl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.05|206.9|0.7|15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|0K0FmDANntSJSUsGIbA2Tdrrg1LT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.025|229.0|0.7759999999999999|18.21|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5048424|0K4iszZqLPnL_fxpTZx5hRSkQf_g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|131.7|0.618|8.44|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|0K6MbAUoqc7DPf0kuD8KtaiBMBVa|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|144.3|0.4|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153076|0K8SV-isJnRq5eUeaoHPKSN4-R2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|125.4|0.72|8.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.21272/jnep.8(4(1)).04004|0KB8VvyrzkOFSFy6tddjmVVHWVVU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.94|152.0|0.73|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|0KRWmUa-eSKY-N5nEo7KGmx-1GuD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.0|0.665|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15434|0KTQOYtV-OKTu5eQmnsWII2Zq7h4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|218.8|0.7440000000000001|17.33|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|0KWCS161xNoTGsYw6jPnVqbLN7D2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.838|170.01999999999998|0.746|10.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||0KZHKuPGkqrsAUt0Hcu-sz7QZ-Rw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55|1.6000001706098266|0.8140000000000001|61.8|0.568|2.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941221|0KbRKeq2J0RxBAitu3hKmr4XkGod|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|188.2|0.722|13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra25753k|0KbyzyKTCVXC_QGEtWOybT3fN7aC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|167.0|0.725|10.5|['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MHGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|0Kg04pceVGwFjywwuOIsZgGJThcP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|225.0|0.725|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.202001460|0KihzvDHid3dkyLU2wSjlT40OKiJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|216.0|0.7490000000000001|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00888|0Kngw2LmgANXSvK2HUvYQnRtKzKw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.1|228.3|0.662|16.67|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|0L3EfViIDGSJn9UY0QAau0TrZblV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|11.5|0.58|0.059|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|0LH149eNrhR05DXblQ2ekwnkdPCP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.1|215.4|0.625|14.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|0LO7ulVKCa_6fNxHF9kySSIhKFyf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|186.0|0.6709999999999999|12.1|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|0LVyx8dr8QpGCVCGA49p5kilmed6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|146.28|0.447|5.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1016/j.orgel.2016.07.019|0LpxckQw8D7tipGcirFLmY9Blasv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.103|183.5|0.622|13.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|0M1w3gSAMGnRCtGIKmGF9wd6NI76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|188.0|0.66|11.7|['SLG', 'ITO', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['none']|bulk|https://doi.org/10.1021/ja508758k|0M96mVlPB6xPrhiRI-M2uPBXY3qP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|142.0|0.61|6.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|0MAV4a3fiY3vsTiHdB-VSIl3E5ox|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.79|16.0|['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'CU']|['P3HT']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02503|0ME0ASa92LnVFDU8QJuP5RKcxdjX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'CU']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|199.0|0.6920000000000001|13.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|0MR7wy-iF28W_95R-NuEvvjW-zsJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|1.11|150.1|0.67|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|0MS1afc7jzh-CpT_bcVob46LPj_E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|221.9|0.63|15.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Pd']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2020.106463|0MT3OMShzRy1rYW96VJKlfUfbB7r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Pd']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|236.9|0.701|18.22|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|0MVPn3V9A1xpcJxcgtTR2Aeshplr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3400001428857296|0.76|242.3|0.74|13.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEIA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201807024|0MtsErarCzfTgzs29DsSFDrfBuyD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.1|111.0|0.688|8.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|0N3AdR4gqa1xVgUPgMTSQfq-PP_e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.11|220.4|0.77|18.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09433k|0NDgl0-FoWg7I3xco7YQHc_ksefZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.71|232.3|0.64|10.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900219|0NNUwvAwp6k20dWgu-0vfLhtelER|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.7|0.6|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcrysgro.2018.03.030|0NcSt0B-fE0-2YEy-Hd197vTkX0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.98|173.0|0.69|11.8|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|0Nd2Wrygdvqjb-W9ziYxfyTnB-PO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.101|226.7|0.687|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|0NkyAH-kQ4_d29bEQIYm8Mf-UetC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.615|117.7|0.37|2.68|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.061|0NwDe-nP5tJMqGc-eQjTDb3k2E1_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.3|0.6759999999999999|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201401872|0NwQrYUo2KcsT1uWQfdDNknOSw4b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|206.0|0.67|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501358|0NwSLAS7qBgn2qAPKsxcyO6YOn2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|182.8|0.6|10.13|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2016.06.044|0O1WHqKWURkLIUfxb4ep4LCBCVY2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.7979999999999999|300.0|0.789|18.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/adma.201907058|0O7z6abvT20czOD3wI6_RTIYM03O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.4|0.7340000000000001|15.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|0OKd45vj74pifaOAlnFBeQ6AuLID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ba2K18Nb19NiO60|K18Ba2Nb19NiO60|Ba0.1K0.9Nb0.95Ni0.05O3|1.450000154615155|0.95|0.4|0.887|0.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c']|bulk|https://doi.org/10.1088/1367-2630/aaf8eb|0OXh3ggzont-DwtwajWN7fKPZJuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is Ba0.1K0.9Nb0.95Ni0.05O3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.05|244.0|0.8|20.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|0OZjxrahkJMP9EqNVKmOouMkA5li|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.1|0.718|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|0OaK_w-JQyvM-CfP-eVDvLpYUK4m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|198.5|0.65|12.08|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|0OaR15LJdsYlFSXCj47APikrJA1F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|69.7|0.535|3.65|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|0OtVw6LJpKbH6pLmmvDclBSatSu1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.6000001706098266|0.8|177.0|0.63|8.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']|['MEH-PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|0P001WmaO90W3uscf0FkVSFPWOKJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.005|212.7|0.723|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01364j|0P6lq2iEK_y4uYg7lopS1SMbzSz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5100001610130236|1.08|218.0|0.72|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms13422|0PFWbpnRBLaNHUNnwPMBP8t1LWyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|195.0|0.69|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TDAB', 'Au']|['TDAB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra20614j|0PMYmjO3m9wQA4Krlwhzg4YFQW1l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TDAB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -I9Rb3Sb2|Rb3Sb2I9|Rb3Sb2I9|2.240000238853757|0.3|10.8|0.354|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03310|0PU1zxO6rMzeLJlvfdjUs5A5S7Cm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is Rb3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|205.8|0.68|14.61|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201701526|0PUsR1_G5R0h-_pTkYK_uABuB1PZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.604|78.7|0.316|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF01|0PVt6y0KSzf9PfsaZSSCTYfYkLHw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.218|51.8|0.64|4.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|0PZBtoe_DgVPwP4ZoXYftMuJG7FP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.04|208.5|0.732|15.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|0Ph-x9FBUIPVpazOAzTSIH28jzI9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|192.1|0.7|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703057|0PkkNG1RrEyPhhb7N4D_Hgw5bQet|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br3C100H510I291N190Pb100|Pb100C100N190H510I291Br3|FA0.9MA0.1PbBr0.03I2.91||1.14|259.0|0.726|20.98|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903347|0PldHuoe7kVKHxiIZEK3oOryDurU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.9|0.733|16.99|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9dt00930b|0Q1I3TCfDyrF8J-tf2bLV2XzCPL3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|0Q6t3snIZw6tNOfpX9okubPFVvFB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|174.0|0.73|11.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c4ta05012f|0Q7LxCKVwYgB_m3T8NMp0HdD5YwU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C77Cs23H462I300N77Pb100|Cs23Pb100C77N77H462I300|Cs0.23MA0.77PbI3|1.6440001753015967|1.04|225.1|0.76|17.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04501h|0Q7W6P5jtlAYxaQkCf1h11KrUoWl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.23MA0.77PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|176.0|0.5|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04607f|0QCLuEnoANN2l0V6mKB5VWu6YdG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.878|171.6|0.49|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|0QDcOoYVuH5Wdm_Oa21_EdQiw6nI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.11|71.9|0.46|3.7|['SLG', 'ITO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1002/adma.201506292|0QFm3ZuUxM_ZZSvOAYsVtge_0b2k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -C18Cs2H93I20N33Pb20Rb|Cs2RbPb20C18N33H93I20|Cs0.1FA0.75MA0.15Rb0.05PbI|1.7200001834055632|1.282|189.0|0.788|19.1||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/D1TA05699A|0QMyBUtzrUX2Vy6FJBwglTeG2sUp|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Rb0.05PbI. -Br150C475Cs25H2456I1350N869Pb500|Cs25Pb500C475N869H2456I1350Br150|Cs0.05FA0.788MA0.162PbBr0.3I2.7||1.08|243.0|0.758|19.89|['SLG', 'ITO', 'SnO2', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2', 'C60']|bulk|https://doi.org/10.1016/j.joule.2018.06.009|0QSE3QRX3Xbn2UBFlBtf2LqW7p6L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788MA0.162PbBr0.3I2.7. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.04|248.1|0.768|19.97|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1002/solr.201900499|0QU1ukPqDMYLgDZ7OmDhrBgGfUi5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.0|0.5870000000000001|9.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9027-1|0QYqBdEfJill6_YjPsvWsGdFwOJz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|130.0|0.37|3.3|['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1117/12.2212130|0Q_LBeI4ntWJzudUYt7LBBJBci2f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|206.6|0.6579999999999999|13.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Pentafluorobenzenethiol', 'Spiro-MeOTAD', 'Au']|['Pentafluorobenzenethiol', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH']|bulk|https://doi.org/10.1039/c5nr01820j|0Qa9eYa9V5LsDXOEegsTDKHI0M9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Pentafluorobenzenethiol', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|236.03000000000003|0.5870000000000001|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|not processed|https://doi.org/10.1038/ncomms15684|0QohSe4fbPHPh8Vf3HDhT-cHCDsa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|140.5|0.643|8.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.008|0QplAdgKS1E4PBU2SjylJVxg5P-N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|157.89999999999998|0.56|8.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|0QuZgQ2chtsRmNErhNG2VxzhDdpa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|194.1|0.82|13.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|0QwfJDrDUHbM-kmquAqO5Jcq0_cB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.14|222.6|0.71|17.81|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Cz-OMeTAD', 'Au']|['Cz-OMeTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201700678|0Qx3r-Uc5q0CPbxG_c7vPH27idzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Cz-OMeTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|166.0|0.56|9.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cphc.201900856|0QxRwWXwpxTumwxkEeYdIBTdPEbG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|232.1|0.47|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|0RQ9E2ZANCe1L3sEfiRgNZaopVRr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.82|51.4|0.408|1.73|['SLG', 'FTO', 'C60', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', '[EMIM]PF6-IL']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|0RQhnhJuqUKrWm0SXWpr1qx41_X1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|89.7|0.5489999999999999|3.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|0RR0OVIYzFpXCva7SmTdnfqmpyLU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|127.7|0.275|3.2|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|0R_b6UVu1xVwQjjgdP94GRHkBHwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.6|0.638|15.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp91904f|0RlyBiV8bD_7FtEYV62TMI36Sj28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|197.1|0.55|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra27704g|0Rqoz1lb5UhX7q1U4mBzcwNk05fd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.04|228.3|0.669|15.93|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ME6Bu-ZnPc', 'Ag']|['Me6-ZnPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900182|0RsQvUqZcmBu-UwBCphfmrq9rwJ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ME6Bu-ZnPc', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.878|193.0|0.536|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra07579k|0Rsxw62J0CkE4NzUOYThfQxSnYvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|224.21|0.73|15.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|0Ry9tZqQ-YWo7qqdI5Ontjvk56pS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|191.0|0.6779999999999999|13.2|['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'benzo[1,2b:4,5b′]-dithiophene', 'Ag']|['benzo[1,2b:4,5b′]-dithiophene']|['ZnO-c', 'PCBM-70']|bulk|https://doi.org/10.1002/aenm.201401720|0S57OcUe3E5ByGINdDZQoDZ3XJpS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'benzo[1,2b:4,5b′]-dithiophene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|220.0|0.73|16.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee01136b|0S70xXO7ecTFUXlacVzmqEQ-jeVQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.5|0.447|8.43|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|0SEKngnisvKwZO1GV1FFXEGQZ73N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|183.9|0.49|7.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07395b|0SI5L96KMADQ0ksPZEoY0jo0YKUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H111I60N29Pb20|Pb20C20N29H111I60|FA0.45MA0.55PbI3||1.082|220.2|0.73|17.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|0SMgbADWL5839O40nOo4NUcrRcM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.45MA0.55PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.0|0.65|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08658b|0SPfqxhbLlePG8grKEYdvYy9rQCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3|1.6020001708230889|1.1|209.7|0.74|16.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10444d|0SQ8J-6dvVFclNqu-JPAwZ0_pocQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|112.5|0.5660000000000001|5.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.09.011|0SUo_hfDBOl_Xxog57VoQfOy5mS7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.123|228.6|0.696|17.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|0SX0wnuQ48zQ-uqoRq1QpnUFpw6T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|206.0|0.66|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b03694|0SXk8-AGvlmGz7IcD1Ly7fJT4q2O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|86.4|0.65|6.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|0S_SCKjzrv7cJDqM_bUIZ2Zd8onj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|219.0|0.73|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|0Saxz8oxJZK021UZFVsoSi9GLC3A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|204.7|0.7829999999999999|17.78|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|0Sc7F8EtPOeMUyzV-BLlXRJ7JR6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|0.96|199.0|0.62|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|0SeL3VpLrEWKqJ0Ib35q22UkON9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|206.3|0.7|15.41|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.067|0SjvuVb19oeb7OUZa3Z_dVEQUCI_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|175.6|0.73|11.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|0SlTaWP-UeCZTxTIQZVG96PJW4N6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|221.3|0.5670000000000001|13.77|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|0SnPXbJFLthA9UXRApPy3Y9xbr3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|140.9|0.65|4.67|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|0Svnxt1zgcZkIXqNXCy0ZVS-cwm6|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.183|219.7|0.745|19.37|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|0SyS3HH0g6HDXeWse6PtF0aylvfL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.1|0.74|16.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|0T4wpi3AtvEaN3xX-a7Kkg9jeLTR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.2|234.4|0.73|19.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|0T5VUF47xAB8Vt9j15BZ2wjPFAuq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|221.2|0.65|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|0TBZQl1AM2vVAuK0xpyD5_hSDhcT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|225.6|0.693|14.59|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|0TLscg2OrbM5pQ1UA85fTPYzJ6cO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.8420000000000001|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|0TUzmKcEA67g_eHUtYdPx6W5EZK4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|172.0|0.65|9.5|['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']|['ZnPc']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jssc.2016.08.034|0TYWaDXUsTdQq11awl2j0-eUrvoo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.011|236.3|0.635|15.16|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|0TZIgjF-nJ2GRh940sBjf1CT1Tox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|217.1|0.752|18.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201902488|0TZKyXDeZj1DyjtE72q9SBfbOyT6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.9|0.59|12.53|['SLG', 'ITO', 'ZnO-c', 'p-amino-benzoic acid-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'p-amino-benzoic acid']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|0TrIuzX44hVk-ZwDUPNZPP-1x9jL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'p-amino-benzoic acid-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.904|138.4|0.381|4.76|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|0UAzdl360Je8ruQo3s4YnsJKSs6m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||1.141|231.9|0.757|20.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaf8060|0UBcTHzEXtXxLJMS6kyzEsuZc7SH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|180.0|0.718|12.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.5b00283|0UEr6Zy2WoRg7mBu-sn3z49zD7-G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|0UHLmjkjoQs52MPKUg-jxIQNZ8KZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.4|0.6|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|0UHk4UkpJLxnq0y8LdfwAvci0F9C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.9|0.772|15.9|['SLG', 'ITO', 'Graphene', 'AuCl3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['Graphene', 'AuCl3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2018.06.068|0USkTL22pUNJln4Cwp1uSIirNrdr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene', 'AuCl3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.0|0.67|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.07.014|0UVIUujFzZeWPJb34NPGzF-5wkFr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|139.9|0.65|6.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|0UZEPoGCMZI0m7QAIz5PkXpwJDCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.1|0.7879999999999999|18.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jcis.2019.09.088|0UZe2EVZ2yy4m8Gl4ZW2zmNi8vvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|105.6|0.31|2.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|0Ud724wGzdJIqesHzzBP_sxSDhYf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|172.60000000000002|0.45|7.69|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)"", 'Au']"|"[""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|0UkyyKl1DR4tnCbQTSq77TTpbkPf|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|145.2|0.809|10.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|0V-VGKurWs2y2RvIL043LMMwKoZE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|153.0|0.466|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|0V4Iv0EX1JeM5LLml9WTM9cCm8l1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.0|0.591|10.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.024|0VGnNtBZDTUXU1m14OnXn3IQvrw-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.6|0.6|12.95|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np', 'ITIC']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|0VJWnv50ZOlDJLMChndRfC1SOGXs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.2400001322226155|0.7|177.0|0.563|6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6NR00301J|0V_c1ni6TUTwyRiXFrM0VO50JXw_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.943|167.0|0.73|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201403348|0VaLOXMtkBcKmA1uQmNHL5-N8YZ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPb1.0I3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.112|235.9|0.762|19.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|0VilMW21-HCPD-5CBrZzoB9NecqL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|191.54|0.67|13.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04919j|0W-G5zLavGUjuYZQEpGhc5teQJhx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15Cs4KPb5|Cs4KPb5Br15|Cs0.80K0.20PbBr3|2.290000244185314|1.34|62.9|0.752|6.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|0W2D_ynXeGMEEthKh4Xv0BUjKF-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.80K0.20PbBr3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|225.0|0.78|21.06|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|0WC8YW2NvNrE9HP-eZf0Sve4xzfI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|198.7|0.52|9.72|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1002/ppsc.201800137|0WUE4ebLvZT84v0hiFLqI4NZ94lJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|175.0|0.43|5.4|['SLG', 'ITO', 'Spiro-TBB', 'Perovskite', 'C60', 'Ag']|['Spiro-TBB']|['C60']|bulk|https://doi.org/10.1002/ente.201700002|0Wdf-wQPDEyGhZo4TU14X9LR7D1N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TBB', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C100H529I258N171Pb100|Pb100C100N171H529I258Br42|FA0.71MA0.29PbBr0.42I2.58|1.6200001727424491|1.11|229.0|0.81|20.7|['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']|['TAPC']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03454d|0Wg363kmjlHLQTUIldxPz6UzMyrn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.71MA0.29PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.0|0.653|11.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5032764|0WquV4WgrHCU6ruEo0uP9K_djJ1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.01|216.0|0.6829999999999999|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00801|0WrQmgaY7RbQY7TxrNz8NUMs8BaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|197.02|0.7290000000000001|14.92|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|0WtuffxIbfrrPROTwSm18sUaOYJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|219.2|0.73|18.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|0WzEJlj5ts-CuoV7LtHmRx4t5-Yv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|154.0|0.682|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|0Wzj6JhyqQiDLGt1Ch29ACpUT7jt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2200001300899923|0.797|311.0|0.8|19.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-019-0466-3|0X85wnghN3VIQwbkr4ZMtSuvvqHh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.0|0.74|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|0XGtrmhvoZZh68TLZXUurvaLjPfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.98|151.0|0.5429999999999999|8.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acssuschemeng.8b05734|0XSnKp1RpVMKsqGCTyiiFSAkp77F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.9|0.754|17.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04944c|0XUOgarBu5JWpIpBiA0JC6p7w4Rw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4C10CsH54I6N16Pb10|CsPb10C10N16H54I6Br4|Cs0.1FA0.6MA0.4PbBr0.4I0.6|1.7500001866044976|1.26|181.2|0.8|18.3||['PTAA']|['ICBA; C60; BCP']|not processed|https://doi.org/10.1016/j.nanoen.2020.105377|0XVRjN-YuF9ZEAc2nH20e61X4bn_|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.6MA0.4PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.017|9.4|0.38|6.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']|['3,6-cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|0X_AOl9edayfVe2DxtWvnUShkuUZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|171.0|0.73|12.4|['SLG', 'FTO', 'Fe2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-mp']|bulk|https://doi.org/10.1002/adfm.201702090|0X_lb9K3EMe9pzpsSONDh7vEw13o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|15.0|3.04|0.706|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|0XhYtS7E-WOCjJ162XT94nN_fdfB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|151.9|0.58|7.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|0XilIUbFA8NIE_hJ6PziNc2R3yFd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.899|198.4|0.71|12.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|0Xk_4KNl3tWPbzHTeBJyAccses8l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.909|142.0|0.64|8.35|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|0XlaXLwnToUq2UiP4Z3tI5zVjPlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7900001908697432|1.15|173.0|0.643|12.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|0XmU0nvy7Odgd_1EGKQP3OFdUQ12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.991|173.79999999999998|0.59|10.16|['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-np', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03240g|0Xvd30_hMAJ4wBEb6fH3scBYP5pa|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-np', 'ITO']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|204.8|0.42|5.17|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|0Xy2xQ_cC5aQBdvxrsxGxracJ4Fy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C10EuH60I30N10Pb9|EuPb9C10N10H60I30|MAEu0.1Pb0.9I3||0.63|121.0|0.476|3.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|0YNPeVvYmk7kmnqaBbtJ6wyZxMym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAEu0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|46.0|0.47|1.6|['PET', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'Ag']|['P3HT', 'PEDOT:PSS']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201500569|0YNRUv_Woe6s_hXMyp-mDhOPHfll|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|228.6|0.58|12.05|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|0YTYop5D9-6M-OooYlBpFx6IwiOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.75|64.7|0.66|3.2|['SLG', 'FTO', 'TiO2-bulk', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10008-016-3262-z|0YZf4dmYH1BDzgAhAKnzXNWNn3TZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-bulk', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.7|0.75|15.89|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-np']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800004|0Yb-cYTJhWpH8dVykVTybQ9WcwtO|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|193.0|0.687|13.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00129|0YoLw6Cn7ElRoTmvNLQ6O8C5gada|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|207.0|0.5820000000000001|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|0YsYbEbGhjNH3U80ZkXehcNYfLD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.58|221.0|0.652|8.34|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|0YtJ59q8srHQIRQjqXW_r8ADpNaQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.73|15.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|0Z21yn3Ieh9PA31yd9WjySqi6dad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.96|181.0|0.71|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|0ZDZq6PdpotUXPZy_j_-FaKhY8CE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|230.0|0.728|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'Au']|['NiPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|0ZEZBgYTo-Cc6V7uh_cno6b4nbu9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|213.0|0.634|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|0ZFPNpUJuUcVDhgrnXet8c62Jztd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|218.2|0.711|16.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|0ZR8VktoiAZEXYzbQOpwxGVkb5uz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|106.0|0.54|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502367k|0ZRPqSJ7BCSfB6KrV-pM4wmP7dbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|240.9|0.741|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'LiF', 'C60', 'BCP', 'Ag']|['PTAA']|['LiF', 'C60', 'BCP']|bulk|https://doi.org/10.1002/pssr.201800505|0ZRqXPi9iU8oYMhLkwUdMpcZmJPP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'LiF', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|183.0|0.44|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta02851a|0ZYauMAlS3fMS0wqA8_9WCLQIeIK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.74|105.2|0.67|5.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01855|0ZcaFJUflT3Ann0kheLrreRo7P-X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|191.0|0.63|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|0Zj15UdyDq17cTK9uzSl7ThO89XB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0400002175275285|1.261|118.0|0.72|10.71|['SLG', 'FTO', 'TiO2-c', 'CsBr', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'CsBr']|bulk|https://doi.org/10.1002/cssc.201900611|0ZmzZD58nVkY-QuuHEklNfINQhFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsBr', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.4|0.74|17.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|0ZutYITBfMCL7VGl3XHgya7iDSH_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C89Cs11H460I249N163Pb100|Cs11Pb100C89N163H460I249Br51|Cs0.11FA0.74MA0.15PbBr0.51I2.49|||||19.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201707350|0ZyFKkOKIqP428jEqj1J9lQKx-bz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.11FA0.74MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.2|0.545|11.5|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsomega.6b00465|0_9oHZiq20rFCIpd62Sru9G6oOMS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|189.7|0.76|13.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07732g|0_DU733Dq1myv04ErBqpkGMEDAr-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.031|204.5|0.74|15.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5099-1|0_FVo4OLs2z1j53a435VMypO1dHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|105.0|0.51|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|0_L_pt8hjiVvG7Th_goGyDcAGOfu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.901|184.0|0.72|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta03741c|0_OA_W6Hsj-ijB8YmQKoGH1FpsbM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||0.987|221.6|0.71|15.58|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|0_ZfSPgLAImOlT28hmY-S_cl5uZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.768|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.02.026|0a06Azuxl0ud6Vjndv5AP4j427x2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.995|232.1|0.604|13.97|['SLG', 'FTO', 'SnO2-c', 'Perovsite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b01037|0a4OoANcAvJHxY6BGtpwGlMyZYay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovsite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|0aA2y3WlmfLJ3yOir9hir4xV98zD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|202.5|0.75|13.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|0aGXJpL4QgmURs4feoGSxeUu7Glb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.99|166.5|0.765|12.62|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|0aLDDO8ZB4FH8d-JZZXbAv434x7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|0aSJR_SrcONdJWkS1tasIXfu5DtI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|183.0|0.628|10.62|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|0aSrcCx_Hry9IQVpM_9V672c-bgU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|206.4|0.601|11.77|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1063/1.4989560|0aekBSy3sL2PtrZ4vXN_YYdf3hLh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.4|0.6829999999999999|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07076k|0ajxXy6Izq9EeaMAHSxhkKHCCIge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|232.2|0.75|18.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801509|0alBsbALz54yKX0N-RDXoMqGH4sj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|129.0|0.78|9.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201600285|0arWlXl00DwXtT-fOOiCZIZJ7dUw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.0|0.62|13.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00526|0asaiKSCLlmeqEwlxc1L_OCcKueW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -C200H1143I600N277Pb200|Pb200C200N277H1143I600|FA0.285GU0.05MA0.665PbI3||1.16|232.5|0.787|21.22|['SLG', 'FTO', 'SnO2-np', 'PFN-Br', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PFN-Br']|bulk|https://doi.org/10.1002/solr.201900482|0atR7IcfG37V-byBca5WiRw1p7eB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PFN-Br', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.285GU0.05MA0.665PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.3|0.635|15.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc03259b|0av1xkwfYgmWaj39FGRCUgpEjTTQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.08|195.0|0.75|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|0azgEV6pAQTLjuCp31NlollF1pup|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|214.8|0.708|13.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2016.10.025|0b3gRTwKxxfIhdCmcsJ1xMCJUNTE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.93|188.0|0.5870000000000001|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S179360471642011X|0bHgURQGjb0EYMebuGQydiI8xqfl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|208.9|0.77|17.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|0bMNXxb6cOnzFOT5USvzu1J4_pb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|205.0|0.73|13.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07515g|0bQE7eqeyg8PJ6PZpLxbIajJiN4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.01|220.0|0.73|16.1|['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoS2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2020.04.021|0baOo_-ZATEESdBp-yZ-xRfSR6R6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.125|234.6|0.76|20.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|0bcimXlFs9180KIt2BxDq2o8K86s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|108.6|0.2|1.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra21423a|0bedoQ6KZcPD9dRPFafGcRxgOZx_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|230.2|0.713|16.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|0blUbRLjx_ZGek1Y5kKimA9Ojs0-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|227.1|0.467|10.93|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag-Nws']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.104|0bulffOdDcXrNoE5aL5XDvegAoeD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag-Nws']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.08|209.0|0.58|13.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00358g|0butZ1k15BiUzoq5InnIFU5nwvUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.72|137.4|0.71|6.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.202000223|0byEKYnq87snN3grigiX-MQazi6c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|139.0|0.657|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|0bz8U8wz7FKt69GSdYfZEPdX3fMe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.7|0.7|12.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7203-0|0c0dw8UAM3W-Kf0IwMkI5Qu2GxhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.5|0.73|16.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adfm.201703254|0c4tmpkhEH1MAjhUJYMvBNoYS3A1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|0cDQObut2w7qIKLBoJcHo0Zt23BA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|182.1|0.77|12.21|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C3-CBL']|bulk|https://doi.org/10.1039/c8nr00898a|0cHQ9wjOo9fZJxWkdlxa6sFhJGay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['3-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|0cMJal4EhGygs-l3rbD4PpQmQLRJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.31|82.4|0.8140000000000001|8.37|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|0cN8SO-kR92nJFsmSCCvQAXj4slM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|184.3|0.472|6.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|0cUro4P0YcvWLHNqneFZd9PMWFEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|130.0|0.67|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|0ck9PJmzTn7g7Kv4k2FJV3kYEbgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||1.06|191.7|0.72|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|0cqdZIwIKnCde3dNNQRDp9fO-Bkx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.4I2.6. -C8H26I10N4Pb3|Pb3C8N4H26I10|(4AMP)MA2Pb3I10|1.990000212195972|0.96|63.1|0.603|3.67|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b00542|0crLcy8FaeuJVF1EBbfyVgq1fyb3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (4AMP)MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.1|0.815|18.41|['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na', 'PASP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01947b|0d9TY3sS9rOSWHNbvCHwpf-0GoGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Pb97Tb3|Cs100Tb3Pb97Br300|CsPb0.97Tb0.03Br3||1.57|82.10000000000001|0.7959999999999999|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS-np; ZnS-np', 'NiO-np', 'Carbon']|['SnS-np; ZnS-np', 'NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta08900k|0d9s2jGxYPQpt2HnxxYhHazGTLOs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS-np; ZnS-np', 'NiO-np', 'Carbon']? The composition of the perovskite layer is CsPb0.97Tb0.03Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6040001710363507|0.98|211.0|0.685|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|0dRpBBEn_pGfjVzEo7Ctd5cKDe9z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5880001693302526||||13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|0dUQi2l6lEcljUWcBs_IsOWAmfmq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6080001714628755|1.05|213.0|0.6809999999999999|14.39|['SLG', 'ITO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1039/c7ta00183e|0dXyylmJMu4zZ9poP7xTT1IEiVoz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.931|237.0|0.63|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00697|0dZBLbVu9X5wtdwPBjvRmzGYUZnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3|||||5.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|0dnBhNp--6-IOxphO1AfrMQA1TTy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.116|206.78|0.7859999999999999|18.15|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|0e54sjErHek-s7ydvK4ml2BKltlb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||180.0||6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|0eFjRUbc6omTI-UwQ9yOFs5dGs9i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|178.0|0.64|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|0eHPi9cjZ1BvINHdS071srlNYa4b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|240.0|0.72|16.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|0e_f1TlW-XruObERS-2KmLZLQxg9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|182.7|0.68|11.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|0eh1iSHRMA3-YRr60jNsasi71XQM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||0.98|240.7|0.5720000000000001|13.42|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/acsami.8b03225|0ekired_FKeCdaslM2VabQKCsJvF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|173.5|0.5920000000000001|11.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|0eo82lT2BV-BIlHJmO7XV9tLvU4D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|149.9|0.583|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra09976a|0erm2-gcAa7dGopn-vjBuO6F42C4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.06|246.7|0.71|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']|['Spiro-MeOTAD-I']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|0erw6rm-FgC7Bv_g5VG3fisZLDQu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.611|174.92000000000002|0.589|6.3|['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.orgel.2017.07.047|0esqzlMwBoeke6X3RWB4X6TpCSTO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.09|192.0|0.69|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/NMAT4014|0etbR8LHzqK3X6IMzTfIXczDfUoc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.015|171.29999999999998|0.545|9.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00747|0f-ikwEXgHV941QLgAsZBVzhnNkM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C6H28I10N4Pb3|Pb3C6N4H28I10|EA2MA2Pb3I10||0.97|175.9|0.59|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|0f4t_Tkhv50SbesNy3MFtU0_rUx7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA2MA2Pb3I10. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.94|211.4|0.698|12.5|['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|0f6osYfQVb2QqXsiGPt8ZD6QwozN|a perovskite solar cell with the following device stack: ['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.63|['Ti', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Carbon-nt', 'Ag']|['Carbon-nt']|['TiO2-nw', 'TiO2-np']|bulk|https://doi.org/10.1002/smll.201600326|0fAHEaAJiwBCHlISqFVHlorjyXcC|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Carbon-nt', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.0|0.747|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.12.012|0fKnYZrvh-jGgZAOXx6zdnm4LAZ2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|222.0|0.745|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|0fZ8_Bpaj5_VVqxZ5cTJP1PbD_Bo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|215.8|0.79|19.34|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|0fcc6k-ydwjLg27zm6YiktOvEoJt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCClCsH5IN2Pb|CsPbCN2H5IBrCl|CsFAPbBrClI|1.7000001812729404|1.086|180.5|0.7240000000000001|14.2|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|0fxyUhsYBWsowpjsWgtsRhZ77RW1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|220.2|0.76|17.44|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|0g-7G2REFIP3Ad4F0h2sAbkowFKy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.15|144.0|0.73|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|0g5wid5L4F8GxWsHhk6D9PG9r8xa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.0|0.765|17.0|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|0gAKAXVEGCAOIG2V7SzCVY4IJCmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.88|204.0|0.71|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b02411|0gIcAs0wYLayj9TnmitjBp-zjfMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||153.4|0.6|9.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-017-11193-1|0giKu2cK9bvkVXBfZL8flSTg-eWm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|218.7|0.75|19.69|['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PASQ-IDT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|0gjtiJow10jHxVUSpiR9qPepi83i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|143.5|0.24|3.37|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|0gkffuftOtrM3a_l2HeHcQCOo3jQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.2|0.8029999999999999|18.15|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/chem.201705658|0glebwLH2hRBn81cDGA7tiUAhGRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|167.60000000000002|0.679|11.45|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2018.06.019|0gosSfoDCdl9NICtoiHUCsDVkzKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|0gpIjcXZIPEFQcStF0V-mh3bmFxH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.0|0.629|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|0gqVHuAwpx2molTKRWE9xYjJwSDj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|118.0|0.63|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201401808|0gqpKFp9tzfBCbTbMi_vJHb-VqjC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.199|138.67000000000002|0.594|9.89|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||0gtyYJx1Z_o1v-bZZgniD8I54D98|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|36.1|0.628|1.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/APEX.10.094101|0gwQwn-fcpdlax1sxV12VaOp8OSf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|130.8|0.56|5.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|0h8sFUAJI0fByQAfSpzF4ny4LLhz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|0h9WCZRaGIBKhKxy1EZTRbKKvQaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.05|236.0|0.75|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b00162|0hIE0RY8wGoA6TpD5BgpSzaG27Qo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.144|209.7|0.7659999999999999|18.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|0hOpTyWvxm2DyiVCHtzNRPQgMI7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|193.2|0.59|10.59|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2016.02.147|0hS2xqJuJyd6ai3O7UIuF1clLnip|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19Cl2CsH114I58N19Pb19Sn|CsPb19SnC19N19H114I58Cl2|Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9||0.8440000000000001|185.0|0.5870000000000001|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE03|0hTc1wGN0qxI7lKCMSFXsPmQq9qY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|218.45|0.716|17.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X21', 'Au']|['X21']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502536|0hY_5Spfjk0HRtpvJlz27E0V3c_7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X21', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br251C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br251|Cs0.05FA0.79MA0.16PbBr2.51I2.49|1.6300001738087604|1.136|222.9|0.7509999999999999|19.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.093|0hgNtG4xn6Yr80vSlLyW2ZDTzR3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr2.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.42|14.1|0.44|0.26|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.ijleo.2017.02.101|0hl0xHO4vdlKPBX65n8p0qbAJ3ST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H6IN6PbS3|PbC4N6H6S3I|GUPb(SCN)3I|1.430000152482532|0.3|7.0|0.56|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00639c|0ht-aYrB6f7sQ5pA_SqJI3rQ__Ry|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPb(SCN)3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.07|210.0|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04538g|0hu1nNInZvyiKBbM8899Qx6cz-Hs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|97.7|0.56|5.1|['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZrO2-np']|bulk|https://doi.org/10.1134/S0012501619020040|0hxKthZejvKYe0iRcQ4UKsMdw2f9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|1.106|223.5|0.73|18.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|0i1ZKdZIRirlzVzGvjmdZB4qWsl0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|217.2|0.77|16.35|['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CuO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|0i7Prjn3g1XQ-sHlVeA-yQtiQMV8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.944|221.4|0.6|12.55|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|0i8UV0W2J29kVE4Yb0DQQU5Ufm9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.758|93.0|0.486|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|0iDIwq905VqXMh2WBOGV1lmM5ssx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55|1.6100001716761378|1.14|233.1|0.7020000000000001|18.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000189|0iG4VL66FrOR1KmCJlgqsjmZSF-1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.43|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|0iOvaoZPBPDGJPWr5ONGFQm4NOph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|202.1|0.536|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|0iYs6XgCOiCYkZ9HazBl0hHHQ5Qb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.0|0.78|14.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|0iiGNtNOpH4Hip3oOsXcyaGDBXQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.0400002175275285|0.75|30.7|0.49|1.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.9b02958|0ikhsQMT_4VtmUBOCRNXOLaU5TGl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8290000000000001|143.0|0.4|4.88|"['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]"|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00610|0imXaOkS_T7uzuQjjbuc_G5Nvt51|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.775|207.0|0.413|6.4|['SLG', 'FTO', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|0inN8-4dpWkPTbISLiQQuRBInLfz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.458|212.12|0.451|4.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||0j0HXbLXG49JxM0ctFLNO7xNeAZa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.4800001578140891|1.03|234.0|0.6629999999999999|15.97|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|0j1j16LndltHoer70iV03cEQ64U3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|229.9|0.5|11.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|0jFf2McEgVX9R8eDGiKwYv5svJLH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.97|98.1|0.5760000000000001|5.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|0jL9OAU2e9Ycik0nw2_GXXVlpYeV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.913|173.21|0.705|11.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||0jRZdGw2dzS10bRs0-AcRB0h9DbY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.0|0.65|16.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201906017|0jRhgBkqZ1hCwVFGdsWlfxoO99zq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|210.0|0.68|12.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|0jZvkQVbzeXcHdd43fB6M2gyGXHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|191.0|0.55|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|0jdLIcf0MkS_tW8L7VAoOKEMtZHH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.003|33.8|0.46|1.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|0jowPU4E6uvZqVKb49_sHF9cMddG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|177.3|0.71|12.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|0k-1oLG3WOslMeNsQc1rrPyafEwu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|181.0|0.604|9.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PBDTT-SeDPP', 'MoO3', 'Ag']|['PBDTT-SeDPP']|['TiO2-c']|bulk|https://doi.org/10.1021/nl504168q|0k4bl1IeKyHq3QQsKQtYBVZ5MWuD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PBDTT-SeDPP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.22|138.9|0.67|11.35|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|0kAk8odEBJ040dFmdz74lIW0YY_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Cs2I6Sn|Cs2SnI6|Cs2SnI6|1.4800001578140891|0.52|32.0|0.515|0.86|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600166|0kCKyfyfmlxJ388itWOWpfzr7-CS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is Cs2SnI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|131.0|0.52|6.58|['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500352|0kDpKrO2K8bWLZcioI0HJkBuzUM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|230.7|0.76|20.45|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00845|0kGnand93YkKAuqcKT9dcjCMVs3K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.09|231.0|0.83|20.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']|['SFXDAnCBZ']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c06318|0kL5zeJ4X8nZy211ugEgouKAhzIg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.0|0.503|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.spmi.2017.12.015|0kUNPXr-r58pEjeYz2kM9XlUVO7A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C10H60I9N10Pb10|Pb10C10N10H60I9Br21|MAPbBr2.1I0.9||1.12|106.0|0.718|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201502021|0kWgMD4ZbYxJg1ZLw_PF78KUOfZr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbBr2.1I0.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.032|235.1|0.664|14.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.05.011|0kfZpXHcTcGasaWRKYtELLG35qd1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|164.0|0.41|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|0kjMrxRfbmIJHL4DaUAsk4WdjRj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.138|213.6|0.7440000000000001|18.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700749|0kogCy5XYsV6zfdLk-TuEXl2wqfK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|67.69999999999999|0.5710000000000001|3.91|['SLG', 'ITO', 'ZnLiO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnLiO']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.013|0kvE3vMtt5wNZ0F0w0-h91jkEgTZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnLiO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|209.0|0.777|17.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|0l709-dh_hbpDydixv4DdU7rD59u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|88.0|0.66|4.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1990793118040334|0lFYkhZfzLICTmGxVLTL5_v4dYH3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.3|0.67|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702052|0lN8Q02qP-u4igYAEFpLsmph00x9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19|Pb19C20N20H120I60|MAPb0.95I3||0.88|158.0|0.534||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.175|0lQIQVCEpLDuUANDjZK-tc2XYcjG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPb0.95I3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|220.2|0.72|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|0l_4-2vgos-p39cVBiARzTlN-Y2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|0.98|9.6|0.3939999999999999|0.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|0ln-m5r56_ua94uFtcWdmWa_z_Wf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.721|136.1|0.601|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|0m0fq8lySc8UYHI8C5NMwgkur_Cu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.02|214.8|0.77|16.86|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP6', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-DPP6', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.002|0mMA6IcbkBKfsB0ItKl_aj7gNj9M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP6', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|212.0|0.574|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']|['PEDOT:PSS']|['pBTT']|bulk|https://doi.org/10.1002/smll.201803339|0mX1lVyNKmNR7GpA1TwQ6jqkNYf3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.0|0.752|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']|['pBBTa‐BDT2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|0mdEgoxF3ojtNnsfI79qWntiIm4p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|1.035|231.5|0.59|14.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|0mfpe5PcxW8gLTLk_6L_4hySBHF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|216.2|0.65|12.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|0mh6FTcAz6hCmgOi-X4m9yOQE945|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.08|213.6|0.638|10.53|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|0mi8-3u6wNLw-CWD-6L88yuExZeR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.098|198.7|0.75|16.46|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PEO', 'Spiro-MeOTAD', 'Au']|['PEO', 'Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|0mto8LVyhe5Kxc5O8P6wUiNdfjaE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PEO', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|206.1|0.647|13.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-6', 'Au']|['BTPA-6']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700096|0n24aGbYtnDj3Y_d_vRi71MRBBuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-6', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|195.4|0.747|15.9|['SLG', 'ITO', 'DH-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['DH-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|0n8Zyp4ljDwGT5Qv3rE0aPb5jqEr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DH-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|184.8|0.75|14.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c5ta06574g|0nEdF6BW3D69Xf_VB6YI1H8HyfHZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.046|222.8|0.78|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05484c|0nF9VR54TGrWVhkof0wia4f2Ewcz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|124.0|0.48|4.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3OHT', 'Ag']|['P3OFHT']|['ZnO-np']|bulk|https://doi.org/10.1139/cjc-2018-0414|0nJvnEkXWZhv39Q1J42WHRZ7Y2Df|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3OHT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|257.2|0.406|5.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpcs.2018.09.019|0nST8wgTwjE_UTVi-AuTve5ML7PV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.0|0.742|15.5|['SLG', 'ITO', 'NiO-c', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PhNa-1T']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.024|0n_Kb4Ngf3wvZjMmnbP0AUpKbCj2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.3|0.62|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|0ndQaO89kHF3F-ImzwDb1Z4BLs5s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|199.47|0.74|15.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|0njAGBquW-Br51jv6Uy6HRyCE2CI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||205.9|0.753|15.5|['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']|['Cu2O']|['SiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.077|0nk390GX78c45lO0-GwgHGE0UWpb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|197.5|0.57|12.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Au']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|0nyUBX9ipAbuFIeBEN8OZyn2uhcL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C90Cs10H463I260N167Pb100|Cs10Pb100C90N167H463I260Br40|Cs0.1FA0.77MA0.13PbBr0.4I2.6||1.075|216.4|0.654|15.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V886', 'Au']|['V866']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02242a|0oGyODRGy2dR-sxmmWA4WJSAmRmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V886', 'Au']? The composition of the perovskite layer is Cs0.1FA0.77MA0.13PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|158.0|0.342|5.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.025|0oHhbv1yTMw5ZVjwqYGRexEDSUHH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|148.0|0.54|7.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.12.011|0oV4SUpf19HpCdAQ0QfhPgi6UrEs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|179.0|0.6|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|0oZvO2j09jMG433zD75mB7loMD3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|217.2|0.64|13.07|['Ti', 'TiO2-nw', 'Perovskite', 'PEDOT', 'ITO', 'PEN']|['PEDOT']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5ra23430a|0obRP7UCq9y3QEYXK8tung8jGWAS|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nw', 'Perovskite', 'PEDOT', 'ITO', 'PEN']? The composition of the perovskite layer is FAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.969|213.8|0.647|13.41|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|0ofpw-HQu_BC0zqPAYnPJR_3_y_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.884|183.0|0.56|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|0olHZ4wvmMTT-vvGebnWVfF7ZNOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|||||1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|0ow5ba3JIttNWRUuz2cfITdDSJ7J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|238.6|0.74|18.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00477|0ow7SGWQm_q6TjxIj81T6-N7d43H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.04|222.8|0.67|15.67|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|0oyQ_1aGGDMh7ucNJGigvvtvvdiE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|156.9|0.602|9.2|['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']|['CF-Sp-BTh']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.07.031|0p08NDjjG0YmYus3AJ8UvwoDyOqI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.21|92.8|0.28|0.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|0p80OL_pcbGAuz57a9BPlib1lZ0A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br33C80Cs20H420I267N140Pb100|Cs20Pb100C80N140H420I267Br33|Cs0.2FA0.6MA0.2PbBr0.33I2.67||1.05|189.0|0.698|13.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|0pAaV0dnve1gbG2z7atDkeDArRjt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.6MA0.2PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.07|194.2|0.64|13.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.04.053|0pG6KJmPI3QZMizkBHEL1BDpLaDa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|169.0|0.52|7.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|0pKIO0JNbXZtq1wH-oUwkmNUdgaA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|155.0|0.471|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|0peVdWPNYG1tQCUj9Xg2TQRcGx8R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.027|221.0|0.6890000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/ab938c|0pmtjiy38PZmXnYfJDBpwQyrtjdE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|0popRqcv8HFAd5N0BMnH_sRbmMQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|157.7|0.7|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4896779|0pozDv6N53SGKBRebG_dfLBQ-p6R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.6|95.0|0.2|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp00008e|0q4OJ_k6DG1m4fLEGsciDNK-HoKp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.49|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c8dt00692j|0qBPsh4ViMKgd7AEFcYruLFVPi0F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|43.0|0.337|1.5|['SLG', 'FTO', 'CdS-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500059v|0qHUTPDr335yJkpQdIjHfnDWItB7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.11|238.5|0.7709999999999999|20.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|0qJys7O1Dr98UJT5TL-uHS6sZLos|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.97|201.0|0.77|15.1|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|0qU3mC8CmElGXXKjum0NW1js7b3H|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.98|186.0|0.74|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|0qXDleowefRUGW-MU69kFMhXVkQY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.4|0.5670000000000001|11.51|['SLG', 'FTO', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|0qXg4Tw09cSzTXd2wvughWWma9aV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|178.5|0.73|12.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1039/c5ta08015k|0qpTiU7fUq2LYHHcMJGKC0AZAYsk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.118|234.0|0.755|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|0qubhQgH_lLSACs4o3AHYmu3KYiE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|165.39999999999998|0.698|10.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|0qvwTsU-YLkojbj2HFGf-sTISqjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Sn5|Sn5C5N5H30I9Br6|MASnBr1.2I1.8|1.6000001706098266|0.15|10.3|0.51|0.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|0r4jgObOZ3xKefgkN7ZA90pODdSz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MASnBr1.2I1.8. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||18.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10876e|0rFgdsvQEABjGoqVm7pnj3OvuN86|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|161.4|0.473|7.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|0rHCdDN82LorBWABcC2g7HIWcM9O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|162.10000000000002|0.496|7.88|['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12849|0rJQQsUqIKs49YCpshcrbsQGjOyW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|197.0|0.595|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1429-3|0rNyAcW0I3VEVBAo984SfabhtNJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|218.0|0.664|13.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.analchem.7b02800|0rP0TBrliAsHiZxGa4DjIUh3Afib|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.4|0.79|18.51|"['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)"", 'Au']"|"[""9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)""]"|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201803025|0rWiEEuskkDdlLd10M7at5tTubLN|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.035|188.9|0.628|12.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00747|0rq8qqquONlCsX-qf9w3EPgPRuUU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|218.0|0.767|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226907|0rwPI3zfoDuEUjHfxjG6nSwSA3Ep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|229.8|0.768|20.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201902984|0sRa7ya_MTjPhp2hhHh57wwoj0_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.988|227.6|0.7020000000000001|15.79|['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'SnO2; TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.097|0sU5D4ZKCLZ9uVIu7MsAO9RHVChc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|177.5|0.721|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta09646a|0sfjAeh3bBxVYPJdP8bm5Q3CAFrf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||0.85||0.679|3.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09952|0sqByuXOY1C6MRm028QASdnbxtuq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.5|0.698|13.47|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np; Nb2O5']|bulk|https://doi.org/10.1039/c8ra01571f|0srbhFdmh1uc2JA7qGO_Cvv9EXgM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|217.6|0.7340000000000001|17.61|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|0st8D7vO9V_1MWYl87-lLaOk-kuK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|128.0|0.418|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|0swkXmbW0bgjLjV_ENxRai2XzR-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|189.4|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|0sxCwKdDo8Htt4lkgu1CTUnZlGaU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.26|26.7|0.42|0.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.003|0tFm-oVilO_CGvpfMJNKGZL1qGvj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|226.0|0.68|16.02|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jechem.2019.10.006|0tWLsckMZQ0Lc00j6azOt1tK4p7o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|215.2|0.737|18.82|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|0tczaX4i01MVK8ZAElDE989aGnfR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.12|243.2|0.74|20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|0tkE-zLnWPLqQ8ZHVe8bIucG_yCz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|220.2|0.72|17.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|0tmMqhwZgHRsxabqC_a8zG979jgJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.852|57.5|0.609|2.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/8654963|0toGZizqbmcJLhkUgIgOyhl6BduH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|0tzNxPUloyi8tQoch1U_D8qTeFjN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7909999999999999|73.0|0.427|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|0u847oVxJ8M4YoX0g00heT8ET-Zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5900001695435149|1.0|209.0|0.655|14.3|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201807604|0uAc_xoei-OgHisSo212dDsWDRr5|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.15|233.3|0.775|20.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|0uCESdc4GsI__PEnORTxZLSclhZU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|223.0|0.7709999999999999|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|0uL64oXz9siMVQZNFnrkDZqFR1sb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.993|157.7|0.4579999999999999|7.18|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105560|0uRKHyd1-0U6HB1fxQvwEu-S55CP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.8|159.0|0.57|7.32|['PET', 'Carbon-nt; P3HT', 'PEDOT:PSS', 'Perovskite', 'Carbon-nt:PCBM-60']|['Carbon-nt; P3HT', 'PEDOT:PSS']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b10334|0ueWb7-bqt4tWt2drRID04IHu56i|a perovskite solar cell with the following device stack: ['PET', 'Carbon-nt; P3HT', 'PEDOT:PSS', 'Perovskite', 'Carbon-nt:PCBM-60']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.92|191.5|0.152|2.67|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']|['NiO-c', 'NiO-mp']|['ZnO']|bulk|https://doi.org/10.1039/c7ta07775k|0uitXuSFGfrwfF6GoV6RzzNFTbvc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.85|32.2|0.64|0.67|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|0v-IyThQ-Ye2zdBZoEuEWT-ZhS9l|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|178.0|0.65|10.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4864638|0vKWEuGVz-FIEAekI0rKEBqv0xv7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag3BiI6|Ag3BiI6|Ag3BiI6|1.8000001919360546|0.6|55.0|0.7|2.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/solr.202100077|0vSgg5pZXtoJilBG0ERnkk7Hmzgb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Ag3BiI6. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.66|2.2|0.69|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.01.035|0vSuTDVr8lReY7rmDlIpROYd9oUW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MA3Bi2I9. -CsI3Pb|CsPbI3|CsPbI3|1.8000001919360546|1.1|158.4|0.64|11.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/smll.202001772|0vj31xFms60-0CE-lJdUrwJKgeDJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|39.1|0.596|1.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|0vkep_oefzzd7irPqjKOpd0PJ6Jj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|199.6|0.627|11.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|0vx4s1bSWbWFDvYEKAW8S2YHQSEp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.4|0.764|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60-N', 'Al']|['PEDOT:PSS']|['C60-N']|bulk|https://doi.org/10.1039/c6ta03284b|0w-JFCg8yxH8zdU6v1pXUTQdewhR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60-N', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|218.6|0.64|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|0w-k7CjJ275cnh7Lf9pLNlke9uDz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.69|1.5|0.283|0.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|0w417xQNHviCo6QqDvAEaNEg9gLV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -C21H54I19N7Pb6|Pb6C21N7H54I19|(PEA)2MA5Pb6I19||1.15|182.3|0.44|9.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|0wEeOu1FyrMYO2rB_g5p9dm1CkaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|142.0|0.73|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|0wIRkGIZcpiaKLIWq0C9fauhzgdI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|228.7|0.625|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|0wIzE7L4hT-ImenHg72dGyZTevTB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|229.3|0.726|18.17|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|0wScqAEvl-Yl7zvc1cqqkaiPwvAP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.32|84.5|0.366|0.91|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c9cc06345e|0wZqP0ws51lIHGyDyBxAPSGzz5M3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|187.0|0.64|9.67|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.279|0wgJKjlsPTyDiqidnJy6SYF0aFBN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|130.0|0.43|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|0wkAJJdvTzOTTKCpPNKROtLfDKdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|195.0|0.7659999999999999|14.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|0wuhb-WOliVqLVtJ5H5s2ChCB9NF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.100000223925397|0.87|27.0|0.69|1.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s42004-019-0195-3|0wuvDfQzVfLsTu7CrU-nQ0GiUM6b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|237.6|0.8|20.31|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11426-018-9250-6|0wvEidMKqQNHhohkKGwMC0j8DmJU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.91|6.5|0.6709999999999999|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1007/s13204-018-0744-6|0x7iwmQ_HEWSVagPBbjOAuMNly5e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|214.3|0.765|17.73|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|0xDn6CFP9MuBI5P7uxEVdOTeDRna|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.07|219.3|0.74|17.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.105387|0xFCe4cpRNjWYYifagFjft0xxXjK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.75|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|0xGLRSpfW-H7fW6w7T8CNW3k6UvN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|145.0|0.52|6.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|0xM_W-ZdjHdULcq5zDH0ejE2z3QA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.071|223.8|0.7340000000000001|17.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.084|0xP-41DAX3Gj8K7ZxdboCkOf48Dk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.14|212.5|0.78|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|0xX0pl808DNEBhbZ2S0iYqXqOv8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.06|75.8|0.52|4.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|0xbgLi326wLqeCdSWYnOCITXtmK9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CsI3Pb|CsPbI3|CsPbI3||1.08|177.7|0.7090000000000001|13.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|0xc8sl_j_VoonLaWBzCvT528DIAQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|252.3|0.5489999999999999|12.74|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|0xd_-fIZpZrbKvYhmOz9zSRIK2u7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|225.0|0.71|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|0xez-7Rp0i3hlwqBOW00U4TMaE8y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.051|202.2|0.769|16.34|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['B2F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|0xkyrOh6uWgvH6Oy2Jav4HbvTHPX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5860001691169905|1.03|222.6|0.713|16.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|0xrgg9Cq5VZFoaVNCNAMnSlpo1HZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'Ag']|['NiO-c']|['C60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|0xruoCwP6Fbyno6dvsZzlZrqH0gl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|215.8|0.392|7.8|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.3390/nano7070166|0xuIq4vhOJ8xuPNgADkPrpih8qzG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.13|108.7|0.68|8.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|0xviINUXi9KkTClOeRXYtcWDCQFM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|2.1300002271243312|0.487|22.4|0.4639999999999999|0.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00513|0y99ZIC0WxeUVEstogoInQeuCCMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.568|128.1|0.42|3.09|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|0yPOD6OyoiBTMnFxkzvbOjLug6vb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C200H1200I591N200Pb200|Pb200C200N200H1200I591Br9|MAPbBr0.045I2.955||0.97|225.0|0.8|17.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601175|0yT0Fw3JsR2df4riJxhsWK-k88-n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.045I2.955. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|176.0|0.59|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b11584|0yWxp65kyqXsFMuXVkbG6Fc-ZP3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|189.6|0.79|13.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b03543|0ydnwSRwStOWShtZVdvHd1ljf9eL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|199.4|0.416|7.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.01.035|0yeIwBJDH697324AU11kuQo6BR7i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.93|161.0|0.74|11.1|['SLG', 'ITO', 'MoOx', 'TPTPA', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'TPTPA']|['C60', 'BCP']|bulk|https://doi.org/10.7567/JJAP.57.102303|0yk-Lv_z1da3sgLXrkglxcvo60JY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'TPTPA', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|143.5|0.614|8.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|0ymM-pEN1l4jWNKxD6V6uRbQ8iA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2Sn2|Pb2Sn2C2N3H11I6|FA0.5MA0.5PbSnI3||0.75|285.4|0.76|16.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903013|0ysisWNQlwI9rhD3HTs6OyBQ_p3J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.9|0.615|14.6|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']|['TPTPA', 'TPTPA; MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|0yuF-kwaTJKerLEQZWqxvPQujfiG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C9CsH54I18N9Pb10|CsPb10C9N9H54I18Br12|Cs0.1MA0.9PbBr1.2I1.8|1.8200001940686776|1.2|151.0|0.69|12.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201702140|0z4PZCgPKHPi8LjMpKzXGlvxbl0M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|174.0|0.7090000000000001|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PMMA', 'Au']|['PEDOT:PSS']|['PCBM-60; PMMA']|bulk|https://doi.org/10.1002/chem.201703382|0z8_kv5ehsYdOBkQ5J6xe5PjtNFc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|231.4|0.7490000000000001|17.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706401|0z8wJGKoBqDSo4yJsKH28l72zNTD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|85.19999999999999|0.471|3.29|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|0z9dtcmzfYM9vwfda489hLOgPpk_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C50H285I126N65Pb50|Pb50C50N65H285I126Br24|FA0.3MA0.7PbBr0.48I2.52||1.05|218.3|0.479|11.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2780-8|0zCahS_4d5mVgIxk62y9MyXyG6_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.0|0.62|10.5|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|0zDmY60c_fXrZSCOu2gU7BMeysRe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.0|0.545|12.6|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']|['TPTPA', 'MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|0zG019x8LKxJ19DsMKeU2NzJeKu0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|210.8|0.6459999999999999|14.6|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|0zLLI28GWtFJw6AtE72RHF95KlKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|172.5|0.43|5.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9pp00071b|0zNInlVuvUCd0uorc2nm0vGYjMbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|211.13|0.698|15.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/lsa.2016.243|0zdxDCF3_poHiheNB8W2OjK7YlZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|162.60000000000002|0.4|4.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta07730k|0zgKwoq4ZxSsXY-g1rU_SOo4ldHn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.125|215.0|0.7929999999999999|18.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|0zoT-8RUbiDt5d8DQinLIFRmo2sc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.0|0.635|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|0ztMpI9hr_uql5z7GPMrPXSciAOJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.2|0.497|10.84|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|1-2OrKU4X9vOMC12RVcSJ5FGsk2Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|172.0|0.72|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee02465f|1-3649ly9bVlPLpxL-oGRAkS8nTN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.0|0.68|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01026|1-5tU36LadliGpNGA0EV429m0EDA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.375|77.6|0.7929999999999999|8.03|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.9b23384|1-ErOAUI_ZjjQF2x6fh-hOD4Gv2L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.8|0.75|17.5|['PET', 'Ag-grid', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703054|1-KCfMh8FuABVLU6d5Za3Za8fZ_f|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|234.0|0.74|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601387|1-Pyx33FyH2Y1v7XpznQxoiRRCQ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|124.2|0.6|6.85|['SLG', 'FTO', 'TiO2-c', 'SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3']|bulk|https://doi.org/10.1039/c5ra09001f|1-blKYnAGRJMFNMLILwf84LjU1kE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|205.7|0.7659999999999999|17.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta01800a|1-cBwLad6upM6jYodlQTFQ4fxqRm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.096|215.7|0.7390000000000001|17.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|1-ebMPlCPsqrz7pQX_GgC_TjXHXI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|209.3|0.71|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|1-glJeXvWahYiNNdWbRLtuASOWnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|41.0|0.69|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|1-nga8wYSapbGsRDXmY7ve-HYBZ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.8|0.69|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8-40']|bulk|https://doi.org/10.1039/c7cc09452c|10EWSOKcxhStOEwbvKNEqlvrqQu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.052|229.8|0.6829999999999999|16.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b18217|10NdCq_5z5jqypMnIizAgrqZtUdL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.195|5.0|0.21|0.02|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|10Z6yneY-D2k3B2z8JxMlj-cZlhV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|233.4|0.742|16.88|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.orglett.9b00988|10b-jUcNeoAN8iDsl3Ftp3OpyHgA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.04|226.0|0.7140000000000001|16.74|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|10c0nhyXNNsrH9veJixsSybu8TwX|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -Br3Cs2I3Pb2|Cs2Pb2I3Br3|CsPb1.0Br1.5I1.5||1.2819999999999998|110.0|0.65|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802060|10mTFckJErxwZ5UQ9k5DuWNqHKbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPb1.0Br1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1126/science.1258307|10vS7gcpn32VHYc81631lD5HMxee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.0|0.7340000000000001|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|10x7ggxGeUBN4y5M-_hi7KzauTZl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|171.0|0.71|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|11G3Zlh8FmW3c3octywRhlrGBr14|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|159.0|0.66|8.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|11bDzPyRThGUgTz2aEeaV9kzG3NP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.0|0.722|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|11i8mJ0GFZy8YTUeYjPYQVeewwEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|29.0|0.48|1.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|11spod3neEK-ApYfeq0tLnVsdGWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|1.14|188.0|0.69|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1002/aenm.201803258|11tnlFWHap0JjFRcK7d8FY8tvC4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.1|0.736|18.79|['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Dimethylbiguanide']|bulk|https://doi.org/10.1002/chem.201804799|120snnp72oWeGvE__qSPVZ9BdlU6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|254.0|0.602|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2019.07.010|1210g5RkuFQ3kDVyyM4rMU3ViZom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7170000000000001|1.54|0.737|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|12BggEu2n6dNYquetnECD1wJzh6O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.765|135.2|0.47|4.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.17586/2220-8054-2017-8-4-540-545|12F__BIwSTejRkLehV3hDVNRJE3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.0|0.73|16.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00377c|12PRR-CSZNWYiugcdCOaUPXtWQG7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|205.0|0.65|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6ra28669k|12PzjSj1XMxDXIkSxeFk-a4aZ3nL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.997|233.5|0.575|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aa5172|12ypv_ljP-NqVKP_4pyvgCcwNEfa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br150Cs47Li3Pb50|Cs47Li3Pb50Br150|Cs0.94Li0.06PbBr3|2.2500002399200683|1.368|65.0|0.7609999999999999|6.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|135nzpdrE5Ip4i-fvbN2H2DYFBb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.94Li0.06PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|225.6|0.725|16.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02721|13D8v5e5uBBDCdUkijt3MBOl8CBq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|204.3|0.67|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|13EF5jOepemGxQhRzTTB3mtSmMDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|223.1|0.77|20.61|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|13PdjWwXockoEu0upmIdaRT-aPOO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||1.06|187.5|0.759|15.12|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|13ZU3MwsPMUVJfx06OvMF4LXBjiY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|205.0|0.768|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|13eU7GjCBMQvNkyrNqYUFsr7XCVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C838Cs172H4192I3030N1677Pb1010|Cs172Pb1010C838N1677H4192I3030|Cs0.17FA0.83Pb0.99999Sn0.00001I3|1.5100001610130236|0.96|204.0|0.7040000000000001|14.4|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|13jTkLKK2JhIGOIe5yFtLi1s67Fp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.99999Sn0.00001I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|202.0|0.462|7.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FT55', 'Au']|['FT55']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|140xYVctXuz5Uy6R5oQ4CNis9eV7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FT55', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|187.9|0.736|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|148aWoBjSXBOCKGO2aYr_3nuGzMB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.1|247.0|0.723|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aan2301|14CLiYU043l4zmYPFmGtY1Aej8-d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|125.0|0.4|4.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']|['DR3TBDTT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|14DJJZj_8BzZHVePZzG8CzVlpLKl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.3|0.6829999999999999|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'SLG', 'ITO']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|14GrpJaYh4L_jgbDHEs-Z2URKgsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'SLG', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||0.98|202.4|0.597|11.9|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|14Q97K1vbbdUhJIWnaFRGfipp-F_|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|201.1|0.68|12.35|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|14V5ocv-HvEkEuMsxQby3APYAi1a|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b11341|14WA3ogRChg5ZNJzBuvtis5nE8QO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.3|47.0|0.53|3.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cp08392g|14XTxnlzkuTgXIAwq6My45pONnei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.115|224.86|0.7809999999999999|19.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|14dyGixAWoqgznvgahNt4KdVKvRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.037|0.0|0.2739999999999999|0.0|['SLG', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9020193|14hPDnEnxIPBFh_PNluEz4UTlooa|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||0.998|208.9|0.65|13.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.07.044|14nvqWr5i-8mXHCkRWsmhRdS4wrE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.04|178.2|0.7|12.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|14o88MR4aY-CS6bufVE4Ho7yiLk7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|83.69999999999999|0.53|2.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|14vJ0EWY8fcfvtUXQSMVFWXW_P3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|161.8|0.56|9.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|14xMIdzG1MQsdnWP1c1Jo6GvpiJC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.155|222.81|0.75|19.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.202000071|150z2LwxI7tC7lQDMzW_uUjm80Vv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|193.4|0.718|13.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105573|15FhcUesXnrvlG7ayH_2ZOSUPVt1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|220.0|0.7|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|15IrwIZvchv3t6Euotu21vnVRnKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|170.7|0.73|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|15PYplmGcdgKRyu4YJG_g5pZ7rwb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|251.6|0.76|19.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900345|15UpPK2xMPqFFRH8wxkTBP7ndvKi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|189.8|0.51|8.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra25606f|15dJzKE4c_PAGYd115CnXMgNw3_U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.856|198.3|0.573|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|15f7EwboChzG2V4ZdUn-uDFmTbGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|219.0|0.78|19.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|15v4GKws1-8hUu61habWIo435Xzp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.07|204.0|0.68|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|161j1yzapGgI2Ub0Vef5zb0ADbpu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br120C95Cs5H491I260N174Pb100|Cs5Pb100C95N174H491I260Br120|Cs0.05FA0.79MA0.16PbBr1.2I2.6|1.710000182339252|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA-tran3', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700607|16DMVst4-dQ13prEK0JmANHLpbaG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.6859999999999999|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|16NlzdNZlKxFGnOQJy-X5EZ84Yz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.4|0.748|17.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|16PYdGAnhj4VwgDzOrUOCgW55nNd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.246|68.1|0.71|6.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|16WF13Xlm4INnhHWrTWfTON-RF7k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.04|220.0|0.74|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05795h|16m9il3SCs13NsXC03J1OcOIjzZ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.06|233.2|0.758|18.79|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|16xqbZzp2yjUSoK5_2QL3kS9FoM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.071|17.4|0.26|0.03|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|16yTOxSN6ELXiKbs68JLBVEIKqIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|107.0|0.376|3.58|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2014.12.022|174Qb9q6lmN7haROBAWUled0x8CU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.02|209.0|0.5920000000000001|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|176gvGZvj3SCwMn2LKox12iHts5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|205.0|0.73|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|178fMfvgKtuYD4P5l6HulR7NLR03|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|180.4|0.5589999999999999|10.79|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c7ta03150e|17M0SkyxRv9kA3RUO9IWr4bk2Vqy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|204.4|0.74|16.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|17PgsMnQQYh_9xnWTioovNjSx1Ue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|1.06|166.0|0.7090000000000001|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1002/aenm.201803258|17SJ0j19dwWof1cKwbsT8ajD_8C4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|17WReZn5zXLCg9Gsv4c-tQ1FYnKk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.152|218.8|0.746|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|17diNIXTWnhk3VGodd39GksKatYJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|191.3|0.629|12.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.06.015|17mW1biCTo3gk5wLjpTRmMjKv8eR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|154.2|0.68|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|17x7Yo0PKLK_oLhCP0XP0oOTW-DM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.0|0.55|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/cssc.201402678|17zm9EROA-9JzRjFsECZJ9NYUJX6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|196.9|0.55|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|187agsE4w5nLAY5J_es6ZUO--u7m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|156.9|0.41|5.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.212|18GGLHrYXm0WBa8HXHfTPsVZr1Nr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH100I60N33Pb20|CsPb20C19N33H100I60|Cs0.05FA0.70MA0.25PbI3|1.5100001610130236|1.06|234.0|0.684|17.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|18U0dJizWzeg9MRn6Yi1SUtY0F1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.70MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||6.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|18WfE1yDR-5YuE5gdar80Ui8EN1x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.05|218.5|0.6940000000000001|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ9', 'Au']|['POZ9']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b12678|18fVVeAwaq2xTBA7Cw4-RgRUReUR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ9', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|155.8|0.44|5.79|['SLG', 'WO3', 'Ag', 'WO3', 'Perovskite', 'C60', 'Bphen', 'Ag']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|18hKDnoM2FvbVuGp5pVjOKDpgPZD|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'WO3', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.106|210.7|0.7|16.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-018-2752-z|18mRJyH1ixSxVGeF0Vo1xL87fO7Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|200.5|0.7140000000000001|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|18sAuDYT64cwMuSwH_0VQf9r9y1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']? The composition of the perovskite layer is MAPbI3. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.0|196.3|0.745|14.62|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|18sOWygCAGSY33TzhSMJ8XjDzxim|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|0.85|186.9|0.65|10.33|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']|['P3HT']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsaem.9b00856|18x6GfK-shdrU-bnl279zXxuKh8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.8|0.754|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.064|190a8bEiG5pKK6TKen9--PgCNeDL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|196aLIgaGj-ej8-HMZWIbgbLonWR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|115.0|0.47|5.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|19FnIFM0Nx19pdMtGkcU5EbAwg0S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|170.10000000000002|0.316|3.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|19Gw4OJDDEDDL7yE1OpVpE8dRiW3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|212.0|0.66|13.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|19JhS5cmUZ7WuzT6l3rUIscsqwzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.7|0.75|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid']|bulk|https://doi.org/10.1002/admi.201700897|19Q0gI3BYB_BYuTO3E98cvc7bttO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7000001812729404|1.135|197.5|0.7659999999999999|16.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02248|19TKavQ1wpSb_eoc5p-UH_pYWlfJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.682|136.32|0.288|2.68|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||19Up-BYFvl7fa8j674wpGwqOrG5i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.103|234.0|0.772|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|19fpaJ8kecbLt0QaWb7rKbI-t1Fn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|231.0|0.74|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b01783|19hk4UJn8RmjeP99bVu8BnoSB6iQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|115.0|0.7|4.55|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9518-x|1A-B1t9uypCo7Hrc4jL_1F8ez4XI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.8|0.643|13.1|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|1A3KqEjvmqOeztLMZOtVIce9OzTE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.147|219.2|0.7|17.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|1A6W-y8b-5sqytLISNPaXnNf0X6N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|215.0|0.653|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00200a|1AE6YlP2hXlpwrd3Zd1oMovIqMrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.94|135.6|0.472|6.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|1AN7h1FX5sczTIfgEbUYqBnOPxxx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -C19CsH98I60N35Pb20|CsPb20C19N35H98I60|Cs0.05FA0.8MA0.15PbI3||1.03|227.4|0.6940000000000001|16.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta12890e|1AOHlyy1M8WsOz4lZydPZOEVlzYn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.01|161.29999999999998|0.75|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra13289a|1A_Z2bEKCjE9KSbl0UJIZQaTL6qx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.08|202.1|0.78|17.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|1Aq8Ol0xvlmOj8eWPsLCXLzFjJFG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.9|2.2|0.61|0.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b04107|1ArMl0wFOAjr2YlycnUFHIkv7WzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|185.0|0.7240000000000001|14.0|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|1As9Q9y0TixZS_Pq4-VMcJww0un8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|187.0|0.63|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-5', 'Au']|['BTPA-5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700096|1Az_DjsEBEIhVOfKSddr15bfrt3k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-5', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.0|0.68|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|1B-2epvXLiOcMv67XdsPxtfalq0A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|1B-IscIq2qNUpSYqf-MX_iGWW1yu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|186.7|0.6890000000000001|12.48|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.cej.2017.11.189|1B-uEBFKPQgfRgjCMrAaWfGVt4E7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.995|237.9|0.58|13.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|1B-wkcHLAVY2iTY8MtJ_O685EH-i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.83|20.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900132|1BNKHBa0BlM78lHQzAvGg_woBTpR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|205.7|0.7|14.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|1BRvqR0p2MvJlj5tj96WLgL_PTGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.08|233.8|0.72|18.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']|['PTAA']|['C60', 'ZnSe']|bulk|https://doi.org/10.1039/c8ta08306a|1BieEJrqO2agFwyv2QMjEJaJPGGD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.09|223.5|0.754|18.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900362|1Bne9j7B3Qmvpg8u59e9D8RwFuqT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.85|176.9|0.57|8.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|1Brb5tOacP9UqX6Cu1B8PDThGmQh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|172.3|0.48|7.5|['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'MgO']|bulk|https://doi.org/10.1002/cssc.201500518|1CIWo2oKy7_UY0yAvO2NyruIDM8O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|179.88|0.828|15.22|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0075-5|1CYngKTci_p3aybfkAM1aqfOYb34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|195.0|0.8|14.2|['PET', 'Ag-mesh', 'PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|1Car-M4VOIeCX-_D8-WUDJoC5_Tq|a perovskite solar cell with the following device stack: ['PET', 'Ag-mesh', 'PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.12|199.0|0.61|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|1Cb5rUT26y4Zok5Mqi5cG5QgZP77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|219.8|0.754|17.7|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['P3CT-N']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta06439g|1CcO2yUwJhA3Z5OD2_dW3UyQ7FxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.039|210.8|0.732|15.19|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|1CeCuJLfhlsqTNS6TOnx10YIMnvA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|122.0|0.7|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|1CtHO3ElHULS7dzq7DbGU2Efpr5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|229.0|0.705|12.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00981|1Ctci_vsiIsFOWgquryV-nRFXDn5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.6|0.74|17.07|['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD:GD']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.008|1D40jU2MDbZBv8-k94P3Kz3Zaywl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||1.06|254.6|0.675|18.2|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']|['NaYF4:Yb:Tm-np', 'Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Tm-np']|bulk|https://doi.org/10.1039/c9qm00311h|1DBMVEOYDlFw_nGtEUAhZd1Kp6D0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.713|185.2|0.61|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|1DP1MEhHjRxbTxXRaBanFSIPLh0U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.09|32.0|0.15|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201505127|1DQQH9xQ9KJaV3YxVKNay9351Qit|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|223.1|0.713|16.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504190|1DScVHj5aLjpHk7Y9tH98D8WiVuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.1|203.8|0.731|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|1DYPbcW-X_DbkMUIFlKr8YKQq8ft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.0|0.62|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.07.025|1Dd8cx08lh5TBBfQdgiQUiQRRSEL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.02|214.0|0.74|15.8|['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|1DfokO1q0hcCa3DB7B7ytlZ00pl3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.0|0.74|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.038|1DhcItbT2HTvlg5G1-zOlBr5eWfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.578|76.52|0.831|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1Z1', 'Carbon']|['P1Z1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01151j|1DkI3Qgga2z7kIYetJhqdpbjrVtC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1Z1', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.6|0.63|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano8090701|1DqwfKu73vpxGg4IE5Vx4T2mI8PJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.3|0.6459999999999999|15.09|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|1Dseck3GpdTiS76o0bui-dZfOMUG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|192.4|0.4679999999999999|7.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|1E1JagSTfhhOt3fhy-avI8-iaJib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|181.0|0.755|14.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/pssr.201600395|1E4oMnZW3XeYOxczMulw8qUyfB-Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.0|0.7559999999999999|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|1ECwkfMwIBKn16fI1lz74QDVJfya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C88Cs13H456I249N160Pb100|Cs13Pb100C88N160H456I249Br51|Cs0.13FA0.72MA0.16PbBr0.51I2.49|1.6300001738087604|1.088|194.0|0.69|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|1EEKtW-n7BN7gy5tllWSkVX8-03f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.13FA0.72MA0.16PbBr0.51I2.49. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.69|140.13|0.594|5.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|1EJ9Wmw9hzoUcw3dJMB-5UvNFd6s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.087|206.0|0.752|16.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|1EL0SSVAYbxLjqKeTODSpZ5sTp6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.2|0.66|12.6|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|1EV-GColuUG8xKSQ6Q3bBWG4RKXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.6|0.7440000000000001|17.33|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|1Ek5q_he3fot1Y0xERZp_PjlVGVs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|40.0|0.65|2.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b01187|1FBm9vjoCI0Rd0sJ9uBo6_yec2-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.94|160.0|0.55|9.3|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr04179a|1FLBl2r6paC_Uut0sFAJl8Tf6-P9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.1|0.679|14.26|['SLG', 'FTO', 'ZnO', 'MgO', 'EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'CuI', 'Au']|['Spiro-MeOTAD', 'CuI']|['ZnO', 'MgO', 'EA', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201812236|1FSNWOunH-2uq0UOjG7b9nqtl3mO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO', 'MgO', 'EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||1.12|227.0|0.63|16.02|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7EE02288C|1Fr7GCKTff0j-vfT1HABJ2KN1xJC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|84.5|0.612|4.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|1FrnPoZJ_4n6OqYl37QBgWY2XwPV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|215.3|0.746|17.71|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2752-z|1FtSPsNDgwfJ12goAkuBypH9_Up1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|148.3|0.608|8.74|['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoO3', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|1GJgYzY5a4LZFjRdBVVPpy2H1KGA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.44|161.0|0.31|2.5|['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1117/12.2212130|1GOooZTKIttbxDRccPAOAshG8W6h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|184.3|0.575|9.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04444a|1GOsGfvrBa8Q2JbKrwi-gj5KTCNI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|152.0|0.64|9.3|['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Au-np']|bulk|https://doi.org/10.1002/aenm.201500038|1GPjt1kb93gMSzqUOYPXFFXn9diM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.8|0.65|10.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.carbon.2018.07.010|1GcNfn-Xp-c1Kkjzsf_DAGHSB-3R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.07|231.5|0.77|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08504|1GdMbCSHSVwXLKU_H7D2bWoSNZv4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|127.3|0.732|7.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|1GfoMk0pH-a2JwhPaOJp4tAyXVqV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.23|183.4|0.79|17.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|1GgIxsTdDn5Tdn2F5dfaFFuOiUhm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -Br150Cs47Pb50Rb3|Cs47Rb3Pb50Br150|Cs0.94Rb0.06PbBr3|2.2500002399200683|1.486|72.8|0.7929999999999999|8.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|1Gh6UefNr3Zd2PyMr0tGJDcRTxzS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.94Rb0.06PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|241.1|0.71|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|1Ghz2bT3tnEkyBe-9_4eJCPCQYr9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|120.2|0.69|6.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|1Gm9KJfvkq8Lk60n2Ko0OTUCQ8dd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8|1.5300001631456466|0.94|199.0|0.67|13.5|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|1GwqsUzcHxPZdo72-JufuGSGzqXV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|223.6|0.727|17.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.6b13362|1H-waXGAs5NW8KAjx-vYzgVUdxem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||0.99|244.0|0.738|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1088424619500457|1H5mkFuWTnP_Ug4xL3AABm9vygx3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|1H7CS7rtlz9Xz5P5ZL2aawV40_Jb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|214.0|0.74|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01275b|1HVYIMf-IHV2ycUotnLTRZ5dAwIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|208.0|0.542|10.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201304803|1HY2bISsZhdCDWnbltLP2nCkLb6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.97|184.0|0.43|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03577e|1HbVDZ9zqr-z9LRhAxN0_xjuX3zi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br5C194Cs6H1090I595N268Pb200|Cs6Pb200C194N268H1090I595Br5|Cs0.03FA0.37MA0.6PbBr0.025I2.975|1.6000001706098266|1.1|225.0|0.73|18.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700302|1HiJXb4GuVwryfB2gpExNvTAasLr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.03FA0.37MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|203.4|0.67|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|1Hwxh5VeQeZ2amHHJl_L81q1bzh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|107.3|0.517|5.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|1HyzQqhZRj1kD1Q3LXK81MRt4h44|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C40H201I117N79Pb40|Pb40C40N79H201I117Br3|FA0.975MA0.025PbBr0.075I2.925||1.112|124.8|0.787|20.55|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|1I5AzS1QbJq5-DvMBQMl_TqF_Mao|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.975MA0.025PbBr0.075I2.925. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.05|230.0|0.79|19.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903654|1I8L-uYw85ks9lB_9bK6K_o44zZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.078|217.2|0.7140000000000001|16.73|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnSO']|bulk|https://doi.org/10.1021/jacs.8b11001|1IFhVNyMRDOBMe7fk09ZIyxNxk4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13||0.96|166.6|0.685|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1038/s41467-019-08843-5|1IGIfEdjheyLS2DdRkpApUeZ6Hy7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|135.39999999999998|0.44|4.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9pp00071b|1II9fhJWS57oBC6oDDGn4JnJ05hM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.07|234.4|0.7290000000000001|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b04930|1IKy2vMCobIUp-qz8B5hn8I1FPEp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.82|188.0|0.66|10.46|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|1IM00TRzms6Xmso0dJmaJkIr9hoS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|195.5|0.659|12.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|1ISBkvGVQ1bx9SxttkQAJIAYeLur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|178.29999999999998|0.66|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|1IVCRM4U8tzRwTf9hhb7e-rCWjgb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br56C120H360I84N50Pb45|Pb45C120N50H360I84Br56|(PEA)2MA8Pb9Br11.2I16.8||1.32|51.0|0.57|3.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']|['NiO-c']|['bis-C60']|2D|https://doi.org/10.1021/acs.nanolett.8b01480|1IkMvE0dAvKbWhOTiYs43JgkF5FV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']? The composition of the perovskite layer is (PEA)2MA8Pb9Br11.2I16.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.597|54.2|0.401|1.3|['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']|['CuO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.08.080|1IpFF35qTSP_gmsVBuo7_BqwIat6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|93.0|0.44|3.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|1IpiqNOnklFxJV3WnYZPJ8tuDo3-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|76.3|0.63|4.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|1IvYewzaiI2pkt03_eviH3q1Bbbj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.03|106.3|0.6559999999999999|7.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|1Iw7RzeVIDtYU77Um9MFqxitnXk8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.67|143.1|0.48|4.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr03530f|1J54s9viOTYfUZOx3Ry2IIEc4q-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -C2ClH10I5N4Pb2|Pb2C2N4H10I5Cl|FAPbCl0.5I2.5||0.7509999999999999|32.2|0.477|1.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|1J8jetZvS2xOhbtla4eUlvcxYpeI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbCl0.5I2.5. -C7Cs3H42I30N7Pb10|Cs3Pb10C7N7H42I30|Cs0.3MA0.7PbI3||1.08|197.0|0.72|15.37|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|1JCbnZThhfe7Gs-p0xftOYUpVXOd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.3MA0.7PbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.51|6.5|0.52|0.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c6ra28190g|1JPPmsfIahAXHP93IG9R7rZzyAd5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.978|90.1|0.63|5.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5099-1|1JV9jVc3D5x1m-ZoaYLtGde7IUnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|0.5|128.5|0.4529999999999999|2.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09855g|1JeI08swvedCrMD5bmH90TERfFKq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|231.8|0.7709999999999999|18.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|1JiqY9iqDbcLzQxtK5__ssDxnNNz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.96|222.0|0.67|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700872|1Jmw1o5RtBlcEEYyUfRzqpwEe6iv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.99|195.0|0.77|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FH-0', 'Au']|['FH-0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.02.011|1JpDo92F8ScZLj1NVfadazBDtpnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FH-0', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.02|176.29999999999998|0.6970000000000001|12.56|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|1K2naGH_1IAu4IPqJXX6mcfdvoHj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PDMS', 'PET', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu', 'Parylene-film']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee01944h|1K3LFfuFAniPSpLF47onk-3ATaUq|a perovskite solar cell with the following device stack: ['PDMS', 'PET', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu', 'Parylene-film']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|234.1|0.7|17.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|1K8rN1AOez02dJ1ZovbP7jAsRkEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.91|119.8|0.49|5.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150814|1KABcS_rl8d8HTw5KW37tMKYlnD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.8|0.705|16.82|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad685|1KVKZbQaI6O6BTY0r4rjyhHA6Xjk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chlorde', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|1KYH6R3tQFzr9NFjoL-x3QjDhT7b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.73|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00762j|1KYODC0tKre_mSUlRxR_WN0Kj8v1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|144.9|0.76|13.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110052|1K_wW1hRTXI7NPLeMlt6j8v_CYjV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|0.94|73.60000000000001|0.7|4.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2ZnSnS4', 'Au']|['Cu2ZnSnS4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800354|1KeTndwN0k5-85WLhQgK9FdMbw44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2ZnSnS4', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.022|213.0|0.737|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine', 'Spiro-MeOTAD', 'Au']|['Triazine', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE08|1KkGOjIfPgVNvCWRI8fYMkfmPWgB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|175.9|0.752|14.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|1KpM1Gx-lY2xJ76XmC-ly3mIYHvw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.410000150349909|0.2339999999999999|204.5|0.36|1.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00190k|1KpfVahan1DVwgrCJZCkP9Q07Xoc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|175.9|0.71|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.009|1Krr9oyLLjxHvuBmxE0JO_UCw6Jv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.929|175.53|0.693|11.29|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||1KvEvm_mTZAy9ivXoqa-dXE-9f-C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb10Sn10|Cs2Pb10Sn10C18N33H93I50Br10|Cs0.1FA0.75MA0.15Pb0.5Sn0.5Br0.5I2.5|1.3100001396867953||||13.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|1L-oG2bAq3tmbbao23YKnsI7PXuu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Pb0.5Sn0.5Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.0|0.716|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4905177|1L8osjuHQJRbaPM80p5jfw6JLYTi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.166|219.0|0.7090000000000001|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|1LMvuzKO-Hle13_BTuryOIpLp_Lr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|163.0|0.39|5.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1021/acsami.6b03724|1L_z8bs2SZWqb_whxGJPYz304U7I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|154.0|0.37|3.33|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.jechem.2017.11.018|1LjFhFKuVc7heWoT_FsByYo3LLCc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.6|0.75|17.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00484|1LkPsHAyTQu4f5xY4wnMIBMjB033|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|214.6|0.818|18.93|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|1Ll5AEs14-7ITX0vsfMmt4awMojA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|73.4|0.41|2.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2430-0|1LlR2r0KMOUuWeuW8GnBCiSQGeYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|220.1|0.675|14.82|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|1M-a_uQzEHObdQTjNl5W4V41WTMT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|204.0|0.831|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701640|1M0iKH5SmBgu99c_u_yisjZDF-Zw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.079|152.4|0.721|11.42|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|1ME-5fnpT6CaTeHIRwRu3T2tore3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.9|0.64|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.9b17552|1MG00MCiZ-IBteUP82AVSNj0BeWa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.2|0.747|15.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta10288j|1MK0LDpEtZ-nLhUUv0WtEbr5cUph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.37|76.6|0.8220000000000001|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc03359a|1MSeKn-m0AzGtLeDT8MEr8cA3hM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br45C92Cs5H471I255N173Pb100|Cs5Pb100C92N173H471I255Br45|Cs0.05FA0.81MA0.11PbBr0.45I2.55||1.129|228.2|0.765|19.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|1MZGB4GjoQF2qeFp3kKYkvwfaqpl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.11PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|159.0|0.502|9.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|1MbtU0UVtBdCd9m24L57nf6SmFKV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|171.29999999999998|0.72|12.2|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.09.039|1Mn_wFhB47EAQqfmN1t1zx42htjI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.924|142.0|0.616|8.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|1Mt84M7KLmNn2oiLAKaWVTXnB2Ag|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|188.0|0.58|10.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02976c|1N5YnGQDR__6JEJGWNPJ-k94v3HB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.0|0.68|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.egypro.2017.03.300|1NA6sO0x8qk4FG6xNQ45MGUo5SWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|231.7|0.728|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']|['PbS-QDs', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.068|1NPnDS2GBN6_DrDtA9CUiRHYTivZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|||||22.0|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c8ta01192c|1NTTYF3_-Awm0_ly9R9TSMH9kHdj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|48.0|0.664|3.14|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.013|1NWJ1On0bsdW2JvVB-gQM63zDqXA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.14|44.400000000000006|0.621|2.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|1N_YKa1QlUn85lZsLz1anAynuXal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|195.0|0.556|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1011', 'Au']|['Z1011']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600401|1Nl8HcZEx35yJOm2ePYEMDlPB3LA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1011', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|166.20000000000002|0.557|8.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA06813D|1Ns5jtSAunnNjCyPRkhvfD_XdHjh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.257|64.3|0.6609999999999999|5.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|1Nt3oi1qbjl5cV9csmXRgtVfrF3S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.43|15.0|0.58|0.37|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|1Nug3xUOlPy-LrW0Yb3FZzMiiJFn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.0|0.762|18.7|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901090|1NwTUsPhS7zV8H18qbstKqUqqKP4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|233.5|0.64|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|1Nwed5FDZyTMncBcTm-ooaJntfuH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|179.0|0.674|12.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1246/cl.150056|1Ny7cxHTHvKPuxE_eUZqLqqcuK_1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.68|112.4|0.55|4.24|['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']|['PANI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.ijleo.2020.164505|1Nybq25Wu1uXfKYR-s2UoHl16mn0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.39999999999998|0.38|6.09|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|1O2g8PEmfIjAIDvrKDuIlMjNu-Y2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|195.0|0.7|14.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cc08657a|1OCGVP7cpHROFDhWkXS-3URxUnod|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|223.9|0.71|16.53|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']|['P3HT', 'SWCNTs', 'PMMA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601079|1OIisRNw6ixy2Y31VdA4hwv5SW2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|191.3|0.81|16.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1007/s12200-018-0847-4|1OTd0nrwxDBi0FahDFkpj-KxhjWz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.8|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501890|1OXYtaipOw6Tq7C47WBDGRHnlUAQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|164.60000000000002|0.627|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|1OdWuGMwb3dzSmGfzD6BMY8d0pV3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.7|0.79|13.37|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc02744k|1Oe-1k1FWl9O_d-GYS-73L0-U81Q|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.061|206.8|0.731|15.85|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201700722|1OfC40e8gTfS7EKPzxR1Ql2L9mwi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|158.8|0.599|8.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00605b|1OgDfnfp-rF1wnfM2WS5eX7gLNWQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1|||||18.8|['SLG', 'FTO', 'SnO2-QDs', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c8ta12561a|1Ogmq8devYlp9xAEViAN9YWi7vKr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.0|0.64|11.18|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|1OrULEah9qPK3uUHW4U_NKRFpZoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|1.09|201.8|0.635|13.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|1P-yrjkusglWEcwIFY-TuripLxKB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.919|157.0|0.633|8.9|['SLG', 'FTO', 'C60', 'Perovskite', 'FU7', 'Au']|['FU7']|['C60']|bulk|https://doi.org/10.1002/chem.201801069|1P3sq4wQZJbi53_6xtOxUCsPVNvC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'FU7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|233.4|0.757|19.1|['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Dimethylbiguanide']|bulk|https://doi.org/10.1002/chem.201804799|1P7w-9nXzESJrI1novJ9dlzLVGu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.13|231.8|0.795|20.78|['SLG', 'ITO', 'SnO2-c', 'NPC60 OH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NPC60 OH']|bulk|https://doi.org/10.1021/acsami.9b09238|1P9xJvFEY_8U0aug69B4PI8W_ICJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NPC60 OH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.517|203.0|0.669|7.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|1PHuhcGGQvw0ASwI6CYRKUUHCsKS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|200.3|0.74|15.99|['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|1PLia5COVNfUaFHo6Y64aYf4V6wY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|227.0|0.65|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.09.091|1PO78DDQdCaVU9jy-ng2eOp3fr5Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|150.0|0.67|9.84|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1007/s00339-018-2251-8|1Pf8N1vBhF6lKydptB_p6QoIV21K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.1|217.0|0.75|17.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|1PvpwXsTERUf-661b3JMgqUxS3rk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.94|142.0|0.6|8.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|1Py5BI5G092iSgCCixHg777Bl6gM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|143.1|0.6940000000000001|9.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee02465f|1Q2yH8qX8NxpVZGW-0Uz8jDQBjRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|152.4|0.44|4.75|['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdS']|bulk|https://doi.org/10.1117/1.JPE.8.045501|1QJJtODMX04pYxsFbv5lmIpNnfNe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4||1.1|232.4|0.782|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701911|1QTqAgjfTBYv9Zo95PvOrJ8F2T8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.6|0.738|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np']|bulk|https://doi.org/10.1021/acsaem.8b00192|1QatjavJUUyY-VAlkwotYMSfJFeG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|204.0|0.71|14.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|1Qb-DupMtCI11UZn6uvu06INj9_b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|200.1|0.607|11.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1088/1361-6463/aa9df8|1QnCTij033Le19JjldDkPYThunZ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.98|202.5|0.7|14.75|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|1QsSXqxGFzB_v1YyYcPaqeR-d6hO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.87|98.5|0.27|2.34|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|1QyNjzCGaLzJUeqZ-qZO97JxEwr0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|155.0|0.62|10.01|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|1QykjTaJWSjPmSaG-L5wCJ3tLJcH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I266N100Pb100|Pb100C100N100H600I266Br33|MAPb1.0Br0.33I2.66|1.6500001759413832|0.71|132.0|0.58|5.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5023407|1QzAFoNvXL1TvaBpn58rWmO1tVev|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0Br0.33I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|183.1|0.49|8.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b11596|1R6FS3fSibPgBfRrssniz1IxSjzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.075|141.5|0.69|10.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|1R6WtbXg-1fOa9uQ6kSOAcWSXyO9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.95|207.3|0.687|13.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.048|1RAGJcZbCWqh2leRQ6GbmwoWGzfk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|235.0|0.67|16.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|1RAQBCGhF_C56cUlvLBoK8m2E6jr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.01|225.0|0.77|17.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41586-019-1357-2|1S38ywfiWcBKvB3vBRIZ_KJayA-3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|143.0|0.66|9.15|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201600484|1S6GUxpQJqQ8PU1fWU0zPYff7gXg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.12|227.4|0.7809999999999999|19.87|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|1S8-FC4sKxQbGea3MXAdceNr2jzZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|183.38|0.775|12.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|1S9E6pjvmRtPVLZa27OD8etEkF8k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|1SCOiGD2Jess6Mgc3WZ9GOt3Itj3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.8|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1039/c8ra08940j|1SEPFM1FH0iyiVmSng9EzlrXvyLp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|188.2|0.684|12.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.10.011|1SFTFuyNnGwKMmek-fixgVfIA5LM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|209.1|0.76|16.2|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.018|1SWGMR_YgtWYvQLNxAcpkKApQ_Km|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|201.0|0.721|14.94|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00084|1SXLHhkdisYe0uAGprivBBeYSDCZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.22|99.0|0.68|8.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|1SaRO3RNZLWnX491kscuvOPmK6fJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|157.0|0.69|10.6|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|1Sk9kA_9o3D_d4WUiiyYZueJMFeo|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.143|216.2|0.77|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00021|1Snub29-NvbivPu2BtaWOc7oRWFd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.6|0.672|14.15|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|1SvAeoIiCEFnevRU__cb14gDzkz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.99|118.6|0.605|7.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|1Sx4vC0Bpgf2dzlxwRO7Sl1rTSRt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|175.7|0.71|13.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|1SzFiFHCoYShGISaIevJccqaB5kj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|169.3|0.64|8.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|1T425Ut-LkabaESldZMYAzRE_0Ec|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||20.18|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|1T6ynaRh46aVwpugxPhWq8a3OzfF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.13|227.5|0.754|19.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|1T909jfaFue_wi8ZYnYb39E1rLWY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||18.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']|['Thiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|1TOZsRlSXJ9aMA60fzX-VT2Enx8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.3|0.7490000000000001|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoS2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2019.11.030|1TQj5NY8biX_OiXgRMlnUf1P--qo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|163.0|0.561|9.59|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01831f|1TR2awQWfkS7vemjLwAyrITI5ecd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|141.6|0.66|8.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08418d|1TZUGc1i-394vDrBTThmdTNlQ9b8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|211.7|0.674|15.69|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06424|1TZWCgCNPS66CYhrnDYk-xSg_rdv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|219.6|0.73|17.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.105|1Th3etvIlnQBftezORfvfnCLLSS0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|1.5800001684772036|1.12|226.8|0.7340000000000001|18.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.010|1Tl7QW1lkXtWEzw9AnqGsSqLIKbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.92|79.0||2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.05.180|1TnBRTF24QtfUYes0RWPNQQ6z4l7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|1TnZxzLMFpMo06wpR5oNALrKpnXL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C20CuH120I58N20Pb18Sn|CuPb18SnC20N20H120I58Br2|MACu0.05Pb0.9Sn0.05Br0.1I2.9|1.5500001652782691|1.08|239.7|0.81|19.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201800258|1TqFXtMRJ9heMxQ2BTmurTWZp9JN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MACu0.05Pb0.9Sn0.05Br0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|254.0|0.602|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2018.09.072|1Tzuxy1QygYxhJkQqOOLAORGkhrm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C65Cs5H341I249N114Pb100|Cs5Pb100C65N114H341I249Br51|Cs0.05FA0.49MA0.16PbBr0.51I2.49|1.7300001844718749|1.09|235.4|0.604|15.43|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903146|1U7ywax6UBLq0ww5ZY03EmdTM--n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.49MA0.16PbBr0.51I2.49. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.05|223.2|0.7340000000000001|17.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.spmi.2018.03.051|1UB0PquRP-Y4mX44RX1Sv3W5TjDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|134.2|0.67|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|1UNea_z9upH1fYVqaywymIA99Nvg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.73|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|1UV8mXGbETDza3UtkAAkLAaHAs3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.2|0.725|15.62|['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|1U_JH7b9Oj00D4sqZbAQOYvYIL3P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.3|0.6729999999999999|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.023|1Ugoakvgnl3p6kp0U_8poaX-nHO2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|213.3|0.68|14.18|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|1UsvFmaPuzf46FiGLisTAittLzyX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2Pb1.0I3||0.97|200.3|0.488|9.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|1V-KWe68Q--b_QFamb6qeiivB8gi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.8MA0.2Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|191.7|0.5489999999999999|8.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|1V-eA7xDXdCju0L6Z7tq4KM5yAcs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|225.4|0.726|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|1VD4UJAv10h7x4Di6mQRU37xC4On|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|1VOBXRPrjmMWGzPrhYYyvjJc6-Of|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.73|12.0|0.82|0.72||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|1VWsVkrj4p79-ezwMT0q3RfRf7Ua|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|96.0|0.3339999999999999|2.39|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.04.071|1VajEJ8lRJ_TkAkJ95d60VB7Wa73|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.98|0.777|13.58|['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3HT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2019.100341|1VoRi828cn4CWpc4zEcZZkSiu62p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|229.0|0.6659999999999999|15.25|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|1Vr7UDDCbnxSKT_dTSGY_XF-gxxj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|1W4nIuLT8BUgeW-PSERqHyyVara3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|228.8|0.47|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/479/1/012046|1WAMmmTYKty1I9WCyuAJM82D_ZuO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.7709999999999999|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|1WMdRmZfJGUTJDVKCK4fSKs7kCxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C20Cs5H112I70N28Pb25|Cs5Pb25C20N28H112I70Br5|Cs0.2FA0.32MA0.48PbBr0.2I2.8|1.607000171356244|0.013|8.89|0.68|7.64|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|1WTCy4yoEQ2xaG02tQeqdmQcmOsr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.2FA0.32MA0.48PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|176.29999999999998|0.77|9.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.143|1WUjENpvXzctGXYVE41Kv5MPseRC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.48|97.7|0.62|2.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|1WVx4fJUFB9ldiDXy_SDV-kp-zMG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|150.39999999999998|0.58|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|1Wf2DU1Pk1fWzizaTpVOih9aIsje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.758|37.0|0.59|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07999|1WpgfjF6wDNwGp5eOEsLEmpVObGr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.010000214328594|1.09|90.4|0.551|5.43|['PET', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|1WvCWKcknqfndE84FrIhN83oKsOC|a perovskite solar cell with the following device stack: ['PET', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.2|0.5|11.8|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|1X0sRnQ2g7X8ed4C0ei0u4BJddU9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.998|188.0|0.617|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|1X9iZZEvlLvqd2fQXv3fJa6H1RZ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.0|0.65|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00582|1XAYpERwUyvAvLIpZFGqJVLXwLZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C50H300I143N50Pb50|Pb50C50N50H300I143Br7|MAPbBr0.14I2.86|1.591000169650146|1.064|235.2|0.72|18.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep44603|1XBczzh3-PWESzEPXilpxtbKN0TH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.14I2.86. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.1|161.8|0.612|10.96|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|1XMgl4q_YnD_zP3l-Zn9x4PafPvB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|206.2|0.708|15.63|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c5ta05693d|1XTXvU8tq3SJVPdsIv7jKjOg7wZx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|141.0|0.8|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|1XiAegRyiZPo0nTQwa70UMLDUX82|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.0|0.629|12.9|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsami.7b00900|1Xr5zLehYyJWM-d6vn5otnEJBqhe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.81|13.9|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|1Xw31Wahj8Y2sR4r0cdx72VcY_Dl|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|225.5|0.777|19.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ2', 'Au']|['TQ2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8sc00731d|1XzbOa9XEHn6xlVCUL5nfsCHNarG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|169.89999999999998|0.61|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneDTPA', 'Au']|['EtheneDTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201502741|1Y1KZTk3H7HQFSoHoi_SsmRtaDWs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneDTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.500000159946712|1.14|249.0|0.76|21.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|1YBrn37a1clJYCAO-4tp1pkn3wKG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.98|172.0|0.72|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04538g|1YNKNTQGFBEt7rrRy-JyX-e8N-Lq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|132.0|0.39|4.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|1YNXpNTsh2ltQCQhCuHXtGIsLMrd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|133.2|0.68|9.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bi2Te3', 'Spiro-MeOTAD', 'Ag']|['Bi2Te3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900233|1YREI2SvAaoR_m5ZL3z-x_upqIHa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bi2Te3', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.754|16.7|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HPB-OMeDPA', 'Au']|['HPB-OMeDPA']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.010|1YTnUGmxJsgGsPP7ZMOTs5AI8zc9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HPB-OMeDPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.7|0.8|16.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|1YadhdQxtw0g_oM5I1nnTA1oFh4g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.0|0.67|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|1YbkmY-VJRWpqZSM4nKJnfqZW6tJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC100H600I299N100Pb100|Pb100C100N100H600I299Br|MAPbBr0.01I2.99||0.9|157.0|0.75|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta03802j|1YdBOH9Qb2OE9FbOztw0pCCmLVhP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbBr0.01I2.99. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.093|211.0|0.68|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|1YlA36q_ZRQjVk5jeR8vR7xHCgvN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.972|209.0|0.616|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|1YpJvsqYbg75pyX43vWAGoP38tnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.92|188.8|0.52|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01691|1YpMEd8eUBe649K2N_7u8QogsdnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br27C180Cs20H900I573N360Pb200|Cs20Pb200C180N360H900I573Br27|Cs0.1FA0.9PbBr0.135I2.865||1.04|231.0|0.787|18.9|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|1Z3cv4zcpbkHpfiJkXbtmFRHV_lk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.135I2.865. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.06|241.0|0.705|18.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C8', 'Au']|['BTTI-C8']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17386|1Z4kuE6U14xHmHif08OErXMze2rW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C8', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|79.5|0.5660000000000001|3.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|1Z6O-174yRiccczJg82XKfuVVMxU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|174.0|0.66|12.2|['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']|['DFTAB']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|1Z7u4XR5Gy7qJKyFPqqYAehjH82Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|195.0|0.71|13.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|1Z9URO4zN5LGdmVQsDbiTWib4Dk9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.0|0.68|12.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5cc05879a|1ZAP4sk7WiYTy6EMrvp_jh-0m-gX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.74|280.0|0.6|13.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|1ZIiJsr37kmOf2iyTc__h83sl80O|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.6000001706098266|0.601|112.9|0.643|4.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/TED.2015.2413671|1ZUF5uiwDWb1X7puYwFEQguY7IAa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.67|14.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']|['CuGaO2']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|1ZVYX2Z9uq-TbF95KtHj0CPbmvUY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|128.3|0.583|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|1ZXcdFz-VJNOBJYLLPNwAN49Cst9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|165.3|0.759|12.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5757/ASCT.2018.27.6.156|1ZaMdXeyhKB2MCkUes8LShJuSVW9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.4|0.67|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602017|1Zg7cZUAeMsJbbNTqva_NkHMMFvR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2000001279573695|0.58|245.1|0.67|9.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.040|1ZgpkpgCwpHus0DsY3dqCAkfnKSv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br17C83Cs17H415I83N166Pb100|Cs17Pb100C83N166H415I83Br17|Cs0.17FA0.83PbBr0.17I0.83|1.6000001706098266|1.02|209.0|0.76|17.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803600|1Zi1Xg1gK6DR_iyXLl5Op08iRFLq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|183.2|0.823|16.13|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|1ZmsOxD4SEpKDLmaifGbhkvYtvpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.4|0.7|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.150|1ZnJq373SH1J2JC78OYC1Eu34n50|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700377|1ZxiUiz_RVFNO_E1JMuyrx4uWN-W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C32Cs5H185I300N39Pb100|Cs5Pb100C32N39H185I300|Cs0.05FA0.07MA0.25PbI3|1.5100001610130236|1.16|230.0|0.78|20.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.202000995|1_-JKwesVUTKtSXXeLVqMsnuWrGb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.07MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|218.7|0.75|16.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.031|1_DL081j6nv4kSDMxDmZtDhtNr_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|85.0|0.32|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|1_XfyjTjyJjQHBBbF0JzHMHxFojx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.133|238.0|0.7659999999999999|20.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|1_ZlrsTE0OtRMlrhY6gytmbZWEuV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|182.0|0.72|13.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500849|1_bVaHCzaeNYzdBCE3Q1Xv2IoBnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|194.6|0.36|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-2,5', 'Au']|['H-2,3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700304|1a-QwsokL0vA-Esi-CGBSXyP_jY7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-2,5', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|152.0|0.612|9.0|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b11141|1a4ZgOt9iYe2XJev0EXvDijZKY4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.280000136487861|0.72|245.0|0.7929999999999999|13.98|['SLG', 'ITO', 'MoO3', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900283|1aCwt__90I8KGwBxn0chSVJvIVDM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6300001738087604|1.09|214.0|0.77|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|1aPiNVwmRmAt5F8NS0x1_qafs_gX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.7000001812729404|1.04|206.5|0.6679999999999999|14.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'D103', 'Au']|['D103']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226767|1aRfl8PqOjspXWNKE8bxFP-wH9F9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'D103', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.024|178.61|0.722|13.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad7de|1aULRlCTZRoZ1uLnJgnQNsimdSLH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|195.0|0.72|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|1aeAOK0qnf0K97EkeZiDHEqqcYdt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C100H583I200N117Pb100|Pb100C100N117H583I200Br100|FA0.17MA0.83PbBrI2|1.7640001880973335|1.125|167.07|0.647|12.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|1agTQUTzNYu7blzmLtAVcw67bqjA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|1amQR8laOFcL6mZszqauEwzxKOyA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|201.1|0.655|13.57|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|1arERMnrIyCVL_4JHOO9TMUsq-zo|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|171.29999999999998|0.66|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|1avSCYdNW5r66lVRXeJvmpL0Yw2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|193.0|0.53|10.0|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201700029|1awSxSHU4oWh5UPv5jJlItWijko-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|208.7|0.69|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|1b5AxLMsfR60CrnYuY1OFLr6l90J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|156.2|0.799|12.8|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|1bAiAbiJ1UJfpdkUItF2X7Zb6hDN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.1|140.0|0.71|10.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|1bGszpHV9QFOIiFau__hsJce8EHe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|199.87|0.73|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|1bHS-K-dWljuL07v62if8IRG0Y_E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|217.4|0.723|16.25|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b01440|1bIz2Jd-yNL9EzPhgy3ouPh8onrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|216.6|0.688|13.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.10.011|1bKjwwqLR4Y5reAhwNDEa8HyNqMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|178.9|0.62|10.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5086692|1bM-jkgSOcQeLAmmOUHgaptIj82C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8|148.0|0.56|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|1bnSNQcXdrV1H55UZmUxlp8hhRYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|87.4|0.76|6.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|1bwfBe5T0z0kyYxIoG30cTEu2DVr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||220.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1364/OE.23.0A1700|1bzGPNvFIzSEUW2Gc_-jU3YqVci8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|202.5|0.63|10.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07395b|1c6j2y9n98Pdcb5jw2GMm4jjbiva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.72|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|1c8D3Dv-E6QEpLcka2fuel8pCEdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|221.3|0.62|11.43|['SLG', 'ITO', 'JW7', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['JW7']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra08946a|1cA1WqCnemSz_rEuQslOV-hZcsow|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'JW7', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH114I54N19Pb20|CsPb20C19N19H114I54Br6|Cs0.05MA0.95PbBr0.3I2.7||1.07|229.6|0.723|17.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201906681|1cAq1UA9Ge-rXEMCq-db754uNSLa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|216.8|0.7|16.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800149|1cRACZmGs4Efik7hQ77wBc-zvUD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|136.9|0.552|5.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1080/15421406.2017.1338095|1cUejnWe7soZpt9XIfPjI7XaUQel|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.0|201.0|0.7|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1039/c7ee00420f|1cWMhu2rn1-kvke3pGIARr_lLgj4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br3CsPb|CsPbBr3|CsPbBr3||1.352|69.4|0.745|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|1ciQHuHaVrbhWUsht8auzewiy_sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|1.03|226.3|0.6920000000000001|16.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|1cjZUuuUlZvEZLhCNg58s7ljO2g-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|183.1|0.63|10.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|1cq2FoTkyTkqqv047z9j6-CyOHME|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.04|183.8|0.706|13.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|1cr1byQyi-ZL3ISnd9NfrQFUgzJL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|184.8|0.713|13.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta05234d|1cusCDlRJOwfFpDIWRoOs92Px7kh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5500001652782691|0.94|219.0|0.736|15.05|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta06317j|1d1TnNo5ZbDM-8n0lm15jgop13Km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|218.1|0.44|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|1d7PTtKLt9tP3MnWUnYg3D2BIpIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|237.5|0.73|19.03|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|1dB9VV4KZQpy84nF48D9it5fooFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|172.2|0.63|10.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-018-6531-z|1dF3zpE-QfArtfwoThhPHRRwrBU5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.40||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'ITO', 'Ag-grid']|['PTAA']|['C60', 'SnO2']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|1dGpHTzGTivDuK_RMUda5LU2XpC5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'ITO', 'Ag-grid']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.40. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.123|219.0|0.7909999999999999|19.0|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201700175|1dKYzF0BqlWsv6rbqewmP0pfKEM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|199.07|0.74|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|1dM3uMOz4_ZmQaS9DIGG42lqjpHi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|85.0|0.42|1.7|['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']|['PbS-QDs']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04272g|1dNswc5amtyiQUrirG3lXN0M2B90|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Ag2Bi3I11|Ag2Bi3I11|Ag2Bi3I11|1.9200002047317917|0.75|13.3|0.4|0.4|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|1dOPBNs0Yi15fyygYn_y6gR3WRUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag2Bi3I11. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.0|0.77|17.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702265|1dZLGEnep5-pEvYrZXm34-DcX1mH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.73|13.1|0.163|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|1dgCfk7Vz0mKYnH4vColwGmqP3C5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.6|0.723|14.81|['SLG', 'ITO', 'C60', 'Perovskite', 'FTA1', 'MoO3', 'Ag']|['FTA1']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|1dgyeuy0WHaZTEODzBWeh0qV1dpP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|175.7|0.42|6.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|1dn6SbtaZx2SlFRPWF3kzmwFjidt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|216.0|0.75|18.0|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01623|1dtb-1nhlRlhSi35w7GVujibhXLp|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|182.0|0.62|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta03180c|1eDmvwsvc2Xw4BxRTddSAPvoa2cL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|211.0|0.78|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDTP-DFBT:PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PDTP-DFBT:PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b02532|1eE0iODqf6qk_WKB0iwpnzq5vj6S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDTP-DFBT:PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.7879999999999999|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00438f|1eSWaicVuWRg9qLqJZkR0mo7CAw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.11|79.0|0.59|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|1eUXKYKZidQhbycPd9yfCpOz_oyy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.0|0.6890000000000001|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0153-9|1eUZ28SZTn_5hwjmGTvZ10F3WhKy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.07|203.1|0.66|14.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|1eYhWSm3oEBZ8hvmauF6mmteEFTf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br51C100Cs2H517I249N183Pb100|Cs2Pb100C100N183H517I249Br51|Cs0.02FA0.83MA0.17PbBr0.51I2.49||1.06|210.0|0.57|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-00691-9|1eZPXSZNXUQeD94hpy7nVRXZv3ZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.6|0.573|11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZPPHT', 'Carbon']|['ZPPHT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00605b|1esIf5d2upEpycbgYp2j2GjB1vW8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZPPHT', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.446|218.5|0.684|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|1ez2k20CGzn036n0eRw9WqddzHkF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|218.4|0.6890000000000001|13.16|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|1f1_6yDfd3yDWkHvPYSmZyti67_m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|212.0|0.792|18.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|1fFC5DaD2LWGQz8ts4lMJ3UtVFU2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|227.0|0.7859999999999999|18.7|['SLG', 'ITO', 'TiO2-c', 'NAMF-Cl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NAMF-Cl']|bulk|https://doi.org/10.1039/c8ta07904h|1fH5kgmBAiqwWkBSaG57xU1q2tQn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'NAMF-Cl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.0|0.722|18.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta02868k|1fOG05poKsekl3hFLNJbmrwaGsd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|231.3|0.753|19.17|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|1fQLZe8f_8iAR-gS-Q9Vt6TixySd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.01|220.6|0.54|11.88|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']|['NiO']|['C60']|bulk|https://doi.org/10.1039/c8ta10876e|1fZ5XggT9Bt_hmPGghCpCBMZ9ni6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8009999999999999|151.5|0.71|8.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|1fZoE01gdAGTkkXAHLwVogqi68kg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.8|0.74|16.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|1fhpXJyWhfuxTOtgPsS2UyurbM4O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.6|0.62|13.3|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|1fvLaywtEQIxMgS4sZS6jDvdtXIO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|168.4|0.6859999999999999|8.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.10.017|1fysdKmLL6OiuYF1DaMkJE3d50KA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|173.0|0.65|11.53|['SLG', 'FTO', 'MgO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.019|1g46tP3_SNX_5jdkPfUQ1MbNun_s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.167|229.9|0.76|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-12436-x|1g4_ZuLQgWIsBu-3Sbhi4nR30OLL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|109.9|0.32|3.27|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201706317|1g7oCLez25mn33NXxqGhpOCdRl0g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.8|0.7559999999999999|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700959|1gCn5g55pn6CNg4fL_qMz-fdREB-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|200.0|0.66|12.72|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|1gEYv4_5EqsqWxCtBOoabAu0jhmz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|68.0|0.41|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|1gK6u-g9gRlS1_mCb49RhnacXgSb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.063|209.5|0.657|14.63|['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cr2O3']|bulk|https://doi.org/10.1002/cssc.201701864|1gMi2ZV28B6QzsbOs1uFP5FuH0Fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.054|194.2|0.74|15.1|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15031|1gO8fu8BiilOeryfSByJ8LlEHsdd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|199.0|0.7|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn506651m|1gZ0-_bZSLLAcjNvIvWI3SUJ7dMK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.108|230.3|0.718|18.32|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|1gkZLA_gQFYrvbMOwbYKtjftBRHx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.64|11.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|1grs-rqNI9D6EeFJifkH-mEDsFzm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.88|191.68|0.496|8.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|1gvsvKDa37KYLPPutwySyQQmWEHP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C25H128I75N47Pb25|Pb25C25N47H128I75|FA0.88MA0.12PbI3|1.5300001631456466|1.08|236.0|0.75|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09532|1gzszjJD-0fA81F17ThSdU0CYb9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|223.0|0.731|17.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00613|1h6GEI9dtFkOMboKHufhZ_-i-85s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H58I27N12Pb10|Pb10C10N12H58I27Br3|FA0.2MA0.8PbBr0.3I2.7||0.94|198.2|0.7559999999999999|14.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|1hAt5Y6a-2uPbEtypscLn2nZt6Pc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.3I2.7. -Br250C475Cs25H2456I1250N869Pb500|Cs25Pb500C475N869H2456I1250Br250|Cs0.05FA0.788MA0.162PbBr0.5I2.5||0.85|202.5|0.67|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.011|1hE9Xf393wR1oaqLIBGzZRdPuTgQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.788MA0.162PbBr0.5I2.5. -Br3C97Cs3H512I297N167Pb50Sn50|Cs3Pb50Sn50C97N167H512I297Br3|Cs0.03FA0.7MA0.27Pb0.5Sn0.5Br0.03I2.97||0.779|311.5|0.763|18.51||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.202202346|1hEcOaP7VWGFytKQtCUJMQkfr3c0|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.03FA0.7MA0.27Pb0.5Sn0.5Br0.03I2.97. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.3FA0.7PbI3||1.03|203.3|0.725|15.21|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|1hG2hkTJqSvCQ9tLQeAByXGSA8Yd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.71|15.8|['SLG', 'ITO', 'PPP', 'Perovskite', 'C60', 'BCP', 'Ag']|['PPP']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.024|1hQiGacDOq_uXckmJR59eyjpwD-v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PPP', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5300001631456466|0.98|218.0|0.6829999999999999|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|1h_iTpiKimE27pRk9ATCBgyHycFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|161.1|0.56|8.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.04.052|1hcevvfVuS_nvxe-D6W-vt51QNpu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.043|152.20000000000002|0.718|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|1hsilNLE6UXflY2aKMjktADV4pwn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.3|0.657|12.13|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.02.020|1hvaUSdOf2j7UhYYOcRKfR8KipXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578|1.11|188.2|0.628|13.11|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|1hzZuY2imqUZX50Ub2YZ-Bl87E_d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.705|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1742-6596/864/1/012008|1i1wwkkoy0S6IddYY7UTjehfTFgI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|192.0|0.63|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|1i8dgh3mi_mYcsHFkfiXOMmZXoFO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|1i9GAeATiWAzLSRS94b31jk4-crW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.8|0.79|19.0|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|1i9JNiOc3F15UkWIb6XFlOWeE9UU|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|104.4|0.524|3.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|1iAjeq1SUEgxS64Lk7FF2Q0f_zsM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.3|0.659|13.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|1iFlIUhWBEcKtANpqUCI0v1HDEpi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|187.0|0.6970000000000001|13.95|['SLG', 'ITO', 'CuCrO2-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2-np']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano9091311|1iL1TE4oxjM4AX9NOcMm9xyjrJia|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|132.3|0.5|6.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q205', 'Carbon']|['Q205']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra25606f|1iLOdg18addiLh0YUdySqS6zZTrX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q205', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|232.0|0.76|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPrPc', 'Au']|['CuPrPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800050|1iWNjkBeJKzP0R3eeSS86Cd3r5xS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPrPc', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.4900001588804008|1.01|194.0|0.65|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.161194|1iXLqrZknAcZhYFvslKaFtp8i8CN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.0|0.65|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|1iYMw1mtHM8EhS3ODyqN5KMsk0fp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.79999999999998|0.66|10.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|1iassRdw83DYnBuC-HlMvfiJutZM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.03|196.0|0.65|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|1idu7Dydw4NHq5B6bLjSY6QM-6rk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.027|206.5|0.66|14.0|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1002/advs.201700018|1ij8-3JCmBJxIzTa-y53hAZwQ8bt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|176.0|0.62|10.7|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|1ishfwjXhNtXaPL3MJKCYrcN8gCS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6HgI3N|HgCNH6I3|MAHgI3||0.2|0.6|0.31|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|1j3j0vv3-jxwG3hnYnqlrvXHCGlO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHgI3. -Br50C83Cs17H415I250N166Pb100|Cs17Pb100C83N166H415I250Br50|Cs0.17FA0.83PbBr0.5I2.5||1.16|225.8|0.75|17.88|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201801562|1j4fJ_tMM3epOYCr1NQB01E9dEiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.3|0.79|19.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|1jEZbLDqbwweX0tS-_Fxu2s5z4rQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|109.0|0.55|3.9|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']|['PEDOT:PSS', 'PolyTPD']|['none']|bulk|https://doi.org/10.1002/aenm.201400345|1jIbyMzCIhKW2g07my07HqAfwhU4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|226.89|0.713|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnP', 'Au']|['ZnP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01904|1jQTHrF06VMunD1TSKLV6GnXp61S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnP', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H48I24N8Pb7Sn|Pb7SnC8N8H48I24|MAPb0.875Sn0.125I3|1.4200001514162208|0.813|216.0|0.7759999999999999|13.64|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|1jRjtAqr6_rxLY0sw_ZBQ-di6jvT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.875Sn0.125I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.2|0.728|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']|['CMO']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc03683c|1jZ6QXuN76jiTuqvpyTck89UdHvQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||15.32|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M107', 'Au']|['M107']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|1jhuvWxlrCBzjhy4fQas5Jd5YvHC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M107', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|5.8|0.15|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '9,9-bis(3-(dimethylamino)propyl)-N2,N2,N7,N7-tetrakis(4-methoxyphenyl)-9H-fluorene- 2,7-diamine', 'Au']|['9,9-bis(3-(dimethylamino)propyl)-N2,N2,N7,N7-tetrakis(4-methoxyphenyl)-9H-fluorene- 2,7-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602736|1jigTHri3FPfsu2T1ySDERwQ4Sj4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '9,9-bis(3-(dimethylamino)propyl)-N2,N2,N7,N7-tetrakis(4-methoxyphenyl)-9H-fluorene- 2,7-diamine', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.05|230.3|0.754|18.22|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b10979|1jjrWQSAdelga1sAxYmZNx8riaCO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|202.0|0.72|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1618-z|1jn6fwlDyPnOLgL3Tgt7ieQaatM3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.76|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|1jqLG_-_O4WYlbv7mLPuow1OCIyd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.9|0.738|15.51|['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']|['X1']|['PCBM-60', 'C3-CBL']|bulk|https://doi.org/10.1039/c8nr00898a|1jvPc-KjIJ23PTxKCghTbZVP7tTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br510C1000Cs100H5170I249N1830Pb1000|Cs100Pb1000C1000N1830H5170I249Br510|Cs0.1FA0.83MA0.17PbBr0.51I0.249||1.12|225.0|0.72|18.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|1k5KpXkZcA_Y8PWwxt7eoBjJUXnO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|196.9|0.6509999999999999|11.77|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|1k5tiy_YHMb25dU55WJCXSk44fRi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|214.4|0.746|17.83|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.cej.2019.122298|1kAOYixR_CPnxitG8RyAu4qNAhjx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br183C84Cs16H424I117N164Pb100|Cs16Pb100C84N164H424I117Br183|Cs0.16FA0.8MA0.04PbBr1.83I1.17|1.91000020366548|1.23|127.9|0.812|12.75|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|1kXXMy1w4oBI3W85ELVMl53m7E9q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.83I1.17. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|199.8|0.6|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.04.191|1kctAQy987yvzl3W32HczuehOZIJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.95|212.3|0.64|12.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|1kdTU13fi41cRy8cjiH9VnPH0kur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.37|194.5|0.7|4.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|1kf1ZmF80qSbxRvl7ZEZQctLNb3I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -Br150Cs47Na3Pb50|Cs47Na3Pb50Br150|Cs0.94Na0.06PbBr3|2.2700002420526912|1.49|69.7|0.8|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|1kkRzHIyk7Ixci92Wbp67a_MRuBs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.94Na0.06PbBr3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.534|3.09|0.423|0.069|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700025|1kkpMFSbBgw6mpQy0YZEstvS4_48|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|0.98|225.4|0.672|14.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|1lLatn6mmbe7Y4yNWprkR1tW7qtS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3900002548484283|1.16|52.5|0.49|2.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|1lNOybEgscZDYVNre5O9Kg6EfM3y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.949|170.39999999999998|0.78|12.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc00816k|1lWxylFFWU6YgUC6IFvyE9Z6D4nN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.7|0.77|18.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PCDTBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; PCDTBT']|bulk|https://doi.org/10.1002/solr.201900207|1lgQ889vxC-OOgO_JaDfzOYLIa7k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PCDTBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.959|209.57|0.626|10.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|1lmjXF4iMdHzhfrgdaEAcHDTQZI_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|187.0|0.6679999999999999|14.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.027|1ltwve4UbmXWq9CerlZzkz-wWc_A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|172.0|0.66|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja503272q|1luMicBMgVDU5uNJhI7URkF2DdSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.3|0.632|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|1lu_yQCiuxThy_19WF8PRPlcWbtF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|205.8|0.713|15.38|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-70', 'Ag']|['NiO-np']|['PCBM-70']|bulk|https://doi.org/10.1039/c7nr01678f|1lwGY3V0t4L4Cv6y-hosGBfJMtn5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -C291H1121I400N166Pb125|Pb125C291N166H1121I400|BA2FAMA2.64Pb5I16||1.06|163.70000000000002|0.65|11.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/anie.201905690|1m4RYRWWXfxJj39hHVzoDTjxRwz7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2FAMA2.64Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.5|0.765|19.4|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|1mQwqk5cqFnZvRpoCE-kcFdAQk8f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.626000173382236|1.07|230.6|0.7559999999999999|18.57|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|1mRAuFpkhBAPGl2VFqxaDsAMSaLE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|1.18|198.0|0.73|17.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.135|1mYJTEIiZe93pYMZLDfxhihjOp8R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|92.5|0.76|4.23|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9518-x|1mitXyB6YRZeuhR-mG-Xl5khc2W7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|188.0|0.7|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b03941|1mvO4OoavsuiwyUR5RNK_Cq1Zi-P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.09|226.1|0.72|17.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.07.039|1n14Z51BvpkZvxq1NpaOO9tEuGnK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|204.0|0.524|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|1n1viQzKO0uqN38w5Ob3P7DHlxff|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|143.5|0.71|9.85|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'TPADPP-2', 'Au']|['TPADPP-2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2017.08.007|1nJ3YlSdIikrOSRk3nHczAamzt5s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'TPADPP-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|163.0|0.597|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']|['2TPA-2-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc01637h|1nW5Ey5-qFzJoJm0yBff57AK2qj7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|101.0|0.63|6.23|['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-nt']|bulk|https://doi.org/10.1021/acsnano.7b07559|1nWeULUMUyXmtpSxZkJ-u4cOULxp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|191.0|0.7859999999999999|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.12.020|1nfdVRVePXiStp5Nv9QIsO1rQcQJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.57|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|1nm1PomgTUQmgPzCpBt3Cxlkn_yO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.7|0.608|14.83|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b08669|1no8SXMB-0wK-JPp1zJz5u5xEA_a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|188.5|0.8|13.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201402321|1nsIsMlsryq9x7ROEs91bU_x46IQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|200.9|0.72|13.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|1o3uLpGFJuGh3D330vU2tjJ87YH5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|178.1|0.48|7.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ce00724e|1oBEEYub0bcx01No7f_YfCv1DHBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag5Bi5Br29Cs10|Cs10Ag5Bi5Br29|AgCs2BiBr5.8||0.91|30.0|0.65|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta10422d|1oHzLVVVud9g0lRXJIsLiD0-pHYZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr5.8. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|208.0|0.54|9.64|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1007/s11426-016-0289-4|1oLOC6_om75lxycTGh0GN7tK_igC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.8|0.7509999999999999|16.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2019.134924|1oXLLZ_jfCypzODYj4RxNjTaCnye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|215.4|0.764|17.27|['SLG', 'FTO', 'NiMgO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta02652a|1oaJdpuMH9LYZ-wGSVzfuGjt8-gL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiI4|AgBiI4|AgBiI4|1.8600001983339236|0.65|26.3|0.49|0.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|1onGNZxRWT_hVANN4mT1q9Wqd0DC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is AgBiI4. -Br21C340H583I119N77Pb40|Pb40C340N77H583I119Br21|(PEA)2FA0.85MA0.15Pb2Br1.05I5.95|1.5900001695435149|1.09|235.0|0.737|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/solr.201900463|1ookqUpkuoVptoQ2KVoypf92OfhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2FA0.85MA0.15Pb2Br1.05I5.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.0|0.7|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|1ozQIuQ4SoC8xvRqL3Gj9GCV9EL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|1p7tzI0NTB8HyWN53Zba8S-qCPD0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.05|185.84|0.786|15.35|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||1p93MS3ad_hrYfX5xx9_b5iTcI8f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.982|181.3|0.637|11.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']|['NiO-c']|['CdS-np']|bulk|https://doi.org/10.1039/c7cc09838c|1pEDMeLCvlm6hQui-tGm_6MvuAhl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.5|0.77|19.09|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.7b02160|1pPX-j-pyeNDFv9xf4E-BJ90FSq9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|220.0|0.711|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|1pVXTpBwVzPaFTYZFGtsGh_8Bz2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br49C92Cs5H476I251N168Pb100|Cs5Pb100C92N168H476I251Br49|Cs0.05FA0.76MA0.16PbBr0.49I2.51|1.6000001706098266|0.92|221.0|0.59|12.1|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.10.031|1pY7_HLqqKKF2-byNv-wiUgpG61o|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.17|83.0|0.5|0.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Au']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1038/NMAT4150|1pZDEzFJ4eebIT_6aD0k7HEi-IwF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.6|0.78|16.13|['SLG', 'FTO', 'ZrO2-c', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZrO2-c', 'TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.6b12509|1pphxsSUxJlIPwGsaHHy9aMv3G1i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-c', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||||||['PEN', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.04.010|1px-VRGKgtELOS808UagYvERAj1c|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|104.1|0.6|5.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|1qYM-gewBMQ730i7dgKGRGHzgni0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.8|0.789|19.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|1qZ1pgIM3LJSgZRGBDpkNDVqYrLf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H89I48N30Pb20|Cs3Pb20C17N30H89I48Br12|Cs0.15FA0.65MA0.2PbBr0.6I2.4|1.670000178074006|1.14|199.0|0.718|16.0||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|1qaVrJgM-wrGDAShs7SlH_yUydlE|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.65MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.0|0.67|15.7|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|1r2TBcdDlmMTzCK5LxQ0tAjXUIs5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|227.7|0.72|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']|['PbS-QDs', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.067|1rLXIfDW5bFt2BuTcim6TIJrCjbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|211.0|0.721|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|1rN2SaAjX66F_zrO1xPoruOoNj5b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|58.0|0.28|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|1rQWT0jp3ZJ67-1I9mJl1pEefrg6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.76|115.0|0.54|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4mh00237g|1riaYPC-NPr4uYjfxls2fMS-gcCQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.1|0.62|14.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2941181|1rnF7XV4eBMzMnKQivHIZDVaBvpS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']? The composition of the perovskite layer is MAPbI3. -Br4C4CsH20IN8Pb5|CsPb5C4N8H20IBr4|Cs0.2FA0.8PbBr0.8I0.2|2.0800002217927744||||13.5||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|1rzyAOM8mZw_k7DqrgdA38pz8eQ3|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.8I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|199.0|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|1s-dWBvpmH_nSUBdgg-_IgAZXM1Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|219.7|0.6509999999999999|14.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.04.019|1sFZvSIZZUbb_7MoEiusw0diw4vY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||0.89|212.4|0.69|13.13|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|1sLk2ogJB7OCtZJfpVM6F4naFkeX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.3|0.61|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|1sbpRDYbtb3WFpqsaWPlVFYTQ9hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|80.0|0.38|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'tris(4-(5-hexylthiophen-2-yl)phenyl)amine', 'MoOx', 'Ag']|['Tris(4-(5-hexylthiophen-2-yl)phenyl)amine']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|1shK2NpAf9M9sLsTL2FR5h_3gsp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'tris(4-(5-hexylthiophen-2-yl)phenyl)amine', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00013|1so3tMEEaEf5qyVOC1ZU-4z1TVLh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.88|201.0|0.55|0.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|1sq31onAwDM0rk0uHG7KpiORa7eo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-4S', 'PEIE', 'Ag']|['PTAA']|['2PDI-4S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|1sywKtSaIsvkLb9eZKJ3XEogBlWk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-4S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|103.0|0.667|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|1szovyeNJR-4hgu86Q7y5CrZDMrp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.055|218.7|0.65|14.98|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|1t-xb9TNRJg1p5k_JDQCDlrluraU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|195.0|0.607|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5nr09045h|1t4-qkG5XGASHd86EnUW3tlwW-6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|163.9|0.63|9.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|1tK7ajwgwQHq64pDB2aLEgnKCDSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.21|140.0|0.812|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|1u6NAP9YQgFiN18CXXUwehnAWV4G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3CsPb|CsPbBr3|CsPbBr3||1.28|74.1|0.69|6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBrI2-QDs', 'Carbon']|['CsSnBrI2-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|1uDHDyQz45jUla4L-wD6vjbQUenh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBrI2-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.37|116.9|0.473|2.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|1uGMMen55w_ttKN-RX7Q9OC5JBaO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.15|230.0|0.76|20.1|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1021/acsnano.9b03098|1uIvAul89DKJICiWChwvyEzpYfHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.88|77.1|0.42|2.86|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|1uK5DcLwawRz9r5HKq973FRJg9il|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.0|0.7559999999999999|16.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|1udheItnnD_1FL9Skp1lZ6Pkh4QB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|200.0|0.72|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|1ujW9v1-regFx-vvkOSypVepSXSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|226.9|0.722|18.54|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc05590k|1un9CXKnzabepZvdLi5g2ek0GuPR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.12|221.8|0.8059999999999999|20.01|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|1uo-JAvsCfCY8d-hI7csdcO0mEvl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.09|222.5|0.764|18.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|1uoNe4XZRFkLFSvFV2ta0o53pgn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.096|135.2|0.685|9.65|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104180|1v9g9dU95CAV3TUDAx2hawQZlIMu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|223.0|0.62|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|1vAPmpmW4EFqLgvAFle95wDIiEiU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|1vJQZ3pWVqBp_uukKVHCV5UsbnCI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.6629999999999999|65.0|0.2739999999999999|1.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|1vPR1sdCvsxtVxE0r_cd1V60e2ff|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|236.0|0.675|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|1vVQ54OLWh-MpN-PPONvL3TyetlS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|192.1|0.66|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|1vVfJYvDeImDYFBpH2NjaC92yJWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.987|176.0|0.68|11.8|['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['KY7F22-np']|bulk|https://doi.org/10.1021/acsaem.8b00518|1vd2F59Q65Kmc4Cr4-APejYALLYi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.0|0.532|10.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|1vgJKP66gSqcuXeQ7mtBruIFcjrF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2Sn2|Pb2Sn2C2N3H11I6|FA0.5MA0.5PbSnI3||0.79|289.7|0.79|18.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903013|1vjQt-ZWhWEpSvZn5aJvN7NXMs4p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|196.5|0.711|15.0|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|1vmCOvZ-cuU-kNuOe72shJsDFJlA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|226.1|0.787|19.92|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|1w351rEvajB5zr_3UQXFM51X-Ld1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C20H109I60N31Pb20|Pb20C20N31H109I60|FA0.55MA0.45PbI3||1.061|234.2|0.7170000000000001|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|1w5yh6Dw_PMlSeMLpeOot4vwXj2X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.55MA0.45PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.13|152.0|0.68|11.8|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201605290|1w6VeUMt9jsLp4S3PL75qYRk1-Re|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.01|207.4|0.758|15.89|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|1wXNQG_uT5YE7KlRbmJKmz_zyDiT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is FAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.1|156.0|0.64|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|1wc5C-SEuOeZf4HGY5YLOGJdALEy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.542|199.9|0.679|7.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|1wg-50HehU4mM2fSnhyQLwClUZL-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|199.8|0.71|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201804419|1wlK5uot96kfMjdi7gFCikULhk77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|139.0|0.42|4.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta02851a|1wqtB9Sn4X86mwUA9cPeQSQAUhcJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|140.29999999999998|0.623|8.13|['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|1x2hyidtMCeL1LAEz4ZxdZsUAqfA|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.3|0.685|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00549|1xKwc6Of1ckGdWQ5j5HHh2O0ZKOs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C34H187I51N51Pb20|Pb20C34N51H187I51Br9|FA0.85MA0.85PbBr0.45I2.55||1.046|225.0|0.76|17.89|['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'rGO; Zn2SnO4-fiber']|bulk|https://doi.org/10.1039/c6ta04726b|1xOkQGoONVRDEnkgpjzrZl71Bt6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.72|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|1xdnuFaSDSMdxPhivnqskBz68m_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|174.4|0.48|6.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.03.017|1xe7EtXVFtrp7CxvGg6qDOnmW3nS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.02|224.0|0.7559999999999999|16.8|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|1xrj9TvMvW0zzLsTNjFq6goczR_q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|169.1|0.6940000000000001|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp00073d|1y7qilBIxB3qCqLQ85CuCuHunPDy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|153.0|0.764|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5nj02957k|1y8T9RlQrbu3EyVprFWXoQAshEzU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|189.0|0.662|12.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|1yAIz_vW_e-CsUoha62o0C-wEcPA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.230000131156304|0.2289999999999999|262.0|0.387|2.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.160994|1yCNzQ1g4_4s-i9ZIz_40TSCMlPZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.02|220.8|0.753|16.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|1yGix2-GCjYk1Ap7XmpQnsbL34k0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1007/s13204-018-0836-3|1yS2hKHkQ7Ljdd7yW-GdcOURCcHF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|184.7|0.568|9.62|['Silk', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201903357|1yZkO1E_AUvwOLA7RDcIzi0Fgoic|a perovskite solar cell with the following device stack: ['Silk', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|135.1|0.48|5.71|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|1yhRcPM-qSf4YvCwTNGyQRogPP0Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.9|0.746|15.82|['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|1yiqTb03h-Oi0FKxlBQK-0aA_hQo|a perovskite solar cell with the following device stack: ['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.78|17.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.7567/APEX.10.075502|1yqUfYXfQbjw1UYyeHY78SUq98YB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.156|198.0|0.799|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201908298|1yxkD0x5K8ZKYf8WTzTWLt2Q1rTx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -Br9Cs20I51Pb20|Cs20Pb20I51Br9|CsPbBr0.45I2.55||1.25|120.0|0.62|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07968d|1z-huTWlMFw9gMLymGretmmXZWKX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|212.6|0.74|17.92|['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|1z6PrQu05g8vo5nFp2VRYqjvmcX8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.2|143.7|0.78|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/sciadv.aao4204|1zAO6flGUsuLiX5LIeKQKbf6Wevp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|173.95|0.685|12.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|1zDdMGD3zP08qIIYo9e1PMSNzHyD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|166.1|0.66|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LHTM-1', 'Au']|['LHTM-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.085|1zFtR9PIeN9X2A2Bm2GlN2mKqTRg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LHTM-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.96|158.0|0.65|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDI', 'Spiro-MeOTAD', 'Au']|['PPDI', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b12579|1zHz_mrDkaZIc2pBfFo5nWTv5uil|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|84.2|0.25|1.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600132|1zI1HpAfea7MR-JOQ1rcWsR41Lm7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.815|213.7|0.604|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|1zL6XXINZVCx4LOo4MsGvjAw1unk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|209.9|0.68|15.42|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/ente.201700437|1zQmwRuhQ2-9BAcPyr26dI1oh7X1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br12C25H150I63N25Pb25|Pb25C25N25H150I63Br12|MAPbBr0.48I2.52||1.038|182.4|0.7020000000000001|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|1zVEFcet3N1wyDd9nMSyMtmracKP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|135.2|0.62|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|1zWCpz51yXekiCCPnemvRgugPiEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br25C40Cs10H207I125N73Pb25Sn25|Cs10Pb25Sn25C40N73H207I125Br25|Cs0.2FA0.66MA0.14Pb0.5Sn0.5Br0.5I2.5|1.3100001396867953||||10.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|1zWgAfHE9Wd6ru8Y_I3ZN4Px5BkR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14Pb0.5Sn0.5Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|230.8|0.772|19.06|['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['Si-OMeTPA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09716f|1zdpwUq6D1rCMq0ZpiURTpheDVWl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H534I300N166Pb25Sn75|Pb25Sn75C100N166H534I300|FA0.66MA0.34Pb0.25Sn0.75I3|1.2600001343552385|0.5|222.0|0.63|7.1||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|1zhz8GIaPSWTF_zB7PqgT8RmhmAo|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.25Sn0.75I3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|1.780000189803432|0.81|88.2|0.55|3.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c3nr00218g|1zmulCNanV9cP-UgJViIBkEIol_2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|236.0|0.688|17.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.9b00350|1zrTEydzdcO5PkrjL2yX7Vj_Cwtu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|233.0|0.72|19.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103867|1zttG7YtryckZGEhH7MRIFWN9qaz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|118.0|0.49|4.4|['SLG', 'ITO', 'styryl-functionalized GO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['styryl-functionalized GO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|1zwPz_dggR3lO-3s0JDP8UHnEYAQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'styryl-functionalized GO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.06|129.0|0.68|9.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/ente.201800986|2--ZKUeezFmRdnoXWarzufvsr1cH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.065|215.0|0.71|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501310|2-AQvDx-CpIPhLwk8aG4xBgv1zV9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|259.0|0.772|21.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|2-ELFSFUY-mr41yq-VXdNlMKh0yD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.51|51.5|0.77|6.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20831|2-H5e4PjqkHlY7wPQkJVzorItOjh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|197.2|0.653|12.36|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|2-WSE9cKljVRFRWT8AqdW34QeL8R|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.82|90.9|0.44|3.3|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1007/s11082-018-1652-4|2-Z1SQvCraCa21yCVRZrgP8-T2fF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.12|224.1|0.677|17.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta04131h|2-_PQiaH8NR2Kmah0FTf1Hsbs-CX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|209.8|0.504|9.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|2-cCGo3yr4lMjsmZb6b6aBgSKiE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.0|0.499|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2018.1456043|2-i76OFfGNc1sUk-PXLe0HWyc7E8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.113|191.7|0.743|15.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|2-m0sHOSqNesKe99nI_gP5hU2bPa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C9H32I13N5Pb4|Pb4C9N5H32I13|(4AMP)MA3Pb4I13|1.8900002015328567|0.94|70.5|0.64|4.24|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b00542|2-yvuNYwJeqlWq7SVd6rDy1HsfLD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (4AMP)MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.061|219.0|0.682|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|20-plneyYTxFNu_FMrO7AQrDIrd_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.72|15.7|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.inorgchem.8b01030|209i5Ki1G1ySA40sgro0CIsc0FQ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.32|153.4|0.795|16.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|20EEhF1wvqdGRsNpGY5zjeQ7aP2O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.0|0.601|13.39|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|20F1vMjVAVdWfschMOqe1e2RKGyo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|147.0|0.63|8.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|20OttzzeZbHVZtUOSyuDkTRGfPDS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|218.8|0.7|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.058|20WcMCoCO2dyvVGgJjg3jISNCqWh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|218.4|0.705|16.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|20d5nGVdwpfXuNfThLRq6Tul1bko|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|186.1|0.45|7.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05032|20jDZGMgPH3ZCf-cjYw6UdeP4zka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.07|207.0|0.685|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|20nJA9CLj61uKTR1PM0z3soNvl2n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|191.0|0.64|12.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b09537|20osLqxgFyki-i3_tx_4sJqUI86T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|226.5|0.71|17.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr07377a|21ULJ2ryhz2Zpc735NObSiwe_MFF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|173.1|0.772|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|21ebMBwFizupOxlw7pdj4S4GLR38|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.119|222.0|0.75|18.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|21kQUiVgqRMxLd9E0Gq9ATVxw-y0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C75H378I181N61Pb60|Pb60C75N61H378I181|(PEA)2MA59Pb60I181||1.06|224.5|0.773|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|21t6VHZCMZpjeRpTzcYZ0Y2vVH33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA59Pb60I181. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.125|217.3|0.636|15.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|22ASMV8PKYPfhb-FP_AB6Wb1QKiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|199.3|0.48|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|22D6anAaiPG__Oj-x58mGehDReYv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|176.70000000000002|0.643|10.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2015.05.027|22OcAJmDwfiVIsn6lW3ExX4A-nxY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|212.31|0.65|14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|22R4Y97Bh9oADnMyM-RSbRHCC2hz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|158.1|0.54|7.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2018.07.005|22RQDZSKfdV0MFIVj-KZUnO8jt7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.8|0.611|12.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.018|22Vb9xxpeH6CLhoUQvw0JSKWNVBH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|228.5|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|22Z7cTXRsGfIz_9ymUsyN8z6wrZS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|112.0|0.37|1.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|22jIKGpbGe3I4ZnaSxJFCih553rw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|120.4|0.25|2.65|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|22kxSVrzvCEyB2Y0T9yGr9Rd6_pb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|205.0|0.725|16.5|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|22qcCp1M8-LfPo0lqKV0eSC8HRj7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.81|93.0|0.47|3.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3938/jkps.69.406|22tFh5lAW12wFVDK5qx1vuNmWHrw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.1|0.67|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|234SZ9qvuRZ1W6TxGobLK5_o8e0g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.11|250.0|0.8170000000000001|22.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aan2301|23HRCINZTLOwEzZl3De-Cz5f2I4-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.9|0.65|13.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.008|23HkDH4d6OZ9Jrmb-ftjheMtHxoV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|201.0|0.72|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|23Q6T5JvcuxEiIc4cOvk0RMLrvi3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|149.0|0.67|9.27|['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'Ag']|['CrOx']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.150445|23U2y92d3AWc7jWCglmF-zEpfg1b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.747|161.52|0.532|6.42|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|23Vga9G-lFCtzzGjPKxInJd0M5W3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.6000001706098266|1.11|200.0|0.69|15.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|23YhrWQtG-0gAKedvGB2IQrbcSeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.7|0.75|15.38|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b07192|23ekjMtLsMuePBFQgoRFl3wA82gh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.6859999999999999|131.5|0.524|4.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|23gxknlfyt_YA7ULsShEqdFIsIPq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|161.70000000000002|0.43|6.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|23hyzfJK6XXrUKSRn56AcKOLwGPz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.7|0.639|13.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|23lpbeULRx6o43ZTR4kHP2K6nKC6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.2|['SLG', 'ITO', 'CPE-K', 'Perovskite', 'PCBM-60', 'Al']|['CPE-K']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms8348|23pHnSmMXL5qSxMadVAhc4H23Mqq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPE-K', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.7|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee01337f|23pW3AQ4Ghoaois_WAiT9G1qWLcb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|220.0|0.498|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201900885|23qTbMuhrV_UBZQ_lXN4w72sHL5S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.4|0.745|14.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.3390/ma11071073|23su0fYg5J2QFYNx5YQuPRtxTXCk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100Cs5H517I83N183Pb100|Cs5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17PbBr0.17I0.83||1.043|211.3|0.62|13.57|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-np']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/slct.201800804|23u8ER2MDS17tNx2pGBF3tVtsGpf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.8|0.76|15.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|23v0gXAog3oTUPA8RlpOrkzOEr_X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|213.1|0.7290000000000001|17.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|243M64LwhXdo2OQYj53NL-caY5S6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|145.0|0.695|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|24849en1e03joKc20T62RfUo-l8o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|142.4|0.6779999999999999|8.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201900375|24EHdxdO4efssw0Yr4MvCtk4gZVr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.1|0.68|12.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|24EVHH-kv1UpjgIEbT9lBUh5VAIF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|109.0|0.575|6.56|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Graphene']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/smtd.201900449|24Gpn8RDMfcJS_Xdsy0JGbULJ1rC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Graphene']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.56|9.09|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|24HAZ4b3wVDfVufyD9txuJ5DtVH_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.08|236.5|0.725|18.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CaTiO3']|bulk|https://doi.org/10.1063/1.5131300|24R3buHp3n9AQ8v_hU0bRQ9JsuYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|195.0|0.69|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|24T6c5aCBj_5UjXRi4rxrMfua71U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I4N2Pb|PbC2N2H12I4|MA2PbI4|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|24dnXNBqgmOiojs7_ijsLkJeGU0-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PbI4. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.5|195.5|0.637|6.25|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08679j|24hdfwyAmn17rB2uTgP5M8eVbX_A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.01|220.22|0.773|17.33|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|24mvrvx3ry2G2dHttB-meNyJFAZH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|186.6|0.55|8.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon-nt', 'Au']|['P3HT', 'Carbon-nt']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12200-016-0566-7|24p0EE9gDUKF8UREsoHUHiIhvisL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon-nt', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|81.19999999999999|0.612|4.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|254_FaQHMjXSMWYupjERdRgqlMXZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.84|212.6|0.5760000000000001|10.29|['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO-c', 'ZnO-nw']|bulk|https://doi.org/10.7567/JJAP.57.06KB03|25PGo4UCluOWTHhMiky-Ofzb7dXa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|235.0|0.785|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|25PUpJvK8E7-slE9wcIqgNFA3d2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.01|196.3|0.633|12.58|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc01224a|25Ts-xiWUDqWMDhOWfqjzDeDEGVx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br87C85Cs15H425I213N170Pb100|Cs15Pb100C85N170H425I213Br87|Cs0.15FA0.85PbBr0.87I2.13|1.7200001834055632|1.22|154.0|0.7340000000000001|13.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'AL2O3-c', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'MgF2']|['AL2O3-c', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02179|25bmlG8TtsyfqXv6sOdcU5ZP4ltx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'AL2O3-c', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.87I2.13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.1|0.732|14.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|25c8vTOySZ3YfiXzIht3864whKLP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|198.0|0.41|6.87|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|25fNznUrQXeT-BiagkqtXrNmmJcH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.1|222.0|0.68|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018810|25h9rSVj8-BwYY7_BZGs8-OKpzOT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|0.99|77.69999999999999|0.556|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|25i7emsBqVjwIfD7XZzpzjS2yt0q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.085|233.0|0.83|20.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|25kO9AlZlELp2k_UB_2JhGUswupx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.623000173062343|1.06|205.3|0.696|15.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b03116|25ks5RNTocugdc74XxHBVROiJZQS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|98.0|0.45|3.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|25oLFq5bgTt6DSOR4tgU9gd-UgRw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|115.0|0.69|8.0|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|25tlCmCH0EI8bhO1lx8LmvOlq1qM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.0|210.0|0.629|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|265oZ5gqMlL9DNBFkE7l3Er8otfB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.5|0.7|15.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|268O9wk2H0coE_5EB4G0YHvgO50w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|205.1|0.54|11.85|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ra10603g|269hEn6QRgsTrxBMLIHUlkPB0C4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|194.2|0.7509999999999999|14.04|['SLG', 'ITO', 'VOx', 'APPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx', 'APPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.006|26CVBDhZtZz0qoTagWKgcDdHNNVz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'APPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.135|219.5|0.706|17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|26F7YEQoHRvd9Eedi8eHTecO7y87|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|222.0|0.6920000000000001|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.019|26KaKXPi73BBLYacL3oYccELQ6Vu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.11|224.5|0.772|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|26_fNci025BeXrMf_tuJzrC5Jn2T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.28|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.036|26jXYZ-UYGuk734QQhMtkUWRndLo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.84|211.9|0.66|11.69|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|26knXUHOCPeXFQiMluLhljD-ecvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|169.20000000000002|0.69|11.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|26nHSU9cK3FeuGA59Xg9xlHHaO2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|26oj6ytD9tUIAG8W1YRYwrRXhBgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|233.0|0.8|21.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803428|26sACUN7GrgkQWijGBY7IaSpixOY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|235.4|0.727|17.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|27APPkmjHMkFDvWac07fcAymQ4LC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||198.0|0.721|14.3|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702872|27P_1AIbKIRnOB-yTTVPvZRNVg6u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|125.0|0.552|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']|['TPD', 'HAT-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|27RIvdu6mBmoJdw7ehJ13p0Ry2bb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.68|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta03710d|27VqMj7AoOyy2dB_P623lOUbh-zx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|123.1|0.7|6.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|27ZXopBjozNzzpl5S8Qm8E0igfXe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.05|199.9|0.7|14.52|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|27wCpb6ZVUO4fZHLaf52OqgSzXc7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|88.0|0.52|3.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-015-1168-9|2808CaGHXLQvKg534s-TJDNHU6pg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.05|220.5|0.7|16.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|281Fm1po6tmrkJ066EXhLYCnnbvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|282sWRiiVG40ZeHkuii5UiZjWWpi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CsI3Pb|CsPbI3|CsPbI3||1.22|127.0|0.81|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/sciadv.aao4204|284XsN6ndZAvJqX681PYh3kOsjiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.111|224.0|0.6970000000000001|15.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|289AOwd-nU9YWlfoo136m5SePIfK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.199|148.7|0.787|14.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|28IjnaUTmF9jlK_PbQ_xWJGkRWtY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|212.4|0.782|17.62|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201900198|28Jj7omZV4KSKlNR8xgxcRQYUuFo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.05|214.0|0.733|16.5|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']|['IDF-SFXPh', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|28NdrtC56vnq3zspaFP7JkBbNF4G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7170000000000001|151.0|0.62|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|28OZOggmCDp8RDdHrBGhRjlH2mqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|210.0|0.77|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|28OhRqya2T9ij6SDWOqhs6BxbRny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.556|76.8|0.78|9.34|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsCuBr3-QDs', 'Carbon']|['CsCuBr3-QDs']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|28TBbyJY3Yj3fWb3YgzyHkh-Pp2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsCuBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|152.89999999999998|0.5329999999999999|8.22|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s12274-016-1407-0|28Yct5n-rpfmCAAncA6vDz5ajwEM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|216.8|0.738|15.98|['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx', 'Cu phtalocyanine']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|28cByu-Ex74CRcE2Gb2N2azsdO8F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|205.5|0.7190000000000001|15.43|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'IT-4F', 's-Bphen', 'Ag']|['P3CT-N']|['IT4F', 's-Bphen']|bulk|https://doi.org/10.1039/c8ta12028e|28p3F6G3fVsu2piRhzM83c65HasF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'IT-4F', 's-Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.482|131.7|0.57|3.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aae2ab|290gB9_hEV9y4pTtArj-LX9skMpk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.954|224.2|0.626|13.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|291D3DMdoYPhupp7a6ZFHDI-GzBa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.94|170.0|0.57|11.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr04179a|291k1ZgHCoB7B6y6jH4si_9Nccvg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|150.0|0.594|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01026|2940SYcA5SHnw3GEGxz6HF40yV7x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.0|0.612|13.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|2962PfULyRFztLBjMKOwwfYGdzU6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|142.89999999999998|0.67|8.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|29OdWb7QzzyZNojiKad_1m_MLDpT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br151C100H505I285N195Pb100|Pb100C100N195H505I285Br151|FA0.95MA0.05PbBr01.51I2.85||1.02|236.0|0.769|18.5|['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.018|29Plftw7jf_YQ6-FgEB1HyblPgHq|a perovskite solar cell with the following device stack: ['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr01.51I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.141|220.8|0.805|22.08|['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTM', 'F6-TCNNQ; TaTm']|['C60; PhIm', 'C60']|bulk|https://doi.org/10.1039/c6ee02100j|29SL4vNrrvuM5exD0VOW-_bGTiiZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|228.0|0.79|20.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803428|29_SuWSN3tWR0GYuRDmdmXSE-1Cz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|169.20000000000002|0.68|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|29cH12BitBKeZOh6eetPu7YjULw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|146.6|0.49|5.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9pp00071b|29khpKJouXGkvHu4C2rIYvgN-JDV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|138.0|0.49|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|29nGp1MfyBn5jEhlT5xnbQPcJ0Bc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.71|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7203-0|29nc_NF0iVPBcqFjEft5ASoYco6M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|226.3|0.74|19.74|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'TFAP', 'Au']|['TFAP']|['SnO2-c']|bulk|https://doi.org/10.1039/c9cc06155j|29tGUVO8f98ZRn908xVw-H7EpIsj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'TFAP', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.73|54.1|0.58|2.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'FTO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.12.121|29y9hdCnQXG0jfkV5fdspG782QG4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'FTO']? The composition of the perovskite layer is CsPbI3. -C331H798I300N100Pb100|Pb100C331N100H798I300|(PEA)0.33MA0.67PbI3||1.1|152.7|0.65|10.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adfm.201901652|2ACYN_qNmI5D9L0eFy85Zg22fJs8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.33MA0.67PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|180.0|0.71|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201501289|2AaK7fpq2fJw_Vn2JXm3-Ll-sf1U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|223.0|0.5379999999999999|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700484|2Ad19paT4IGT2-ESuJhwgw7uKfh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7500001866044976||||||['Unknown']|['Unknown']|bulk|https://doi.org/10.1002/solr.202200008|2Ak9L_5QRIMD6IxaCASbxutV2z4u|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|228.1|0.7979999999999999|20.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs; rGO-flakes', 'Spiro-MeOTAD', 'Au']|['MoS2-QDs; rGO-flakes', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|2ArxXL97LTzfIa_XajySTtSy7ea1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs; rGO-flakes', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.2|0.531|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|2AsdAh0DgCAXUn96sMNx4OQU3qD-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.0|0.77|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02808k|2AwcfTwhtrY86N7DZjJRKOFjShAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|172.2|0.722|11.02|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""tetra{4-[N,N-(4,4'-dimethoxydiphenylamino)]phenyl}ethene"", 'Au']"|"[""tetra{4-[N,N-(4,4'-dimethoxydiphenylamino)]phenyl}ethene""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05236j|2AxdRBNCypaxQXO4hf91GtES8Ivf|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""tetra{4-[N,N-(4,4'-dimethoxydiphenylamino)]phenyl}ethene"", 'Au']? The composition of the perovskite layer is MAPbI3." -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.111|185.2|0.73|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|2BDoK-WF4fFksPHM4lZ4CMI5ZF0v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|11.7|0.59|0.063|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|2BOCv44cJOaDaLK69JYJ4q3PIu88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|143.1|0.551|7.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HMDI', 'Au']|['HMDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra06876b|2BaTT1EqrLU_wsF804upLyIy3ryg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HMDI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.141|234.4|0.753|19.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|2BaijZGZhocc2esa2huK4BZk3dg3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|135.8|0.523|6.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c6ta02918c|2BcYg2e2GXKSIQIXIUtbVD8CULxJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|227.7|0.71|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08536|2BfTzqxhODFO2691LQIt4cRNNRpj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.2|0.67|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|2Bkk29pVD1Xz9hCo5zGXz2BI_y2r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|171.0|0.56|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201900878|2C-4X0mSe_AC9ns-2W-4fO5eSmRb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C203H1148I600N261Pb200|Pb200C203N261H1148I600|(EDA)0.015FA0.29MA0.695Pb1.0I3||1.075|237.4|0.77|19.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|2C-5JZLWb6rlm2oIjKopD74r-3Q_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.015FA0.29MA0.695Pb1.0I3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.570000167410892|0.77|166.1|0.42|5.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|2C4rnvRvOvBXUTPCdMDqWVb9rH-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.01|154.60000000000002|0.75|12.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra13289a|2C6iqxT00JX-44WW9NVhIqjzould|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.0|0.73|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|2C7poZ_M87A1fo6A320g_QIpGpcn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.273000242372585|1.181|70.6|0.731|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5087246|2C9xUhFcENs3tKKmkbyosAy-6R6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.162|87.2|0.573|5.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|2CK3WBQpb7WblE09m0H9OOfmzvAW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.77|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900877|2CSXiC9NLE3ufPBY6404lkszWUwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.8|233.1|0.5|9.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||2C_fYSJ6h7RRZSj_uwyYQ62vuPeo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.03|209.0|0.209|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|2CmUa5qpl1cmI8LuEpmOIkt-Ij40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.01|191.6|0.64|11.86|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsami.7b00726|2CnJqanMsAig3qzlt9EBUG40rhIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|2CofHaLOLr2PaIVRUX3310Im0bBv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|69.3|0.45|2.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|2Cw4I5yJCaubhgfuDNldH0OlMrzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.045|219.0|0.66|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501320|2D1-7NRtRivc7keify_xxlxFzxP1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.436|145.0|0.377|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|2D8at4GJLWftF_rpT7RqQDGkiT7L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|196.8|0.491|8.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-017-2326-z|2D9rFFNEqA3U8A_Rum5E8TE66Iit|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3Cs5I12Sn5|Cs5Sn5I12Br3|CsSnBr0.6I2.4|1.400000149283598|0.563|62.25|0.5770000000000001|2.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00100b|2DVG8a8EO3ZETCO5Ky8fY0h0rBhK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is CsSnBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.94|170.10000000000002|0.63|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-AZO', 'Au']|['TPA-AZO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc05694g|2DYQyJqqLqQYniZ42UShaPoD-C9i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-AZO', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.962|134.0|0.598|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b00937|2DZFiOkTdcch4PFbmD6Yu15Cs8vg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|0.8|50.0|0.55|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b09300|2Da77vUoaDmN6PrqrN6VTmD2UfD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|192.0|0.74|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.5796/electrochemistry.85.231|2DdQuxDiQKNTOlR3erh84b4hGXGX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.5|0.6509999999999999|13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|2DdWQv_HftOYvyvs7iCQiHdNPrcL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.1|0.6990000000000001|13.44|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|2Du6u6JWA5YWeRToICLcIj2LVfkn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H40I24N16PbSn7|PbSn7C8N16H40I24|FAPb0.125Sn0.875I3|1.2500001332889268|0.06|29.46|0.3279999999999999|0.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|2DyqMaGMHHJGRAcv8KbcKOKdmeZ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.125Sn0.875I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|142.0|0.75|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|2EDYUL78qJTHJecqVVAKzXzm-ycV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.159|211.2|0.725|17.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|2EF7w9auZaesTiyundRJ5-IYyH2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|216.9|0.787|19.03|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|2ERDQ3bzj4vOs_JsVEBT0q7Qbsot|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.5|0.754|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Carbon-nt']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226765|2EZ4Xp96MBwd4eSArBvB8H6ruWDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|148.0|0.5870000000000001|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2416913|2ErJ0WrDmFYpw_akR9QV9X4WRzgE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Black phosphorous nanosheets', 'Au']|['Black phosphorous nanosheets']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.018|2EsptCl53Pg8NP0KL2-VT1cbkyfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Black phosphorous nanosheets', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.5300001631456466|1.09|232.0|0.758|19.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|2Eu_ux9XTFV45w8tjxt5wpUB_qbN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.0|243.6|0.774|18.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20054|2F3TSq9P9cfjtKOXRfuYVarlHCK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br36C87Cs17H435I264N174Pb100|Cs17Pb100C87N174H435I264Br36|Cs0.17FA0.87PbBr0.36I2.64||1.0659999999999998|230.0|0.738|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|2F6R6ZmCiDRjO7RoD9NZvEghjJTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.87PbBr0.36I2.64. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|237.6|0.7909999999999999|21.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|2FL1tzFwX83dLnvS7xlk6C7YYhop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.2|0.68|16.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.232|2FM-b362QE31BbXNNL77atgGhFG-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C33Cs67H165I225N66Pb100|Cs67Pb100C33N66H165I225Br75|Cs0.67FA0.33PbBr0.75I2.25||1.17|152.0|0.7390000000000001|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|2FOpGhcJq0nLTffukbDb7FO4vqIC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.67FA0.33PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.069|224.7|0.809|19.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C8TA05282D|2FWJDogiR7hkaCxHauueXaCIoiCp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.965|191.5|0.5760000000000001|10.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|2F_gkTeGk8UT9tcgc5EdbCYofYlz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|217.5|0.633|13.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|2Fa3y3Cnpqn_MhXwMQT9oWmpKlO6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.051|216.2|0.725|16.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|2Fhfy7luK9VFUOD76oiJZN7vkiZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.12|242.0|0.736|19.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01262|2Fjmj1SflMWFFronvK21VCkLKuX3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|129.8|0.35|3.04|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|2FqD1dG3crGwwfj58_H2GYKEuHT2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397|1.01|229.4|0.708|16.39|['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']|['AgI-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b14023|2Fr2xVXu34sTWwgfYgzcVg9fwB0-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.4|0.72|16.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.05.019|2FucblN8DZ6f7MhvGDD0jtT7HYPJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs20I60Pb19|Cs20Pb19I60|CsPb0.95I3|1.7500001866044976|0.945|179.0|0.8|13.3|['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|2FybN0S-3wR16xGmbG_S0UV0Ob3q|a perovskite solar cell with the following device stack: ['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.95I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|227.7|0.74|19.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901171|2G2eZjCgpt1FbAhBk1ZTOGz2jhMg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.456|75.0|0.825|9.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|2G6-UwbnzPRzfWusF9zhSHtWJGWa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|171.9|0.68|12.24|['SLG', 'FTO', 'CrO2', 'Perovskite', 'PCBM-60', 'Ag']|['CrO2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|2G86kHQhQt7bswYT5MN_MfrGVZP5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CrO2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||2.93|['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']|['PTAA', 'PEDOT:PSS']|['TiO2-c', 'Ps']|bulk|https://doi.org/10.1039/c6ta05497h|2GGCI8eJ2f4gLW04JzdT_0jwwMKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.61|152.4|0.348|4.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|2GGWZDjF9QQy6GsvczzhfB6GJytv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.01|240.0|0.6940000000000001|16.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5108656|2GP5miXFsdBaimlLOmSy0TMfV0PW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|105.0|0.79|7.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|2GYXvU3dR3VGCPGO5hyhzWsdn05w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.9|0.691|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|2G_29GYihEd1ifIj1CPe2i7k8Nn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2500001332889268|0.125|191.2|0.309|0.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/anie.201707037|2GbWh9-kRIlx1Ohi4Dd0yPf6PhC4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PTAA']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|2GjbB8AF_rOJxMSryKokEfjeb_Cm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|133.0|0.4|4.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1742-6596/877/1/012046|2GutkJkG0RlCooHn9d4vtVQ09gTU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|192.2|0.687|11.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|2H8_ZI4rJK_Y-_xPJDg1J6BHWyrM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|213.3|0.498|10.03|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01076|2HDyCRHvbFGOttKGxQ72N3aDrX26|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6200001727424491|1.12|230.0|0.75|20.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/solr.201800327|2HIVxlYeRlShfblZCc3ugry2kpqL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|198.0|0.68|12.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|2HLQc42qDEI-PSAJ4lnsXw9XdUXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.61|30.0|0.2|0.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|2HRPsuFTymZ-3EjaFLvFWKzAJevJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|178.70000000000002|0.66|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|2HeGgC0bgPx16gbu4CuRu-mwGki4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.3|0.7390000000000001|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.026|2Hi-dO9_IziOV0Vv3bzIUPurJihl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C90Cs5H461I261N169Pb100Rb5|Cs5Rb5Pb100C90N169H461I261Br39|Cs0.05FA0.79MA0.11Rb0.05PbBr0.39I2.61||1.17|224.0|0.73|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.060|2HnR95t3-gt6zCEHnz4WVjcV6e9O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.11Rb0.05PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|191.7|0.57|1.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra17197d|2I3C3hLS3rp-yEAioFi9MYEi5Ozj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|2I4EBeEANlRn7ikOkXbD8L-5_wp4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|109.0|0.58|5.9|['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZrO2-np']|bulk|https://doi.org/10.17586/2220-8054-2019-10-1-70-75|2I52nGl06zCYiaPottfS_mnYBY-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|215.0|0.747|17.65|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|2ID8SAeHSBXX_01fpmkDLsTUgQy6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.94|175.9|0.742|12.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|2ILHYoflGm4EnMNUBNltChkFWmNu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.727|89.47000000000001|0.292|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|2IQ2JStKRJu4gFfLflUa8OxgOmMe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.077|203.0|0.54|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR360', 'Au']|['KR360']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700974|2IQI6x7MM1qSOl60xgT7rfUQKxhU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR360', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|182.1|0.721|13.66|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b11084|2IRHe67qkFjut_P1YJ0IxYdLoR84|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|190.4|0.75|12.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|2Ib7m1fHWwn9Uzlb2fCmFPYdL9jR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.97|195.0|0.56|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03577e|2IcAsEKdjAXK4oXoWccWozHECekv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|226.3|0.78|20.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPBr', 'Spiro-MeOTAD', 'Au']|['TCPBr', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta12597c|2IdqJU9ufs3cREtnoAFSArW8pY6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPBr', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|123.6|0.637|7.77|['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BaSnO3-np']|bulk|https://doi.org/10.1016/j.jallcom.2017.06.121|2IePTEN_MRsDot9wNAjOBCCsY3RV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|199.7|0.72|16.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00731|2IiGpookjino4aIYVUjKU9hXwK9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.3879999999999999|161.28|0.652|4.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|2IiyxJDiHjQ8ZtO4TVtRRHL6EmAb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|232.2|0.66|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|2IrUII73Na9bDuygUBNUpnl9bmP5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|213.2|0.775|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701117|2IxgQ_AiDdHInD-CwWMbNiganXc6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.997|173.5|0.654|11.33|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|2Izsg9GUnpgUdUaQPP2vbiIIPVqf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.079|244.0|0.722|19.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201805944|2J49BjUBhzi0akPY7qIjs0MHdh8e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|183.7|0.56|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00059j|2J5ho4JOoy-rTuZu8jl_qm7bSlUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|185.7|0.69|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|2J752TDmD8RUeEna8cqMoGVNBwtM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.4|0.715|15.57|['SLG', 'Au-np; Graphene', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']|['Graphene-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.9b02336|2J9uhkn9uXX3cQGZkJrhYPxtjwpu|a perovskite solar cell with the following device stack: ['SLG', 'Au-np; Graphene', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|141.7|0.66|9.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|2JFaxutGsFURMEFqTtlpoFK6_rlU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|208.0|0.7959999999999999|17.54|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00328|2JIGlWC3WmDJClz5jQizJgM6QQqx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|220.1|0.713|17.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr08295b|2JTJCc_iZ3X4MLWF1fc5py856hq3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.627000173488867|1.0|74.2|0.7|12.18|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|2JZl4tRCcIByLX9XAvkCrJR97DIG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3||1.02|225.0|0.752|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00112|2Jdj7WxpXpUL61N8VHknuTIGhq49|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -Br13C100H543I287N157Pb100|Pb100C100N157H543I287Br13|FA0.57MA0.43PbBr0.13I2.87||1.13|239.2|0.774|21.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|2JlDTF7-biZrMpXiOpLcLySA4FEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|196.9|0.6759999999999999|14.78|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|2Jln7L9erFMLasQ4nEDmRNFWYlnI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|2Jtfr98-UaY6CROLnAOZ37BCheFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|219.1|0.608|14.11|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|2JzbxdEzwnvtA5J-DN21HNaVTi-7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.64|12.8|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|2K0veuPFE8o5y3qakwVYSeX71Y0V|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||1.146|230.6|0.7979999999999999|21.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.100762|2KEROcU_V-IVE25MBtsuLrogejxh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.25|43.7|0.41|1.4|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|2KG4IE8aGVprKDYLJM53jM-CLco4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||195.1||10.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|2KfsAa7EXsB6UWmX3nTpE7jpa4Em|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|131.0|0.56|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adma.201705786|2KoYGN9P5F-XhyAttt6nz2rB_MA8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|181.0|0.74|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|2Kq_kiPkwacV3fyUsWhq-2BfEWiw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|2L7kCHXmoMu3SQgey1y9JO-Jm9lu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|2L8b7cvSDAJwEaQ2SJyXqd407rSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|158.4|0.7|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 2', 'Au']|['2,2′-[(4,5-Bis(1-octylnonyl)-dithieno[2,3-d:2′3′-d]thieno[3,2-b:4,5-b′]dipyrrole-2,7-diyl)bis(thien-5,5′-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03865k|2LDRSfxSOLaBAtTjHoT-RvUvngQG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|160.5|0.4|5.83|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)"", 'Au']"|"[""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|2LPZYMsAStYEZgTEc4X0lkkCOV4h|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.12|150.1|0.745|12.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ra06363c|2LY-YgF5YHuKREJARg5ctgayDgm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH5I3N2Sn|SnCN2H5I3|FASnI3|||||5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800136|2Lj7a6Z7gdaKqa7DctnKFYZLUW9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br24C20H120I36N20Pb5Sn15|Pb5Sn15C20N20H120I36Br24|MAPb0.25Sn0.75Br1.2I1.8|1.3400001428857296|0.41|27.6|0.63|0.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|2LnD4alnDMUPJ88NIbbUAtaxFOt9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.25Sn0.75Br1.2I1.8. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.03|99.6|0.67|6.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|2LoM3CGLWFzZgNCC7aEqYRzitQJR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.3|0.72|15.98|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Er-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b04760|2LrH3MdrUWjxYVDOAnDxaTHaSK5_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.008|222.0|0.64|14.6|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1002/smll.201501460|2LsqUn-mxyMZ6691t2pY_f0tpm5g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.064|95.0|0.639|6.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|2M4QPrd4qylgPfNY1oWsPoLzF4lH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|60.0|0.64|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|2MAR1_MYa6cIOdhmA_QIGs3goL08|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|202.0|0.748|15.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06394e|2MFaqA2muG-VNBgFm4Qb95uTQm7y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.02|231.6|0.733|17.33|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|2MLFkL2kPCW1bpZabOrqKKan6eAR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.6|0.62|12.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep10557|2MSpnnouM4Cu3429tmQYmoNxnWqu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.231|136.86|0.622||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||2MdOYJ90we_G9ReoRSoHTLSC0wRl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br40C398Cs30H914I157N303Pb200S200|Cs30Pb200C398N303H914S200I157Br40|Cs0.15FA0.65MA0.18PEA0.02PbBr0.2I0.785SCN0.015|1.6800001791403176|1.21|210.0|0.814|20.7||['PTAA']|['C60; PEIE']|not processed|https://doi.org/10.1126/science.aba3433|2MjSuKWGBC-pUSthA8DRleLZDX_k|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.65MA0.18PEA0.02PbBr0.2I0.785SCN0.015. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|121.0|0.6|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10055k|2MoaHqKTgXs0jSlTX2LtyaGv_U41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.044|216.6|0.81|16.36|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-TA', 'Au']|['CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.016|2MrCyxDft6PppSFP8qjCcfoM8zhf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.7|0.74|16.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|2MsJRzXbgW6I4qZUFYzoBzA7XhRv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.2|0.7929999999999999|19.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|2N076_WhJyWgSJhBKCvJ7LyuPXYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|2N0eb_SQamNwTN9OpPTGTahf8AXu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.116|224.41|0.777|19.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|2N66orM8SdI4x2HLb2hnJn_46uNe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -C20H120I60N21Pb20|Pb20C20N21H120I60|GU0.025MA0.975PbI3||1.06|222.8|0.76|18.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|2NPEIurNfEIqI9YcgsHNKLn9p_xk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.025MA0.975PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|164.0|0.42|6.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|2NXlZyXZqdKVcKbu-a08Mu7QzvDK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|235.0|0.802|20.91|['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; SnO2-c']|bulk|https://doi.org/10.1002/adma.201906374|2NZwhI8fcL9n3Mqo_PKAzCbOWaVi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.94|199.5|0.6|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH1', 'Ag']|['PEDOT:PSS']|['NDI-BTH1']|bulk|https://doi.org/10.1021/acsami.9b13894|2Nbqrjn74pIkuIvqEGELJPwR4mnJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|188.3|0.68|12.1|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta05026j|2NczMiAUi8p9kPCsS_1toHgCrl26|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|172.8|0.711|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|2Ne7paGa_DfQw_BJDlFr0SKQhuQM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|237.8|0.62|12.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|2Ne9pknpKjBajG6UVvF-bHBFUTxi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|185.0|0.6|9.66|['SLG', 'ITO', 'TiO2-c', 'CsBr', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsBr']|bulk|https://doi.org/10.1039/c5ee03522h|2Nl8VQyxQoEqRwW6iwDuDTUmfIB9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'CsBr', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.3|0.69|10.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/ab140f|2NsIhDsBYdBmtKHw1tLKV6Ut8xug|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.5|0.5760000000000001|13.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']|['IEICO; PBDB-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09467e|2OECTkfrUCVa9dm84n5z4TSxp8fq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.408|73.5|0.7879999999999999|8.15|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|2OJBVuTincjkN15sNoTx5HHo1X3G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.9|0.6709999999999999|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900972|2OPboiDw2aBEMdsxjDwWmShq6Phb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C25H138I75N37Pb25|Pb25C25N37H138I75|FA0.48MA0.52PbI3|1.6200001727424491|1.09|236.0|0.75|19.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/advs.201700008|2OVBL0SgGWKHOTWPeiliQPRwAn2o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.48MA0.52PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|180.4|0.6609999999999999|12.05|['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']|['Lignosulfonate; PEDOT:PSS; PDA']|['PCBM-60']|bulk|https://doi.org/10.1039/C7TC05276F|2OZ1060LM-0H1lD-ElA_N2PPrFIV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.078|209.32|0.72|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|2Oapfpi4oS2cxmKq26DrS5R4qF-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.0|0.69|13.5|['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cs2CO3']|bulk|https://doi.org/10.1021/nn5029828|2Ol4DRh7gAkkmm8extcuyFc1o5lv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.6|0.652|13.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800061|2P7l2wOEUVGksGdGojb4QpHDPIb8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.999|184.4|0.7170000000000001|11.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|2PAUXQHhRU9URbEAsF4Uq4uTpf9f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.149|228.2|0.77|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.047|2PBweV4R75UXZGO5jMJprlIkM8GN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|215.6|0.688|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS', 'Au@SiO2-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7se00472a|2PI9Id2TZ_lJKU2vJxUSCQ4dwKMW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|195.0|0.41|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00582|2PJ9IQr6hyglEmSHPFFEdo9Xh68k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|179.0|0.6679999999999999|10.8|['SLG', 'ITO', 'PVBT-SB', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SB']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|2POBe-oYLJX_sichv0EpO3G2wmhY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SB', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.81|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|2PSmorFW9fXLyUyQyH3QSQuPgjyH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.5|0.72|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703254|2PXQyd1CO_pS7msLiKqv3woOXFBL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.68|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|2PY6rZhmjcWBre1kHMrUT2M-7QVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.1|214.0|0.655|15.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.027|2P_dQELF6rc_WV2o0_ilT59Z30bW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.3|0.68|14.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|2PfjRgSLFYZvO8iCU7oGk23nAl1w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|171.20000000000002|0.65|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|2PgCUBRUcHE4lq05RI4e5KQzKkI_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPb1.0BrI2|1.9200002047317917|0.71|58.3|0.267|1.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14039|2PhrrHtD0-0U2Hj0mZ0_x2JL7E4X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|2PmDvDwZj7t2FVax6hqKZMnE8pZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|164.0|0.519|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|2Prm1ogrSB3lR0RjLuZBIDBf7jPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|166.20000000000002|0.5|7.41|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2016.02.147|2Q35MPK9o8rkRcT0znl3pRqRTX7D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.542|1.65|0.336|0.0301|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF11|2QIzMiQwgvOOp5UT93U0HUZBmLix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|180.0|0.7|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|2QL55lndIHWWv4IHqin5dhJzCbxP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.6|0.653|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4905932|2QOBF9IJIDpJJE9RxtHH10EAhKLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|180.0|0.64|11.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp; Ag@TiO2-np']|bulk|https://doi.org/10.1002/adfm.201500669|2QTbBrle7uuqQeL2qAs2K39whkCP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.04|180.5|0.7290000000000001|13.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|2QVVUXseo2OpxHZNkqPibJ9b4LJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br3C17Cs3H85I57N34Pb20|Cs3Pb20C17N34H85I57Br3|Cs0.15FA0.85PbBr0.15I2.85|1.6200001727424491|1.06|228.2|0.754|18.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|2QfJkUWCM6l7FV_V2G5LLmt9njwQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|2Qo4ViZ17Kgne6E9wIaxCXr0pg4x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|179.60000000000002|0.611|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900627|2QwRgQEVhBjHVVfGIBbRIUAxvRl2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.570000167410892|1.06|214.6|0.742|16.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.01.016|2QzbutUBfACT93KJ6wStpnP4HpIU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|189.0|0.53|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10091|2R4xz1a7fdoPF1W7e7VMuVRicMS8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50||1.081|221.9|0.713|17.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2418-9|2RhTRYp_v8OY-o8IpamRPabWXq7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.085|209.6|0.645|14.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.01.004|2RiPe3ub3O59JyWPzSRGz2Iwxan5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|200.4|0.695|14.99|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|2RneHgUGwJHV1pJxAPWymwOQrCKs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|148.7|0.66|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.5772/62435|2RrBPnZ4iys8Ox0I4D8FEJ7nB6u5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|224.9|0.57|9.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|2Rt21db_JCUMDlJqhT4fHoMWZNFP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|131.0|0.65|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2014.11.016|2S-XuNThUY93IEnU1bt0TlVgPI8j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|198.1|0.82|15.36|['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2018.10.009|2S0GC6qwBHRyyH_sECtBXTEsN5ht|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|234.0|0.75|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/bcsj.20190241|2S2ina4JqxK7ASyYnOq7O3yo30Zm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.843|97.49|0.7070000000000001|5.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|2S4SfQDiHZUA5PuNiHyqsijXTMUu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|126.1|0.272|3.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|2SEVU1CQeMphyQ7UeO43KTBftVAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.87|123.0|0.617|6.6|['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']|['PTAA', 'PEDOT:PSS']|['TiO2-c', 'Ps']|bulk|https://doi.org/10.1039/c6ta05497h|2Sf7dFv9yvZEJhBNibhgI-zndsjn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is MAPb1.0I3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6200001727424491|1.12|210.0|0.73|17.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/solr.201800327|2Sg2bQkj-HdnW-t5pWlNbYAgEauW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.8|0.76|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|2SimVmfckIQZvkJ5PjSPtO0ZdA9D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|95.2|0.8059999999999999|7.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CYTOP', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['CYOP', 'PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|2SkQRfIYZxD9fq0xAjieLwCCgjQy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CYTOP', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|215.9|0.736|16.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|2SlrGYx3kQG6aK0MgxT-8sPvw4Ks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.75|154.0|0.292|3.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|2SqQN3ji_lxMS40IgezzJsK7OyG9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|200.9|0.67|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|2SqyN9PRCD5oY37U0SJvq6NlQiP6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|193.5|0.65|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|2T4qtpHGUaHp_uINoBwagUZdMMn_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|2TH-_RpEsjfe8jdkh6eqbUUDaUBp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.8|0.738|15.97|['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|2TND9Qkw-6fy3fGiRyau8BQB4N6l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|178.70000000000002|0.72|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|2TUMo3leFEQHegq5vyOQRun7xTor|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.72|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01532e|2T_7wgSHKX-xoUg0HWzWzSjLAAUs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|233.0|0.69|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00938|2TaygHtZBdf_AEmQLsTJfCuMDhi_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|174.60000000000002|0.68|8.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06735f|2TbaSg3GyzlsUJ7Yxmu9KN1jxP43|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.135|230.7|0.7809999999999999|20.45|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|2Te1f7Ks4MHyBSEl1bezhvIxWHyd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.026|204.3|0.6779999999999999|14.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ2', 'Au']|['H-Z2']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|2Te5qozfgF0QH8Ay09U0H_gOzFIx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.092|220.5|0.7070000000000001|16.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|2Tq4Qh9w-bygW272RCrs12kQGrJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.0|0.759|14.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|2TrUPlCCqFuNqddKCSoZ5OTwMgh9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|173.2|0.57|9.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201800130|2TvmroKqiVj5cmv9c1M2XVlzviWz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|183.0|0.73|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F1', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F1']|bulk|https://doi.org/10.1002/solr.201900223|2TzMGWumq2ZtwRorruX0SfOm795D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F1', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|146.7|0.497|6.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06960f|2UMIMl57ZEKwSua41X_cO38Tfhg8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.05|203.0|0.68|14.4|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|2UU9rPez6RbjuShX8z-vgmoOFq4j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.2|0.682|13.97|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|2Ur-CqHBdhI55db2f5lO11xLulN1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.923|81.8|0.426|3.22|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|2UwyF3v7LMpJ3iFIC5mwUgTIF8Dz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.44|163.0|0.372|2.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.06.046|2Uy-e7XD_TSCZNGBq6V80gakf1Om|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|203.0|0.701|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Ag@SnO2-nw', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'Au@SiO2-nw']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b00309|2V1ejeXTQwxEsmhVpQz5i1LeOrXo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Ag@SnO2-nw', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|186.0|0.5539999999999999|9.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00965g|2VEQYBjJnMQ-hYO4FidSX1FTJtru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|145.0|0.63|7.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta09992g|2VJAd9weBMUawALC0bWY5dCUs1CN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.015|210.23|0.713|15.08|['PEN', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.04.010|2VZ5pvC3AJEE1gH7KTfP9M23078X|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.96|221.8|0.495|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|2VZgqaOAp6M2nSNMZn8GHUeGVo4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.500000159946712|1.09|236.0|0.762|19.6|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|2V_RF-16JlpQskWvcYvMjIEvNAn4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|197.0|0.62|13.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|2VdDcNBuLdYa61Pyq2rd8InuJ2pX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.0|0.78|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|2VjIEyqfRXQcPqVbZP2sCH4M4ijy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|198.0|0.73|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00989a|2VkcHu1yRdRUzS3khfVd3CQagyT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.04|205.1|0.634|13.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|2VpQfwm-iqTVNgbHH9M1ejl-22V-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.3|0.7609999999999999|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BPFN-TPA', 'Ag']|['TPA-BPFN-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201900884|2VxmHXuElp4KYoQwQgjh2e1W7qSu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BPFN-TPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|127.8|0.6940000000000001|8.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|2VytZo7V7a2UeMLfAmdIl7bLHQek|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.767|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr02146e|2W0zK0SySoqU3JG5hNnohFaBt6Wp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.03|186.6|0.601|11.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|2W6c48H5AqFr9QPLt-gMP9SKZdbr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7809999999999999|118.0|0.36|3.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|2W8P1_jTeHY_5FjcUrfAfZeUJ5kb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.8|0.598|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']|['IEICO; PBDB-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09467e|2W8wv7IgYw2ducWmoatymIZcEEww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.59|97.3|0.53|3.03|['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']|['PANI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.ijleo.2020.164505|2WKTcOIfZj2ilhNQwDK_LSir_nPj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|132.0|0.606|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-63']|bulk|https://doi.org/10.1039/c4nr03366c|2WMgI1ab115w8Icpl9fizWv3HKoG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|196.0|0.638|10.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|2WrlsgooPds_bxUhk-rTgGnJ4c5K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.118|222.5|0.684|17.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|2WsAHsbOYJ-wUbNqjNa7xxoSIjHz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.92|190.2|0.477|8.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cnma.201800009|2X4MIBmN5Bi5zF09gmapGSo5A1EV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.0|209.5|0.71|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|2XD5fker70_yv5eDBgc_OhaISGAp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|212.0|0.64|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01550a|2XHsOmYU_Yk1MPmKy4KivaEBAu1b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||205.7||13.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|2XKRw08vDNmMEVytcw0XJMVjyh1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.075|120.6|0.65|8.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|2Xbhnp2ap43Jk1xgVI1MEhQlr4-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|219.5|0.705|15.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|2Xnmm3y2vMpbp3pZXEXyEEoyCbbR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.2100002356548227|0.78|27.5|0.54|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06816f|2Y7OjnVPgSRzyQ5xhq_sgxWUohnh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.7|0.56|8.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|2YJPOY4n8P-zrZncxuLlMHBTk5dv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.627|96.8|0.5660000000000001|3.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-aminobenzoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp', '4-aminobenzoic acid-SAM']|bulk|https://doi.org/10.1007/s10854-018-0365-6|2YKE3lkF-yAiSbUD74YKajKV5o2m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-aminobenzoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H36I9N4Pb3|Pb3C10N4H36I9|BA2MA2Pb3I9||0.81|29.1|0.59|1.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|2YSjbgbUBgJboxirIMMrplSwFi8j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA2Pb3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.47|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OBuTAD', 'Au']|['Spiro-OBuTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|2Yd6gVprurAvkWUpaJnq8eTg6i3F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OBuTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|186.7|0.695|18.27|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.066|2Yh0JSk20udze0EpqOMx7QvG0xlY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.5|0.76|16.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|2YmGQ5Dm-SqY8BWhQKlf4tcgBIPL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578|0.86|173.2|0.451|6.72|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|2YsJbdGQJhL6W3wmR5Fo3M8LUjM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.993|166.0|0.76|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|2Z0m_9fO1bNcqt3yk-r-1zMaV7jM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|40.3|0.45|0.55|['SLG', 'FTO', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['none']|bulk|https://doi.org/10.1080/10667857.2019.1651504|2Z8EaMz35Pxhvy7M7cFnZbZ2yKED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.1|0.72|16.04|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01593c|2Z9p8rpbof8kALWjvR1KZ_r-ctV2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.087|188.0|0.72|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|2ZA_TiKv44wWSqCoSvBHL9gcYiSx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|201.0|0.758|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201803943|2ZLmLpCfu4pB1B5XsjNWmfBtgPiM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|238.0|0.752|19.41|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta00973a|2ZPwSYHr_oRfXL2ejuPeZElVnwAG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.3|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|2Zbb2eGhEgO8lrBwWiQVEs-JeUEZ|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|238.0|0.71|17.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|2ZfIW4ZEoaxT5qDzzCjCk-Vy0Q3M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.66|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700271|2ZiONwNPzG0f1LEBPhCI-cpqWNRG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.01|189.0|0.73|14.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8ta10827g|2ZkiEwO-4XCnmRozd-X0ivisyqlT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|220.1|0.76|18.12|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/smll.201900606|2ZmrUxCdu9mZp8c4xH_L4uNBSrtk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|0.48|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|2Zw07FxmvUsuDo73zbs1J6OW-_fn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|2ZxyE5cDkj-cMfzZ00aNsqZ3LtI9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C51Cs4H234I121N37Pb40|Cs4Pb40C51N37H234I121|(PEA)2Cs4MA35Pb40I121||0.92|255.0|0.61|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b01196|2_6sdBE7pmgSRPM-OaupnqbGa62a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs4MA35Pb40I121. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|206.0|0.68|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|2_Q3e6BC-b8e6ZsokMbDiVJSQk5v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|173.0|0.5|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.03.045|2_Reau1Ar5Pel5sPfhZzMsOilprQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.14|243.0|0.76|20.3|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|2_XQgADnnGmlARdACM7sqkQzokNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C4H21I12N7Pb3Sn|Pb3SnC4N7H21I12|FA0.75MA0.25Pb0.75Sn0.25I3|1.3300001418194185|0.7|165.5|0.65|7.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|2_XltZhU3wSuNSBEHXtBAc4wf73u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.977|206.6|0.6759999999999999|13.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|2_Xr_kSH-DEz6Yo_GWwwyCn3djcW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|224.3|0.568|12.23|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|2_axKkXCbQf84C26hDG-nM-m6G22|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|224.0|0.63|12.9|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/acsaem.8b00106|2_iB2YlerRMUop1stXPzeo7O2si4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|200.0|0.81|17.2|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ta05004f|2_qVpG9nrA_0EnI5IV0lG9WTTl39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|200.6|0.56|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00210b|2_t40jPFY1-8Fjnt2U7NXlXUdszu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||0.88|227.3|0.65|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|2_u8Omhx8LvmLfiPy42w07EGhokA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|220.8|0.609|13.58|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|2a0CbjaEROdqdW0oc9DaBpTVOOcU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2600001343552385|0.865|299.7|0.81|21.01||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2022.107078|2a1h0dw11t36er6O7qNHwo8Qa81v|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.175|226.0|0.7|19.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|2aFCtjsmaWp1FBvZyaf6GXu_yRe6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.08|225.16|0.7809999999999999|18.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|2aN8mHATgpCdwWUvLFkMRSoy6WcL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.0|0.779|19.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PolyTPD']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9qm00112c|2aOSP3OW6-txGK1e8XgrJ7Va4UNg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.8|0.62|12.46|['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1088/1361-6528/aa9ac9|2aWXaRmjMkVWGgTkJBpNaZOSuwZE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.554|69.7|0.7879999999999999|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|2aYQh8nxex_CII40NIIwtFuGGc_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|74.0|0.43|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|2aZiOhtU_z0lxfGHFp6gh1zb1tkc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|141.0|0.24|2.34|['SLG', 'ITO', 'FPI-PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FPI-PEIE']|bulk|https://doi.org/10.1039/c5nr04250j|2asfHUaraXzm1swtexnCIvXENr9f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FPI-PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.0|0.74|14.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'DOR3T-TBDT', 'MoO3', 'Ag']|['DOR3T-TBDT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta02502h|2auHOb2elGceH0KTmRoKVxrlX0Vr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'DOR3T-TBDT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.022|10.8|0.74|17.92|['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Al2O3-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505140|2ax8pmTp8ZDnv94hyxtyQ9ICjejs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br25Cs25F3I47Pb25|Cs25Pb25I47Br25F3|CsPbBrF0.12I1.88|1.850000197267612|0.96|135.1|0.6459999999999999|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|2axqHhPHdK5BUn_hbNp8VR1x9fXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrF0.12I1.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|193.7|0.62|12.55|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.039|2b1JvU4ejqjWm--iyME_sqPFYaby|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.972|228.14|0.67|14.77|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|2b2KbBr-h-acV2p7IssQny23hAm7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.17|139.8|0.74|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801050|2b4icJ36Bw__W9ejdEc0V88v8Mt6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|134.4|0.602|7.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.05.012|2b8e3c0u0FZa2sRGzimdBHw0oneg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|202.6|0.748|16.64|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta02490d|2bC4Xmj9giIaVa_9hRw5gKZuQqcS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.0|0.59|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09819c|2bEdSoVdwyJmOoiGSQwAAV7A1neR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|2bLw_C-2eozEVM9_E88xo_OanWUc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C100H517I253N183Pb100|Pb100C100N183H517I253Br47|FA0.83MA0.17PbBr0.47I2.53|1.6100001716761378|1.1|225.2|0.7170000000000001|17.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3']|bulk|https://doi.org/10.1021/acsami.8b16358|2bOgzCTVrTYoiFWTcWC-XtvXBAgv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|85.0|0.23|1.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9091220|2bPmmnLPxC9HYGxJY1E1wDCp5PTI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.5|0.622|12.71|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b10979|2bSka5TZVZA3eHanibJhY7N01sQf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.086|223.1|0.7340000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|2bWsOy22I2_dVwbbtfD3VY6OXKaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|215.8|0.708|17.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|2bt-wZjYB3NIwxFA5_O91C1wHJDG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||20.0|['SLG', 'FTO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800278|2c34485LUJynSdnnqY3rNVD9ixQI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|229.7|0.7979999999999999|18.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201804465|2cCNGCX2KnI6fuwWfoNZcFwmUn1T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|206.8|0.73|13.31|['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['CuAlO2', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|2cCZrBwG3ma3_7XgrQ_fyN0pDUZ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.752|128.0|0.547|5.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974794|2cGv-lCawoBQ9TAcBzbvzxPODOQ0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.0|0.83|17.3|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/c6ee02650h|2cPYJJeMIF2x-SPpzJu7PYxwLmwz|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||1.08|203.7|0.747|16.42|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2910192|2cUHxqwnefSVRyrE3qD8csLx53py|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.05I2.95. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.949|201.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|2cYc-7FS0yLbFydhOjZ37PwesJ71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|178.0|0.603|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|2cl8WQ-GvAvXDdue62nb62l09J_A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|121.0|0.44|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|2clZIsfAaIoTOwdcI-b-78UH8JkX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.124|229.1|0.69|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z28', 'Au']|['Z28']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00395|2cnfgvGeTCrr3dS10R7b4uZuzB4i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z28', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.125|213.8|0.743|17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201702260|2ctFVGDR2ifPaSKXyItLZo-1Z3hj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.087|205.25|0.66|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z33', 'Au']|['Z33']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|2cxmLsV6Y4eQQ5GXCictASQqKHg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z33', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.02|222.3|0.764|17.25|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|2dAI9XIkYaZjJqbXDYVGzcDC3Bgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|223.3|0.79|19.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801496|2dcCCmPeATSrIJz_ZiCf48aBW7bI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C83Cs17H415I255N166Pb100|Cs17Pb100C83N166H415I255Br45|Cs0.17FA0.83PbBr0.45I2.55||0.953|230.0|0.75|16.1|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpcc.6b11880|2duqLwN9mo93utp6ToZZ3egklI3T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|189.5|0.648|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|2dv58DfxafFo01bFXtsjIk6yq082|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.902|200.0|0.648|11.68|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Cu']|['P3HT', 'MoO3']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|2dzLqMZYlddD1NDmKI0X4pvc7ruR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8Pb1.0I3||1.08|225.4|0.794|19.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00112|2eB99xjx9pDkyFivthocHPDZ8Nf2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.2MA0.8Pb1.0I3. -Br21C100H515I279N185Pb100|Pb100C100N185H515I279Br21|FA0.85MA0.15PbBr0.21I2.79|1.5600001663445808|1.05|228.8|0.6920000000000001|16.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta07462c|2eF137kmNim66Cuo4INOAFq6nSBV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.21I2.79. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.116|213.3|0.777|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|2ePJ34363vTyt4wbcy9K3OmdEbQp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.05|205.7|0.74|16.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|2eQZ4fhJETr1l7yvYjEkyTHt2ams|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -Br3C95Cs5H484I97N181Pb100|Cs5Pb100C95N181H484I97Br3|Cs0.05FA0.86MA0.09PbBr0.03I0.97||0.987|210.0|0.453|9.4||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.jallcom.2022.164722|2eUf_sQhUyii0rrYGHcmf3gZDXjE|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.03I0.97. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.09|234.0|0.766|19.53||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|2eZMK8mP8T1jE-e-QK-dJTzgorAr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.6|122.0|0.29|2.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1515/zna-2019-0141|2e_DLfZoZ57tqndTJM3sCO6Sxp3w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.12|232.0|0.7829999999999999|20.28|['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', '3-(1-pyridinio)-1-propanesulfonate']|bulk|https://doi.org/10.1039/c8ee02242a|2ed3zoK19EUJoXAamljyyihFrsjg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.61|60.4|0.77|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'Ca', 'Al']|['PEDOT:PSS']|['ICBA']|bulk|https://doi.org/10.1039/c5nr07739g|2elNbvGZ3lgAM6BLTQQjk3_n5t_H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr3. -Br10C18Cs2H93I50N33Pb10Sn10|Cs2Pb10Sn10C18N33H93I50Br10|Cs0.1FA0.75MA0.15Pb0.5Sn0.5Br0.5I2.5|1.3100001396867953|0.72|231.4|0.65|10.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|2eq9uLeqxGADAVySBTrPG6TVzKM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Pb0.5Sn0.5Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.968|210.0|0.55|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.02.106|2etKR0UHIfb8OP5UJ59wAWUlYQgv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|189.1|0.6829999999999999|13.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsAc', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|2evOCk-V5eFUkjnyqDy74OXXe0KN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsAc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|201.8|0.731|15.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|2extdln_kqyCNYzGqJSrFLq5-bv-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6779999999999999|100.0|0.455|3.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-R', 'Au']|['P-R']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|2eyqrCULVocsFNMT4uCHc2ikfmth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-R', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.121|196.8|0.69|15.22|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-07099-9|2fDzSd1q3bzOaoyPvw3ueJBlH1rz|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.909|179.73|0.768|12.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||2fFY7Hp_6dLHUEavlkvyyKG_-0I2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.07|219.6|0.74|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|2fJm1r7OSdkRcWHzVEmdfzwztA8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|168.0|0.69|12.0|['PET', 'IZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.006|2ft6UbbYM9Qn4x6B-D0r-jUyNc6F|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|1.09|216.6|0.7659999999999999|17.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|2gePxqXugX6TQP7Z6fykEhO6D3oc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.3|0.73|16.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta08204e|2gjPRtPZUupQ3q950UN_KsSmAf6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|178.0|0.741|11.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.03.005|2goJk5ZM9lv7UNHnJVZ470uuFx4l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|231.1|0.79|19.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.orgel.2018.09.027|2gpAspkm2OdCXPwnkQF31tkHHXCj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|155.8|0.48|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|2gslcwZbZmbcKyRdtAu8qk0fZa5m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605693|2gtAPMepOf13zugeNZXeTiiOKh3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.14|160.0|0.6|11.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04531|2gtGV6RqIsTEOTVvLF80KkUFmRmB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.976|188.0|0.71|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|2gwGbDKddYxo3_mmJ-3bix7AnJwr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.757|168.5|0.5710000000000001|8.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|2h7-4fnoRtop3-wzo_Ebs_iJIioh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.67|164.0|0.31|3.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1515/zna-2019-0141|2h7Vmks3IbTq39z0NhaVPql-NJ5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|100.0|0.5|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b05986|2h9EguEZAMrOWW9_Lk7s3aRZnnM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.39|87.0|0.755|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr2I-QDs', 'Carbon']|['CsSnBr2I-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|2hNmoqQD4SvqXNGfgB9Pn6fhPOnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr2I-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||1.07|233.8|0.777|19.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc08985f|2hO7MjpwIOT-VdHT7ZyhTP2yAXs6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.023|10.82|0.8220000000000001|20.23|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|2hWj4ZpV2W64y5gCa5619cK4jcIV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.077|222.0|0.73|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|2hkfnOEpPx-zIuyB2rkSWqDoU1-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|215.0|0.7|16.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|2htuFZm8aTP3LFPJ65vduK_a-w-f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.108|190.8|0.73|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|2hw1Q6eEUQPLiZW1rZE-AOF0r0nf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.4|178.9|0.588|4.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['Spiro-MeOTAD']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201703800|2i04MC7lKFFla1N8lL5hWFCV2NPj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FASnI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7|1.5800001684772036|1.103|227.0|0.765|19.16||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|2i68FizvAPpdUKfXWtsMsjqusODO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.6100001716761378|0.97|190.0|0.632|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|2iB1VJUQL4RhTPW6OmDu1dcEuUgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.02.012|2iYCR8xP7YlG11or8VBUbss5z1_h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.71|200.2|0.61|8.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au-np; P3HT', 'Au']|['Au-np; P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b08157|2i_RS9O6C0fdR6dYyRjxPZ5I48II|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au-np; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|135.0|0.7|9.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|2ig1hCr1ho-NndTiKFJrILWcO9UN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|209.0|0.73|16.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|2ijdAxr2fzYJHVLVFssOSNwf2ccr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|131.9|0.61|6.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|2imM7BOaH64XSSLku5jqm-JrKSQV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|107.6|0.43|2.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|2ivUk5Ij2BQZkcqZu3Aul7qST04c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|233.6|0.69|14.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14254|2ivtdKR1ZaN4bH6TaWgv9t-Ghbsr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|135.6|0.62|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|2jDSlUCpXXV1c0FSHqaC5M1uaNu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|102.0|0.61|4.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|2jKoK5qbSFyuFzZmzc388iV3xxdq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.5|['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol']|bulk|https://doi.org/10.1002/aenm.201702934|2jSa52QBRC0w_FttNk25xG5TuYmP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.0|0.77|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|2jVJNBJ2hnkgBOHoLQ8gp3DmIA5-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.957|124.0|0.59|7.0|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|2jWt_0DDzFhqFhxdYGRd59h6FrAK|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.071|172.0|0.716|13.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|2jYaODyhVrtdLZhUBz0xWzPC60do|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3||0.44|112.5|0.59|3.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1246/cl.190163|2jYcmsDR_z11FJFm8RABW276Gm1L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|1.01|94.2|0.526|10.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|2jZaPB6L8bPj42tjXYe2GZ18aOXT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.13|228.0|0.7040000000000001|18.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta04131h|2jb8y2Db0DU3Akj7lyQLWyaPbDWr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|196.1|0.706|15.7|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|2jbm6y95yBnAZOQQRAlF3VIUj8CE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|164.0|0.63|7.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|2jdhXVBiajOoOW4HjSr8NiReTx-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BaC10H60I30N10Pb9|BaPb9C10N10H60I30|MABa0.1Pb0.9I3||0.85|170.0|0.611|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|2jk9UXi0EfhPP4w5FHc0eUFo2uwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|231.9|0.6990000000000001|15.9|['SLG', 'FTO', 'SrTiO3', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|2jqMtxgCkizcP7w56H_466_HBVFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|200.0|0.725|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201510386|2jv3xkS1Y2gSNjkw-JUSi_UnUkOh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.008|209.46|0.797|16.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||2k11W3rsavu2e3oElzj7MKKylR1C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|206.0|0.706|17.09|['SLG', 'FTO', 'TiO2-c', 'MCA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'MCA']|bulk|https://doi.org/10.1039/c6ta06143e|2k6ykHxkf3ZHO1Et1-i1VFG4IYBS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MCA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|219.7|0.75|16.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.033|2kN3wKryLsXkNCiC2Q7JqIGBRNSg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.0|0.74|17.1|['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4']|bulk|https://doi.org/10.1021/acs.jpclett.6b00295|2kOTUtBMsgte9Zq_4qj0Qxg5jovj|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|219.6|0.68|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ppsc.201800137|2kZInqJwUrte0eRdVQyWHHGkJf2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|212.1|0.762|17.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.05.091|2kqQvTranVrzhGRraQUSdBEnRwRW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|152.0|0.57|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|2krMOYfnvj9bxd33b1MV9EyAfi3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.07|218.8|0.72|16.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.056|2kzIFctCCGT5x0OcEPjp5zPXQ3hA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.6|0.638|12.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.08.027|2l0OsXZcKPj_UA4O9HCGtC0w0h62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.13|217.0|0.7240000000000001|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|2l3-wqCBLlu7ietRShMHj7FZvdo2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -Br3CsPb|CsPbBr3|CsPbBr3|2.3900002548484283|1.1|49.0|0.48|2.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|2lGESniZEvGNvi0sZ1mTigcdDQC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.36|6.3|0.39|0.09|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.ijleo.2017.02.101|2lP8Wtd9jp1ucDJqwSaK0MXYI05Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.019|205.8|0.72|15.12|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06081a|2lYi0w5q-60tuBbsi4uq9cSwsHFq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|178.0|0.556|9.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|2l_TvQ2d_Q8d0rZuBrTu-2NUhFAp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|170.0|0.76|11.24|['SLG', 'FTO', 'WO3', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3', 'TiO2-c']|bulk|https://doi.org/10.1039/c4ta04883k|2lf35csDUkx1APOLXBzJikKRZfq-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|202.8|0.713|14.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']|['SGT-405']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06716a|2lkYhNaLOTYsUbNvc0xCbRM-c5cD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.0|0.698|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800499|2lu0hj1qZu97OpKsh3vUqCUUzRzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|89.0|0.51|3.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3nr01542d|2mYzE6RI4Xet3B0tbipOww2GcsoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.05|230.1|0.78|18.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-020-04896-w|2mak4LKhYvZkY8Mf5wXzEJb1K1Eb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.8|0.7290000000000001|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201800795|2mep73zM7ccyPcOq--Bbh3wBnLUd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br255C1481Cs5H8805I45N1562Pb100|Cs5Pb100C1481N1562H8805I45Br255|Cs0.05FA0.81MA14PbBr2.55I0.45|1.5900001695435149|1.025|226.7|0.738|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.0c02983|2miWMRgLdHCKe6AZWTMOeLhuTXiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA14PbBr2.55I0.45. -Br15C78Cs22H390I85N156Pb100|Cs22Pb100C78N156H390I85Br15|Cs0.22FA0.78PbBr0.15I0.85|1.670000178074006|1.15|203.5|0.816|19.09||['NiO']|['BCP', 'C60']|bulk|https://doi.org/10.1002/adma.202201451|2mmuPJLz5oWR_zafwJ-sWP_eCS9b|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.22FA0.78PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|233.8|0.7709999999999999|20.16|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|2mrXx1QVYhvQIOgBLILCvOVh0q5y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|194.44000000000003|0.634|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-TPA', 'Au']|['DMFA-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01471a|2mvLNeGXIbDHE7vg347hglxaZaY9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.5500001652782691|0.74|247.0|0.5870000000000001|10.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|2myJvmrObcUUlv3xR10V1rOmgzIy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br3CsPb|CsPbBr3|CsPbBr3||1.266|56.1|0.6659999999999999|4.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|2nEQnmOfndzCTPsws_QQ9zKY6WYd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|221.0|0.698|17.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00888|2nNbwIB4cuTxHq57shmyqATIsDyl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|187.0|0.72|15.0|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1246/cl.180616|2nYEw3Jq1edOxypcFGQO0-QMR5wI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|142.3|0.62|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'Al']|['PEDOT:PSS']|['N2200']|bulk|https://doi.org/10.1021/am506785k|2na1wlDJJEXk25pad8taoR8GZbw8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.0|0.79|16.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|2nfc-NiFE8fKgxM_GDHGM51PluCm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.89|202.0|0.653|11.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2019.06.015|2nlrBxOu6QGUIzwF9DLB9AF_NFCt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.105|205.4|0.728|16.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|2nr3GqXQh38qHzbH7PI6wHPwmLuw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.0|0.748|16.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|2nr6GMfNfYR__tO9X2BSkyUFSUYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|149.0|0.591|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|2nv39uunZRTjNC0v4YE5JM1sK1RN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|111.0|0.573|4.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|2nvmExjtpFAZ5u8piWMVKErR78QM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.0|0.725|17.72|['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Dimethylbiguanide']|bulk|https://doi.org/10.1002/chem.201804799|2nysRMT4nlJBFrtXaYdVM_NQTQUQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|222.1|0.736|17.49|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|2o3OHd6KBnw5oGFYxjdGntG2M41c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|207.9|0.72|15.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-1', 'Au']|['TbT-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|2oLB8220SPudtw9RQ83SJMRr-PFq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6990000000000001|119.0|0.635|5.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|2oNtj9-nJGweGXFsYoYL__DPHEIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|140.0|0.47|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201503832|2oP8yZ1sDEt2e4cU-Rxjf0PuCl6I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|218.5|0.7190000000000001|16.7|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.mtener.2018.07.004|2oTOlwwepGTJGOUzRe-yABBspyGi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|2oZ4EpZA11aFaJyi8_ybkElwqnxQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7909999999999999|198.4|0.56|8.8|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'ZnO-c']|bulk|https://doi.org/10.1039/c4cc04908j|2o_Ju5TkfrM9_hgBunVZMbqsDJPE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||1.0|201.4|0.754|15.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900375|2obz-Ut2f59HEQOtMLFf4SXVVH4U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/srep30759|2ocSqbLeNQAbY3ySGJJCpUvXMRRe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|114.0|0.35|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['Unknown']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7qm00473g|2ohsOCSCkgm8vvyrCjmRltjJqgi_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2018.01.018|2p7P00gQzL1nZVo9fZSq3-tM5PEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|195.9|0.826|15.58|['SLG', 'ITO', 'PEDOT:P(SS-co-TFPMA)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:P(SS-co-TFPMA)']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b03543|2pFPPcdGG0nskMHh_kI_VAWdXnT2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:P(SS-co-TFPMA)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|127.8|0.61|7.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|2pG7aIsSapxNKKHoGWhN_d5xxlqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.4|0.73|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']|['DR3T']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|2pRUE6izHe--qKeSTHqIWX1BQyV6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|0.022|11.2|0.8170000000000001|20.01|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900231|2pUraWre29DOqHy95VEJsepp296o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA0.5MA0.75PbI3.25|1.880000200466546|0.96|78.89999999999999|0.358|2.71|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|2D|https://doi.org/10.1002/aenm.201700162|2pVstfc5HelI156jIgdy7OH7QM8Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA0.5MA0.75PbI3.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|204.1|0.68|12.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1540-4|2pWKaB2HE7CucY-tkKK1iWmM62ba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.08|5.68|0.54|0.05|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|2pcJLEoPNXuUFWxHFadxAst3hCTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|215.9|0.352|8.21|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|2pjX2oXXe7tYuEzMyJc3-_Pp8xVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -Br27C50H285I123N65Pb50|Pb50C50N65H285I123Br27|FA0.3MA0.7PbBr0.54I2.46||1.12|241.1|0.64|17.24|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2780-8|2pqem8o7mvoJGukUuHBxwzD6alfZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.91|209.1|0.67|12.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jrras.2017.11.002|2pvGEXQ5umW5-lD0C2ycxqUuK3rU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.934|206.0|0.7240000000000001|13.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|2pz6gdQXc_1LfXIDztaAi4s_wwx-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|160.39999999999998|0.72|10.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|2pzCprPOsNYOMBiA1WNzCwW6dWLV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.04|207.2|0.76|16.31|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|2q9-kGWkOG17xlF_tmCBDIMeAADc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.65|15.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|2qE4F-Fl1MCyls62lawlqkVLqoZw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H287I150N63Pb50|Pb50C50N63H287I150|FA0.26MA0.74PbI3||1.01|186.0|0.48|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.061|2qEfJ67Xv2HvdmzUR3_KWeQB1RMN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.26MA0.74PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|218.0||19.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|2qJwL6T821rQrgOV4nnUw_3ogEA4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.52|13.3|0.4479999999999999|0.31|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|2qOX93AqtarsXNEylhO_2Fkx-nw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -Br45C93Cs7H480I255N171Pb100|Cs7Pb100C93N171H480I255Br45|Cs0.07FA0.78MA0.15PbBr0.45I2.55|1.6100001716761378|1.205|226.0|0.764|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/aenm.201801208|2qR1VmPLSe3P8b9XYTCHbOs1QIlB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|162.60000000000002|0.54|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Me-BPZTPA', 'Au']|['Me-BPZTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.04.153|2qXGc1jOGp-5spyrrI0nWp7sW70C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Me-BPZTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|140.0|0.29|2.0|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsnano.6b01575|2qXINqrueNnHzlG1vhfkCCKHMzKu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs5I15Pb3Sn2|Cs5Pb3Sn2I15|CsPb0.6Sn0.4I3|1.380000147150975|0.735|245.7|0.624|12.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', '(4AMP)I2', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['(4AMP)I2', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-13908-6|2qaPE1GFpqBCmKv9vToX8pimQxGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', '(4AMP)I2', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.047|216.4|0.6759999999999999|15.32|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|2qk6yMXBzLSFI4b6SJ90pMMQ8WBT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.7|0.66|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|2qsV0CFs2A7gP2EMmWf7ZvnfOgLs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.04|232.0|0.71|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-DMP', 'Au']|['CuPc-DMP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11426-016-0393-5|2qwErfS0Ff7siLOVvCJBRF_vRGPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-DMP', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||0.86|251.0|0.76|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|2D|https://doi.org/10.1021/acsaem.8b01964|2qzkldi6v0Gb-XRUI_04zUT-TSnZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|1.500000159946712|0.999|203.2|0.546|11.08|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c8ta05282d|2r14AJu5BCJtZ-mUZYwiqxwo5b0L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.525|241.0|0.71|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702019|2r5vOwtToEv7GMCA_9BbGBox31rv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.6629999999999999|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|2rAcCoJrdR1qUCMvUrAEFt5ecvhv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|180.5|0.6829999999999999|11.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60-DPM-OE']|bulk|https://doi.org/10.1088/1361-6528/aac293|2rJvuyQz22PiojpyxldvimHIdquY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.352|61.2|0.7290000000000001|5.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110317|2rK1UiKNnrjvj-JAOF-b6gQxuIuz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br15C95Cs5H491I85N174Pb100|Cs5Pb100C95N174H491I85Br15|Cs0.05FA0.79MA0.16PbBr0.15I0.85||1.09|215.8|0.731|16.98|['SLG', 'ITO', 'MPA-BTI', 'Perovskite', 'C60', 'BCP', 'Ag']|['MPA-BTI']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201902781|2rR0qvAbKFO1V-buYhbtjkr2yh4u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MPA-BTI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.15I0.85. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.92|160.0|0.77|11.2|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|2rS1bY89gyCTBuVYC9zF423f9XbH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|183.1|0.763|13.38|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7-C3h', 'Ag']|['NiO-c']|['HATNAS3C7-C3h']|bulk|https://doi.org/10.1002/anie.201604399|2rWYFTZ88eRK8NamRKNPeOaLIXi4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7-C3h', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.5|0.75|18.85|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'FBT-TH4', 'CuxO', 'Au']|['FBT-TH4', 'CuxO']|['SnO2', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta09946k|2rhhNqh7cLz7CSroAQte1W1zGuYd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'FBT-TH4', 'CuxO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|190.0|0.64|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|2rn0FqBdmGsXpg9PWL-pVe9T4r6b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.11|209.0|0.79|18.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|2rsMvaetnxW-yV51mf12SPRZ-eZa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|186.5|0.693|11.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solmat.2017.12.015|2rzMD6K_jdF3cmSTSuFa6xX3p-5h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.61|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|2s8Srvj_YOgKlRc9J-bHMfovOo34|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.69|12.0|0.34|0.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|2sE-WN0QAijZ56rXWB7pFuYhvJUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|2sGcZPjx-ML_09c0p0d57YVSJL1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|187.8|0.77|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.cap.2018.05.022|2sSsYT7kFJmcfDArdYxM0WxZYUFS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br170C900Cs100H4653I830N1647Pb1000|Cs100Pb1000C900N1647H4653I830Br170|Cs0.1FA0.747MA0.153PbBr0.17I0.83||1.08|225.0|0.78|18.97|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/nano10071322|2sUG7NHNDgqxHxJ16RYdmed-kPwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.747MA0.153PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.0|0.7609999999999999|17.42|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|2sdgPgiemBrlorKj3wGhmLInrwYU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.71|14.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|2sfV_GNXZF-zLZ4GQfGwbHBnxV_z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.12|231.7|0.8|20.69|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|2sfht-pCvAPG0cpi7gRCqHMuvGWr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|156.7|0.36|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|2suR_yH06Q6l8914nqSLSfsOf7Pt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.121|226.4|0.79|20.04|['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/acsenergylett.7b00644|2svA0woeLu3wb8qMFXg2z6V-c_AH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.066|190.65|0.681|13.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||2t-Q-lcfqlFHqyWxbpFeBpMUKIxK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|143.7|0.62|7.69|['Ti', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1246/cl.170804|2t3399qTWtMLwutZEeWMGYMzOX5v|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.016|8.95|0.701|10.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|2t8h5cGIUKTeZnHoa0WVAfLsf6Gu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|226.0|0.716|16.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|2t9PccweilyY5w_2nKWPvZBmaciM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.99|157.5|0.62|9.61|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|2tAVkIYzHuGs0AgORxrzNx1T8i0x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|164.0|0.52|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02549|2tE5v9gZmd9UZSY0wDWtof9h-hZV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|197.0|0.7120000000000001|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5cc05879a|2tJzu3j_t4L-v4NhWC9y45mJlTmw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.7|0.72|17.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|2tXp95RlCPgtJENBSinCn7Ke0oAt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|257.3|0.705|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTDTP', 'Ag']|['BTDTP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0se00549e|2tY15ihsdPMqCPuUalhTdR-W3LLu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTDTP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3||0.71|200.7|0.65|9.23|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|2tZhsknQF0FPpmKZ4jVZNUnJ4sAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|100.0|0.614|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc02534f|2tf3v9LnSu0LWxh-MDIBQigW0uXj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.039|234.9|0.7490000000000001|18.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801717|2tuxiwWHyO-Ozkk7MyTJiEclSiv3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.111|198.6|0.6970000000000001|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|2twWRcRF-tbKhWvPDYaK4oCVcPTo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.144|230.1|0.76|20.06|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|2tyd-mqvAifvqrW_mWb77jMGxzkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|212.4|0.7140000000000001|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103946|2u6gjwmtH_HHvd0wyWiepYgO0e8R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.051|208.68|0.6859999999999999|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b10062|2u9jB8wm7OBUYekqis8MtMP0km7W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.11|169.1|0.768|14.35|['SLG', 'ITO', 'FB-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FB-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|2uAU8BiIzzKQ8-3TJLheljg8mOMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FB-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|205.8|0.77|13.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|2uMUyAtzc0GZwd_sfpMtnl0RIRKI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C17Cs3H87I50N32Pb20|Cs3Pb20C17N32H87I50Br10|Cs0.15FA0.75MA0.1PbBr0.5I2.5||1.12|220.0|0.711|17.53|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|2uTRKBvwheAYYpkOb9VTzZJvOPvW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.5I2.5. -C20H48I13N6Pb4|Pb4C20N6H48I13|(PEA)2MA4Pb4I13|1.6000001706098266|0.932|122.3|0.612|6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|2urW3mqmE1WRP8X3_ndWi6Sb2G-S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.0|0.62|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|2vMymCixiQP2rXVg-oWdDRw2G4r5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|233.1|0.81|18.42|['SLG', 'ITO', 'NiO-np', 'TPI-6MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'TPI-6MEO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|2vSAG_93RIgyRJwhvFMUA0R2JGFJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'TPI-6MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|192.7|0.736|15.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b21628|2viVQi20Y3UK00luTUrBcAjdyIDs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|158.2|0.648|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta07876a|2vkwzDKJzCK8XPhAHa8vDU1OS4s-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4169999999999998|82.2|0.722|8.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900030|2vxVQRNGZPmUOUQc2qoz7mYDO6mG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.993|203.8|0.635|12.85|['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'rGO; Zn2SnO4-fiber']|bulk|https://doi.org/10.1039/c6ta04726b|2vydjESFxDpD8UC4OpooekbGeKWG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|213.9|0.71|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|2wLCnp9lNuDROygsZyIMjv412UHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.8|0.645|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-015-0711-4|2wOKA5QTRTbCrP_yhQGlMqTO1vaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.0|0.71|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|2wcnKbFRadqPxmuR0rVMgIin37cb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5850001690103592|1.1|233.0|0.8059999999999999|20.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'OMe-TATPyr', 'Au']|['OMe-TATPyr']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201806392|2wfIxrYqJPYLZdxysiv51s0Tuqkz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'OMe-TATPyr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|186.0|0.71|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/cryst8090358|2wtWP4c8hwkj1E2JBBY-BMs4SEIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.98|159.0|0.68|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDI', 'Spiro-MeOTAD', 'Au']|['PPDI', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b12579|2wx5KzdWg5_z-kFciv0ze4DPbcRY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|2x1y02T8QV0ZJMRl0FwaCH6-Dz3U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -Br288C95Cs5H515I12N150Pb100|Cs5Pb100C95N150H515I12Br288|Cs0.05FA0.55MA0.4PbBr2.88I0.12|1.5600001663445808|1.093|225.0|0.77|19.0|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/admi.202100743|2xBIdo40cFTTcohSm9KwOegK7_Ny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.55MA0.4PbBr2.88I0.12. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.12|222.4|0.736|18.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900265|2xIePuTYaxKkLl9ApRvgr6R6BxPp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.67|50.0|0.56|1.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Au']|['none']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|2xKPFM24ezLRGajzjgWdrcijUdPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|201.9|0.615|11.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00468|2xQWjylCfMMncEd1z7-W_Z5iFjaX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.952|182.9|0.53|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta05241k|2xSj7TB3xiQyOiUczovkHVh3GX4T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|201.68|0.765|16.63|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta02490d|2xT4yCgk-4fmqRkKE13whax6LBYP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|175.0|0.7240000000000001|11.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']|['DEPT-SC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.05.004|2xi7ESoJqLwuOwyQd8COv1Yl0vjn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|218.4|0.74|14.8|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.010|2xnKT-1dGuJrR5OWNu-TII9_tC-8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.92|93.9|0.5489999999999999|4.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['Carbon']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800139|2xqoP07M7P4WxwFfUmTrLhTRASdn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|143.5|0.682|8.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|2xrCtL8VUo8aHvukH8JcjktX1sFg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|220.0|0.753|18.35|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|2xsZ6irhPe3pO2dzcN5I8jFFFdC9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|2xyAyM6emIWbTm4JmA8f7NKrWvwd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3||1.01|100.3|0.546|5.53|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta06719h|2y0cqaVahdVIREWycKuEdmNyqy9R|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|205.6|0.75|16.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']|['Imidazonium iodide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.035|2y8i6AjVOjZLkqspMO6_brP17mwg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.092|212.6|0.758|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|2yYQYp9dqb3Y80Ql80_iFpEz7gJL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.0|0.528|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.01.095|2yYRmFdsWOpkVAfZmm2GHCi-LfYm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|191.0|0.71|11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/C9RA05357C|2yguWlP0w30nbeYTq4QN5TwH6ksk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.988|200.5|0.595|10.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|2ylnNGnv2Cr6BPlUTH3Vbm6pKPHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.8|0.72|16.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carpoic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Caproic acid']|bulk|https://doi.org/10.1002/admi.201700897|2yoZTqFy093TjQ89zi03mQJ4seMg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carpoic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|232.0|0.7979999999999999|18.95|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.8b06291|2ytBEYNR2KXWSyQR6nzdorrNF1vO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|1.06|199.0|0.62|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|2yvycrpsI9rDsS3WuJtartivpPEe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|67.0|0.36|1.96|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.orgel.2018.03.041|2z-_k4tsFJ2xGNd58lP1yRURKyK_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.105|214.2|0.764|18.08|['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00375|2z8bruY8KWlG5nuBqPlwmBnp1snX|a perovskite solar cell with the following device stack: ['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|217.0|0.713|15.2|['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01118|2zK6WoVyRWfpaRsFmupbApV_BmEy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.0|0.44|9.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.7567/APEX.10.075502|2zN6h3P6rOFcyq6wDkA_byz8y97H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|211.9|0.568|11.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RE-ZnBu4Pc', 'Au']|['RE-ZnBu4Pc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900119|2zPYZwgNA0QNIunWBK7CKo7lirWG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RE-ZnBu4Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.002|211.05|0.725|15.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05697g|2zPvbdFhBIQaATmTbuDT6eKR630x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55|||||13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DTP', 'Au']|['TTPA-DTP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11314e|2zUO6gIypS4XvSAymdTXaA_qqcHW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DTP', 'Au']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.89|164.89999999999998|0.55|8.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|2zZqiy4BoTEEbj5rWcw0vwzE6gGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.7|0.747|18.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b13701|2zaSFXwMlW3Oif6qJUODMtqT0mak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|60.1|0.66|4.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|2zlHsIfXwgYDiEh6GdrvPq4T7ZrG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.95|195.0|0.62|0.0|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4mh00238e|2zqZLcp9AZeSAu0Kofm-Xvn-7sN5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.84|179.20000000000002|0.68|10.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|2zqoKrqr8m8r9HajHeS8vaUim4GH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.82|77.8|0.634|4.21|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b07594|2zt9zCD50WCrzkSXGooQdL1VoHGO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|176.0|0.7|12.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|2zwUA-fPDOIQJoOgahes3J50uxUJ|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.670000178074006|0.99|223.0|0.684|15.11|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|3-5zEP7sUQMBaTaGowveQlb7HwG_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CsI3Pb|CsPbI3|CsPbI3||1.106|199.4|0.8079999999999999|17.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201910800|3-70ROtXIcfCzLPSocdKZ4Gfmeqd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7750001892702758|0.82|129.3|0.628|6.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201404427|3-72haOLzRJ-GMmKhN0lPPKg0ix1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.95|207.0|0.4579999999999999|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|3-8SOTV5QAMAXLbhNwvCKP4YGYJA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|161.9|0.4639999999999999|6.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|3-GRZ4v-WJYM1dYnit4zCDXqBLYz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.0|0.665|14.9|['SLG', 'ITO', 'WOx', 'I-Ph-PA_C60-C6-PA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx', 'I-Ph-PA_C60-C6-PA']|bulk|https://doi.org/10.1002/aenm.201501056|3-Lv1ip6ZAmUc-Al-thfyJOY5k8k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WOx', 'I-Ph-PA_C60-C6-PA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|161.0|0.56|12.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/ncomms8081|3-Pu_ipsdkzgE5xdu5TnvYktkXQ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|180.0|0.63|10.72|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|3-SBvIGKAAxC505UJzBQw3dc9tfx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.9|0.68|13.65|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.048|3-U2KcbWyh_g1IQxkK0mcAiiBSYW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|203.0|0.6|12.96|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'Zn(acac)2', 'Ag']|['PTAA']|['ITIC-Th', 'Zn(acac)2']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|3-_AgN8cQWHk5YTmP88aiS29LVpD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|108.5|0.65|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600229|3-chJqEJfQlmgEFJ9Kc0Mhd0Gdyg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|1.06|222.8|0.73|17.24|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'C60-SAM']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|3-gYY9-_dlMzhqctC6XPP0Gf2f4G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|213.0|0.67|14.2|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|3-iruF3dNHZwa0eUcZn6AGxRAno1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.7190000000000001|15.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|3-lxQT4OHFmgx0pMFmVYEMOlhpw_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.5|0.5720000000000001|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2017.07.005|3-pIa_cRs5smqWy3wy1siPBJyJJd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.35|59.8|0.754|6.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|3-q7u4h9x5km18lNgVoV5JNq-iGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||0.9|73.8|0.4|2.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.solmat.2018.05.002|3-rcT8aHIRkQhJ2rPkni-swJwTSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|230.0|0.407|7.99|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|3-s5RPMvRr6cT1ucpSV-9cAm8d52|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|92.0|0.57|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nn5058672|302MnjR8kE-Do3aauM8He3mpKTmS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|211.3|0.52|9.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|309mW4lA-PTmC4JYpG60uHzLwcKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|170.5|0.696|12.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|30GXG-t4q7OJJLSaycYhkqkEuntC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|197.7|0.65|12.89|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|30LxGxTj2UbSGd-tbwXAS7q1H8wy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|96.0|0.419|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'Au']|['TPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|30O-fb1WPwUP7j1IM51NJLLDlNHt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.24|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|30PGhI12zrMr3Mf-pfb8Vg4zrZLV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|113.2|0.47|5.16|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c5ta01200g|30RV-_eZcdaeVIhrSvz4hFRQ-zZc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|212.5|0.67|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|30vBDoSgfXc0Li3gmPQc8jZy2DZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.3|0.74|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901948|30wCBTGlGizcQC2tLbXhHOWZRkBI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|202.2|0.6629999999999999|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|30wjL6-47LbCYihsrfd4YyxQ84Tq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|197.0|0.76|14.7|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c9cp00564a|3111FeHURNfPUYzSOIhrdTmYk5Xr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||0.989|142.20000000000002|0.6779999999999999|9.56|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|31DLnieSGuXn0GYKEgRajvCWIFMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -Br3CCsH5IN2Pb|CsPbCN2H5IBr3|CsFAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|31NYi5AWOwkR1TwStSTBzFifmIcA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsFAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|110.0|0.5|5.39|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'PbI2']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|31O7bT_AXUScdN7jGyOOUm37MXrh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.0|0.76|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-019-00842-y|31VhiGhO9d4vsZnWdZMK4_C0He2x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|152.89999999999998|0.427|6.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|31ks67n6hT6Edv-WITGcwFNNmitD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.88|121.1|0.38|4.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|31wcDy5qcWY9Y-zOg1f9Jnj2fKlM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.69|15.7|['SLG', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4']|bulk|https://doi.org/10.1038/ncomms8410|32KcXuWjMXjzsWiTcwzhFXuctZcb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|181.9|0.55|9.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07511|32NxhVFM_7TB0E9jkFxRO-4Wbmjs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|215.94|0.68|15.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|32YjcDJo7RZv-WvUnsQ3Q6QdJVZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.443|60.7|0.772|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|32dZSBa4ZjxlLBvO608eiuUIjv4J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.31|59.8|0.68|5.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06177f|337brrA0hrdidvtAbYv5Cp5rQVV4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA']? The composition of the perovskite layer is MAPbBr3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.142|91.1|0.63|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00972|33QMYomSn5tXVevDrsY2YQT6PMBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|174.0|0.698|12.8|['PEN', 'AZO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1039/c7ta04225f|33m1wvpBDEhMF9vJJoxyF7l1bkuK|a perovskite solar cell with the following device stack: ['PEN', 'AZO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|177.10000000000002|0.53|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr05975a|33q2f1kGq6GAABG3Or9MRLS8WQmM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|20.1|0.62|1.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b05267|33qf_SCKpul7c6BlsVrL0FjrWr-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|200.1|0.47|8.64|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ra01839e|33rheyALQdU7LGoyGHuqVSOmhTnF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.08|211.5|0.72|16.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|341xL_vFYWYA2KKdk-Ou9D5VcPS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|161.0|0.6509999999999999|10.6|['SLG', 'AZO', 'Ag-grid', 'AZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.10.101|3442tGRM9kSuDsFAkgjkl0APA8Wh|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-grid', 'AZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|196.6|0.772|15.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|34BizoWUyAlAlLFpnHMheDlygbQS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.6000001706098266|0.901|131.6|0.654|7.75|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/TED.2015.2413671|34LmGgxe8ZQKQdoET6VuP3NP1tqK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.943|189.9|0.682|12.22|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||34T_UiHv0TDjd7fha58kdLDLbTJR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|0.97|68.60000000000001|0.62|4.11|['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS', 'AuAg@SiO2-np']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|34V5wpBlyXM0nvMirqbCN1okqmLc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.8|0.52|8.68|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|34VUJKmJgaqMw7T5ZvmmvkDCc5Gt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|134.0|0.58|6.67|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ra01869j|34_dZK4_zfdhuJ0sL1Fblyh5U8VD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.7|0.72|14.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|34c3R218KUGpFgXFNX_J_KqDr4QM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.1|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|34ctMclcU77t_IkZ_gUE4ks8BAR7|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|177.5|0.7020000000000001|13.0|['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1016/j.solener.2019.05.061|34fvfncHRpFx5aWbGKcU0tDNIwUx|a perovskite solar cell with the following device stack: ['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|159.0|0.645|9.5|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|34h7RKqaueZ7JkrD7qLgefGxz_UW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.996|199.0|0.621|12.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|34mv0kUkQ6N18lwLD5QoYE886C54|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.731|128.01|0.61|5.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|34wPpKX5D7PgEUuWVO-iCVq2jzng|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|155.07999999999998|0.638|9.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|35-xLjUQYopGUU52MF3LyIyO9vAx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.1|0.5589999999999999|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|354sZ-SNILy_iZ_B1fCYhhI5pVaU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|156.0|0.4|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp00008e|358zyNnq1f5zYh6SE1yTGuqvrj55|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.04|206.2|0.64|13.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OBFPh', 'Au']|['CuPcNO2-OBFPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.045|3597zCDFB6otDO1z5rsr20ZYo7sW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OBFPh', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|244.8|0.75|20.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11800k|35DibB4SKR4klkjAuWebtdNhaxt4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.09|154.70000000000002|0.57|9.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ce00169d|35Dpl-kHcErVIEpolRiYfxhzklcn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.124|228.6|0.762|18.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|35Laj-dMenZATKCnfTFTKTbtbLlK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C100H517I270N183Pb100|Pb100C100N183H517I270Br30|FA0.83MA0.17PbBr0.3I2.7||1.15|234.2|0.7809999999999999|20.94|['SLG', 'FTO', 'ZnO-np', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'Graphene']|bulk|https://doi.org/10.1039/c8ta10857a|35Y5uVJtlxgOSzl62J3FfkcsSNk5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.3I2.7. -Br75C42Cs8H212I75N82Pb50|Cs8Pb50C42N82H212I75Br75|Cs0.16FA0.8MA0.04PbBr1.5I1.5|1.8200001940686776|1.2|145.29999999999998|0.82|14.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|35ihQZ21bOb4aI2iiS-9K_SsDAHh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|213.9|0.74|16.68|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|35qfNcdzR3QSB0POEiUynnvBNjA4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|75.3|0.77|7.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|35zMMjc8K_cC9Y8PXdlA9S70j9Cc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|148.6|0.5710000000000001|7.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2019.08.042|35ztK60St3pf7--nVE9gIgW7H2Ds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.9|0.755|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.007|368XAfTRp8XESZDmQMgFdjStXYC_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|114.7|0.58|4.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1742-6596/877/1/012046|36GREK7Xp659nEShxI8z6tbKstMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.5|0.76|17.1|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|36LSj6t6uAoOVD-RLZGA9dv2qsuq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|211.3|0.6970000000000001|16.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.027|36LiKQNeWYv0oBy7C4icUPO_tu6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']|['SP-01']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|36QE03KT9wLOxtPDnHRF7XtpCPzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.0|0.65|10.82|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|36QcNbOcGvw0_8ls3IKiPQskb3nn|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.14|219.0|0.743|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|36fb5-ZPSHGA_dJt4R4TfCL3JSjC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|233.0|0.78|20.01|['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD:GD']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.008|36hxo83wGX7ROxmb5cIvqunE2HzK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.01|211.2|0.76|16.36|['SLG', 'ITO', 'NiO-np', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'Spiro-MeOTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|36oJCIZH5rbhx18dSKGYuW7BNUEw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.0|0.67|14.2|['SLG', 'FTO', '(RhCp*Cp)2', 'PTCBI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['(RhCp*Cp)2', 'PTCBI']|bulk|https://doi.org/10.1039/c8me00031j|36sRQ7I5u9kJr0RCLVpqutDHyEtm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '(RhCp*Cp)2', 'PTCBI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|210.0|0.85|14.7|['SLG', 'ITO', 'ZnO-c', 'ZnMgO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['ZnO-c', 'ZnMgO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.04.092|36uJFScDjc22aXs5inbTjXf3Q3Jx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnMgO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|145.0|0.67|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|377emVJNt_dl5jQyEI8yLlOpN_3Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.03|193.0|0.759|15.09|['SLG', 'ITO', 'BTF3', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|379du_3zGag8QGAW4HuyAhbuouJs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF3', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|204.9|0.735|15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra03066e|37CxDhXuGCi5jr5HUKcLWS8pFcbb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.89|156.0|0.76|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|37O_o33P_GoebJEWW_DVSHtOaNYr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.162|228.8|0.8140000000000001|21.63|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'CdZnSeS-QDs', 'C60', 'BCP', 'Cu']|['NiO-c']|['CdZnSeS-QDs', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta12368g|37OnWoBR7rUyKHHwRX4pGYRcxxIv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'CdZnSeS-QDs', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.298|12.0|0.14|0.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|37T72Ud-Eh8VTFzgYrUPOOineTf4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|203.0|0.65|12.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|37WKIHH6k55KQYxoLEMyY-DxrCOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.760000187670809|0.96|178.0|0.73|10.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201900555|37gSZ4jqgMGSTX8ONYMMAZAPG71M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.9|0.78|16.9|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|37rYb7LM3BFZwOOUrpy4aty6ljd7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|222.0|0.745|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|37wB_LyjT0BWgRRHnvLt3-8udTGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|168.0|0.71|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/cssc.201400081|380sadRo4JmP71_LRjd-VVGI6g9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|220.0|0.79|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|385LRww-VkDFfTkFICHZTf1g4OU8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br72C165Cs35H840I528N315Pb200|Cs35Pb200C165N315H840I528Br72|Cs0.175FA0.750MA0.075PbBr0.36I2.64||1.078|216.0|0.795|18.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-np']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acsenergylett.0c01130|38_MGG-lq5b0I4IePOs4x2bvQ7Zm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is Cs0.175FA0.750MA0.075PbBr0.36I2.64. -Br15C95Cs5H491I85N174Pb100|Cs5Pb100C95N174H491I85Br15|Cs0.05FA0.79MA0.16PbBr0.15I0.85||0.98|219.3|0.7959999999999999|17.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201902781|38bC2uwu7FL_f0lN2n5XwkRytK3Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.15I0.85. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.14|169.3|0.652|12.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|38mZaI4AKJyQS1lVuhm5WllYq2Fj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|189.0|0.7829999999999999|15.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|38wQYfqYq31ikql70tNB9cLtCHLb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.807|179.60000000000002|0.64|9.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201304022|390YQotIfa0xs5tsfmBmda_Fzhao|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.976|122.6|0.564|6.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6tc01781a|39504uk6Z0gxh3I_yUIlLa7hguf_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.57|0.3|0.3229999999999999|0.005|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1111/jace.16284|396dobS89Qtz22hfP6C2_mytGrt7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|205.37|0.7509999999999999|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|399dHfGzqV0RteYElS-R3ZST6fSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|198.0|0.67|14.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b02824|39E-jf4Q7P0GK0FZUVtRZq6t9yfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.193|232.0|0.782|21.45|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201802646|39Rjiv66Sp6XSx39Wh7-SEqRD1Tr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.94|64.5|0.562|3.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b02102|39TjZNAsJcJPAosHiS_ZSybhJBQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|164.0|0.529|9.79|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|39VY9SvUMK4qtMmCyd_Vs3bOs-JP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|162.0|0.58|8.56|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|39onhUe3y_kEKtjkaeOdT6f9nSZP|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -Br52C100H517I248N183Pb100|Pb100C100N183H517I248Br52|FA0.83MA0.17PbBr0.52I2.48|1.640000174875072|1.16|168.0|0.63|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|39pk5_6tKWvBNW6DyXTfe2xbE3WA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.0|0.741|13.81|['SLG', 'ITO', 'PEDOT:PSS', 'Dex-CB-MA', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'Dex-CB-MA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ra04907j|39qY_TjvxqplS3thATLmdN0ToxmJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Dex-CB-MA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.97|213.2|0.7|14.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|3A-tSFqFipXPUP6jEFgkREHc9607|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.061|212.9|0.723|16.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|3AAHYYZlGiEbzBygRtbQ_5ysSI_p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|13.5|0.36|0.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|3AK4NHbwSDdMWlB0J0Gc4oIL4BDC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|205.1|0.627|12.89|['SLG', 'FTO', 'Ag-nancubes', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-nanocube', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ta10715j|3ANEw47m3sPOgW-1Eos273fwoSJ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-nancubes', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|176.9|0.616|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|3AfdSLKesLbyZpje7CZaiWK858hH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.9|0.657|12.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra19265c|3Aq0c1JV3B3fXjK1jG-RGs_zMFaX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|218.2|0.5820000000000001|13.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMP', 'Au']|['CMP']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b04469|3AumPdn60lHltTeiW_lXER9GIF9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.716|56.0|0.65|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10971-019-04957-w|3AyLk4sbHMeZrBcfZ58I4Xww6pD4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.8|0.71|16.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.104229|3AzMEyvSAnQakvOPntwmYk1S2tpy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.061|212.4|0.74|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.034|3B0Lrm7VeEV5ufO4qoM7LS4aYoka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|116.32|0.693|7.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|3B1l6qT2eAxGXgZSF7hQx5sUuFdt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.04|218.4|0.667|15.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.10.008|3B9c3i5ol788sQ-64JCo30QSKe9U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|199.6|0.637|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|3BFpW0LB0ww8G2JNmjFtOh0SjTH7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|217.0|0.794|17.8|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta07904h|3BLoL7QfpYaLhhoF1CW6C8kpqido|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.30I2.7||1.11|233.9|0.768|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905502|3BQqVRIhBwNAZLd_IBxKsz5E5DQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.30I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3||0.62|105.2|0.54|3.51|['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']|['PANI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.ijleo.2020.164505|3BUb5CLgb3Bg453z8CI_pI8j5zb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|208.9|0.778|18.7|['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|3Bg9yhBAehpOAxO6rv50-LO5ZW8K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60InN20Pb19|InPb19C20N20H120I60|MAIn0.05Pb0.95I3||0.93|209.5|0.73|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201600626|3BlOspMMGDzP4f8ntPV5STywaACD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAIn0.05Pb0.95I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.154|135.7|0.6890000000000001|10.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/C9TA05556H|3BrFWUY0ok1vrhItM13ZzmZvcRzB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCH6I2NSn|SnCNH6I2Br|MASnBrI2|1.4600001556814663|0.41|157.0|0.377|2.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|3BtgbjbpKRO5wQKs-LDqpQmxiP_F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.0|0.49|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|3BuDGKNS8xoUSNbuz56uY39iOVrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|132.10000000000002|0.69|6.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|3BwFUHK3P-AU9Mi2RPfoEks_I6r9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|229.0|0.78|20.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900468|3BxfYsU9a6CwmFAVOoOGuhU4vimK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|233.9|0.74|19.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|3C2gEHxB1o5Rmj4Yhry0W_4jWhLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|145.5|0.721|8.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.04.059|3C6zG0HjDG6PL-9B0t08P1WfkkZF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.2100002356548227|0.92|18.0|0.34|0.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06816f|3C8hBvyQ-wvOmX-YpWAgozOxageJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br510C1000Cs100H5170I249N1830Pb1000|Cs100Pb1000C1000N1830H5170I249Br510|Cs0.1FA0.83MA0.17PbBr0.51I0.249||1.11|225.0|0.7170000000000001|17.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|3CEdxVEUUxkx24S9LF2l5TSwOfTX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.918|94.93|0.481|4.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|3CI2p1QCpLdde1lCob9dhgI563Ut|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|131.2|0.6559999999999999|8.2|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|3CRnblF1BTDdGQZF8hHL7BxfEjcx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.182|190.1|0.674|15.15|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|3CU6HwrL3DfypH7Gd3IY4xHSF7Yu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.5|0.76|11.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|3CY_TZHzddI6gisG3Mlykp7nMvoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.7|0.621|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta90054f|3CrsibdYHUACn3_pf0-aF1xJvcPL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|133.2|0.614|6.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3']|bulk|https://doi.org/10.1038/s41598-019-45374-x|3CtERIQlIGwPxJdTGPyUj2TaMuBu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|170.0|0.6829999999999999|10.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'B-DIPBI', 'Al']|['PEDOT:PSS']|['B-DIPBI']|bulk|https://doi.org/10.1007/s11426-016-0147-0|3Cv8SyNbx1lP5VzduhPlyM82DlrW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'B-DIPBI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.0|0.73|17.3|['SLG', 'ITO', 'P3CT-K', 'CuZnS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K', 'CuZnS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.inorgchem.8b01030|3CvkKFcCuA90HgKYahlSx6FjpmkP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'CuZnS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378||||18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@SiO2-np']|bulk|https://doi.org/10.1002/adfm.201606545|3D5FseeMXXvW6FQfgfRSOBKV1WDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|207.0|0.71|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|3D8dQl8er-Q33_N3gpeum3_3EfQt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|204.8|0.7809999999999999|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|3DAdOwV8Xns2L6DXoEVOwge6lxO5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|127.5|0.7020000000000001|7.87|['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|3DAiW6oke-2AUqp_3RexDKW9p5bt|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|183.3|0.75|13.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703236|3DCZoB38twyLqrJLoPtZCMPSDiMd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|204.0|0.599|11.68|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|3DFMrOAxjxgw8srqGcIC69Am2Ulq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.3|0.6|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|3DX2BjJCkjfJQ0BwY18TbbWs5YDd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|154.9|0.475|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|3DmyCcQ6FHZmJJYJlddg8DWeQ2eH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|60.6|0.447|2.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.7b02314|3E-VOj2dUcm32EvUmZGp4PeTVK5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|208.3|0.67|12.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.07.095|3E5hchGVk7eiXFQrMkae3xJHDIb_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.162|163.29999999999998|0.7759999999999999|14.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|3E9qvMBx3laFPLopCQLBHIZsFepJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|236.7|0.74|19.11|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|3ECMm7d14Kg1_XsDPfHwBlhS_Olc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|176.46|0.693|11.17|['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3HT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2019.100341|3ENeQ5M1St3mruINHoWDIoxhM_-h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.68|27.0|0.45|0.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|3ESrzLEM97UgvIJYZP3BHbzmhzJ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|173.9|0.665|10.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|3E_1Qt49ad-Cvj7FAt4hKBlzIs96|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.934|168.4|0.69|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.09.004|3EcLhjlQl9wuU-pWMD4FqGm6CXDO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.981|225.1|0.69|15.24|['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'SnO2; TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.097|3Ed6MrsgL-H4RoK2nv038RJpq2hs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|254.3|0.58|10.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.05.184|3Egrr63sYiAvenHanKMmYPxGQJSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.6|0.622|13.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1098/rsos.170980|3ErRN9hJpH-49CnDDXCiNUK-8UYp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.0|0.623|14.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Bifluo-OMeTAD', 'MoO3', 'Ag']|['Bifluo-OMeTAD', 'MoO3']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.051|3EwuHS-SyrNYtxtubMUZKxLSTq6t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Bifluo-OMeTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.118|188.5|0.593|12.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|3ExcgOQAaPj7deeR5T80057uFc_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|155.0|0.69|10.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.7567/JJAP.56.090305|3F5i3Kvj1PcW2mhfgk4vm9u4F7NS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.94|176.72|0.273|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|3FAjjBm5Lf26ZKVSuEaehkdPnMqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|161.8|0.62|8.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']|['MEH-PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|3FBtGojt3QB9HJ8P_bcENEO3ydJx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.075|216.4|0.807|18.77|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-T', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|3FFXXc3JjOObfzFau-SLtYDIVOWc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br20C95Cs5H486I280N179Pb100|Cs5Pb100C95N179H486I280Br20|Cs0.05FA0.84MA0.11PbBr0.2I2.8||1.14|231.5|0.787|20.77|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c8ta04453h|3FiRymP7VilIpQOHMLIXU4ns_CLb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|207.0|0.49|8.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|3FumWJe22iDOIaMqGtfdf_MLfIv3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|234.1|0.7609999999999999|19.66|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab55a1|3G-o3sMVyeArluFUOGo7jZLw-0ny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.180000125824747|0.75|263.0|0.688|13.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201601353|3G1JiB9VnbiO9m0vkEeR2A48Vdt3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.0|0.62|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700164|3G2L9FxUadh03tp2hfg-I14FvGBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.570000167410892|1.2|197.0|0.66|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']|['PDPP-3T']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|3GCYXqpQ8jbbuzmd4pm9euYdYLZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.116|214.3|0.637|15.23|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|3GCoGMKtGV9RsvDi8bRmcVgshhep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C13H46I13N5Pb4|Pb4C13N5H46I13|MA3PA2Pb4I13|1.6300001738087604|0.83|190.6|0.55|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.joule.2018.11.026|3GFc8ZfUpBTJlr1HKue2oJGfgp0t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3PA2Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|232.9|0.7959999999999999|19.84|['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PDI2']|bulk|https://doi.org/10.1039/c8ta02584c|3GIosQGpQ7vs2OXQyHloVW4WqwHH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|216.7|0.65|13.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-2', 'Ag']|['ZnChl-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.11.005|3GNLcOOtokUYOxO_rwCZP6KLBI6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|205.0|0.7|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|3GQsu9EYTIVon89h_FBpBnaRirk8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br29Cs10IPb10|Cs10Pb10IBr29|CsPbBr2.9I0.1|2.3800002537821165|1.09|55.3|0.59|3.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|3GRS44Ue-pSbKJtGXrpbDkkTELE2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2.9I0.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|197.0|0.65|11.65|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|3GSehgf71-DIO2dteu8mxhpaQwxH|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.762|209.0|0.457|7.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2019.06.015|3GUXOEhGzOkRRlTG1OMM2PM3vqm-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|222.8|0.74|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601557|3H3mwrx8Y9MQS9yLKjBrHuctClWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.8640000000000001|165.0|0.74|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201501489|3H6m-cblUJWgfQAqLWaw118urT87|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|23.9|0.63|12.64|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1002/ppsc.201800137|3HGZp-o3LQyni5P9U9R9I-DBMa8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.0|0.755|18.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|3HHBwYzaMPKDJRAi1Y-W-SXAJ-PL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.873|114.0|0.667|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|3HHukpJglB7aXLIzbLebwtBab2uT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.51|2.5|0.653|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|3HJneCj1bjISxdjcFKETwYQ6jMbF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.07|248.6|0.79|20.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|3HSK1Fvf5XDOiSgCATZpYeNdPQL_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.73|15.62|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|3HYSNRc918r50wXirmSdVCZqHO2Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.7|0.7|17.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.018|3HbOfD1iOXSLgM_2JksU4vjS6FWl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C6Cl2CuH6IN|CuC6NH6ICl2|(C6H4NH2)CuCl2I|2.010000214328594|0.2789999999999999|52.5|0.28|0.42|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'ZnO-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201901185|3HjYn2zTsek22EcX394kQUDgYtWn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (C6H4NH2)CuCl2I. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.05|154.5|0.682|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-020-2675-2|3I2_ONA76XUVhVj1nZmJUWgJH41a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.12|80.3|0.7|6.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|3I9dqOg0STEsh1yX8luoDSDvC89_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.15|177.89999999999998|0.727|14.96||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|3ICQx0ZnO89Y83E0MKdWqmYk-q0U|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|219.0|0.78|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|3IDBc8FTN0c9lUXXMjG_JEyQPL_V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.07|219.0|0.741|17.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|3IEbfT2CNWTeS6SSJ2Ti3ytUbDY1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|152.0|0.591|7.14|['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['none']|['ZnO-c', 'PCBM-70']|bulk|https://doi.org/10.1002/aenm.201401720|3IOF0ZnhmH-msy0g_8zeHZvcdVea|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.0|0.62|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|3ISn3Bv3gq0jY8r91noBJZRtlOxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|188.51|0.5870000000000001|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.515|3ITEV4MG8QCKGJH59oh3ERcNPcDd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C848Cs3H2048I249N138Pb100|Cs3Pb100C848N138H2048I249Br51|(TBA)0.5Cs0.03FA0.4MA0.08PbBr0.51I2.49||1.23|153.7|0.518|9.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|3ITk9skmmvSsRBQYFueYqwEVVxqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.5Cs0.03FA0.4MA0.08PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|3.289999999999999|0.19|0.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c5ee00645g|3IzON80OQxN0TYZqBjBxSyuTYBR0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.143|240.2|0.746|20.48|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|3J0dGJDAGJrA8yV5a4FqMLi5yyk9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.2|0.59|10.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.vacuum.2019.05.025|3JHq5BEphrMwcjL45Egs8m-EPvMb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|209.2|0.49|8.89|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|3JNgl4MtxwV8W_NY6SA_ilifd-HT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|183.0|0.73|12.4|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['CuSCN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201701818|3JUYGRdGq6em2cuDx9ea1vVaq4cO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712|1.082|231.8|0.755|18.63|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.8b02079|3JUb-Bty4Prp2xqAwzxQLCvvzn91|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|76.2|0.49|3.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|3JV8CH8MtLeOoIZ-gqkuVmwt0nqw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I17N37Pb20|Pb20C20N37H103I17Br9|FA0.85MA0.15PbBr0.45I0.85||1.02|223.6|0.7140000000000001|16.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OTPA-ZnPc', 'Au']|['OTPA-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.03.035|3JpTLc2XLQ6Nt2PfDPOi9ZCnT4oq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OTPA-ZnPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|204.0|0.54|10.5|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1088/1361-6528/aae9b6|3JwFA-iJce-MKI9wJol_TGkbxtfx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||0.96|163.0|0.583|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1364/PRJ.393647|3KCPnKpMG83EwnGncTcClanyZCIE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|0.969|199.9|0.693|13.42|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|3KCyGLRLsd6eeTdqY0C4jbqo616u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|173.0|0.7|11.6|['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']|['ZnPc']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jssc.2016.08.034|3KL3cZSmUIM0sPTSdTm5yzdiJAEC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br12C5H30I3N5Pb2Sn3|Pb2Sn3C5N5H30I3Br12|MAPb0.4Sn0.6Br2.4I0.6|1.3200001407531068|0.74|196.2|0.64|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|3KN4CRFhwc-PRAyiYlInIHLyCO8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br2.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|9.0|0.43|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|3KNBdbxhM36tAYRUHDhSnxH-a5Sl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|163.79999999999998|0.72|11.55|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793292019501261|3KQadaiFhgRQBjdKQWWvVHmpqQ2U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|206.7|0.611|11.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'Ag']|['PEDOT:PSS']|['ITIC']|bulk|https://doi.org/10.1021/acsami.8b04861|3KRrJJTu9nH0qxZhqssWHzWQxuUS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.39999999999998|0.735|13.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-017-0159-z|3KS00FOo9ycY3GFq9YqW6RVnNc3P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.475|8.8|0.35|0.1463|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1149/2.0171802jss|3KTOq6Hw-ksuJQPnoRQ7koLwm0Nv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.0|0.721|15.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0153-9|3KW6DR6M3gx9VBogkofWdXsYs-yi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.5|0.6729999999999999|15.74|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900557|3KbwXzJylNwJERdnb3vla_oEi0Ba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.97|187.4|0.71|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|3KlANW4tigBJzuLyo3bVdGTUZH0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.131|188.2|0.629|13.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|3Kmwsk7p9Ngbf6niJfHj5CE-LIYY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|207.1|0.763|15.2|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|3Kna2ub54k2EiTMVSADvubMrJjYd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.01|194.0|0.5660000000000001|11.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|3KxLza0Yk6DiMZRWUUr8dqxqKPs5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3MnN|MnCNH6I3|MAMnI3|1.6500001759413832|0.3|0.16|0.41|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04235c|3L1uDXDCkoOq5bKYhNz_rLqGvP6e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAMnI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|145.1|0.6|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b01550|3LDyLy8urcBwKk-_5hXzD9Af9vuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.03|235.0|0.599|14.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'MEAI', 'Spiro-MeOTAD', 'Au']|['MEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|3LFvAdnHGQgdYGtGUrQMBKqdgWAG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'MEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|227.0|0.63|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800002|3LMAJDU3u4xKZ0L-IzX1STPcYLPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.8|0.65|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|3LNBTtFRM0wX8iG-N9BP1XCe-AZ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag3BiC3I3N3S3|Ag3C3BiN3S3I3|Ag3BiI3(SCN)3||0.17|1.2|0.34|0.01|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0120-3|3LNHm4HoVPBvNww6nyYSiPqGvvQ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Ag3BiI3(SCN)3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6970000000000001|109.0|0.273|2.06|['SLG', 'ITO', 'PEIE', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941218|3LUo79XwQ0OPmtiVhcIdJhTFZUr7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|227.5|0.76|19.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|3LWMTClVATxt6d2QJtnRlSY6TT79|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.38|25.0|0.47|0.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|3LXvbGzlpUEB-UjSb02EPTaR4HES|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.02|110.0|0.69|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|3LYGy19MQxdR8HVfAOlNwGfVpnBh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|1.900000202599169|0.6|3.9|0.259|0.06|['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['FPDI']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.185|3LbSwjI_SudKfbpXcHInyu7JZMHp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -CsI3Pb|CsPbI3|CsPbI3||0.887|114.0|0.62|3.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b01808|3LfPa7WcZH4QmGJurz-IFIFduF_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|138.9|0.63|5.68|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|3LjkcpAy3YnscnpPwpXSY9f8-ZR8|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|196.79|0.74|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|3LkfavK7Nh8kvECgpBYdmISwEWot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|193.1|0.71|13.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.10.019|3Lmp2loOXQtxnHSLYcIiWBDW0vHW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.33|291.0|0.631|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|3LoNNWsKMrKltzaHxFsTh-Bo4iYl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.0|0.69|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00582|3Ls2zhgZQdkDxd0HzN8mAko9AcFx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.7900001908697432|1.199|175.9|0.718|15.22||['PFN-Br', 'PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/d1ee02650j|3LuofRpxQ7OHCTqqPr8sY9ZbZqRY|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.072|222.2|0.7190000000000001|17.14|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|3Lxxo2xq9tINlkAPT-8Wnsi8QmRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|165.10000000000002|0.488|7.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700173|3Lzl7gD4UvC19Os9QoEBF0l0o-Ki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|182.0|0.72|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz501392m|3M7TTRB442FyeParM7NxoXPEGzpS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C36F4H68I13N8Pb4|Pb4C36N8H68I13F4|(pF1PEA)2MA4Pb4I13|1.6000001706098266|1.0659999999999998|124.5|0.59|7.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|3MVRkbiQom_LHgNYIGs4Ggt9G4em|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (pF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|152.0|0.68|9.5|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']"|"[""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01220h|3MYgLNZmWzUdBkw_11lrrm2iL2p7|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -Br3CsPb|CsPbBr3|CsPbBr3||1.61|74.5|0.83|9.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']|['[BMMIm]Cl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20831|3MfKaRbad5IXTqfZG3HGIRAETbJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|146.0|0.56|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|3MusVEIUGVTLuR0aS-GYrSGM0uNZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|5.300000000000001|0.18|0.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|3N5JX13krhcJ_gjmwWL3klUx9v8t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|206.0|0.55|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|3N5uIf45r6K0oixS7dkjDKqDzgWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.09|226.0|0.769|18.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|3NHLFOFdIyVmo_dHwzI4kZK1DbRm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.98|233.9|0.698|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc08985f|3NLkFfjxjcEQDl7KRV-BdYnVigmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.953|210.0|0.8|16.2|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|3NSo_yNxvGVOufy-BlCH4RUfTzd6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|206.6|0.74|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|3NTr_M05hPdvmIDCopynJcj969ht|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.1I2.9||1.014|208.6|0.747|15.8|['SLG', 'ITO', 'Au@TiO2-np; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au@TiO2-np; TiO2-np']|bulk|https://doi.org/10.1039/c7ta02937c|3NU3R3ZC4ZGBO_z3qgekiV7AnX26|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au@TiO2-np; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|179.60000000000002|0.784|14.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.electacta.2020.135697|3N_cXpPFVQZ0xqPIbZe2urwCipdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|209.6|0.759|15.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|3N_vp8VDktNDj4GdxSL9IYOJ9sxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.3|0.63|12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF002', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|3NkAh_ytKaSDCfEvPc1OSRAkICx7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF002', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.05|248.7|0.795|20.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']|['SrCl2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20054|3NtH2rNSYWlzNaYo1571ON3q1pqs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.4|75.1|0.768|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|3Nv8uLKrI47YipQCabpRpRLam0h7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|232.1|0.76|18.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|3O5PW3-mw6uaHfziWkDC0BBJrMa2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.8540000000000001|108.0|0.5920000000000001|4.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974789|3O5ollbF778fm8MKofqvsfvO9xTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|200.8|0.69|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00718|3O5pznSKYTlF4c38t0GO8aF_b7Hn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.9|0.652|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2714-z|3OEcMFQDVvBApow0as1pDq1RCbNM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|3OHpbyjZ7o6JssE6uRDZoQLQyi4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.09|222.3|0.74|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|3OOXXJLMPi9B9c6bL7NeaPd1ED_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.466|168.22|0.669|5.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|3OPes964PRgL3zEdf32knEmYy2IX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.101|230.9|0.7090000000000001|18.0|['SLG', 'FTO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/aenm.201800138|3OV3lBwrc2yfjGAB-dn6dfBX5oXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||||||['PET', 'ITO', 'Ag-nw', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|3OVkD3GMRWYp-Az8_QeVx_aOaO2F|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Ag-nw', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br51C100H525I249N175Pb100|Pb100C100N175H525I249Br51|FA0.75MA0.25PbBr0.51I2.49|1.6500001759413832|0.906|186.0|0.6|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|3OdYNoxY4xoCbNi4vQISLLtC2ynr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.0|0.73|15.3|['SLG', 'FTO', 'NiO-c', 'N719 dye', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'N719 dye']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b02035|3Oelw9xnLqqZ1ESa2I297viN_XxK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'N719 dye', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.73|202.9|0.68|10.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|3OfGqqMninSknWG5swCcGtkyZLVn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.017|8.7|0.482|7.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|3OlD4bwdK4GT2-fesoP7g0PuZB_M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.87|206.8|0.57|10.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|3OnCrCb3afKx9oPY1kTU4c2mjE3f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|231.0|0.728|16.3|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr01927g|3PBsoUsgjbm2StMWkVmQ0Ip5FRZB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|228.9|0.64|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|3PeAY9fcpy0TX81DQYU6JMDf9X_W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.0|0.69|15.9|['PEN', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|3PhcoJjl28yhd6cXy9PdM8MzXLiS|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|167.39999999999998|0.7|11.5|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acsami.5b12336|3PrkldDYz9xY4qZEy9_yo0xf1xQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|208.6|0.568|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04625|3PvNWCjjHNhwck9uwjhBels15VWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|149.0|0.63|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.05.004|3Q-M-EL1usV0uLf06c60GRay_x3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6500001759413832|1.08|116.0|0.78|9.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b01728|3Q1BanfXlTg6qgZy4pIbrh4ya-6u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13||1.034|172.8|0.492|8.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/solr.201800357|3Q6GCexq2OCcT8BduVQpdmBGFwHa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|181.5|0.68|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702265|3Q96WBoMaQk1lWrqr_slvOALf36Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6600001770076949|1.05|166.8|0.725|12.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b09722|3QBPTqT4g1UNNn9tQgJ1TTD5WIku|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.928|172.10000000000002|0.667|11.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|3QC3gEKImzTvR4sPrJB91_o7TGKT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|238.74|0.625|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700603|3QFFeDTj7j9B5pHrl9RjLy59ukxO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.1|0.5529999999999999|12.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07647|3QHDXgHs1-4NzwuxydccUbfKsIqP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.98|179.20000000000002|0.65|11.45|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01942-5|3QVubT7_Hag2FGvgcbH5aN9DSE51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.2|0.7490000000000001|17.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|3QbOkJD320srM23_Ww6SYOR7Fd73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.0|0.748|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|3QcObs_sm4TX89KcD2XEGT5JF2W1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|211.8|0.741|15.73|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b03941|3Qra8QeTOTt9qa3T-1trjbC8yJlO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.0|0.72|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43707h|3QvAyn_op8_fHOvRO8IJi12_XgM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|185.8|0.53|8.79|['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|3R4AKDn3A8VF7zWfff9yk7LbRW-S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.05|218.0|0.58|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|3RDBXsAqtfxwM3qpmMnhWL_gg9jq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CsI3Sn|CsSnI3|CsSnI3||0.14|62.3|0.42|0.37|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|3RHz8gGQib9AYli8irs0r8aQPkbb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.028|194.68|0.754|15.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||3RRDrsPBpP6hy6XSfMOqNthJabGz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.07|213.9|0.622|14.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.027|3Rc-tTv0Z7ETLFhX5s8GrCUvJGps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|177.0|0.66|8.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsphotonics.7b00138|3RfQs_z2u8k05bWNNQvNhwqFONv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|237.0|0.69|15.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|3RhTYI_wX79xq4YuKwdrOpeMDXb0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.6|0.71|16.32|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2762525|3RjHXuvCct7Xyiw8sSvSDiP2wlp4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|164.0|0.68|10.7|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|3Rst24hZrIWjt6PmIKMZ5zKH0N_d|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|182.8|0.7020000000000001|12.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.04.039|3RsvK6Z4LR-oPbKSyeNy0EadiSlM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.8|0.659|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|3S1RXlgei5DHb5Q9hO8lfUgNZ57p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.1|0.68|15.87|['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-mp', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jssc.2019.03.028|3S2en8QvQ73TbmoWN_EA3oEc8itE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|181.0|0.58|10.3|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|3SBKGvmmR1qduDW-YXwZ8eydtvBK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.0|0.66|15.9|['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np; TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01331|3SEIVPeZ6-HONUolI7ah6Z34ADtE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5|1.830000195134989|1.18|148.0|0.69|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta09967c|3SESajg8ElMu8BNMYZWo73eXfQKj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|178.5|0.547|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly[4,8-bis(2-(4-(2-ethylhexyloxy)phenyl)-5-thienyl)benzo[1,2-b:4,5b’]dithiophene-alt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione', 'Ag']|['Poly[4,8-bis(2-(4-(2-ethylhexyloxy)phenyl)-5-thienyl)benzo[1,2-b:4,5b’]dithiophene-alt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09146|3SL14fxbUcHy8sily441BCQBHF7Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly[4,8-bis(2-(4-(2-ethylhexyloxy)phenyl)-5-thienyl)benzo[1,2-b:4,5b’]dithiophene-alt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|3SLfLyKtNyT0u8PTu9JsX-p7uYeq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.4|0.727|17.73|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|3SYM8Ezjcb0SD4LmbFu1J6ctDx4Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|201.0|0.75|16.9|['SLG', 'ITO', 'AZO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['AZO-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.9b01292|3Sg36KEJtEDDDdKP_vzBZblzgEBX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|153.5|0.72|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|3SpqIqF_MQ8K7-DgFZnTYWLktOSX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.139|214.7|0.755|18.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|3SziUURhjO90C-hgJ8xghr6q466E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|205.5|0.75|16.51|['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|3T3jCOxf7VutE5UmICnV930aFFLA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C20Cl7H100I29N40Pb20|Pb20C20N40H100I29Br25Cl7|FAPbBr1.25Cl0.35I1.45||0.79|67.1|0.511|2.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|3T5YuRryi3K3qA2Dq1tR2vQ3GlUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr1.25Cl0.35I1.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|159.1|0.62|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|3T6GztgWxmhO5G27YjiLaTYZUymu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|218.8|0.68|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2019.104244|3T6PZ2Vsm9oR25f3QXmhBqzsHIye|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.740000185538186|1.204|198.4|0.78|18.51||['Spiro-MeOTAD']|['SnO2']|not processed|https://doi.org/10.1016/j.nanoen.2020.104917|3T8GmkLf-MTdalpCLw17eBVGsNy8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|167.2|0.37|5.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra21423a|3TE9jza1VQhQIibQNRDeNfw8MBmd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|192.1|0.63|12.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|3TYxAowEgtdyH6zIBLv8S8JtUQk1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.09|205.0|0.784|17.57|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|3T_UeSm5OHeqGBdpnAYxITL1Dve9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|127.5|0.71|8.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|3TfHJTdienz9vk-_ZQt6HVO81Wax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.4|0.736|15.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800066|3TkkHulCLrCK8onIFyTAk5rlODtR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|180.8|0.45|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CAS', 'Au']|['CAS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00844|3TsAue4Kn6nRlrDHAqW0kiA7VUHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CAS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|173.6|0.414|6.87|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|3U9zqMEBUEjsq2cutt5OmQEotv-B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Sn10|CsSn10C9N9H54I30|Cs0.1MA0.9SnI3|1.2000001279573695|0.2|45.3|0.364|0.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|3UBhbuskK7aL50AQgfvMgdi3JjwT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|230.9|0.562|13.38|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00817a|3UGzqfmwQlKRnnkc-MtcuSqjXnAv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|177.89999999999998|0.48|7.17|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201701722|3UIchl1B_d6OuKrDFpz89rclHdje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.181|234.5|0.777|21.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']|['Spiro-MeOTAD', 'PDPP4T']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|3UK9CNgt2Lrv42H4At6pSFmKEd0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|0.973|214.4|0.5670000000000001|11.82|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|3ULdStLOIaYzvGYX4k9QVUPQWg38|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.0|0.8|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11824|3UNWFFtQDTFsViEt8PnPufu0rCKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|235.4|0.7859999999999999|20.14|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|3URdxsQr4sqHhKRa-zQShcdE35Jd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|185.0|0.76|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b06164|3UlBKBk1IcNcksIAHLnHeAkLU2Qt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|220.1|0.71|15.66|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802240|3UqhLqw9q3901ds5RPsVjOa6hbrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|225.0|0.705|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta03782e|3UzSyipvIT2Fb-AUDx57y4O9rMcr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.61|29.3|0.67|1.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|3V00ixL1SDxbKQTWoo3NoaIodIIu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|189.0|0.62|11.5|['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|3V1_6uiMYVHfht3e-DcWNgLnHHHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|1.096|28.6|0.705|1.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|3V4f88ZvDF_DM9E7kG0Xa6lIu8hW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.9|0.7759999999999999|17.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|3V8QXFtWwsn2pGpdw3LmMIwm5BTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']|['Spiro-MeOTAD', 'PDPP4T']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|3VEakvaBuj7EK4cSJ2c2bHVqUM9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.91|188.0|0.773|13.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']|['iDM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en13112897|3VR1PVplYOPS4pxRR8aSLmPCueWc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.98|213.0|0.541|11.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10854-017-8094-9|3VR_ucRiLB4eEUm3-Uj70MuWO3Mp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.906|181.15|0.763|12.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||3VXlKx3Rx7uUhFXqUXn2e7YZeuIV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|169.0|0.62|9.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|3VYmqh7EYh9Z5vCem88qLOEsSdV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.2|0.77|15.03|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/ab140f|3V_PFmNk1GruaWn-kNBwCqtBMnX8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.07|243.6|0.75|19.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201901241|3Va9WV25z6biZl-10ysb-uI1tnh1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.732|16.27|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|3Vait67cdJYU7x5FsObIzrCOLJuB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.0|0.615|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanocones']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|3VqQ1pX-rzFg1LJaUKGJyXF_fQoE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||0.994|252.0|0.736|18.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|3Vy9ryFxMC-nNFdaKvmPp1sd3htP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|179.0|0.556|8.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.17162|3W-tlKm_hW8CoRRpQd0DRqJbI58t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.02|170.9|0.727|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600674|3W2F8Lu41uRk5lRttHNPaTq3IEe6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|155.29999999999998|0.69|10.83|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|3W3uTh4GzCDOXaB8cfafWbrg_6av|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.0|0.77|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|3W5l-snGfsIbxBmYOzYHMoxVB6p1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.0|0.74|16.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|3W5takRLZ6edhv3SfsVEVfAuAug6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|189.0|0.61|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|3WAU9lXmlAewl7ipQDy79OxMEVIT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|210.0|0.67|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|3WSNl6ExVedpq1JXfu8d6XR_HOxy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.97|180.0|0.64|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep14083|3WUAWxlVCu0_jhflliqpUVNcVaS2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.0|0.7|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|3WX8oQfx7963USCdhH9Y0KS4ksCp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.11|220.0|0.7190000000000001|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|3Wf0ogiF94JdCOpMrBEuTV8xzmFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|187.6|0.54|9.01|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900119|3WhMAK6Y8GSZsVPXBlqfjh2UO-4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.97|210.2|0.62|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.materresbull.2017.07.043|3Wils-ZJXHglQFq69Xf2gNx5ylWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.05000021859384|0.95|15.0|0.6|0.86|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Au']|['none']|['SnO2']|bulk|https://doi.org/10.1002/advs.201700759|3WufsNgRt8u3tCS8RvHsGNVc3Ekd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.099|200.09|0.72|15.82|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||3WvjLmXhxLVX7TQ8IO0oUx7_mGMt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||17.7|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|3WzOIsp6ZwwjhMJO799dDFVWzWO3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|148.9|0.512|7.31|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/acsami.7b04392|3X6O7ytQ5e3ahHE4OhrnyHoE2uro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|6.9|0.58|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl401044q|3XEQtYF7_v-lHW88zwv72R3ZnRK7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|209.3|0.71|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|3XM_rVlBRw_3JXQr4qhMNgPytlE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|120.7|0.7090000000000001|7.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2621341|3XPYr28BbBntF9cltqA3YbAVQsdn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|146.7|0.64|8.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|3XQuDJoN_XbHYUA_OFDFFBnxYVRB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||11.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|3XWJlDpESV28ggW5bzdAMyF2Lo_E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|0.866|127.8|0.539|5.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsomega.8b01589|3XXAHdcHPr_u-BciVokAPCb9559w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|172.0|0.62|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.140074|3XXZksgenEp82a4nBOoqRSeqbffO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|56.0|0.344|1.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03655-w|3X_hh_BEoGW9Qdas4qZ2Zpq4wLiK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.0|0.71|14.4|['SLG', 'FTO', 'TiO2-c', 'BaSnO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'BaSnO3-mp']|bulk|https://doi.org/10.1039/c6ta09689a|3XaXSjF4aLN-ea1WZAaTnAs8xD3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'BaSnO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.5|0.6809999999999999|13.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'PEI', 'Ag']|['NiO-np']|['PCBM-60', 'ZnO-np', 'PEI']|bulk|https://doi.org/10.1039/c6ee01555g|3XbGa-DF2wrsdoT3geG6eMpk6Mm0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|221.1|0.75|16.58|['SLG', 'ITO', 'TPAC3M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPAC3M']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|3XfNe-PBNhDvYIAovF63NyAJnyVm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC3M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|186.1|0.69|14.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800125|3Xfwo3x1qb8KAd1fPFVcvcgmvEdT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19Cl2CsH114I58N19Pb19Sn|CsPb19SnC19N19H114I58Cl2|Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9||0.826|179.0|0.612|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE03|3Xlvoo2p6Qkd74MaCy8WMGEFFzOO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9. -C9H46I19N7Pb6|Pb6C9N7H46I19|EA2MA5Pb6I19|1.6100001716761378|1.018|211.4|0.552|11.59|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|2D|https://doi.org/10.1039/c8ta07836j|3XoAwI542PY1ix3Lthu25v8ksRyt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is EA2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|228.0|0.765|19.2|['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|3XqR167fluU4z8wEShwJ1g0LEERv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.11|241.1|0.745|19.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|3XrEKycBZTqiy6l5Ua1mt-3G36wN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|3XraOOMeExSiCvObeE8lWr9sbE0c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|130.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.033|3XvS_jDI3DcFBpX4fn3mN4lM37EZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.1800002324558885|0.551|120.9|0.53|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1007/s11051-017-4108-z|3Y-84VjiryQ-nSBCqEgGXUq8LVQs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.8|0.6890000000000001|15.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|3Y7I_VEWFmj_sjtiii_FcpkoWrad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.2|0.72|14.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14926|3Y7p2hfcnVIsa-1V7NlqMbfn-e6C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|225.9|0.75|19.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|3Y8muOR2re7vRePsPRGC3nrf1QAp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|225.0|0.73|13.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA00739B|3YPngIk1u2C0CoCPSrB1Bof7doIe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|197.1|0.6|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE01|3YULdAEpgNUCkljjsyMYBd6wPv4C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|230.8|0.62|15.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.005|3YYRPGmgLOWQtGeSiqaeGwuSnZBD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|140.0|0.24|3.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|3YZ3KqljDpIprxP0gbZRseLman32|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC5Cs5H25I14N10Pb5|Cs5Pb5C5N10H25I14Br|CsFAPbBr0.2I2.8|1.7200001834055632|1.088|156.9|0.696|11.6|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|3Y_09bC1dt0d7dX2J6sIBk2YyBoz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.92|137.10000000000002|0.72|9.08|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1246/cl.160281|3YgZWViDLU_qH2QNBqb70DV0ICnV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.4|0.61|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700265|3YuXBsALOxF-qv8-0xX_-FCXMFuK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|134.3|0.525|7.31|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01389a|3Yx9ztD2mI-UskIzGTQ7qZIDbjcl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||1.13|222.0|0.68|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12845|3ZELxVtzzqXGVcUhaLO3oHg0zSVP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -Br19C200H1060I181N340Pb200|Pb200C200N340H1060I181Br19|FA0.7MA0.3PbBr0.095I0.905|1.6300001738087604|1.118|206.1|0.772|17.79|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|3ZJFw65vfDLQ6QaVuPWlSZqSbddf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.095I0.905. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|3Zc-eXsQ65SLa0P1GLKFIFEdJKC9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.4|0.78|16.8|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|3ZhM14mzd9D0uU5DyK8reV7LtP5U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|145.9|0.508|8.08|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|3ZngrurMtUgqkOd-AJnYuq4505kM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.0|0.63|11.07|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|3ZtCDxVjYLw8lItbYCILK6v4m--9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.78|165.2|0.73|9.41|['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Ta2O5', 'Spiro-MeOTAD', 'Carbon']|['Ta2O5', 'Spiro-MeOTAD']|['ZnO-mp']|bulk|https://doi.org/10.1007/s10854-018-9273-z|3ZwBGvDL9qdZeXID1hSZi4McjJuo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Ta2O5', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MASnCl3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.027|220.7|0.7070000000000001|15.1|['SLG', 'ITO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1039/c7nr06812c|3ZwdWbS9_8b8AHpAuf9rdbMHUVW1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br170C1084Cs10H3868I83N720Pb300|Cs10Pb300C1084N720H3868I83Br170|BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83||1.1|208.1|0.613|13.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201901966|3ZydBr3aMRkJVul4DOMhrunDNq9i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.311|111.5|0.56|7.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135325|3ZznFP4F97LJVy4h8YXQr7R__Sul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|80.3|0.54|4.09|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.08KF02|3_5LMqcJDRlrDZ3qoxNMK2ZpRvPv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.85|200.0|0.76|13.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta12100a|3_JRKpR4xnVvAajNeLdI1SBv1BNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|121.0|0.64|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|3_SPoJwaEyggz33quJ60PdSBXg-2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.895|186.9|0.72|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|3_T8J3KiGUCSPPNrsrM1_kuyPPmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||0.96|93.0|0.74|6.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|3_YiJeXunnxMzkdRXTib_--po58s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|135.0|0.67|9.0|['SLG', 'FTO', 'TiO2-c', 'ZTO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZTO-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|3_arXOypcrJWeBpPlc460DifSxia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZTO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|100.2|0.39|3.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|3_jNYVeOrnKwlENKpfAZ7QTiURgB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|139.70000000000002|0.41|4.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|3_ovlWCRBI1s4T0Ku3ea6ZC_zgGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I2N3Pb2|Pb2C2N3H11I2|FA0.5MA0.5PbI||0.95|179.0|0.68|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11801-019-8118-1|3a5gIUotRgvm7RJeEAmGw8OnNODh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|211.0|0.581|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|3aGAkbW7sMT_KsV0ofIW_aAYgQqT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.5|0.78|17.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']|['JY6']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|3aNB9jn3lXhJ6JdKVe13z5F2xgtl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|206.9|0.73|15.03|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|3aRjO6_EatN9j1NxPMJxL1DHpxVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.8|0.82|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10022|3aUqMF1BXMuJNrInRK8vbG2WoOO2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.86|102.9|0.536|4.75|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|3aWbh3Ke4M2PxaaubLMhuqb8ZZIq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|115.7|0.357|3.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|3agMAQq0l6Jd7snaMsPaKtogc3fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.073|113.0|0.636|7.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|3b5fCUc_i2ZiC7Q8nGUXkRqn6uwJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.04|220.8|0.63|14.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700073|3b6U3mXKG2pXAOJzt2u1P2iW1JET|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.0|0.738|16.17|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|3b6dIQXFqZOUohMS8RWiTpb54KHy|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.9|0.733|14.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|3bEyVQ-mHxPhi4h_FPGFsbKZgQV2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||180.0||11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|3bGBZnMyzphVWSPp39C-X5YMwtNy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|94.5|0.66|5.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|3bL5QYOhiQedMh1Bc9AiazBmWY8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|139.0|0.69|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08215g|3bMLFiqjf0NQybcLcgLvJhhmIK--|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C19CsH98I25N35Pb20|CsPb20C19N35H98I25Br15|Cs0.05FA0.8MA0.15PbBr0.75I1.25||1.17|198.8|0.72|16.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']|['NiO-c']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.9b16919|3bRiTSBdPm1RvortSvRma_xrpQHx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.75I1.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.5870000000000001|116.0|0.46|3.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c3ra47870j|3bdRZurKSZ2l-Ywgv5Eyj7UBwJMJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|214.9|0.758|17.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|3c2Wo-jz6jsv7uMV5t9-sc_1JAel|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55||0.9|169.0|0.513|7.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'C201', 'Ag']|['C201']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta04166d|3c77_p3ItBSsVHNZOxmCt_v8EoHg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'C201', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7190000000000001|143.0|0.62|6.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|3cH06dvCuDmVRRL3d0jLkCSKxxuX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.98|159.4|0.522|8.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|3cKu94-N_TQtq8GrKVNLjPA1LJ89|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.0|0.51|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl404252e|3cVMdQaR0xCgFSp_bM0ZvgGzB3ci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br291C100H503I9N197Pb100|Pb100C100N197H503I9Br291|FA0.97MA0.03PbBr2.91I0.09||0.9|208.5|0.659|12.39|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9se00933g|3c_YjdyK_MUEi4IN7VDwJnhl3D7m|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr2.91I0.09. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|146.8|0.59|7.61|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ra17316c|3carxUv8sfluIZSkMhPkqwOlYUYd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.65|152.0|0.45|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201404007|3cgTBy-3kwhZQezxoGgKOnGfFqBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.541|199.1|0.682|7.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|3cj8bX9U90e3OhoAE6cz0cV2TwuX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|226.0|0.77|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jacs.7b09526|3cqBxCWiNh4UQLF7GKYgozcDxTcj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|0.83|158.0|0.645|8.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE05|3cqI6MdtA_ZJHdV9skBc8krpYaBP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.976|207.0|0.684|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE08|3d8-WOaUd5zHPQfIL9cHGzWrJT8n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.015|204.9|0.64|13.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.169|3d9LJyFt5YqOzcw3sNz8do6hNDga|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.78|160.0|0.4479999999999999|5.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|3dADYq8OA50NqwZjNlMIHnlLlnXN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.996|191.3|0.6509999999999999|12.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']|['NiO-c']|['CdS-np']|bulk|https://doi.org/10.1039/c7cc09838c|3dBK_iommicewurLPVOORdNMVQ8W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.02|219.0|0.72|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pi.5545|3dVkrYELml_0_aLzlXgVfNbrt9Ko|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.40|1.500000159946712|1.11|178.9|0.68|13.46|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05745d|3dc46U0usd4aB2AJWINw5ABoQ2Qj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.71|17.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|3diuEbkekE-dn8dsoj4Yc9vO3yo0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.7|0.6940000000000001|15.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.081|3dobQzhOOK84NPttebXQkSfhiVFm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|222.9|0.685|14.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|3ds0x5gnzB_vi51Iqt2heTsYXtH_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|3e6TSOZ7Pc2DtyPMPJr8qABDyGKc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|50.9|0.3939999999999999|0.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|3e9aAXPaSEylc0EuKHN3BXAoQPmY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|8.299999999999999|0.4|0.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201301047|3eKeg8f4Sej03v3KWh3SWQPmQCpm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|142.7|0.56|7.57|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|3eMeSCDYLZRfn1FdQoFqBpQXnNJE|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.094|222.8|0.73|17.72|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|3ebZZrnsQLAT6snnp9HPXwWQAyUB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|151.0|0.81|13.5|['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.081|3egJhGn87e5_BjEzqoLwkPBpxONu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|177.5|0.72|13.42|['SLG', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS', 'NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|3eqXdsDUG0PtQlFBVjDzp4xDmyGI|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.0|0.61|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014002|3etP7MccnhEfDoJ4v7-eauc_n7gT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.08|208.2|0.61|13.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|3ex29eI_sg6OpSUGprfJn4SgQPsH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.64|188.5|0.407|5.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cp03726j|3f7UaiQE9MJdycSwUl50s-JNg7p_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|7.199999999999999|0.37|0.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|3fVzXlRqeQoBlKdqs-40gwJcyuWO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.87|208.0|0.532|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-2', 'Au']|['TBC-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|3fXoSHTwJqzf588lw2FPQhzqaU6j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.12|231.8|0.7490000000000001|19.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|3fkSYn7XO1z5NI-XUlnuL5OB30p4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.002|220.5|0.7020000000000001|15.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|3fkWkIgd9gTr_yaC9JquSpkOxFd2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.0|0.54|11.7|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|3fkgJXVtMqseTa55epaUB2cp-tHh|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.0|0.69|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|3foU6Ga44YXMYBVcSYOxciC7gLl-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|181.1|0.69|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|3fz3_oAQ0nquOon-QoixbfRcKWFo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.8|0.76|16.66|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|3g-zaEeTWQ_x7-BWJgw0_YYVy6j2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|231.8|0.602|13.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2020.17288|3g0QIMS9vXyjtcgzXyo1ynkiaWvC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|48.0|0.6559999999999999|5.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|3g4jJmjGTOB73QydS374UEC4bk1I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.198|11.0|0.33|0.1|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|3g8dgKb_Yl6fBQpH0eQ2AgT7HDaS|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.07|34.0|0.064|0.01|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|3gBphAZ8MSmSPalEKtcKfxk6tRXP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.63|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201502553|3gEMmgQARvMkdXvjYZemodX0dEFC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C36H101I52N23Pb16|Pb16C36N23H101I52|(3AMP)FA0.75MA2.25Pb4I13||1.08|133.6|0.778|11.18|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|3gJEaAoVDPMqQl6KzQtZcDeRbpsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.75MA2.25Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|244.0|0.74|20.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|3gNL8NQy2T6cJPvbdWf5mMPmfrkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|135.6|0.72|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|3g_yvyFLfs_tqijxK1YQMwnYSXNb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|190.0|0.73|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|3gekgum4jzJ0mfRhYIgWn3yS_3WL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.81|55.6|0.4|1.82|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07549e|3ghzCdE81mDEmcDleqCXFF5nR6sE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25||0.953|189.0|0.69|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.ceramint.2019.04.221|3gp7PszHKGnyl5lYGAOKRONGKOAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.07|218.7|0.67|15.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|3gqnB1RaQt-h8V9Omhbwa3cQC_vI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|134.0|0.8|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|3gzlAsR6BY7vu4zt3N8w72U7bkNY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|169.0|0.58|9.3|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.8b05237|3h5doI3EOlXOLUMeS94b9GmwEqri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.82|24.61|0.654|1.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|3hHmONRti4B-3837PbuMfSUW1or7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|155.1|0.71|10.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900402|3hNql7Gh8kKtUgrU3oIqS4ugtLfc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|230.0|0.54|12.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b16394|3hd2Hdz8yUhND7SpNZskTQkDsabB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.132|216.9|0.722|17.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|3heltt1AyMRCqcQRjKtPCMSxrrXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|194.0|0.7|13.9|['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b09322|3hqNzBCglLPnOFjjuDfILf0JOdBU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.05|223.0|0.75|17.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00293|3hvgH4JnoNpmEZEPkkzwR4KYzzNh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|3i0BOQfIPL0fkDbrBSN8QWYNywnc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.0|0.708|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201403478|3iBLCI212Xxy0ecHzVe9fSBsIzhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.128|195.5|0.639|14.09|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|3iCnKfnOorGBuk0UbKzFlgMqjFJP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|222.7|0.68|15.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|3iDVCjcJ-O2ZqK-v2PJry8BZK-sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.0|0.64|13.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201900252|3iOe6mQCdg9LRWV0CB-vHpZZVspA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.1|222.7|0.75|18.25|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.7b07775|3iRctCLtxcinwSao6xlILkLYwUn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4810001579207206|1.11|227.6|0.65|16.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|3iV6sDBpzikXkzcUJQQOPtnq8Rlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|164.60000000000002|0.66|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra16385k|3iZK3cyTmLJYOOJh_vrBmj7FZ-Jw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.35|12.0|0.5|0.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|3ifsxrcAf9A9q5Ore_c_OFXQGnb4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsBi3I10. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.194|193.7|0.687|15.87|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|3isrAfJI0g0qUlrj73L-1IOiBDHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.15|226.4|0.748|19.47|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02652a|3it_dQTh_KpSOPNfy3Z85mmNXzYv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|176.6|0.68|11.47|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']|['NiO-c']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/adfm.201505215|3j4kUvt_fFxpaQzr0cdkEMAhtEql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H464I249N166Pb100|Cs10Pb100C90N166H464I249Br51|Cs0.1FA0.76MA0.14PbBr0.51I2.49|1.6100001716761378|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee03513f|3j6Pjd7IW6dDsFtDa4sURs5SAS4v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|209.7|0.598|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226956|3j9lts2ozcfnCG-wLRIP7aiELffD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.88|185.5|0.49|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']|['PEDOT:PSS']|['PTTI-2']|bulk|https://doi.org/10.1021/acsaem.9b00857|3jM0GkXVk0OqXXOs7oXNwE3yGEsG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.88|56.0|0.34|1.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01140|3jSeJwBhmkM5fSFAJQTLq4SwImja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|212.7|0.7290000000000001|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|3jVfBEgHG4TihB5uq9D-ObI9FCgU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||225.7|0.73|16.87|['SLG', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6528/aaf2ad|3jcirW7IqIRgx2w3Ng28EsYv-KDY|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.05|79.9|0.58|4.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|3jgrumNQ0HNa4DiYtA26I8S6nuEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -BrC5H26I4N9Pb5|Pb5C5N9H26I4Br|FA0.8MA0.2PbBr0.2I0.8||1.09|222.5|0.784|19.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RR)', 'Al']|['PEDOT:PSS']|['NDI-ID (RR)']|bulk|https://doi.org/10.1002/adfm.201905951|3k-WYqG5dMZHD7u7IEyQTXdOp0ba|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RR)', 'Al']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|213.4|0.618|12.11|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|3k-_teeL9EB81WXe6nKF-l6Xlner|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8009999999999999|214.3|0.546|9.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'BCP', 'Ag']|['PEDOT:PSS']|['C70', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.09.078|3k0LCzfBD69ierJYQctRfwyKdrjT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.97|110.0|0.68|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01033|3k3rwQuWyty2FE1yiLn_2q1WzFvc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||13.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-3PA', 'Au']|['mp-SFX-3PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|3k68V30ySgtFHApDPDC7hCZXtEuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-3PA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.6000001706098266|1.14|219.0|0.75|18.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01332|3k6IQ-DhMvDlpWHi-1diT-Sli0KG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.88|46.900000000000006|0.36|1.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|3kEehNbj6mkYoffU84abs3yiY56e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|175.0|0.49|8.86|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|3kH6OqC0S4W8JVs1oLgZpfFwGK1g|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.66|15.7|['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; C70']|bulk|https://doi.org/10.1021/acsami.8b11049|3kIi2DGgmtq6QyDNR_G5vGo2JgzJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.0|0.72|16.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09687e|3kW9vZGm2BihrKE_i9HPtW5N1iAc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.4980000000000002|71.6|0.84|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1002/anie.201801837|3kaUfhxiE0W2JB0HeSOO-jCUlCJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.0|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|3kbqqQs5sWeuSo_bstmBa6JifNfx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|3keAWmNdVSkzX-ZLm80qhGb8dZFL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -C17H30I3N3Pb|PbC17N3H30I3|(PMA)2MAPbI3|1.6100001716761378|0.88|144.9|0.514|6.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsami.8b17030|3khTOzRT8X6qwjIv-xKtBleXu-ON|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PMA)2MAPbI3. -BrC10H50I29N20Pb10|Pb10C10N20H50I29Br|FAPbBr0.1I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|3kqUtINvefZlMUOgizQ9vkcYxm6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|104.6|0.62|4.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|3krYuPAlOVmiWg1x4EX2lC-TxnfF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.86|115.2|0.6809999999999999|6.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|3ktT4R4hQPUF1v38Qt2sJMwQ_N9o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.5|0.627|10.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO3']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|3kyQUYaT5AyewWCstu1-dqG6s5CW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25Sn1.0I3||0.125|293.0|0.48|12.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19143|3kyhZh6Aw2V24iYRu0aHqNIHIFUe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Sn1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.67|166.0|0.53|5.9|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0se00460j|3kyip6Dz9_N7KgV72edj4_qdQmk5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.9|0.6729999999999999|12.98|['SLG', 'ITO', 'NiO-np', 'Choline chloride', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'Choline chloride']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-019-03898-7|3l6tIf71oO44yClZah_dOpwC4EUy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Choline chloride', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.809|136.0|0.7240000000000001|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|3l8RtifK0k68HdGe499x6rZGwUYG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|170.9|0.57|7.9|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|3l8aHnAgH7mMXJF6uzrPioj2XNws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|69.1|0.62|4.38|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2019.08.042|3lHrULdpYWPyfaBLxDQINHARcIOE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|237.8|0.65|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|3lU8iipumGGDFEUcDF5dhn6dFtrS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.7|0.71|12.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|3lZngPxXS3CEryuNo8jE_o8sDuHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|195.4|0.831|14.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|3lfnNsrUYM5JceVF6nS7FH3bZPMi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.7|0.7040000000000001|15.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|3lrjSVMLIZ5ZGa9JEbqd9R22iM9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.70000000000002|0.693|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07079|3lsxtNGD1j692qtr5D9OnZ2viof0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.63|237.8|0.41|6.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|3m4Rxgh54KakTaPWr1pssnVG7Mmo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.6|0.7|13.77|['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.8b09266|3mPTI1iAbdHcHAGJ9qjok91Cezgt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|167.0|0.638|10.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuHePc', 'Au']|['CuHePc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.019|3mS0Chmzijrv88eC4JyTqtsevtP3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuHePc', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.100000223925397|0.68|5.2|0.33|0.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201501978|3mYSSoRINFXeHQgcmZ9RhLwLS0SR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.69|267.0|0.669|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|3mbyKPwVNrMHWHyOtrD7UYzTf-cq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|176.0|0.591|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|3mlLOLkKjuWq1jqd4BJTR8YEZrKd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.0|223.7|0.784|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|3mmW5_sA6QLvbMTnYrScOQBmOPU5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.98|205.0|0.45|9.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-4DPA', 'Ag']|['TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07603c|3mmg696DqJ7FvRDlPooOB5Xwx50Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|219.9|0.78|17.69|['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PASQ-IDT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|3n1oaFXDJyD_Q7ouLZ9foxV3-aHT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.73|15.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|3n9FOXdTCkiGtYvX1Xce_vpuHawY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|177.7|0.728|13.37|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-019-03898-7|3nM1y4wHJraKpnL5RAcju52wnn81|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH23I15N5Pb5|CsPb5C4N5H23I15|Cs0.2FA0.2MA0.6PbI3|1.640000174875072|1.13|230.0|0.75|20.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|3nPV_X6VdxhUH_0nR68aMzhVA28M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.2MA0.6PbI3. -C500H2987I1500N513Pb500|Pb500C500N513H2987I1500|FA0.026MA0.974PbI3|1.5160001616528105|1.031|249.8|0.731|19.01|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|3nYJ9cXPveESofX-rOuxJngGpzcj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.026MA0.974PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.5|0.675|14.48|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|3noOW1QFvO79K9_NFHKDQ5igtGIw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53||1.11|240.0|0.716|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201900830|3npZSnx9JSYxRwJqAj3wpGYAMXB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -C15H36I14N5Pb4S2|Pb4C15N5H36S2I14|(TEA)2MA3Pb4I14|1.6500001759413832|0.9|190.1|0.66|11.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1002/advs.201900548|3ntTbEwxswrqVR7ErC5SSBDMraNu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (TEA)2MA3Pb4I14. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|204.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|3oAO4NzaFyHkBxlEgXYNBpLxEmv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||0.91|148.0|0.35|4.71|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7EE02288C|3oCqSbO24lwrksYLasqGMA8Bqd6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.8|0.787|18.11|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|3oHMkw3SHIZlSquLZQl3wL8FXyVF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|209.1|0.688|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201606156|3oQqChYptxaX4dFR5i8t_rtadiFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|233.57|0.743|19.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14619|3oSfz4QA1klJV8HKwsDBp-ip9-6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.45|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn507345e|3oWk9CRMnV11wSIBk86z8TUYwaBh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|157.7|0.486|8.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|3oWwv-Q8ZMTJ5RLWTagXHpQVuLgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|240.0|0.6629999999999999|15.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|3oe6H8HK1OunEzBkNSiopywT9BTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|125.7|0.725|10.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.10.008|3olK0C-R9kiqFE4O_6LiQ-ampn4W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.6|0.76|18.27|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|3orwedj9WlaVmfVknfJMxy0sPNR6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H25I15N10Pb2Sn3|Pb2Sn3C5N10H25I15|FAPb0.4Sn0.6I3|1.2900001375541723|0.601|247.3|0.509|7.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|3otsvMaExtl47L1_jKj21_53VqHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra09691j|3oyQHGDmsAgaUGIaSf8tT1b7orVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.12|157.79999999999998|0.75|13.34|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ra06363c|3p1FUUXltc3OXhe64_KS_qUXU649|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.043|216.0|0.698|15.78|['SLG', 'AZO', 'Ba(OH)2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ba(OH)2']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227091|3p8N39wHE7qxTK62EYDAkS7Q9r7A|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ba(OH)2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.0|0.69|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.013|3pEkjR5kLHqkzdE_cV0PhE1AbhUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|229.7|0.8290000000000001|17.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201800054|3pRaMG4Spmup_qASxyJlk-97uKtr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|245.0|0.7|15.72|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b09018|3pmbQ3vArUDs8nysDFIurTcQsnYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|192.0|0.767|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.019|3py1XmbGQ47TJF8sHwpK3M1SFVgi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|187.9|0.62|11.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|3pzRP6KX_jbyWMZ8a8MipYZYZaIq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.31|216.5|0.647|4.0|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201703800|3q4IWtaQw_jNTz1Te2wDdTHVd46A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|161.0|0.86|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09174a|3qNyKT4Kw4WY8KfKamWKn-5tIWB2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.7759999999999999|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60; MAI', 'Cu']|['PTAA']|['PCBM-60; MAI']|bulk|https://doi.org/10.1038/ncomms12806|3qZKjzhAy6ecEMNBzZC1tPRfFFHq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60; MAI', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.1|232.2|0.735|18.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201904945|3qo2e9T--bIV-ZQJDqYkBJyxEJ0v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|179.3|0.71|10.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|3qqcjwsvGXt3emvlN9zhXbBBxPPD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|198.0|0.62|13.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201900252|3qrYRlwSH8iXENg8ZOt5DRN5O32g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|177.0|0.552|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201409320|3r2EjzmhYj-nNK1k0EzfClL76l2T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|175.39999999999998|0.588|8.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.08.095|3r5LrzHQ76X1D9Au81ERaDMaBIAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|199.7|0.589|9.64|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b10651|3rCg2wNmoqlwA2jGTTsahz3gYqu0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|221.3|0.7390000000000001|16.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|3rNtC_umnknHV0-YLCo3d6M1d50B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.033|203.5|0.682|14.33|['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|3rg5HlFKG-DM9wDvH0jye4_fNKmF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.905|230.0|0.63|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b02443|3rsIOVCM6Fdre_QB_xnoZdZpt9QJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.0|0.746|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10008-018-4066-0|3rtHWFBCjflgiZvPZ5h5u5DX8tg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|239.9|0.4379999999999999|9.47|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|3rv_Ob94ovCF6fhd9On-5fiFqcb3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.896|168.61999999999998|0.71|10.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||3s0DpmgxNCt3mVZ27TUHeJLx1_b7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.525|156.88|0.354|2.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||3sATyC77Iv1JsitsN-_Z1YQN9kSJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|199.7|0.56|10.24|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2018.10.034|3sAVB2PiuqyUxYIrgUcGw_VOaBwr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|3sDkZgljXTfrQah9107TnfoquYnl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|165.3|0.56|9.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|3sHlv3FtJe4xL0ZoXohjD1l9alWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|176.4|0.67|11.5|['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201306271|3sb4-aULL8dhaiKyU0djDqbwnzu2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||1.054|192.1|0.679|13.64|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.061|3sbqqrs2LPj3238ieEUCHPGsDPDW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.0|0.8|19.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']|['PTAA']|['C60-SAM', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms12806|3shnwlSxEhdJaR1vdZUBLmITiJwA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|202.8|0.537|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|3srTt5iCFlC6A2Ms4lGqQKKirjzx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|230.0|0.78|22.2|['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-macroporous']|bulk|https://doi.org/10.1002/adfm.201804356|3t2F3fVR48Lc1wbwK_kZrbrFZf2R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.0|0.7|15.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226819|3t3eNxWNSAD59Egzjy_JiivKqYV9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|182.9|0.61|10.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09925|3t6vfBxqN8d1b6nqw3Mz_ZFRJ9SV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.62|31.200000000000003|0.381|0.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b16349|3t6w7eaaalwIDtimqYIUDIB-VfAg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|210.5|0.71|16.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-1', 'Au']|['HL-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02556d|3t8ePff0q4a7FTnRoQZ4NpR6Fh3v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br4C68H324I180N122Pb61|Pb61C68N122H324I180Br4|BA2FA60Pb61Br4I180||1.1|244.0|0.769|20.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|3tB-bbKHFHjOkDubPAlb4epy_YM3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2FA60Pb61Br4I180. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|187.0|0.76|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|3tTBYwus19X9As1kPlPCu5FshDiy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.01|169.0|0.74|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|3tVc0PGpgVFzRB3AmflG2NJV5di_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.0|0.611|10.8|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|3tXcKNBMX1jnmYnQoK6olTT2YQC7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|148.0|0.61|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp04749e|3tcbl1f6Yc0RihTU2ib1AXzfLQfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.0|0.84|19.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|3tgOZGrQOANfAL6eCNqA1I1gDaux|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|66.7|0.18|0.67|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solmat.2017.02.003|3tnN3a04H_xJisvsUsB7D85VG2T7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7170000000000001|154.0|0.53|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|3tpamG4nY0i4-X0LRkSFqcPcXUSS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.640000174875072|1.139|131.4|0.72|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'TPD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.5b01716|3trdCQYpPLeGayoRduOY9eFo6Iv7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8Pb1.0I3||1.08|183.6|0.44|8.73|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc00882a|3ttRWrJl0O25bLkj_wlVt_bt3fbM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|179.60000000000002|0.75|16.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|3twIim2LEg6DLjlhJc0VllG2j4hZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.044|213.5|0.677|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|3u6DS8K6OW8RQS7Cs6Nx_900MvNS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.93|186.7|0.58|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104246|3u9bhN1QkztXFqEuf4dY9N6rd2a9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|171.20000000000002|0.68|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|3uK3EqzRHEGF5Sn4LbJU1I5sMrKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|44.8|0.341|1.28|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.03.027|3uKUOLBxFAibEq52zVi9g_tFdjBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|250.4|0.737|19.38|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|3uLZ9-cx4h4hRbpbFk_J_Gea-znb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|111.0|0.51|6.06|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|3uZiateWt63q1YEf1vsJOSbcDVIH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|216.0|0.74|16.62|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-70', 'Rhodamine 101', 'Ag']|['NiO-np']|['PCBM-70', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7nr01678f|3ui6s7Eh5jMy0SjJASVqVUiFYLKT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-70', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.78|181.5|0.55|7.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|3v1WmAutt5VIvTTs0f2e21y3VTxV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.08|238.6|0.769|19.87|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|3v4GWVqiRLfCUxHO9__ml-E-dOOw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|205.7|0.77|17.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']|['NiO-np']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1002/adma.201504168|3vCgLiFzaUvqCHEbXUhi1B-naCji|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.23|150.0|0.7709999999999999|14.1|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'H-Z1', 'MoO3', 'Ag']|['H-Z1']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900265|3vDF7igDwty009hA9AtGPAiEEMRI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'H-Z1', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.2|0.74|15.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|3vMO5xeTTfxdYZ3bzWFVgsURHt5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C40H220I51N60Pb20|Pb20C40N60H220I51Br9|FAMAPbBr0.45I2.55|1.6500001759413832|1.026|225.6|0.654|15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b00144|3vROyTeX9rHrTOmcF7QdZeXrfR4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|175.0|0.682|11.0|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|3vW4MCLcDFUECcUgVWBVI7rBFzEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.0|0.73|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|3vZo2OH4Sbsq-Gcw6FzOrNDA3g02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.4|0.65|12.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C12', 'Au']|['3,6-di(2H-imidazol-2-ylidene)cyclohexa 1,4-diene-C12']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|3vassy0R2wA9ombSdXqTSiiHMZXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C12', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.935|198.9|0.5770000000000001|10.63|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|3vgZm6ND6EghkvWT3D8XrY8AywgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.4|0.71|13.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700141|3vzh91jq5Yjthl1Q6gc51Z5XRtoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|192.0|0.7|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|3w4lzX23m_5R2Z8rQOpEtPK6yuEF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|108.0|0.43|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|3w8jU9-drELPmOPwJWT5lwuacApb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|197.0|0.61|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4966893|3wGmVS4uVB1L9HJjILJkXgsey95z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|0.83|221.8|0.56|10.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS03', 'Au']|['CS03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|3wM1euQfkL6lsLK0NZ2JbwpSjiNR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS03', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|123.4|0.731|7.76|['SLG', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.9b00796|3wRta0qyp62NeF0R7ezTirr7my7t|a perovskite solar cell with the following device stack: ['SLG', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||1.075|173.5|0.774|14.45|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|3wf3Ip5yve4h4Ty1b-NMrV9l6fAk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|195.0|0.54|8.74|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-Se', 'Ag']|['NiO-np']|['NDI-Se']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|3wgE7sqlaiDTJwfZoklnD4c22iWz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-Se', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|199.2|0.685|11.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201700018|3wlXH4cublckVc7OWsODFA-w8uvL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.5|0.768|17.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b22044|3wlyalET3VAaSmiEiGRBJPxSMyOM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57|||||14.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|3wpc1RlpT8cJ4XgJzDuaTNNr6C9X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.72|52.400000000000006|0.4429999999999999|1.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|3wsScwAnXZPcC0NOJnLcXGx6HIUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.0|0.687|17.3|['SLG', 'ITO', 'SnO2-c', 'IDTT2FPDI', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-c', 'IDTT2FPDI']|bulk|https://doi.org/10.1039/c9ta09260a|3wsjSL5_ltaSltWQqmc4R8mvWknw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'IDTT2FPDI', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.114|241.0|0.78|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04246b|3wtoFQM8N_5RDNfuxLBgYBGTI-Xf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|175.9|0.55|7.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|3wyz2VBkDDgiprBfBJ7DcKUN9M5v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.027|232.3|0.738|17.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b13648|3x0LP1LYQtfuQYQcBLKx3JnT_jG4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.95|230.5|0.296|6.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.099|3x11IGMKHYBT04HAqn8etbIOvIqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|242.7|0.722|18.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201805944|3x2K78EQUZywAuCSQryu5y4SKAZw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|132.5|0.48|4.37|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|3x7O8M9LMzBAnOtPw6tu4BYUBqzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.7|0.546|11.9|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta00973a|3xBWU6O6EYBYOs7edjFu21IHIpCr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|171.8|0.67|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BrTPA-PCBM', 'bis-C60', 'Ag']|['PEDOT:PSS']|['BrTPA-PCBM', 'bis-C60']|bulk|https://doi.org/10.1039/c5mh00026b|3xNpOxxY6qA0r3-9oHuAP3zLwL8x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BrTPA-PCBM', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br250C100H583I50N117Pb100|Pb100C100N117H583I50Br250|FA0.17MA0.83PbBr2.5I0.5|2.153000229576848|0.951|28.27|0.8590000000000001|2.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|3xStR4RcfkOYLV3JQHVSURkv40nW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|204.6|0.7|15.5|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b10994|3xUY025OXxTFstD_MfmfHtnLtVZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.954|242.4|0.53|12.48|['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Alq3']|bulk|https://doi.org/10.1039/c7ra06645g|3xUs1IESHSNERUl2Sqz1N20Pxnvi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|229.0|0.74|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|3xZS8GUKgrdYBFIgiVEjjM74nzbV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||11.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|3xcc8KMgjLpfgM8JqxSsH64PyqXX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|219.8|0.76|17.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|3xhIfdizhRgtP8HszgT-d_YJAHFx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|192.42|0.722|13.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.150|3xzeEbAN78xSWMWqm73nX6G2iSRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|177.0|0.65|10.35|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|3y-acA8DtdpxioqRfBMfAaFChPZZ|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|245.6|0.8|20.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|3y3kgZ-nKjIf73QWZTfPYjr9xD_R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|185.6|0.648|12.14|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr01678f|3yE0B-UsC13UJ18rnZBHkA4n3-1I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|214.9|0.77|17.18|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|3yELtHMzMANrW5MaoTPXkzIt8eA0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|200.6|0.7809999999999999|14.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|3yMI_YufgOdU6cIL3VddhErvWKnC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|0.78|179.0|0.64|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00820|3yTdVoWezV0WcClPp016XVcDlaUx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.792|17.98|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|3ybVeYDEACbpXMCCgEXzrbUgOQzH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|175.5|0.72|10.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.150888|3yefXnmbP_nvW0AL1abAhlPnhXe7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|140.7|0.45|6.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'DTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|3yi7sOmZ58iDc0xR3lSgeKCPdu1Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.7|0.71|16.74|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adfm.201604944|3ytwLlOkFzAyCeuP2I4vkZSmCS3u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|256.0|0.701|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,4-spiro', 'Au']|['2,4-spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.10.014|3yu-L-_Rh_hE3AxkTvmAWXE7McJZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,4-spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|86.7|0.65|7.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|3zGI5AydBTCoVesPWPUqeOQawCjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.3|0.77|18.77|['SLG', 'ITO', 'SnO2-c', 'PA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PA-SAM']|bulk|https://doi.org/10.1021/acs.nanolett.6b04015|3zJvdv59L-KWzxLrBph5vv5XQssz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|168.0|0.79|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7sc05095j|3zRgeIoM1cYEFnZyrCMoazlcK9xM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||||||['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/s41560-018-0220-2|3zSO0cUNKZ1MfEVDQt-rFIXy2lH0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -Br250C475Cs25H2456I1250N869Pb500|Cs25Pb500C475N869H2456I1250Br250|Cs0.05FA0.788MA0.162PbBr0.5I2.5||0.94|222.8|0.72|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.011|3zZ8zB-nkTZTqhDzzAYIIoinINnc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.788MA0.162PbBr0.5I2.5. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5100001610130236|0.851|171.5|0.5429999999999999|7.9|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['LiF', 'C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|3zclKY_HaqyCtysLS_mv9MW3o8Nd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -Br9C19CsH97I49N36Pb20|CsPb20C19N36H97I49Br9|Cs0.05FA0.85MA0.1PbBr0.45I2.45|1.5900001695435149|1.13|220.5|0.787|19.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'TiO2-np', 'C60; PCBM-60', 'Ag']|['NiO-np']|['TiO2-np', 'C60; PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.8b01507|3zkpsIddAL9yw6gqW66oZ5gahSYg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'TiO2-np', 'C60; PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.45I2.45. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.07|218.1|0.7|16.55|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.012|3zqNvgRaKbE1xP6elb_3cL_tbPPU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|219.8|0.6890000000000001|17.21|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7nr05416e|3zvL9awEV7Fn6gqV-iEV1qYUjKDE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.52|82.8|0.83|10.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|4-13_tDyc23dlKVcHAbp3RgVCcuS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|150.9|0.609|9.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|4-5rJG8W1d9FzFFzroSBBwOaVC70|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6890000000000001|25.5|0.35|0.62|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|4-A_P-SVMaP1lZZTRYS4qVlDQgIS|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|231.0|0.775|18.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00613|4-Hub83J-jeqfewuPBSJadBKVIum|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|220.5|0.7190000000000001|18.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-3', 'Au']|['TbT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|4-LEVm5XhCu6Zaky5_nMX7oSfv3y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|211.5|0.6609999999999999|14.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804856|4-O-U3zJM7m9XJCPmKa3fuEiWCF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|200.8|0.67|11.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|4-SAcCzwt8mrCJuRuPG9VFnslUBP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|166.5|0.55|7.95|['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovsktie', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1007/s11051-017-4081-6|4-Sn5K0b1z-x-lcOc2Xwsmv-MU0c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovsktie', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|226.0|0.7|17.2|['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']|['DFH']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02983d|4-Sou64VZ9v3bU3hRukUc0k8VmGo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.2|229.0|0.764|21.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00888|4-lVQ9jYYiGK0q95rMXijKr9fHqI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|226.5|0.69|15.5|['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|4-qSn2yRPviywp5yFHSIoHvzql8i|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.6|0.6890000000000001|13.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|409j_mCrM0TpNgF7E_4OMERucnb4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|171.0|0.55|9.5|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8me00031j|40ALenxe7F2_nMGUFCpTszG5Z_3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|167.0|0.56|9.0|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|40YSDfbjnRYONPbarcshSabm_Lo0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.11|225.6|0.6779999999999999|17.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|40dRzEWdb_vB-v9BSYv65APpGLYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|31.8|0.46|1.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c6ta02918c|40ojpyqZDjINyHZ9wPwEj9VEXwf5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|161.29999999999998|0.55|6.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|40qLfgZbl19YDJbkbPlAUXU8P7-6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|175.6|0.74|13.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06766f|40t19YgveOHQVedFUCfuuFk5_Afd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|170.3|0.64|10.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|40wo-gAzgJ9lQrSNQOTHJLBwlBHX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|149.0|0.68|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|40xQnzEW8KoRIglNFqvqPePwQ53t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.032|212.1|0.73|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09028a|40yZ3es9vPClZwR3i25qMt2tWz3T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|232.0|0.691|15.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.050|40yiyeMmWOky4UHPVi0VU6wXmVKo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|161.9|0.682|12.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|415V5V33kBs1jkAUPrJSttcFx9be|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.35|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|41Hb9RzW21Aiy1js4y04s3JopWP-|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|228.0|0.56|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.061|41OQLCbDI4BK7mFlibg6w-rw7hrU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.7609999999999999|17.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b11740|41dP18WMJdavUHt_Xh-qn_5_febj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.048|287.5|0.62|14.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EH44', 'MoOx', 'Al']|['EH44']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01498|41gVQHZx4teonukRcVBOG5oyjsYA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EH44', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|126.0|0.62|7.7|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|41y80XgRdAPCV9-nsjPISNfnMVEc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.735|17.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|421OeYuqQC2FmOBE8DD18k63qwwj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|179.0|0.63|10.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|42FY-2m9zjSYOGeE19COr0Vx_dpg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|175.3|0.7020000000000001|12.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|42I2qIIn2jcWKwRXrL7lzpHNzXKE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H24I3N2Pb|PbC8N2H24I3|BA2PbI3||0.58|0.069999999999999|0.34|0.0013804|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|42KZiumhWxqsMAS2trA6JPRAGZX3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|130.0|0.78|9.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|42LnGFXzgXCmYPuwg8gV_rHzfM9o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|174.60000000000002|0.63|12.17|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.03.041|42OHhxASDq4XRmqwqhM0ouju-Pqn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|136.0|0.5|5.4|['SLG', 'ITO', 'Perovskite', 'C60', 'Ag']|['none']|['C60']|bulk|https://doi.org/10.1039/C4RA03820G|42PiDi2nghqG1Zu-d6qKCDCutQQK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|190.0|0.67|12.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00545|42qS_ZHygnoIb39_SllStTwr7t2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|225.9|0.72|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoballs', 'SiO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanoballs', 'SiO2']|bulk|https://doi.org/10.1007/s40843-019-9452-1|42sHgLBybTFKAkBAynBWJitttjcN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoballs', 'SiO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|196.0|0.46|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.223|42vg7oswfJG7StawsPcrIGgmSauM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.1I2.9||1.04|214.5|0.74|16.49|['SLG', 'ITO', 'Au@TiO2-np; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au@TiO2-np; TiO2-np']|bulk|https://doi.org/10.1039/c7ta02937c|43-3HmHVTdcUyELlH-gYeKl1dTcy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au@TiO2-np; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.1I2.9. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.085|226.7|0.75|18.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|43-5cnURJ0XshEKjT96w1SVBG4OB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.947|184.0|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201501460|430Ig1rIouiLcLwZWlBsrcIskvU4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|2.8000000000000003|0.23|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.07.004|432PXyTg4_PJBzibx1GhdtA_KeNb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.132|235.9|0.75|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z26', 'Au']|['Z26']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.035|43IswqpkTZXuNZ1Woe0eHwe0fsyj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z26', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br5C198Cs2H1110I595N276Pb200|Cs2Pb200C198N276H1110I595Br5|Cs0.01FA0.39MA0.6PbBr0.025I2.975|1.6000001706098266|1.07|227.0|0.77|18.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700302|43JSo_sCIQx-ofBr6HkXSjnX8hSK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.01FA0.39MA0.6PbBr0.025I2.975. -Br10C18Cs2H93I50N33Pb20|Cs2Pb20C18N33H93I50Br10|Cs0.1FA0.75MA0.15PbBr0.5I2.5|1.5900001695435149|0.99|134.2|0.72|9.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|43KOz9LYqmeMJjXneFxB48X4ubKT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|231.9|0.62|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|43Z9_dRAbZi19VsZ1p3ROVR5KmDk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.6|0.7170000000000001|14.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|43abk16YZzo-4oanYsSHeUDTjjd5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|137.0|0.628|8.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08656f|43hLAR51Q6LqWQKrkLJwWQ9XG00Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|205.0|0.69|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.020|43i3yyvSvWw9GuJh4gJJw6AMFMWh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.0|0.6|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']|['CdSe-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr03487c|44DB7x4QGPwwtiHdmazjm2WiEcbJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.08|208.2|0.793|17.97||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|44Fq3oXDFf9e9UlFVQAji1pqfnrG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|207.3|0.505|10.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|44Hp97Tapg_dZg32jd0qLN01rqwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.13|220.0|0.74|18.8|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|44Iyel-QVI6mp4pzRi2Mb2WncwVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.9|0.79|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|44Smz07gEpEWv-g089pnCEt1jSJM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|207.0|0.718|14.64|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|44UFENhCYULFcxfKkx0v1qBJdrbh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||8.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|44hKXtU35OXrh7-yD4mF-3HxOOkk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|234.1|0.68|16.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.087|44uMWyGf7w2dVyrUymqQLgxezM59|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|124.0|0.601|8.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2018.08.005|44vNSQiArK1tmu5j4OM2CUbSF8nU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.7|0.568|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|44vq2m-APAIb7weHFSWJjToEaf6I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|138.9|0.579|7.99|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|45CqxQcGEJVs_nWWX8YeKpIf3xsi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.0|0.708|14.72|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|45G6gur4oTt-CFSidfauOUQzJnzn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.89|187.1|0.44|7.32|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|45MnX0Seo0nUjtHDx4mS5geSv48S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|169.8|0.535|9.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03593G|45SS5C5Zkm2u3gNt-vPFRxozXj4I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|193.0|0.71|11.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|45kCKSVzPvwdMVYPcMpRCUVouWe7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T-MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.81|110.0|0.56|5.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|45kP_mIftXeqOM3iylXWx3A2WiCN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.079|70.0|0.71|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|45wX7ANOYJp7oVMOto9TVk-51gzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.89|8.2|0.53|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|46-jvllXzebwZIhOIw409orp4zSF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|224.8|0.787|19.89|['SLG', 'FTO', 'TiO2-c', 'Graphydine-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphdiyne-QDs']|bulk|https://doi.org/10.1002/admi.201701117|460BUEDMw1q2nof5PjiTRywWCeSh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphydine-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|133.0|0.44|5.2|['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1117/12.2212130|467KTbBBmlS4ObAYU5SVI0DNsVuK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|191.4|0.7240000000000001|13.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|468nrSpgRnDnVfnhW7MiS-9u4oxV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br11C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br11|Cs0.1FA0.75MA0.15PbBr0.55I2.55|1.6300001738087604|1.18|236.8|0.743|20.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|46AtINqSin1kxI9CzgKCOg49H8Yo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.55I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|171.0|0.47|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|46JHPWz6qHDnhAGBTT8ETUc6FERh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.4|0.6709999999999999|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|46OoW93Twab8s3dEoaki5wUKR9fr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||14.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.03.005|46U7N6FlkVxwe_okUGNLeOSN8bsk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|125.0|0.38|3.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00545|46VoFM5cacNSUAqwUOz_5-Bo4wQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4860001584538762|1.09|217.7|0.71|16.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|46W-Vf2-wK-cmIaSAHNMyrqRuwrN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|172.5|0.61|11.3|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s40843-017-9130-x|46_ZtdHEhi4fEk1zJ5f3wtblPEtm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|211.7|0.64|13.14|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|46hEAgnJX4mh4oT5_icctyu-O0gm|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.982|201.0|0.72|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|46lgWSvM5OUrM4MQNp6xMIIe4lPj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|169.7|0.596|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-MeOPh', 'Au']|['FA-MeOPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04179h|46maD-wiz_kTzt08fsS39WfKdJ5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-MeOPh', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.85|10.0|0.73|0.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PiF8-TAA', 'Au']|['PIF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.7b03227|46rtjf8dTl8h4iFt0GyHJ2tswCWr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PiF8-TAA', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.0|0.584|13.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|46sRJ5OEMFRdWyPgPDFJ6dhIm6u-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.58|215.4|0.26|3.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|46vB2F0yhy71JH6NKggv0BLM1B8q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.557000166024687|1.01|215.9|0.62|13.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|471P40bjWxdoU_Hl3Sybd-HHgUys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|202.7|0.74|16.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0tc02078h|47GwozkX2XTQa8VJFU2tP3JLCTgt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|109.0|0.58|4.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|47LWmYBsIkdPvDRsfs05-nSSLhji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.7709999999999999|311.0|0.733|17.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|47PSOfAm48pglP_Hl5SC7nn3I8pa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.4|0.73|15.43|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-24436-6|47RAFxvBq6FMy37-dSXYkXaeSE9_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.0|0.7809999999999999|18.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700484|47UlDkmYoEES0yEUkqHfboXPzyK0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.000000213262283|0.6|29.1|0.48|0.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|47YhWRsYx6NukOoSCknw4zcSltkx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -C103H603I300N103Pb100|Pb100C103N103H603I300|(Ace)0.03MA0.97PbI3||1.134|226.7|0.75|19.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|47_zQ9zzSm4VfgFiCVl09xoSN3uu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.03MA0.97PbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|1.03|213.9|0.604|13.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|47cl5wO47WYV6CwuwuKfpQnIPZcX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|122.0|0.61|6.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|47eKMR1n7NnqF58ry61_ta-Bjx6B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.97|188.0|0.52|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793292019500772|47gJmxggc06NINKoM537s1MFTfCo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|171.0|0.59|9.25|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta09249c|47jIVfWpzlGlW2QjhWpQlsvS6TX5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|204.0|0.619|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06189j|47kKBpJ1RgUAlWk1jwz7DPMHDApy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.71|223.2|0.67|10.61|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|47q2T8_v4bNvsXuzQMNkAWNMK_PF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CsI3Sn|CsSnI3|CsSnI3||0.32|23.2|0.38|0.29|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|47siAwikpuXvv8mtNODu6EMg3TaL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.899|171.0|0.71|10.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2DT-T2)', 'Al']|['PEDOT:PSS']|['P(NDI2DT-T2)']|bulk|https://doi.org/10.1039/c5ta10696f|47u6rKAoUC9yF81yYwaVUCEZ0ASt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2DT-T2)', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|217.4|0.764|18.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900476|47vj2IVlonp28Wb7fgM8fbkTSfbR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|224.3|0.73|17.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03103c|47xlFjUGdcsyY8MmsR81HeB6k5Hn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|195.0|0.37|5.85|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|47ydgAGrfM98UZJCPO3tlirQO4dK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|214.8|0.7859999999999999|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.014|483IMdaVYnhLOhopAWHq8r7s8boR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|220.0|0.737|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.017|487rCKRDF6hPBq2X6FZIi2m__SOD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|227.4|0.551|12.15|['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au-np; TiO2-mp']|bulk|https://doi.org/10.1246/cl.190233|48Vv3JF130OICUWgnJcbzRUfTRAY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|205.0|0.72|15.2|['SLG', 'FTO', 'SnO2-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nanospheres']|bulk|https://doi.org/10.1039/c9na00192a|48Zcsmo_Q_GfZzJtzfxh3wX0S7dx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.503|73.2|0.715|7.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Carbon']|['PVAc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.9b05631|48bGOfMna2GDJjaJB6tlit4gsBVb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|204.1|0.8|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10022|492XfJZ97gbemUsIe_-JePhGDb1G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|216.6|0.691|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc02928d|4976X3BWiLDbcs0gGU6zDOgA9eMd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.06|250.5|0.73|18.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.056|497mkxuwKY0AOt1N6SbyWFcjLF6i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br54C95Cs5H542I246N123Pb100|Cs5Pb100C95N123H542I246Br54|Cs0.05FA0.28MA0.67PbBr0.54I2.46||1.0|194.5|0.7909999999999999|15.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|49HRmx8YFIJir0xPwfsTzy1NBByN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|112.2|0.408|4.33|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.3390/mi8020055|49K67KJ1VFhEX-FscxqgZM5_NpNV|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.98|213.0|0.73|15.4|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1007/s11426-016-0289-4|49edcT21GuiIqkTXYXUE30tTGcHP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|165.3|0.56|9.02|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['NiO-np']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ta09845b|49gkvElpKnLPWQe0RZxFC1COanWl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.11|245.7|0.792|21.67|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|49jbjv_uTK-DGub9JsxCCXsw6VJd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.2|0.7390000000000001|17.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02603j|4A18em-WlpvxF4B4g2UXCG-k-Tjr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.72|16.7|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|4A6cXsLCCpi-ppUsoHD3WcWmUHjA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|157.0|0.384|5.03|['SLG', 'ITO', 'Perovskite', 'Polyimid', 'PCBM-60', 'BCP', 'Ag']|['none']|['Polyimid', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|4A8kaPGd4XAUf6tqt8ZgBNoR8PDB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Polyimid', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|120.0|0.45|3.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|4AMKKarySbqAr00uxOLhPLOdxc-c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.3|0.74|17.49|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|4AM_bVMaVuqRT-oKS_TMYZJx61Wc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br369C950Cs50H4873I2631N1777Pb1000|Cs50Pb1000C950N1777H4873I2631Br369|Cs0.05FA0.827MA0.123PbBr0.369I2.631||1.11|224.8|0.778|19.43|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201803587|4AS5Z5IJYcAER25DUNU9tPCCn5zF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.827MA0.123PbBr0.369I2.631. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|180.0|0.44|7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|4ASiBOC35MnnCTGvv6AcWBYYebxD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|63.5|0.439|2.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6cp03388a|4AU0Km76F7qCpscr-GIglqiE4UBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.777|151.0|0.68|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04904k|4A_izzXkeddUD3TZjXkzVgWDvW2K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|140.9|0.653|9.47|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/coatings7120215|4AdBtITO6qMfzB3C-6NmDgVPvj2R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.8|0.706|15.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|4AfA54NLJkkaQAhWtkHJTDX6qEIU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||0.96|188.0|0.66|11.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b07318|4AiXf-siCw1HhrextCrg34ObM_uw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.3|0.7|15.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-1', 'Au']|['THY-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900143|4AlNPSwGTXHDfIWN1nqfX9o5wFOH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|182.3|0.47|6.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra27434f|4AlVG3cICJZ1CY5rz45CJ-_EhgFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.04|241.3|0.71|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']|['Spiro-MeOTAD-I']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|4B2izA6PlWAObgpuWiz1dX2P0K6e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|198.0|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.04.038|4B3knGWBrqHRv1tbuYI4-1esomUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|169.5|0.492|7.5|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|4B4HiBe4Ke0HddBQkkGbAMOvnTzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.94|195.0|0.62|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|4B7bXhOblzP-I8Tt5PmWImeMXWFx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|155.5|0.73|11.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|4BBj40XzbdgjFfe1XBArDlvdrAGW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|112.0|0.58|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00122c|4BHTJbESF8i8_3VParyt6D9StVWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C57Cs3H205I85N44Pb15Sn12|Cs3Pb15Sn12C57N44H205I85|BA2Cs0.6FA3.4Pb3Sn2.4I17|1.2400001322226155|0.7|242.0|0.63|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|4BJvxx0eMqW-B_b6pRE_wrpn-ATI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.6FA3.4Pb3Sn2.4I17. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.037|227.0|0.7240000000000001|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Au']|['BTT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|4BKNgQ3w49N9P2zHi75yM-sfD7yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.5|0.61|12.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501354|4BZrAndkUYRD9WQdJNXxZ38qHKSk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75|1.6500001759413832|0.98|167.8|0.66|10.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700480|4Bb3zJxvI-wwMfabrtbyofZJJAnQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.79|158.3|0.46|6.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']|['HTM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra08052b|4BdMQTuFulQJ8Zd9pGtkI_vpe3Gz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|80.0|0.4|2.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02734|4Be-WOy0maKnpxiqKVVmFxdyDktI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||140.0||4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|4Be5swAJgjPdQSaGNjt8VJfjL_0S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|196.1|0.68|12.23|['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|4Bi0SlZrefgCaMUe23zgo5Mb9vjF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.09|223.0|0.7879999999999999|19.16|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901242|4BibT-cMN1i2Gw_SlZHN1WkIehSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|174.0|0.61|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja511132a|4BnjZy-vYsxoQ18AE_SaOJK2FkIr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.002|203.17|0.781|15.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||4Bpz5U4zXJDTE7qCFVdsD3tF22F0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|192.4|0.56|10.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|4BwY80kuoGh4Y31YlJRl4FsxL2pN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C95Cs5H491I225N174Pb100|Cs5Pb100C95N174H491I225Br75|Cs0.05FA0.79MA0.16PbBr0.75I2.25||1.17|214.5|0.73|18.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|4C2PQDz57TUqm6Q8PdpynluSUerK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.1|0.77|15.02|['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['P3HT']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|4CG57mp0ua63YS9f9Yw0fwJJO_w7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|191.2|0.685|10.46|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b01038|4CILhE1MjnjJKxk6GiUjQWs2kCe9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|76.7|0.7909999999999999|5.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|4CM88WKYdwzRA3jWHmfCF8ESELxL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|4CQOVUoOVRIYIRS0h1mfStDzeX7D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|194.98|0.58|10.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|4CV8drZWh6MsIFzV0ETeEK3JV26V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|207.6|0.479|8.03|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|4Cb2wb3GEndn56nTABVTBlZTOdYQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|83.0|0.58|3.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aadb46|4Cg3kX11Pvf2LaiTrVc0eWh6mT7_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|197.0|0.45|8.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn500526t|4Chp9amZIzs4C72W_aP1DgFWcP2n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.75|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8se00368h|4Cly_Y9Omp2qwwG25tMgSkGiPD-9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|207.0|0.72|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01939g|4CoAwwmGjbXWbnjSGui3N5Gm0e64|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.0|205.2|0.63|12.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.07.040|4CppZ6WHik4eVPWUIvNAj770RXCL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.4|0.8|19.31|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-mp', 'ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|4CzKIud778oGPQ41hxiez1CFdQP9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.071|219.5|0.752|17.67|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|4D3fayPA9e1icrJUZATtqMr7sKQK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|211.0|0.69|15.56|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.8b00021|4DDNOOnmeAW5wB7u3x2FMhpwD2ON|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8590000000000001|111.3|0.593|5.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|4DFEoWZ0_FiEQe67uLiQeJQuLqDl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|204.5|0.7440000000000001|16.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|4DGWt-HNR-5amuFGdEROIAx6jMy9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.352|107.0|0.4679999999999999|1.79|['SLG', 'ITO', 'Perovskite', 'ICBA', 'BCP', 'Ag']|['none']|['ICBA', 'BCP']|bulk|https://doi.org/10.1039/C5TA02950C|4DLinhiwrFG6i9gpyJ56_TEkJoHg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|184.4|0.594|10.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|4DOFh8sj460hBZlS4RlTxlkp_vdr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.97|190.7|0.68|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']|['AQ310', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|4DUiN5XPU_o7zYVcovdWvDQ9Otni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|210.5|0.71|16.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|4Dcyt97Eml_lM6T8hM0q5MRn6Sqc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.6|0.73|13.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-019-51273-y|4Dh2HhpbDqV6dUho5VyoXN6jr99X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|208.0|0.601|13.39|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|4DoU3EOC9SXhzz1c4spOqn_IgSeQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.12|83.0|0.6|5.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|4DutCwLfzT02H4u6kJaC0fpLguyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|185.3|0.591|10.08|['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['Al2O3; TiO2-c']|bulk|https://doi.org/10.1007/s00339-017-1326-2|4E-Sgws_RIb_j1QmwNyp0MjqF9aV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H494I249N171Pb100|Cs5Pb100C95N171H494I249Br51|Cs0.05FA0.76MA0.19PbBr0.51I2.49|1.6500001759413832|1.07|195.0|0.704|14.6||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|4EBKaG52YqUT5lQ_G5BaKkHJ8IsR|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|218.9|0.7170000000000001|17.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|4EJ9373Cp6E33kJsI8xNEhzWUkVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|207.0|0.67|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.027|4Edn3YSQo0oczAIFCs8jn6D1kN0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.021|206.0|0.73|14.9|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/smll.201702775|4Egrt8K2A9KIGR1NZH0vliyt9PvP|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|201.0|0.69|14.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900922|4EoJZfAP6oIO_C4g90-LZr-gDNiI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr60C20H120N20Pb19|AgPb19C20N20H120Br60|MAAg0.05Pb0.95Br3|2.300000245251625|1.107|26.0|0.704|1.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|4F2xaD__rFUiSBV3DBqI8Vu-HYQI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.05Pb0.95Br3. -Br3CsPb|CsPbBr3|CsPbBr3||1.508|74.4|0.745|9.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|4F5Pn9MbVBf9h7M9yXkP3UxDedyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|120.4|0.5|4.38|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|4F6B2l2d2KU2Dgj3ywdg6Rh8ajzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.929|200.3|0.6659999999999999|12.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']|['C12-silane-SAM', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc00128e|4FDcSB7m5wlmbqKJhEtMkXQ7i-b7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|170.0|0.53|6.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|4FRLRGVnxW6neKuRrs2m5OVq5zxx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.81|29.5|0.69|1.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|4FUz8Noyuo-pNZ6TaJuDNLirVQo-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|220.0|0.778|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Si-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Si-np']|bulk|https://doi.org/10.1088/1742-6596/1135/1/012067|4FaMupmU9CXs5fgMNqW044s7Tg65|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Si-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.07|221.0|0.78|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FH-3', 'Au']|['FH-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.02.011|4Fh_acXP2lm7D6PcqMlBs76CyuWK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FH-3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.0|0.55|11.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['none']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cnma.201500223|4FtGgpYwy56063gfaw4lazn_Kakh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.14|212.24|0.7929999999999999|19.19|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|4FzJCJdCDrSnCVgLpDQP-iRc-59L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|218.8|0.57|11.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|4G0e2r17ZWev19YMcJ3DcORBjlgV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.08|43.0|0.63|2.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|4GFjKhDRf14J_lmytAP0UJD5dPhT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.6|0.68|12.95|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.180219|4GMhzJS4MBkZLdpP_6nrmmN7V2E8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.77|71.10000000000001|0.53|0.0|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1039/c4mh00238e|4GO7ohgBbOBtV9wIvz7tgFUmjFXL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.2|0.762|15.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|4GOPwBujto_BwBwA7h84wEGiPLy_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.760000187670809|1.25|138.3|0.72|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.9b01920|4GTp-uLBhKeqHFYHal52VZ9gO-Q-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.14|225.1|0.79|19.62|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta04131h|4GXCOoo4CM1ySe0MvsAN5NX-L1ef|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|209.0|0.71|14.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1049/mnl.2017.0477|4GivXd2J65EeZKTciQH0PdEGegW7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|195.0|0.76|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|4Goj8qZ4ScS9U8Fooa3gpEOnxBuJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|153.0|0.68|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500209g|4GqWTAcq62TeUp5r4eB8kKocpEsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.69|196.0|0.53|7.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|4Gy7nVwwZS5N5TuLEy5ldc6K5wyQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|192.9|0.64|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201505241|4HBLUS7h4qqSBs04bvp9LezaOeBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|20.0|0.25|0.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|4HKruV8XjZ7LHxGPaFULI5b_6Udw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|149.2|0.63|9.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-ODec', 'Au']|['ATT-ODec']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601674|4HgP6jGrNh2dWyoOs-JNVjgLLPgB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-ODec', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.09|131.2|0.5670000000000001|8.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|4HmbeTVId7o2PPb2JzaenV5NfK7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee02958j|4Hq6OrEnikul5ceV7g5VYCUSzw8F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.09|225.6|0.746|18.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803573|4Hwenc-1YRgrJqtsYv1hxSx8fRYA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.49|209.0|0.693|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|4HzFwq4yaHvPvkZ68j3eKFm1clob|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.03|228.6|0.645|15.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|4IALmwXNSN7XTOMmAF9dEpbnRNC_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.081|230.5|0.737|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|4IFB0bjWWQqHILRdHU_X9gShJr0V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|233.4|0.74|18.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01731c|4IJGlQuz81wjQECoIY_3hbd2xx_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|131.8|0.7020000000000001|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra08584a|4IQZ_cclzxpalwnoeTABK0x2sIyv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|230.0|0.773|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.chempr.2018.03.005|4IS4_LomZCQ5PvTGyOw33zwxBITf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C190Cs10H1083I600N247Pb200|Cs10Pb200C190N247H1083I600|Cs0.05FA0.285MA0.665PbI3||0.957|228.4|0.6679999999999999|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|4ISzJlWYclmk9VVNm6XXDkJXFBqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.285MA0.665PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|164.0|0.71|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08250a|4Ipx9kVPxEZonlnFBtqDzMrzDqwD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7700001887371206|1.08|153.0|0.647|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10987|4IxDqRM7GDlOusrhn4ck7MKTuhNm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|196.0|0.73|16.17|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7nr05416e|4J57nTH8a3nSsN9tdICXZw7GhbKR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br29Cs10IPb10|Cs10Pb10IBr29|CsPbBr2.9I0.1|2.3800002537821165|1.22|36.2|0.51|2.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|4JAkC-g6UoTVcWSWDNibGXato_BC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr2.9I0.1. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.07|134.0|0.73|10.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|4JCa2BV9jCiGv-vZ7NV3Nfg0N1I1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|144.0|0.69|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|4JJLuLbpdI9S_0cSrcWGQM9TknBV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|1.1|220.5|0.726|17.34|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.6b09656|4JJl5saDD9L7DrIDw3fGuhK3DLrk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.9|0.505|11.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|4JMcu-ZdNAN4BMBSGCHVdLo7cEk9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H551I300N114Pb100|Cs5Pb100C95N114H551I300|Cs0.05FA0.19MA0.76PbI3||0.92|145.6|0.59|7.75|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|4JR1GMX6RFMrstuYX85vBsXpmrkX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.19MA0.76PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|190.0|0.634|9.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|4JRM3H9Cntd_gHAUsK9escVIEkUS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|188.1|0.5|9.23|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|4JTEsB5gHao0x_TKeTsK1gj778iM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|215.8|0.76|18.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.074|4JlsttmS0jSs0-S6zJDDkghcgSCw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NSn|SnCNH6I3|MASnI3|1.2700001354215498|0.139|87.69999999999999|0.344|0.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b00118|4Jv79olX2eDlgvBDOlL901EVmULU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|221.0|0.6940000000000001|13.1|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.026|4Jzl8uIn861Ko8hTWJAJeGmQ4cUN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|212.0|0.659|12.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|4K7QulDjCSKdZf4bOTahalz_sUMh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|184.8|0.609|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|4KDQAnwp_zRvBmFULd92Y5wZzurl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|222.5|0.75|17.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|4KI_nArtP27q9L_d15jiTVQlZAuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||13.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M102', 'Ag']|['M102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|4KW-M9RNpni0fZyu0NeJHu_anuH6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M102', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|216.0|0.72|11.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00739b|4KWFHNpojQ7OZ4xxct292mAohBMW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.99|154.70000000000002|0.511|7.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.4941238|4K_oH3RsTfXAR--zVEDKXCwqX6U8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.067|160.5|0.6559999999999999|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|4KejaNoPEcFsu1HYrCGTUHtO_uAg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|207.0|0.669|12.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b00923|4Kf_CwJPQOr1lWgJYd2ZiD5O6GNH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.04|178.0|0.76|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.0c00427|4KnIBwNlRQVn5vO15Y1_BTeZw096|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.6|0.754|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12305|4Kv_ScU4UjjRbj9IRJ3Q7TA0jRM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|200.3|0.789|17.7|['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']|['Cu2O']|['SiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.077|4L8X5_c4fibOzYsNCij3w9TqZHk1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25|1.7500001866044976|1.17|175.0|0.8|16.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b01255|4LA4w0R96U1PWu54f2IvIfID8_8H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|169.7|0.64|9.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['BPTI', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|4LFnGAAxjfErerhY5r7Wo2lp8KWp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.947|168.0|0.723|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ3', 'Ag']|['POZ3']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00001|4LRoymJ8M9gO61_ywKVmq2Uh3n6k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.01|212.0|0.56|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793292019500772|4LXYXNr4-KATjdL8AxghECWqEgv3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.922|196.0|0.706|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00001|4LXoF-008JNp1rcs-Dtqg1gji1PM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|244.0|0.7290000000000001|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|4LadvIHgpvwlxALyp7gabS-oCuq8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|141.3|0.746|9.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|4LapOZ1aYHsclrG9AjM8sbI8N0wO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|133.0|0.485|5.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|4LbNv5gnMpj6xqZjF0NyZB96o75r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.5|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|4LbaJVrUJtBuhJd01Ab1K4qanL0N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -Br170C900Cs100H4653I830N1647Pb1000|Cs100Pb1000C900N1647H4653I830Br170|Cs0.1FA0.747MA0.153PbBr0.17I0.83||1.13|226.0|0.76|19.38|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.3390/nano10071322|4LzVhl_bpIXR13OcfWDjMjhn5FrZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.747MA0.153PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|229.0|0.7759999999999999|18.8|['PET', 'ITO', 'PTAA', 'Perovskite', 'PVDF-TrFE', 'C60', 'BCP', 'Al']|['PTAA']|['PVDF-TrFE', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|4MB2htSn_nGHWMU0o8H4QtHpELNj|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'PVDF-TrFE', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|165.79999999999998|0.5|4.47|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1088/1674-4926/37/3/033002|4MKsi1dfhZiPEDxtNlqJWjG8_cbo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.69|151.3|0.61|7.95|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.tsf.2018.02.022|4MatfYLO1TA_2L3D5ZpNx_IHimOi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|0.68|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|4Mcy8Wfh83_fYZKYqq3Jpeikl5ID|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.79|108.0|0.43|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1179/1433075X14Y.0000000252|4MiTL2xW8a1o1iqq1JBzyCdUnwbL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.718|43.0|0.57|1.76|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|4Myf6p5O_91NApPMBxkL-bt-4b76|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.08|229.6|0.769|19.06||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|4NIT93nIXc87VLMXygqRu9A9qQN0|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C5H30I13N7Pb4|Pb4C5N7H30I13|GAMA4Pb4I13||1.0|201.4|0.75|15.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900375|4NLDMHTIi4T4ASwQf59_9FAV5Dpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is GAMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.6409999999999999|11.7|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|4NNfqnURLy5F9uLB-NoO2BBqA4zS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.75|15.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']|['PTAA']|['TiO2', 'C60']|bulk|https://doi.org/10.1039/c7ta09178h|4NP-dybF1UF2VKx0nzrE1_8wOZ69|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.0|0.58|12.7|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|4NSGp9uQ8rCNWXnaVzRbQNRPKy8Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.4|63.1|0.783|6.92||['Spiro-MeOTAD']|['ITO', 'LT-TiO2:Cl']|not processed|https://doi.org/10.1002/solr.202000718|4NZt1KnxC0IxUZUc_te62kmk69KK|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.073|218.2|0.737|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|4NiGrH7xkB1Z57yrJyXRAK0UzLam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|166.20000000000002|0.63|10.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|4NifT4xGdcPnfsBTiSVlnX4G9y9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|139.0|0.6|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c5ee00645g|4NyRnKnTGMxM0Xwt1XG_PEEjHtGD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|125.7|0.336|3.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|4NyyDh7gfzeKJBkgNzjsJVYKJKZB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|214.0|0.68|13.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|4O0-UIFAttTQFckih4A0neJSmx7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.95|236.0|0.7290000000000001|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|4O2C5epZkhi_OdcGow6FfClB-2k_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.548000165065007|1.001|222.0|0.7290000000000001|16.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|4O6RJrQ7u-iEEZK5RBvEMM1KqSk_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|184.7|0.73|13.04|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|4O8IjAfK2qFEF1ONAan2EBgn3Mhk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|230.8|0.644|12.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.055|4OJM5op-7_m01-0cSJd-4w46G2bj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.36|210.9|0.43|3.25|['SLG', 'FTO', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['none']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|4ORGInFqKFiIBdbFY-uA2VQR4oK9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|221.9|0.7390000000000001|17.38|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.063|4OS7-ZsMF9MxJ82oD4cYSBBO52XW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|120.0|0.716|10.18|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800188|4OcyXv6_re0lTbs7fJgVbFm8KvIK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|171.4|0.57|7.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01909|4OgXtE85wT62Hai_uPnSdIIpaPLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']|['FTA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|4P9XDfmUipJAVkFn9NpWMhTlwjn0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|1.02|221.1|0.648|14.61|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135197|4PJHobxWCYElggVTalSc3vqlcgzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.113|193.4|0.742|15.96|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|4PUCx0YyOFikBvY8OFcYFPKQKNge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|179.0|0.5|8.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|4PgweVm2MGgtWeL0roKUPXS7sn_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|204.9|0.65|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|4PjXPxbqgWQvnW3oahUKzoZXVyoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.0|0.81|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.5b03556|4PltudNWc2XmrcVLuAkUAVMiOwZ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.8|0.667|15.91|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1039/c9ta00118b|4PrK1hTvDuReOfJ9pBMJ1AQ_F0y9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.5|0.74|17.19|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b04015|4PzTuD-Bjt-GWZXzTbCXMCLv7lAd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.45|21.0|0.52|0.49|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|4Q-5BOk7Tx2GrF7jr7Htf_C8Fea1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -Br33C100H533I267N167Pb100|Pb100C100N167H533I267Br33|FA0.67MA0.33PbBr0.33I2.67||0.94|150.9|0.555|7.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|4Q09_FiZRiec0I7Uy6rR-Jgb1psd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.33I2.67. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.850000197267612|1.163|147.79999999999998|0.7290000000000001|12.53|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']|['IEICO; PBDTTT-E-T']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b14957|4Q7mxPEsF2B4-ULHgbL7u_kx1hsk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.0|0.8|16.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|4QDajP7XE40nVGMcdOx4S6-y9muy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2400C1900Cs100H9823I3600N3477Pb2000|Cs100Pb2000C1900N3477H9823I3600Br2400|Cs0.05FA0.7885MA0.1615PbBr1.2I1.8||1.11|160.11|0.804|14.28|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|4QJ_wyq7p_OQaU3BJnXJL-TxDdNx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr1.2I1.8. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|238.0|0.713|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|4QKvMwCoGwZmbwH_dUKt5SmqE65C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.098|215.8|0.69|16.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-3EtCz', 'MoOx', 'Al']|['EHCz-2EtCz']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|4QPeFH_4VPDu9_XwtT_8ggz53hsu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-3EtCz', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|208.0|0.75|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201801808|4QQrTNXpvTc9yGRt0oSdpDTExFBU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C47Cs3H253I144N76Pb50|Cs3Pb50C47N76H253I144Br6|Cs0.06FA0.58MA0.36PbBr0.12I2.88||1.07|236.0|0.7659999999999999|19.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|4QzN0okgIx4czhZHVGSu-viqnFOD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.58MA0.36PbBr0.12I2.88. -C25H128I75N47Pb25|Pb25C25N47H128I75|FA0.88MA0.12PbI3|1.5300001631456466|1.06|232.0|0.73|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09532|4R2vugJgLzHL0IrWqqzNqeEfUmbP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.1|226.5|0.79|19.68|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|4R4ZKlgC1J6fyTXkPe3ltqnXf8I3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.14|236.0|0.73|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|4R7HRqHhZvk8z05iIkaXiiDibEVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.0|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Cs2CO3']|bulk|https://doi.org/10.1039/c4ra08565e|4RHrbWGTgeYgIBx59BITamJ8hER1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|197.0|0.726|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|4RKP8Xwb3zUMYDSGc9qOosRgD-M3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|213.8|0.7290000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.38|4RTOuZZ8Zevvvg9mN3qy8IJdpUj_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|199.6|0.745|16.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/6/068803|4RVbI9ghZ_7auuee7ye5pK__cpm7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||220.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|4RhP-XSFSW8H-YCenZ9t75zB18Ul|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.62|196.0|0.677|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|4RjAjvmukTSvqFAv0jNqkn45leqk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -C10H52I30N18Pb5Sn5|Pb5Sn5C10N18H52I30|FA0.8MA0.2Pb0.5Sn0.5I3||0.81|300.0|0.75|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201902583|4RlVukmPW1yqVGKmRqagLUawMykh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2Pb0.5Sn0.5I3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI|1.950000207930726|1.084|62.5|0.65|4.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|4S7b3Ikrj068lv1Fx0tw4XKUB-1K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|221.0|0.401|7.62|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|4SBmvhI0hPibNZjhZqaWd2G2RviC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|182.0|0.77|15.3|['SLG', 'ITO', 'CuO', 'Perovskite', 'PC(70)BM', 'AZO', 'Al']|['CuO']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1063/1.4991030|4SBrOz70JxdYXFkglRxWnh6g_Kvg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PC(70)BM', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|230.3|0.7959999999999999|19.81|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['2-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|4SF1ObcDWpEfF1xrzBgO2GdsE9QX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|216.5|0.644|15.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201907442|4SYaYY38iPrO7T6u9Ng3ZjIY7RQJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.21|137.0|0.58|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|4SbDt5xb6NbD3Y0V4LcjSpauL1CR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|204.0|0.77|14.43|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|4SbXskiyhHiHEfGk2_yJ7q7GY5G9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|148.0|0.45|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|4ShyMvPMKJ5VcibzesNt-4Tl6tLV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.7|0.713|15.0|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|4TD4Qfe7jPG48KJeSrPGcyjBeYVl|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||0.85|180.0|0.48|7.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201705545|4TDW4UnKdg1O2gYG-76C3gU3XaBJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.104|206.2|0.733|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.105426|4TMi8_PeNu4dn3LbMAbS-BtHRkAA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|181.0|0.77|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|4TONMa3X6EmtS_yoZAgsVovkc1JK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H40I16N6Pb5|Pb5C8N6H40I16|EA2MA4Pb5I16||1.02|205.4|0.607|12.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|4TPBUZx2KqB1pSwYb1piST7oAJgg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|214.1|0.81|19.36|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|4TT6S5zstUrwA9JoUE8QDGrJ6DBj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|184.0|0.508|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03686k|4TXUeR1mAs086FbPhtjm_f7AJ9hA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|227.2|0.7509999999999999|18.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|4TaGWOxjHGlpC_r3doYjXCJzlQVR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.9|0.755|18.04|['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|4TbkWwZjEtF5GzLhJ5hZPxMLCSxG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.0|0.72|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|4TqSMlsuMi1gAc3UpD49fC_LD0OA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.7|0.6920000000000001|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|4TtT1LqnSSIU_v4sfaKnGeDpY-87|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.132|162.8|0.65|11.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|4TvmZxgyyj1DjmALtDG7xLX0LkzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.2|0.6990000000000001|16.99|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OprTAD', 'Au']|['Spiro-OPrTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|4TwWWOVdysS-2qoxgJp9QiWL0aMQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OprTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|76.5|0.3379999999999999|2.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|4U5oT8jMCTC48IiERzAdfZXpY_CA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|184.0|0.55|10.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ce00169d|4U7kKXBVJl4_WQg3PhLrsTEJ8-Ny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|152.0|0.632|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.12|4U7rIW7lhBTZuWkfoyytuY_XMxIK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|202.0|0.5539999999999999|9.51|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-Se', 'Ag']|['NiO-np']|['NDI-Se']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|4U92ljBbHai4wH6JsqMHNuHuxiua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-Se', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|208.1|0.65|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X1', 'Au']|['X1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.092|4U9iKrBC4Od0BJ6cY7fWJgn2sQhZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.764|125.2|0.508|4.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|4UDac6_kJcUlaQVtDe3ywOoH137H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|216.5|0.674|15.54|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad685|4UUkRQga8Wuoa9dZ9MLJTnHcW9el|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.17|33.5|0.61|2.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1016/j.matlet.2019.126619|4UhTjDL18OENhc6TUHpr-KXS8G-Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|193.0|0.762|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|4UiR4eQDM5_5HaTaEO7hdQJbKylw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.07|229.4|0.71|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|4UsaIugK7LVsphapnpaCvQDNmX6H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|237.0|0.6829999999999999|15.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|4UuskemBoBeCZINcA2uIKI6wS09k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.0|223.1|0.69|15.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700118|4UywmKGYZv9hws0hXqWGobxWui-O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|0.97|63.6|0.63|3.9|['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS', 'AuAg@SiO2-np']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|4V2ooI16ap6BbBDcjR6KjywTQf_N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.5|0.77|16.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|4VHHqUm4Oc6Qrf9Z2u5HYdbuC8Gw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|178.0|0.72|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz501392m|4Va8vaY1b9_Vm1Fqut2fIsFGQfbF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|0.022|11.1|0.7929999999999999|19.06|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900231|4VgxcHOwVfsvdxVIMdus2l5qTgVI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|151.5|0.685|9.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|4Vh_FRZFyo2HmxAgb-S1k46rbb99|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|235.0|0.67|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909644|4Via_okAnIPM_pIJ2ENYneuCv76g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|162.8|0.3829999999999999|5.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']|['ZnPc(tBu)4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|4VpxThDsSBLFABi_nlICIZlwDsm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.6|0.5|10.47|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-3S', 'PEIE', 'Ag']|['PTAA']|['2PDI-3S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|4VtLmRheal_UJErYF9-h6kPCgO_Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-3S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|10.9|0.26|0.2|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|4VwA19HZYSD1ULf3OtXqe6jFIfWC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.59|288.0|0.6459999999999999|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta04366g|4W2uq35r-qVA40v0fH0QLw20TaTB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|193.7|0.79|17.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.6b00327|4WHsdQUfAaBCNU61Lb12Pn9t_jR9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.88|182.0|0.606|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06189j|4WSICoW56xUX0jTfZEPDtczWW4Xe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.0|0.72|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|4WV4uRnIqvnQUQZK9YYovJdUpfTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|185.0|0.7|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10526b|4WWm2ZrAHi9QmJMAJx8bOg3CHYVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|4WkuwC_WCLRS86n8FZMT-NuKq4SC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|128.1|0.703|7.92|['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|4WnFFQ_OVuYk6pVZs2kp2LTTW8mW|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|136.6|0.71|7.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/am506785k|4WuJHezYMmaZqLDXozSlyK3t75KR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.159|150.39999999999998|0.752|13.1|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|4X63gn6RjVeuKBTSB5BZW8kDJlzf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.618|107.3|0.531|7.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|4XEVXU3swE71nGQUZbBY6MwI6KS9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|195.0|0.764|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/coatings9110766|4XFWp6nADl-QpY0CKPk03TxTipZL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|162.8|0.63|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|4XFqcMmTAjuZggnmvjyC1HL21tpu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|223.1|0.7759999999999999|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|4XOepHFjAwMbfbBRQ0519pdcD_GM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.96|214.1|0.73|15.09|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|4XiFXKXlsk8wYJquGRYS9m54AOhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|207.4|0.6559999999999999|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.7567/APEX.11.105501|4XqgScq_0khkjJZXkxvPaA1J4aeH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.0|207.0|0.711|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PP-Spiro', 'Au']|['PP-Spiro']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja502824c|4XtWBd3Ld1kW4_nkYzicmmLSM8W7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PP-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|188.0|0.5479999999999999|9.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc03624d|4Xuv2RH_JvCKCHA8y9-V2E6nsrYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|173.0|0.41|6.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|4Xxn6w3tnRfC-Z9SK1wFLgdvqUuu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.5|0.78|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|4XzScIeUinRe6McSgFMnJuR4SKJs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.5|0.74|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2016.07.045|4Y-BIoS4IkK58QWWR1VUksxWMMEI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.025|194.62|0.772|15.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||4Y9tGkfO8HSr2io_vWa-NNKIYqxg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.7809999999999999|18.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|4YFY4nnd62eJf1B3wz1T1Vgv8vsj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|||||19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|4YRfK0i_iLFB8O3g5oNpYMdjcZWa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|226.5|0.69|15.5|['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|4YUNCRGWy9qhU52jpXchXQg0uWjE|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.2|0.38|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|4YdlXiZB4fHGP5NSMgI0nbwvssLy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.1|217.7|0.72|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.012|4Yo_pLJ-CF-s42KsKZ6_gBtNqa1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.94|218.4|0.546|11.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|4Yt1U7RyJkzhfPLW6MBmqLW4Ia9a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|||||['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|4Yv5QtA_rkb-eiaS7_ggZ-ElZ9a7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|121.0|0.45|5.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|4ZCMtZ2JczMIkaXWxONQN7l6871D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|4ZDS528y9dfqJi-UvZ-UnjRUJpWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|204.0|0.61|10.49|['SLG', 'FTO', 'WO3-c', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['WO3-c', 'Cs2CO3', 'PCBM-60']|bulk|https://doi.org/10.1186/s11671-016-1670-8|4ZIaGruTjmqjoLCntFnvnYnp1aaf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3-c', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.051|205.0|0.74|16.0|['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au@SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01306|4ZJiWm2cfogowJPJh2ZgmZRGra-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|140.8|0.583|7.96|['SLG', 'ITO', 'P8TTT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P8TTT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03608j|4ZSho-Y-6rGYllrYKtR1XtSaLbEp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P8TTT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.97|216.0|0.75|15.9|['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|4ZUkmzYpvkuhTyN2pYBFYGHlzhBL|a perovskite solar cell with the following device stack: ['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|255.0|0.7809999999999999|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|4ZerkzxtHl0B5jD51SkUDETwXWQh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.1|196.48|0.785|16.98|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|4Zq-3EV0Jdy7YGU6t-RoaYB3xvd8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.7|14.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|4ZwDS9FThnSs33mzhyNnDlWOvQ8f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|153.0|0.75|9.6|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.06.018|4_0gAYhSXPgY-GpXPbBQleB-4t1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|214.7|0.75|16.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|4_3Pv9JkzPNO-QZLfDH2AIQyoDLn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|185.0|0.61|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']|['PEDOT:PSS']|['PDI-HE']|bulk|https://doi.org/10.1002/aenm.201700476|4_4fuEhsk3Yk7QpWHWbuaMKz8OlO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|159.1|0.741|12.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|4_CoDBxyyzV1zOtAvM6v7ejW832-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|123.0|0.43|5.0|['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01755f|4_F4JtHPiurkwjCMd-x2FCHTyhdU|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.72|13.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b02035|4_V3VQ-ti6uQEoHVcyNaX_nFOMlh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|207.9|0.76|16.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|4_ZAdn6YlxXhEgTzXGUErQOYM_zK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.0|0.71|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|4a-DapgmZd-2XJP9g0Q5-JYhItIU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|201.4|0.6|9.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'Au']|['Carbon-nt']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12200-016-0566-7|4a4LXshyhlL5mB1otTvobORc8-Cw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.25|122.2|0.584|8.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1002/adma.201705393|4aBRBW12Re4syJDQTFWp4u0s8MaV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br6C20H103I54N37Pb20|Pb20C20N37H103I54Br6|FA0.85MA0.15PbBr0.3I2.7||1.09|227.7|0.7490000000000001|18.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|4aEBKk-wf-tFHu_SERt1XGFwBt93|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.3I2.7. -Br39C100Cs5H517I261N183Pb100|Cs5Pb100C100N183H517I261Br39|Cs0.05FA0.83MA0.17PbBr0.39I2.61||1.08|127.5|0.43|5.92|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.05.086|4aMimXk0f_UEBQGR0OKJtOXF-2M6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|134.0|0.606|8.38|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|4aRrtbCtwIPQNli2w5I_aibzhB0n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||1.02|143.4|0.38|5.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|4aSI2DcTi_ZZsIf5PRzR-jmx5uoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.899|174.89999999999998|0.67|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|4aTPU8MtUY6BtmjDIaTvgI7__-9p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|||||4.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b17535|4amFzZSXDQc0H4nOA8CuLRQYlrgq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|189.0|0.555|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.053|4apYxGpAO-N9CjwKfGF2fJdSTmgk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.02|80.0|0.65|5.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|4asDpDTJ-7aneTi3Ffa-OKQah_r6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|199.8|0.71|12.48|['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['CuAlO2', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|4b0XIRLiRVIRUbQBEKaM6T1ISWKR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|154.0|0.5|7.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|4b3nPNektF7KQ2fEqE2Iu0Hp_hju|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.1|0.79|20.08|['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|4b56i6kvViIrr0QbDqYLSBqR06rV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.09|237.8|0.774|20.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|4bXoFbx3I3dC7YD2seSwynScHXCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|128.3|0.626|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|4bfYutzZ28Wtlt5DdkD8XTS893uI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|4bhzgBh_aJMz6oIZYHpPbNab7_Tk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.14|192.1|0.7829999999999999|17.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9nr02777g|4boYo37W6zGrihcD4ih19mJhzaU5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|183.4|0.626|9.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|4bqa4wwVYt3agNhUnCcakzIRaRi6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|197.0|0.7|14.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|4btj08IabCCcjcGmbWrueA_RNW1d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|203.0|0.755|14.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701456|4c4yaNzXqq4knQ71c6eHK-tPSDtJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.47|['SLG', 'ITO', 'NO-Graphene-QDs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NO-Graphene-QDs']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.cej.2019.04.192|4c5AaZPAKpejc3cyvb-2DcbvqD50|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NO-Graphene-QDs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|173.5|0.6509999999999999|10.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|4c9g4ZxmPlca-rsYtj6itxHRhvKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|172.89999999999998|0.72|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06558e|4cCQ-0bRakMcv5IyKIgOVz4xSsuO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|206.8|0.556|10.87|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.3390/mi8020055|4cEfV5iMnXr_pWsyJtBaL451vQus|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|239.0|0.774|18.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126647|4cTGgumvW8iFheAbC4DL2mNNg-_d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br150C49CsH245N98Pb50|CsPb50C49N98H245Br150|Cs0.02FA0.98PbBr3||1.419|61.2|0.8|6.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|4cb2GPgT7E17WbMOvLPdvlYjzkkS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.02FA0.98PbBr3. -CsI3Pb|CsPbI3|CsPbI3||0.598|2.4|0.564|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-018-9263-7|4csGagr74P0tpG2Qc3l7BJNH8Ckz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|227.9|0.78|17.54|['SLG', 'ITO', 'TPAC3M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPAC3M']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|4csfDOSgKKdUsuVRxTWBq8Scku2M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC3M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.91|211.4|0.63|12.11|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|4cugPZFykQmNurtgVHKEdxilaGd9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5400001642119578|0.843|192.5|0.605|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.12.170|4cyFtq6saRyQf1VnBDQD5w2nDZXj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||1.063|220.0|0.76|17.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1117/12.2274438|4d8dcRthz9weGBrXqGSAzcrJycCW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3||0.43|109.4|0.44|2.08|['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']|['PANI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.ijleo.2020.164505|4d94PMsi3cqeNw2ezEbEohbhfVxG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br21C10H57I9N13Pb10|Pb10C10N13H57I9Br21|FA0.3MA0.7PbBr2.1I0.9|2.030000216461217|0.82|20.0|0.51|0.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|4dOD6v7wJvdaimLLM_NYSfo3U5_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is FA0.3MA0.7PbBr2.1I0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|227.25|0.725|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|4diDfIsrW9WGaWviNlkc6oxK_TZv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|211.0|0.41|11.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|4dzezVBIy0la5V19bfZX9QchCzEE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|213.0|0.691|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc', 'Au']|['ZnPc-p-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|4e0TT6gVU5OKRHex456EAILK22ug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.067|228.5|0.696|16.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|4eBdgywKH4KcjSIhxy6uzvNYaMLt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|72.4|0.49|3.45|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|4eCvXqbfEULK1Frzpc-UstkNsJum|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.73|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|4eDlxG9LU8XA9DaJol3V8kccpIB4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.0|0.7|14.5|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|4eEkETgS29iDwxHXAkcRI4hr_tUM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.05|227.5|0.73|17.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01975|4eNQ881b2pf-l51xomynAXgVgpSU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|4eQUDFBmo3_TaMEvebewXtq5HLk2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|228.0|0.738|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05308k|4eWWNyf1YC1bxLbiwojGyD6hWJL_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br53C100H518I247N182Pb100|Pb100C100N182H518I247Br53|FA0.82MA0.18PbBr0.53I2.47|1.640000174875072|1.18|154.0|0.62|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|4eY2iH_lOu8sFewuVBakwXnwOeBu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.82MA0.18PbBr0.53I2.47. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|227.1|0.75|15.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1016/j.jechem.2018.03.001|4e_Lrbln-YBfc3FuN6CxaPy-GhzN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.7|14.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|4edDFCq1yggI9ARfwm7QsGMCGV7C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25Sn1.0I3||0.226|155.6|0.362|1.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19143|4ehOCoyBY88Wnt7YUvWRdGLTWG_9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Sn1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|225.0|0.65|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta11985f|4ei33nMDkIulVmcRRt8sITRGP7uk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|178.0|0.626|11.77|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|4esHKA6o6lL2ZWVozXZVLg00Jjrr|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.88|223.0|0.87|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.7b10334|4evE3arbYHscEftaOoG2gTo4G0lH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.07|241.9|0.78|20.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|4f2BI1tdwBXs2f1hZqS0a_Mr3s0Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|143.0|0.397|5.24|['SLG', 'ITO', 'PEIE', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941218|4f2DXArnkbVjKRp7hFRIF4P1estC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|192.0|0.769|16.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|4f9OmiRs8hECB98Fe8ad3cD-vX6v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5090001609063923|1.05|203.0|0.7|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra23359c|4fDzfyfABcvePmRz2GGhv1X4DC58|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.92|200.4|0.7120000000000001|13.14|['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|4f_1YqWoni0i9aC6z8VjuLyE38rW|a perovskite solar cell with the following device stack: ['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|231.0|0.7509999999999999|18.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|4fejo6zwgxA85fWRfVH5CiCHmyzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|194.5|0.74|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|4g4eeArCpYjv32-grCUqQxm2nIVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8079999999999999|83.80000000000001|0.47|3.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|4gPUkRy0-YcoCGL2sS-3m0B171UH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.163|233.0|0.753|20.4|['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00697|4gQZegHxafmHJzSiulf0p-Jk-oJ1|a perovskite solar cell with the following device stack: ['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|167.7|0.736|11.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.05.012|4gU9wDZ4dHe9TVneaQYOwpdMkjf4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|127.3|0.62|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|4gXVzRaaODL1XRe9FEOFOPNFHUgP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|40.0|0.4579999999999999|1.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|4gZZEFSN-e-kC4EAIkIivGQzyTMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.986|147.0|0.6509999999999999|9.43|['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']|['P3CT']|['CPTA-E']|bulk|https://doi.org/10.1039/c8tc01955j|4gfA6kBic2eSM1pwusFqN2VE-v0b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.0|0.52|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|4gohrcyfpeQ6JbFKr3fPn7IUe9Il|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|213.0|0.79|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-2', 'Au']|['HL-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02556d|4gqLizG95qabs2Niz53Z2yVyIF23|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|220.6|0.552|11.67|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2600341|4gz0lIDVrJ_CpyLPk5HPo3qrIyGJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|71.6|0.59|4.15|['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['Au; NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201504621|4hQzm5SL8iCzkqQyS86ua-92plSR|a perovskite solar cell with the following device stack: ['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|225.4|0.62|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.10.008|4hc6kIvX-SFQngStRI2QR-mf57Vu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.35|185.4|0.599|3.93|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08679j|4hhfrpj7QTN3n7ELNb1J6ZGIxBix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.9|0.7|15.71|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900041|4hvycY0pmSZbPy7JEUbdmsKfDC-x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|182.0|0.636|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40843-015-0102-x|4hw7xDp7IT15nmicLRMTjrI6wREs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.0|0.68|13.9|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'MeoTPD', 'MoO3', 'Au']|['MeoTPD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00270|4i56GC6t8CAsB52fafyu84NHKzNK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'MeoTPD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|222.7|0.693|15.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|4i6PWcxXFIt-r-3Du_qAOkBKJPUe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|207.0|0.69|14.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.12.025|4i9U4oeWf6sTgLVwdo89GoWAX8DA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.232|132.3|0.733|11.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|4iD7dUxzne8NC_CAqerMvYqZTgAv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.036|191.0|0.6409999999999999|12.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|4iR6zud6inbufBUgqgSbuuzR7dQc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.05|239.0|0.79|19.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|not processed|https://doi.org/10.1021/acsenergylett.9b00892|4iR8qez5xYrs1CLBfMKIBa31TnfV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|185.1|0.64|10.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|4iS2LH-e70Vy1_fF71h_sgg5lKKi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|195.0|0.596|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-43987-w|4iUvtM9F55ut16BHAaPAZ8T9hPyj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|189.9|0.527|9.1|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|4icCtf-im1H8wum0LSS9eOjbyhM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C546Cs4H1421I249N151Pb100|Cs4Pb100C546N151H1421I249Br51|(TBA)0.3Cs0.04FA0.55MA0.11PbBr0.51I2.49||1.21|205.0|0.5529999999999999|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|4ierJCvaZqq6tKOQwtcmKB3qLv3I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.3Cs0.04FA0.55MA0.11PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.3|0.597|14.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5099280|4ikU5pwdPW6otIquAToQJHdtI9Xo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|203.0|0.71|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180616|4ila5-XGlvW3QnWy6M8XnSl0st-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|228.6|0.68|17.65|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|4inLPChvDOhl-M86GcQ5lh-IXJm8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.154|222.0|0.73|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|4iqPvSp72AE_MQgMeZ476FL6qChm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|4jCbMowHOJetTLUOHXmpUDhunfTN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb49Sb|Pb49C50SbN50H300I150|MAPb0.98Sb0.02I3|1.500000159946712|1.01|182.4|0.685|12.62|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|4jEY4QG8EwT_rHNrH5mP8BWQaInc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.98Sb0.02I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|185.0|0.57|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.7b18643|4jLV1NTrMgeE8HwFuM5o0rIZmozL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|216.0|0.406|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.202001460|4jcCanE1dfODstogo_JKZVFnqQ0j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.983|143.4|0.65|9.22|['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6tc04639h|4jfWsfbQ0v6XWlgQMOZXgGY49UKj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|149.60000000000002|0.68|8.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|4jqc-ZXMg_eyEhshPeMrp_JRWGju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.887|132.7|0.287|3.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.03.021|4k0Ar0LnEh9Y4bMKdao6Zm-OFS3f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|213.3|0.77|14.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|4k7cdWYKL7J0biG4nBZer8JLZyUx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.04|188.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp412655p|4kHTREsLbUwE9KkXcXtMJJ3L2lK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|234.5|0.62|12.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|4kT-1j81LrFWxxSlkI8c4b8B0Bc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.0|0.636|18.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701981|4kT_mwgkW1f7Vk0aUxGiRpgG8MUU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.5|0.625|12.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|4kVQELHLlKbk3e0LxKl6vt_JbxQn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|131.4|0.4|4.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep10557|4kWgmEVzpTo4cCZKVCbh5jqmiyXZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.1|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|4kcVzh3ZEu7RShQV10e-6uIGU84B|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.07|248.5|0.7829999999999999|20.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']|['SrCl2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20054|4kj3GBBqdnMF8wPVTDsnD8w9u2Ha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|119.4|0.664|6.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']|['Carbon-nt']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900302|4km8vguwqYAw25uHqqQqFGAAX98O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|220.0|0.74|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|4kr_wST0ZQ7g8nQhSuIMddneww-5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|179.1|0.74|13.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|4l1P2LSFWvnaK5Xe78QEt_ULB5Zi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|206.7|0.65|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|4l2z7zI9NUncUdJ60XKfIHlZJFzH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|4l3i-YY03lRF0zdk1xNVZ1OICwMm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5400001642119578|0.915|196.0|0.536|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.05.050|4l5zY1815eemqv_jYaAwFBp6Qv73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|235.7|0.62|14.39|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|4lBT_zV7Vqx1t0N4rJBMPNbS9bT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|223.0|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']|['Graphene; P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|4lF6OlcarPIo-F-mDbNYSh7zj1bB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|137.0|0.66|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|4lINghSFsOcNigGblJQ9R1tQcI5a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|4lKYmWOztqjxTO25SmaIRaCRX-EM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|210.2|0.7959999999999999|14.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|4lMP_FydJr6WzEX47dXdFmHYVnKR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.07|219.0|0.81|18.9|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|4lSOje-KsLBrvWP1FqiHLvIknmEL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|215.9|0.562|8.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|4lZzdu9_pJyxKchoNd4J_26j9ZVR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|209.0|0.73|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02264f|4lo7L66zUZ86C0Pn9UHDwcXrCmUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|168.0|0.7|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.06.037|4lt9rcRuYnL7-VaNhw8aNyb_hkFY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.18|110.5|0.47|6.12|['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'N749']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b23532|4m-FNnxR30t46JTn3XUTInxMU43H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CsI3Pb|CsPbI3|CsPbI3||1.108|118.0|0.735|9.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/smtd.201900449|4mI8AXfnEVcNeTZg7qZ1aVsPYJ4n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|5.6000000000000005|0.149|0.01|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|4mOAtrPEVY3OeT2QWgnSHniuLY9C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.856|26.7|0.615|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137567|4m_7Q5gTGQYMLVWAa9Nhuy17r_gX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|204.2|0.56|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M101', 'Ag']|['M101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|4nD1rsbleMD2Q0j6TkZNtVaDuHe_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M101', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3|1.740000185538186|1.18|155.0|0.73|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsnano.8b05555|4nHvujO6iDTL9SASNP8aFB3hS6w3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8270000000000001|19.0|0.486|5.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|4nQBEWQzyMhQFkiw21WzjYyU5Oj8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6370001745551783|1.12|171.0|0.6920000000000001|13.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|4nQy76e0FtT1t_ePx8z7e06xsbiu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|100.2|0.509|5.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00220c|4nTMcArC0SJMiKocKR3dQpzW9zOl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C25H150I18N25Pb25|Pb25C25N25H150I18Br7|MAPbBr0.28I0.72|1.7000001812729404|1.12|170.0|0.77|14.5||['PTAA']|['SnO2', 'PCBM-60']|bulk|https://doi.org/10.1039/d1se01692j|4nuh9geKe5zlZPO_vKyzlajsBKAm|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.28I0.72. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.01|204.0|0.767|15.8|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.02.003|4nxlto_PICHmfaJDvi_wjusMA_Ar|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -Br45C92Cs5H471I255N173Pb100|Cs5Pb100C92N173H471I255Br45|Cs0.05FA0.81MA0.11PbBr0.45I2.55||1.13|217.7|0.7|17.25|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|4o-Om4KmnU23Ck4ScekRCU2stRYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.11PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|101.0|0.44|4.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|4oDccIcVlw5-CjBBIqz8HuGJHkJM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7440000000000001|180.69000000000003|0.471|6.34|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4ee03664f|4oFRAxx_rbGKEQJu9_Pwo-xBYsXV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.6|0.741|18.32|['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO-EA']|bulk|https://doi.org/10.1002/adma.201705596|4oadIjaAyE825XpDT-XnThTHuLiX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.05|237.0|0.68|17.15|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|4obbvI8NggvSgd7h3oubjpn19gcf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.275|31.7|0.259|0.23|['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b09166|4obzpJDWhdZWS0mZ_4DNVqdF4diQ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|212.56|0.759|17.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|4ohX_3OZHQP5ELSsgYgB5irdFRlp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.022|152.89999999999998|0.7090000000000001|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'PFI', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PFI']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee03560k|4oxu5TPw7OrFVLnHkJCE3i8o_Q-2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PFI', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag3BiI6|Ag3BiI6|Ag3BiI6|1.8000001919360546|0.51|49.5|0.6|1.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/solr.202100077|4p-BMlKSOqj9yFQYzrpxsL6R8EWF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Ag3BiI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|215.1|0.64|11.84|['SLG', 'FTO', 'Fe2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-c']|bulk|https://doi.org/10.1021/acsami.7b08536|4p6dbNzkuDVrEAsVuGN4L7g5WXnH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|185.8|0.7|11.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.018|4pKLL2TkwodXZuezwLrE2mokPMjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.7090000000000001|2.769999999999999|0.2289999999999999|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04924b|4pQGcnG8pQEOStvSfhOgOXmIOjG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|198.7|0.721|12.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04179h|4pUdvSGjJZYGu4_w3N1Odh8hy4s-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|214.3|0.57|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|4p_88gUr7XmP3faZUA5GpYVazY3v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.862|30.6|0.684|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137567|4pwZrwdCeqQsWytgCBp6q79UWLCA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.5900001695435149|0.755|76.6|0.557|3.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941221|4q2yx9zIpkNHkBk1dr8nXmvtqoOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.733|198.0|0.6659999999999999|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06041a|4qFqa0oPE6epVBUGlRqcLYlHZ_Pk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb97Sb3|Pb97C100Sb3N100H600I300|MAPb0.97Sb0.03I3|1.5800001684772036|0.92|150.5|0.5|6.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|4qTM-sr6sKKvnsEHxaK6gQA3cNFy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.97Sb0.03I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.0|0.78|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|4qTg4ziapq8ova93X_VJIkDOs-fR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.3|0.738|14.75|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.03.027|4qTs2AbmypKtFS_xhgZ1NF6VsOf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.73|230.5|0.74|12.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/ab2309|4qVpfjVCU-Y6eUFdhOhO74RL3td_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||15.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|4q_7ny7JKR47Lot4uDBKZPRHlkMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||18.42|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b01440|4qaDELYox3pvCXr_R3RWRDzb8JCa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|138.8|0.395|4.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|4qblKcDiuYXveZphcVxRkY-Joc8P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|160.5|0.59|8.73|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b00544|4qmf5aL-uh5AvYH-t58K4NGxZVhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.8|0.439|8.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09146|4qnr8na0ImH9PQqkaEjXVPKS84pf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.11|119.4|0.7829999999999999|10.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703246|4qqGB-PwR8mwoB_BECzICBfK89yP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.173|239.0|0.74|20.07|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.201900333|4qrkNe_shjkC5OEiwh4jq6J3lT6Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.269|72.5|0.727|5.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|4qsodVxOsMZfpuMGn2LJAqsltI-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|182.1|0.7340000000000001|10.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS', 'Ca']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b01121|4r9PnyJS0XZze6qPIiYA38HAvLXy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.0|0.612|13.5|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsomega.6b00465|4rBhWX9vLLpijkQjlm98WnJTl_eT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|230.0|0.72|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|4rS5nJlx_hZd1u8mAJnFMTlGrsh5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|160.5|0.64|8.83|['SLG', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|4rYHbKLQ1AxxN7A77Rq433q7d4Vq|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625||||5.24|['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|4rZTRj02gBKa-bTx56rtNCxsvAu3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|203.0|0.76|16.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.5b03189|4rbD8X-L9Yeg5Jaq-9jfoWZ92j_H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|240.6|0.758|20.33|['SLG', 'FTO', 'SnO2-np', 'OTES:APTES-SAM', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'OTES:APTES-SAM']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227161|4rnV06zD-HZtHFR0MPkR2YlavUsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'OTES:APTES-SAM', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|4.8|0.361|0.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1111/jace.16284|4rnva7TfP36gTISUwdA67b8lVwwk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.7|0.75|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01199|4rocnhAwkF27INYIkIoyWv3tZifD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25C48Cs2H248I125N88Pb50|Cs2Pb50C48N88H248I125Br25|Cs0.04FA0.80MA0.16PbBr0.5I2.5||1.16|211.0|0.68|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b00618|4rwBUeoPlO6tl8eso1i-tJ6_8VAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.69|84.0|0.2|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PDMS', 'Au']|['PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|4rxBzM1JNQiD7Jmd3aOttPRRKC75|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PDMS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|67.9|0.7120000000000001|4.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|4rxSWC_fgrOcLwc93LWyNmrdC7Db|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.105|213.0|0.75|16.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|4s4B2o2IIcYhN0aXroPjbCWZf7v-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.2|0.634|12.63|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc03624d|4s97tk-8T5jlVinCZgpVC5Er3lVb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.59|8.04|['PET', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|4sL5Ik70sVrNKfx1asM1zo6lTcTt|a perovskite solar cell with the following device stack: ['PET', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|2.0900002228590853|1.04|58.0|0.601|3.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|4sNv-U6S2SEQAM3ECy1C308t2RlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.737|148.46|0.726|7.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||4scS5rrZDiuoB6lSyPVve5wcMzDI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5970001702899328|0.95|139.0|0.49|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|4sfqNwQJqhzVmRz4XSbaGSvFHHoA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|206.0|0.708|15.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-HPy', 'BCP', 'Ag']|['NiO-c']|['C60-HPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|4spstP-H0NAlasi3HaSu0TTbA6qP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-HPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.6|0.56|10.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'PDI-C4', 'BCP', 'Al']|['PEDOT:PSS']|['t-BPTI', 'PDI-C4', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|4sq9_7gNZWWiM-5OEUIx0o-lGED2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'PDI-C4', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.0|0.7759999999999999|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07586j|4t2DwGzReZdEqAaFP8nDk6WGfckE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.097|228.9|0.6829999999999999|17.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|4tCX4FSO37f-DTDSaqNiQ9Pa4YxG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|226.0|0.77|18.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.202003422|4tJ6sSXtsfe4EMmej6hCVOxEuxVN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|159.0|0.6|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|4tYXa4CuQiLcenkcLdTcU8VAMVbZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|226.0|0.682|16.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|4taKmqQLs0AOojpIa3KXIGaDo1yp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.0|0.62|12.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.008|4tmnO9CbrhtvfZ6c6XQk2x8OqhhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.76|72.2|0.55|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.12.029|4u2kMwc2twQjcEL8PVo0tGYLxqum|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.8059999999999999|220.0|0.43|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b02443|4u4evfv4o9B4ZOUgbEpNnPiXNehM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7900001908697432|1.254|174.0|0.6970000000000001|15.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|4uH_uSW1wyOsQEC-lnOU9I3V8cW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -C8H20I10N4Pb3|Pb3C8N4H20I10|(3AMP)MA2Pb3I10|1.9200002047317917|0.95|29.6|0.552|1.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b00542|4uTtzRnGakTQf47STIbRdbPcbjYJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA2Pb3I10. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.04|230.0|0.73|18.2|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c']|bulk|https://doi.org/10.1021/acsanm.8b00859|4uU8dwGfQp-NxCnVzKkhAuX3JO8f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|180.10000000000002|0.61|5.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|4ud4uAzBxBMkgxG4GwyLm09F6phv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|158.1|0.654|10.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.04.017|4uoATqQ3AxfZymIWdzyPY80Kf4y5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|206.5|0.7909999999999999|17.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['NiO-c']|['PCMB-60:BCP']|bulk|https://doi.org/10.1021/acsaem.8b01263|4uq1UjkyB1czHVuovT4Zov1yHQyT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.5|0.59|11.98|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1149/07202.0275ecst|4us4jd77K-GFDmWRt8Rzj-s5bZ4d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.18|101.4|0.727|8.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|4usBdE8RbHvt1kSVTpVBqBOTbA4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|103.0|0.44|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Mono-PCBOE', 'ZnO', 'Al']|['PEDOT:PSS']|['Mono-PCBOE', 'ZnO']|bulk|https://doi.org/10.1246/cl.160881|4uvWmzyYgwzYAHJcIR6IoPf6tCz-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Mono-PCBOE', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|55.0|0.16|0.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|4vB7g9rCHrmLjADEBKtZAADwdaWB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.19|34.0|0.73|3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|4vJVFZCRCYe9wgiwXMBwkxXng-ic|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.044|211.6|0.7390000000000001|16.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|4vV07YagiB4H8Mc3j3LOKftkFa4t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|89.0|0.24|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.055|4vVQEYaUq7gMv8d6g6Yv1rrekx_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|181.0|0.708|13.9|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matlet.2018.09.117|4vYb7my3wH72XQIOB_IWTLUl6Bm-|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|180.9|0.65|11.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|4vcqVP_qeRvGN3VDMpug8R8i1Ntt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C170Cs30H969I600N221Pb200|Cs30Pb200C170N221H969I600|Cs0.15FA0.255MA0.595PbI3||1.073|217.0|0.7909999999999999|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201804858|4vhIvrnqrEp9HtJoxeXrFYzz5CNo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.255MA0.595PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.88|228.0|0.7|9.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4mh00238e|4viJGAw3ipdqLxZVO97j9yGSO1KE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']|['XY1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|4vrgjwIhcPk891eOHuz-Z6-9Gm4I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Sn10|CsSn10C9N9H54I30|Cs0.1MA0.9SnI3|1.410000150349909|0.2|45.3|0.364|0.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c6ta07712a|4vu3J1qIsUbZ9VxAgvo_KMdR5wja|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.13|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|4vxjgJgpeMI7G577jnCy1I99Q5DV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|229.6|0.742|18.23|['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']|['Si-OMeTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta09716f|4w55EFw0vhcVyUyTxJTJ1gf5lpYl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|223.5|0.7759999999999999|19.07|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|4w7LPvCNzYzynE9AKBxHZh0foOaE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C83Cs17H415I300N166Pb95Sn5|Cs17Pb95Sn5C83N166H415I300|Cs0.17FA0.83Pb0.95Sn0.05I3|1.450000154615155|0.7|201.0|0.564|7.6|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|4wDaHPW6YZWqbdcgXyTHyoFgiEZW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.95Sn0.05I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900089|4wPyHUdEXLYPwoVDI1Z-SXoTWF0B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|146.8|0.53|8.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'RCP-BTT', 'Au']|['RCP-BTT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|4wSVbw1Bz0nGJ-yXOcqt2p4TwRKX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'RCP-BTT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.3|0.79|19.58|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|4wUAp6Zdbyq8r6pA1YJw-_x_jbt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|207.0|0.632|7.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|4wWqWIyaKJxb-NrGN1Q1mV6OmHzC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -C5H27I15N8Sn3|Sn3C5N8H27I15|FA0.6MA0.4Sn0.6I3|1.2500001332889268|0.84|276.0|0.73|17.79|['SLG', 'ITO', 'PEDOT:PSS', 'PBDB‐T; ITIC', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS', 'PBDB-T:ITIC']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201804427|4w_wVrdZUVyLR2kTLrX_TbZUwMQv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PBDB‐T; ITIC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|209.1|0.75|17.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|4wkACJfaRGDPnT5LSPbzrLnLIFq0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.205|48.0|||['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201903621|4wnCHpdsX2bS4WGRfEdm_niKOZvA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|221.94000000000003|0.7|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|4wnmgpEtrWuQzg0oki2n0vCng_B_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|211.9|0.7090000000000001|15.78|['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|4wte55ijLFXTVQf2s1TeTMGC3j68|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.5|0.738|16.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|4wuLscqYhkE02F9lTJzyMpnRGzyM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.87|181.0|0.521|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|4wx1G9uCV2Okuf92asjttmfEVT6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite', 'MWCNTs']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.08|246.0|0.8|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)']|bulk|https://doi.org/10.1021/acsaem.9b00162|4wyuQU5_APKpJcPHE7ZVsroU48mX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|34.0|0.31|0.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS(IIThThHEX)2', 'MoOx', 'Ag']|['DTS(IIThThHEX)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|4xL4basgM2LBLZ-P7uD_kIGD_a4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS(IIThThHEX)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.0|0.685|15.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra07800a|4xXog7Crvf62OWyiRBBCSSNWjJAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C44H212I124N81Pb41|Pb41C44N81H212I124|BAFA40Pb41I124||1.03|228.0|0.7140000000000001|16.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|4xYmPh_H6CbxXLrX2i1Lduxq9xGA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAFA40Pb41I124. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|159.3|0.75|12.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra13289a|4xebqYXxdX38nOWspY39DrIazQQQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|87.6|0.68|10.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst9030151|4xh0lUMNItAx2SFOLi0-ia2f5w9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|248.0|0.63|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1039/c6cp07733a|4xh78ZZTrrUrgmWQzx-U6wRO85Dn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.6|0.748|18.31|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201800361|4xnHmV5Skjtx1iITtrfiGfmeEXdc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.6|0.79|16.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|4xnU7o0YIk6wycNkgvW3WNJm0eX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C10H51I27N19Pb10|Pb10C10N19H51I27Br2|FA0.9MA0.1PbBr0.2I2.7||1.09|235.2|0.78|20.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aax8018|4xoueE_O9WaqifUdS8nXf8pzxYAd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.2I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|237.0|0.773|20.2|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1016/j.jcis.2018.08.009|4xrus9797ZQS-Rf82CEAGj6Vp0wG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.081|191.9|0.732|15.18|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|4xzuaD67OTY0w69YY5ugMc6MsI42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3||0.77|76.0|0.78|4.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|4y5pFtQuMOJAu5oJNV1ybKAA9Chb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|202.6|0.627|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|4y6zk57S3hIInPbYgVYjV85c4iln|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.0|0.48|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep06752|4yDwuEs_bYgaxEvz9SPhe8awMOmW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|178.70000000000002|0.62|10.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|4yGR_-1BMOaLddHeJEo3fOjO4NFU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.2|0.74|14.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|4yVMXst5PbRQCouZvd0EGFFFv1Nv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|174.20000000000002|0.42|7.3|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|4yfGTV9nsjoqb8jNIO4KnrdZNZSy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.14|234.2|0.77|20.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.085|4ygHPbEMkR7F1tmAujFo9PO0KYKP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|158.0|0.687|11.87|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|4ylllxVbdfPBhY21mlyXbMnuJkiR|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.97|123.8|0.6509999999999999|7.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|4ylmgLLCexm43eV0zHqQ6_xScjJq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.9|0.72|16.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|4ylwXmcc-f4qU9ALdUJI9C_H7QwK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|47.1|0.38|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Au']|['PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|4ytaMXmg3zcTGF29a7su0JbIWPbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.0|0.67|13.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|4zFUVx4fkVzgppur6oteW5d5vJaH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.5|91.6|0.23|1.07|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']"|"[""(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201801824|4zFx0og7rWwIGoV9F9GZLbhdiHc5|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.229|138.09|0.647|10.98|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||4zJ-ZcZpmk6VHrJqzQHiZ0l_UXRX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.18|175.9|0.732|15.18|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|4zPWtHjspskbB0sFQatb6jvmb89S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|4zPXOdZ0iijHceMQfzz3JGvsvPrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.4|0.71|11.34|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|4zTPneDrewaMAc1Nhedtgnu8Ooeb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|202.5|0.8|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1007/s12200-018-0847-4|4zTxcY4eAbNlmLvd1TzecQacgiIz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|179.60000000000002|0.649|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|4zui9exjCdFWi-2LDczf0fQVBclW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|126.9|0.6759999999999999|7.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2018.11.024|4zwCyevutLoKhup5i9uDKHAYpUM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.0|0.427|8.7|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|5-5nzG0l3EbJmwz5h31RW0sLFbRn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|230.41|0.6709999999999999|16.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ra12049d|5-M3shQksU2XJxrk76gSUr6nul2R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|163.9|0.69|9.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cap.2016.08.002|5-QMDLgjDiXnpgyyEyh5HDo7H990|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.023|215.6|0.72|15.88|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M111', 'Au']|['M111']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b09482|5-UbGm59B3iB53albRp_e27LbANf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M111', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|1.08|192.0|0.58|12.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|5-W-u49tZdltAoVQbZoCAFl3RM1L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.875|203.2|0.713|12.69|['SLG', 'FTO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.08.003|5-YrBeNhv10NsV-wfIb9iW8YyNwy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.787|184.7|0.347|5.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|5-loFAItm2p9QleUypKfeZ5BeJsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.077|217.0|0.825|19.3|['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b01396|5-nO59_Co3x_n4ldxcDzqbZcnbfl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|174.4|0.6|9.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|500CMpw8gaYR_M5KzLoq08Jh5QPm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|201.0|0.78|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee00120j|507faCXP0H_byMgq3r28b8v4L65j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.1|228.5|0.84|21.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201804217|509KCvhPrGhZP0RjIuz5qUnF6VTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|40.0|0.37|1.0|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|50BtwEcszYXZYrlUE4UGMzlqMRtO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr03610k|50H-7OA8w77x_v-_4_gxjVUW7COe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.8|160.0|0.4|5.0|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Eu']|bulk|https://doi.org/10.1039/c9ta00551j|50WtpFytKXcPeTlQEuqH7-RxhFyq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']|['FBA3']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|50YoWSQvxNoSLMAOE7EFooZ03l7t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.408|178.79999999999998|0.278|2.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||50cRFwRwTueUu7B95swWB7vjotjJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.9200002047317917|1.09|104.2|0.58|6.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|50kUNMNFq7ALZbCJWYt3GXZN1sC-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.340000249516871|1.48|6.0|0.48|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz501237m|50t4xKL_Hdm9Br9ssYTz3RGeOSq1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|68.5|0.27|1.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4913549|51A8v83obkF1m-XVM4Ozy7WgR0uK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.0|0.6940000000000001|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3,6,8-tetrakis-(N,N-di-p-methoxyphenylamine)pyrene', 'Au']|['1,3,6,8-tetrakis-(N,N-di-p-methoxyphenylamine)pyrene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja410659k|51CX_N_nS_2aRS7whxkKXthwf7gb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3,6,8-tetrakis-(N,N-di-p-methoxyphenylamine)pyrene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.0|0.519|10.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|51EjhSIWraxFQaMWwwClopB-6KuG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.631|160.0|0.57|5.5|['SLG', 'FTO', 'TiO2-nanoplatelets', 'Perovskite', 'Au']|['none']|['TiO2-nanoplatelets']|bulk|https://doi.org/10.1021/cm502185s|51Gl9sZneXu0KC85F4pntKOYaZ0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanoplatelets', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|120.7|0.319|3.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|51hVZUVt1ks_xaxym-7k7VUB0Dqi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|193.1|0.595|9.57|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/jp502696w|526LZaGM6fDj9fnyTYWTMdSEB630|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|225.9|0.71|17.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|52BO65rchXY1KA8onSEocS7PbgOz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1740000000000002|216.7|0.76|19.33|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|52F6pIJbJwB-uUBRc1Dl0klG4LQI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|197.4|0.73|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07689k|52GuCENIQfpMR3Iscf6SWCwZNj2h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.56|175.7|0.72|7.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.08.023|52N61DsC02z2B28GCay_eP7YSXM3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.176|125.0|||['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201902708|52cjBfvTlGtSPWpF6Su88ZjUUo4e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.76|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'ITO']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|52m_GcDTHFfNfcqQpW0jAE5wSySq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|219.6|0.711|17.49|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.067|52oEgtx1FWd2ECZ_H7XYgh-MbT0v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.763|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b05058|52uic4iNE4Xe_H2xiNDz4u1fJka8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.06|215.5|0.78|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601451|53-buhSNa8kygkoWK66pPSoCezn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.09|234.2|0.716|18.28|['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|532P7Sv2ecUEBhvthCULxGN0TiED|a perovskite solar cell with the following device stack: ['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br17C90Cs10H459I283N171Pb100|Cs10Pb100C90N171H459I283Br17|Cs0.1FA0.81MA0.09PbBr0.17I2.83||1.024|236.1|0.731|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1225', 'Au']|['V1225']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b23495|538peA2C7O3jTwRjx6Y6cLg3c-v8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1225', 'Au']? The composition of the perovskite layer is Cs0.1FA0.81MA0.09PbBr0.17I2.83. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.18|120.5|0.713|10.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|53FSDVcjyYK87fAudfWH9taF4pV-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5800001684772036|1.08|215.7|0.7120000000000001|15.5|['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228320|53MECFSmhZybFfuHYew2nBFsX3ND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.9|222.3|0.61|12.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|53PTAqDjQpCHLjEDXxpTbFw1GOIQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.04|198.2|0.6|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|53RBJIdDnwWkXiq7gsNtOzNAxXKM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.5|0.639|12.3|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|53YNbFZW5SuhV5s4b3Oo4KgcOwPv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|139.0|0.561|5.45|['SLG', 'FTO', 'ZnO-c', 'AZO-mp', 'Perovskite', 'Au']|['none']|['ZnO-c', 'AZO-mp']|bulk|https://doi.org/10.1007/s10854-018-9054-8|53qwjOPeKDVXMoZnelymSvO_Ubbb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'AZO-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.1|0.6459999999999999|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|543hw7xxFHf1W1iEOSizHd6afx53|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|219.0|0.736|17.22|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|544-Qo2PuogDYAA_UlahQqLBsjKy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr600C200H1200N200Pb199|AgPb199C200N200H1200Br600|MAAg0.005Pb0.995Br3|2.300000245251625|1.122|41.4|0.641|2.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|54_vCDKXRE_jN_LarcMXoFVntyRW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.005Pb0.995Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7|219.1|0.72|11.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/ab2309|54d4x_zySmETKL6f9k4s7EP0wP9P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.026|149.0|0.7020000000000001|10.69|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'In2O3-c', 'Ag']|['NiMgLiO']|['In2O3-c']|bulk|https://doi.org/10.1039/c9ta05802h|54eGQ7bDXlOLPHi9vFEGRTCslYU5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'In2O3-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||0.952|207.0|0.723|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.10.012|54mHI4fsZlWgz2IdqD4ebDDOa1ip|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3||0.77|236.7|0.698|12.73|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|55Av0ps7v5gA0RHNFIiCtSZqFM2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|55GGqt6ibtDp4LswZUD-gI2DffZt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.8|0.614|13.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDT-TPA', 'Au']|['IDT-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|55LZHXPY0Gvxq8O9l0WpblNVJ3xJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDT-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|165.0|0.747|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05308k|55MbnMjuDKpqOYa2ZUZhVh2S77RI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|140.39999999999998|0.5529999999999999|6.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|55MoFGJ0m2e-DUTm_C6DWcAoFpMf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|206.0|0.752|17.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c5ee01720c|55RW4cqbthrRf9oie2QLUmtfGhno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|182.0|0.52|7.5|['SLG', 'FTO', 'WO3-c', 'WO3-nw', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['WO3-c', 'WO3-nw', 'Cs2CO3', 'PCBM-60']|bulk|https://doi.org/10.1186/s11671-016-1670-8|55cjyBdeww5X3bncUiLJ-0Q9gFmb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3-c', 'WO3-nw', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|225.93000000000004|0.75|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|55s27iaxZQyFW7ewK4e5uVHZ2-uT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|122.0|0.67|7.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|566liLH7vp66e1LCATf4h9OSPe5w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.46|206.8|0.589|5.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|56GWYeOjkX4RNegllG3OJ3t-0761|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|237.0|0.42|6.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|56MSnL-j1CIUHFqbhN-yhK586HDv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.88|196.3|0.68|11.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mseb.2017.01.004|56O5RJNpwWzSWdUu-QR2dzKgFbxO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|74.6|0.387|2.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.01.031|56fXsE1zthP5k9jCqeTWuK32FC4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.4800001578140891|1.021|215.4|0.7879999999999999|17.42|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b01180|56kDco9qdckIO4BpxAVE_ixZRwAF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.22|111.1|0.6|8.07|['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'N749']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b23532|56nDM_-pfGpUnDlXK5kTiwWXeh8M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|227.4|0.78|16.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1007/s12274-017-1894-7|56xeasKZwGhQgMSKD5qG6nixeKOB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|89.0|0.56|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PF8-TAA', 'Au']|['PF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00762j|570D4pJ7WtGKxlsFafZeaCmBodtF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PF8-TAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.831|173.0|0.442|6.34|['SLG', 'ITO', 'PEIE', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941218|576A5qvotjnY4RJzgg26z6PsXpps|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.782|181.7|0.3329999999999999|4.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|577gYphB1jCYimW1mZO6mNm5o9uJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|149.2|0.59|9.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|57CYTYmHm_MRQaW8LMtLZkwQ13b_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.78|167.0|0.57|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Graphite']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201502541|57EWKNq1f4TMTM7aGWYT8sAc3Osf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.244|140.0|0.661||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||57NEAIyabmlmSvCxF7YUzGEyUJY3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.2|0.71|12.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|57R8b_QnsuET3CUS_q1FLFacy471|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||10.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|57UbAUSOetVK-wQEhJs_vao_c75H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|187.3|0.618|11.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|57o320xfHBOLajkbrz8bL8H_Pqka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|196.5|0.63|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|57qFr7_iCCocdrpdNDy8Hs9AVgmc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|192.2|0.64|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.6b09671|57rHrjxv-Y3_a9JzvttGFr3h7lpg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|197.0|0.642|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01776b|57y3T7SdWYVBYlm78XA7yxLtNCOJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.5|0.8109999999999999|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|5837w0-iMBcnaj5pedwtfyn_iZ_Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12InN4Pb3|InPb3C4N4H24I12|MAIn0.25Pb0.75I3||1.0|159.3|0.65|10.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201600626|588SNEu4caFh2Et7P31OIMY502Hd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAIn0.25Pb0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|153.9|0.61|9.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2019.104285|58DSX-4NTnhh1FN4mA57PUkZFw8J|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|170.79999999999998|0.64|9.25|['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PANI-PAMPSA']|['C60', 'BCP']|bulk|https://doi.org/10.1134/S1063785019090050|58KQ-tLTMarf2i3G1AnteYixsSSH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.8|0.594|10.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.1007/s11426-016-0115-x|58KVOjsUn2EXp-8Ml1g8HQrIMp-t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.7500001866044976|1.15|188.0|0.6779999999999999|14.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|58Kwgl5_B2tyes_6g8xs96_NmokB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|201.4|0.68|12.14|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|58QZF9KGgqVDenvmnLI86BZmz88p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.89|203.0|0.62|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|58R26o9afjSCZWm9ZsWung4NMVSr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056||||6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.06.041|58SjQyDsFX6DzYmpjxX9elmT_doz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|189.6|0.732|13.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|58Sot_agGteioeGHs_kB5MLgY9Sa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.9|0.765|15.91|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201604399|58VHxzbBaJ8Po2B9CC6i7SEgk5GV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.672|12.9|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|58Y-a6cx5YIWZ9YE0Q8HMlHDTcG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.3|0.66|14.3|['Textile', 'PEN', 'ITO', 'Au', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'SnO2-c', 'ITO', 'PEN']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10321b|58dEPfwsop72DwUOV7nWiN3pcp4o|a perovskite solar cell with the following device stack: ['Textile', 'PEN', 'ITO', 'Au', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'SnO2-c', 'ITO', 'PEN']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|188.0|0.72|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b05058|58dwAW7DwceER_XUytjPsr3OFJyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6200001727424491|0.91|163.4|0.72|10.75|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|58enDELclfy46sK1CBpNHjLBfftQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.129|216.7|0.753|18.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|58uR7yTwL8GRLpksTa09UZ-dmZ-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.52|10.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2016.11638|594u2W7EfYtBx1l4hV_wb3_P7w7I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|193.0|0.76|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|597UdFltbuzX0Rl1cXi7oSC-Ewri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.0|0.82|19.2|['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']|['DFH']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02983d|597phtWLnSwRQB14KfLybt9dss6k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|150.0|0.41|2.5|['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM', 'SiO2-np']|bulk|https://doi.org/10.1021/acsami.8b22206|59C6KxWp4Xxdc5aphj5NuRQo3rp_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17H57I30N19Sn10|Sn10C17N19H57I30|(PEA)0.1FA0.9SnI3||0.293|105.0|0.54|1.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|59Z_U6EQvyZ0HIi63MLT1iShGJ6P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.9SnI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|2.420000258047362|0.868|73.97|0.626|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|59_XaSG-bFXvDdcsTSnmpRaOGVSY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||0.87|165.0|0.52|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4ta02635g|59berTTpLHULlBDRdLfP8NBwfwEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|214.0|0.72|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.027|59fyBzDNJHoGfSVj8Tyl--WeSyz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.61|36.0|0.56|1.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFO', 'Au']|['PFO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|59l-apdijCDRGtL_aJ7Tl6I2sqcy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.04|209.0|0.72|15.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|59mDMq688h7gXacKg_ga7kbuQwQ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|186.1|0.65|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01136|59nCkQJ8DDKV95yo03VMjrCEZ2iP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975|1.6000001706098266|1.09|227.0|0.78|19.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700302|59qoiwB8VWV-G-Lt7HpGS5UnmAXz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|177.39999999999998|0.715|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2017.14278|59zG73vZobw92Q3k2JFrgvYlz3aO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|192.0|0.654|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.108|5A1D-g8Gl-ZJBLUziNn09PawUd8s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.35|166.8|0.54|3.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|5A6OygQx7W3qYlTnbKMozki5bYbA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|249.6|0.7440000000000001|20.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b13189|5ABTciwyjjXCbXst5mMt40UZwEpN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C5H28I6N7Pb5|Pb5C5N7H28I6Br9|FA0.4MA0.6PbBr1.8I1.2||0.9|110.1|0.514|5.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano6100183|5AI9qCw5LjBalRGhRABJ9K7ZvAUO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr1.8I1.2. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.11|245.5|0.75|20.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|5AK8REOKcFYCQr_huTufFR1pqZYf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|132.0|0.516|5.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201800002|5AgfGPrgKKzGSBFYc8RBEgFfK5D6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.003|253.3|0.63|15.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|5AnDrxuU94bDE1UZdcDa4ct-tEXZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C18Cs2H93I30N33Pb20|Cs2Pb20C18N33H93I30Br30|Cs0.1FA0.75MA0.15PbBr1.5I1.5||1.179|155.7|0.618|11.35|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105524|5Ao6A1W57o1VCH1EZxMQVDYtffxE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr1.5I1.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|192.1|0.52|9.88|['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|5ArUbeGdP6OGKPJWkdzKbo1SSjs1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6600001770076949|0.94|149.2|0.75|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|5As4cEs7rvqkvg7-tOxQ8QnHVP9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|200.3|0.708|15.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|5AvOWrdB5kYCjIwi2BHRoJ_wHVp0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.056|5B5GjU1rB3VbkNsqx5lkdgpjcHSC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.271|167.2|0.772|15.78|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|5B99h0P16WuE3Oz3efmzAW2uKr1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.0|0.71|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201801808|5BEnXnH-4d_C4TzmnRKmkV9cpaUX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|241.2|0.68|15.74|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBTh', 'BCP', 'Ag']|['NiO']|['PC61BTh', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b09018|5BM8NTbqCsVPift835MfpWdUq0-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBTh', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.02|175.5|0.8190000000000001|14.63|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|5BOzOimjrd2zXRCLvRJm_tACeC-d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.114|211.19|0.7240000000000001|17.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00042|5Bi3AaOVNd6OPiOXi-d_z0v6ftId|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.61|5.5|0.48|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|5BwF1qhZoFMh8oHt7zYXboxNRPPB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|156.0|0.65|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|5Bzk5IrASJ558B9Cvv5VNKZ9fDIG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|125.0|0.52|6.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn506465n|5CFYCA2iXBjUz5Er636m9lt1ZNAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|157.6|0.71|11.76|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|5CMewMijYDuxkBXNPuoZ68_OTxfU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|190.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn506465n|5CN9Bu6I6JbFCejQgHsd4-dRCgiz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.3|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2732223|5CRrafaRmVR2SUw0okTZSco0Z2RT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.3|0.799|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|5CotSX65WUrPLgmd-6AJqjKySLQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|233.0|0.7090000000000001|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-I', 'Au']|['OIPC-I']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.202001460|5CrPrVVrZB2IvSGydpYpwY8kaIXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-I', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.5|0.727|14.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2017.07.013|5D1Wn2nd9k5dGK52_l89YZXZeXKm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.8|0.754|14.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.04.017|5D1tb2AmDKv9ghdcg6o_KIpwNW4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|193.0|0.64|7.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|5D2gXXIGpBr5set3a9DMQkL2dKCf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|226.4|0.647|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta05288f|5DEoP_uiXFJ7XDobAnLViAXgYy-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.091|221.0|0.767|18.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900125|5DGDAf0tfjmpwGx2f-en4dcMf0VW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|183.0|0.68|12.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cphc.201900856|5DPr_1TONkm8ncjipukH-H5BvrtT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.0|0.74|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|5DY2xIzgdIgj4oVEwI_P63eCoKRO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.045|184.0|0.615|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|5DnyIGLJa41Zn6FB4rbOBGKp_1nx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|30.9|0.23|0.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|5Doh2Gsna35lHk_W8_V-1nxfd7RV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.038|213.2|0.691|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|5DuSa15S0qMfzsIYEdE5RHFuccTj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6200001727424491|1.084|221.6|0.752|18.1|['MgF2', 'Willow glass', 'IZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|5DyQ-jSMIgJp_tULtFcV0h06WXRy|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'IZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.05|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|5EN7WJ7B0ad-xFMqWfsLf4wqKY-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.0|0.76|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta03710d|5ER9EQQvOqwlWxvRxTlz78UpLgoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.91|69.2|0.45|2.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|5EWkSmUVAl-EZJSO7ByYyF9AyPrC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.0|0.69|15.3|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401855|5Ec8Hil8J6Mc-_w6IsAa_fOxZ15K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.127|234.1|0.764|20.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|5EeCwz4Vw8KkYlfPlUKiRvOhyK2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.1|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'BDTS-2DPP', 'Au']|['BDTS-2DPP']|['TiO2-np']|bulk|https://doi.org/10.1002/advs.201700025|5Ek729m0KwV7IhHk0OxDUPO8kB86|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'BDTS-2DPP', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|152.10000000000002|0.653|11.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|5En3fke3XzE-l_zalgjHANEeziNh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.008|188.0|0.55|9.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|5EovbJ8d6-jG15lP4uMVMpIQxUsr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.703|0.61|0.66|21.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|5EtsyNdpFm4JcAqmw4HAmWmaaklH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||0.9|156.4|0.6759999999999999|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|5EySfraPYaJeDCx-rO0ze2DI6WZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.0|0.79|18.8|['SLG', 'FTO', 'Nb2O5', 'PCBM-60', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'PCBM-60', '(EMIM)PF6']|bulk|https://doi.org/10.1021/acsaem.8b00094|5F6HPj9_eEMOpKFlHnyjSJJxFtVO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'PCBM-60', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|194.4|0.603|9.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1540-4|5F9-Jb5OZ12h2c8Sy5nsdcEPdbHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|192.0|0.73|13.5|['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MFGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|5FJOEYMBLJRbFkZk6KWKjrunPciq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.92|200.0|0.579|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S179360471642011X|5FqMQ7rqsk65VYCWJ0QsZKjZ-ngG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.07|232.0|0.77|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|5FtLiI4L--5QDdi4MLN0IAP--Qg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58|||||18.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|5G1RhtmdzDiFYxW3DWrq3eSZzUhV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|93.5|0.492|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1080/15421406.2017.1338095|5G8NIYngZcAB6nGyHCPZmSAtZIlG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.22|166.0|0.75|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|5GJUVb4flhInuvl14Tj19V7-VcTC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|144.8|0.504|5.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1933-z|5GVV4Q0kQs05BwZx24QlFzQHluD0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.3|0.774|19.74|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|5GYTRuo_KSLaOdeBarqcwXa9P0Qb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.1|0.758|18.12|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|5GaGWAOsLUWZ1-Qy7h5hBrEuWgUL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|129.5|0.631|7.77|['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|5Giw_vNiWZMDq1aacqO9-4RnBbkW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.91|209.5|0.53|10.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201900157|5GjJQJk2dVUwg5-QG8Ml3YgmL0di|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|180.2|0.767|12.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7tc00597k|5GjUNhOLjQIpd4-1l3isTLBOF1H8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|126.1|0.66|7.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']|['DPPS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.136822|5GkIiBMg1AVvVJEpnwyxmcRpvUYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.73|23.9|0.38|0.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|5GsS2T4pnjgPqN8JAL0hFpofZ3V5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C10H53I21N17Pb10|Pb10C10N17H53I21Br9|FA0.7MA0.3PbBr0.9I2.1||1.12|200.0|0.69|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|5GvLBaspOaBZANUbfWYUf1M2Xs3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.9I2.1. -Br3C40H240I117N40Pb40|Pb40C40N40H240I117Br3|MAPbBr0.075I2.925|1.6100001716761378|0.95|181.0|0.642|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2017.07.009|5GwFoPCUm5Y7GSX5YBc8EJGELuJ8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|145.0|0.34|1.35|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.tsf.2018.07.039|5H8NBUewkGylLilXQhvA3q-zCIyK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.8|0.74|15.8|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|5HBkMFGA3Ftopr96L2bmx5Mk0qZ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|183.3|0.61|10.2|"['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]"|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.11.098|5HF1wKcZWgCCETBlGICvWa2Dxd4d|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]? The composition of the perovskite layer is MAPbI3." -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|1.03|31.4|0.452|1.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|5HJ0jPPPMhe6XWKmKD11pRyh6UuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.138|230.0|0.75|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|5HMaXcIHRUysYuYNrIRbzuijIkPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|177.89999999999998|0.52|9.38|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|5HPxHHIuvmF-5bhlurleRndzHQ3Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.19|129.3|0.805|12.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703246|5HaX-XP5-MIJW9D82xZTXlLoM2vM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.76|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|5HfN2qoQ2SFTMDVAlXKqPCL6qgtm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.84|154.60000000000002|0.6509999999999999|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07359j|5HgQyCQvqcUmNA1Veak1xQIOuzf2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.07|2.0|0.22|0.0|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|5HimhD_ib-NxtBPbkFIynKWTxFmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|215.3|0.7|14.87|['SLG', 'ITO', 'PEDOT:PSS', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'VB-DAAF']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b09012|5I06Cm9GTYEy_KrqfuLNdHbmazYQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|190.0|0.318|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800056|5I4sPGWe9dDPZJnkzGmWv_Jl3mwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|197.6|0.61|12.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-TPA-O', 'Au']|['PZn-TPA-O']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201701526|5I65PbNxK-mNqBO_x7Dti71y2V5g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-TPA-O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.570000167410892|0.93|178.79999999999998|0.688|11.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02999j|5IRcesaW1Ula-WtATKPK645mQfCS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.05|13.9|0.56|0.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|5IXf9jqrsIT81iwG4XAgd87oJkHY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.0|0.502|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|5IZMvoCwLUfpryZh_YFR1SGy2Avg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|219.9|0.752|17.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2752-z|5IZd-tt4zFJZ8TRTqIDgpsJhqQYE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|230.0|0.787|19.6|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|5IlrTL6SbMuF6daHjg7IRIk5ycU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.06|224.0|0.73|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|5Iurs8DuDjNYYT2i5zLO2FL2CT7J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.8|0.68|15.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|5IwSrjA6klXexKdzYqsIfQQnpZly|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|225.9|0.723|16.71|['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|5J091Rd0faEuGCF_0m8kHVTWVtd_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|167.0|0.737|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|5J79kSOKVW5kMql0MCeppfD4D404|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.853|202.1|0.585|10.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|5J9AeyGR0DRgO_TyLZvMQQM5ZiX_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378||203.5|0.5760000000000001|11.71|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', '4-methoxybenzoic acid']|bulk|https://doi.org/10.1039/c9ta11744j|5JASiIZPQP-RotwvyIrxGDYdqFdZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|168.0|0.693|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|5JEndyMxFBGw5ODwMET8xqHgIyyj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.1|0.65|13.63|['SLG', 'ITO', 'ZnO-c', 'p-amino-benzoic acid-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'p-amino-benzoic acid']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|5JKOQFptwWAlnUyIO42WfSzf7fuM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'p-amino-benzoic acid-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|5JLcMn_MpZ9pTrczYhEjxTr2vXhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|157.89999999999998|0.539|7.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|5JORlutF2-VvuFKuV16Ui_v_gl75|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|228.0|0.778|21.94|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/ncomms16045|5JUuZ58y10Y8w_p_5Zfvh3KwKFEU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol']|bulk|https://doi.org/10.1002/aenm.201702934|5JcuvGtpyRMjQduM6caXLnIZWqse|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|209.6|0.777|17.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701117|5JdX-ljYdMacQxnb5_1Gr3Eih3P6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH97I51N36Pb20|CsPb20C19N36H97I51Br9|Cs0.05FA0.85MA0.10PbBr0.45I2.55||1.09|225.2|0.7929999999999999|19.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta11462a|5JrbvJJuFbZLUoV1MXp2isHyGzQl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.97|200.2|0.68|13.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra12205a|5JwcYw6S4OR2Mnd2UJOwLzz8KQPn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|5JyRP2lFm418NJixG7NmSWSgE_qf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.09|206.7|0.7929999999999999|17.87|['SLG', 'ITO', 'Graphene oxide', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['Graphene oxide', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.072|5JydvYWNU9vEC9K8XkJuOxEmQNWV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.947|188.9|0.636|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ensm.2016.11.007|5K2mWB-Lpusltm8GlblTcGGh6SvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.106|226.0|0.779|19.45|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|5K4E9tWAYFQPn_WexmHbQRhlqjfB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -Br2C5H30I13N5Pb2Sn3|Pb2Sn3C5N5H30I13Br2|MAPb0.4Sn0.6Br0.4I2.6|1.2600001343552385|0.79|176.6|0.727|10.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2018.05.047|5KD0grhSizLyyGvwA_5pTVbzLXgw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|116.8|0.56|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra06133d|5KNni-o30QGKfHRRzXD4TOdIKeZA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.5|0.758|15.83|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|5KV8DbJwNP2WRhfl6aKBFVoxA5Nl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|190.4|0.75|14.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201501024|5KdYer4xNWWJhCOcmq49vsihUnXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.202|126.4|0.71|10.95|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PMMA', 'Carbon']|['PMMA']|['SnO2-c']|bulk|https://doi.org/10.1039/c9tc00374f|5Kic0SxmUYxZT3lsFEIR9rfqHneY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PMMA', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|19.4|0.308|0.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPor', 'Ag']|['ZnPor']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00018|5KjxZ1fI1gXHiUm3dZWKII3eLj5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.3|0.737|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np']|bulk|https://doi.org/10.1021/acsaem.8b00192|5KlpW_bUXP98RAnGb7Xdq74sKAls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|150.0|0.6|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.7b03243|5KnY38A7xhzlAMBkjwjm08d2TzQd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|2.05000021859384|0.79|2.6|0.45|0.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|5Kp6vf5iNs2tZeR_5qpV-vGySy3u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|192.6|0.55|9.62|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04053e|5KpQx3umeJV3UxcATkze_u23jz9b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.26|156.2|0.787|13.88|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TFB', 'P3HT', 'Au']|['TFB', 'P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.202000501|5LBJ6ywmMyWhp_3KE4xherxxZTQz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TFB', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|238.6|0.789|20.5|['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO-EA', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|5LKq-H1I7eS6EIUICApq-TV0Cn1I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.106|237.3|0.7040000000000001|20.18|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00769|5LOW0u57AW1IbnReyvFElKoh3g0c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|226.8|0.6759999999999999|16.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201907442|5LP39Aq8QEZagBU08sw6hDNgizOy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.07|208.6|0.71|15.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|5LYILx6caZC_R4kYBOF77WXl6M6L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.162|225.0|0.782|20.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201802646|5LaTP2s7TiGSUykOI2VXjKXnwdS1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|200.0|0.721|13.95|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|5M08q4toI4KdoAmairDt6AYUHc_Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|139.2|0.6890000000000001|10.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|5MB7K7SuzE2hrTCBk8euAyQGkv4y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|227.0|0.71|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|5MICPtX5_y--ekopWb2VwfHrnFzL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|237.0|0.726|19.0|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|5MPireDIj2DATnW9XotvvwQkVu7_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.0|0.7659999999999999|17.0|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']|['LiMgNiO']|['PCBM-60', 'Carbon-QDs']|bulk|https://doi.org/10.1038/ncomms15330|5MVtX69p6thMX126VM5V2rEPiChh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|114.0|0.4029999999999999|3.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|5MaOpy5rdLNbM-hAQHulJMdZM1t6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|175.0|0.42|6.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02976c|5MkJpJyDI3TJsKr2duZ2giGBZQk7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|161.5|0.679|11.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|5Mn_cXCG8VacbNudvgT2yrSEpDX9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|135.0|0.547|5.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|5MsYieIzxVRvdXUaMnIKDerR3kfL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.033|209.9|0.73|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra05323a|5MvBE-f0gHqEzoaYrOqeYzBYiisT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.1|228.0|0.75|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800232|5N64EFq5H5rqIzAP_qkDM097cPGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0|199.0|0.68|13.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201802231|5N8RzHTjCfoootkHrPlUvynrUFc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|109.0|0.8|9.2|['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|5NAZS9N01D09bC-ioHLXOkPLBSP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.87|0.6|0.16|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y3', 'Au']|['Y3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01223|5NDVele_Uv6Tl0uPZbr8-5jqnHLk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.2|0.728|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|5NOPfbhbd_xkTlI-r5zEk-XtPCZD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.5|0.7040000000000001|16.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|5NbxdojGQEw7ZlwPsuSvnW9kDPu2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|208.6|0.65|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDVT-10', 'Au']|['PDVT-10']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1618-z|5Nfg4FOle4EdH84s7S7rPiggZu9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDVT-10', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|168.70000000000002|0.532|9.2|['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['Al2O3; TiO2-c']|bulk|https://doi.org/10.1007/s00339-017-1326-2|5NvI3nCdzipes0uOvBETv-c3h4K0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|187.1|0.61|9.93|['Ti', 'TiO2-np', 'Perovskite', 'PEDOT', 'ITO', 'PEN']|['PEDOT']|['TiO2-np']|bulk|https://doi.org/10.1039/c5ra23430a|5NxspJ5i1u4GjwURhWxosIu8QGaq|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-np', 'Perovskite', 'PEDOT', 'ITO', 'PEN']? The composition of the perovskite layer is FAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||16.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10876e|5OEWP98ygh_yU9_1SzBRmQRtS_fy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.1|147.0|0.5770000000000001|9.4|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06315|5OKEnwxFEx0wJ-w0lFBj4e3CqtdK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|222.7|0.71|15.93|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|5OmqcoAsAlWuN3AlwsCIBz1LK4c0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.7|0.73|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|5OozSjp_Eqv43jIJLTfQKTX_yImc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|160.2|0.76|13.27|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBB', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['PCBB']|bulk|https://doi.org/10.1039/c5ta10574a|5OpzewgYai50z28J3ZpLZKGOkLg2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBB', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|37.9|0.743|2.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|5Or16FayLo9Dml_cKmPMWhwnJENi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|161.8|0.51|7.57|['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1088/1361-6528/aa9ac9|5OzRrXObQRW5etJSZ-tDRTcyBmBM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.7000001812729404|1.154|173.0|0.675|13.47|['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au-grid', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/pip.3208|5PBHioNTgPXyOH4o8QmPdB-GZQwe|a perovskite solar cell with the following device stack: ['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au-grid', 'MgF2']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.205|223.7|0.5579999999999999|15.03|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|5PFT3xXh8EIMer9RniEXUG0Yzh8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|240.2|0.731|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b02781|5PFV39VQx5ydAcaEYMEnIA4HFEtH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br81C83Cs17H415I219N166Pb100|Cs17Pb100C83N166H415I219Br81|Cs0.17FA0.83PbBr0.81I2.19|1.7000001812729404|1.09|182.0|0.71|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b17241|5PV0AFY0F4IwpYSyhaSLWTM-VqXb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|206.8|0.79|17.35|['SLG', 'ITO', 'TiO2-c', 'PCBB-2CN-2C8', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBB-2CN-2C8']|bulk|https://doi.org/10.1021/jacs.5b10614|5PZJNB9eKMjk_wHnomam0cfWhVYz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBB-2CN-2C8', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.2|0.736|15.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900041|5PZoJp93RQzCWtfdxNuNjVR9-LVq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.27|80.39999999999999|0.62|6.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|5PbGx9AiZ-cmqr88XUxozDc3y0xr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|174.0|0.7559999999999999|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b05058|5PnL15LpfvzWDgP05OMO-TTUmFmD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|221.0|0.62|13.8|['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Graphene-QDs']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|5PoBzeMx4e_q2THfyI-wqCOqaBoz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|201.0|0.6970000000000001|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|5PruxxrNLl8qRY3lHFK37c1UOTpj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19H97I54N36Pb20|Pb20C19N36H97I54Br6|FA0.85MA0.10PbBr0.3I2.7||1.17|217.0|0.7859999999999999|20.1|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'LiF', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['LiF', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0219-8|5Q6GsNX632d0RHzcdcWVjZZKjiQr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'LiF', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.10PbBr0.3I2.7. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.191|45.8|0.651|2.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|5Q882edDxjoqGWHatTDjkSHi5EC2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.129|232.2|0.759|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|5QFtq8HdFStVhLIm1GdEgyxvJr8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.996|171.8|0.65|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|5QIICLr87W4GR_xO0k6P42n_mbOH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.04|148.0|0.73|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.081|5QIdDvTM81rDW_jvOd6y3d5gvEkD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|152.0|0.65|8.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|5QRGhyv3XEnaNzdLDlEERCatqab6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|1.07|218.9|0.731|17.14|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|5QShD787e3-B41uLjLDH1FG8Xcfk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|192.8|0.46|7.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nt', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.7.003322|5QSq3W5SfeSWGqUus86exgzNiC1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|213.0|0.735|16.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.7567/APEX.11.105501|5QYrJ5Q-eMy3Q97HSzxFQ7m8UIe_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|218.6|0.6759999999999999|13.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501406|5Qftqwk9_pEHHOYx4esIc-IStIEI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|101.7|0.5760000000000001|4.69|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNA-F6', 'Ag']|['NiO-c']|['HATNA-F6']|bulk|https://doi.org/10.1002/anie.201604399|5QigbfTsHXlKd94fjGtaizyijwaF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNA-F6', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.14|212.1|0.75|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']|['AQ310', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|5QsUtiS-GCeHn4HpGr7CXyuqPJzl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.5|0.65|15.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201500262|5Qwp4Y3eAv5yosgD71aIzoyJGqsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.08|136.6|0.63|9.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|5R1HA268WwpOIEZ2Bjc1QTVg2Y1L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|241.0|0.764|20.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700492|5R1Ukvpi3nEHrSpHot87dVbUEpNX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.0|0.63|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|5R9g3BJ9NGfmFmbS6_T69huuPRNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.98|166.9|0.6990000000000001|11.44|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|5RAUsf2jLvrl2tQzQNBox1IyjBh-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.437|207.6|0.574|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|5RBK2V6iyp-tsnB6vv-oLR-w2gr6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.11|245.9|0.7829999999999999|21.37|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|5RKXQJ_4MVdzSmJSWuKPVMrMVUve|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|226.0|0.73|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|5RQ9P9zjvqd3rDLFyS_N6BLrIFQb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.9|0.634|13.0|['SLG', 'FTO', 'TiO2-c', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-ETA']|bulk|https://doi.org/10.1039/c6ta07876a|5R_XLiQYFu_8JPP0fMYOz1j4zOIc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|235.0|0.63|14.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104246|5RcQY9pmlRkWebRJO6CSw1IrrtpT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.064|222.5|0.748|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|5S5LQVROhqML1TZVx8T0gvbuP0sm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|199.0|0.59|9.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-017-2401-5|5S70KGVySUXREZDCO8pbxAdhZUiY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|197.9|0.77|15.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.037|5SHqSEDwQyAoAcAX_VuaWO_UlWEM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|203.2|0.479|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|5SXMhHMGrdgaT2PpbmtUGHQbKP2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.11|223.94|0.764|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|5SYE0dYKiPZdYt0fLfHwTNu8-qjP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|0.72|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|5SYesg0zQ5vAP1EQvFJK1Rflehgl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6100001716761378|1.123|229.0|0.78|20.02|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201802012|5SaSkmNtcp-p_zyLLO0kUwytrUGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|207.2|0.64|12.09|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/er.3743|5Sfm2A1Kaz0DDLwWlkPZzCfd0Tmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|235.3|0.785|20.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|5ShQS0ZzvUCMp_BYgHZMODzFcx-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|196.4|0.7|14.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.01.025|5SmNI-95zJeS2t7r5g_aujWPh398|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|65.0|0.54|4.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|5SooaUqnXc23bouuqYAeqTR5ZxPv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|217.0|0.7490000000000001|17.1|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|5SqU4xuWSz_oS46okmEkaax4Ns7a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||10.34|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|5T0ht_cBZ7vQTk8bDv6miv64IW_y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.47|200.7|0.74|6.5|['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['LiF', 'PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|5T11vYCLETTXplO_hYDvp0oR_e5a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|207.0|0.64|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700308|5T1U8vU_5aC7_NjfM5yaXG4GaZgW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.1|227.7|0.799|20.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|5T2sD1vxugxvjhQkmbL-mb71tRO4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.13|216.0|0.785|19.15|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|5T5b9K0sXzLyuUPSh_AvCI8x8TDJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.152|68.2|0.254|0.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|5TCvC8ib3TW92v2Hcf4Jo3rnGJIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.4|0.73|17.07|['SLG', 'ITO', 'ZnO-c', 'T2CA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'T2CA']|bulk|https://doi.org/10.1002/aenm.201701683|5TEcgenne9pI0rC-JQBnhGdnPQlc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'T2CA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.097|223.2|0.753|18.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201702260|5TJAHkBIMoSEx5EVXrhuPRu_ywgh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.5479999999999999|219.03|0.556|6.66|['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.orgel.2017.07.047|5TTXP6VGOprCgX6iK0-O24FpRE95|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.4629999999999999|10.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|5TUl-HSKmt6nuDOCf3QeYy6Rbe_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|213.6|0.6659999999999999|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b00468|5TdA56XWsGV0rF1MlgdWHSzgD4bj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.893|201.1|0.498|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153272|5TfZSK0O5dkElH9BmGew4YCe0F7Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.084|222.65|0.7759999999999999|18.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|5TgRmQxvZDTHl-bEsMRzcs-GZGLw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|151.0|0.66|11.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ra07686f|5TioXmSEgHnJLp41K2vsOkNu574E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C20H120I54N20Pb15Sn5|Pb15Sn5C20N20H120I54Br6|MAPb0.75Sn0.25Br0.3I2.7|1.430000152482532|0.85|218.6|0.78|14.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|5ToMcQv8nk_9TPCEX2eEkuD8bqs0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.3|0.65|12.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|5TtXunfV_ktxUGELnOYP71x2Bcrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C269F9H1026I325N125Pb100|Pb100C269N125H1026I325F9|(F3EA)0.12BA1.88MA3Pb4I13|1.6500001759413832|1.02|160.79999999999998|0.763|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|5U6CrO2yifCD-_RT9hfu2OwBxLxQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F3EA)0.12BA1.88MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|142.20000000000002|0.475|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|5UOFpVIRmoPQqJ-fZJq3XQxYvGji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8|185.6|0.78|11.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'BCP', 'Ag']|['PEDOT:PSS']|['C70', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.143|5UPTdJodccKDpz2lMUKF3xhB1hHj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.737|128.6|0.54|5.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Titanylphthalocyanine', 'Au']|['Titanylphthalocyanine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.020|5UPkiBQeWj3vyV70dVMNlDBICE_g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Titanylphthalocyanine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adfm.201603968|5UiyENOG9Q6Ml8hQhBF6beBYFvfv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|196.0|0.575|10.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ee02693a|5UjptsXClMggnZptpIcQxgPQGrWV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55|1.5600001663445808|1.17|232.0|0.79|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature25989|5Uw5g34_JnVj1R-LnMnjU6PZRuGG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|135.75|0.6809999999999999|8.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|5UxPWaqBFd9NS8aiZT9G5C5M1G29|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|235.0|0.417|9.11|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Oleic-acid', 'P3HT', 'Au']|['Oleic-acid', 'P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00069|5V1oIV_OSgyyQSWnSV5LnK2jZKv6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Oleic-acid', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|208.0|0.56|10.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|5VAkSGQGIyzh_D5JV1lAGG1xFhmu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|211.0|0.701|14.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|5VG5uTggbN2BrmAipecBsepjEZu2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|5VGwwOBfw8Yq67AhiCRhI0s4j57F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|78.0|0.201|0.75|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta02184g|5VOEe-PH9QZuO8KvePxmrdIq-vWP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|221.3|0.41|7.71|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'Al']|['CuI']|['PCBM-60']|bulk|https://doi.org/10.1038/srep33649|5Vb20NhDnTefUUSGGxxOdmfrM4jK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.086|226.4|0.757|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|5VrSmmmwoePI3x1wWQpyI3jozCmF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|165.96|0.7490000000000001|12.36|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|5VusIFM0McBdjtbhj_alIc2--Hkq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41586-019-1036-3|5W0PdZNYDg9FZ79U_SzL3SDMqIM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.2|0.742|17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|5WKfA0Y06_dIMSIFcuAILBzxRwj5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|230.4|0.63|13.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|5WSdjVisFxcNFIVRKHjX92e-24Yh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.251|54.8|0.411|0.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|5WaRUlcgXBXCi6DOHmHSVHJrsAHI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.627000173488867|1.0|171.20000000000002|0.708|12.13|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|5Whlw8GkG1b7AVsz9ryAk-Op9VlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.07|192.0|0.59|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|5WnnyhtU5a76-bCefnrGvF5Jfi4R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|220.0|0.74|17.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|5Wt8xecFE_1uvHsrMIgKFYq-WbGe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|230.1|0.695|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06486h|5X2R8dJUIZtheykV72Xts_6xXfB7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|0.9|194.3|0.75|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|5X32f-6ErF0KbGG4iO33jJysc31n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.617|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|5X420lC1sa6P0qFEltz53CEHsCmb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|163.0|0.46|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|5X9UiaUlU1qkVyq71SsyBqpG2YyR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.88|165.3|0.6970000000000001|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.3390/nano9111616|5XFFPtoOtkBc31YhC1Dvc-sITYug|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||||0.78||['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1002/adfm.201900466|5XHX47ym-qvqiT5kdmTZ6Le9r09b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.124|241.0|0.799|21.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|5XMlDekC4JxF4pbXd805WDL8WQW3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.16|222.4|0.715|18.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/advs.202000480|5XNCej3cTBSbymm1I7bRF9SOfAAi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|183.2|0.71|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|5XOWC6ZiC62naHf_sBjPfFDyNEvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|184.6|0.61|8.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr02866c|5XSJt7tg3WTS2F-xqlftUmXCXw7Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|141.2|0.67|7.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.01.041|5XUnLTGFWga8fqp20dLJa1TjpzKq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|7.01|0.45|3.23|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['none']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|5XlrVV3-4nNJaaZxUopj1a3SVH2L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|156.6|0.64|9.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|5YCqW3NCBOktmXmw29oldxdGfAsi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|1.0|143.6|0.6|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|5YDHkzc7tFrfkY6NHe7aC9vtmvFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br11C100H600I289N100Pb100|Pb100C100N100H600I289Br11|MAPbBr0.11I2.89|1.5850001690103592|1.052|230.8|0.69|16.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep44603|5YIKV7jOSvQvTlw1y6c7D_f1Z4lY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.11I2.89. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.09|226.9|0.72|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b04003|5YIeeW-ddSFEVgEyibtxQc_8wRm6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|147.0|0.4|2.22|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC04|5YJw6y59Bf1qbquHc1m10CQGTqx1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.2|0.73|16.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|5YNNbQpuYKE4snJN7zuc4JTGUCyg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|192.0|0.76|14.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.024|5YUJzs6XDbFi4PaIt2stnWWFFTMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br27C50H285I123N65Pb50|Pb50C50N65H285I123Br27|FA0.3MA0.7PbBr0.54I2.46||1.05|190.3|0.77|15.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|5YX97_wWVbi5ryJ8BHJcv-MlDqod|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.54I2.46. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.01|141.0|0.7090000000000001|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|5YXhM2M8FqRhiiYaaOMVr0LMDbJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|100.54|0.389|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|5Yf3uPTpEIG1f1Pgz2JFnZnVjhI-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.82|205.0|0.65|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1186/s11671-016-1811-0|5Yii1zrGuAZeenQS0kuRA7OwlMYi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|||||0.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800217|5Yrjc2fuutEywFZpyAfe0grYEXQ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.0|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1603-6|5YtMKaCe5Cp3o8aDFyvgl3x2ADdC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.101|223.7|0.79|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DDOF', 'Au']|['DDOF']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09028a|5Yy0K4g5-4TYS0GWZ249Zb25JpHC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DDOF', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.859|24.1|0.699|1.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|5ZBH1wXDpmN_4TQ0IjOwn6bOKW6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.037|221.8|0.6890000000000001|15.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|5ZBrtNggxqD2qLKk26pRyCv5mU3w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.6|0.769|17.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|5ZHLFgfJr0f_wcl_-a8fad6Xx1g6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H50I29N20Pb10|Pb10C10N20H50I29Br|FAPbBr0.1I2.9||0.958|202.9|0.593|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|5ZPE1ofbaAFl0fFRSQbPRw1SQhVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.1I2.9. -Br100Cs100I200Pb97Sr3|Cs100Sr3Pb97I200Br100|CsPb0.97Sr0.03BrI2||0.99|142.0|0.6920000000000001|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b00937|5ZTlL1W__vwbMos84Mwh_1ZFDc3Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.97Sr0.03BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|196.4|0.57|9.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|5ZZwtBDms1SP0HmcmWuFwwhLVYoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.39|71.0|0.5|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|5ZmpEN3n0zO58OvHcbkB3VixYlof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.0|0.589|11.2|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|5Zn61f2i2gDVTnEQloj5PYUJzNym|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|210.0|0.78|18.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|5ZpNt_7WrirnyNrg8uQ513CO4F3l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|205.9|0.742|15.91|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|5Zs4MV9HACE3-JZKAGhPUYNAnHZP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.1|0.73|15.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00350|5ZzLqFKzUSl82joRd7_QafHBos2E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|206.1|0.711|13.94|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|5_9TriR1lxyOerHZ4rNDNQvhL4Kc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H487I249N178Pb100|Cs5Pb100C95N178H487I249Br51|Cs0.05FA0.83MA0.12PbBr0.51I2.49|1.6300001738087604|1.092|203.0|0.7|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|5_IYz79gO6xaAajqQVgRJHEKMmQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|146.2|0.62|7.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.08.029|5_Lc9E2zcn1Qs_sQmzyoF4CtXqjO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|1.03|234.9|0.74|17.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS01', 'Au']|['CS01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|5_SM_Ch_4JuHDCoBAWZIOrFKhWNl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS01', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5980001703965645|0.9|180.0|0.755|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE05|5_Sae0uGOpR8YmTedG4OdG9vZkzv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|196.0|0.76|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|5_bONzN3aEJxUvPs1-NGnn9U86jC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|56.2|0.65|3.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2018.03.009|5_defk18qIpu18FcMqqzQo7eTU87|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|217.6|0.693|13.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|5_dp0z5Ax4IglRyRNHPBp1HplVd-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.716|17.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|5_pnEW7BMa62BAxsc9_oGi3Jf3mZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.0|0.74|16.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|5_ue-3UM_Sa7tc-hr132StHNO3Ww|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|5_xk3cLupVeHUz3_ga2A3W8wJdZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C15Cs5H75I42N30Pb20|Cs5Pb20C15N30H75I42Br18|Cs0.25FA0.75PbBr0.9I2.1|1.7290001843652438|1.192|183.9|0.752|16.48||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|5_zBC1Tn1c7VxHKd1XnTikeqHjOW|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.9I2.1. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.084|200.0|0.707|15.34|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||5_zdO3_cNyUxTDAc9UdjSlHqnE7B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|185.0|0.71|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s12274-014-0534-8|5a6I071J_orEWglbNtlbJ1MgMAQ9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.07|176.0|0.56|10.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']|['NiO-c']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|5aSyAWhjJxlHiZNRXNqFUVfVsnbM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.787|204.0|0.578|9.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|5aVH5NFG-cmB138PlohEb7MLjET4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6859999999999999|71.7|0.626|3.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|5agQEI-yQXIWm3X3ODPZzP6T-pNL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.9|0.6|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5TA01730K|5atrpfx0vuQsdOeK6GBooD0XqHR4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.9|0.69|14.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|5avtKCm5BoyDCcYrjpz5g3D7_5kX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|232.0|0.469|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03686k|5b3AHR6aENrc71xnN6nUIBdR9ZDL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br63C92Cs8H483I237N161Pb100|Cs8Pb100C92N161H483I237Br63|Cs0.08FA0.69MA0.23PbBr0.63I2.37||1.18|189.6|0.77|17.23|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.018|5b9P-By68h_L2BaIkHSxWJDY4ArG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.08FA0.69MA0.23PbBr0.63I2.37. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|214.0|0.77|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra20614j|5bB6IS6TA1wAbk_EDHmmEoEt-9_f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|234.0|0.71|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adma.201705786|5bCzjCH6Xc0w3yDhXVril16tBDri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||11.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|5bPNaU8cvut2FReif8RVFoiMJPxC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.13|231.0|0.72|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2017.03.011|5bRsFv60mgr6cTnl9aa4a8-lxqNA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|141.3|0.522|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|5bZkmKz7pvNwkfX5N97XqBozXzno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|217.5|0.5489999999999999|11.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|5buALB-sxOyawvHRvItAL7NGej3g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.5|0.647|13.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|5buLPrT8f4aRarCUCJsMdaajeIE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|211.2|0.63|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|5bvNW2NERaSBdm-gS4fFqPOqLeHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|197.1|0.71|14.27|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-np']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800004|5c-0O3vCFEGficnDmw6FjRovFDZz|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.58|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201600581|5c38QP7svZOVYHDawe1aWZ0Ke7ey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|180.0|0.679|13.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|5c8Hi2-MraxtpoftuoOptI3P1yND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.0|189.3|0.78|14.82|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00169|5c8RI5l1fs7cqSFgIPtgWFEDBeww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br9C19CsH97I49N36Pb20|CsPb20C19N36H97I49Br9|Cs0.05FA0.85MA0.1PbBr0.45I2.45|1.5900001695435149|1.05|222.6|0.7559999999999999|17.54|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Ag']|['NiO-np']|['C60; PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.8b01507|5cD7O2qlImnwg5ZuZPUHAEMsX8un|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|163.1|0.58|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2016.11.060|5cFsW1uuNnb05gJE-oSzRBQfZb7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.0|0.742|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.05.007|5cHV-6HahJfg4MZoLYy30uPJwwJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.0|0.76|16.01|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|5cKXXauadWP0Py2lfaoPxAAte77r|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|118.0|0.63|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|5cN6MlYuUq1HBJWdQumHGiVLuZGs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|247.4|0.72|19.87|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|5cOJT31HKx8WsUZf52zxkPx2VfI-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.888|105.06|0.652|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|5cPz_o5FpX0aK7AGDZonNFk6I36Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|85.0|0.61|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|5cewXA0se_AgvazwdPTul7DCQSli|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.8|142.5|0.677|7.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12023|5cnXL0keAPj1KwE_uKLl0ZED12VF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.0|31.1|0.67|1.99|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201800346|5cv4cwICsDnvO9AVEqvj7spZzefp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|89.39999999999999|0.45|2.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|5cyTaYIoRE3857oaNrRqr2eBpaiF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.99|187.6|0.667|12.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201802231|5dD6kER-dr3KRiEKE_fwCLSh0l0w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.12|215.2|0.774|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|5dDt9bG6UPkKCpUVNBFWTNkEsqvS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|130.0|0.5|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201900884|5dQoTu20-u6rbtmoy1QBbXctuzi5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|163.4|0.457|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|5d_vNEa3-yab10HtH4R8gVD-Lg2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.02|229.9|0.67|15.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.07.029|5dcZ_E57OjhWKP1pBFheVWhLPVU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.6|0.639|12.2|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|5dpGOjvTX46kfJKapUCvYE2aZqkd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.4|0.71|15.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|5dwwshTIARlpNo-fx3G_PnqOTxgR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|188.2|0.71|14.28|['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']|['CF-Sp-BTh']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.07.031|5e71hs5A0ISkORSwmpqmYnYBC4kT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|105.6|0.305|3.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']|['4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|5e9dCxngfJgeOsJPF7UKpaO9lYKM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.0|0.745|15.4|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|5eACp9wa6KnGfBaYUELvAQgGGJ5h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|211.0|0.63|12.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|5eEZCH5LNY6h0Yak9hmWSOsWK8WV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.0|0.74|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/advs.201500353|5eUF5OqTcI-QObegWfQZIErLEncJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C95Cs5H520I296N145Pb100|Cs5Pb100C95N145H520I296Br4|Cs0.05FA0.5MA0.45PbBr0.04I2.96||1.134|234.5|0.779|20.43|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900217|5e_PryKXN9VcZfzksrX_iqf9OL8u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45PbBr0.04I2.96. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6140001721026624|1.02|232.2|0.655|15.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|5ea7ToxQ4oxbYzAnBUXAKCAGFjyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|178.0|0.53|9.96|['PET', 'ITO', 'FPI-PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FPI-PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c5nr04250j|5edrqn_wakAz3mUYstgS6G3XOwjY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'FPI-PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3||0.67|184.0|0.53|7.39|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc05325d|5emDXOtFNx9eFSWoE00ogeRkjg5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.6759999999999999|11.29|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|5esCpKDNpTsfYipVzSFz-L4-D3yR|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.2|0.617|13.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|5ev5_mTcn9BhrOfZt3paVnHHM6O2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|195.9|0.742|14.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105573|5fT275Pk6X2E0rVWW8lqpunWpIJL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|193.6|0.7120000000000001|13.91|['SLG', 'FTO', 'ZnO-c', 'AZO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'AZO-np']|bulk|https://doi.org/10.1016/j.sse.2019.107714|5fWbadGK8K1_0toiNyGtJmbYQMyM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'AZO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.66|15.7|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ee02373h|5feTBJaRtNn44vfRb2ZEpTdbG6Hi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|5flzuQ0S2wM_ZcNaqsYqhdFgO_Ib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8009999999999999|164.0|0.605|7.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO3-np']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsomega.9b02934|5fpRrJ8y3vidocbSUgo0ey2Davo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO3-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.0|0.662|11.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1557/adv.2018.413|5fsHVJjgh2_NVgnxdjBZq0nwh7E_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|155.91|0.77|10.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2019.100341|5fstuKZyZwXXMbYlUrfwrCVcxsTj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|5fuoebVX3rw46T-V65KjiLi-Esfz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.188|219.0|0.802|20.8|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|5fzoS58xglD6CPA_eZXdqBCyPFg2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|45.0|0.57|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|5g4WrgCUU8UKsPWpNkp9WbvkRybk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -Br3C95Cs5H485I297N180Pb100|Cs5Pb100C95N180H485I297Br3|Cs0.05FA0.85MA0.1PbBr0.03I2.97|1.5980001703965645|1.08|239.9|0.738|19.13|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|5g5AXPuG35ZLmTEEikqbJ84jWcsm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|146.7|0.522|7.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|5g8MuGczpKnnw5FErYJlwPMy6SM5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|193.0|0.71|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05189h|5g8cpFQf4TVPe_2vjEs6N-tquU9A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.0|0.578|13.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/1.JPE.6.022002|5g9T4nbvyw3GPGzKlGPsXUqIGCN_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|210.1|0.79|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CsI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CsI']|bulk|https://doi.org/10.1016/j.electacta.2017.03.139|5gOXp9jwtC5mXN0XSyN-0jMCzrTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CsI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|219.0|0.65|15.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00526|5gXgqX5neBgJ-DdlKoy36-Ud5jXu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|5gZEkiFigyBASgCn0IcIKyz17xmx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPb1.0Br3|2.12000022605802|0.79|47.0|0.46|1.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5023407|5ghUr3BZi3lj469MckUL0Zy_dpij|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.0|0.647|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.137694|5gw8OJyfOpw4cdfBzq6S6mufFaFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|191.5|0.71|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|5gweetL6Ng8yLkKDzMh_W-fIwO6D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.77|62.3|0.56|2.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-017-1264-6|5h4WWei202HJAwHI-GIYib5kbTsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.7|0.8|19.62|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|5hAd9WbDakOj0ZLaXi8uvVtwuCpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.087|226.6|0.693|17.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|5hCi7Cz9SENTwvOuY_jnKGtF5EhA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|219.4|0.71|16.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|5hgOsX_nQRH3Xk8QQOqU1eRB_vPN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.0|0.76|15.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201505882|5hjtFAkYNFMGpVqdwIFhNsbCT2kl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.94|199.0|0.59|11.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|5hkXMTSXSp9ve0eqyPrHMS8kZNtU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br3C40H240I117N40Pb40|Pb40C40N40H240I117Br3|MAPbBr0.075I2.925|1.6200001727424491|0.95|159.0|0.65|9.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08848b|5hraB_qAK3c9y53NMVTp0qy1Sbro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|5hrnCqlJCEODDNA1E99XQ974M6RS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|209.3|0.7040000000000001|13.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PDTSTTz', 'MoO3', 'Ag']|['PDTSTTz']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|5hrsNvSbjyITCclrFo2KjEn2isFb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PDTSTTz', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|223.0|0.682|15.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|5huZDIlc6TSzhN1UgRXnf3lSKGlX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.03|191.0|0.847|16.66|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|5hvUEBok2LXjHQPoa6699BMi0PiV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|227.4|0.7240000000000001|16.86|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc03259b|5i4KWVIYOpdYW94KDMuGt_Q39yzo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|140.39999999999998|0.594|8.53|['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'rGO; Zn2SnO4-fiber']|bulk|https://doi.org/10.1039/c6ta04726b|5i4YomahrxSC0DeXdxAuVb2gKdGF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C98Cs2H504I295N182Pb100|Cs2Pb100C98N182H504I295Br5|Cs0.02FA0.84MA0.14PbBr0.05I2.95||1.0|210.5|0.7090000000000001|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphene', 'Au']|['CuSCN', 'Graphene']|['TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2019.10.101|5i74AMM-VNYcNdVcpvUP3bL8BecS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphene', 'Au']? The composition of the perovskite layer is Cs0.02FA0.84MA0.14PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|88.9|0.69|4.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|5iEqAHtdQDhqiVPzYXPiYxwh5OYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|220.3|0.511|11.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|5iH-eNKgFgNesvWu14Eu1AQYwJE4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|230.0|0.6709999999999999|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|5iUNAymLkPf6NHN_HKJYQN59Qe9o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|241.0|0.4529999999999999|9.1|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.08.001|5iVdagUNWy56cEFT4JEHg96wPksE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br186C511Cs9F240H2129I1054N728Pb400|Cs9Pb400C511N728H2129I1054Br186F240|(TFEA)2Cs0.225FA7.425MA1.35Pb10Br4.65I26.35|1.739000185431555|1.09|187.9|0.652|13.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/solr.201700125|5i_v3n4RVaLlYR0EOLRfrrkRadu_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TFEA)2Cs0.225FA7.425MA1.35Pb10Br4.65I26.35. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.89|175.2|0.46|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8ZnPc', 'Au']|['(OctPhO)8ZnPc2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|5inaq0uoOZlyGnnB7TAxYBdZAGrM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8ZnPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5|1.670000178074006|0.97|72.30000000000001|0.57|4.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|5ivkjjaHiGKI_bUq_AJLOl3e8-9j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|206.2|0.728|16.3|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|5j313YG6kyRjo1WyZbwyEEEunr9B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|211.0|0.63|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1088/0957-4484/27/50/505403|5j60QOVo1Z4ODA8NT4IaNZlHeW9_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|207.6|0.63|13.26|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1038/ncomms7700|5jDFwCgAMKE0xi7P9HAHyV2XJRXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|175.79999999999998|0.589|9.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|5jJwKtb3lAHwWTTPnRPpIuwhp__f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3||0.78|190.0|0.6709999999999999|9.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|5jM9kG8HIioVI9oqIkPHBzeA7rZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|149.0|0.639|9.15|['PEN', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1149/2.0201811jss|5jR4DkfqVpkAvSMlXqoHlOJNWqZm|a perovskite solar cell with the following device stack: ['PEN', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.91|165.39999999999998|0.54|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104246|5jSKejcaTFm-DNrtovM-kf63eriI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.15|224.0|0.75|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|5jTXv2ANXYAUKIX-0NeeZfcEXbM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|229.1|0.7509999999999999|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00981|5jTsSF097D4_x5ccuj7l_MMQP8Rh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.4|0.527|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta05288f|5jWwsplKkD_4OwJHhqpjMCjhqGXR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.092|238.1|0.7|18.21|['SLG', 'FTO', 'SnO2-np', 'APTES-SAM', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'APTES-SAM']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227161|5ja5730dNs5V-SYNocNcniuyODZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'APTES-SAM', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.3|0.75|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00894e|5jvM5fgmRKMAtLXACFbPSDL7LE02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb7Sn3|Cs3Pb7Sn3C7N14H35I30|Cs0.3FA0.7Pb0.7Sn0.3I3|1.3000001386204838|0.7|251.0|0.78|13.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800997|5k7KmbJX1Q_WbBoOnx4jU5Iz7xdg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7Pb0.7Sn0.3I3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.87|179.4|0.515|8.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|5k8jwl5IqrFrf-P2pMqpjuWDrTPz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite', 'MWCNTs']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0|195.3|0.6890000000000001|13.41|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201802231|5k8mGyueKAlaNSWfvz91gZPsPcbZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|229.0|0.7|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|5kKjMO1bmmUiXFoBH6uR3XfN0-Yt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|180.0|0.65|11.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|5kRkIOAPDAjUefq7ywssMeIw2Ffz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.001|208.0|0.84|16.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/smll.201702775|5kb4ofcaqKm65RRrmJnd__bDDdao|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br51C546Cs4H1421I249N151Pb100|Cs4Pb100C546N151H1421I249Br51|(TBA)0.3Cs0.04FA0.55MA0.11PbBr0.51I2.49||1.22|221.2|0.5539999999999999|14.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|5khLrypozV9yAI-ohmHa-7L7Bhs0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.3Cs0.04FA0.55MA0.11PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.83|155.0|0.607|7.8|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|5kmTTUOxUYoTzlr5Spk3pfex7zN5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.05|199.0|0.664|13.81|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201900720|5ksHA1Q9WSrq-XieEdtiC05st-E1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|151.0|0.62|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZnO-mp']|bulk|https://doi.org/10.1038/s41598-018-20296-2|5kthT8YWZdsM8FdDy_1kzgw0XnAP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.30I2.70||1.0490000000000002|205.9|0.7020000000000001|15.18|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.063|5l4Hx5yKyoH-dgZv0-bCzXV9HBbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.30I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.5|0.757|18.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201707143|5lAUwgPk3IGtGbTu7K0xHXZ6YAwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|180.0|0.711|13.4|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.008|5lEB0IIx_oltVIL52Fmp6x67hq_n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||1.04|205.9|0.654|13.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3389/fphy.2018.00099|5lFDOTH1BvZjuyjJk2t-KjZqEK7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|90.3|0.83|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|5lGwgZBxVBXOTtYZto7_qenPLJft|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|230.0|0.73|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|5lNY_RtQzZuCVuIeqDF-VgwgU_OC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|183.0|0.532|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02388b|5lRvmYCkNNzdadtOV6yZbrm1Vr5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.0|0.56|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|5lVoKixdThH2R-vHFjIbtFWW7H2K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|236.0|0.62|13.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|5lZQUEvTE4TPpVPS-UgLvF_-JhzO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.742|146.5|0.55|6.06|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2014.10.145|5leLOxkBDKa0d7YrBzHOcG3E-7rO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|179.0|0.75|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|5leWrCpYOniM6dBdibH8VgNovrKi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|227.9|0.731|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|5lhvQZd5QDDlahxDzQnDbuA8zpND|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|230.0|0.805|20.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201802234|5lqF9nfmNb1wV-qgiw-CLVRczjP7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.0|0.49|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|5lscsZDoxZ2qfpgDY0dfcj85KdjR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|233.0|0.78|20.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.027|5lwOalSr5GVPwh6dMzr6dn-qsdGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.9|0.57|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2941181|5ly0ag3zTDrnWZCT5bLQmN_ocJVg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.3|0.78|14.66|['SLG', 'ITO', 'PCDTBT; PFN', 'Perovskite', 'PCBM-60', 'Al']|['PCDTBT; PFN']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|5lymKmhMHIqL6li2kTHn4GwyfVzM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCDTBT; PFN', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.5600001663445808|1.01|124.0|0.579|7.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']|['PTAA']|['ITIC-Th', 'BCP']|2D|https://doi.org/10.1016/j.orgel.2018.07.029|5m-agCIJPiv8bttij3nKxRYVW07y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.0|0.602|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|5m825B_XDcHFn8CtGTL7HWSXJLmL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|0.9|68.0|0.63|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201510386|5m9CQheS7c5yUuou4tIHPMYMQiul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|169.3|0.682|12.49|['SLG', 'FTO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'PEI']|bulk|https://doi.org/10.1039/c7nr04739h|5mCsI672rugIA0azSRcWGVMP1egZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|196.0|0.7929999999999999|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee01138d|5mDMbhSQyLRuQEv80Z3T6Ftruv5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.14|249.0|0.779|22.11|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|5mYgHH-9p4r2x2G6bhuh2DdASxB3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|189.1|0.647|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.5b00046|5maS3w0k93LFIsuLvHjw4d1PJGVh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|209.9|0.72|15.52|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|5mwvVsjiIWhXK7KCW3Cfn850v3_u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|224.4|0.64|12.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.03.036|5n8irhEsNAquWo4fHHEXX4nWqiki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5920000000000001|209.4|0.626|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1021/acsami.7b12046|5n8w5G457fF7nxt0rWJeh5Sk0Xrp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.05|232.1|0.72|17.82|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|5nFJer5EMT097H2nrts1AQ9AgsZp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.114|235.2|0.768|20.05|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201803244|5nVMoymRwkJ9Rb51mSGGzAjrEChT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|143.6|0.68|8.31|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|5nW0XFoF_ZbFfqDqcAhBBVE_Adlj|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.06|214.5|0.7|15.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|5nZzde3l4zqnhjV9awZsq8hGzvoo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|177.7|0.7759999999999999|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110316|5nc5Jgkc7H3xvZDH_a_o0o55YyJL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|188.7|0.6809999999999999|11.86|['SLG', 'ITO', 'VOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|5ngom_k61BXCNLODg4eyg5E5iGn1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|106.7|0.67|6.43|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2019.05.055|5nm9NYb8UoGil9FCWsfNmWyAG3cA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19Cl2H40I13N5Pb4|Pb4C19N5H40I13Cl2|(CPEA)2MA3Pb4I13||0.88|156.2|0.46|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.solener.2019.12.021|5nxg98UUdKn2gH3B4nqnBeUqq-rs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CPEA)2MA3Pb4I13. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6170001724225558|1.06|230.9|0.757|18.44|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|5o11H_HwKMzJFA02Q6bYPDrA3lkF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|223.8|0.6579999999999999|13.2|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|5o1CA-DhXWK0wk6hkL9PN2q0BIXm|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||1.05|253.0|0.72|18.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|2D|https://doi.org/10.1021/acsaem.8b01964|5o47wrApC_fr-6QT97G_jlNLStLq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.6|0.76|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pi-PFE4']|bulk|https://doi.org/10.1002/aenm.201901257|5oHGxJlJ-F24T7PB7fSoMSfn2SoA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|218.2|0.625|12.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RE-ZnBu4Pc', 'Au']|['RE-ZnBu4Pc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900119|5oaI-WV2-gDQtDeUTANrqRCbmx3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RE-ZnBu4Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|200.1|0.79|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|5olhYlpuQ29WKT0Zxsj4DAg6yjQI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.0|0.693|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02388b|5or3UJV3PIunhRtRGidRNpDWy-Q5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.12|247.7|0.73|20.32|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|5osir1gLLB14wih57Xzr-B8WazOr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.01|201.0|0.66|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra04742a|5otlNriu4I4XBL3TSE-0MgPKYVgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br288C95Cs5H515I12N150Pb100|Cs5Pb100C95N150H515I12Br288|Cs0.05FA0.55MA0.4PbBr2.88I0.12|1.5600001663445808|1.08|31.6|0.74|13.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/admi.202100743|5pAmM0TBZ31Jw84ld4qebIos9JW-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.55MA0.4PbBr2.88I0.12. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|213.4|0.653|11.5|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/advs.201902656|5pExhsexjeZqPeuhsQDlN_SdKA2f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.2|0.69|11.18|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'SiO2', 'ZnS', 'Ag', 'ZnS']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-017-1880-0|5pFD07TcGp4TAAhoCYzREhWJ417Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'SiO2', 'ZnS', 'Ag', 'ZnS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|174.7|0.7120000000000001|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600913|5pMHKwV0bdzuN13NiC6juT5cFr4E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.67|110.0|0.535|3.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|5pZ42WsurzLOxBfWY1VToKNbD_CB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|5p_uXlDcZhUIjRTWyf1DelOYxl25|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|184.8|0.65|11.79|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']|['P3CT']|['PFPDI']|bulk|https://doi.org/10.1039/c9nr03030a|5pkzqsB-pQGORFfcHozjJ0MGhixs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|226.7|0.54|11.45|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|5plac53aRziLs93-94PIj516jnWX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||30.0||0.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|5pmQfYrLC3mibKWAL9cmnt9rUXP1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||205.0||15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201501606|5ptXWqMau_s1FKgOZxNLc0MpFgpM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|220.2|0.813|19.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']|['Imidazonium iodide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.035|5pv8j-B-8bOwIatyNN9HoRwet_ET|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.85|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta07876a|5pxJVIBLB1zpZ5MN3fg2FSGwgyAI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.0|0.76|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8se00368h|5q07AAn-CugeklUtEH_3S7HJX5x7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.246|142.48|0.64|11.37|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||5q7X1ieKFu2DSyB4ELFzpT_l8tcU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.6|0.7340000000000001|14.82|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|5qMr59XAF9jWuNy2bNtD75s1Nl1Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.02|195.0|0.7|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03990h|5qP-5julnvGRlMsVe_IVjMHvIplw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|212.1|0.65|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|5qQCUtHASpouzj_LM1MgaGYK82yi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|194.0|0.556|8.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|5qWe1oMXz77CnpuEai03dmIq4a8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|227.6|0.6579999999999999|12.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1126/science.1254763|5qXykfa_zEzG3KO0_Se8t16Pjd4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|219.3|0.61|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1002/advs.201500105|5qYkaoRmVlDN78gZk02p6ZvxW4Aj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3|||||14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|5q_ihB0EQR3HC7g55EhJYaAn1JWA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|226.8|0.61|12.41|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|5qoKt-HC99aKukqieEJ_VW-Zj2BP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.67|175.6|0.416|4.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|5r-mE8TbfYBxPC57k4oM5wPFFc4v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.4|11.3|0.46|0.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|5rAnkqTlbYYrDV2Ghi8AD8FGEa4r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.16|224.5|0.71|18.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|5rBokFpDwpVwt5HVf9E_c0e4yvxP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.3|0.713|16.28|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|5rGVmr4E6E8lmQUbQUVQXju4q_9J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|140.0|0.645|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|5rjHZ7c6CPjIzMVkxNpgpauZ7GJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.8|0.72|14.66|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cap.2017.11.010|5rnl8_O6eqLaGsfO2_mVeAn-nB5k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.0|0.69|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201402587|5rq_MrFkOvZmZJeCMsclMef7kqnl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|188.4|0.59|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b03724|5rsUNTSRMwjilFSSUcZ0DYylH9kA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|231.1|0.626|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']|['IEICO; PBDB-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09467e|5rvOFoJZ00FWnf8ObXbJPayscMt3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.778|102.0|0.3289999999999999|2.61|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|5rvfhDFbwyQxIkH_YbQNwj-8NCVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-2PA', 'Au']|['mm-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|5rzd7PkpTWFb4CxpvDO33w2-0Gkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.0|0.74|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|5s-ENBNdvyDN4cQ_1yLm7xysrnpB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.0|0.512|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201504477|5s6mLuHwQSgdzlpps3h_Fp1PqPbx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|180.6|0.61|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.07.057|5sJwtTBUj_IYAhNl2tGfNFOujaYc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.6|0.63|12.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112141|5sedNQljZ86prFbhduYmncu4jfMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.482|136.0|0.35|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.108031|5sqvfgJ_sCodOrZZVxcLNgWAQbIH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.521|72.30000000000001|0.862|9.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.202000199|5stosB3JCkAcEvZc010hs9xlNLB6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|196.6|0.629|11.26|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2018.08.024|5stwpAh2pKRIdFBpYBIVMJdJBHaL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.11|227.3|0.71|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.050|5sudrb7jaT2VP5uExN5mOzN0ogZ0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|201.0|0.6809999999999999|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1016/j.electacta.2016.09.138|5tAUTB6o_thotxhUYAVopEGKtKWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|156.0|0.63|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nl400286w|5tBMhSfZaNqfTUH9s7S-bWJTwix3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|5tDDbF7MTKbWQ8A1y1-uGO1DlIyl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|210.0|0.76|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|5tT7vHyPxkFMEjCmhUCUqKerrGdi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.5500001652782691|0.88|171.20000000000002|0.528|8.0|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|5tToOuykxccBCLLvYk8pSDA82j5q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|204.0|0.8270000000000001|18.3|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|5tqyf7HkR-TdGbmRqQVJTtUvaPkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|225.7|0.674|15.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|5tufdX7QP8pL95Ii04JoQIFE0Ptp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.77|197.1|0.67|10.1|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|5u-TdP9tYIumV_eQh7l4Ec5OkS82|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.3|0.75|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|5u07NJiSvBgoTq2iBmpd9-bwy-MD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.7|0.73|15.61|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|5u07pGGMefuK_R-JU0GLsnfwYyHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|205.6|0.648|12.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP-Th)3-EH', 'Au']|['BTT(DPP-Th)3-EH']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.034|5u3_Anmg3lvuDJPFgTCfltaYHjCz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP-Th)3-EH', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.103|226.0|0.7559999999999999|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fluorene-dithiophene', 'Au']|['Fluorene-dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700492|5u6vunBk4cFw60x5zw8U5nOldWDC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fluorene-dithiophene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.9|0.755|18.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|5u7FU-e4i-6iQ6Pok7djF3K0phSw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|211.0|0.51|10.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|5uCeYVXiEfof6On_y25JAx0C8GZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|222.0|0.75|18.5|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|5uKPmiGPfkIs-OSbalc7zGDjl7yW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.82|105.8|0.48|4.24|['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PDI2']|bulk|https://doi.org/10.1016/j.solmat.2016.10.041|5uRdPZCIiyU1LXIvsnsSeCcHauzy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|176.0|0.66|11.4|['SLG', 'ITO', 'PCBM-60; PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60; PEI']|bulk|https://doi.org/10.1039/c5ta08744a|5uTNurc83PMmcVSN18AaqzHL3Srx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|5uWG0OeawBqc6MrUgTYs2U9SPMqL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4580000000000002|81.19999999999999|0.821|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1002/anie.201800019|5uY-ilcesLgf9Y-mW3AuJtTmwwKd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.821|182.0|0.54|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/0957-4484/26/49/494002|5uY3bBfZEh9RdYHiIgsl3UN9_D5n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.7|0.7|12.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.6b12509|5udEb4N2ueFs-Q150i0QGuPqZSJw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.06|202.4|0.7020000000000001|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|5ujaMDWrvz_ftdehHsx7ByqFBvKb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|144.2|0.7759999999999999|12.09|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|5ukYJjO-gDFiSopbb9jK-Jiikl3S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.12|238.0|0.8079999999999999|21.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902239|5ulozqj7wp1dr0sLN4bPxeznJUXj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.069|202.3|0.581|12.57|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z2', 'Au']|['Z2']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|5umkjY1KUcCiDgQGL3qvDXtGxD6e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|128.5|0.59|5.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|5uqUS-NvP__pVpwu0zifWB0m2zYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6210001728490804|0.83|129.0|0.506|5.41|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|5usc4ZTEOantm6gv6wfcW05T8Zlb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.45|90.0|0.65|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|5uy7_jWrSgndqsAkuMitgbiQ-vow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.051|201.0|0.75|15.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|5v0oMZwg35gyQR6S5omepWBJZBJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.0|0.769|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|5v182QmhkqMqqB_V0L5odsnBDsKS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.789|178.0|0.621|8.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE10|5v4d9U9CRoSdgL7bFXyIOq9xAvhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.068|215.3|0.742|17.04|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|5vBKV8ZTOf0VLuQprsIxgcnbaX9H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|||15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra16355f|5vFN1_Dtu3rYhTM8fUsN4wcAkn4t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.98|221.3|0.71|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']|['PEDOT:PSS']|['NDI-BTH2']|bulk|https://doi.org/10.1021/acsami.9b13894|5vGsAeQunq3TnU9m09klAaKDH5Lq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br63C92Cs8H483I237N161Pb100|Cs8Pb100C92N161H483I237Br63|Cs0.08FA0.69MA0.23PbBr0.63I2.37||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.018|5vW03L01B10naNZoaQeSG4IojHcM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.08FA0.69MA0.23PbBr0.63I2.37. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|206.9|0.56|10.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.102|5vXo8HfVUB8IRjrMPdrjOKLHSKfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.605|162.10000000000002|0.66|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9RA05357C|5vlEnWEhjzyyzuMlM-b5cXiBbGQG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C21H122I60N20Pb20|Pb20C21N20H122I60|(DMA)0.05MA0.95PbI3|1.5500001652782691|1.1|210.9|0.76|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17068|5vnF4CpuU3aUogHPAZM8H5tMoDRH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|160.0|0.69|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']|['S197']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201400980|5wE4JBjZqU25Qp_OYamHcU_mVgev|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|227.8|0.722|17.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc03259b|5wNmvMWodXIxrJCjHpMZ1EDvhQCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.778|17.7|['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01987k|5wWKnWZ2zj7-Q-2wVDssSMoBpxUm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2018.01.018|5wZob992UAQBuKBHG62lgTtc2ifv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|163.0|0.6|10.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|5wcZo0e7sdxJ17om3NgAHka4clsh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6080001714628755|1.03|207.0|0.65|13.8|['SLG', 'ITO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1039/c7ta00183e|5wi8EfWwElyGlHRY1czuit1o2Fyt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|214.0|0.8|19.2|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|5wuduMuN_qM4lIw3E7Vt4WoqjFMx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br120C95Cs5H491I260N174Pb100|Cs5Pb100C95N174H491I260Br120|Cs0.05FA0.79MA0.16PbBr1.2I2.6|1.710000182339252|1.2|197.0|0.775|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA-tran3', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700607|5x91egrax-vcGVhbI14GpLrwa2up|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I2.6. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.023|9.3|0.64|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Aniline', 'Spiro-MeOTAD', 'Au']|['Aniline', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603062|5xFMergSUZ6w6cj3pEYploVS_8Fu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Aniline', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI|2.1900002335222|1.051|30.1|0.64|2.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|5xKrePU5THFjXxfpB7A_OhBHOEBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.5|0.752|15.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1088/1361-6463/ab070d|5xUSm6TU644RNVevQWh7w3yKAA6o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H104I51N36Pb20|Pb20C20N36H104I51Br9|FA0.8MA0.2PbBr0.45I2.55||1.11|222.0|0.79|19.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']|['NiO-c']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.9b16919|5xVfPAgIAt5owpBak56Zf6LLUGr9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.24|153.3|0.787|14.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201904387|5xk--B-hqmJtEt_Kni1m96JLb39t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|214.1|0.767|17.64|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|5xkIDLxg08IYhq-VmRMErVN-ufW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH97I49N36Pb20|CsPb20C19N36H97I49Br9|Cs0.05FA0.85MA0.1PbBr0.45I2.45|1.5900001695435149|1.14|219.6|0.82|20.24|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'TiO2-np', 'C60; PCBM-60', 'Ag']|['NiO-np']|['TiO2-np', 'C60; PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.8b01507|5xy1WRCC8rypkvoGRo5n727LVhmB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'TiO2-np', 'C60; PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|235.74|0.684|15.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|5y8eUiuI6MGS0aPqk36M1RXQaqFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.821|132.03|0.5760000000000001|6.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2ZnSn4-np', 'Au']|['Cu2ZnSn4-np']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01001-z|5yJetyBFBNwJVqV8fmoaSKp-JqSe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2ZnSn4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|211.05|0.7909999999999999|17.87|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|5yTOlwpiRmioZuqtQLGLDPsw2QkZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.91|191.85|0.541|9.45|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||5yWbQ-D-WunxM5t5BMBMAJeIPv7Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||7.25|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|5yYdJZs-YEgjR9YyDQHz_iQnmoRp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.071|223.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|5yd1G4KS0P2EZ7bSkVSGDpq-mSOs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br45C94Cs5H485I255N173Pb100|Cs5Pb100C94N173H485I255Br45|Cs0.05FA0.79MA0.15PbBr0.45I2.55||1.13|227.0|0.76|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.aav2012|5yf1b82Dum_dwIqZuOJJcWoYMsL_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.45I2.55. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.04|184.0|0.72|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.02.052|5ygcz1dIikHNpOoZtWlFhcu-4AtC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.429|123.8|0.308|1.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|5ygju4IKt5XdLyw2kF9QDgOUZ_kO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|98.2|0.44|3.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|5ypOPvFlkIagIB7nxYz8U8jdRBFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|187.5|0.69|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|5yy-5IW41Z7PePor2hj8-v74fTVY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|194.2|0.765|16.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|5z6LJN_hP-Q_ZWr2pHdYr5d7ONKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|175.0|0.67|10.82|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|5z6hVbyV02KrqzBccA0jm0SSNd2c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.002|0.06|0.28|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|5zCyyFSzJYqAbTMQ-I2kz1sIRDsf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.7|0.637|12.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04444a|5zN2DSV1fjrVfQEJtlq-ZDV5tazp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|112.6|0.701|6.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp06418k|5zjue-oSMc0WYKXL6RVYsf8NdzT6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.3|0.72|15.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.112|5zktMej6Rk4szXyIR-sKRK4ktq5T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6300001738087604|0.988|148.0|0.754|11.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'AZO', 'ITO']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'AZO']|2D|https://doi.org/10.1002/solr.201900083|5zlby4QI-xaJghUKNY8R184ULPUg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'AZO', 'ITO']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|99.8|0.605|4.97|['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1063/1.4926363|6-4EJUeaATEYOez0OGTqF88vUfE-|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.36|30.0|0.42|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|6-84Mx-Ehj_p9ZZEpWd89pwNJrhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.0|0.71|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01617|6-e6Zqoup0jxc82E8Gqew7EYZlj4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.487|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|6-geeAvdvxZubP4X3lOjWHK6UaDg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|100.0|0.31|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|6-oKZizY5xlppsehgIkHTFQlI-ti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|28.1|0.75|14.88|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b02362|6-yOaIdgaQjO1cM9nXUlvoCK_ggA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.92|101.9|0.54|5.06|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|6-ztfDVg9U8sLZIozSBsAf0kLz3D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|153.0|0.6809999999999999|10.4|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b11141|6020xZSVRxCUgeYgAiVGJBKh3R-2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb100|Cs5Pb100C95N174H491I300|Cs0.05FA0.79MA0.16PbI3|1.5500001652782691||||17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b01857|608tkYB1NaswO72FPvm2t6XGyQGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.082|228.8|0.735|18.0|['SLG', 'AZO', 'Ba(OH)2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ba(OH)2']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227091|60F0bYMTGO-t_xF9xCY4oYsnV1Qw|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ba(OH)2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.03.005|60IgAfTX7vXO39lY6O4eQOdrOt4f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|194.9|0.75|15.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|60NY-_gpbtRZsdCX22SmOwAZWzsz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|155.0|0.75|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acsami.6b02169|60SuhvDUnWJoHGl7jyN9sRd3l3TX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.455|52.89|0.614|4.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|60Yx4FYZd-Hczrx2HfYM-hK0JzKw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.141|207.4|0.785|18.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc09002a|60cTCmC5NV6tYiZgTiSoUwXkG6Pw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.6|0.72|14.63|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|616bA1JL3OG1Rd1KFi40ZKYLH7BT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.39999999999998|0.7390000000000001|11.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|61GiMdaQ9MAyaX94ITygaSTemoWm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.2|0.779|16.71|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|61HieBDCNAUytzRG4BhKn9vNDGZx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|216.2|0.8|18.19|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|61MB8QlG2saooIerQRF59Llyl70d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.0|0.68|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/cssc.201400081|61Us3CL58EOtZ3u0qX1w_pZqaKLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.052|216.48|0.695|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b10062|61WnbEl4Es5hN9w--b7G0BUGVvPO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NPb|PbCNH6Cl3|MAPb1.0Cl3|2.800000298567196|0.56|122.6|0.392|2.68|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.mssp.2017.04.022|61ZTbSUZFr-jWTQkCxqaQIbtMRuN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPb1.0Cl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.4|0.73|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|61bwkRXSCPTtS7DEqqYaPNhkeBUY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb2Sn3|Pb2Sn3C5N5H30I15|MAPb0.4Sn0.6I3||0.58|279.1|0.526|8.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|61ouwinnnm7tDvH0tCdjNo7RH3t4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|174.7|0.713|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b08038|61q2XSVMPlTDyeNiPK1K7t0IOut9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|173.0|0.57|9.1|['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|61uYEGk9fyUvfCfeSm8EMOT9z4ZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.016|201.0|0.7|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|6216KE0bO3-y-0gP9TTr2yfWCTZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|219.0|0.4629999999999999|8.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.01.035|627fhvY8J2RQRONh3ZjkP6_Pas4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.93|212.7|0.728|14.43|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|62DpbmMInQI9CCFxwitR4AjxPjB2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|176.20000000000002|0.684|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|62GVDfBVAm1IaQmm8ZIUHsynl4yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.825|30.0|0.26|0.64|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|62PmLDZeSU7YyvtdrfiAq7XN7Hpp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|216.7|0.6609999999999999|14.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aab795|62_C9pEECG5yLWwTAL96J_ybv77s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|233.0|0.78|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|62_xBF4GFadQLSGCSzBY5Q0lTx0W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|147.10000000000002|0.59|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|62vwn4RYe9Y1eco7cEK45Ptauo-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.046|218.2|0.81|18.44|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|638Fm_3jQnJMbCW3yy6HYT4iqWf6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|170.0|0.6|7.24|['SLG', 'ITO', 'CuSCN-nw', 'Perovskite', 'C60', 'Bphen', 'Ag']|['CuSCN-nw']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr01135k|63E4M7plcfrU-2NrDIR9KndbGgT6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN-nw', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.1|0.79|18.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.03.004|63GVZ286Hm8WNH8Ji2H0_U6O41mC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.77|16.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-019-00842-y|63S_wf3HqmIFB9-pRzEsV-4k4uxM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|148.1|0.711|10.8|['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2014.12.022|63TMedQ98QdCRVsnX3vYxtImji-4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.57|10.7|0.69|0.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|63VgRUXxpvgOHOAOKmMmUHXGsiU1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|221.0|0.746|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|63YajGMDU4e_qbYoDEUbYoFohm5r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|214.6|0.684|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP-Th)3-EH', 'Au']|['BTT(DPP-Th)3-EH']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.034|63a2d_2fq_ZQhREccNS__8aaabYK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP-Th)3-EH', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|197.9|0.65|12.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|63c6-uIxlpxYQbVIIohQ10xFNCYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|198.0|0.72|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.05.027|63cGEFi4lz0fjsXApAgbzAVPvKFd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|235.0|0.74|19.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|63dsFey0TUP9nR-6waYX-mQGh35P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.1|0.68|16.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra01894g|63eDpYg5PHZOKDK7MzkP_9Mb8zGU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|63iwEPWnHJhc3Q-ciYmFSG2LwnCm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.5|0.804|19.01|['SLG', 'ITO', 'OCNR; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['OCNR; PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9nr01836k|63jpjJHx0IrnEhbQunTOeuI-i4ur|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'OCNR; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|144.9|0.662|10.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|63logSf29r3QvTZJhgDggKnffhhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|171.1|0.66|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01009-5|63sJ4jHkajlXQqBVB24hi6QlTl93|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.16|237.0|0.74|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@SiO2-np']|bulk|https://doi.org/10.1002/adfm.201606545|645ydBfLOdRLPB4bkzdA-C8lLji9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|213.0|0.657|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/ab938c|649UfBLzqWQH1ZRrrMidepThw-MB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.8|0.73|15.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b06819|64OBgE-tuIQ8yPYasHrq0D1oJ4IU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.6500001759413832|0.81|121.3|0.57|5.62|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|64RMeILMiyavxl43bNACsNT_ZrWN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|64cbTzsUSW8YXqswblhtAeOTh-l8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.1|0.7659999999999999|16.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']|['PTAA']|['PCBM-60', 'm-PYBrZnPor']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|64fHZ9-ldJzDec45rqm7xL4AOfzP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.13|218.4|0.7909999999999999|19.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|64fecDN71vObC6zzouXLOzJx41L8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.75|221.5|0.27|4.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aelm.201700655|64g_vbvi6zoj5DhFf9jxXOv3oH0r|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||1.06|247.4|0.73|19.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']|['DCZ-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|64iFJuZ-XamNbHfwVJkn6hmYlMd7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.7|0.78|16.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsnano.7b06413|6533c3dvABavSuWibQ_5cRteLTEm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|180.0|0.44|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|6553cUiUeUVhi6_KfonOd2DmDB4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|212.5|0.7929999999999999|16.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|657jTQWISwBSBXTFcIeunPPrJrb_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.03|92.6|0.6609999999999999|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|65BbiG1VJq1Rb7me0ZTdqfzp4PHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.134|211.2|0.65|15.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|65NwpyC612yeY9aXjzGdk9IL5jA3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsIPb|CsPbIBr|CsPbBrI|1.7500001866044976|1.18|185.3|0.7829999999999999|17.08|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1002/adma.201905143|65PSLcNYc5-323ntgSGma3uwUgzc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6450001754082275|1.03|14.1|0.4529999999999999|0.66|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|65TTk-GmQKVhavxqQdfa-RSrlg2C|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|196.57|0.596|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|65VS8T5oiNZKCUvHi8-ZFyvmFYwR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|199.3|0.7|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|65WeV36PL-SxuA8gb_yTrdRpsoL4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||0.696|41.900000000000006|0.379|1.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NBA-SAM']|bulk|https://doi.org/10.1021/acsami.9b18034|65cIp9twBO2Tckox0VZzbtyu2IXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.89|145.0|0.55|7.2|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|65dtyFXQAtZWYtr1bzDYMXCyaoQD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.8|0.75|16.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|65hN9CtT1b8hZD_XSNtm3ACnQQAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs20I60Pb19|Cs20Pb19I60|CsPb0.95I3|1.7500001866044976|0.938|173.0|0.78|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|65p1zhtuKgvRxzwNVoNIqgJsjhwh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.95I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.63|49.900000000000006|0.33|0.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5127275|65uNHzUYqsv2U-PcqWSZIqAJVGBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.43|0.61|0.395|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.11.050|65uc_2jLJY-_8u9NGxPIcIyhP08X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.949|106.4|0.28|2.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|662NX-2o1SCmw_5gqSxoSsNN0HAK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|94.6|0.61|4.96|['Ti-wire', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au-np']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00462a|66B5r1unGiIX0mdSJwhO_DSuOWBp|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au-np']? The composition of the perovskite layer is MAPbI3. -Br9C2Cs8H10I21N4Pb10|Cs8Pb10C2N4H10I21Br9|Cs0.8FA0.2PbBr0.9I2.1|1.7300001844718749|1.14|178.79999999999998|0.786|16.1||['C60', 'BCP']|['ITO', 'PTAA']|not processed|https://doi.org/10.1515/nanoph-2020-0634|66UjgUFMVi6XpVu_jvJ18QoVdBmZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.8FA0.2PbBr0.9I2.1. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5|88.0|0.65|2.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aae2ab|66tXFod6lsnmvdNxr9DQJPza0fqT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.8|0.754|15.06|['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|67-jl-kVf4vWDMtLGd80_nHRkQCS|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|183.3|0.32|5.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05032|672xJjYrPGs8AP3wAxKpRNW31T2W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.413|90.9|0.451|1.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|672zf6jWsv8b2-PDYd_iJKx1_S4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|216.6|0.675|15.48|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad685|67E80qRA3pFZdZhgER5Z79BadPKn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7150001828724075|1.085|188.8|0.727|14.9|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.001|67NcwRcJ2s8JwuhNOD9MNuIjvTR_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|191.5|0.5489999999999999|10.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|67Nt3ZRUse5RSxLoCFGR26CBP4-I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.6|0.69|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602017|67O6kWaqPhyadhgAd6_1eUrsJUZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|192.7|0.732|14.44|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|67lclpi1Du4LaB36nRGcRU85wpGf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|222.1|0.63|12.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt; P3HT', 'Au']|['Carbon-nt; P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12200-016-0566-7|67oFFaJXv953GEBSW0-AxL3kzyRt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|220.4|0.7290000000000001|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|67xrlLthzwzmXu8628xt6M-agsNQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|171.0|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05667|682KARuSH_NbhX6AqShTed3ObL57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.640000174875072|0.77|160.39999999999998|0.42|5.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.9b02524|683Bba-L8wAeOVhhuouUreSh_0Ig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|209.0|0.5870000000000001|11.9|['PEN', 'ITO', 'ZnO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', 'PEIE']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226956|685RnBhrHspgvMGmLDk9szxgwJLx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.3FA0.7PbI3|1.4900001588804008|0.966|115.0|0.57|6.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.161194|68FZRCQEeDO1IUYd1z1kIO-CRlox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.915|175.7|0.391|6.28|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05955a|68IMIy4cOAL8fDBbs2SmvxCNJHxy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|227.0|0.654|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.153730|68OpqlJU6JiyEilGtK-hQbcd5rEV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.0|0.627|11.77|['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|68b5I8Zw_bcu1p39IEmF1g4qSnu_|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.0|0.47|9.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|68c0BVxThgC5nXC85_woutw9vN9V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.22|24.2|0.65|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706073|68k4qVnC76CLXl6ggDuD4fYhFbII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.888|123.8|0.63|7.04|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA', 'Ag']|['P3TAA']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|68zqZfgclmPBRRuBSc1z_Ws1FOno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|181.0|0.68|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b00793|690KBW7MGxSVsem5d1NsMkHaQbBf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.17|121.0|0.7040000000000001|9.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|694WsY2MfrwiO6IW-2s-az7olzjC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.6|0.42|6.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.010|6980fvveSlOgl4XXR63MJVvoaHTh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7240000000000001|139.0|0.6|6.2|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2016.03.091|69EI7I-Ej_URWcBWwYCOfqTCZ7JX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|219.7|0.56|11.12|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|69FrGKikUasDBWKW-PqKnjtlcHm7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|220.1|0.785|17.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MEH-PPV', 'Spiro-MeOTAD', 'Ag']|['MEH-PPV', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|69GQrGn8zQ6RBLTNxBOpet5WPy_-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MEH-PPV', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.3230000000000002|69.2|0.778|6.33|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.9b23384|69JuAGU-ugjXOnaMwQrTDyrGsIg0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.0|0.73|16.9|['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-macroporous']|bulk|https://doi.org/10.1002/adfm.201804356|69P9f5ZHqEMFEQFxiv-s9LUOdlA7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|164.5|0.67|10.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|69Sfq5RbBTTlBi4Pfeggasq7pq-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C96H493I261N179Pb100|Pb100C96N179H493I261Br39|FA0.83MA0.13PbBr0.39I2.61||1.12|241.0|0.789|21.3|['SLG', 'ITO', 'SnO2-c', 'C9', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C9']|bulk|https://doi.org/10.1039/c8ee02172d|69VeCgh3J0UJYWOxfC-RzhkE6jRp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C9', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|215.0|0.7040000000000001|14.4|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|69YZHDWiTLzrAc5iIa1etumj_4KN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.86|159.3|0.69|9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|69bH9ZGwrFYOQUaNp3xKmpYJo6qq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C95Cs5H494I210N171Pb100|Cs5Pb100C95N171H494I210Br90|Cs0.05FA0.76MA0.19PbBr0.9I2.1|1.7300001844718749|1.13|150.0|0.66|11.2||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|69bkRRxhd5nQ1NTG_TEKvjNGapvy|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|207.0|0.73|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P1', 'Ag']|['PEDOT:PSS']|['P1']|bulk|https://doi.org/10.1021/acsami.7b10365|69vPLQiZ83GKbBQdgnU6j5eg0UB0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|231.2|0.7170000000000001|16.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2018.05.052|69ytYryHGbO7Mj2kH458WzRZBvyJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|53.0|0.52|2.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|6A2Mtv329Y4bZMXi0yQoV_q_Nhk7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.0|88.9|0.621|5.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|6A4lfNMaqCJArZcX7gE_QmgZOASw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.053|221.2|0.741|17.54|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|6ABy7eAOkr2Rp6JqJKkCsyYt65GY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.05|219.2|0.78|17.89|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP8', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-DPP8', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.002|6ACk_Tto1OlSQXnwOWyMZX7tJhJu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP8', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|166.8|0.662|11.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.022|6AICRYJBEeOLx_8jc8itXq59WVt3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.122|233.8|0.78|20.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c8ta01192c|6ASAKP1FWUPkavDoOsfwOu1uplyD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.135|221.0|0.71|18.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03873|6AVU-FY1fCkb_jMQ8XpCfaamUjeu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.169|239.1|0.765|21.23|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|6AgblRfy5OEOk-G0PSoWs2zre0ni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0139999999999999|8.6|0.687|8.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|6AnymKp6SJi8lW6F9NPDLGnEKAbp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|15.2|0.53|0.83|['SLG', 'ITO', 'ZnO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['ZnO', 'MgZnO']|bulk|https://doi.org/10.1016/j.synthmet.2020.116412|6AxkEyGgOZzNy858TstMScqt_4w6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4|||||3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|6AycRcBgvNe-Bdb6flGEFa_gEI67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.0|0.72|13.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201501024|6B-iewtiZ0Iydw6aqoLLFXGOAuQP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.3|0.72|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01360k|6B6BV8_xxEIO-t7Cc_TcBasq8u06|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.13|232.7|0.733|19.31|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|6B8ZF8Rd38RvetX9ADZkK5SJVj7u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|240.7|0.77|17.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|6BFIglLO_w0_lG3Xlw_6qo2xCSMU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|160.0|0.67|10.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.01.114|6BIPgVdSPvj-coxI4rIHBSc-SXe6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|163.9|0.68|8.13|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|6BOgn-o2IQGoNqP7o9HTvGudmeu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|6BX-Bt3uYLfiqaK0iqlqGU5Rjpx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|168.0|0.67|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1021/acsami.5b11494|6BX1KSij9DvESPW-PPKYoYn4BnNk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|218.0|0.784|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']|['AQ310', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|6BcNEGJEq2iv1MQb_fIyzVhUg29e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|217.0|0.81|19.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|6BgA6wVdSH2vYZSRGjLtTcMZ9bvp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.3|0.7|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.03.031|6BhSHx7t-MOfo8jkkfcJrDRG5V41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|202.0|0.731|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|6Bnw-PaUMDyMZzypf-Fd5m7TM6Ou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.16|178.0|0.68|14.0|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.01.015|6Brzjw3LI7vnI5HKc6FgK0amL1dz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.7559999999999999|18.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|6C2hTZDCXjP1bQzJd3ZKVZcMUOqa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|226.0|0.758|18.51|['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NiO-np']|bulk|https://doi.org/10.1016/j.solener.2019.02.011|6CMqpt0_DbDREOvFnDSn13i7pxrE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|199.5|0.61|10.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600320|6CYY3IMUTZk1euXEYoPWuOWWj8N9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.93|226.4|0.57|11.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|6CcWV5tie0DBUB-4YK7A5RcBskzD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|189.3|0.539|6.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201800625|6CnWaaWWN095ZaDlIcgeYePxJ74F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.8|0.644|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c @ {101} facet']|bulk|https://doi.org/10.1021/acsami.6b14040|6Cp0ltPR2H4vbxwzNNtNlIzjpoIt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.056|220.3|0.81|18.94|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|6CyDIiEL8jysG0iHsfwGpjH00bFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H30I15N7Pb5|Pb5C5N7H30I15|GU0.2MA0.8PbI3||1.095|213.1|0.79|18.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|6DDENehBW7FqT6WUIEAn6doRn7f8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.2MA0.8PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.594|77.5|0.81|10.0|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsBiBr3-QDs', 'Carbon']|['CsBiBr3-QDs']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|6DGjr1eE37EFVRGOTPilrS49Bwck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsBiBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|150.2|0.62|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|6DTMYHH8XxNmCOcdbxwjaiaKBiA4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.4|0.779|17.66|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b22044|6DgVewZO-QqmC6g1y7i9PtrWRsdQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|164.7|0.622|10.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|6DgqesUMiJgN_Nu0IkthAZa1dsEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H563I300N137Pb100|Pb100C100N137H563I300|FA0.37MA0.63PbI3||1.01|184.0|0.49|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.061|6DiXXqz0s4vdf-EGC8dcSn-CMtaA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.37MA0.63PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|6DlfjFPJq3_xaKNaj6Nkt91mb7Y2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.3|0.78|14.68|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|6DnwI50pyzvmNFMwMmS6Oem93gLU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.6100001716761378|0.975|201.0|0.7809999999999999|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00187|6Dr9Q4jTqqIVYAcB2y_cH4rq0Uo2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.13|226.1|0.8009999999999999|20.5|['SLG', 'ITO', 'SnO2-c', 'ZnTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'ZnTiO3-mp']|bulk|https://doi.org/10.1002/anie.201911796|6Dt6WVG9HmXmQ8RVf_0BzA8pcVdK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'ZnTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|239.9|0.73|18.3|['SLG', 'ITO', 'TiO2-np', 'C-PCBOD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'C-PCBOD']|bulk|https://doi.org/10.1021/acsami.7b11795|6DzuDlQW-VKz90JdpnEB2RMjT0vO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'C-PCBOD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|6EFzrwHwLbLy9NXD2ju04VBPuCoG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|185.6|0.575|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|6EGbnylte7VjHlkhRYgd-RnqYYvS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br4C17Cs3H87I56N32Pb20|Cs3Pb20C17N32H87I56Br4|Cs0.15FA0.75MA0.1PbBr0.2I2.8||1.1|198.5|0.6940000000000001|15.15|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|6EYZWJBIGO2w6e8hHQer1b32cUyO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.2I2.8. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.091|235.2|0.82|20.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900511|6EfRbzxAEryqGgVv4Gbh4BXSm19E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|189.0|0.75|13.71|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|6EgosCCBJPYm0caievoWONohc87R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.0|0.65|16.0|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|6ElvHncAJAtpMA8fM3LhfCawiQw6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|219.0|0.57|13.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|6EqxXyHI9IJdl2npaRRXC-OmsPDk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.3|0.77|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|6Ew6fA081eeuV3o-jkx51P2O80wg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.8|0.609|14.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.03.036|6F1AMPXWRdtV3AEnOXe64EiheOiR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|187.8|0.75|15.57|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.181|6FAq2tvU66Dgn96Tdd9gu8xybsmw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|232.7|0.65|13.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|6FHX9n4kExtMnmYQB9Sh--uXIv_7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|232.7|0.66|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|6FICFF16cSbG6rRk24HnGzPFrQ3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.101|199.51|0.695|15.27|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||6FIZ9yH8QunA3PqU4QiO2XfzEUoC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|214.0|0.75|17.5|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b10994|6FNgywRMTPqr2LlLnyfVaMwGLMt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.57|11.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5cp03803k|6FTJyo6RMDNIg-mDx7ABoHgXzY_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.0|0.765|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA06718B|6FUEWcKsKlVX_yUxtkKM3CWYxeaH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|191.5|0.66|12.89|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|6FWRmdp9AaR-LaYPx-pHc-DuF-si|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.04|236.0|0.68|16.7|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c']|bulk|https://doi.org/10.1021/acsanm.8b00859|6FXKU2LZuHuQqLEclyPcsjUejMXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|143.6|0.65|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|6FgW-2IuUV4uw3N6baA432io6WkB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.12|211.0|0.674|15.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|6Fj9Y5gFB9IbY2XuRSWgVpVwhSbw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.74|157.3|0.6579999999999999|7.66|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|6FmxcXYgHxmBfP5R958WSwWvY5TC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|164.20000000000002|0.634|10.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226699|6Fsp-Qcs4VHjLQQGENUhqLj_N_xi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|183.0|0.49|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|6G02QsZQFy_sqQblefw4N3RV4AVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|6G2RVPcg01MC6dxRv3GNMr3nrFO4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|217.7|0.76|17.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|6G3CMgRTay5Kx5-v99fALxjPF3lE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.02|190.5|0.75|13.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZnS']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.199|6G8Kv5As-V-NeP-sIBmaUnfjDnDc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|210.7|0.65|13.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|6GB6rp84KfdNZSD2OBXoHt-nT9DR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|207.5|0.7240000000000001|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|6GE-kMuvyu1fCmqDSpy-Z0emuRhl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|222.6|0.76|18.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|6GFGtFZybXqyTjBm14O6NeB99Z_9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.0|0.706|14.19|['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2019.107630|6GWFN8F1DtB48RrorD5cRx2NX9Qd|a perovskite solar cell with the following device stack: ['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|196.0|0.695|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|6Gvnhq8EA0Hb22_0NsMoiEPuuTxG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.11|136.0|0.621|9.39|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|6GzjXWMS6nZyNBjwK0UqCMZYt62p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|192.0|0.73|14.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201700007|6H-EfCQGAOjZeqlXxgAyeELwbdVX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|216.0|0.91|15.64|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5EE02155C|6H02JXCTqgQF6dq43qm3KhdKBMi2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|202.4|0.76|15.78|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|6H3YGGEPpmAFCrCCUGKxsu6wcg7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.62|20.3|0.373|1.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|6H45CsAQQ13TiwcwPWqKFfgZZbTc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|170.79999999999998|0.628|10.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.3390/mi8020055|6H7_J8aJnCGCSfnEnLt7OKECbJFW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.045|228.62|0.631|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab1478|6HJMT6AFS89V560T-o1x6xfqOOVy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs5I15Pb3Sn2|Cs5Pb3Sn2I15|CsPb0.6Sn0.4I3|1.380000147150975|0.735|245.7|0.624|12.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', '(4AMP)I2', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['(4AMP)I2', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-13908-6|6HKSbcLp9OaOyqC6mgXudvzdN_sV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', '(4AMP)I2', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.0|0.76|16.3|['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8tc05372c|6HStoXbVFiHARByKXGK-8Dlj3qfT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|216.0|0.59|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|6HYEMM0a6Q2KB8QGGxl24PPUl_G_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.6|0.78|16.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|6I2KCzJDNboEm0W_NfOD2h2aq_-K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|181.0|0.51|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|6I7frxJ0qn6g_GFegTXsKQbaEBlk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|155.0|0.7|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700476|6I7mMvTnBec03_jqaBS83Vs_DTSV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.26|158.0|0.77|15.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA; PCBM-60', 'Al']|['NiO-c']|['ICBA; PCBM-60']|bulk|https://doi.org/10.1039/c8ee02575d|6I7tCs9JBrr7OY4yFEN3VuCd654F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA; PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|155.6|0.809|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|6IGwxp0baXHphx_uw2CKEYAxqdhx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|223.6|0.77|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|6IJwXxasmu7yCrU4BtqznsGdhCeQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3|1.8000001919360546|1.11|150.7|0.63|10.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/smll.202001772|6IKupLkEgGQFWuraJU1CIQRHl-vh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.08|207.5|0.745|15.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2019.104050|6IPMpxvFb9mQ4Y_1hviURi7Dd758|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.7|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|6IlC48dRhiz2c1C0jdUZPAKaRjIc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.698|136.0|0.47|4.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-nc', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-nc']|bulk|https://doi.org/10.1002/slct.201800771|6IluAPYFH-_SSplptGs-BZCb80S9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nc', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.476|186.0|0.39|3.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|6IrPIa0Wvp4Hec2VT1sovqjSaSGT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|100.4|0.474|4.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|6IwAfbVLaRKNHBtWXGwsHH5YPif5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.6|0.73|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|6IzVtGnDTzn3Z_5aJMNPfsAJQux4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.2|0.79|18.41|['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']|['FBA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|6J308FhwEFwJ29pgyhgF8c90Rvcp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|178.29999999999998|0.513|6.95|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5ra27840f|6JASQ2Ln9wZDMlZAJ7iUBR6x-TzO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|24.4|0.63|1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc09859a|6JGr7v7_727725gWNkEjN9R6IcOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.89|129.60000000000002|0.39|4.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|6JQnLHcsat9BES73uPwlZIlSB1RP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.77|16.5|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|6JeW63ucI8HMiMHIaGkTZexHrRL2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C19H97I54N36Pb20|Pb20C19N36H97I54Br6|FA0.85MA0.10PbBr0.3I2.7||1.14|223.7|0.7759999999999999|19.83|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'LiF', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['LiF', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0219-8|6Jix6ixvFL-mcbGTOniEXGoJz822|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'LiF', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.10PbBr0.3I2.7. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.958|198.0|0.737|14.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|6Js7O3zH9w2z3YXKLBBWH-0t0DcE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.014|220.0|0.647|14.46|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.153730|6JvsHTirgVa8zoVDWCObpOHtMW-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|217.6|0.616|13.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201907442|6K-M9vrdKZdnYaubqMmyK0XnLx_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||124.0||6.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|6K7OKhtbwrr0KN9y2wdzL3gv3c5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|250.0|0.65|16.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201801667|6K8m2KD48WpiOIDYahFi4HX18uPb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.92|110.3|0.76|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601116|6KQJnweKzDYvZxHNwO57RzIrVdxs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|221.0|0.568|11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b01196|6KS1qw4xATcorgmGbzGjp-cj10uq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.4|0.59|15.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta06875a|6KSpLQComnyEmN08vDEXLvQxzy-w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.0|0.72|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|6KYgen0O31tppiWi88RLCM2hTWzk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C10H57I24N13Pb10|Pb10C10N13H57I24Br6|FA0.3MA0.7PbBr0.6I2.4||0.98|210.1|0.8220000000000001|14.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|6Kch2D0TAxoBcX6hxR4miT41n8kW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|196.0|0.55|11.8|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4992783|6Kgyf0eKiAmZISkWWRDV3SZYRYzK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.97|220.0|0.75|16.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|6KpwCn0frRy3HVEdBn-HjDE1FBlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|213.1|0.483|10.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4956436|6L-gip89EUc3BUjSvJvSZgF_aTQ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.68|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn5036476|6L0xxLCSR5XU7Z-P-hpZOTNdwPm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|178.0|0.6|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00122c|6LAC-Kw3v9hv4eUqcKNYYs94jk2p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|6LEXlUOzvVwg7caC-8_57LpJEj6j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|191.1|0.649|10.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MAI']|bulk|https://doi.org/10.1186/s11671-016-1540-4|6LHG25hUim-hRYjRQEkdnNeSo6GR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|114.5|0.49|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|6LLFh0yK6MdkAyUX7ibqfDydw69n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|195.8|0.7390000000000001|15.94|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|6LNI5eDQ4sOQWJ4Odlfc6trJs275|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.6|0.65|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|6LOEL0wIEa5lnKSk8RZXgI9hScHF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|159.0|0.68|10.5|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|6LR02wsnD9gVz9ZzNrqmtKmQlQcm|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4810001579207206|1.11|228.3|0.69|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|6Laz7dinZcy5i5A-5WyPO1oLhlmX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|182.5|0.55|8.14|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.080|6LjNe-_c876D7TqDoRVzsBFNj59c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7||1.086|214.0|0.7|16.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b09515|6LlpzBGlFuEFbJaR2FiJwuYgkwEK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.951|185.0|0.69|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|6LyxhPPNz6rYtvOfNCpUR9CwYZUg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|213.3|0.59|10.02|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|6M-l1BAJAu-dWhbxOzA1qjHLSspO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br27C10H59I3N11Pb10|Pb10C10N11H59I3Br27|FA0.1MA0.9PbBr2.7I0.3|2.140000228190643|0.36|19.3|0.3|0.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|6M8gFVq05N2nMK-EJPO5GEEo24p_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is FA0.1MA0.9PbBr2.7I0.3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.75|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4973892|6MBCfS-g_kQ4mek6TPpeGjVPghCA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|58.9|0.33|0.9|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/jp512101d|6MBuPMlzHKsQGLnRyjdYjsSFLaUj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||7.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|6MCvRjih-7jQqtBCvaX-ZyU5wemk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.01|140.2|0.474|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|6MGptmptlohL4-NnMjs2eC1FkTEO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.015|8.2|0.34|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']|['3,6-cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|6MTetvqx2pfsXfoYGR6eaBk78Z7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.06|235.2|0.73|18.2|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|6MWNi3R20fLEp2N1qLwz-o3VDuTE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.04|235.0|0.664|15.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|6MapnbbgPyJJNU5YT5WZtzaKseyz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.792|155.39999999999998|0.516|7.01|['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Graphene; ZnO-np']|bulk|https://doi.org/10.1039/c7ra02036h|6MdQQ7dL1N5I126c7Sp1pQUZeh-F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.04|210.0|0.79|16.4|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|6N8G8Y60OeG4cyKXeC42MVJkoIhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|188.79|0.657|13.25|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|6NArEVu-gpT-CMQ0nQb15rxtLvSw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|159.1|0.64|8.02|['SLG', 'ITO', 'WS2', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['WS2']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.032|6NEjuJw4nAB272GNlu6WDTQWikGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WS2', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|6NKjObTMgcw_pujj2ruBQP_unQgA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.2|0.5|7.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|6Nd04wpLxEYsMXTfTp3ZLdC0lMRk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|222.9|0.775|16.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|6Nqv5Az-F6PVwlcPvtgt25dnvgMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|235.2|0.7|14.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|6NufPOS1dLZeL1Ox1RIVme27yoJ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.0|0.747|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00438f|6NywdzCquhhTBGC9BKa5oWvt6m7L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.5|0.77|16.6|['SLG', 'ITO', 'TPP-SMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPP-SMeTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/aenm.201700012|6ODvUVrcDNkqhHtPEWTXQbUGH-t5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPP-SMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|62.3|0.455|2.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18667|6OHp4Jlk833rgiUJIywyjlfG41C2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br52C100H517I248N183Pb100|Pb100C100N183H517I248Br52|FA0.83MA0.17PbBr0.52I2.48|1.640000174875072|1.08|184.0|0.66|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|6OM_wDHYW7UNl6r6V2hoeyCHcGuw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|111.8|0.59|5.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2016.12.050|6ORqLPkqM9n5HHYEVOTzkM_wT0Jd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|71.0|0.305|1.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.7567/APEX.11.105501|6OvkOXVLVmnBVAJvU_zi--jr3yoh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|228.75|0.727|15.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601297|6OxLXzDO7AZlbcvQqe3DW0XLDaNh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb110|Cs5Pb110C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.1Br0.51I2.49|1.5900001695435149|1.11|220.0|0.758|18.5|['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'SnO2-c', 'Cu']|['MeO-2PACz']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.202000454|6P0IILhwW0z2eJaQ-ZxCaDONOAVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'SnO2-c', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.1Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|213.0|0.664|15.2|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.7b07754|6P2Id0vTjlyUwBvIifDkEq_pVftA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|193.0|0.555|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|6P9fX63dcDH5u6k14YktMrbRfsJ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|202.4|0.525|8.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dib.2016.02.021|6PCKng4vNgzAMj2GRJKecH36IAZb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.0|0.68|15.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/aelm.201600470|6PX-OhQPj0-7jM3GA5aLoF7SEXNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||0.98|200.1|0.63|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|6PkfqIUgQH7y3uSqrISZnLcNibbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.0|0.61|12.2|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro TAD', 'MoO3', 'Au']|['Spiro-TAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00270|6Pxb2Z47frDNzmKV5MXBHLUdsbnb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro TAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|220.25|0.7120000000000001|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|6Q-DfVa2lKzO5gCv0CU3h94wyU67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.1|0.642|13.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|6Q1N7d50uWukTetcMgZUeLaRRmAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.6729999999999999|183.7|0.471|5.82|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/d0nj01559h|6Q4T0PI6nKb-Vc4XpjpenApM3a1D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.35|63.0|0.424|1.0|['PET', 'ZnO-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Ag', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|6Q76CN7EOWQzie2IsqKXm_i7XBu3|a perovskite solar cell with the following device stack: ['PET', 'ZnO-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.89|220.6|0.762|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Carbon', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900189|6QUG7FSgNdsTL1nfcz2cbMKWBdOX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Carbon', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br13C96H503I289N169Pb100|Pb100C96N169H503I289Br13|FA0.73MA0.23PbBr0.13I2.89||1.06|212.0|0.62|13.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|6QWeYVdf_bkyHyaBRR73Ib84Kf0D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.73MA0.23PbBr0.13I2.89. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.55|168.0|0.67|6.2|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|6QX7tarHCvG2NqJDpNzFS-dPMSyo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|73.0|0.476|2.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.5b04695|6QamlPH-nVNn7Y63BUT0vEoIqr52|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|220.1|0.71|13.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201904684|6QjI1zq4ksz8EE8TN_r4fI1Xppgv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||6.17|['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']|['PTAA', 'PEDOT:PSS']|['TiO2-c', 'Ps']|bulk|https://doi.org/10.1039/c6ta05497h|6QnnBUPjqtDxJElXXGukzvF5TEpq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is MAPb1.0I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.28|88.0|0.649|7.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|6QqfBv_IapvSpgNLniEAszzPe-P1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.04|223.5|0.69|16.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b15166|6R3o61vBEHt1PIrLzFwxUgTsarUT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5100001610130236|1.12|225.0|0.74|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.037|6RCx64sADlYdLBt25FQDar2A63To|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|74.80000000000001|0.69|4.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4nr02065k|6RFaQqAhDD960DtN0K0oogotg7CP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|194.0|0.649|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|6RoD2eam3Z71u3ghTX62lEmaIxvX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb12Sn8|Pb12Sn8C20N37H103I51Br9|FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55||0.87|264.5|0.7909999999999999|18.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|6RrBK3B1Q3XQZpY1-WZgz2mEU9i0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55. -C95Cs5H491I300N174Pb100|Cs5Pb100C95N174H491I300|Cs0.05FA0.79MA0.16PbI3|1.5400001642119578|0.99|242.0|0.73|17.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|6RuzRZXp8qJ36t0IM4Dll2-1SN4o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|6SBNhE8BpVfeF80cR3zlUvmZp24H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.240000238853757|1.38|69.7|0.767|7.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|6SFyY0jWPjlKge_3IEtEFFmtOyXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7809999999999999|149.8|0.409|4.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cp03726j|6SUHroMhGvSooaH0fHbngfdPfm3g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|183.0|0.6|10.8|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1002/ente.201900878|6S_xBFcVUn0kfcFil_Udpnw215yU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|113.89|0.3|3.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|6SjZqTLFCDF4Ru26-FWJMs8SnIgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|229.6|0.732|18.89|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'CANP', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD', 'CANP', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b02145|6SsJLzAPKT7o4xeOPhx384L2iRS_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'CANP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.256|28.9|0.551|0.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|6T4Y_gBo5bAvLEp7gHphbhnvvw0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.7|0.71|13.65|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501994|6TE7Jg3nG1SOV_-h43qbiHgV-pHh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.5|0.64|12.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|6TIQxlFoA3g3WwfOHSZNesSUTxxn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|222.0|0.636|13.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.analchem.7b02800|6TKRg8Y8pcm5uxo_ZhmbkKzrMhmE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|141.0|0.672|9.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|6TNWKFKy66ogBz9tqwNTZpsPDCDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.06|241.2|0.764|19.65|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|6TS6jsPhbK3reIF-sGi5owdjZg_r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|148.9|0.67|9.53|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['MoS2']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.032|6TrFVnLn9x0CsFHmnR90DNS7eucT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|209.45|0.447|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600401|6U0wH_CuUXBPA0cnSjCATKream1m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|136.5|0.325|2.08|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|6UD-t6evuHSerlxho_CFXUU4CYHp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|223.0|0.75|18.0|['SLG', 'ITO', 'SnO2-c', 'C60-5b', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-5b']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|6UEeUN3XUOeHcEC4atGmXJ13hiHP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-5b', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|143.1|0.485|6.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|6UHtyffiV0oal7TnRLnu9sbxXnqX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br10C17Cs3H87I50N32Pb20|Cs3Pb20C17N32H87I50Br10|Cs0.15FA0.75MA0.1PbBr0.5I2.5||1.11|192.1|0.633|13.52|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|6ULzKluBCXFvxaLWj_dDKm2TGG4g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.5I2.5. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.022|10.0|0.75|15.3|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|6UMIqZMCebDZ3IOvR6M9J9b3IBn9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|230.7|0.71|14.47|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|6UQ2eAdfh31a9vbJt0JrwApwU1Hz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|6UVMJUDl8zmPzhp35dOCoTG3CY4p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.0|0.79|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1155/2018/4012850|6Uc6ps4eT6OXi-eyeKJPOC_JG6DO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.67|188.7|0.64|8.1|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|6Ufrb62zutdhVcFOA7G_JjSE04Zx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||0.96|183.3|0.78|13.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|6V04WAI-GemtWQPQmn4I3oWtOZHQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.74|192.6|0.487|6.98|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']|['FDT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7cp03551a|6V1TuShfsJxunTZyJ6pQWohspvlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C33H187I100N44Pb22Sn11|Pb22Sn11C33N44H187I100|FA0.33MA0.66Pb0.66Sn0.33I3|1.3000001386204838|0.7|213.3|0.71|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|6V43r-UnIdq6kqRoATmJAmUVRWho|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.33MA0.66Pb0.66Sn0.33I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.69|0.1099999999999999|0.35|0.0|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|6V57vw5ywlQKNq9nCI1MOCXJSvip|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.520000162079335|1.08|224.6|0.62|15.18|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|6VBLRODHigXyRHXUV6owIhmM5YhL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.76|230.6|0.688|12.09|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|6VCIgSrU7xHuvCXo45jVcllthaTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|171.1|0.6|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4nr05975a|6VCKqVvRVIMN3uoKLfEo7QhXCqPj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.148|218.86|0.737|18.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|6VLln5wVUGbVuFb034lSO1WwppJ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.384|211.2|0.432|3.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|6VNmcAHiPzE-FppHinTukFZFPQkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.7|0.66|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.07.107|6Va02OoWXmyyYFRD2f_UPYXGEARh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.0|0.513|9.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.051|6VymA0o8p82w1LSePgczamWZYZFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|228.1|0.7829999999999999|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|6W0Or47IsyD1YbxYMZisAJqRFzIg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|193.2|0.66|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01136|6W5cZyCeiCW6xyp_2D89UfeRs9YI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.549000165171638|0.97|208.7|0.58|11.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|6W8OUqdF-_1rmIwniZIzN8oL3rYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|189.9|0.45|8.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|6WBDimTMQEAS7aD27oahwFFn__oZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.2|0.7809999999999999|18.12|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201807689|6WGKFsXJ8tX4ZAW8m5qKFmP7zUF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|221.5|0.72|14.95|['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2Ox', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra04414c|6WJGb4kEJPKBUJoejv_YUUu5hDmn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.24|74.2|0.58|5.37|['SLG', 'ITO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1002/adma.201506292|6WVoO1l1qAgKSpF--gYTfjEEkl-G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|173.0|0.7140000000000001|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ6-2', 'Ag']|['POZ6-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.021|6WWnQHd3Pfu7IhlXobiqDe-m2ADK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ6-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.7|0.747|16.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|6W_OfzKJivVRrB0GRb9KlPcr5yTc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|153.8|0.6579999999999999|11.55|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|6Wa3YFcWqomgJbvzjbsEcoNCIqKG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|130.9|0.69|7.78|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|6Wax3iKtznCidrQR1PW3WdtikQIV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|209.0|0.66|14.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|6Wbkkth2_Wg8hzndC7kN_psuriaU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.01|190.7|0.65|13.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8cc02329h|6WfHH7sU0AixkL-IgY0YxBQRBVk7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0590000000000002|199.4|0.75|15.92|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PS', 'Spiro-MeOTAD', 'Au']|['PS', 'Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|6Wg-ykuG_vrwkCj_2RLqXIKcvIEY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.4|0.715|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00119g|6WjCkG6wmiKyHa8zUwonkvA3VDRH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|206.0|0.54|11.75|['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'MgO']|bulk|https://doi.org/10.1002/cssc.201500518|6WpvP3vj1IlPnK3zjTylRs9-5kef|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|186.0|0.696|13.33|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|6WsUWXuYP2h36xWW0cGlL3sdB2Qw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||16.26|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/smll.201900606|6Wuj1O1DMApDRjkc2zNMUF4FksZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|20.9|0.73|14.3|['SLG', 'ITO', 'H1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['H1']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.7b00208|6Wy6aWIgJ63MfnCX2Oy1FPmXIK5O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.4|0.68|15.79|['SLG', 'FTO', 'TiO2-c', '(3-Aminopropyl)trimethoxysilane', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', '(3-Aminopropyl)trimethoxysilane']|bulk|https://doi.org/10.1098/rsos.170980|6X1uUrWxlQtLw8XP9nM5A2WT_4jn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '(3-Aminopropyl)trimethoxysilane', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.0|0.72|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|6X3jYzJsooqrhrMsMNebPlzLofHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8||0.94|177.2|0.622|10.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|6X6-G40yVOD3ruWo4myuCuz_bwlq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.268|127.3|0.3939999999999999|1.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.10.088|6X7EhiAWvZOUbMn8bsAUonbbuZ_s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|198.5|0.736|12.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|6XIncYGjPEy4POLyVF3lE2_SQ836|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|174.0|0.74|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz501392m|6XIy69IPuq2FCOaFjIPbbYl1gdH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|31.8|0.685|15.4|['SLG', 'FTO', 'SrTiO3', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|6XWVjwWP-p0xikzExw68TlIlcyUk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C20CuH120I58N20Pb16Sn3|CuPb16Sn3C20N20H120I58Br2|MACu0.05Pb0.8Sn0.15Br0.1I2.9|1.3900001482172863|1.03|229.9|0.7|16.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201800258|6XcbCfq_ah1WviblfKRJ1Khi5yrl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MACu0.05Pb0.8Sn0.15Br0.1I2.9. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.0|198.2|0.45|9.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2018.14385|6Xet-nSj0Klr0ZHLsw9h7ra6uZMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|6XiSGPzXus0LK5ZyW_pEeeS5k5dn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|202.0|0.6|12.0|['SLG', 'SnO2', 'SiO2', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801773|6XtYeL1VzyaO7xBpEzqUE4GDFo12|a perovskite solar cell with the following device stack: ['SLG', 'SnO2', 'SiO2', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.68|129.2|0.501|3.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b01576|6XtlCDfHyDqp_V0SW9WswzhChe1L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.4|0.72|18.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|6Xutd6d8MZG4zw5plLY1Ybs6FI35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.13|226.0|0.73|18.7|['SLG', 'FTO', 'TiO2-c', 'C60-BCT-Au-NP', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'C60-BCT-Au-NP']|bulk|https://doi.org/10.1002/admi.202001144|6XwljujxhXBJ7gkjqOmdSrDPNVvn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-BCT-Au-NP', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.520000162079335|0.98|202.2|0.57|11.42|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|6XwtkaVirhp768t-jkSrv4HmB_K2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|229.0|0.782|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|6XzfEdzhsVTd929tZRMY0F-TlrQL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.0|0.75|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110288|6YBhRpUMh0_kYmytENKk39gV5cgf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br20C18Cs2H93I40N33Pb20|Cs2Pb20C18N33H93I40Br20|Cs0.1FA0.75MA0.15PbBrI2|||||12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|6YFZOdr9iUhd-4_Ou7o68LKbiFXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.1|0.73|16.63|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|6YL19OwkBZMdE8kPHFfjzrnjMnjZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|199.6|0.73|13.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.057|6YY8OP2RckFrvyRhGAxZE3vc8TO5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.7|0.737|15.14|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7qi00667e|6YjFa9Rg_67aw1Vlw6AcMyu8wTPQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|190.3|0.7|14.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M102', 'Ag']|['M102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|6Yxt9Y4VEolrZPIF1XVmC2TLugCV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M102', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.2|0.67|14.78|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|6Z3FNjrH7_B-7Uot_EissGkB619t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.7|0.66|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|6Z3aq-6wMDQ9Xt3JKv0OAUxP-EOd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.8|0.78|15.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|6ZFcVLhGePt9FeOWnZEmHE8YBiU3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.4|0.698|15.43|['SLG', 'Graphene; TFSA', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']|['Graphene-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.9b02336|6ZG9yp8GDW-MdIUphTZe44Z8BmPr|a perovskite solar cell with the following device stack: ['SLG', 'Graphene; TFSA', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.1|235.3|0.7|18.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|6ZHU4n-KmOjLIU8tKgjOfGFNJ7el|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.86|184.0|0.72|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201602519|6ZL81_zb5xvHuxumKJ3uqTTeiKY-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.31|171.70000000000002|0.46|2.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|6ZMujVSTmTzEDhiGi229JNK1VsbF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|205.0|0.665|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']|['PEDOT:PSS']|['pSNT']|bulk|https://doi.org/10.1002/smll.201803339|6ZS6wSCY7QbUCXmxdN_ID6eeViRt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|225.0|0.77|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703659|6ZTQx-TvJdMUVY7kX8S_xtSJxXJu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|107.2|0.35|3.23|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|6ZZaCzml0C6fNMIguUGovCi__5G4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|209.3|0.79|18.41|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|6Zw_eWgucZ_4L6hTnsiBA6hXW6-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.0|0.7|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.013|6_0BIEcV0y4IM4UjNn56H7UBMLJe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.09|153.0|0.742|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|6_9-v8iLz2E9L24V9V_gv6C0dPH9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.0|0.711|15.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr05504a|6_9ytNGkUndgF_TItka-BlMosroD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.4|0.71|14.3|['PEN', 'ITO', 'Ti(OiPr)4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti(OiPr)4']|bulk|https://doi.org/10.1021/acs.jpclett.7b01466|6_FUtvCazwiOSUHjIv-V-QkrAez_|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Ti(OiPr)4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.131|212.0|0.76|18.1|['SLG', 'ITO', 'Ni', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['Ni', 'NiMgO', 'PVP']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|6_Ko_An6yRlvpLOltoQrc3AjnfUu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.04|155.6|0.53|8.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cc05444d|6_M6WVq62sg_puvGhJUEFTO9cxre|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br60C85Cs15H439I240N156Pb100|Cs15Pb100C85N156H439I240Br60|Cs0.15FA0.71MA0.14PbBr0.6I2.4||1.15|209.0|0.804|19.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|6_Mbwrx4BHeRQtEDVj8MH6-UuIjV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.989|223.0|0.62|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b00787|6_QvAByyzijKVe1cDa7z8rsPzDaK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.09|231.1|0.8|19.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604758|6_dIl4vBH4kUMl4JhxUI_7x0l7jb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|210.4|0.76|17.25|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|6_idYS0VXXjODIimvyezlZ39YrLM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.99|225.5|0.718|15.96|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.8b05610|6_il1OsuHA40RZe3uPl4UaZuh0gD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|190.9|0.72|14.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|6_o_qeFI-iW6TeCteHNtiAlb9MCB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|80.8|0.62|4.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|6_tr3BynRdH-Y7uDRkfsP8U4GtMz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|223.0|0.7190000000000001|17.87|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|6_yXPDGknvkMcW75PD8jL_6jCdHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|153.4|0.306|3.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta05053k|6a6AeeI1_yIrWUFLQn0wetKN1CsU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|155.6|0.57|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3cc49458f|6a7H7XjvR-VlYRV2xoZql0NIsv7A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|132.5|0.82|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03413|6aAZhn9q3_8Mtgyosj3IVevnLct0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|213.0|0.54|9.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1088/2053-1591/aaaa88|6aP59Avb1STorgyIbPziafp_TnOl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|233.8|0.545|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|6aS4xzxjeVszlXcP18K78xIsoTRS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.036|214.2|0.69|16.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|6aa5NTrfPpltZU-xH6LMuBpyt0hc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|184.0|0.66|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|6acfQWF1sXN8DjlWkmJ6XWyQFVX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.0|0.7|13.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b02035|6b1ky8t06FbcRDg3nFdOghwMWTGM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|116.0|0.56|4.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|6b47r6uexJ7H81cLQ7oIySXjSq9s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|197.7|0.703|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|6b5pZ-YNgKXUr--y14rx-lD5itjz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.22|154.0|0.805|14.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000001|6bCfOh5SJrL5p7Z__yDScy8QjR4A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6300001738087604|0.021|9.24|0.6890000000000001|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|6bE0HAeOfLUdcbbawn08IKN13kKA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||185.1||10.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|6bPVzWOcQg1TGgWh_E2w5F47ZiDS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|27.8|0.361|0.93|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'PbI2']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|6bR6FttqNWPlUSaX6tw59MGI2NRK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|184.2|0.65|10.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974942|6bitsR-4mOgIOB1Puy5-oceJR7HO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.0|0.7|13.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|6bkIq-cSuJQslX41AqCCDSPUIpwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.4|0.6679999999999999|15.6|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|6boHSPSbfUOjRR9HCFiO-kw9WTCT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.537|72.69999999999999|0.7609999999999999|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01151j|6btDXJfrB7Y0-3VtFTo1Nmz2unOo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.073|34.300000000000004|0.735|2.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|6bvfoxcaQSXGUaRpJ3CRuu_3_x7H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|132.0|0.67|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02868|6c9Uy5r_p67YUItGkulPoqJwuwIN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.64|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|6cHnSYMedAqyUvJM-LWk_fAxik1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.821|145.32|0.774|9.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||6cL9i25HJEkoqtaJ95J3-HWEzf2r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|133.6|0.72|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|6cPJfKpqmWIo_KulnY_qhU-WNaaO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.88|133.0|0.75|8.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|6cSRMFAQyS7SIdBmOH_JIeF6ht6I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3600001450183523|0.36|156.0|0.52|3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.201808385|6cUvtPqz4KkBgsSKvjLKp4tR7prW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -C45Cs5H243I150N72Pb50|Cs5Pb50C45N72H243I150|Cs0.1FA0.54MA0.36PbI3|1.5100001610130236|1.082|233.0|0.8|19.4|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b01054|6cZQGbjCmFCDmx5DAnuG1Yo5bV6N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.54MA0.36PbI3. -Br45C94Cs5H485I255N173Pb100|Cs5Pb100C94N173H485I255Br45|Cs0.05FA0.79MA0.15PbBr0.45I2.55||0.97|205.0|0.72|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetracene', 'Au']|['Tetracene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.aav2012|6c_jdBRmn8dG4EyYHAOF9Y3yOk9o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetracene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.74|0.69|14.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|6cfIk9wPVlX2FImVXC_GXL5gxRB-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|76.0|0.44|3.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201500477|6ctZW-4G_NNhkCacHRHQM3k3j-aj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.94|198.5|0.6679999999999999|12.47|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|6cus0PJM9ufEBTeDR_kOIANEoCyX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|155.0|0.45|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00490|6d4qmw7u39JXS-Pwdm79eWOaMcux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.23|153.7|0.784|14.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201904387|6d8-PYJ8Zr-w4vBz_iUWTkyd9jGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.102|229.9|0.723|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|6dRn7x5Pr1fDP1iiyTBadQV2Kd7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|219.0|0.67|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.07.107|6dVi1lKKtirLfjAGtnwowvxfqQee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|209.2|0.752|16.91|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|6dXgTF03x0coi120SRM_lSUN3Vrl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.831|159.0|0.57|7.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11696-017-0373-7|6dgz8R7oR7BcPjmOs34vx-NIA4yF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.4|0.703|13.52|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Er-np']|bulk|https://doi.org/10.1002/anie.201600702|6dowoBa6x0xTesRQyPoHlAAo-4-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|0.964|220.3|0.75|15.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|6e7xcfjUVru5HAh-Z9sWvYTgHg00|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|94.5|0.68|5.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|6eEPzxvp8XE_yfW---x9I82Z-sZi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10EuH60I30N10Pb9|EuPb9C10N10H60I30|MAEu0.1Pb0.9I3||1.0|209.0|0.733|15.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|6eKbGfGc8OEg3ht7j8_CZZF81aur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAEu0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|105.0|0.618|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.027|6eMv8pqwRJfeR6pzAeSxv5WaqfnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|168.6|0.64|11.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|6eR3UwkRXNBiXRLMoQyC3hnHf3nA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|205.0|0.72|13.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07515g|6eTc8v50dxTHxVOChXvCFQHfAvCo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.08|204.4|0.74|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.034|6ebsN7RIkHWOFOn1f7LPTMJm8mBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.8|0.6970000000000001|15.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC']|bulk|https://doi.org/10.1039/c5ta01277e|6ed-UEJ4j8BKcoNHQJ_hSYTgRjvh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.13|234.5|0.792|21.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201905143|6efX0mM7eQq2oh8ytyacnR2Dil_R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.1|185.0|0.565|11.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'ITO', 'PEN']|['PTAA', 'NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201907481|6efrgV_Y4KlxxzDy0180a8kOb6Ot|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'ITO', 'PEN']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.88|209.4|0.779|14.35|['SLG', 'ITO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Al']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06403|6eukskNV0dR_lH3p-maTQZE_QM0W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||0.91|191.0|0.563|9.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1364/PRJ.393647|6ev8g0-Kz-pWNPn0LD1vmij2yo-8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|252.5|0.745|20.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800568|6ewfyuw3TDobnMuT59hHfsxYgzIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|198.4|0.775|14.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|6f0hX7Ai6OzFBnztmkvImTy5H9QO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.649|145.2|0.486|4.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/jz401527q|6f7mrZFoe9BRjVevaw-ahEZ5ta5b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.7|0.8009999999999999|19.62|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|6fAeuK3AhkEug2JVg3gMmL2EeJu1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|187.1|0.321|4.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|6fDTZpJ2qxm5wVv0LzozZSl68UDQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.028|226.0|0.73|17.0|['PET', 'ITO', 'SnO2-c', 'Al2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-np']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|6fFhkcL2YErlzWW6reUOdyCZaB9-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Al2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|6fLZ-xLhl-VHzMY24x4vPnhFvvIq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.9|0.534|9.45|['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.09.017|6fNHeFs_MYZVV0Aw5Xl0DCc5AKKc|a perovskite solar cell with the following device stack: ['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|201.8|0.633|13.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03276|6ff8QW_HC4AAgHJomqlYRnynLrmi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|223.0|0.79|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|6fjcCvzGHeq2nONVimZuYOl6SmqW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|172.3|0.6809999999999999|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|6fqkaNRDDOuEjc_CITGPBXY1cu3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|159.0|0.61|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep14083|6fsRZ5v6AaittuQA9EWhCs7jkfG9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|160.10000000000002|0.61|10.55|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|6fviy35phxpomUa9AxD9m_Px-FPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75Cs22Pb25Rb3|Cs22Rb3Pb25Br75|Cs0.88Rb0.12PbBr3|2.240000238853757|1.4480000000000002|70.0|0.764|7.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|6gEYR0dmIsoLel7kdRPRkbY-U7Bh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.88Rb0.12PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.41|112.0|0.206|0.94|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4ta06416j|6gFDdjCSb8Bm0m3Kt49wNQoCo_9L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|168.9|0.7|10.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201304022|6gKSgQSGx8Lb17vMSOh9m7FwRtEk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|159.0|0.634|9.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/1.JPE.7.022003|6gKuVzClFeyw-3v6UYp6sUZoWJc-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|236.6|0.7240000000000001|16.75|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.014|6gZcLoZlSKLkWMnAQmO-UCHJMy5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|218.29|0.764|18.24|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|6gjIRestSnSu0nuzD9Iv2lytYH8E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|213.6|0.706|16.58|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06424|6glfMRH0KSL_jzGdZMw3n_Oozcz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|173.5|0.75|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.02.084|6gqCNrvS6eQ8usZWfONzhF8wOqxQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|192.0|0.59|10.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-epoxy', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5TA03802B|6gupGCgJTLMYf7_1Hj-WItFSGTKB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-epoxy', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.898|245.0|0.649|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2020.104984|6gxEV71NAXQkuzlKbtxqxTq8c3U5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|136.5|0.48|6.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|6h0yfwwwgnLCrYCilNq8hpXJCUVz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|166.0|0.76|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|6h2KAzd1UBSa1eK5yx4tWNP-Xx4Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|170.3|0.61|9.58|['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PANI-PAMPSA']|['C60', 'BCP']|bulk|https://doi.org/10.1134/S1063785019090050|6h3mr_1yhVBjc8dyQ0tei1VZVQgD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.15|205.4|0.76|18.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.7b03361|6h4Kma6rmvgUc9aNNpl0qYL-bJhI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.0|192.0|0.69|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03990h|6hB3miDQXgkyakfu83NkLkDu1Dmk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|222.0|0.78|17.9|['SLG', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|6hFV-oj1LQDOBBF9Li65FKE9E5oq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3Cs10I27Pb10|Cs10Pb10I27Br3|CsPbBr0.3I2.7||1.06|155.39999999999998|0.713|11.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05948b|6hb134XUVzf3VAIGhwvSAMU0PSjd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|159.0|0.5820000000000001|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.12.045|6hb1Lty7w18mESCJ-ur2Dy1DqGpx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|206.4|0.65|14.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226914|6hezFRbIN4KM-a-gVtyyu-6R6lZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBB-S-N', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903691|6hgLXwZhHsiryqeNU4nqXxRLIceg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|233.0|0.72|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601062|6hm8W0j0JuNpwDN7RV9pFwfMH5k7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.6|0.772|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b03089|6i4eIXXKodvVVw1Aq1x2SRh2Ltin|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|173.0|0.56|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'n-CuBuPc', 'Au']|['n-CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.07.047|6iGq5E8NpQiI_P3L8CCrdB6W-6v1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'n-CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.644|54.41|0.6990000000000001|2.45|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|6iLtabmFEoXgIdZ_HLAKvGeu4uEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.02|187.0|0.5|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|6iQFdrh7sDdYsbahwIuafpXdUtst|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|174.7|0.72|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02646c|6iQij8GdCgcjpqQSn0etKO4h6Htm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|112.0|0.34|2.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|6iRwFkUptPHGp9fIIpOCdLy2-Wt4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.9|0.743|14.26|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|6iYk8q-4VZ2_Lyp3XxTk2FWSk8m7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|213.0|0.784|17.13|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|6ilY0HkGVI0p3lIzYz0KzJHLqhF8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.9|0.732|17.6|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|6ioi5H24KtO9WBwaRTDtGyWkVMI4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br510C900Cs100H4653I2490N1647Pb1000|Cs100Pb1000C900N1647H4653I2490Br510|Cs0.1FA0.747MA0.153PbBr0.51I2.49||1.11|239.0|0.8|21.44|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/anie.201909291|6iqqHZNnv6xI-cl0tOBexIggo7d-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.747MA0.153PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|81.89999999999999|0.561|3.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|6iuFVz4ZLA_rloGU1vEq1XZUbzdF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -BrCH6INPb|PbCNH6IBr|MAPbBrI|1.5940001699700397|1.11|229.2|0.74|18.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b02473|6iwx3WYlzg99bOBf8SBpEQo57CNZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|222.6|0.748|17.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|6j042gI0n1rzK0r0BPLZ0MyquKrt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|196.6|0.79|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|6jJZscEGx2rYVAlOLpBoLN_wu-XJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.5|0.7340000000000001|18.69|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|6jJt7M2ZLGT9jCxsKeSe4H1FBQJJ|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.9|0.76|17.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|6jYBk0LE5NFYrtFjH3tCiG-8NOxg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|86.4|0.523|4.07|['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']|['TPB(2-TPTZ)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|6jZeWOeNrNLVMlYcvjfWbyk2owiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|225.1|0.84|18.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Lif']|bulk|https://doi.org/10.1016/j.solener.2020.05.028|6jcohXlEE_jZ5yoKr5gsm_bMQiCR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.0|0.799|19.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00741|6jkeYVUbjoKMLYiQ7w1e6hohefHV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|150.1|0.528|7.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-MeOPh', 'Au']|['TPA-MeOPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04179h|6jnO9D_VH_5f3VujADkeqSOtapLl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-MeOPh', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.91|138.0|0.64|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|6ju_RKFUpmUnEQk80hV15eA-o1xc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.07|206.0|0.72|16.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|6jw_tTTbO0jQL6oNNcUp8fYh5S4z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.6|0.777|18.04|['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta00816g|6k1dFeznefqubpUsxDSD1k1t5qb_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.7|0.65|14.24|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.053|6k3rJhVg3b9Me5VZPJCXfHgf_K-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['3-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|6k49QRoPcaqU3kypLCa7g81GJ2pO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.07|193.0|0.6559999999999999|14.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12683|6k4Y26ln1-7CZIpEDBFuUa7rkD0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.1|0.745|17.37|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00042|6k6SjM9a_3Buz5pZupGVUa9zSeaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|1.12|158.1|0.752|13.32|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201900605|6k8Eowb0vp1UI7skohwrbgvciDXv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|186.8|0.569|10.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.206|6kIBUN0p42liSYUZk17pZwqCX02P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.7|0.69|14.45|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|6kPP8nO-KI4y3IGh2FJAt2Hax93p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.1|0.5529999999999999|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00981|6kbj-ilbyz8ttCUdrqX7xVkuhmO0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.129|234.9|0.7859999999999999|20.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|6kfcFMcIWq_0SUfxGbqJJPUnW8Qc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6920000000000001|5.6000000000000005|0.25|0.1|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|6kkMV2_4eLlx8JIOlHC0d1JYsW_R|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|272.5|0.42|10.25|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ra01839e|6kkNyb8r4AeHBRjlJemr8mqrXS5y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|151.0|0.47|2.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr09819c|6kmJHbNKFd5pJJIAHsPrzDLL_b6N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|165.10000000000002|0.693|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']|['DEPT-SC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.05.004|6kvGtKO_C7PUA8EKFF5dQoovgb5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5230001623992282|1.06|235.4|0.7709999999999999|19.25|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|6kzvvjsOFEb-A8SmnOjSq8k_pshJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|6l1Z39DUxxTzWzl8lb4fpDnKWZQQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|207.0|0.63|12.8|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/nn505723h|6l2Z_g3APjRyKCk-tAOE1aJfTg2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|6lBUJcVAjU2-GQfvu2lL5ZV4Lthe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.8|0.7|15.93|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|6lEpNZ9Njskbpw42V1tyUAcsK2po|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.0|0.7879999999999999|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|6lLruDy0Q9vC5g3qADi7OG_vsubH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.7|0.648|11.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|6lNMCnHmvEUYFtfJ6aVeVssCMcG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.6|116.9|0.58|3.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01855|6lPJeZ37bobw4hKMBjhYaVQC5UeI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.023|174.89999999999998|0.73|13.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5099-1|6lclVjmtAQk8jEXw50gShT0UZIry|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|6lcu8RebhcbUx4V451qez7RLtZt1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|1.14|231.2|0.728|19.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b09490|6lfL75XuTQoASg6wAlvEx22P-Ky-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.6|0.68|14.76|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|6ll3l97ecFAe9il0x5xU8tY87FH-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|6lqpCj4PONzjvblholJN9Puh0qMv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.1|0.65|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|6lrQ7TzRwgvfRFZW1GsnfqcknhKE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.0|0.7559999999999999|18.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|6luURYYZ2XoS92QU35REsHNvPbbt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|225.4|0.6459999999999999|18.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|6lztADS5OtIyealtTC0875j4g9pL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.0|0.76|16.6|['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201900221|6mFYU6WDDJqQII3G_nTN9v9bFcI8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|153.6|0.42|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jz5021636|6mKuzFJBIXRsRCcEPXbMT_TEUlLL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.89|266.6|0.473|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|6mNPyHijKYg1SdCuXBNOyJqterUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|138.0|0.39|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|6mU25bt-bs9yHRPylt8k4e797Iir|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|168.0|0.66|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01789|6mUEyVNAVZSG8fhNVU5BMDp7MBQ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|199.7|0.563|10.34|['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Graphene; ZnO-np']|bulk|https://doi.org/10.1039/c7ra02036h|6mUhr6oXu307VKefWxFNQ188W05_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.84|93.15|0.7120000000000001|5.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|6mXHidCDtyFSrqF_H6mdxc1l0kSa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|171.0|0.45|7.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|6mdLcrLbJvzwVgp_KO-1PYrP6WdM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|213.4|0.67|12.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|6n1O2h-klLHCexKYduteIrXkWWpz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.77|12.1|['SLG', 'ITO', '4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|6nIb7jW3z7-oYggi-Fsh4q7ox7Og|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|108.8|0.75|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4999630|6nIv758pQ9hOjV9qTsF_J9q3s7mu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|215.0|0.7|14.51|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|6nRDUVjyfDA0nsP9fY4fOwA9t1YE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.2|0.741|17.97|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc03259b|6nWbxhmi6EcnbHMj9j-w-dqJeRA3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|181.9|0.758|15.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|6n_v6pq78_2i376SvrZ-y6e-79Bl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100C26Cs79H140I200N42Pb100|Cs79Pb100C26N42H140I200Br100|Cs0.79FA0.16MA0.1PbBrI2|1.7300001844718749|0.95|211.0|0.66|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b06816|6ndl8eIEWfY56qnf_2RPgxTmb0Z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.79FA0.16MA0.1PbBrI2. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.112|191.8|0.743|15.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|6ni64xi24FEtCnvOYBVW3ysebh-r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.11|234.8|0.74|18.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07368f|6njY42zuDW3axxSA6GFRgWdhDHHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|65.7|0.489|1.81|['SLG', 'ITO', 'WO3-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|6nki3k4Y2L9o6H-pxv4Diq5-p_5-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.3|0.728|16.7|['SLG', 'FTO', 'TiO2-c', 'KH560', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'KH560']|bulk|https://doi.org/10.1039/c7tc02603j|6nnQI1XePubtfcVtjY53m5U1SQRu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'KH560', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|178.1|0.618|10.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|6noVMFzy8XGuyc-7KUAiMLn4wu-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.06|192.0|0.65|13.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|6o1Z43m1mI5Os7lHiwDEhWtRwdPv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|188.0|0.7|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06362k|6o3AZ9ET4u0tiH3qW7vipjnOfoNN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|210.0|0.76|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|6oMSys2phILiT5d7k1ovT8b85DlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Sn3|Sn3C5N8H27I15|FA0.6MA0.4Sn0.6I3|1.2500001332889268|0.75|275.2|0.7|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201804427|6oTzjY5A8JPsB3R06L8yIRxBes7-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.0|0.616|13.7|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.6b00238|6om5ofk_5B9hyyWbMu0VQgMNklgZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.1|0.696|17.04|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|6ovBrIfj2KNx4Bh0voM-QVh0_pZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|198.0|0.66|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bis-amide-TTF', 'Au']|['Bis-amide-TTF']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.078|6p0konW7fzZMUYre2B0q06PTt3vj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bis-amide-TTF', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|161.4|0.584|8.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.116114|6p2ojTIyvIYU8Kstk82Qq-p7BJ5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.5|0.684|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11361k|6p7C30I3UCuHgRRPOoRkPjBHcrUR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|193.7|0.721|14.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|6p8j7H6HVnfrJdmMmnbR-YCiLxjR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|162.0||12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5cc05879a|6pDEF4qHUXN4k1FgJL9NjassJGMT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.87|197.4|0.45|8.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|6pPpMksmKDhvGXUBCRApHQCeHn28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.0|0.5|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|6pSVATMHQ_0V-XsC2_44gU8tyh1k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|220.0|0.763|18.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta02868k|6pT-YDwvDTwAbLKOnr9mc125PypL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|225.0|0.753|15.8|['SLG', 'ITO', 'PVBT-TMA', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-TMA']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|6pVTcTy-BHVwDD_Nk_ANKXjKCzMh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-TMA', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.3|0.5760000000000001|12.54|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1039/c8ra08940j|6pgscd2xyTgLzwNhXR1ADGgQmEkW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|221.6|0.573|14.34|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|6q1_668ufG45lMpYmqZBbFnYv7Yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|128.3|0.3989999999999999|3.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|6q7e6SZzV-iilJjRFGZEL8ortjqn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.1|0.75|17.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|6qGPvs7O13cAxq4q4pVxhSX7qCuT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|160.0|0.64|10.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|6qIsAay1BzWv1wD52KCh6xg9bcGX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.19|74.80000000000001|0.688|6.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20376|6r3wZda_vVf3_E65x01kGhmt0pBQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.908|169.8|0.69|10.8|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|6rGWdBB-Jvt_KXgejul9iNTTI79_|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.76|18.0|['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', '3TPYMB', 'C60', 'TmPyPB', 'Ag']|['MoO3', 'TPTPA']|['3TPYMB', 'C60', 'TmPyPB']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.049|6rHtsboVWFz4AlPaBzgY706krzF-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', '3TPYMB', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.92|215.6|0.63|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|6rIGlqMAUM362ZjBQUGeFB-MSbNM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.81|199.1|0.67|10.77|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1674-1056/27/1/018804|6rJFZOudv-tCIuFXYKm8at6RjHe9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.75|12.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|6rOwTfm_CUwBEOQAYuCMtG9VsZtL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.03|250.8|0.72|17.91|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'TPBi', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'TPBi']|bulk|https://doi.org/10.1016/j.nanoen.2019.103962|6rQrTvAcE8KF6TXumKO3qt03TkTF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'TPBi', 'Cu']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.01|80.7|0.51|4.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|6rT5CUZYA4pdLEDxOWmXIFnnrjwU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.5|0.75|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'B-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-np']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|6rWdrXz1oUu24VOVOSBHWVAg-NiG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'B-MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.06|205.8|0.69|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.050|6r_t1V_nr1mCaz-hxGdeMrKrTrkG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.03|137.4|0.718|10.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1063/5.0011918|6riM26m6Pj_-fU02-qXYxa6Dp19N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -AgBi2I7|AgBi2I7|AgBi2I7||0.63|24.5|0.33|0.52|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|6rk7sXOQxuA4dTytYBDZp7S5BJlL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBi2I7. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.05|171.0|0.63|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICTA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICTA', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|6rloKDR-2J07zPDUnsO5xM_VGs1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICTA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.94|175.79999999999998|0.511|8.44|['PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201900229|6rloiJBa1DgYkyI3zUziLXKN-h09|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|1.21|115.0|0.5|4.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/anie.201406466|6rr5hNkjfc0EcNb1yDOEBh7T1Fg0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6100001716761378|1.16|213.0|0.72|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|6rv0cBT141WmNtELsbNU5Sfrqt4G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|219.2|0.759|16.58|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ra14372e|6ryAwRjluZJeyQLQrQXKAgA8JmFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.4|0.7|13.54|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.6b12509|6s2K94IGXS8ly7ptbFI9s_miVbAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.01|245.0|0.65|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-1', 'Au']|['TBC-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|6s7XAqRdd8Meox7IuLGioV6otFyQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.982|230.9|0.625|13.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|6s8UH9NOOq4FSW7shPpVMUCym_of|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|193.0|0.595|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.08.028|6sFBQL14tGf_C1wPXmAgv4olWvOg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.02|7.5|0.44|0.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06115j|6sJh7VW-udI9s8aicfOS_lQN3S5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|6suTPXEtN8_XuBdZx09jXaaTYF0f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.8|0.79|17.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C5-NCMA', 'bis-C60', 'Ag']|['NiO-c']|['C5-NCMA', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.026|6swa1u1vsMadkbeDk5-z_JrgoMbN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C5-NCMA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|211.88|0.81|17.44|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|6szOOra1VgDKkhst-dbtfp5daRjj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|150.2|0.652|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|6t-u8RsR-e68eKNe3MTJY_LzcURz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.0|0.769|15.8|['SLG', 'ITO', 'TPA', 'Perovskite', 'PCBM-60', 'Ag']|['TPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01831f|6t0Ww-N0fQcPYOphy2Dvy5B0VIwF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|230.0|0.7090000000000001|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|6t4seKjyteBvwlcY59PHtxO1BNeN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|184.3|0.446|5.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|6t8EmVR70jrp5d84IYqCDCqWM6v9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.88|197.0|0.48|0.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|6tSe0-7itw1eE1Y_SUR612kJ74Qu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|205.2|0.645|14.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|6tcGnYSyxuviMsDXZxIpHcbn1WQg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.1|0.664|14.56|['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']|['PCDTBT']|['TiO2-c', 'PDI2']|bulk|https://doi.org/10.1021/acsami.8b08958|6tfmJmoJKzt-mbvuPSORs4HrwbEf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7SE00545H|6twBXFMa9dNpqFXv-OsDHP58-3uA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|203.0|0.62|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T103', 'Au']|['T103']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4sc00814f|6u3DC1X00QeyeCKJOdlU7HE-Kohw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T103', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.13|220.5|0.7509999999999999|18.71|['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201900078|6uC8-m0qy9YsTEIyHYG0GSnAFWHy|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.703|185.4|0.6|7.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2016.09.003|6uR8lTIKmCXqp8-o62A5F92MnYTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.75|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|6uVTbhCwmsixLCj6_7Ty2WtvIKf8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.1|0.72|14.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5ta02730f|6uXbC251kqG2P07WlBAMu_8piSkF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|167.8|0.665|10.78|['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBFMT']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227488|6uYZOm24EQZsLGAaAiDrOzGo5QkJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.0|0.782|19.26|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|6uYci2j_JTF_CLrttDRnkD3x3Fl8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.04|229.0|0.665|15.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|6ucu5mOS13ykdtCWrNudYdtHBMio|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|81.99|0.294|2.45|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|6udRV5sImPqVE0D5cHTx4uvn9tOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.0|0.6559999999999999|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.spmi.2017.12.015|6ueTk7jAMUN1hBLftUhFJabsf5w_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.015|170.10000000000002|0.684|13.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|6ugMlp7LUMTA1PpQ1_bBePg6ayk0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|225.0|0.6509999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|6ujgJbj_qlVxOfYrDgNUWny_8GEZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.5900001695435149|1.149|228.0|0.773|20.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.08.012|6uoKa649CpWGO-ADamVPxuZhEtGG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|190.0|0.61|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.cplett.2016.08.067|6v-XmA9-sXW2ShiJsVo-h2Q5yfoK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|192.0|0.617|12.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.07.041|6v6R62mniMJifZwopC4e2DDG0xvW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|55.0|0.7|3.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112218|6vBKUrTLIdo0M5ZW7UH79uSCzuVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.24|142.0|0.815|14.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|6vLV-k0zFBS49rDSi-De4Ce7pqwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.0|0.72|16.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn506465n|6vQGFZ6fJtcZ-AApyGkbf2p96a0Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|6vh3qoKZiW_rRk2okAAsuq_BSU7v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|165.6|0.48|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.004|6vsF3bU05rGHgqinRyxODWw9v9Cv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.0|0.769|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07346|6vxYbnu0H0FjiOEKB15DOZs3yA1M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.723|3.8|0.331|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|6vxZT21z5da6Urf_RhRGeDzQuzVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.4|0.748|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|6w8ixye0GBMsedtXHyth8BPnhHtL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|202.0|0.628|12.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-TriSe', 'Ag']|['NiO-np']|['NDI-TriSe']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|6wAc7xOoUCSWTBLPtwnA-Wg-M-T-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-TriSe', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.1|0.72|15.65|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|6wEMNUIBte9zoP1eTBA3cKRwFiLc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.8|17.0|['SLG', 'FTO', 'ZrO2-c', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZrO2-c', 'TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.6b12509|6wEh5DCy2EIsToXFDye9MR3_WotX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-c', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|212.8|0.51|9.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr08289d|6wEzUXrn3iL5L5xlM6i07BgXKIRN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.25|64.80000000000001|0.782|6.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|6wK5NReeN8vo-jHST5PUry_J5SZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|239.0|0.823|22.23|['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; SnO2-c']|bulk|https://doi.org/10.1002/adma.201906374|6x1wdQ1zMJU5tTV5ATIZN-JqiMnG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|6x6LGveByM-7QalSrcFD552mFtqu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|181.2|0.68|11.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|6xIJaKLKOqxB8sm8eiWYpCDtagoc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.93|139.0|0.43|5.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|6xMdLkmJOCVsCn29URBjr2xpM_qV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.05|229.0|0.753|18.1|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|6xNjQ2mLssvP92skkZyNVpDFnie1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|241.1|0.675|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c @ {001} facet']|bulk|https://doi.org/10.1021/acsami.6b14040|6xRpwKV9r-OQmNuVVRIpw_ka7uHL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|180.6|0.777|15.2|['SLG', 'FTO', 'Oxo-Graphene', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['oxo-Graphene']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C6TA03755K|6xTNRczGUfy4HJzOndWwr5Jlb1-W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Oxo-Graphene', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.87|171.4|0.63|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|6xeoulOaNUs1XIy-VQ6oQ8Ei4WHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.14|109.0|0.655|8.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|6xfcPT0GuvS1on2Ps5efm8kCq570|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|122.6|0.436|4.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|6xld7Qe92QgvIPSQP0dAxTRAN5yY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.12|229.0|0.7|17.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|6xz9o2EdM8LM96xxWrTcauHc2tSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.964|71.8|0.509|3.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|6y21hk7MkWuWHIH0TYdxeCgyKkK1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|213.0|0.595|13.0|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI', 'BCP', 'Ag']|['P3CT-Na']|['PDI', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|6y3QrVvKGQvUuV6NPeACH4fiSbIc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C312H1747I200N437Pb200|Pb200C312N437H1747I200|FA0.625MA0.935PbI||0.99|196.0|0.703|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11801-019-8118-1|6yFaYvt7LY1xjNymwf6ZLk4RRce7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is FA0.625MA0.935PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|225.0|0.642|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|6yHTHqNlFa85oHzn0UY7UaI4Ztw6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.15|218.0|0.727|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|6yM8kqG3Rt_5U61DEL1SuRmT2qSC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|121.0|0.64|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|6yV1gCy7V6oMabpihFLyR57msSRl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|202.0|0.732|15.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.05.091|6yW6Oo2yS4zWAojlpm7F39TF0Z0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.02|226.0|0.732|16.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60; C70', 'BCP', 'Ag']|['PTAA']|['C60; C70', 'BCP']|bulk|https://doi.org/10.1039/c9tc01741k|6yWLFQpwEcMkVZJbcby4LNtVjw4A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60; C70', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|247.0|0.4|9.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4967840|6yg5mxOQDP6rKE6Ren-xFaTIa_Wa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|223.0|0.7190000000000001|17.87|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|6ygil7AyLC8r9nRsh71UioyOyacO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.989|171.6|0.7|11.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|6yk6tgemGiWUrQ8LLagnbi46Iyvf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|212.0|0.8029999999999999|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|6yn6htv7oiJBb-cSZ77MQYobrRrM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|194.0|0.64|11.17|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|6ynnuzdjGP3wCBaqQEQQemyHZZBC|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|87.2|0.66|5.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|6yqyaHQxwX7Ya_Mii1g8sGdLDt5p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|213.2|0.68|15.73|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe32c', 'Au']|['CuMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.039|6ysMxhRCMdNmq219fgjNzWMMguf7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe32c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|133.0|0.665|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.256|6z-1Ir7eTtPrtcKeh-ZCH8RuRVMC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|227.3|0.645|15.23|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07828e|6z3rfokdiDdx_9UTBSnmUQfMP9zm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|225.5|0.754|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1088/2053-1591/ab1923|6z6fxxzNA2bShfqihr0WLowZGOQ8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|167.0|0.61|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|6zEW5vVutTuX8Pi8GMLPxYZy9A3P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.768|16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr02146e|6zK0t_yq5eyx6zo4CJhwwT53N5lS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.03|206.9|0.772|16.39|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|6zMcE5mbl0CRh8rZM2IyZnSMVmho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.13|215.0|0.73|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|6zMm8x9J56lw9T1tCPhweZP77oMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|21.5|0.427|0.8|['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ra16865e|6z_Tu2oyngvrUwm1712lpFlJvMHD|a perovskite solar cell with the following device stack: ['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.23|64.4|0.76|6.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Phosphor-QDs', 'Carbon']|['Phosphor-QDs']|['TiO2-c', 'TiO2-mp', 'Carbo-QDs']|bulk|https://doi.org/10.1016/j.electacta.2018.05.087|6zack0dZyVbc_axGjp9XCwta0kHn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Phosphor-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.8340000000000001|180.77|0.426|6.43|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|6zj-FIBbSPiMkatSk4NIaY1XcJi_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.93|74.9|0.623|4.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|6zneHHZaNgrRGoxR1gagbmchA8SB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C27H71I13N8Sn4|Sn4C27N8H71I13|DA2FA3Sn4I13|1.430000152482532|0.325|164.8|0.45|2.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.0c00286|6zobFz_sFcdDGZO6D8QGZIxOAedn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is DA2FA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|55.0|0.34|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbSe', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PbSe']|bulk|https://doi.org/10.1002/adma.201800973|7-0oD_ilVdwSX-VPwUzS7ck9_wr6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbSe', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3||1.01|208.3|0.746|15.68|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|7-Ei_0aIGD4mJ2s_pWNNfhi3wgTX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|7-JAkdOfGAL0Fosv-jJKk2aXHDDH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.0|0.6|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|7-SPIgPZ11SMcg4DMy0k5yHcreOM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.16|244.0|0.72|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|7-_cCcVyEidrrBMSQ7eD495gLzvj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.095|220.7|0.7020000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|7-mcQS9nHAlb5ajQvWTjBy1UqXEy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|181.3|0.682|11.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ITO']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|7-xD46YrE38VXYt9KXYSbMydYNVZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|206.9|0.77|17.62|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c6ta09709j|7-z0OXP2O6906_R6_opZhexbJDFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|216.3|0.78|16.91|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201901284|70-0pnNgAXrFGpp09ZvGM0y4HYbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.0|0.7609999999999999|15.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XDB', 'MoO3', 'Ag']|['XDB']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|706NjlmPS_V8Euovn_6D4M6URU9N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XDB', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|195.5|0.77|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|70LCWtSiN7LMscwuEIRTm48wJkFH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|218.0|0.76|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-SH', 'Spiro-MeOTAD', 'Au']|['POSS-SH', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00050|70VTgBhkhi6piNwQEAiwsGmw6tbJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-SH', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.026|151.9|0.634|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra05323a|70YCuGR_rbd1hVKNohoufyLF5qPX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|235.5|0.7979999999999999|21.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|70_52QPu73oI_ZhouMx4mkFox3a5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.94|187.9|0.72|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.07.022|70aSi6EiQRqcEjmdNrYQdfCEAbpa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|167.0|0.61|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|70bCWtEQ1WU_NByWgNtmbubQH_q9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|146.3|0.583|8.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02193c|70o-eOzRdpM509j9RkVk7s6Q0xQR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H30HgI15N5Pb4|HgPb4C5N5H30I15|MAHg0.2Pb0.8I3||0.87|105.0|0.544|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|70yPLE4DC0lWln5zAbzeez8P6QHa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.2Pb0.8I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|185.0|0.6|10.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08231f|713AVQsROjC_PEQyzOGOKuYBphwh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.7|0.78|19.37|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|71DyHGQ24IKHWU6xBDdcKxaNZlE_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.07|229.2|0.735|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL40', 'Au']|['BL40']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00637|71Fo5ecC4BlKqx82EUdCcUjoJOO3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL40', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|135.0|0.51|5.63|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.06.001|71HcTysxkvxNApdkUU_5HCO20VYU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.08|225.4|0.7240000000000001|17.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|71LJEiSVyuaFFn0wQLfMS--e_Zxx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|0.98|210.2|0.725|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700797|71_PWG9DsFCEYh3SMtTZZUdsJwNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br57C95Cs5H489I243N176Pb100|Cs5Pb100C95N176H489I243Br57|Cs0.05FA0.81MA0.14PbBr0.57I2.43||1.14|222.7|0.7929999999999999|20.14|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06190|71aZiYNTQgu9x0eDRnGsjYDBRIyl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.57I2.43. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|183.7|0.74|11.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|71e7-FMBA0QQtHQenc8V0zP6LV4F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4||0.9|182.1|0.8|13.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp03995a|71j4feGOzmeZyujTrvesRMFBd2IT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|212.2|0.7609999999999999|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BPFN-TPA', 'Ag']|['TPA-BPFN-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201900884|71nLMcCRVHesRx1KalMt_v8mbrgG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BPFN-TPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.03|217.3|0.7240000000000001|16.18|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|71njckys5MJ6MNV_b3knboSI6w9M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -C95Cs5H491I300N174Pb100|Cs5Pb100C95N174H491I300|Cs0.05FA0.79MA0.16PbI3|1.5400001642119578|0.97|232.0|0.68|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|71rGp11CqEcVXgIAZlPuZwpfgrbb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|171.0|0.6459999999999999|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00200a|71sPABloKbuVaHomObp1_zF0lrTS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.018|71us3-4G5kccEQld25LK3D6YhWWV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.5|0.762|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.064|721_TFIwr_pIr5xwKzcfaIZhNTT2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||13.06|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|729sX1dUGQMXEFLfx8r7YwYg_jz6|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|237.3|0.711|17.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-1', 'Ag']|['YC-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|72Kg1BCSFRecGvxwMN7ZksWLvDRM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|142.10000000000002|0.52|5.73|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|72QMFi1sHk5xlwuGc1-bRX6jDFUz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|116.0|0.45|2.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|72RVPMnQuw6QVxGaZUUKJEksawbg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|217.0|0.6|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|72RljdH1fvqOGJ8tbVOTvhwyTuZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|199.4|0.618|11.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b04861|72UKwl_sgWSqFRhxq0KZx_VTykpa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|160.3|0.46|4.59|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ra07725d|72UYwlrOsE5AIBfGV2jKIcQwqv-X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.04|112.8|0.513|5.1|['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|72aFXTizdE5oEZSwYoLgMzSzo5NC|a perovskite solar cell with the following device stack: ['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|171.70000000000002|0.75|10.61|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5054347|72m8vzUD9RejSvXW6njUX8MJ5G01|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|189.0|0.765|13.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|72wsqqDBGDhcLZsWVfheEhd2H_wb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00260|737doWhwcBV_SRBzoNyS2tkRoTCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.31|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|73Iunb4G57ndEolc5RAp8jjWcZPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|185.0|0.75|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/aenm.201601822|73LD4GwfJpbDi5jckoYBmdneMkgk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.33|177.8|0.679|3.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201606964|73LwkJxVWxnbCc3zaGYly69iTZQ9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.113|191.3|0.742|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|73YEZK41m-VP_ew9JiY24bervSFu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4||0.44|78.3|0.184|0.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|73a-Tn7N87PoqgFTpKzR79u_1KAZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.02|214.7|0.59|12.85|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201800399|73aSdHrrITNZ49UDZYIMW08ykpyx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.2|0.784|19.0|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'DPPZnP-TSEH; PCBM-60', 'BCP', 'Ag']|['DPPZnP-TSEH; PCBM-60', 'BCP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201703980|74165jPz0SqkJGYv2e6Tg140MbSv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'DPPZnP-TSEH; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H85I51N34Pb20|Cs3Pb20C17N34H85I51Br9|Cs0.15FA0.85PbBr0.45I2.55||1.003|219.8|0.72|15.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6Cz-TPA', 'Au']|['3,6-Cz-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11696-018-0484-9|74EWHh7lDRryQDk-JDljOQFAiZez|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6Cz-TPA', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|180.8|0.76|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|74NPPA2PgnNd6RbtXsbN2JTFeoMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C9CsH45I21N18Pb10|CsPb10C9N18H45I21Br9|Cs0.1FA0.9PbBr0.9I2.1|1.678000178927055|1.202|207.8|0.791|19.75||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|74S8Wkdh2YOMscfUqgUn8b0IS7MO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.9I2.1. -Br48C20H120I12N20Pb15Sn5|Pb15Sn5C20N20H120I12Br48|MAPb0.75Sn0.25Br2.4I0.6|1.900000202599169|0.97|62.1|0.63|3.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|74ZokKwF4R3alEhVea0Z0Ez0r-Wr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br2.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|176.0|0.73|12.2|['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.02.011|74aE6cJsDo5As0tPKwb7rjjEduXM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H494I270N171Pb100|Cs5Pb100C95N171H494I270Br30|Cs0.05FA0.76MA0.19PbBr0.3I2.7|1.6000001706098266|1.08|208.0|0.767|17.3||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|74ejui5VftaUyuwmJFou1xXJkPrJ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|167.0|0.522|7.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']|['5,7-bis(9-ethyl-9H-carbazol-3-yl)-2,3-dihydrothieno[3,4-b][1,4]dioxine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.5b00283|74gtuIfUEFdab8JcAf0HUBNuwYKj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|176.0|0.7|12.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|74jKm5w53v6fS--89kyal89n-mv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.939|206.12|0.674|13.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.025|74lqJovD9Ar4gWjQsYQvsXE4im1l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br398CsI202Pb199|CsPb199I202Br398|Cs0.005Pb0.995Br1.99I1.01||0.99|131.5|0.57|7.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800504|74nguTm2_4XX2hSSHk793bDXSmYL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.005Pb0.995Br1.99I1.01. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||0.96|208.86|0.77|15.43|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|74tvQmwnYH28dSWebwl75AWhEgXi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|213.3|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601674|7505e2ea-yJp5oI-_Z38UnQeWjtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.1|0.68|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.254|750ZeQs-iEe9NJvtOzR4mDVXH8GI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C331H798I300N100Pb100|Pb100C331N100H798I300|(PEA)0.33MA0.67PbI3||1.07|142.0|0.45|6.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adfm.201901652|752Ut4xrqpWWX-S7NYO04u0CXVNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.33MA0.67PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|225.9|0.6759999999999999|15.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|757Nk82wWfBGSRFZ7B6A4NNvOOQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|218.2|0.768|18.4|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|75AF4z_np0JASb-X1-7jZAsmVboA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.69|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|75Ca0SgJIY0pyB2E4uhnZREnWIsQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|192.9|0.71|15.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fe3O4-np', 'Au']|['Fe3O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b05173|75D_EctdYo37id_djRkDKAOzgQz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fe3O4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|217.0|0.68|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03103c|75SGUv9VB1Jhc_Pw-TVEa-GlfokX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.236|0.3|0.26|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21291j|75UPa0ZV3aUv1VXsBkHcMQ7kT7bD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.941|200.1|0.674|12.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|75Zy4QbziVh-raYwqtd9791B2smj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|191.9|0.742|14.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|75inwRlXhfob_2S0V0lAHP0PPKbj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.5|76.0|0.82|7.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Choline chloride', 'Spiro-MeOTAD', 'SWCNTs', 'Au']|['Choline chloride', 'Spiro-MeOTAD', 'SWCNTs']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00509|75io-PkxlixfWlICTslxNXbHKFaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Choline chloride', 'Spiro-MeOTAD', 'SWCNTs', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.8|0.72|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201905661|75lazcvA6zOWOfCwdeb6o4xqTQic|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H490I249N175Pb100|Cs5Pb100C95N175H490I249Br51|Cs0.05FA0.80MA0.15PbBr0.51I2.49||1.02|198.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'CuOxNy', 'Au']|['Spiro-MeOTAD', 'Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scriptamat.2018.04.049|75rYuAlwV50qoz7LhyGLntx5GrzG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'CuOxNy', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.58|137.4|0.44|3.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr03530f|75rzSD2OoG99aETn_a34vTrsizgv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|75wQSlpb3CmGiEk1ibkIMCoNC9eT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|220.5|0.632|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO@C']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.004|75ycXHcM6QXqsol5Vuptg3enrQ1h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO@C']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|81.0|0.26|2.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|761y2m90RVU5Dak5P6LASW5tQTNk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.13|242.4|0.81|22.18|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|7697ghZdMxVdzVupDDlAO5H91a3m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|119.0|0.662|7.9|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|76Y0_MV8Fd4iZ_UlbNllvMRegR5k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.57|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|76d-R1t3wC7EoInpaZo0TVz_HyF4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.161|235.5|0.73|20.12|['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1002/adfm.201805168|76u7heciEvASbD1kRLPbwme5P-2i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|220.3|0.62|11.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09020f|76yhNcrY_JRoCpRZOqzGhVjgNEnS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|162.8|0.76|11.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2018.12.010|77AuS7F7YSRwxLs4Q0EE9i3si83C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|197.8|0.669|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.039|77D4J5g2kXOBQRzsRKFCHMep6kn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|192.1|0.695|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PST1', 'Au']|['PST1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03773a|77G8MGguMzy0zVSOmJgWIkZvhMHu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PST1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.0|0.65|12.9|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'WOx', 'Au']|['Spiro-MeOTAD', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|77LYEyHeuMTCEDwd1z2ybpZNiV4h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'WOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|77UJasoOQKNNE1vEkUolV6VkLT0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|178.9|0.61|8.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'FTO', 'SLG']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01889d|77bwUL-xJjJKTKCfgP2f9soDeQpO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|224.0|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/1347-4065/ab241c|77vE1PwQ_GGdlZPlywwObfZ4EnXj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|225.5|0.74|18.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|78AnJeqcDt4YOFxMI9zaitbNHV47|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2F', 'Au']|['2F']|['TiO2-c']|bulk|https://doi.org/10.1039/c6sc02448c|78DMT1LZZmNdzHXhBbhCjELJshOT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2F', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.08|232.0|0.73|18.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|78J1RbraCf3FeKu9LR4-8wfyso3q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|155.0|0.36|5.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|78M9gZAQBocInqPPM-G0bD7R-nFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||||8.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201802080|78Ql1pZ1n7qqX4pTm8WZcffptx0u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|165.7|0.63|10.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|78Ut12A2zPFjTumhiviU2Iq3m0Bi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.1909999999999998|157.20000000000002|0.778|13.42|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|78Xf7O4yEVVmY_wDS9otfwIkVoRL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|146.1|0.72|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08418d|78YRay_-1DgZug0Hc9dRaV1fpQiZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|46.0|0.46|1.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201301047|78_EUMLs-6J-RiVDqFtZaPltYqHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|220.3|0.736|16.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|78aR7_OFgoubHUivODW_AxNfO82p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|183.6|0.578|9.97|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1364/AO.59.000552|78aaV6XbyrB1n0gJ7RuKvPApwjrS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.82|16.0|0.48|0.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|78dxDvfonyY9YBEuoQ7fkQ1d23br|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|220.6|0.73|18.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800909|78ufH3tcNOxe1HSTUamY1B23QNmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrC2ClCsH11IN3Pb|CsPbC2N3H11IBrCl|CsFAMAPbBrClI|1.7700001887371206|1.25|201.1|0.812|20.41||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/smll.202203319|78wDaywI1IGT1RQHIZDEXLDFe-3c|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAMAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|247.8|0.69|17.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600848|78wkEuhW__eaQmpso2laXUksb0Ks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|149.3|0.534|7.87|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|792ZejoeOHHXXPdTMPTleXkFQWtE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|208.0|0.77|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|79ANYkEROgXFmUvYaOYhKhmx9MmP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.3|0.777|17.39|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|79FCut8wXI2eJHasxL7qPwRfPe2m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|79H7mHJZDzKaGLDOwwEWeA_VFrB0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|145.0|0.6890000000000001|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01563d|79HE81EuKxX4N3V-Qu__20_s4kbL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.4|0.65|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP06', 'Ag']|['YKP06']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|79LDKoq5eylQQMdLDn7xYo1ouhbw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP06', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.02|159.1|0.74|12.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|79TdugenhTeIaSV0C1dh_ciusYrj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|239.8|0.6|13.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.102|79UwHbhKVAih2mzvk1CrOJatowG7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|189.4|0.6990000000000001|13.4|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|79WvZ-zuOIyQXmMuHSbQNIohUTX4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|160.0|0.59|8.11|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/C4NR04383A|79XI8jnYPwLzOSiWUYuLxwculqDt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||0.77|40.0|0.49|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201901036|79cENdYPU17t-o033uQklHJ_gL7a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.932|115.0|0.71|7.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|79ccjA5Xr1A1LMhLsTLy26zly5Ke|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']? The composition of the perovskite layer is MAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.03|131.5|0.6579999999999999|9.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700180|79kLfwVQIivr6f5WFE11L1w4pe8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.8|0.71|16.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']|['Yih-2']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|79srVbY9RYntdcPgGkGVT0B2sg2X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.025|217.0|0.7509999999999999|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s12274-018-2263-x|79t0AOkh7BKaYNsM27Bu4drX1f8Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|199.0|0.66|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV1', 'Au']|['COPV1']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|79yndF9XIYrpCWIRBvdLpdwmr3ZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.0|0.7|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150068|7A1m9iVJimxTRReA4AcxCYNFXBtd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.08|215.0|0.7|17.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|7A2HprGNzJsDJq2gw13C1HisbXXD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.3|0.481|7.96|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|7A90qF4QamyDKl4FboJ_r156XBvJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|7AKsFltA1jnMAthNrSE8uNc_ITyZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|0.022|11.2|0.807|19.77|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900231|7AWkxR2kcU_SOvMXQfSE6I3JL7Jj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|7AWycfTUN5_s_1Z1zcm5csdjmpqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|224.1|0.75|15.86|['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2Ox', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra04414c|7AcB3cq9AN8VJpMpzsJSAX7otvg2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.964|212.0|0.445|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|7Ao0kCJu2aaSIJyUC9lUvT-VKehf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|233.6|0.6629999999999999|16.25|['SLG', 'FTO', 'IZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IZO']|bulk|https://doi.org/10.1021/acs.jpcc.8b08869|7AsNwS-U1xZ5TW4jQlgR6BLyr27K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'IZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|11.9|0.4|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|7AwAsg64_shUOLpbG8cF6ZmO1guW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.79|96.9|0.55|4.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.12.029|7BE7wFsg34pzEpCODM_co0o2T1Sn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.15|81.30000000000001|0.64|6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|7BFHK8i-9vbMmN9PsaWrX5lLmlrc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|208.7|0.74|15.5|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|7BMdhz55VnGyHJKFh42JJAODk5JP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.6|0.7390000000000001|16.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-018-2190-y|7BOKGcNRFax04sSa6IjBGO2p2LzZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.03|120.9|0.58|7.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b05678|7BTtW73s8P-XnxNlEWg8WVhOHL-x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.072|230.0|0.77|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|7BaeDMp7RsDgs7Lr9Uv1k2ryDbrc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.86|277.5|0.78|18.62||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|7BdQjZ1lOLG7HF-ndl5Y3ccchRvq|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.75|275.0||14.6||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|7BuDrU83aAxiCeQYDZ_Ob4RYqldY|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.72|17.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PN-F25', 'Ag']|['NiO-c']|['PN-F25']|bulk|https://doi.org/10.1021/acsami.8b19036|7Bw8qdHZ3yZxaQv7O75hK9L0YsS8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PN-F25', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|216.5|0.778|18.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|7ByHbXLRTxWWgnOE8FgB6md6aobb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.8|0.799|18.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|7C81zAiuE6yUZzXYa-E0zDtGXHX5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|224.5|0.7559999999999999|15.21|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Cu']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.synthmet.2018.10.004|7CFQ1VJTfYZUgIzejLPjb309HnoZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.78|131.4|0.6|6.15|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.10.023|7CNgPDPACPrCaDG1g7Dd4u3XhYQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|184.0|0.61|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14850|7COM3IB0ApJITHSvvWP1s1wEHDcS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|106.6|0.66|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1990793118040334|7CPFjViwrWpfoZgwqEvGlC9WCWDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|211.4|0.69|15.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|7Caduy8_T8BvoItIHnWAuJtjQ78p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.63|123.1|0.48|3.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-5351-2|7CfTSEtRm7AReYpuPXtDijaLFe_q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.018|8.86|0.488|7.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|7Cj9Bb0NcC0jSPoLXhZpjUPmXcSl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|56.2|0.3|1.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|7D3p5MaYp4103XEF_jZgAYkk0BVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|78.88999999999999|0.674|4.67|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|7D5e6fakGCuv91a2fC8tG9G1xqA5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.7|0.44|10.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|7DCuMGv74ipuusNtuOrq5irWZYIB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.134|206.0|0.78|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']|['FDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|7DKk48QqULvrsUTz4JYsshal-_24|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.09|222.9|0.731|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPy', 'Au']|['ZnPy']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.08.056|7DMf1MPls40_aiJv_oDjzSGol4b8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPy', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.42|123.0|0.5529999999999999|3.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|7DY60n1RKB5O6vvxBOrfBDzR0Lgf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|176.0|0.69|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|7DZwvSYBrBZmdAizFEeWaYgGVatu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.68|163.0|0.48|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nphoton.2014.82|7DbGY8nw1jL0kICfH2VO3225rcpy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|159.0|0.45|4.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|7DbNwBoaJFHRxdyzOZaomE5xBeoo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|179.60000000000002|0.72|13.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Tri', 'Au']|['H-Tri']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.71306193|7Dn40f2S0LYVkxmVjUSLSYPH31yc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Tri', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|41.5|0.613|2.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4ta06198e|7DquuaJ6s2fV7a2h-Qb5bemt9nhr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|226.6|0.7559999999999999|19.12|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|7DtLR1Tyj--pb9LpdyFx4IZPLCf0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.4|0.76|15.9|['SLG', 'ITO', 'Pentacene', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['Pentacene']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.cap.2018.05.022|7Du0l7qpV3DYgW6GIYsu6nu6A3Qn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Pentacene', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H32I16N4Pb5|Pb5C8N4H32I16|(PEI)2MA4Pb5I16|1.8000001919360546||||7.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|7DxgpnBrrJU7SgKEZp-SFA7NjpYE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.0|0.639|11.2|['PET', 'ZnO-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Ag', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|7Dxj9PpmqKJM7Mzvf331XiDEhrkC|a perovskite solar cell with the following device stack: ['PET', 'ZnO-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|225.0|0.53|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|7E35MgSDIA1sdkWGhNlWzO11q3Nb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|238.0|0.77|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|7EF1dLXWoRKw_CsT_HkTQ5DqS3Kr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.0|0.74|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp03396b|7EMRq7_czANfo5PGFQLl5TLq4QMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.05|163.29999999999998|0.6940000000000001|11.9|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|7ENI7Liq_5I6D971bz1V-4lENfKl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.0|0.59|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.11.021|7EOk6L5B9nVTJ8LnGOUssyFrW_gR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|0.7|113.8|0.42|3.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|7EPHjV3trRBVS60rU-O5X22CpyMW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|194.0|0.55|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-np', 'Spiro-MeOTAD', 'Au']|['Al2O3-np', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.027|7EcQEjbUd2SsSyMz0QIbekLHn0C_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|181.0|0.542|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.04.015|7EpGll4-16--tmdIlypOHW2JJba1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|239.7|0.75|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|7FDHuSHggAn-kaquGybcbJlwzIVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.6|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms7142|7FFNG3xiw4HhXxsOa8UCsuNuYKnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|159.70000000000002|0.581|9.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201500373|7FHMzicruQsAAkcKqPWuNd2DrH3n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.94|154.3|0.7170000000000001|10.43|['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|7FJwJURxsyWr36ZjowD6WSBJspHB|a perovskite solar cell with the following device stack: ['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.7|0.66|12.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|7FQahiCfyh_EMBrq8KUHxkRrH0ri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H30I7N3Pb2|Pb2C9N3H30I7|BA2MAPb2I7|2.0800002217927744|0.8|15.0|0.33|0.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/jacs.5b03796|7FXgnbrYKr36IWc2aptmySeUWPth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MAPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|170.0|0.45|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']|['Carbon-nt', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501520|7FZkf-ZRB556IGA61D6iuZJuMFRq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.096|215.7|0.7390000000000001|17.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|7FrQ-MBQNDW5SwZyU4c62uBdaT1r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.15|241.0|0.76|20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903654|7FsB8pvdkx04AcOMDF_eiQ_wm0If|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|97.0|0.483|4.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.09.011|7FvW-To2brONKBu_oqpNjTnXyqTt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.3|0.66|14.0|['ITO', 'PEN', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|7G0gllarnmeqYb8D-0aWdvp4K4jo|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|214.8|0.718|14.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|7G6yOGuURlk6mJ1-hm9ZUIWRaaGP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100C95Cs10H491I200N174Pb100|Cs10Pb100C95N174H491I200Br100|Cs0.1FA0.79MA0.16PbBrI2|1.7200001834055632|1.282|189.0|0.788|19.1||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d1ta05699a|7G86rP3lSg82xuetNCk-EF_HWRKE|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.79MA0.16PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.5|0.6890000000000001|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|7G8gqy5JCp6p5xvYWVr4lOe0afst|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C47Cs3H253I144N76Pb50|Cs3Pb50C47N76H253I144Br6|Cs0.06FA0.58MA0.36PbBr0.12I2.88||1.09|236.0|0.735|15.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|7GJ2kBgR_3ex_uQr3JO21NOiQdkO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.58MA0.36PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.105|216.7|0.763|18.27|['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00375|7GYz2Bupro7vmaKbV7MJXMH5RP-1|a perovskite solar cell with the following device stack: ['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.9|186.0|0.62|10.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-6228-0|7GZuMTy4Vk9eNVOjDr3MqO47cqEN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|72.97|0.31|2.2|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|7G_FfkrM-2fLs04ugj4UbahDQWLO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.2|0.7140000000000001|14.57|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2019.134924|7Gi7w48aK45FGDvqffctQZ05ymHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.52|14.5|0.43|0.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|7GnxcEH8gVVsXAquWEK6fFT422FT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|223.7|0.738|16.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5048424|7Gp2D-HRknImMIgQ3_zoewuq6uhv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|215.0|0.687|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|7GpVB3aowBIMatukGehJVdmCC1im|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.5|0.748|17.46|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227420|7GptIa6WifOkVT7mt-ksdMOnTzjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|208.3|0.765|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|7Gxq0Pq8B-RBkxs5jkCT0LRkACCk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.32|82.0|0.7|7.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2017.09.013|7H2c4lajRbnk_znKb4QJIcj6IMRV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|184.9|0.48|7.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.01.035|7H3Wu1Adoch0eJ_rlLGvIhQUoNjB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|69.0|0.68|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02549|7H9jdU1ZHJ05vRTGRH34UEq7034l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.73|15.6|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|7HAAE5OZflkoukG0TdvvheCar5Sr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.0|0.66|13.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1246/cl.150056|7HDwqlw7a8_NEH78QSDDoY5JzQMJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|193.0|0.7|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn505723h|7HHXj_AVm_EYn-14U3aorq-i5pj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|85.39999999999999|0.72|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01776b|7HV1wblsdFUA82CaBq0ii8cOhEgM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|181.0|0.68|13.7|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2014.12.002|7HYB1HFQfJrE00wwMH8IoknUtcR7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55|1.6000001706098266|1.14|216.5|0.77|19.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']|['NiO-c']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.9b16919|7HZcPP8DoMht0eoVfIbhKojOYMX5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8||0.93|187.0|0.593|10.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|7H_mskL5aLVmgQzCrJ40By1I7uZv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.0|0.71|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900164|7Halp7y69dWFid4cOEqmfPk4cSaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.31|160.7|0.626|3.12|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201606964|7HbEyb1JC7Qqqs8mQ_Fmb67m4iCi|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.9|212.0|0.72|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b11011|7HbNxPnjcmureL3WoxJSoK__vcmF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|144.0|0.65|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|7Ht7KPxjr8rfhfemLqiHOX6MIk06|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|216.0|0.499|9.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5093873|7HuCoa5s8HpfqFCkautJ_XTotGZo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|152.89999999999998|0.301|3.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra09519g|7I71d38XlKv9344dRfcTqTdEQk_F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -Br45C99H528I255N165Pb100|Pb100C99N165H528I255Br45|FA0.66MA0.33PbBr0.45I2.55||1.12|235.0|0.631|15.56|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.010|7I9ZjnFAWdlOx1xMjLmq28WSGPOY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.66MA0.33PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.71|111.0|0.76|5.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|7IGbOUMEtYXj_1CFfjNzlfvAGs9j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|125.3|0.365|2.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|7IGtfd7mAIr608MW1fmsLQNrl7MU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.73|235.0|0.703|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np', 'BCP']|bulk|https://doi.org/10.1039/c9ta10543c|7INvOm7teBOV_Zs41QkQ21H6sbAz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|217.2|0.7490000000000001|18.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|7IQwTm9B6NbuEJ1MgxXPCvMenOHo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.0|0.78|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta00679e|7IS95LfPl5A3LZQf67O9gvhRILOz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|215.9|0.725|14.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1088/2053-1591/ab1923|7ITG4wNRA96QugxmrYGKqqVduVtk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|122.2|0.69|9.94|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03622|7IXEK5RQQ5HAfqOz9jBczO3Gml7P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.0|0.747|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|7IeMLoM6BDIReFWf4waa9aNWhmpI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.6|0.62|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|7IkE8jnHrWA2sWN1zGPGU2iR9wa4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.684|27.7|0.36|0.66|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|7Iqzcp2vD-eKJy9W4ouXklevJrqd|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|214.0|0.742|15.3|['SLG', 'ITO', 'r-GO-BH', 'Perovskite', 'PCBM-60', 'Ag']|['r-GO-BH']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701640|7IsBumGXmMhliD2cby-xlW2c7CjR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'r-GO-BH', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.0|0.76|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0957-4484/27/2/024004|7IvMjdd2bmQhBdkskiyKNqZyJ3z7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|221.2|0.8029999999999999|18.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201703061|7IzCyck_GZ0fqXOFIhwnj0qXD5YG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|223.0|0.83|17.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate12', 'Al']|['PEDOT:PSS']|['PCBM-derivative11']|bulk|https://doi.org/10.1039/c8nj03067g|7Izg0ZH3SGTyn-KwBKo7pH6vbv8w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate12', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.39999999999998|0.62|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08744a|7IzrbkmDUXA0qZaySappE72tjUCh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.137|231.9|0.737|19.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|7J65iALdUu1NkWOihym28MYs6dEt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|219.92|0.68|15.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|7JCGxnMpis5eS-fAA3JyzsRCW5G0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br250C100H533I50N167Pb100|Pb100C100N167H533I50Br250|FA0.67MA0.33PbBr2.5I0.5|2.1150002255248643|0.921|72.47999999999999|0.513|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|7JEAypIZ8_YXT7p5LJ678DFSAP5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.48|0.759|16.7|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104186|7JI0S6c3WqofJHanrFkpZjqvkRCV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|152.5|0.7240000000000001|9.7|['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s11671-017-2393-1|7JI0hoAHYHcf5boM4udsIf3dhwBO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|180.6|0.395|7.78|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|7JL2Eol49_w8WSo1FKYpEha1E4wL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|169.60000000000002|0.44|6.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B1', 'Au']|['B1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.107954|7JQryobmF3Y1SgJ5yK1ZFdnXVP7l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B1', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.7390000000000001|130.64|0.5820000000000001|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|7JWFox-4E2YP3trnArwo-zX-9A7I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.7|0.73|16.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|7JfQzcquZqk56oEFFxX5-k3xEGLv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|152.0|0.7|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021939|7JhQPoWG9PFBUpWF3Zps9GzspXHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.06|221.0|0.713|16.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900125|7JqTJ1bryc7UzKSKZFgTM0DJ6zCj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|217.0|0.57|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b01949|7JzU25Ab29Of1qLpDSKIERWIOVS0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.7|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|7K-UaU-h9kt5nPAiqktWiD47Yi9t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.2|0.745|14.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.086|7K4lSIvy8K4wBqCfzV3VgFdtlvVW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.02.049|7K5Q4fMqlWP3R1SYMlJ0yQhokDBk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|198.0|0.8|16.9|['SLG', 'ITO', 'C60', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60', 'C60']|bulk|https://doi.org/10.1039/c9ta09838k|7K9H6a2gB2t_HMuZp9Toe82-CfgL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.98|158.0|0.69|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-ANT-DPA', 'Ag']|['DPA-ANT-DPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc05238c|7KG4ZjLxaBDJl3_uOuUKnyBPAltW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-ANT-DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|210.0|0.731|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|7KG7rGQEgR4OW_uM9wY90VxrDAKW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.074|128.8|0.63|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|7KPCOUicLXn8rdT5h-8Y69fwd_G_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.875|177.0|0.516|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|7KPkYRVTZg5pAYgiqVY3udPfDJVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|158.9|0.52|6.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4RA17316C|7KSkivegEsfWXPaIyexTYQwAabSj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.861|90.67|0.637|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|7KYmt2sLom0wpFZ0JJRakxh7QwXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br297C100H600I3N100Pb100|Pb100C100N100H600I3Br297|MAPbBr2.97I0.03||1.3|47.86000000000001|0.57|3.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900737|7KruOKANduuBzJvEPbp1T5J_gZN0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr2.97I0.03. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.06|219.1|0.71|16.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|7Ks5fXVoYijeliRZO0O7_epYW066|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -Br150C95Cs5H491I150N174Pb100|Cs5Pb100C95N174H491I150Br150|Cs0.05FA0.79MA0.16PbBr1.5I1.5|1.850000197267612|1.02|163.0|0.68|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05795h|7Ky6mIdI_UO4sPU6m4oVRUoEnbaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.5I1.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.7300001844718749|1.04|210.4|0.6940000000000001|15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HMPDI', 'Au']|['HMPDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12236|7L4sEVkzw1BwEM8xO9rbYmKo99Gd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HMPDI', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.9|0.679|16.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S2010135X18500091|7LAvgnD-jK4AYKh8G4V9chkWQO-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|186.8|0.648|12.71|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|7LH2QZdDmfbG01IkNzXQNZAe6rae|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|133.1|0.626|6.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|7LV-qxPggz6ySLlxfYulpG7lOiRr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||1.071|211.2|0.655|14.36|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3389/fphy.2018.00099|7LXDaosPFqOKNhc5rLhJIUC1-ie3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -Bi2C3H18I13N3|C3Bi2N3H18I13|MA3Bi2I13|1.8000001919360546|0.5539999999999999|6.2|0.37|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra07123j|7Lp1-poekTAXwds7OpLUPBe34-g7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|239.8|0.7390000000000001|15.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c6ta02918c|7LsvkKXvvb18wmFxcCc7iyNy-3Nh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.1|227.5|0.8|20.11|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.scib.2018.05.003|7Lt5L3lK1nWr_yNebflH3e6Tsbcw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|124.4|0.49|5.55|['Polyester-satin textile', 'Polyurethane', 'Carbon-nt; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Carbon-nt; PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.038|7M0imOeW5KgIRDHcZGXum7Oid-Mg|a perovskite solar cell with the following device stack: ['Polyester-satin textile', 'Polyurethane', 'Carbon-nt; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|235.0|0.785|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|7M1Mrh6dmvX-udDOgSpuODXmZw9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|88.4|0.27|2.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|7M7ySLl9UrMSMqDxE2lpNjkeCPej|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5500001652782691|1.0|219.8|0.72|15.83|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|7M8p72kC121lJMbvgIv0svl30eRg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.16|123.0|0.65|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|7MDkuhgulu7oc8oRJgc3xuvrdVYg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.314|176.4|0.411|2.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.10.088|7MG9Uzw7yLpU0T8t9apLq7jDzRdd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|237.5|0.6579999999999999|16.21|['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.08.083|7MNBsV5Sbzf_yWHBA927v6NG9ZYd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|150.0|0.7809999999999999|13.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901152|7MO_2_d9GSgsyqFWk571Ujs3B75i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|121.0|0.47|4.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|7Mjd-6Xo6VsW0ZJmfaYho2qZUILk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.12|116.1|0.72|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|7Mjs5cIgAVA98D30ODNgVsmzMttr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|193.0|0.63|12.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CuSCN', 'NPB', 'Ag']|['CuSCN', 'NPB']|['ZnO-c']|bulk|https://doi.org/10.7567/JJAP.57.02CE07|7MvtLLlkuUIHUt6ks4ITuMgqVCzT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CuSCN', 'NPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.37|64.1|0.72|6.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00130|7N4dEMLrm3NOfqyap1Gv0nls3kRC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|220.2|0.4589999999999999|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|7N6zP6CH8ShFxWQG2TUJ2ncIGYUC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|175.9|0.61|10.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|7NAQZJanqbQG7xxjeBaQKirFMQtg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.0|0.768|16.69|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00042|7NEZseCo6uuLyQ3f20gzyAlT3QVG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.09|227.2|0.773|19.15|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|7NFB8E3VtgRSoMKzC99qyI-AOGkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.4|0.69|15.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b01663|7NUj-pbeB16sCqg-NsZoLlVgZhzN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -C371Cs9H735I260N142Pb80|Cs9Pb80C371N142H735I260|(PEA)2Cs0.45FA2.55Pb4I13||1.04|163.0|0.72|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|7NVahzSDfcYrWFuqRUlNFn49z24o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2Cs0.45FA2.55Pb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.98|201.5|0.63|12.24|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|7NpuNUAQ7kBVRqCKnm01wvnC3SVO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.033|157.10000000000002|0.25|3.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-MeFl', 'MoOx', 'Al']|['EHCz-MeFl']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|7NrHxmBWs6oaquwaNYpj7uKLXrXg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-MeFl', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|206.9|0.65|14.65|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|7NsBrFmGbKS6-HwHn7HQ2mTKtHZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|178.0|0.68|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn505723h|7NuI7DQnhynbr3SRlIn0MKC0V1Oh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|192.3|0.71|14.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|7NxImeEjwW9ghFrwF40anYBz1UZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.084|189.2|0.639|13.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01221|7O-VC2OZxin9fzsALfLV3RBSi8FQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.72|13.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b02035|7OAzNT6so6zGyOvhvdOhSs4XX5Kf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.2000002345885115|0.64|38.1|0.45|1.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|7OBMks0DbSMvQ4fJamHFLTV4DiYf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.9|0.79|18.19|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08314f|7ONq2mZ5Pfmho18kjVTudw0IWxr1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.77|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900138|7Ok-6HKSXAgRfJHfttmTIVg7zUoj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.085|233.0|0.83|20.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|7OkCztAj5PrCvXXrTjY0NZPVruz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|193.0|0.67|12.4|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'BaTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04642|7OxT_LR5uzykocRYOslULHjO-_aI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'BaTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.13|215.0|0.743|18.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501537|7Oy62UfXl3FQPRo6riZrheqsv1pO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5500001652782691|1.145|225.1|0.7390000000000001|19.05|['SLG', 'FTO', 'SnO2-QDs', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201706023|7P3GOq1bX-gGt38AKXK5buAkfL5x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|204.7|0.531|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|7PCJGwcRaWl15PgBtIPA34IbiHYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|206.0|0.75|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.04.055|7PE9QszEEHbepSqkDrulEQXxoWeq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.98|166.0|0.505|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|7PJAiUx3BCdNQD6d9BWeLtx0yll-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|7PJGnqTnuN3pu79-eoawnNW3BA1m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.792|171.0|0.68|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|7PL4sMsl04j0Sg3YQqGiuI2FDhwK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.08|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|7PP88jRqCFbfG8wl5OhRBQ31PtJp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||19.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|7PuYjXoMZYlFq0t0mbMFW_zIiogy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|235.2|0.767|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b11229|7Pwd6hdymU25FBHGa5jETq3TNDUD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|158.1|0.51|6.77|['SLG', 'FTO', 'TiO2-fibres', 'Perovskite', 'Au']|['none']|['TiO2-fibres']|bulk|https://doi.org/10.1039/c4ta03658a|7Q82HWPuYtzHcGAQUBddiVyOXwVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-fibres', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|266.6|0.67|15.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|7QEbr1FeuBDgivkgvKPJAg3R5o0E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.8|0.8|19.17|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|7QNhieFkldQMk-emUYnYIH5QLF3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|165.5|0.71|11.97|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2017.06.185|7QSrv7RWD0t7i1wnHLcV3L2__8Vr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|167.0|0.71|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|7QYYWuIdOhn5-1gOnBly7I2-kK3z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.94|211.0|0.821|17.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|7QYdY8CFzbRzMiNDcOjGd9JZhvhh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|158.0|0.72|11.0|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|7QZPSeyPDLDxRHhBzoao2apNMEz4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|108.5|0.5870000000000001|5.48|['PET', 'Graphene', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|7Qf4h0HC57CIX9jGSTA_RLIoG-_U|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|142.10000000000002|0.589|8.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|7QndD1Gyj5wZNRZV1-U_e50-7Jgw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C34H187I51N51Pb20|Pb20C34N51H187I51Br9|FA0.85MA0.85PbBr0.45I2.55||1.045|217.9|0.72|16.39|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c']|bulk|https://doi.org/10.1039/c6ta04726b|7Qnzy2apkUKCzX918rxH4Jyij2on|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.025|207.0|0.72|15.8|['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|7Qt7Wn4hvnCi2QP3VxhfVslElSgf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.2|0.7240000000000001|16.73|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']|['P3CT-Na']|['ITCP-M', 'BCP']|bulk|https://doi.org/10.1002/solr.201900565|7RNJOi0tly5e0bZzfjtp8pAD6vxq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|193.5|0.66|10.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900446|7RQiNHGSZCZgu6m25oYmUDM6AsrH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.123|228.9|0.7559999999999999|18.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700576|7RcW0cw5W7uGaWlYwbO_zpj3EipZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|228.7|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|7RiLfd54pVD8aUawhq1cop6MFQQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|157.4|0.72|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn5014879|7Rk94-A5fidO-xq8oXntNYh8hVY8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.075|241.6|0.743|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi01020j|7RnKpAuALg9CvsU29hy-iPvRqt73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.792|17.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|7RsN0JT83B6HpA9ROPc_SJYsv_S_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.13|146.1|0.738|12.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|7S-QesZc_6hf0SCdEQu4Atd0Rpit|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|201.68|0.66|13.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|7SBAEMJyyasosrpkAV2pKYFzuqaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.9|0.67|11.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr03511b|7STXLCd4ruQgFkgDjR78Nefgo72X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45|||||19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|7SUrq0MmMHYdw6hDf-M3rS7BBndZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.18|50.0|0.2|1.12|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|7Semtq1H2PsoOfCu_Rtk3cSeq5CK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|209.8|0.72|16.33|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ra10603g|7SieS_drT9-Os09v0N6_i-OYEyeW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|177.0|0.487|7.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|7SuBRp2CygbpaPDChSzpBnHaoZgM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.7|0.8|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc02744k|7SwZ_TlBUMWDO3urLI_cLhT2jLkP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.5|0.71|16.25|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201601769|7Swjp75gBkF-7kjPY0nDJVtaQmWZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.5|0.7559999999999999|19.5|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|7TNWlCu8P8G_F5GC20v5X-3SC_ww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|204.0|0.631|13.9|['SLG', 'ITO', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2017.08.001|7TTgBzTnDRHt9aikXXA-s0NdprbI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.685|92.5|0.57|3.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD2', 'Au']|['PTPD2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra05564k|7TX0Snlay9sPzgDVqvmBrlgNaEkw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.7|0.76|16.23|['SLG', 'ITO', 'Spiro-TAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Spiro-TAD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900389|7TfhcuvLWg7Y5aYlpBkrobElqr8w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|186.1|0.69|12.43|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'T1', 'MoO3', 'Ag']|['T1']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|7TgqXGH1Lpt6sQa1TJ5qan_2csSa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'T1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|101.1|0.38|4.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|7TkRsby9As334AIda5G1UvcHvsSJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|171.1|0.55|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|7Tmavlh-4n_PtV4g8hbd5EHdPkCn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|237.0|0.8009999999999999|20.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-OEG; PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBB-OEG; PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|7U-KQKxPCzOyIKhXYgaPfi9Cx4Ja|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-OEG; PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|218.0|0.53|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|7U2JuleQ_cW1N9M2ZKzhBdiGUuqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|214.1|0.6779999999999999|15.06|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201705596|7U73T2N-WxD_Wy-3Ihi-RXv7Fu1O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|203.6|0.581|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp502696w|7UGYmxGqgQg3neiJwpCk6LQZtU8e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.141|228.7|0.7340000000000001|19.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|7UHCib8qR7vrMAXLITDQXwXqYDIU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.12|215.2|0.674|15.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|7UJ9-iXaLjUWB9vNYp6Q5t5L8uJx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|174.7|0.65|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.12.036|7UMWEyoAkMTJ0JnOB-dnmZQIFQXn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|194.6|0.789|14.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|7UMkdeXL-g7RKEtGzunjWOm3Iey1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.7|0.716|15.82|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01009|7UQDuozFBoi3TcobSYR09JM1waJb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|203.3|0.63|12.82|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|7UbW4ojTCSp1686-7_B3DHIolfUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|148.0|0.62|7.8|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2016.03.091|7UlPggb5CcuZmT3ZMKJIn5D6EzoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.5|0.67|14.53|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|7UpkUHrS7u06v7tI0wVXuKrZHdb7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.982|213.3|0.715|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|7UqTYBwbX0D5ixeH92BX9js4AZ_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|192.0|0.66|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|7UtpG1yts3lCh6Yfg-azXf-7XitB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|7Uxsnr84tgDnzf0PFM9mFKCK_Z5A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C91Cs5H468I255N169Pb100|Cs5Pb100C91N169H468I255Br45|Cs0.05FA0.78MA0.13PbBr0.45I2.55|1.6000001706098266|0.96|135.8|0.726|9.46|['SLG', 'ITO', 'PFO', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PFO', 'Al2O3-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900384|7V3hq4Dz1DunRbvDSPsmcYQOyYB0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFO', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.78MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|163.0|0.56|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|7V4j3hnWGgimIMcdK9ojzfsZw2iq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|194.2|0.8190000000000001|13.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11936k|7V8lHcZptMfpR0uGEJX7zWn1XYh2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.0|0.682|14.3|['SLG', 'ITO', 'SnO2-np', 'Li-TFSI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Li-TFSI']|bulk|https://doi.org/10.1039/c8nr05504a|7VMGtCo5f3bP9Y4T0cF7aMVI1v05|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Li-TFSI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5500001652782691|1.078|231.6|0.688|17.16|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|7VQ7JKk8WxfbU_pxVqR5MzAR6mF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is FAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.69|243.0|0.795|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np', 'BCP']|bulk|https://doi.org/10.1039/c9ta10543c|7VQEkFIe-2m4682fhDq1EHGaW-vs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|157.54|0.76|12.15|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|7VXq1SB2dptVERrN1K8sg54DiHbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|225.0|0.777|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|7VZSzvxZfoUWnr75K8Q2A2Su6gaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|172.0|0.705|9.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|7VkjFcxXkUfDrtOhutu8_tst9QxT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.124|158.0|0.762|13.78|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|7VuWrwV09pwwuDn1sTWAghCwYiG6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.07|232.6|0.753|18.71|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b09238|7VuyaquYn7Ey89AjJMVxK6HA8hAC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|234.1|0.74|18.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|7VwMl_k16zkZBNrgFtqX39e17LFG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|227.8|0.675|15.98|['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.08.083|7W34sZUGeaWDAOkS09Uo8hgtnsMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|203.0|0.77|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.052|7W407aMsElMD5fwZlmq2skYsQcdm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|152.0|0.65|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/cm5037869|7W7YjU5f7xiIL5w9tgfEihG24SNh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.85|163.6|0.69|9.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|7W7ZZhWv__a5UAow2wTNLcYbM89C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCClCsH5IN2Pb|CsPbCN2H5IBrCl|CsFAPbBrClI|1.7200001834055632|1.104|170.7|0.768|13.9|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|7WC4kLJ8V0Xi2S_nVS4HqAw9PIaN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrClI. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||3.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902319|7WSZegWv___6ld-zQpsDVYzY3kfi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C83H195I65N40Sn20|Sn20C83N40H195I65|(PEA)1.4BA0.6FA3Sn4I13||0.56|183.0|0.493|5.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'LiF']|2D|https://doi.org/10.1021/acsenergylett.9b00954|7WZxbTg613k6PWeCwvcoUVCGqEPT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)1.4BA0.6FA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|179.0|0.74|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|7WmzhRHXZhakcSKRfjWOIATPLu2u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|209.0|0.68|15.1|['SLG', 'ITO', 'poly(1,4-phenylenevinylene)', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['Poly(1,4-phenylenevinylene)']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/admi.201500420|7WnDLrD48gK4fUv277UV5Ih0OdoD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(1,4-phenylenevinylene)', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.3|0.507|7.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings9100647|7WoXdS0Z70nt56WFnC5pzTb9FyGf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.7200001834055632|1.32|182.0|0.6|14.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803699|7Wq8GATyUd8okzAWbq48mbQiu__8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.16|200.0|0.64|14.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1021/acsami.0c05714|7WqVTbPWQAvuQBYeln2gbW7HaV4G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|8.9|0.218|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cr']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|7WtRVoMPjBiS8U3z6jwa7_55fMrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cr']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.653|11.0|0.496|0.36|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700025|7X-wCwu8EuAIQeTTgAZ2SwHVc9Yh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|100.2|0.4639999999999999|4.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|7XGAGFOpF8D132QS6ySYXFMSL08v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|88.0|0.58|4.4|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'Ag']|['P3HT', 'PEDOT:PSS']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201500569|7XJ9NH52KQx27YYxLor7x-ecNPgs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.47|58.3|0.732|6.27|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|not processed|https://doi.org/10.1021/acsami.7b18902|7XLY8VjhQ6k6afKJOn-ydN3EFDww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3|2.240000238853757|1.41|65.1|0.762|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|7XRLxJrD27KYwbmhaWE3PBCDRrw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.04|197.0|0.58|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|7XcCLS81mfW8oy4LM_zXWoxmvNOp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.1|181.5|0.536|10.7|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.014|7XdObaqhgliR1aQpLoeYUEE7nLbh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.0|0.4629999999999999|8.64|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra05578k|7XnB3brTknJarIm-oe6wUC2oA-to|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|138.0|0.59|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|7Xwp6mUSOenHgHltAGRh9IkberYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6000001706098266|1.1|201.6|0.6940000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBT-ZnPc', 'Au']|['HBT-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601733|7YD-y0iW9cP9g9b6B92eKyKIJzim|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBT-ZnPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|235.0|0.647|15.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|7YD2VC3xvaZ9bFjIfdTRJzGRLexY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|1.07|158.5|0.685|11.62|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201900605|7YXPMHTV2tagoz0uKFH31QZdMWPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|195.0|0.5820000000000001|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|7YZ90NM4QrxGrSw7Bw5cgq11CfbM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|190.3|0.68|12.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|7YsaDRp6qP_V2b1t0Ue-KOc_rvhc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.5|0.494|10.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|7YsmUNSxXJAufFKNz6d-chRd8_Tq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C4CsH20I9N8Pb5|CsPb5C4N8H20I9Br6|Cs0.20FA0.80PbBr1.2I1.8||0.82|149.3|0.527|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09340g|7YtPD32qzZ7aAjb0qwY6lVf8s9vV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.20FA0.80PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.7440000000000001|221.0|0.65|10.7|['SLG', 'ITO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1002/solr.201800191|7Ywclaxvtqn0_Bs1QjJKjR4hvQA3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|190.3|0.68|12.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|7Z-LXWohh5Vaon4yljQUL69Ffu_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.6|0.691|13.27|['PEN', 'ITO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']|['X1']|['PCBM-60', 'C3-CBL']|bulk|https://doi.org/10.1039/c8nr00898a|7Z2fVmr5mtPrAaU5qzC-Mgsx-cRf|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C85Cs15H439I210N156Pb100|Cs15Pb100C85N156H439I210Br90|Cs0.15FA0.71MA0.14PbBr0.9I2.1|1.7000001812729404|1.19|187.0|0.8|17.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|7Z7SRTza6YKJGSKjLdwYQM3ooarj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.0|0.62|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab334f|7ZB2V-aFwde_D3wc_pdTCmEqYivy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.991|147.0|0.7|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|7ZIroC_29I09z11RJAswVtWeokJ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|209.9|0.725|14.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|7ZQR_Qtv7Mp61VOOihZFP1KbWYzB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.078|222.23|0.77|18.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|7ZRhVRSoHptQxJTuRniupzs930T-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.82|195.4|0.48|7.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-56164-w|7ZmrqvL6bRVFSb7IjZ6xJlmrSsji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|218.0|0.743|17.31|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|7ZrFp1Um6XHh1I7kS7vAUHOEYQOC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.04|198.1|0.66|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|7Zwcq0kR75eBg9j1_0aBjEODDU0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.950000207930726|1.227|145.5|0.787|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|7_53eWaspcITr0mWRas351pS8EZ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|210.0|0.34|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07369g|7_DdQ0XhyUhWoKD4MOdB_UMuj3Eo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.09|163.9|0.78|13.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|7_MwkhXTixOuaVjjsicXY5TAE6q2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.18|119.0|0.74|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|7_QjSFrIJPrusKOU_py1rFQoPWhL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|157.20000000000002|0.59|7.81|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.3390/mi8020055|7_g0PgQx_nZWhrLB1jMi3cR_xq6_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|228.0|0.787|18.86|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.nanolett.8b02863|7_hJEKlHQ2XifTV4uoxiLSrOZNU2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|183.3|0.69|13.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06088b|7_iXLzPkvKld9b6VXbHg2Le1PvaL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.132|220.0|0.767|19.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|7_rGSBMrKGuNnu76b6oc3XvvoMGI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|228.3|0.737|18.75|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|7_ywMtNHBiiUKdx5SozW0VQ_5wyq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.7|162.7|0.684|8.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2020.01.249|7a2ABJYdMjrxwYBr_IZf9LkYJgNj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C94CsH470I300N188Pb100Rb5|CsRb5Pb100C94N188H470I300|Cs0.01FA0.94Rb0.05PbI3||0.97|242.2|0.58|13.59|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|7a8qnFHBL-ZC7L_4LdVTfbD_USzJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.01FA0.94Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.95|96.0|0.743|6.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|7aBPhNq_jXDLCsEA6XliO8xX6r2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.8|0.76|17.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.181|7aRa_qRjFS_ye5XLaPZRHY-6nFSt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.318|102.67|0.31|1.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|7aVI3h69Xat5BnKZTmS-FDmvA3f0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.882|172.0|0.419|6.36|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||7abMG9_L2A4T7GfSuCWHHs5pQteo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C100H515I249N185Pb100|Pb100C100N185H515I249Br51|FA0.85MA0.15PbBr0.51I2.49||1.13|234.0|0.703|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA-2F', 'Au']|['PTAA-2F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801668|7afjCLd9KDVCwLaI2joxe4EqKQfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA-2F', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|163.0|0.74|12.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|7alVih-2P2aYEx9DhgRcdFdqZye1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53||1.12|242.0|0.725|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201900830|7axcm59PT_hFZg4cV8mQeUh0swYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|76.0|0.175|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|7b9iQWdy0eOzyhWlWLh2AbfHyHSq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.0|0.5770000000000001|9.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|7bL1l-evtNmDmGLNp_al4bsEzWh2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.8|139.1|0.6779999999999999|7.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.chemphys.2019.110408|7bSROfLcU1mEnYuu70PXBuSUbfPs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|7bfIHRimNWxON0mBNh0RKM_z5sqJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|102.8|0.6|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|7bq72FyNaTxo9X4jzz-uALvvJP9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.0|0.74|14.06|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['CuI']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.8b20924|7btIAAqHQsMUTpjDfFVIE1XlS_iF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.04|145.5|0.62|9.38|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|7bybr0PJso0otazhyMAdsy54c5o1|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.6000001706098266|1.17|216.0|0.753|18.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD; PEDOT', 'Au']|['PEDOT; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01332|7c0K8Oy-QAIf3VTQ_pH_nbIUh-vj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD; PEDOT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|118.79|0.6459999999999999|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|7c5YhXCV7TUahzn7lZaI0ZwuvAio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CGeH6I3N|GeCNH6I3|MAGeI3||0.15|40.0|0.3|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05741h|7cCmjL67nOvGuXgRp9TJFPj3YN8I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAGeI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|1.03|159.0|0.54|8.8|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuI']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/ente.201700422|7cIKN0SESA22-ldkRupCmk4OxcsX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|178.6|0.46|6.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|7cINPFBIMiyDzMu34TUSBfr4WCf3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|142.5|0.6|7.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|7cLGGXgmjE6GvTiJKY6W6S9ipVUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.6|0.72|13.82|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|7cN6hwlvVgD1Ue7ouETHIqmEZLY9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|159.2|0.64|9.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|7cTLvLa-9JlYwlVNqzXII8mlSvhF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|7ce4j47QJN_0TxEvzB0TuFfKfaPp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.9|0.52|9.03|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|7cjy3Cp49EDXfp-ySIUYEY7FirUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|108.0|0.5|4.6|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1088/2053-1591/aaaa88|7crxFJjbXBa9K_BueIJHG8ukS8rD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|177.7|0.349|5.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings8120461|7cwdxXtoyIp0hU7Y-I8MMiR_vvxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb4Sn|Pb4SnC5N5H30I15|MAPb0.8Sn0.2I3||0.85|228.7|0.762|14.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|7d1ga7wvlx--_wjHd-vDEX0eMTNp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.8Sn0.2I3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.04|216.6|0.81|16.36|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-TA', 'Au']|['CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|7d5AYbLkGWE-kMXr6sjCf_xpNOhf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.4800001578140891|1.0|221.8|0.7240000000000001|16.06|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|7d5agelV62Q2NVl3l991QGpLnt4s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|0.99|213.1|0.69|14.56|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|7d63ZWb6EHgCuuhQueY8Mc1Gm6dk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.907|172.77|0.737|11.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||7d8za7Iqxnxd7OzrpnbbaGWNwRnp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|211.0|0.58|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO3-np']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsomega.9b02934|7dVB0JiaUxNn23ezPQ3aBcMexQdJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO3-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.1|0.6559999999999999|14.73|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|7de0ecL7IT-0y1oKKxf6YN0e0oN6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.88|105.0|0.62|5.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|7di-mW5mo1m6rq7ty-6givsB9JTX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.9|0.434|6.91|['SLG', 'FTO', 'Graphene', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2016.08.013|7dsr2UesUBs2R8i88p_dVDz3Mlov|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|142.79999999999998|0.752|9.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|7dyLKyftgjdVAibuVHIVEYlnOmuN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.947|0.03|0.34|0.00083|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|7e-KAA_ImxDbhpme-MuGHzPH1hJu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|7e1HkIbIYoDi0zdVcESQz8ussOv3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|179.20000000000002|0.71|12.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.carbon.2018.07.010|7eEWMZGbzBZf5N1tiPR3d5VbiNSz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.02|232.8|0.735|17.44|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|7eIFg4qJ80JIrlvCJbo_yKp3WthX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br510C900Cs50H4653I2490K50N1647Pb1000|Cs50K50Pb1000C900N1647H4653I2490Br510|Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49||1.04|212.4|0.6629999999999999|14.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b07610|7eJ7NSBwatzSskdU1T5rLBhh2sEY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.0|0.7|12.7|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsaem.8b00094|7eStvc1DM4YlvxZ_Cgfie6UlznQm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.6|0.7929999999999999|19.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|7eTykn5Qr1QDZMj1Rw9gshQcaOCA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00600|7e_gGpVhGGKICjNdquEunNYBHhoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|226.7|0.8190000000000001|20.1|['SLG', 'ITO', 'PEG; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; SnO2-np']|bulk|https://doi.org/10.1002/adma.201805153|7egZjEgR2q3QMFWGcNnv-mGFZgEL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85|||||14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06044d|7euDhOdjfvMlHL3jfACQOo0gytnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.0|0.787|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|7euYSXxsX75smSrPCB3jL2sh0tlW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.91|195.7|0.741|13.24|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ee01675a|7f-bIsmHAvAJNHMwzNj78QNwmC1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|113.0|0.401|2.57|['Au', '4-methoxythiophenol', 'Perovskite', '4-chlorothiophenol', 'Au']|['4-chlorothiophenol']|['4-methoxythiophenol']|bulk|https://doi.org/10.1038/s41467-017-00588-3|7f0wzaL6zgHK2_oIvfK4pUYNL-fZ|a perovskite solar cell with the following device stack: ['Au', '4-methoxythiophenol', 'Perovskite', '4-chlorothiophenol', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|74.2|0.6409999999999999|6.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI3-QDs', 'Carbon']|['CsSnI3-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|7f6vhD8zyZ5LM9_uNw2Eqw4JXiMX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.3|0.76|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|7fBI8Z6YuE6xQmAYAb8zsCU7Fb4X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C22H44I10N6Pb3|Pb3C22N6H44I10|(Ada)2FA2Pb3I10||1.08|143.0|0.5|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/aenm.201900284|7fHtTPdOlLgyPZocjoquRhD1CzL4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ada)2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.98|125.0|0.55|6.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|7fJITvmIEZIEi4CfXNVFIW6DDUBP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|60.8|0.313|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FT73', 'Au']|['FT73']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|7fLsc-muH3Rk6GFhW3mPpTO9Y4gR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FT73', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|163.29999999999998|0.767|11.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|7fNupquKI83gQgQJTfzvWP-jEk4Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Ag3BiI6|Ag3BiI6|Ag3BiI6||0.58|51.2|0.61|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/solr.202100077|7fOFzKPbQ_L5UwTdQQ-HYjqQfwgd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Ag3BiI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.105|207.3|0.7659999999999999|17.55|['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00375|7fSwjQEFwO1Lg8oKk0GZWUrDW_uS|a perovskite solar cell with the following device stack: ['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|182.0|0.42|6.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2016.07.033|7fY9-Qxr69tfyNsF_4OyWesihskt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.991|200.8|0.56|11.13|['SLG', 'ITO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/jp412407j|7f_dpIZHOUlr0O-ex98rWkxwM5LE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.11|215.0|0.79|18.75|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']|['rGO-4FPH', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10773|7faONVFbr1gu4hn4va1rmSh7mbau|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.240000238853757|1.48|70.3|0.805|8.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|7fah4L2pbrNCu2b2V7qumO4h_1jx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.932|165.10000000000002|0.527|8.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|7fdTZgMkh3V60bZlxstN0E8oxQPD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|189.0|0.78|13.1|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|7g12LRannpdPKrQFPbjvy2H-ygbz|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|190.0|0.7|10.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|7g3wCSMLNfjO6QELuAke3YD3fibL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|220.7|0.75|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00028|7g7FlWewuWQtxwWTyXa8mcE_Cya4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|133.0|0.44|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA07972E|7gBgkXBZ-r6B4Lr2zitr8AEiiobW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.013|214.0|0.72|15.62|['Y2O3:Eu3', 'Au-np', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-07218-4|7gFh7-tcM6I7V_a035QG17c-yb8l|a perovskite solar cell with the following device stack: ['Y2O3:Eu3', 'Au-np', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.2|0.68|15.8|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|7gLuPXXfsONc6f7Tag8QvKQ-JWzc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.6|0.69|13.83|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adfm.201703254|7gWSIetHM4r3oYxPn58ak3kCSaqW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.04|210.0|0.73|16.0|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|7gXLfmRzKixnjSbX7BGU7bgsFidi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|212.0|0.595|13.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|7gmoF-htVEosszQwEyKoLwZ3Hx8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|182.6|0.563|10.23|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02562|7gxcMwuP7zJAdJMsKVZzptD-c6Go|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|198.3|0.73|15.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900235|7h6Ti4DsuQ1PAm4aQxPj00xka6YF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|144.0|0.609|7.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021923|7hAVAWqIa1IbWpmblvBDuaXy7rPw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.09|192.1|0.64|13.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|7hAVE3BD9iY9wvDeXmZp4kRWQHmt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|167.7|0.6629999999999999|12.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|7hClqnI_cf6oLISlnOMgmKJfelMW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6120001718894|0.902|210.0|0.7659999999999999|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201604744|7hGUb29WTkwnYfXOWvS_jMhjvOBn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|190.6|0.53|8.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTSSe; rGO', 'Au']|['CZTSSe; rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801459|7hMfIOjjRLLQj1fraixut7gWe3XB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTSSe; rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7500001866044976|1.12|93.0|0.752|7.83|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2017.09.006|7hVxe7FzWpasrjh-IpZPyG6UuGHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|126.9|0.71|8.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.21272/jnep.8(4(1)).04004|7hfBZ8dKDBTrErzXIxPtYzO4wZZT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|176.4|0.75|13.1|['SLG', 'ITO', 'PB2T-S', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PB2T-S']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/admi.201800090|7hoMqMr_xHq8eoQLz7MrWn69WHsa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PB2T-S', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|234.7|0.77|19.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800173|7hyHtTyf-W6eTafGWQaXY9nEB9Z7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|191.0|0.74|14.18|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|7iJWRFq3IcmBkhcI_IJ_zdWk3vuG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|7iKePzARS3XXE99VbMA-FZWUFcjq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|177.39999999999998|0.74|11.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|7iOboToyQu-uugllqlxBYB7mVTIw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.3|0.67|11.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-017-2401-5|7iSfTZN3YfCKChWuynJiixQOwfbP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C95Cs5H491I297N174Pb100|Cs5Pb100C95N174H491I297Br3|Cs0.05FA0.79MA0.16PbBr0.03I2.97||1.07|199.6|0.701|16.6|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900204|7ibieEGsAWVN7Oc56fqqhKsf7e5f|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|233.7|0.64|15.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|7icA3YXVIfqsLatUWCyjGGqp92NW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|81.0|0.35|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|7icTrg4rnYcnnUabp2HX2AVGbkyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.0|0.61|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|7ifbRO6iXpLgOXg0wQlrTelVGqXB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|251.0|0.69|18.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|7ijMfwFRvG6kweh52L4QCXQqHJRe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.082|226.0|0.6829999999999999|16.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900020|7iyjn9YaihzdXRqkjpOkUIIuQCKo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.63|13.0|['SLG', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|7j5hvjX2EN_DUUeYl1OSpdgVNKsz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|84.1|0.235|1.15|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|7j6e-fGaj4wQaQPUZ_9yRdLxFOHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.3|0.64|13.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|7jUwUtPBAgW683zDUS8Q4s51B49m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|7jY-S8BIIMWWfrO7ohWMOcILdJ3D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|210.0|0.455|8.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta05674e|7jYwUHdICmowtEdSuEk6jq_X8iT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627||||6.57|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta03336j|7jcldDmP5oOogAC6SquWJj2Gqxp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.04|218.1|0.753|19.62|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|7je6hCRAr8ndJVfF61aFgpss4LLG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.7|0.612|11.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.09.138|7jh5_VWDV2KqUAmrvoTAGIp2YVyE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.0|0.71|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta09165a|7jhqj4luIBW-21lgYrIm3QB2guYa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.0|0.69|16.2|['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3-c', 'SrTiO3-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|7jio6GV5WgeCVPbtw5438GNFHwfB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.0|0.613|12.7|['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2015.09.054|7jmSLtmnbiyn2EWRhnVGYVdqxwwn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.8|0.6559999999999999|14.12|['SLG', 'Zn0.8Sn0.2O1.2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO0.85Sn0.2O1.2']|bulk|https://doi.org/10.1002/slct.201702419|7jtBRZwxzY78VlTZUO-gwBO_sorQ|a perovskite solar cell with the following device stack: ['SLG', 'Zn0.8Sn0.2O1.2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.15|232.4|0.75|19.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Hexylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Hexylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|7jtI5b-nSvuV6IJQVKbNPw59czAH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Hexylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|230.5|0.716|17.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|7k06LHvszxGGr93URR2GB3dskddY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|188.0|0.779|16.1|['PET', 'APTES', 'AuCl3; Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06465a|7kEDeaPII9y4xNbiLHAnevDnkSPD|a perovskite solar cell with the following device stack: ['PET', 'APTES', 'AuCl3; Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.5|0.68|14.05|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|7kM_Dl1SYQ_wHA-Jm62hgKEsu5oX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.1|0.66|10.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|7kSXIMyihV48Sm12XHWEC9EOoOOd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|170.6|0.67|12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M106', 'Ag']|['M106']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|7kV9TbmUv6yqrDwS1DARXi14GcHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M106', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|234.8|0.68|15.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|7kX2dH1IVLUFoVfv7inlNgMYalQX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|132.79999999999998|0.68|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|7k_RxZuvjSEHD-Z_A7WOg5gIZ3M-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|7kd-t1izJodWR5uwDWWpJE4O0RQw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.73|146.5|0.5|5.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7nr09657g|7kdj7mkcohCcHcJscOYKtZwwUaxI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.04|210.0|0.66|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|7ke3mLf6Qwaz8WflfG4fs9EO7x3c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|91.0|0.312|1.76|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.012|7klg6XNowDYQFeHxG7nOrydRV01a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|1.2|0.35|0.03|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|7ku1luH4eoSiN0pIrYbQ3Zz7vCAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.498|42.7|0.491|1.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21291j|7kwubMQorZKkKLqqFIBc448WnM_S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MASnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.659|200.0|0.46|6.1|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|7l1WzA3Wu7qVptruXeJgxmJWYqEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|51.900000000000006|0.198|0.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPBi', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TPBi']|bulk|https://doi.org/10.1080/15421406.2017.1338095|7l2hllGX40seho2eFEJBz7MmCD4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPBi', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.0|0.57|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403344|7l5oCNnrzkKb34VL52fr2LtwVVRO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.27|158.0|0.308|1.3|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|7l6x7sKya-yyfwhJ9tuAdnjF_7SQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.09|215.0|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|7lBYLdU-j_yVcVrHqSnUGm5mo7oA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|180.3|0.773|13.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA', 'MoO3', 'Au']|['BTPA']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.6b06291|7lB_MbD6d1ZJU9ZlwTJEzDK9vDzp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C65Cs5H341I249N114Pb100|Cs5Pb100C65N114H341I249Br51|Cs0.05FA0.49MA0.16PbBr0.51I2.49|1.7300001844718749|1.1|208.5|0.662|13.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903146|7lRQElTB8ixRfstU6Rm8OBxP6qGT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.49MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|178.70000000000002|0.68|11.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-016-5196-8|7lVHVaNx7qMX6va8mCcgGdJhdcRE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.0|0.785|18.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']|['PTAA']|['C60-SAM', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms12806|7lkrBJefSu0tLcZxIyEpAIUmHfm4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|0.84|11.3|0.54|0.52|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz400348q|7lrvCpN7uDKg5twBjo-O1wUVvZFT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|139.0|0.505|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'ITO', 'SLG']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.06.023|7ls5FAAaw_A1MV0aF5YsWuEuSMf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.112|231.9|0.8009999999999999|20.15|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|7lsy3ye0v95y1W6XaXpL095k9kBC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.05|225.7|0.64|15.32|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8ta10876e|7ly37KYEimdmT0FaV8-UCf3ii0XX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br9C100H600I291N100Pb100|Pb100C100N100H600I291Br9|MAPbBr0.09I2.91|1.6100001716761378|1.114|141.4|0.65|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'TPD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.5b01716|7m4YXGA-PJ3BCCvQDMxPJ3KKPz7H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbBr0.09I2.91. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.991|246.1|0.758|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.023|7mCwRUG55MY3iAuuHShvejPQ60_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.7|0.696|17.29|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900119|7mDCq4R9pBzo7teFYDhtsGZ9KgSd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|219.0|0.76|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-019-9452-1|7mEZdxsxWHTyaP0IBr7hr7zjEYZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.5|0.742|16.36|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|7mGf2sIkdYoz8F6Vv69ZpUhJbjqB|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|224.3|0.735|17.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|7mqfl-Kins75pcPg7dZghnKoshr0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.0|0.765|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS', 'VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|7mx7mlZ1vydtlK6ba_mcNpyVugC2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|161.1|0.52|7.01|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2018.10.034|7mxFgbpDxLIa7nPByiTzw4vveJlB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.1|0.742|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7TA09721B|7n-Z4x6dh-dlIsz52oRkkJXb8LzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.53|195.9|0.61|6.33|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|7n0MMtiA872Cs2QAuVlr_3MzFvkd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|206.8|0.602|12.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|7nDB5ifoNaiYV4x1-t3X9K_CBfVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.9|0.579|12.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|7nDJlwqOVqktwV8BQMc16w9Vwi4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.987|196.0|0.6579999999999999|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp412655p|7nNV5V4qW-WN_jR2wmCb6Kv2e1Iu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.6500001759413832|0.88|109.0|0.38|3.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201400960|7nOCM3nXvlBT_fVX1EujxzRzVHZg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|163.2|0.63|9.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'd-PCBM-60; PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['d-PCBM-60; PCBM-60']|bulk|https://doi.org/10.1039/c6ra22023a|7nUAoaVdxawt8qdHckCNjFcETdSc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'd-PCBM-60; PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.0|0.73|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600999|7nYkMASAGLGnzgihybEgBTEK09MI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|143.9|0.53|7.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|7nb2mIREy1eqWnaFKQJSj8vHfRFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|162.10000000000002|0.46|6.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|7nfkekXZ4aOU7HncUOsgBzoofh3G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.691|15.23|['SLG', 'ITO', 'SnO2-np', 'Li-TFSI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Li-TFSI']|bulk|https://doi.org/10.1039/c8nr05504a|7ngeH9Pt7d4qkT6DnNZekI209jmd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Li-TFSI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|0.77|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|7nm7TI8B_4UT0BxXliVPHxoAoDdd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.0|0.778|14.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201800054|7nmeCFJVbFmJPodi3c50tv4oXK2w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|187.0|0.747|14.7|['SLG', 'FTO', 'TiO2-c', 'STHNP', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'STHNP']|bulk|https://doi.org/10.1039/c5ta08250a|7nsfvFCBgE9wErZMCg6A1vToRVx-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'STHNP', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|200.0|0.743|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201900884|7ntdO7FEMTNFGasNI15VixlYNRuX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.156|222.8|0.7559999999999999|19.47|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.202000071|7nwKrz_VAnnqxTacegJgDXbOb1-q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|171.1|0.69|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.12.025|7nyvLZb2SkW7oqI4aLDlJ-hKBfjm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.173|220.5|0.75|19.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|7o5yyEXS0Ypg0LRrBf_dBJejqniI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.5|0.7140000000000001|15.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc05252a|7oFpWG_Q15Q8mHtf0ZaZTmYXFLxT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.97|150.0|0.611|8.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b03324|7oGaecqOU8Jfs_WmZn9hsYcA30IN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|212.4|0.62|11.03|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|7oHmOq2WMfdwt7ZYn21nvWRp958k|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|211.5|0.753|17.59|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|7oPDbDXEOxlWrNFjq89yf_yExw-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.8|0.75|14.52|['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS; PEI', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|7oasjZ3b2zEmtsOdBTC91GOUql7b|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.984|211.0|0.723|15.0|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1149/2.0161706jss|7odKB0tFqHVdkZKeAmKiHnjh09TW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.004|224.46|0.665|14.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|7ohS3H1ZQRTDO6y8JY8HliV1-ObH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|202.0|0.69|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|7ojiG0edokblNiz1dcy42z1ZVzfW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb97Sb3|Pb97C100Sb3N100H600I300|MAPb0.97Sb0.03I3||0.856|196.0|0.579|9.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/met6070147|7p1-8bPcw7pBT0aEjHscgnJ7wNCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.97Sb0.03I3. -C2Cs2IN2PbS2|Cs2PbC2N2S2I|Cs2Pb(SCN)2I|1.6800001791403176|0.9|42.9|0.44|1.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.8b15578|7p19Vh2L5DplsEezZ2yTtJwWgYQa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs2Pb(SCN)2I. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.857|63.5|0.757|4.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4fd00128a|7pJ8FIAG1RamgZ27DU9n0TbSL1CY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.77|178.79999999999998|0.43|5.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ3', 'Au']|['H-Z3']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|7pQ2nEyykKfuhq8_oYfYxgTdrA98|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.04|217.0|0.74|16.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|7pR1HOJ2CzQjR9Kh6yulE0Tuu1gg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|179.0|0.621|10.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/pssr.201600395|7pRz41MKFTFSvxgKQOrU8B6d2Gqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br600C1900Cs100H9823I5400N3477Pb2000|Cs100Pb2000C1900N3477H9823I5400Br600|Cs0.05FA0.7885MA0.1615PbBr0.3I2.7|1.5800001684772036|1.12|234.0|0.77|18.5|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|7pUkCcetTZB7b0Wyezxb2dzhISf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|157.4|0.58|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|7pj4gLaF17zyBJWEMcNKPF9BQLoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|170.79999999999998|0.37|4.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|7ppGuSn8E-pS8a3AOQBsHajR1DL8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|176.29999999999998|0.73|13.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PST1', 'Au']|['PST1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03773a|7pyNHIsNL6jMAI3QsvRdSk82yxmL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PST1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|75.0|0.28|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|7q6TMi0TKE-9hIhVBJWQrlZlJ4Qk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|188.0|0.5|8.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Me2N-DATPA', 'Ag']|['Al2O3-mp', 'Me2N-DATPA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cp04685d|7qCjmqkUA6MFCYAhlejMzO9RSopL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Me2N-DATPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|0.93|160.0|0.45|6.5|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuI']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/ente.201700422|7qF7afeupLeF1RyrMTat1JCKssG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712|1.05|226.1|0.7340000000000001|17.43|['PEN', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.8b02079|7qODecAyPgJfXvQfdMafYUzL-vvb|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|7qRopaI5Qj85aVItpWlqepCzXG6M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|230.0|0.72|16.3|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Spiro-MeOTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.6b00039|7qVg8GCEO3h-GuCDUf0jSnvwgzML|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.095|226.0|0.785|19.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WT3', 'MoOx', 'Al']|['WT3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|7qWlmHlvrdYV-jC2tTfcm6ejspIo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WT3', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|209.4|0.6579999999999999|13.37|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']|['Ome-DPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|7qYz8Qqj-ulztTbLWXUnMwa6qp7W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|183.3|0.736|14.71|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|7qrap8hVBjhFg7JpLtYE6RQurJ_k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|171.20000000000002|0.674|10.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|7qsf9xKvWzUNmtdNxoAk9a8Mal6Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.0|0.73|16.0|['SLG', 'ITO', 'PCT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PCT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|7quAvmt0U0KLu7crDIOIp3_BS3-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|214.0|0.7709999999999999|17.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|7qyTalgWCFxfUyODKiYHbwJyPXzJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.259|164.60000000000002|0.45|1.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.10.088|7qzNHmx8awQVQpGB86ceaIqBE4YS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|193.0|0.7|12.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|7qzeY-j61BHa_SYGuBk_H8zkRKOu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|179.20000000000002|0.42|7.66|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b06343|7rFLB6o1k12S0WYyEXv3ZWMRuk4s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.17|6.9|0.34|0.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900402|7rRtmzEDiMRRcw_bkqxs-ItLJSs7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C569H969I300N133Pb100|Pb100C569N133H969I300|(PMA)0.67FA0.33PbI3|1.640000174875072|1.17|45.0|0.48|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1063/1.5045277|7rXs_8ZF6nQdZ7C0w9UQb9Y0qY_A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PMA)0.67FA0.33PbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||0.96|207.2|0.62|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1361-6528/aa75ab|7raG-4CoVjMDud7dMez6Z6npAlav|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.92|187.0|0.58|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02858|7rbASqOfTFwSvpYBSNNez21LDFQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.19|64.0|0.67|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|7rurwIRh8wBTPBTk0gi5_iC8EFtp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|232.3|0.6459999999999999|14.8|['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|7rwipSks3xuOi4B51oKpBKP72yg6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.96|170.0|0.71|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901685|7s-EsgvV7mbcLvAIJ2fKGOPyILO8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|172.0|0.74|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Sym-HTPCH', 'Au']|['Al2O3', 'Sym-HTPcH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp03396b|7s1YizuIGrgdf2W7pr8CfUtu_icm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Sym-HTPCH', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|151.9|0.75|12.32|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703236|7s401h_8EOiGAL1HtCggPb3gydIp|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.02|118.3|0.711|10.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|7sDMJPgpSoS6fE38sPWS2JLexYJ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.05|219.2|0.73|16.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|7sEpMGli57N3k9XF7NARY30NN6Ks|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|176.70000000000002|0.726|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|7sSYoZ3yrrnAeTDyoPdR_XRcGkls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|182.3|0.62|11.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|7seacFe8wYlYQKj_UcppyJM22LwW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.8|0.655|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.026|7syndVG35u0uorYHYnRuL5E7JY39|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|180.0|0.69|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|7t3XD1K6MMzCzdsN6_xQ07pY_LZu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|122.0|0.76|10.2|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|7t4cxJuf5vPxEE-ZCKdwTPrq7Aai|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|185.0|0.7020000000000001|13.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2015.09.054|7tC6ao86H3FdKbeo_oDFF660J7R1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|221.4|0.75|14.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.056|7tEDVLA-CX7r-owUYPZYvofiydnV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55|1.500000159946712|1.12|221.4|0.655|16.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700374|7tU6j1DqImPIAaeV6NAiGqtF_cbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|238.1|0.7|14.4|['SLG', 'FTO', 'TiO2-c', 'ZnPtriazine(gly)2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZnPtriazine(gly)2']|bulk|https://doi.org/10.1021/acsaem.8b00447|7tWd7U-3pMHQXtevdNDARPEbKy5K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnPtriazine(gly)2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|224.9|0.7509999999999999|16.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|7tZCDxNzQ7zwR1CfBXocslVErwfC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|139.3|0.72|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PDPP3T; PCBM-60']|bulk|https://doi.org/10.1039/c4ta04482g|7tbO-xX8v3cPrq_mvf2dHZVS35Wi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.7|0.718|13.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|7thAhUQydepr5C7kMR5_3l0jOtLe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.01|237.0|0.7340000000000001|14.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon-nt']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|7tid4E0ZPmLe1H04QLfTXTN9dpAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon-nt']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|37.6|0.7809999999999999|3.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01198a|7tjz6PhE_dUgPD6Yeg_8vqUUXb2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.947|194.0|0.546|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.03.030|7tt3wV5erTLcE4eac-YmEV1jhQRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.027|192.6|0.659|13.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']|['PEDOT:PSS']|['PTTI-1']|bulk|https://doi.org/10.1021/acsaem.9b00857|7tzeb1Uw-ylvSEzJvjrLBplTfWUs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.92|200.0|0.79|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|7u57OSktDqVG_0FQEamKvMv19NZv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|161.0|0.482|8.3|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1246/cl.150056|7uGqkVdnfZhirMy4uaTVOeiJzT8-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|198.14|0.74|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|7uJkewBhqc1Wek3nqX4P3iVZlPAn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|159.0|0.4429999999999999|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|7uR0zl1IWe2WN8ZAgi41anUQ3tpz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|0.643|4.15|0.429|0.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9014-9|7uTkw606D7JDe7JPHg3eHZyHpmXM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|194.0|0.535|10.17|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|7uaUpbOxw6QfNW-lHWsuuRQ4rGj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.0|0.72|16.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3; MoO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen', 'Cs2CO3; MoO3']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.057|7ueUriU1HUyY-UdoUWMu4f6QzQp9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3; MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.027|230.1|0.767|18.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|7ugWFnAMEhIDMreiQOkrImnnHM4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|208.0|0.746|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226907|7ulLP8PfGQmPtFraRCa24vTDS4va|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2C4CsH20I3N8Pb5|CsPb5C4N8H20I3Br2|Cs0.2FA0.8PbBr0.4I0.6|1.780000189803432|1.22|161.9|0.76|15.06||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|7unAEta71s_ySAvCAzHoA-95QcKB|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|166.0|0.764|11.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.9b00796|7urphEkMqv5Gpg1Be9IWeXXujOF5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.92|192.5|0.46|8.09|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|7uwyb5fUS-f8jOlK-CWMYEehoHNT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.7|0.75|16.98|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|7v4bYp3Q3OBtckEpSZBFdYpnqcQq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|164.7|0.53|8.9|['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|7v6vzlHhpddVOefv6SMtbxgBCVOq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|216.4|0.609|13.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/6/068803|7vCIVt3L9vcj_dCd-GbIXckmFixD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.8|0.72|12.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1166/jnn.2018.16064|7vLLZe-2_CWJMtWtwoQC32we8tj-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|230.8|0.7759999999999999|20.05|['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO-EA', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|7vMQVex3SvkhvJWTmLYWVgH3f_Ah|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.50I2.5|1.6300001738087604|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901372|7vXOhmbXNGssXxuGIA3HMYECGofk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.50I2.5. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.147|218.0|0.69|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|7vXQdTMPbY6aOWjW0VJjyBIjR5sR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.14|222.0|0.792|20.13|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|7vbf7I32-aZ259ADELAZ2LDGNOrM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.5|0.79|18.2|['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-np']|bulk|https://doi.org/10.1002/adfm.201702090|7vevpNod3GOZ-TdDNDRIVg60N19n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.7|0.72|12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06558e|7vjT3xBrAigNiyim_dVsXQ2ZmdID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|158.6|0.687|7.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|7vla5REnRPk_xt-l3YpVuHsC4yIM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|226.2|0.75|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700073|7vmYIDJ2Ok5PDBY_I6OuHZjUOhDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|163.0|0.772|13.1|['SLG', 'FTO', 'TiO2-c', 'MPMIC60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'MPMIC60']|bulk|https://doi.org/10.1021/acsami.6b06164|7voKe9rIutAvxxPTGussKjY-8S-R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MPMIC60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|227.7|0.752|16.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1088/2053-1591/ab1923|7vs0BcBhbk4CaOsNvkpP5l7GDLtG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|217.0|0.718|15.2|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta05989e|7w61dCgR637A4unNJgxYhhIcWxS4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.075|219.9|0.74|17.6|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|7w7uKXpl8RyKS2wb9AmomRPaTPci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.15|106.1|0.7|8.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2018.05.004|7wRV7Gx_n-0pwY799vsuVNiV8x6Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0800002217927744|0.62|104.4|0.52|3.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Au']|['NiO-c']|['none']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.048|7wWZ3DbAM4AlTym0QIf7EhyepzLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|106.0|0.703|4.24|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9518-x|7w_v4D6Ze7W6rMnheZutxaYbJank|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NSn|SnCNH6Br3|MASnBr3|2.0800002217927744|0.69|97.7|0.342|2.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|7wePelF9w-0zj2VU3znE_btAfXuG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|220.8|0.79|19.36|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|7x-IYF0pJ_n8y3hNrDeb2V0vqd_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.8|0.67|13.56|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|7x-vz4NKtv6xHgcOwkxKYHC7dAHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|217.4|0.77|18.18|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|7x4gyNFyZV4Qb5tasW53rtVXoN9S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.37|132.0|0.283|1.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BChl-1', 'Ag']|['BChl-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.08.051|7xH6zp7nHk8D5qi74TUGZmgfK0PX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BChl-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||1.147|236.0|0.74|20.09|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01483|7xJQVG8iodLFMYW_ap1O46LN-BmJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|109.0|0.35|3.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ra07686f|7xVwRAJfZwR4Ru8DA3ZqhlYmT7ea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|163.0|0.67|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp04749e|7xrdcBPhSdq76VwrhKvngxQ7mPp_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.1|202.9|0.795|17.8|['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|7xs7JJPDs6wYqGBWN0gAr4AEcK5E|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.0|0.789|18.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']|['PTAA']|['C60-SAM', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms12806|7xtUCwS1Ny8JvfDPGoTQnyK3fORk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.0|0.66|10.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02976c|7xwMJW7XFSqClg7VH7-ZcLFpyeuW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5300001631456466|1.03|229.2|0.64|15.12|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|7xze5ADerBW4B1wsUMdGn9xqQkpl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.0|0.664|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800499|7y-XmpSTLuc55aOsLqrQRYiPbp6V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|224.7|0.64|14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c7cp02523h|7y06tlx-ioX2S-xl-zgbshMke80N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|171.1|0.732|11.65|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|7y0OLGG_ZvJKp4ZRqiFzs6Wuh_36|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|194.6|0.56|10.3|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|7y48SKpDmztDOHA1Ig0cXhjrbcss|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C25H135I72N40Pb10Sn15|Pb10Sn15C25N40H135I72Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.12I2.88|1.2600001343552385|0.87|286.8|0.7390000000000001|18.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|7yC3YctsXAoWXAyhDuBhrk-hmOrP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.12I2.88. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|214.0|0.711|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00573|7yDNjhWeBZMWp-A0zuyo6Mc9rNmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6020001708230889|0.85|183.0|0.631|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|7yHOBFW4XkSmiL4gFrPlouiCoNFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BiFeO3|FeBiO3|BiFeO3||0.49|2.7300000000000004|0.483|0.0648|['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']|['Graphene']|['none']|bulk|https://doi.org/10.1016/j.optmat.2018.07.071|7yNoItq5ZoCAPwR-54N_iR2Jc9g_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']? The composition of the perovskite layer is BiFeO3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|217.4|0.705|15.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|7yXkMSlH0vXTuJqPqz1IJ_uFeo3m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|172.5|0.73|11.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nj05941a|7ycTIS1WXeW3LJKvgT38_GUoIZSg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.77|229.0|0.595|10.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']|['CuInSe2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|7ysBry5-8OWVTqR1L0JfjxP_Miqz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|218.1|0.5760000000000001|12.97|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01076|7yyI3Gc-tB9ISaAle6loS6bxFBo1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|235.4|0.72|17.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11800k|7yz4pH9bfa4Ui9gLYLW-Ys5cCVN2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.0|0.736|17.0|['SLG', 'ITO', 'PTPD', 'PFN', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PTPD', 'PFN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|7z3p9CYRtJmA0vU7aoOkjgiKtMw1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'PFN', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.0|0.72|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|7z52OLp5Ug6yyF9DttO7r1praOk3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|7z8u5xvhGzXWDBiTx-P_eGhxaIA0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|1.06|223.9|0.68|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05541f|7zDvrVlzQg9q5U6oXurbZL57ihRv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.11|213.6|0.642|15.25|['SLG', 'ITO', 'C60-lactone', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60-lactone']|bulk|https://doi.org/10.1021/acs.orglett.9b02635|7zEujvhO_4eVADF-SeLXBu-AnskM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-lactone', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -Br100Cs100Eu3I200Pb97|Cs100Eu3Pb97I200Br100|CsEu0.03Pb0.97BrI2||1.208|146.4|0.745|13.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.10.008|7zIn-HLI9xj40xa4XTynL-w1w6LH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsEu0.03Pb0.97BrI2. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.380000147150975|0.46|184.8|0.6579999999999999|4.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|7zRRQV4WJwCCXMMXLPVJFlNlaDxv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|187.2|0.71|12.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|7zi9DadIGk40yyaeFqsHxeKtXoZE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br291C100H503I9N197Pb100|Pb100C100N197H503I9Br291|FA0.97MA0.03PbBr2.91I0.09||0.91|215.0|0.68|13.32|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9se00933g|7zuoovNFAuTBP2mST5CFVsegts9P|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr2.91I0.09. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|203.1|0.597|11.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|7zzVuXFw9q1dIOXtyo9Pp29xVOPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|200.2|0.7120000000000001|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1039/c4ta03684k|8-L2JEzwJah8ADY2hco2-HzE_dUk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.044|222.3|0.6990000000000001|16.09|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b13648|8-SwIifvTdLrtgCEuxLbRVMHERWQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.43|123.0|0.396|2.13|['SLG', 'ITO', 'CuI', 'Perovskite', 'ICBA', 'BCP', 'Ag']|['CuI']|['ICBA', 'BCP']|bulk|https://doi.org/10.1039/C5TA02950C|8-knDl7zh5LyVO_p0hvoBHdEx5Z6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|213.0|0.67|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01617|8-oXCJdeO3hCv6e4UULm1OMm2O_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.022|212.0|0.636|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']|['CuInS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|8-quWku3h270SPnWJ-15KisRRvPA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.18|228.0|0.81|21.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|8-shHCiMsstvo62Rs1q-PNPWWfFF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.570000167410892|0.86|164.0|0.674|9.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02999j|800bOtUduzoE8-wTKuEiJJcTUN0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.9|207.5|0.546|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']|['PEDOT:PSS']|['pBTTz']|bulk|https://doi.org/10.1002/smll.201803339|803rbzefcXxfJBKsuEF3QIWAg-ED|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.04|224.0|0.7709999999999999|17.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|809SdynoKAVW6OZcLwezLNB9cXE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|1.7000000000000002|0.305|0.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901753|80CZol048SRvICwvRaes5O4UPMZE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.98|146.0|0.66|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|80GNnnU-sgukne4OqsTw2Fxi13Al|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.138|212.56|0.71|17.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|80I_8UWGsT8QEJsOA1tT39r4ZGzW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I259N183Pb100|Pb100C100N183H517I259Br51|FA0.83MA0.17PbBr0.51I2.59|1.6000001706098266|1.13|226.0|0.71|18.5|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTB7', 'WOx', 'Au']|['PTB7', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|80MN1pzgs1tZaNLEpPWw3vZAAsG3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTB7', 'WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|146.1|0.46|4.29|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2014.12.015|80SJWICWVbZLkslM8xjZpctrjelI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|186.7|0.384|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/molecules24224039|80YxalCEBNt4tUrQw4KiS1rxb8UT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|178.0|0.55|9.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']|['SWCNTs', 'PMMA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsnano.5b03626|80gt7EAgsK2xQ0-gbTsH2vVYrHk_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.06|238.0|0.7490000000000001|19.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|80nHC_1zqfPw5jBsDbdc-vOnsfVS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|201.0|0.49|6.7|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|80pthAcP_DXhAZR8bk1uHFCORQog|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|138.1|0.4379999999999999|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.08.031|80pzMez3hHRwbJZTi9UwGT_YPkCg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C9H26I13N5Pb4|Pb4C9N5H26I13|(3AMP)MA3Pb4I13|1.8700001994002349|1.06|101.7|0.6759999999999999|7.32|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b00542|80zKTgKUEThV53p2Li0_mv5QyhSA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.901|157.0|0.638|9.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|80zLjW3z5olDjLzeRc4vfLxW8Kvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||0.7|64.4|0.124|0.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00243f|810IJvbUM3pQLIXk9lFuBNtzkl1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|172.0|0.56|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|810juhaaQM9PBkRtVzVKW7mAsHet|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.05|200.8|0.66|14.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|812-cgIAb4IcLftTSpzmlsJXyRC-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|198.4|0.73|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.04.283|81BbuMvjHGx9Pv2ymQUIk3-NQ2wU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.085|210.4|0.6629999999999999|15.14|['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'APTES-SAM']|bulk|https://doi.org/10.1039/c6ta08783c|81K9GzVsBOvyynxeET6_FCLP3n3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.8|0.74|14.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen; Ir(MDQ)2(acac)', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen; Ir(MDQ)2(acac)']|bulk|https://doi.org/10.1039/c5ta09231k|81MWwPQHnsQ6qEKPHkkGuDtfxR3U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen; Ir(MDQ)2(acac)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|216.3|0.63|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C13-FAS', 'Spiro-MeOTAD', 'Au']|['C13-FAS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc02238c|81cxCv-tweHJ2GRcjzHC-IZg7J0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C13-FAS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|209.0|0.79|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00120j|81gwQpLed_LYBLIsV9Rceaxpqbvc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.07|231.5|0.667|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TCP-OH', 'Au']|['TCP-OH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.121|81hAW_c8DUDgL1xu3LD8CjwsFZlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TCP-OH', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.118|231.84|0.7609999999999999|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine', 'Au']|['N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806015|81qLaAS0WIPx-EOZIRiJrENFcoHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|197.5|0.738|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|81r3iv_pyfedAP-7NP0HJkJ-XnQv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.7|0.69|12.67|['SLG', 'FTO', 'CuO2', 'Perovskite', 'PCBM-60', 'Ag']|['CuO2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|825rQ9Sty9Qi_xvIyanHYeTcXjKI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.094|113.0|0.66|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.8b02157|827ytmi0uv6mA-eMW-HP815zv3aq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|112.8|0.5|4.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp03600g|82A9R7zI2gL_q7vmLmSvUTN4-Ekq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|137.0|0.45|5.9|['SLG', 'ITO', 'PTTh', 'Perovskite', 'PCBM-60', 'AZO-np', 'Au']|['PTTh']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.9b20981|82KXLJRRhkKhRo7JtJybPIXE2Hwu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTTh', 'Perovskite', 'PCBM-60', 'AZO-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|210.6|0.63|11.1|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|82RoHm92yf1LwcfRY4c8_obJdbD6|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C201H1142I600N261Pb200|Pb200C201N261H1142I600|(EDA)0.005FA0.3MA0.695Pb1.0I3||1.055|234.9|0.74|18.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|82SEP97FVou_MXBysrsYMr5Z8tYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.005FA0.3MA0.695Pb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|229.0|0.72|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|82_bmu2FvEFcj368IR1s91jBlL6p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|207.2|0.73|15.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|82eGaV8Q4-9sZplws_q7CxRKjwQ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.619000172635818|1.08|198.0|0.78|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|82eTeXAFXwBEfuJR-d2MaiOo6Bxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5500001652782691|1.145|249.0|0.8079999999999999|22.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201907769|82llKc8U_mEyeWn46D85Kb_gi_15|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.0|0.69|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|82mXfP_wwjJa28X2f96yOj6rPOn3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|148.7|0.28|3.62|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']|['none']|['ZnO-nw']|bulk|https://doi.org/10.1007/s10854-016-4640-0|82oWOUZe9RszlW2gCOWAtyttAvMU|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.05|212.0|0.72|16.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703432|83-pb39_ZxVq2Eg1XQo0zxFhYj-D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|234.0|0.78|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|8386j4Dcugi3aUCvOnqLOGV_d4E3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|205.6|0.7709999999999999|17.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|83D8eo04XXGEAP69ydV3srBkC4yz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|161.0|0.7190000000000001|12.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b11141|83HK6ogyv3T8to3JqxxkLxjwGPHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.55|193.9|0.688|7.34|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08679j|83LRmSrSxo72XoTOUZUSpeMDUVMU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -Br45C219H4019I2414N914Pb780|Pb780C219N914H4019I2414Br45|(NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14||1.05|219.9|0.7140000000000001|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|83NhiLf-wmeik4uxAvgAg1kTT0Al|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14. -Br10Cs10Ge3I20Pb7|Cs10Pb7Ge3I20Br10|CsGe0.3Pb0.7BrI2|1.881000200573177|1.32|105.8|0.645|9.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/anie.201807270|83VrK7wKLJAm6VqOdnE16YivFA3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsGe0.3Pb0.7BrI2. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|210.6|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|83ZklgggBKDUbBlTmOZib8Ejvgqw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.0|0.56|9.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|83Zr0uXLSet6jQFnyUoGQ615KLrU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|213.8|0.76|16.67|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c8ta11651b|83_DpRUBFZawzxMd1DIXnlS9z8EE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.5|4.1|0.631|0.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|83_qeI_civ1OoTF3YOhAs477eIBJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -Br13C100H520I288N180Pb100|Pb100C100N180H520I288Br13|FA0.8MA0.2PbBr0.13I2.88||1.06|209.0|0.58|12.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|83fN5H3DsThjdAYa4ThzL4TlhtMo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.13I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|190.3|0.76|15.2|['SLG', 'ITO', 'LiQ; PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['LiQ; PEIE', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.09.039|8431nReDeBZVdJPS9wQ0HaGEpLkc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'LiQ; PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|139.0|0.69|10.4|['SLG', 'ITO-HMDS Scaffold', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ee02185b|84IRXtGXsweJPdBzjiWtgzoXDyXP|a perovskite solar cell with the following device stack: ['SLG', 'ITO-HMDS Scaffold', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.78|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6se00077k|84YYkps52oNgT9uBrb6frPgYrwJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|230.3|0.77|20.75|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|84_a1p5TkHueVG4pYJxW7VUEXm9K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.49|161.8|0.7|5.58|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201811539|84cZu4RTGW7emTWsXEF0Iu04Zd9N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6980001810596783|1.209|202.4|0.804|19.67||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|84dNl2eFo3Rkvtodpu9UM1-QpnZ5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|216.5|0.568|11.76|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07828e|84eTOH5hVfva04TBWJusrQwBp__p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Pb4|Pb4C4N7H21I12|FA0.75MA0.25PbI3||0.71|214.9|0.46|6.98|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|84fSeiUxwSzWhYC_x5JuN9eK4DO2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.7|0.752|18.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|84lIfc6TPJPkrmT4w4i_qxN--ln8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.074|183.6|0.765|10.5|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'Al']|['P3CT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01955j|84lbf9SpGe-5vSVnhwi-tj8gXEdE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.15|227.0|0.78|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PVK']|bulk|https://doi.org/10.1021/acsaem.9b00162|84t4JEpUHk6kdXAjXxvx8xPHl0ZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.75|101.3|0.52|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.5772/62435|84yNf1zi7l52O-EyPR5g45lW8v7a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|141.0|0.61|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05613b|85-tAeMeHuYIa7JYIFiIrtf9XT-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|232.9|0.57|12.78|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|8553KZcOfVm_mMCSYPma9X196Abz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.0|0.7020000000000001|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02388b|85BKH90KCHidkZ4MZf6wlb3D2c4o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.0|0.64|15.08|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|85DXPFkVA6vRHHnCNZfHwGrGnFO9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C98Cs2H504I295N182Pb100|Cs2Pb100C98N182H504I295Br5|Cs0.02FA0.84MA0.14PbBr0.05I2.95||1.013|213.0|0.7090000000000001|15.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2019.10.101|85HLCSmNO8EvDiPVuAzEs0IO-skD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.02FA0.84MA0.14PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|238.3|0.75|20.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800149|85Q1V1pVjRRNa--gSHKrO0dAquzQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.0|0.63|12.8|['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-macroporous']|bulk|https://doi.org/10.1002/adfm.201804356|85SQTfWV3kixiRSwI3mmdUB2Vtxm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C5H30I6N5Pb5|Pb5C5N5H30I6Br9|MAPbBr1.8I1.2|1.9200002047317917|1.182|17.8|0.55|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'TPD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.5b01716|85_nbYyAq3YnuhiWDDHxYkO5_GKv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbBr1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|215.7|0.75|16.36|['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PASQ-IDT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|85edonvXs3RaL53ppddjmoNwDZi0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|132.6|0.605|6.58|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr06240j|85gXHzqoaPdaQmcZokkMaBr41Jf7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|158.37|0.37|5.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-410', 'Au']|['SGT-410']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|85ive1uNT4PNUu1N4DR21vy6S4Je|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-410', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|211.0|0.74|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|85kne3qZGVrzUd8fBpPEhBnx_gsx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|1.01|223.5|0.504|11.38|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|85oF_Xm8i3pQqeZ3UEvcQekOFTsM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|63.5|0.439|2.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6cp03388a|85vDjrggIdBUVhrEQxIrBodfCy6E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6000001706098266|1.11|233.1|0.72|18.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1007/s10853-018-03258-x|85xZRSY9yDflMJuLu52KMYVoqdiV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.1|0.741|15.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04944c|864Kn4KkFK3KhLHp329ebHfUpzPP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|140.0|0.48|5.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|865zLl_E6DkEwENcT6FnJq-W7IpV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|215.2|0.69|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PhCz-4MeOTPA', 'Au']|['PhCz-4MeOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|868vbsGiKfviUIXPmLdZP0fZGRb9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PhCz-4MeOTPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|125.0|0.56|5.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|86CJfvnoYO8dIMMf80TQtHRqHmEH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|25.0|0.58|12.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aaf158|86GYwJFRiFD4ZqNdHN-JiUi4VXhN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|149.0|0.55|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01292-2|86II6WN1ql2wPcrD293JTif8LKtg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|177.0|0.332|3.81|['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201400932|86SvDLdr4PeK39bO0Gds4nJMlkZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|149.0|0.49|6.4|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c5ta04695e|86TMEFhCKD9jGV3mJeurDMYz470h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|144.0|0.622|8.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/am.2017.91|86TzDysEWLDNyBEfXO8sDyD2WVAI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.789|206.0|0.434|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|86USB6ujFPfnZOfNlWNpgZmG16XW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3|||||11.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'BCP']|bulk|https://doi.org/10.1039/c9tc02003a|86tTo2kk2eWtehIc1prkID_i65Cb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.05|225.5|0.418|9.88|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201800399|86wKVz_b5uLg9ws7WqVJGZdOE8d8|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.01|224.0|0.59|13.72|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15665|86xHUZZidtignjvEC59qv2xpsrLg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.7|0.716|17.4|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|86yc3gB6OeJ-TDHqx1EMu657q91S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|196.7|0.66|10.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.03.017|870M7ehLJbikDYp6MNUM-2pHB4RR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|154.60000000000002|0.643|8.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|870QRKPyMzKVS7jDBOQS2fYRKG1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.83|231.2|0.63|11.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|873UoIIRbAOzS7ffzam59Mz6epk0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.98|176.0|0.67|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|877HwDhx96r9D7MtbHCuSwoGJGIy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|225.6|0.637|13.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Ag']|['BTT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|879sSLsjc64AM-CtN9uu3XHeK-Ys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|197.2|0.71|14.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b01364|87Igkg_l8ctpLHPv0_RXBGp2blik|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.14|108.7|0.66|8.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|87UPNKYFaN5SRh62JXb8ecadybad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|169.60000000000002|0.66|9.9|['SLG', 'MSA-PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b03171|87VLGlo47xsTpVLX2vS7DM-fqti7|a perovskite solar cell with the following device stack: ['SLG', 'MSA-PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H62I30N10Pb10|Pb10C11N10H62I30|EA0.1MA0.9PbI3|1.5900001695435149|1.01|201.2|0.6920000000000001|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.027|87WVMQ9P-AjxH5qyoAW4T-hssjg5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is EA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.0|0.75|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201600470|87gWhWypqJbS4KMebuR7K0_rVcyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.747|82.69999999999999|0.59|3.64|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|87hiUA1eg_o6DtcDAWiF--mAu8S4|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.5|0.75|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Rubrene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Rubrene']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b12268|87oJPp-ERhBRDVtQCTh6HLT-FPhz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Rubrene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|158.1|0.7|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201600285|87ownNcxbxlz-vPtuOVLoQsWDlLH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|0.96|177.10000000000002|0.63|10.64|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|87uFiJGEG-p7zFxe9S5b7aLfLabk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|201.4|0.66|12.49|['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'Zr(AcAc)', 'Ag']|['NiO']|['C60', 'Zr(AcAc)']|bulk|https://doi.org/10.1002/aenm.201701586|888913OpsuQFKASzmB6GyLP9Hq-c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'Zr(AcAc)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|218.2|0.743|15.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta08262e|88MdhAre81_lI9ukr_bRc7YLMXEg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|177.10000000000002|0.68|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Tetra', 'Au']|['H-Tetra']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.71306193|88NFM61eYjR2atrdIGvg0p8tscfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Tetra', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|200.3|0.72|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|88Ut2rFksMyABLGiwermvMcb8su7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|132.0|0.7190000000000001|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|88ZHXIQCBZAGjZXBeBibGvLC9yeb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.4800001578140891|1.01|235.2|0.706|16.77|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04190|88_sQYyyKT81kzv9JN4xMOEMfK6E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.929|184.3|0.629|10.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-4981-8|88_yUtm4ih2BXhs7TkW6di5Gx-ro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.12|231.7|0.8|20.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|88a4X0QSuC5kX0EvAyhmpNZJj5Hi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C3Cs2H18I15N3Pb5|Cs2Pb5C3N3H18I15|Cs0.40MA0.60PbI3|1.6200001727424491|1.03|42.6|0.57|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|88dF5Z3YpcpTIC5wMR4itknHjWQO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.40MA0.60PbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.500I3||0.24|7.0|0.53|0.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201401641|890U3GurjhdqFtVITWxZG-4gY01c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.500I3. -Br18C20H120I42N20Pb15Sn5|Pb15Sn5C20N20H120I42Br18|MAPb0.75Sn0.25Br0.9I2.1|1.5300001631456466|0.9|196.0|0.76|13.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|897A-NMdlMMaLPWdCJzWtwaiziAf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.015|6.4|0.5|4.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp500449z|89L9g_HyUTs3BmQiWxB4DnGRGtYW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|216.0|0.66|15.2|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|89L_kMNHG0Hhp8pianet6Fs_ikHJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.4|0.73|17.05|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']|['PCDTBT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b08958|89P67x_HgSx90r9_-iEKRSlftoT7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.7|0.7190000000000001|12.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201800054|89SiihPn-gmg_0HXMA2O7N2YRujR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5429999999999999|193.0|0.573|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB1', 'Au']|['PTB1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06338d|89dvQN5K0Ku1rQA4o2TSrgnDuOz-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|231.0|0.748|17.79|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700097|89iekP15HMQkr7ljKJbW9iF2xw5p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.8|0.64|13.39|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.008|89sHnVTcghUKR3qRtthHHd0-xFec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.76|231.4|0.6859999999999999|12.1|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|89saETiuZWO8DpH86j6Mzc5xqbLJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.05|201.0|0.64|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04538g|89vFak-xy3Uvzugg6YrBPHcSm1mv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.54|19.8|0.44|0.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|8A-UP4KXv0wA3o9-Jc-tQnuGSzks|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.0|0.56|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|8AHqFPo6JrJZ2BSVVc4fiVVmScbe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|193.0|0.58|11.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|8ARughDGJJCiS6XmhToU6Kg9ax42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.98|157.0|0.662|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201800710|8AX1xjjo3mqG_QKXo89fVELQUxQG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.96|168.2|0.4679999999999999|7.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|8AibT9fG4XWDZsOGPAOkpNtVUU0q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.0|0.4639999999999999|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|8AsF-yMnKQJV56hO4T4ERHUkV_UW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|198.0|0.53|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02921f|8Atu0LFINx8geDqsGowYsSO89vs4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.306|70.7|0.76|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.04.052|8Av_b7By644hL2Q9cZbLxWpJi-PN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.041|8B0INUL5CPBLoQMg48WTlGNvew4k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|205.6|0.7859999999999999|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.009|8BSc38NPcU7ZkHmw5zDVEFqXShmw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|161.9|0.64|10.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|8B_Uc0yPTFy1hHeoJ4k3pw4NVcUh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.05|227.0|0.73|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02526j|8Be6D4S6QYo1g7PCxaVFhtZvaKOk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700147|8BtReQvom4lVHLwGZOfOBu0mtKAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.82|180.8|0.76|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502429u|8BujGo9vECEbO3WaKHUii9OY1Fjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.1|0.768|15.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jcis.2019.09.087|8ByEsQ5IXIQsdzQ7YpvssB69NdEU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5||0.97|159.0|0.53|8.2|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|8CPNaOScizquC9Twej8Ut-j6SB3G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -C1085Cs15H4053I1300N542Pb400|Cs15Pb400C1085N542H4053I1300|BA2Cs0.15FA0.57MA2.28Pb4I13|1.5900001695435149|1.07|190.0|0.72|14.64|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|8CRIaieXkmAbuHBVYb1VrYOvBv2H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15FA0.57MA2.28Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|114.4|0.763|7.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra08584a|8CVINsx4-bNm5IVt6VhEnTcPBCj6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|206.1|0.518|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|8CXC3l59OwytMFDQmPdGkh1MD6Ft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|167.3|0.733|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|8CXcCql51Xt-LP-zJhnG_bREklUz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|228.5|0.61|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|8CYg04nXRrO2VOBPffW2gvHWrx2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.2|0.7859999999999999|18.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['NiO-c']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|8CeJZrm_M9_i7xa-rpmVFIDaC0Mj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|215.12|0.563|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15218|8Cfd9tu9e4rXhHLjzncj-l7bOFW7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.9|0.63|18.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00450a|8CkBpTKkkTzeDQUlBMWuydhNSWnP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|208.4|0.68|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|8CrUDcOn5Ac-uV33eQF9KBXOXMuz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.0|0.674|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15434|8CxNzj_O1yxqn1awx4ghjhOtnLz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.715|2.98|0.242|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04924b|8DBTgosnf712UuX5hv6Or83vaZCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.14|213.0|0.74|18.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c5ee02608c|8DE9zXba6v6cr5yM1-3izEaCBZso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||16.85|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|8DF1BLsMkXzmZUrq_bG0vM9iTQir|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.117|223.9|0.769|19.03|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|8DNWYfInHU2R3GniTacD4tzszNTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.04|219.8|0.784|17.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b01863|8DPsvVrqa09-Vje_Ok4S6lIrCYQg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br75C24CsH120N48Pb25|CsPb25C24N48H120Br75|Cs0.04FA0.96PbBr3||1.4340000000000002|61.8|0.7929999999999999|7.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|8DWsoj1SwBF1IfHV96X7s1OKqdiv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.96PbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|226.6|0.61|12.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|8D_vDD_WhItkN0FDxrolYioLflMI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.138|226.9|0.7440000000000001|19.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|8DgDOSruVVWzTK3qnCp5Qt9LIErq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.7759999999999999|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|8E-ZP_9-MU_t1UUfY_rQ_JFrsQLB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.44|70.1|0.7709999999999999|7.78|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201800855|8E2Pmz8GaOIAol9GGNbtp_rHJMKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5500001652782691|1.13|230.5|0.7979999999999999|20.32|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adma.201706023|8E3AgQ4lM1RYC8VLSJ2ZbNfH5FVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7000001812729404|1.188|199.6|0.769|18.23||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|8E3eNd1judZDEBtibn614u-YvzOY|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|190.3|0.639|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']|['4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|8EG32ydl9Ex-rOhP8wxYoYASDhzS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.06|201.4|0.75|16.36|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|8EN1U6ysowHLegXrSxVYSySYZBg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|191.2|0.6779999999999999|13.34|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/coatings7120215|8Ei9nibDeFSYCO6GxBf5DqhYZoZi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.166|219.0|0.72|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|8Ejjdbut5y0hNJc4I74SC6PAH_Y9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.1|205.6|0.76|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|8EmSh-P53NpynV1UrLqEddYLo7nH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|187.0|0.763|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|8EqYn8nLK02wV4fX5uBqaloSeA1y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiI4|AgBiI4|AgBiI4|2.3700002527158053|0.63|37.0|0.514|1.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802051|8EzftPtmm9Cvdt9SbQq3gameUm8d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is AgBiI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|238.0|0.691|18.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6dt00900j|8F0wwFE77TbFNiV8YNDUY7wU0eez|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.12|169.0|0.631|11.9|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201901090|8F1oMwJthPiuuZqc0SlqXgHi-U3L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA3Pb4I13. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.6|205.0|0.65|7.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|8F31VDYGON8L1A-FzofKtwIJ7XK2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.8959999999999999|56.2|0.58|2.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.20964/2018.05.15|8F4HjdZXBhQYRLXZPkjXkxnBahlC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.97|208.0|0.65|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Flu', 'Au']|['Triazine-InT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07369c|8F4V_j7SEh_zvR1tHMWvNQ5dKYe_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Flu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.6|0.75|17.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|8FGYuwd0efJwtuOZRclnFctbidcS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|223.0|0.67|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4890244|8FLEnssJJ9J6QW9hh0qhsZVb9A8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|48.0|0.69|2.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4cp00298a|8FLTmTK3BfT_nrRsqnfDb2cdNZlg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|202.9|0.75|16.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|8FMswr4W5Bkjg1oJ2U0PoywHYlJz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.0|0.61|12.4|['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|8FQsrqDndjULHeV2jAzU-vMM7cuj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|220.5|0.612|13.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc03259b|8FR9PiwK0FCgPmEpuq-TWoNQWKiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|8FSSw5YRCFpGMYwLmeT3yoKLXt-A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.062|203.4|0.595|12.86|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00747|8FTPajCIVpJWpwQNU5aP_yxcRycx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.64|263.29999999999995|0.7190000000000001|12.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'MABr', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['MABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900413|8FTU_K_68w20pkQvNTGAunPcBlJA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'MABr', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.908|216.0|0.5|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|8FWWw--xkU9ysAnyILUAVgMiFeor|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|160.7|0.72|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|8FXFPyyj8_DQq011PEPCU3GYb_-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|166.0|0.58|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|8FbtBXyQTJQWf9GChdDeaHfDgGQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|189.0|0.72|12.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5mh00126a|8FfpyyzlgVJIOQLZ3wajD0i5bN8m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.8|0.693|15.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|8Fs3oB6n9VXv5qNBL0x8seFh7JSY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -C290H1116I333N164Pb100|Pb100C290N164H1116I333|BA0.52GA0.15MA0.67PbI3.33|1.810000193002366|1.25|162.0|0.715|13.84|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acsenergylett.9b00351|8FwciBm9yIDN4ZHl-ZPkdv6R7J08|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA0.52GA0.15MA0.67PbI3.33. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|127.59|0.589|7.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta02490d|8Fxfql_avka5WiWMWqk4zHa8iULb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.92|150.0|0.53|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|8G3yFj7zCTamwOivi1RxomWCl1_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.59|12.62|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1149/07202.0275ecst|8GDTABXcchBW_KI1EPdSFBAqdVkk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|185.0|0.7290000000000001|13.5|['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEDOT:PSS', 'PEI', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.10.032|8GHUi8etueoh8YG-DxmeJhilqJvs|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|17.8|0.46|0.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/jp508162p|8GOVbAcWlhf6owXH32QXqy68piqp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.8|73.4|0.52|3.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/ja5071398|8GPmBVWqcnpmGOUk2IVjS0sUcWPQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.0|0.62|12.3|['SLG', 'FTO', 'TiO2-c', 'PEO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta00407a|8GVCwxrWGnJ13UB5nPklRXEjud5-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PEO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|201.5|0.65|12.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen; Ir(MDQ)2(acac)', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen; Ir(MDQ)2(acac)']|bulk|https://doi.org/10.1039/c5ta09231k|8G_IhSewnK8nLHDyX-kCBi4kLm7Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen; Ir(MDQ)2(acac)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.7|0.57|11.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703879|8GgLDNHbMMpq0q5DIbnpVO964r9Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|140.0|0.624|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01563d|8GgOtvEx27v7V1wXoaGufVJZ9UMM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.8|0.813|17.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|8GhDDYIEwguw440UhZmX1zSTFrlu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17H57I30N19Sn10|Sn10C17N19H57I30|(PEA)0.1FA0.9SnI3||0.312|98.0|0.52|1.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|8GqN1byUuHGxVxky3qm8wdVn200P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.9SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.0|0.72|15.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900474|8H-0njkGVn1a-nYi7CdXPAYcYL3A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|218.2|0.7759999999999999|18.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|8H-V8Er6q6x5yGkhcZoIkVR3WenR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|75.1|0.62|5.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|8HH9Yi4hw18Kz7_xcgLXfjs5ZlFP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|201.0|0.7|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.04.005|8HHDkZNLNx-JRv7rfaxpc51ln4n8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|131.7|0.7390000000000001|9.05|['SU-8', 'MoO3', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.04.039|8HNQgssyK6_TbZRmV2zmGqZmSY6C|a perovskite solar cell with the following device stack: ['SU-8', 'MoO3', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|245.0|0.77|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9qi00547a|8HX28jKqj6-Mhx_pSqvjvkc3ITJN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.015|187.0|0.594|11.26|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01154|8Hhb2aij1R1H9Pm7f5lW8Sft8Y9n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.843|305.6|0.765|19.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900467|8HvD6Bq53CWUZB2-gNTc-FF4pFXI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|219.0|0.6759999999999999|11.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-015-1020-2|8HwT1NFUoeAXFaiEsQe-YfLJoXWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C3H14I6N2Pb2|Pb2C3N2H14I6|EA0.5MA0.5PbI3|1.5900001695435149|1.03|145.2|0.497|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.027|8I4LR_XxUNnLdv-SboC8-YAR63-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is EA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|192.7|0.7|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07703|8IS5Od3lEepP3VlPbblqU-x5iR6E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br170C1084Cs10H3868I83N720Pb300|Cs10Pb300C1084N720H3868I83Br170|BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83||1.1|208.1|0.613|13.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201901966|8IVH_b9FNgQ7VH6J-jkCSdITK0xB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.14|236.0|0.73|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|8IXL-5myTu6-BmzUN-KwW6DxPslQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.0|0.6679999999999999|15.3|['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4']|bulk|https://doi.org/10.1038/ncomms8410|8Ia4orqB_JDOm5d1LgE4PzH5cR3k|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|201.7|0.72|12.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra15210d|8J60zsS3S4AvFudLHEmBxSlaSaBZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|154.3|0.76|14.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|8JBN6QVr3AcXnAasmobaMyCrUGOe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|228.0|0.77|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.105387|8JIxjy31dQDnNblCZyTNZmn2OTPj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|223.0|0.752|18.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PS', 'C60', 'BCP', 'Cu']|['PTAA']|['PS', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700159|8JOwVI257S2MxV4UKfZFSsKMtZiW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PS', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.45|195.0|0.29|8.19|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-mp']|bulk|https://doi.org/10.1149/2.0051808jes|8JSG_E2oCwASI_G6jvj4SorQSMd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.0|0.75|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|8JYayFn5EOFW4tcYffvB2rBuqmUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.94|233.7|0.57|12.52|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|8JZb4WPSPo_XHn8oxmmMbWNnMDJK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|||||17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']|['DCZ-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|8Jc1gJHdW-LOvxUv_foTcVLZSWl6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|231.0|0.648|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.202000288|8Jc6UM0qsqy0N0MupWuYHXbdlU3k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|220.0|0.6759999999999999|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta03765d|8JdeWxjucQDLTVYgTR9Ry3X7d7At|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|156.1|0.69|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.093|8JldcpbkwTvoWLspFKYE07NdThSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.68|36.9|0.415|0.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b16349|8JmE_sUHt_U8DLjlUFOtCLA7uI-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.79999999999998|0.66|10.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201604305|8JxBf0WlgZWlLvQDocFyl7ECyyfX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.09|209.1|0.75|17.15|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|8KCKKUVNP1TBlTI_33_14BvPxVEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.095|204.8|0.76|17.09|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-07099-9|8KCnCSJJUc_Wo9yphSsfensejXux|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.55|63.8|0.8109999999999999|8.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110267|8KD32VHfOYzgPjPnfBTmLYymZSqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.19|138.0|0.24|0.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201505127|8KK4KNzYCK8ZVr_ZKKG341Lz6CIL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|188.0|0.52|8.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|8KNuJQBLRJ7PCcdk8F3S1m5Ga-kl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.4|0.59|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.11.098|8KOvtyuL_Iw43ZBB5c0z3_Bpgdfb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|233.2|0.6970000000000001|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801717|8KT4AWFJL9ONAsEMsJy2dk8mby0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.0|0.7|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep34675|8KUPRSwc-px6b6UqO5Cem7c2tukC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.021|196.2|0.7490000000000001|15.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|8KdA1FIgaBjvVx4k71xY4eIoHS9z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.86|142.6|0.441|5.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|8KnQmZ7k1WoIm8_erLoc_HVxZyCF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C25H150I72N25Pb25|Pb25C25N25H150I72Br3|MAPbBr0.12I2.88|1.6000001706098266|0.99|216.2|0.623|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06673|8LAGWpbTZvOuojzTz3kwjggJ3-T-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.7|0.68|12.57|['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['N-PDI']|bulk|https://doi.org/10.1039/c6ta03119f|8LDfZ5v4-6nHMuhtG5xznkmsP5HN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.815|162.10000000000002|0.396|5.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|8LLq5H_gDEfT74_0m1d9feG1Tfj5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|8LW2U8R29PtmeSW966g6at1-vCty|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|218.7|0.777|18.7|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1039/c9ta04043a|8L_FmCH_PJ1luu3gNO4s5vGtk5Jt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.199|138.67000000000002|0.594||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||8Lzsw5aILU4Q29aMkqmI-d2aERxA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.5500001652782691|0.63|229.4|0.4429999999999999|10.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|8M-LfKudXwe3NOwmiSYzqqx09geU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|201.0|0.466|9.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|8M0oimHffVy_CA6C95rpA50KXDLz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.14|231.1|0.73|18.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Ethylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|8M2fXL5UJz4pBtZJiQME07t4ncbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br4C16CuH24N2|CuC16N2H24Br4|(PMA)2CuBr4|1.810000193002366|0.68|7.3|0.41|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsaem.8b00372|8MG2rrrkWyP7Pa6R_R_H5ogGpPBd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is (PMA)2CuBr4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|182.5|0.588|10.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|8MICLCbFUFkqPvj7jKfDidycKFXU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|153.7|0.6|7.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th101', 'Au']|['DTh101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.022|8MKW95-YBxYLBPiD7kz7-bJrM_eW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|138.6|0.56|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-TPM', 'Au']|['DPA-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|8MNZUKtgjlUuVLZAxcppLs51USNK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.0|0.73|13.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00739b|8MZBjjGvB4yk4wAltXLU5lb1CapW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||0.8690000000000001|200.5|0.728|12.69|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|8MgpJAWxf1iEWjBUeT2hBTbeowTR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|173.0|0.777|20.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b15867|8MgzVcPKC-doNe_fejWgfn9rmDV-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.0|0.62|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jacs.7b09526|8Movgp8N5NC1Cju2oV7LF5xWb-YB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|219.1|0.74|16.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|8MwgaY_RWi3ZfloK7g72QjkxWFbr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.0|201.3|0.8|16.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|8N7T_aKbmeEnu4kQ2IYm4wUjx3WG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|207.3|0.66|12.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|8N9ewgxmBIU6dfxQKtKKuxbhCbMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|149.0|0.743|11.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104241|8NBpuV6S9SdU_AOMfwzpnsDfBpm7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|216.9|0.609|12.08|['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Li4SiW12O40']|bulk|https://doi.org/10.1021/acsami.7b05146|8NHCCG5SfwOw_Pp3ZFO7LO3IN9FW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|214.4|0.8|17.6|['SLG', 'ITO', 'NiO-c', '1ab', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', '1ab']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|8NKILzk0MyOGtdfAK4LWEYedkMWN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', '1ab', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07625|8NZiMai18i6FXv7YoX8AL5GbH5J3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|244.2|0.36|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiS']|['Carbon; NiS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.03.161|8NhL0AZcOgiCgdUumEPg2VbwTeeq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiS']? The composition of the perovskite layer is MAPbI3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.109|220.0|0.76|18.2|['SLG', 'ITO', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO', 'PVP']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|8NjaZ5FX7Ty2cSZCinJgzZ747-5f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.004|150.0|0.74|11.1|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|8NrlxFHjT2s38RNPv3MEzbQKJUeS|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.88|163.29999999999998|0.73|10.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|8O2ciqX7eKoMS-zPQUUUvuawQHw3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3900002548484283|1.29|38.0|0.62|3.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|8O4vkbj05xheAEEhIxovnRctPad9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|193.7|0.706|12.86|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|8OHo6mZciBlLm3Mk74cXcHh9ct5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|142.5|0.66|6.3|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|8OR-z4ieCJhZqVrhhqJkkm8YEr6m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.11|84.9|0.56|5.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|8OSR586myfmc5_labshxwIdykQRp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|214.0|0.622|12.41|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/chem.201705658|8OhuddP4DNRSHyK780PCjQjWkIqq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|175.0|0.67|10.7|['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|8OkpWKQrN-PHLK4aiybcMnub_oTe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0|201.6|0.674|13.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.4941238|8Ow83JiocliBvUuiqmfy9S1E13Ea|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|189.0|0.68|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.11.021|8Oxukh6nylJS_F2D_7jR9AkNye-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|8P7_bLdVn94iLvtSuEyfMMVsntrk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.05|214.3|0.75|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01446-2|8PAKhPs8-CwsgyhdKRMHluU5d6nW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|134.0|0.7120000000000001|8.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|8PDByoF8xDhyJl2Wxmd7SdXA08q1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.57|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|8PHcucGxjHcXozdqorrKJB7PMDvK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|145.45999999999998|0.75|10.9|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|8PPVjfVvnbbs0keTZ6SgpwfK2TqO|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|166.9|0.49|5.61|['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3-np', 'Cs2CO3', 'PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2019.05.030|8PjFYd1mA-YRULBQGUCSIwkC4Kdk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7929999999999999|152.7|0.5329999999999999|6.45|['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BaSnO3-np']|bulk|https://doi.org/10.1016/j.jallcom.2017.06.121|8PyeeFrWZSKncgZyPomEyavFO_Pf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|137.89999999999998|0.48|5.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|8Q3vFoROgkkafBCxHVaIZdZQ3ySo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.8|0.73|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|8Q9_Ghk3IoIWgHjmLXQvIPlzRZp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.5|0.7979999999999999|19.34|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|8QFz4bybyY0WiEOJqiTE9aPQ7KxS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|230.8|0.76|19.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CaTiO3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CaTiO3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227504|8QKAW1dPbw1mRzK2nFyJR_HiyxvG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CaTiO3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|157.89999999999998|0.57|8.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr04801d|8QKUYF5Z-qL3VDUUjFLXlwAyRpTD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.925|188.0|0.754|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2494/photopolymer.30.577|8QNW8-0mxj0G2gBHBVzo2w7FgtPv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.1|241.1|0.804|21.34|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|8QQVBYuANtrM9j9RyOXboFpn3ytH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|220.8|0.59|12.23|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|8QSHFzNH6xHOT0xm6xP691miaU_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|8QacZ3wrJ0zg9-SL77uA_OTpAhE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.86|165.0|0.635|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901685|8Qd2RWhMc3lO7lEUZoEzjgti5eDj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|209.6|0.71|14.35|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|8Qx7UWyZIUHkUBYE2OcYSldDbBoO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|39.0|0.48|1.6|"['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione)"", 'MoOx', 'Ag']"|"[""5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione""]"|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|8R1MZgpwYSojWyecoIn2V7TecldJ|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione)"", 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3." -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||0.99|194.7|0.58|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aa75ab|8R2WLbkcMGI6NuWkvh891JhVorKz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.6|0.63|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ODA-FeS2-np', 'Au']|['ODA-FeS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201601119|8R8wQsl13o9gQBRaQd2_fd4Fn8Ux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ODA-FeS2-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.84|84.3|0.51|3.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|8RFAacltSZz0GAKNMGi_L2Xxb0Tw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|253.0|0.72|19.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201801667|8RT3-khv3ty8wJXJqh9IyZe3cL4z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.0|0.705|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/advs.201600027|8RYYlwqgzkjZD672sFFti6ZiCtLL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.612|159.5|0.46|4.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|8RZW-lJZ6RDOgPA6DsSsBuWmu5OH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.097|199.7|0.705|15.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b00846|8R_G1Q-qa5rO2An2321ajH6p4Otu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|201.7|0.574|11.81|['SLG', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|8RhGcIRc3A-r-MO1uk-8KV9Yl-TZ|a perovskite solar cell with the following device stack: ['SLG', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.97|204.0|0.69|13.8|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|8RiIJx4xjwkJjY88AlPp-AUHDMB4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|214.0|0.736|16.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/solr.201900489|8RjJaiohnW3-HIdaZn6RXs9ZP_Ns|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br3C2H12I3N2Sn2|Sn2C2N2H12I3Br3|MASnBr1.5I1.5|1.570000167410892|0.47|177.2|0.314|2.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|8RlHxsAkXyX6vx8A1uU-6hX6ahWD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|164.3|0.732|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|8Rt56EKwYorPhoWkos6WCuLT_PHD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.041|214.6|0.65|11.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|8RvaZTBs7IlerNxpDGRBBbei6jzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|199.3|0.7|13.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|8S-Kdvy_kdYkQO13sPd2mNY8k2BC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|200.3|0.72|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06493c|8S76Ktkk_a3YyRZp6nKfn-5MmaJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C100H519I246N181Pb100|Pb100C100N181H519I246Br54|FA0.81MA0.19PbBr0.54I2.46|1.6200001727424491|1.2|128.0|0.64|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|8SBfxaBkLVJ1tB3Z7fXBdEXp0Whc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|140.1|0.63|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|8SCQG7xHV2SF8hqXCEZpc6zww7JK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.746|182.7|0.731|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|8SNbKRmLOLiZqNqZqTZrq1Ezeoj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br33C80Cs20H405I267N155Pb100|Cs20Pb100C80N155H405I267Br33|Cs0.2FA0.75MA0.05PbBr0.33I2.67||1.11|225.0|0.691|17.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|8SPWPc-JmzFcIAmWgJkbGNoJAn2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.75MA0.05PbBr0.33I2.67. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.067|188.22|0.763|15.33|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||8SWvdRyA4SlxmyVEXAe-Ur9l3Kvx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.90000030923031|0.65|5.6000000000000005|0.568|0.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|8Saj8Xi7qvq0XpJZLmrbBFvQ4GHb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.16|229.0|0.78|21.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201701077|8SiAtq8sF0YNIaRSntrD8lHqhOci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -Br3CsPb|CsPbBr3|CsPbBr3||0.9|58.0|0.679|3.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|8Sk0_eqX_bp1vKJ6McJRBV0d3vSk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.05|236.4|0.7290000000000001|18.09|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|8Sm2vEgfbWj0YgvcR5WhJ7ccctiR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.5|0.629|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10470c|8Sn-thlUzUqTDvqipe-NC1uXUa-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|212.0|0.66|12.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.06.049|8SnO82Ig_OaakpK8jS9bmV4lLZMW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|179.1|0.61|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|8SuR20xDMZn-CEy0kJmD9A1XtvY2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.58|110.2|0.4039999999999999|2.58|['SLG', 'ITO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1016/j.solmat.2015.04.015|8SuadWfT3gKY5oL-e8MrzFR5f-G1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.03|224.6|0.741|17.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']|['Spiro-MeOTAD', 'Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25975-8|8T5qpgVhb_bal1D08HfB5ciZ94A8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.01|200.0|0.7170000000000001|15.6|['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|8T6sDFBdILtMU98uBdNPj3iJu2eR|a perovskite solar cell with the following device stack: ['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.8|0.71|15.64|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|8TBpZ5Sr8IaqyX0BJIXiag9TAAhc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|152.5|0.366|5.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|8TGQqGMaipEbzl52slObtTIFbyca|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.300000245251625|0.377|99.4|0.51|1.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1007/s11051-017-4108-z|8TIh0tWYn9MEUchmtNuDYxnq7grs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|207.4|0.758|17.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Ag']|['P3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201700183|8TP0mJ5vVJCcKv6IoF7c9ZxARq5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|120.2|0.38|4.41|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|8TQkxIiEr5lJRL2be40DiVKvCOK2|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|188.6|0.705|12.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09530|8TXX3xWd2R-4_4t7riXHedqCCg2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.8|0.75|16.05|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.06.020|8Tfkiwu29ckHsJEZWGcxF77zSrTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.3|0.72|17.03|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|8ThUT2CLSZ2pN6T7kEOEFANroIwC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.93|179.20000000000002|0.59|9.88|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7cc06183h|8Tu07jiRYTgWElhbZWUN2ctNAKyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|185.1|0.76|11.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|8TzA26bOCpn6YSxJUL3wulGdgoKU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.3|0.75|17.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|8UAUyQREoQrEZyHqOgAMV2p_lyml|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.99|180.7|0.653|11.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.023|8UAr5rj9yDhy0C-GTUYFJt79eGEN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3||1.05|218.0|0.74|17.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806479|8UFcKrG0o2xx8LWv4AUwvgo8o_xA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|207.8|0.65|12.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc; P3HT', 'Au']|['N-CuMe2Pc; P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800264|8UO2Rf5jTSX2db5DNb__pDZeiUA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.5|0.625|12.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|8USLz2k4RCKJ7MT0HA8BagqG9xgu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.969|214.5|0.64|13.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']|['PEDOT:PSS']|['F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|8Ubk4FOt-Ecox05vz2i1igPHbdZ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|253.2|0.685|19.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804028|8Uf3HBEHP_NmWYpNGNoiW57DNxqx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|143.6|0.64|9.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|8UgznazNk2HCTSkfqpJlM5KssNem|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|91.1|0.36|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|8UmFFkADwEXB4JAukKIJ90JobmpR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|225.6|0.402|9.76|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|8Umzw9aw1F6Gy4ATFGTJanISRR0D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I4831N3477Pb2000|Cs100Pb2000C1900N3477H9823I4831Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.4155||0.69|160.7|0.721|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2019.04.052|8UoFOMZSp5Ret6KAU5yD3QBI_N30|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.4155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|209.0|0.693|14.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.083|8UzYYQ2WYiPR_lFyoAua8QxFRGhA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|178.79999999999998|0.693|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|8V-3I_91mAwUdOISoCHbnLb39ge9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|8V-XPZljYd0JlVg7rItqx58EEPYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|113.0|0.58|5.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Y2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Y2O3-c']|bulk|https://doi.org/10.1002/cphc.201301153|8V-kJHLVrda9QY0TOHeC4etQA2QW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Y2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.0|0.6679999999999999|11.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.6b03089|8VLBNBzdBY2TOOrc6pUfvlOdjxRl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.6|0.782|16.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|8VNNiSn4tTLwgyDA0JVG6osEBadF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -Br81C100H600I219N100Pb100|Pb100C100N100H600I219Br81|MAPbBr0.81I2.19|1.710000182339252|1.12|165.2|0.78|14.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCB-C8', 'AZO', 'Ag']|['PTAA']|['PCB-C8']|bulk|https://doi.org/10.1021/acsami.8b04439|8VPwGNxhk71YNzBB8IZ2255OiaJj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCB-C8', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|201.9|0.736|16.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|8VQKAI7Z9NblxW2vk1vAdgQG9lA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|237.3|0.665|16.91|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'C60-ETA']|bulk|https://doi.org/10.1039/c6ta07876a|8VS4x2H00q7Yw5TnKXqvMyabNK22|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|205.0|0.64|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700308|8VZEcZqsxV-vgG1wX_txxPK_nKaP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|198.3|0.778|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|8VZNyibPhdz1YpzwVNKUeQ6XPFhl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|205.0|0.76|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|8VjVJCyVbC--17YVKx5_Vdg-xHDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|227.0|0.782|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|8VnzHk-bAKMgiJULlQtIME7q2naf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.108|225.4|0.61|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(CH3)3SPbI3', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b02117|8VoSapejNsOhTa7S3kxzvd3uFT9x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(CH3)3SPbI3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|208.5|0.757|15.76|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|8VpdYg-NuXPUCb9pQH0d8buyfKUf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.19|216.3|0.7859999999999999|20.14|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acssuschemeng.9b00991|8VwM_2mGrV0zTX9hbEfGkl817f5J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.0|0.701|14.8|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|8VySA6NEQRImAfCxXJYJ2CUG1A0P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.0|0.747|18.2|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|8WExs8jnp8BL6xfbR8JC_05MxjCt|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.772|147.0|0.31|3.5|['SLG', 'FTO', 'TiO2-c', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZIF-8']|bulk|https://doi.org/10.1002/jccs.201800173|8WFem0W6HVP-bFKmiNRrVEUoyp3D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|154.60000000000002|0.66|11.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|8WMH2ZbYVqu10jvndmSCbPNkbZ0U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.0|0.76|13.5|['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|8Wo0XJuJmMifCDbXWjEIZWgGz3-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|150.7|0.57|8.7|['PET', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1002/adfm.201600910|8WsSYvnruIk9t4i338ZMdCc6Lt9U|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.419|73.0|0.397|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']|['PEDOT:PSS']|['BCP', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.0c01216|8WvB0q9yN0fTtXER_-PWKM8vyzUS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|122.4|0.705|7.91|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|8X25xh3ezBtgOnZsn-TQv-CgZu-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|153.3|0.6|8.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Perylene']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsnano.6b01904|8XF-C9YcZ6bPqE6T6dAbX42gPTEI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8270000000000001|102.0|0.46|3.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|8XXXRFuU7-qKZ-UQlD4n_BQqZ1fp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.2|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np']|bulk|https://doi.org/10.1002/adfm.201909738|8XYGIozf6SbrLZO_cRA_aCcpSuoP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.31|157.20000000000002|0.792|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-020-18015-5|8Xel2cpUCqueRog6hu_XeJwGMZb-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|215.0|0.66|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1364/OE.24.0A1431|8XhSk6E31NsLPzPSDlVp8wpX6A-n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.93|215.5|0.62|13.1|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|8Xi9OogqwpoYEZTPS0ppKS-bqbTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|175.0|0.55|8.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b10093|8Xkeo3T44F-VDd_M0bScOG7SBiKz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.07|211.7|0.654|14.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b07318|8XqtfkOlstSt7yoDiXi5ck8f3grB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|177.0|0.713|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']|['2TPA-2-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|8YCz0L2rva5TV-esew5HwN09nmLC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|159.0|0.774|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/cphc.201800732|8YLc31W9ZdIc6JpMCyNJ2NdMB1hp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||1.01|229.0|0.68|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201606831|8YfSKbbvdrOMlgbU6IT-ZozkiUZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.5|0.7440000000000001|18.33|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227386|8Yrg1yFPUPiBbfhHqn03LZ1M_G7v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH97I51N36Pb20|CsPb20C19N36H97I51Br9|Cs0.05FA0.85MA0.10PbBr0.45I2.55||1.07|210.3|0.7959999999999999|17.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'AuAg', 'MoO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta11462a|8Yv9ouOPT5OzCXmPT1YPOVp9Y1T3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'AuAg', 'MoO3']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.193|92.4|0.602|6.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|8YyFz_54s1JAWuAJbCeWTOj_mLak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|197.1|0.68|13.91|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PCBM-60', 'BCP']|['NiO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.041|8Z7stxSu7z-rEEmDNYvLlPXLHiUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.7000001812729404|1.12|220.6|0.733|18.11|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2018.10.032|8ZCIAJChiYujHhioMlIDJ-Hiqxjn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.0|0.75|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502720a|8ZGBMJ8IZZZPaz8qSGWJPr4tvWFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|195.0|0.645|10.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|8ZI47iiWdGuYrcGVglUg8DpRcIUa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|82.6|0.346|3.01|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5087796|8ZPCvpIA_RrVt8KTEp55Nz8IUUvw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|219.2|0.72|14.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta08970d|8ZeLc6eQbet2ms4BdoS4DVJxqz5x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.8|13.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|8ZmHE5YCVmcZ8BH4qh9DOTWZVpyh|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|22.0|0.49|0.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|8ZqWc0kHPgoXCX2F3AajFv6UIsRb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.10000000000002|0.66|11.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PCBM-60']|bulk|https://doi.org/10.1039/c5cc01483b|8ZsWsFowbFJHSakHi3fY2b0dRiLZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C50H300I111N50Pb50|Pb50C50N50H300I111Br39|MAPbBr0.78I2.22|1.690000180206629|0.936|103.9|0.62|6.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|8Zxhs-g-fmssknT3SHPP774VOQsJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.78I2.22. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.782|0.34|0.735|0.02|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PTPD', 'PFN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|8_9iXYqxIMnPKsDO4cujlGTlEYaX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|208.3|0.67|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01155h|8_HieYM5TU_B6CNEynI8v78VHDTU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.187|130.9|0.721|11.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']|['Co3O4']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800315|8_OuEOQougfwqxfJ6TI-WwYIN6Aj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|60.8|0.6559999999999999|3.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsnano.6b00225|8_QQDVLrDwQtoE5oSZmVva4IDTdA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|185.0|0.3|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']|['C6TBPH2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1882-0786/ab4aa2|8_ZuhHytiDMTqpnl8b1Dfg6htifa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.5|0.657|11.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|8_f86zwQCAW4KeQoCSLK2h9TkRlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|230.1|0.6990000000000001|13.89|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'C60']|bulk|https://doi.org/10.1021/acsami.8b18807|8_gVtOyL0YeZ47Hh9P4qyJ_-joPi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.0|0.615|13.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|8_jQqgoft7ZRENWOzrnv7FNl-lHL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.0|0.7|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.4965838|8_qf4ZP8elm0RI2BiAo-DWPqjdFU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.621|10.4|['SLG', 'ITO', 'HTM-3 (bifluorenylidene-based)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['HTM-3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.008|8_wRmx90w5TxldFC76pS4w-y0jX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'HTM-3 (bifluorenylidene-based)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|207.9|0.746|16.73|['SLG', 'ITO', 'NiO-c', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|8a-tuBk0WcjrKPfrqHloLy6RHh3R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.0|0.79|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820509|8aPV8sD1JoOpU2FdC7e4Lcl7-Z1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|173.0|0.63|10.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta03087g|8ab2uhEz9aKqhIaqcNWI6HEgsN3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|197.2|0.72|15.15|['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|8alvmjR693VspADO-Dk5kyIlyniT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.92|157.20000000000002|0.6|8.68|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|8apup9GOqbs0Q-JUOUS_PbfMGMgj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|190.0|0.74|14.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aad311|8b3G9pFlavhJq784u-nLuXkiW9bz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.557000166024687|0.97|207.7|0.69|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|8b5Mt0XH5qtCup65B8zh2z3-jSiW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.1|222.4|0.715|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b18082|8bCiMVuX8yFBvzyvIxn_El1TCF7Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br10C25H129I65N46Pb25|Pb25C25N46H129I65Br10|FA0.84MA0.16PbBr0.4I2.6|1.5300001631456466|1.098|224.0|0.795|19.7|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1063/1.5009040|8bNRj-tQhpdZ9VSkPdgwCS_l3zZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.4I2.6. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.947|182.0|0.6409999999999999|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|8bRvFs-SIfXt5eEI_m2hogHaOSz9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.057|198.8|0.76|15.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ensm.2016.11.007|8bi22UlIpgUNl5SrV5JKNxjnliTS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|155.8|0.705|9.67|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|8bj-QnLmMSJFcFKnrZUj8AJQcii8|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.142|203.1|0.73|16.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|8bqcylQZ68PArIsYCVWyWCi4r5sf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.049|192.55|0.768|15.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||8btGD4ttW5o9_Sf4ViJnrrJnDX9H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.08|203.1|0.765|16.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01271|8bvcTwSFn8egmKPqdAYYN7sOXUbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|183.4|0.595|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|8byTJ8hVf_lFd1EFog4GrliHHZho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|63.2|0.575|4.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|8c21u9tiqz90gyjBe6ThB3Gp8Ht-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|194.0|0.575|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2391-3|8cBdVfMBmEAHNreKYCNrmD9eK9zd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|159.4|0.4|5.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|8cHUOhJQ9TztEXA58y4kRsrHpT0h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.87|222.6|0.51|9.88|['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jrras.2017.11.002|8cMQ7N1OpXAnS6juqysmXp9QchfR|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|222.0|0.57|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|8cV_FcOHOI0MtckH3jDsejfUVlHc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|215.1|0.69|11.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|8cX1Rb7RdxWluaepYfJylcaAqkNt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Sn|SnCN3H6I3|GUSnI3||0.4|12.5|0.46|0.23|['SLG', 'ITO', 'MoO3', 'Perovskite', 'Alq3; C60', 'LiF', 'Ag']|['MoO3']|['Alq3; C60', 'LiF']|bulk|https://doi.org/10.1038/s41598-017-05317-w|8cXi8Rn44BHQis1r4jps-pqTN2lj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'Alq3; C60', 'LiF', 'Ag']? The composition of the perovskite layer is GUSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.0|0.741|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08701|8caP23tyHcij1kOPBnv7lhe-CPMJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|172.0|0.65|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10526b|8cbiHxO8LnVGJD8hDP3RdLevczAL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|75.0|0.37|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|8cj0kPcUtXnme0CdVewAADyICZLu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|173.0|0.57|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2015.03.016|8d1o9l0Kgov-0z6KB5_s41oML1Ga|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C99Cs10H519I249N174Pb100|Cs10Pb100C99N174H519I249Br51|Cs0.1FA0.75MA0.24PbBr0.51I2.49|1.6100001716761378|1.029|185.8|0.672|12.73|['SLG', 'ITO', 'NiO-np', 'Br-BPA-SAM', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np', 'Br-BPA-SAM']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-019-01294-0|8d3v7_xSwxEcQ9tqvkH0avhG4HHt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Br-BPA-SAM', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.24PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.5|0.68|14.32|['PET', 'ITO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['N-PDI']|bulk|https://doi.org/10.1039/c6ta03119f|8d5AzGPl7JZWzSnDpH2-xGjYbeDn|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.023|154.69|0.483|7.6|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|8dCy32iRqLYYo1_Y0J6VeHbYUsIz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|144.0|0.51|6.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1038/ncomms3761|8dHVH1zqhPJRAkjZPyzB5DDasuhW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.0|0.73|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|8dOzmBgWxHSMW3dfv-B6V9B2Jn-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|209.7|0.54|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PEG']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.018|8dPMY99QWjUny0lTz_a3hc2BhEOA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|61.2|0.52|1.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1039/c4cp00298a|8dQC-cX9iIVoTqV0WkdoSCWoegcc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|235.0|0.58|13.8|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|8dW2S75cRfZucNWJyS3CZYF10q6t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.489|140.39999999999998|0.325|2.85|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|8ddP4a1EdqHpvo7z35y8Ug5XJa_v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.114|218.6|0.727|17.71|['SLG', 'ITO', 'ZnO-c', '1,2 ethanedithio', 'Perovskite', 'PZn-3FTPA', 'Au']|['PZn-3FTPA']|['ZnO-c', '1,2 ethanedithio']|bulk|https://doi.org/10.1021/acsami.8b10170|8delqg125hmd8bF3BYOoU3AMe6-G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2 ethanedithio', 'Perovskite', 'PZn-3FTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C5ClH30I5N5Sn5|Sn5C5N5H30I5Br9Cl|MASnBr1.8Cl0.2I|1.8700001994002349|0.38|139.9|0.573|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/anie.201707037|8dhkuDwHyHGAQXMMAfB8n3clf1Zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MASnBr1.8Cl0.2I. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.077|217.6|0.785|18.4|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-V', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|8e7K5f_Dq7iATxRYgoKPl1NSTXzx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|154.0|0.56|8.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1049/mnl.2017.0876|8eHB5J-a75s_qH6ToeFU59MkPO3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.887|189.0|0.8|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15263|8eTW3PcCiR2Win4EumgCJO69fkR4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578||||10.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|8eV5yOocPb0Vh11iP2m_aHC9IA5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.9|0.62|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|8eVsYmJaagQmGiqmkoDUM7H1-vkl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.5|0.67|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|8eVt_-IYDnZEAZtn8fmEt0qzhO7d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|256.1|0.69|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700159|8ebK11lb5YYKHI89WtMol4t422Y_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.9|0.8029999999999999|15.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.saa.2018.09.005|8emDnikICitXI_OkW2PBy5BmyK4s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|155.0|0.518|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.07.014|8fZtsrX27N3ET5ikdpN_hfb2wiB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|228.0|0.77|19.07|['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10994|8fkEtdJduR_z8R71H9HTLa0FiZ0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.09|244.5|0.79|20.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'O5H-OMeDPA', 'Au']|['O5H-OMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.031|8fm0MvD_qdYbHOaMqP7YcXm3cUiv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'O5H-OMeDPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.041|8fsOEDLO9GBVZclu1C6t46gYlyeR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|196.5|0.44|6.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|8fwaFIMXUXnPn_yLjXH9k73opAGs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|156.0|0.66|7.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|8g0ndoR79QqI455rDNb-Ex4CouI2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.0|0.652|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|8g0wCaEETB394wRvwAeacdKFfRMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.02|226.6|0.6|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc07785e|8g2M5m4WS76DEr1nz2JV6-3MsvPA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|226.0|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.083|8g437nKQFUnUtR8XUqpoWxIT1pqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.95|223.5|0.64|13.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/nano8090720|8g5NXO4hQ8HaPHW9kIq8DduqRPWs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.9|0.72|17.72|['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c', 'SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|8g7BBSlr8IFxBx7rEmgGK7-Kj8K9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|172.8|0.518|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|8g84WbCvjB9mkifxHtjIzXwrVfCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|193.0|0.47|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|8gGXs25Jx1rcbBqAg_IxUUivUvL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|232.0|0.7929999999999999|20.24|['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; SnO2-c']|bulk|https://doi.org/10.1002/adma.201906374|8gHUGWn6SemygFrh9Zcyl3JWJhME|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|215.1|0.647|15.07|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201800110|8gSXYuFBVanX3DcOXw6kNirf7PiV|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|142.0|0.5579999999999999|7.53|['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|8gWvsh_VgvlKiBCVReQI25bla8M8|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|174.0|0.633|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|8gwqdX9HXztCZ64B8SSX1-LjFKPC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.7|0.76|17.16|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-4F', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|8h1YdnrR0A7zs9TflfIfa6PF7n_n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|8hI0Qah46lkJ824-V0xv9jKcv8r5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|241.0|0.8290000000000001|21.97|['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; SnO2-c']|bulk|https://doi.org/10.1002/adma.201906374|8hNujnK-T2fm3eBjFrAYphyKrWRT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.14|222.6|0.7490000000000001|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|8hee5-y1OB3C_X0gK-8jf3S8lTXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -Br51C100H513I261N187Pb100|Pb100C100N187H513I261Br51|FA0.87MA0.13PbBr0.51I2.61||1.02|219.4|0.624|13.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']|['iDM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en13112897|8hmJgd4B_HdqEPVnQjHaq-dJK4mx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-np']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|8hrTxVNEuBKJDMgdkJ69BzK-Jxsr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|6.2|0.16|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|8i6aA7w--8DSLfRlpw-sl2zlegtP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|133.3|0.53|3.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep06953|8iGtM1ciaBTRQh3Ap5x5VpBt1t88|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI|1.6200001727424491|1.0490000000000002|196.3|0.755|14.7|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|8iISisg5esFirOpUmRifrws7GjBq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrI. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|217.0|0.36|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.020|8iJ764VYFTlnTn0RN21WCjUotEHJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.969|219.18000000000004|0.6759999999999999|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|8iLbwPkVhIXtQ4BMNN5GhtNyYEM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|130.5|0.67|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|8iMGWL1nZXipEFheC_azVpQvewmj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br45C95Cs5H489N176Pb100|Cs5Pb100C95N176H489Br45|Cs0.05FA0.81MA0.14PbBr0.45||1.13|218.7|0.71|17.64|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.066|8iNgcpKAwSdGE6IuzCZpbRZ5z-8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.930000205798103|1.22|152.5|0.74|13.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ta05118g|8iVAIswKcLQzxXVsVggKengN8Dnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|208.0|0.614|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-Br', 'Au']|['OIPC-Br']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.202001460|8icARVjSPJ2a9vTffs7TOVLZmBEx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-Br', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.75|183.6|0.644|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.2919|8if1oHWwSqHE2FEdRIAp2GhHYJnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.7|0.53|10.4|['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta05048e|8ikxJfQSE6QJylc4x5EHhpiHXlIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.6|0.659|13.49|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.081|8imD8Qf6Li8PtagM34vpY-fQBXJP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.074|218.6|0.78|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DDOF', 'Au']|['DDOF']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09028a|8iyuVlZFlmqL9RdAWXd5o7GoJhLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DDOF', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.046|217.2|0.78|17.79|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|8j2L9KvrFNtZMUJfmQ9zb5cWENPx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|217.5|0.6890000000000001|17.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|8j4X1FQs2wD5qQXGSXEc8DaDm8kD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|222.4|0.718|16.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc03259b|8jJ9C9q0IZEoYPaXmxZbEtnqHywd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.03|160.0|0.68|12.0|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1557/jmr.2017.264|8jRu5DlLSIkiQ0xg1mfhZQ8dzlW6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|42.0|0.56|1.2|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/C4TA05819D|8jVPnpEQD300M_bpUlZSm-mJnjzA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|192.4|0.512|9.37|['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Graphene; ZnO-np']|bulk|https://doi.org/10.1039/c7ra02036h|8jaY4OU2NXzd68F8Mt7_1VPoWYMb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.6|0.79|17.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F22', 'Ag']|['F22']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201700973|8jurmpCVPNcpZS2l2CDM5ZJGrXQj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F22', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|101.0|0.52|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|8jzsaWFViSHZurMBGtfQTCxEJEn3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br260C475Cs25H2455I1240N870Pb416Sn84|Cs25Pb416Sn84C475N870H2455I1240Br260|Cs0.05FA0.79MA0.16Pb0.832Sn0.168Br0.52I2.48|1.380000147150975|0.71|247.9|0.72|12.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|8k5yypg_iLlgTlxNN6wNtCagEO3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.832Sn0.168Br0.52I2.48. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|221.8|0.746|19.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|8k8JW3Zi1_Fyz-Ztks91svwuiX9Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.8|0.733|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|8kAGkWLYqGKNpgwm-9eumPS57lpg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.7|0.7|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800593|8kON8MbhqOaZYopLG7z7kvldfCzQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.0|0.7|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|8kiI7xYKWwy5HKZpS9md9h92eADz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.93|187.0|0.612|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|8ky21qxpYIoKDbA1F91VX6BB-50y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|98.9|0.411|3.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iPrO-DATPA', 'Au']|['iPrO-DATPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp07682g|8l4oCpfAne1HrwQZa9qVqgmknKSH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iPrO-DATPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.12|201.0|0.79|17.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|8l5L8AlvVges93bzfpBvhWyu-7Kj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.212|62.1|0.4|0.53|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['NiO-c', 'NiO-mp']|['Ethyl acetate; I2; LiI; TBP; Urea']|bulk|https://doi.org/10.1021/am5025963|8l5skgluplnajTxcQE1pr1cxDp-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbBr3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.43|15.0|0.5429999999999999|0.35|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|8l7EJKYGD4gL5TOXZjt4S_v7z-Hx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.13|225.0|0.72|18.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|8lH06bmkiliDmCC-7r8TEPXRN_cc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|140.0|0.6|6.98|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/C4NR04383A|8lMkE7MDbDtOa-f5YS4g2Zzx2gPt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|163.2|0.695|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta04028k|8lTAMCotF26E1PMQu2BvHPfbXkjs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C378H1512I650N201Pb200|Pb200C378N201H1512I650|(PEA)0.12BA0.9MA3Pb4I13||1.182|171.20000000000002|0.764|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|8lWoW1x4svKqEyZ7TPOVYlw7TbL5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.12BA0.9MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|152.0|0.63|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'PEDOT:PSS']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|8lcUK6CwY5HuBvkhWgyy19WgiWAN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|144.0|0.65|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137418|8liFxWvtQkK3t_EqtXFRTDMt81z2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|8lpUi7NRXV_LtUlZ_-dVbatuhEmq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.2|0.759|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|8m3TRqtxmb-JsiY3MMEgVzK_rotH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|205.3|0.765|17.33|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|8m3XupnhdSWaOo8xA9YPwXt5QKfw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|182.2|0.768|13.51|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b19053|8m8UzUE9P8xePY-vkrM-sorCCKsn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.9|0.64|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01558|8mJcXUC6koLXZKTl9YseQuF86T-l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|208.4|0.6|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TIPS-Pentacene', 'Au']|['TIPS-pentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee00599j|8mUhevdizZsLkMKmJkZbVO8aUrsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TIPS-Pentacene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Mg3Pb97|Cs100Mg3Pb97Br300|CsMg0.03Pb0.97Br3|2.290000244185314|1.45|70.4|0.772|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|8mbbIpf9LQ0JuAC5hWKWAS-pWxrK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsMg0.03Pb0.97Br3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|189.1|0.66|13.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-56164-w|8meY1rT_kN51Q2VwoXXhlB5tFmoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.61|277.9|0.68|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|8n9kl5QZnOPM_hgiVOSt9MUqTWlB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|201.0|0.792|17.6|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|8nA4grXZi73nq4BFlsKJXK1f_YLI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.92|208.7|0.617|11.85|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']|['FDT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7cp03551a|8nA7dGQueMiwyYKVzeDdIOgxX0-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|208.6|0.68|14.32|['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|8nCerpYUbQH1sSpuepWacVQ-BRBV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|0.98|205.0|0.7120000000000001|14.34|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|8nGTRqBqnZdTz7uUzkY6EN3_vyqY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|227.6|0.747|17.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08117g|8nHOkz4s5q-xBWsWw9djaTDRFd3a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.057|229.0|0.696|16.34|['SLG', 'FTO', 'CeOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CeOx', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta07541j|8nLl0MyCTHLhMTKfpk6Hq2E2P-9H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CeOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33Cs100I66Pb100|Cs100Pb100I66Br33|CsPbBr0.33I0.66|1.9200002047317917|1.046|159.2|0.704|11.74||['NiO; Zn:CuGaO2']|['PCBM-60; ZrAcAc']|not processed|https://doi.org/10.1002/solr.202000344|8nO7xdonFSMIf1z31kX2r6ps81z0|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr0.33I0.66. -Br11C20H103I51N37Pb20|Pb20C20N37H103I51Br11|FA0.85MA0.15PbBr0.55I2.55|1.5800001684772036|1.11|227.2|0.672|16.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|8nOFkV7gsj6UG2Fi5JGxaUhrTFmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.55. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.08|206.4|0.767|17.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01271|8nY0xoC9o20K-IgxaC7bLDCjHfuG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|210.0|0.735|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c7cp04053a|8n_S3SdDYhp4x_XTyqTLqRUgQjRW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|174.0|0.741|13.6|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/cssc.201600940|8nnDa7uJ7OYddNJupQ_WOKmqBmgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.0|0.69|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b13868|8nqbkuAkZ2c9A1ITR5-7REsqe1tn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.8|0.144|14.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c8cp01432a|8nsb2oGYBFNpPNoYDk_yHDlSKx0M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|232.7|0.7759999999999999|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|8ny3cd2SdCvSVRLRG_63Tz6pLteY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag5Bi5Br27Cs10|Cs10Ag5Bi5Br27|AgCs2BiBr5.4||0.64|3.0|0.649|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta10422d|8oFDOjz3wMT21dtMbFNp1AIsxGTg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr5.4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.11|231.0|0.68|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|8oU_puJLf9ZGSm9MHbSJvyEorr25|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.027|222.3|0.728|16.69|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|8ojEf2S6NvpKx7cSRh7Wdcv94i8l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|103.9|0.326|1.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01933|8ozK_6gUZVY39G7WNyIMV4LUQrt9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.9|0.76|19.61|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'FPyBr', 'Al']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'FPyBr']|bulk|https://doi.org/10.1039/c7ta04995a|8p1YDhkS4YBthRUni26MFfN788RS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'FPyBr', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|104.0|0.6|4.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201500837|8p3r1Zf1gGfou-GE_VIX8kQB2JZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|225.4|0.733|18.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|8pA8WME7Jv-wd5bIVmju_dkjcOjS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.22|52.3|0.589|3.76|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|not processed|https://doi.org/10.1021/acsami.7b18902|8pGk1vJlzPr2CwI5wMYWiVoHLeHg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|201.7|0.523|11.63|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|8pMwZGie4zJSQaqRs0VO9tO6D4LK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|8pPA05Tm0Mm4-dZbj1gRUo5_s6qd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|186.0|0.755|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.9b14423|8ptQJwZKcYzm0W2AaE_SErzvIY_h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|230.5|0.797|19.84|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['2-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|8pvy2UtThvEHwAH-CBCjV-2AuoIB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.8|0.792|17.18|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01947b|8q-mf8lEKDtLN6NHHZ0xzSnZrupb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.846|204.84000000000003|0.593|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-BTD]3-TPA', 'Au']|['[BMPA-BTD]3-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.025|8q6rLlru5QJDOUoJp2mph4wtSl9a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-BTD]3-TPA', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|149.70000000000002|0.607|6.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|8qNoPZ9o0g9GqfNfWCbxVaL0qX_1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.07|204.3|0.728|15.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2019.104050|8qqAUKMFfzhvih6mQZ6JdYDxn31k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|136.0|0.27|3.5|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-2S', 'PEIE', 'Ag']|['PTAA']|['2PDI-2S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|8qusD0qRS8LhQMehS1OF3Keg6v3c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-2S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.634000174235285|1.02|190.7|0.66|13.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.03.073|8r1OHsyglFDw-_Kx2qQgiNgYMUMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.3000001386204838|0.695|283.7|0.546|10.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|8rGNB4lsj6v2kEW4kVjMPt4etvF-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.2|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|8rJ0LRoWYNO9Q9vMstQsA9US9TI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|203.1|0.679|13.92|['ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.07.092|8rMvml21NX0ldMuauFFzRdN5X3N-|a perovskite solar cell with the following device stack: ['ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|238.4|0.57|11.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mGO', 'P3HT', 'Au']|['mGO', 'P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.renene.2019.07.162|8rOi8p3NPRwNMPp9CD5sctt6aewD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mGO', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|152.0|0.75|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|8rQN_IFD0u68HvKAl3qxj0L3HoJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|138.0|0.3939999999999999|4.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|8rUXH4-eI6ILd54msrrnfSjagQfZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|188.0|0.43|8.2|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2016.11.031|8rYeO7n3rhguO0scRo2ndFnhikzK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|193.7|0.64|10.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.07.095|8rbRstkZQjwVjAW2x6VlTvJSTw91|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|181.3|0.56|8.65|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|8rekAVtJIMPsrijcO7e9SU4aYAiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Ethylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|8rgBTm3-0piYrVSThLaWXwP0DByU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|171.0|0.63|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz501869F|8rydjWTX_WWRmt_RPbDvGAqcN_YW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|227.0|0.764|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201809180|8s8dHAVvaU-ho6nrnwusXJH-8OQX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.4|0.716|16.18|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']|['Ome-TPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|8sBudI0abGl2NFPIOA1x6Y5G3yuS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||||4.47|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|8sDAu6O7JSFLIckuOKniuJmHWkg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.5800001684772036|1.07|171.0|0.652|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']|['PDPP-3T']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|8sa-GLRUsThdQeL34y_1XQICDroU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|216.0|0.7929999999999999|19.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12305|8schODzGr1dbxaY6KJ6Y3tdQu-iR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|218.0|0.737|15.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901284|8sjWkGpeBdvVEevdKdpJHBzP6y2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C17Cs3H85I57N34Pb20|Cs3Pb20C17N34H85I57Br3|Cs0.15FA0.85PbBr0.15I2.85||1.029|207.0|0.715|13.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201801935|8t5Qf9-3ddzo6akYDEH2-F1UsNFm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|229.5|0.77|20.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|8tAIxk5__dGNEuG5aDXw_i2whAsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|202.0|0.69|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|8tCrCh6mG3Og5kYMF76w0ymWgNL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.68|261.0|0.6859999999999999|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|8tGac-ozaUNIdhNawUOIHL9DsYVM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.16|143.3|0.657|10.91|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/advs.201801117|8tMS_tOZR9wdRmVQRIV0FUk6R5lM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|128.93|0.622|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|8tQ8mybXUGS6RAN0H_u8yddoVrrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|123.3|0.6709999999999999|8.54|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201500543|8tYq7jVssplb40ZNCGlYe48t4sUl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|220.0|0.7829999999999999|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903166|8toiQPB-pUc4VdMXw0goSMvPXD11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|184.8|0.65|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.003|8tx5gPZh8mEoNZ5rM1XTARwwC0xp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.103|224.1|0.75|18.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|8u3G6dfMKZ_52JImTodE-9XkHLuc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br81C100H600I219N100Pb100|Pb100C100N100H600I219Br81|MAPbBr0.81I2.19|1.710000182339252|1.12|166.8|0.78|14.82|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCB-C4', 'AZO', 'Ag']|['PTAA']|['PCB-C4']|bulk|https://doi.org/10.1021/acsami.8b04439|8u7bcVeSTd8siloexJzz0VrsgzKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCB-C4', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbBr0.81I2.19. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.109|214.3|0.7709999999999999|18.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc09002a|8uN_dBZ5mj4scgLBAGh-4mzXYsyg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712|0.882|193.5|0.585|9.98|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF']|bulk|https://doi.org/10.1021/acsnano.8b02079|8uT9-mkk6k6ClFBNXORgTFJXnQ-G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -Br9C20CsH103I54N37Pb20|CsPb20C20N37H103I54Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.70||1.097|227.7|0.77|19.26|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901016|8uXGZiLS7_JqVAqvN7MvfMSxr41k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|195.5|0.315|5.52|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|8uYtXbooNZfwPZFUzMeLDTp7SC7t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.04|196.0|0.5379999999999999|11.0|['PET', 'TCE', 'ZnO-c', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.051|8uZTgXWQZBb4zPdMQnj7P2Upd-Dj|a perovskite solar cell with the following device stack: ['PET', 'TCE', 'ZnO-c', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.12|223.5|0.777|19.57|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|8urQSy_3CsV6C44fnRh_N3cX9zvg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.0|0.73|16.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|8v-f3w7oQMzx7ExrL90bHOoPEpFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|175.2|0.68|11.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07689k|8v11_Ed0jM0O--a4FGQ6SddxVl1L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.08|224.7|0.736|17.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|8v29CH7lcCg193hLswCY2VrK5kEU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|196.0|0.634|11.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201800625|8v6LhBOM7hQ0ypk7yu5TYPVYhhv4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|165.6|0.368|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.08.095|8v815pet184Qmb8ewYOE8SXHm4OD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.48|217.5|0.654|6.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']|['BDT-4D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|8v9MVcUFy0Gsu-OlNU-ymRNbkByH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']? The composition of the perovskite layer is FASnI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2700001354215498|0.36|111.2|0.59|2.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|8vPZhn0QGGHE9G7emmmfjC2P4aBV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|208.5|0.58|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'CdS']|bulk|https://doi.org/10.1002/admi.201801976|8vUjkZ8NrQHFgVHMGX-jXYwxsjSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.075|224.96|0.779|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|8vaHB2fDuSb08fQbaRB5pWtI4GV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|188.0|0.77|16.0|['SLG', 'FTO', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['F4-TCNQ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee02373h|8vdq9S9PkR9NxWBXNcJRpJ42iO8j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.095|224.1|0.74|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|8vrkFqZKod1Nd48wMuQVmh0v2tUa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|239.7|0.7340000000000001|18.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|8vsMFJj7tmO2nxEJTyNNeCLV_pad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Cs10I30Pb9|Cs10Pb9I30|CsPb0.9I3|1.8400001962013004|0.8320000000000001|151.0|0.68|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|8vzdXExMnQ2agRC7KJdaJuTlwiRO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8690000000000001|153.6|0.536|7.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|8w1tNHanyFVnWmTdikPyz2yOJB4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|230.0|0.68|16.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|8w92wX8ohknRwO9n4I_rXddpVNy5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.114|194.7|0.74|16.04|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|8wGIoaJD28ly8CQCfCaifUib73Nd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|147.5|0.937|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B74', 'Au']|['B74']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|8wRgXMj0qGTnRwxkxuaBuMZ8eJXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B74', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.0|0.75|17.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|8wUWWicv997Um2jVuregMEU8lv64|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|147.5|0.742|11.27|['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'ITO']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|8wYqm536bFagdc8s_R8tC_my4R23|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.0|0.63|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b01111|8wgM2rfLsH5JMdykpfTe-2zZ0r3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|8wnYHj3hxe0aR9tdPmaYIlh1Ljwo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|224.3|0.736|16.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|8x5M6Uh9Q-2nXn6NTfYKAGlw29f_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC-CF3', 'Au']|['TSHBC-CF3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|8x9ugWt1SV-_JBBZv2mntNZnQtl7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC-CF3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.04|144.0|0.64|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201901036|8xDQTaPZU9UqUizENgk29dAGwF3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.2|0.795|17.46|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|8xGMj8CLsIjfx6xJ1PM_yvnuKoLq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|121.8|0.6679999999999999|7.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01202|8xQ6eChRHhWpu3PKkUUHWJ6g7rdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|203.0|0.7|15.0|['SLG', 'FTO', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['F4-TCNQ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee02373h|8xVLwGidOnu4LQF3gy9AYP23RoQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.36|74.0|0.76|7.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.154902|8xYwPHuCFPzadmOfSlmsyYT2Ppey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.0|0.73|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.004|8x_fdZEqSDBBJ2khCIVNwam2cBcb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|204.0|0.72|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ta06458a|8xltww5S_7fxlyFkv9p_S_jRLloN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT1', 'Au']|['pBBTa‐BDT1']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|8xr0id71sjTwnmGhxrFe4Ty-1KsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.06|216.8|0.71|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|8xzh3cw86mjVZO_T8R7oJEfEWff7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.03|222.1|0.763|17.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|8yKUlMRo6erQFCgwrt9OE1cqWc49|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.0|0.67|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05576|8yQC0rT9Ve84J1Y1FSU6HPuA61h-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|209.0|0.64|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B3', 'Au']|['B3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.107954|8yRjhAwFFIsyWx9e1sgjBadQ4i5q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|183.4|0.72|14.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07689k|8ya_e7UxHBgkaO3PnzN5-MdSS58d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.3|0.68|12.64|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|8yiRpPchGPscjr_Iav6j9y4CyHQr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.1|0.735|16.2|['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEG-1']|bulk|https://doi.org/10.1016/j.jpowsour.2018.12.066|8yjRqKmp8z32G_4xaVG3UCBgPNSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|198.2|0.721|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|8yjnscZ96KtLZVtru5f6OwJ3GwOq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.129|93.6|0.6829999999999999|7.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|8yuMu_SCo_J-l7kmunqrgoaYzoq1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|200.0|0.5|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|8z0WX-h033KbhimR1QDFjzNipln4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.191|44.3|0.715|2.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.1c02836|8z4QOb9g3A7NYXpZEya8Qos6MjiZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.54|0.02|0.25|0.0|['Au', 'ZnO-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|8zFqiFCQQMQBfyd_7z3i1m7oo9hI|a perovskite solar cell with the following device stack: ['Au', 'ZnO-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|221.0|0.736|17.91|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsnano.7b04070|8zKkzY9vKF1dGQJufYh6kxFqwcnI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Pb4|Pb4C4N7H21I12|FA0.75MA0.25PbI3||0.97|173.6|0.638|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05727f|8zKmYRR2dT2sNRDOgsyY7ysd9hg5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25PbI3. -Br50C83Cs17H415I250N166Pb100|Cs17Pb100C83N166H415I250Br50|Cs0.17FA0.83PbBr0.5I2.5||1.16|226.4|0.77|19.37|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201801562|8zMWuOYgs7zHBU5CRyQ88edTz4n7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.068|233.9|0.718|17.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801717|8zY4D2vdaynwhVwsHlRIWm-7ct_g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8270000000000001|218.6|0.53|9.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|8zYXdnqi86qCErHBjk0xURL90FzC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.03|193.4|0.713|14.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|9-BR1oUPM4YLrVhPqJuj8FoXtyA0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -Br4C11H64I6N13Pb10|Pb10C11N13H64I6Br4|FA0.2MA0.9PbBr0.4I0.6|1.810000193002366|1.16|158.0|0.731|13.4||['P-TPD']|['PCBM-60']|not processed|https://doi.org/10.1002/smll.201907226|9-F7LZHAtbo8dzA9TcmoPfVY-ojj|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.2MA0.9PbBr0.4I0.6. -CH6I3N3Pb|PbCN3H6I3|GUPbI3|2.520000268710477|0.652|4.0200000000000005|0.628|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC05|9-ewkatiyLR6ypxm-6FAmwCT105x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|222.0|0.695|15.4|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|9-ifpCYasZau_sj4oRKFWX_Tvt-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.082|229.1|0.75|18.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.135|9-oNO2XAuGHgMlkLuKitxeNRn3uA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|221.5|0.7959999999999999|19.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|9-ys2rZ1hO7D2rkKemC1sXyUmy6b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.3|0.64|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; PCBM-60', 'Ag']|['P3HT; PCBM-60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01009-5|9-zQYuWb8Lz8cDYj96wR7aho1e4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|226.0|0.519|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.017|90-o3y2R7Tq134M3IAULMLn7Zh-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||18.7|['SLG', 'ITO', '2PACz', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz', 'MeO-2PACZ']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|906axr9ruydvX91fSkFjr5QHim6A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.62|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|909FrUkpq3pN9Pvq_mAgmUksy5EB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|211.0|0.63|14.7|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8nr06899b|90SzUt2LVNyYKm1ckFCK26moGeFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5300001631456466|0.888|225.0|0.69|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07153-2|90W0KtlJGzvAkGwPrM5KzC9XcEmg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|0.846|108.4|0.563|5.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsomega.8b01589|90p49xDBUoMDfQEXg23DXSJWUjxQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is CsPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.7979999999999999|186.0|0.65|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|90pXAJO0ttrvt3d4052D5wiPtIbH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.42|3.16|0.32|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7nr05764d|9101zim-toArD0qZCI3Ts-NDk3Zk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7700001887371206|1.091|152.10000000000002|0.64|10.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10987|915-6UiWdRv0OztkzvLSUcPhZlQ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072||||9.89|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|91FTXivBs2Iz69g1G80T1RNJV93k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -C6H15I4NPb|PbC6NH15I4|HAPbI4|2.05000021859384|0.91|26.5|0.46|1.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acs.chemmater.6b03054|91JmaIjL-9rvGfgG-BB_BpnoIjFq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is HAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.0|0.78|19.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00671|91MAYG8IffTQ7vp388mZwt4KTgIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.93|0.75|18.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|91PlUcW_D3mC87QtBEjE8Gck9HbH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7490000000000001|116.1|0.492|4.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|91Sw__mnrsRDISlRs0PusPmM3vkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.5|0.675|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|91VkZ1TOyz8iJNgiLm5HAuYDt2nb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|230.0|0.6920000000000001|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|91_e9-jwi434PWgSFiAMGEaR-lBb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|174.60000000000002|0.679|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-14920-w|91abj9JEn8zkvE3_XyAvvfV8vQ6p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.7|0.46|8.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|91bRiZ-6gwPWA102rG21YCyKBem4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|91.4|0.603|5.3|['SLG', 'ITO', 'ZnO-c', 'APTES-SAM', 'Perovskite', 'PCBM-60', 'Au']|['PTAA']|['ZnO-c', 'APTES-SAM']|bulk|https://doi.org/10.1002/solr.201800240|91ndUxcELk76c1rieOv1pw-u1iRg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'APTES-SAM', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.93|204.3|0.542|12.21|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|923xJcKgav8EJ_0KJ8Ljni9--QWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|202.0|0.65|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|92GM8XtriJZllI8yYlYJ3Egt7ItS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|108.9|0.389|3.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5026797|92IhhThSUi8kRhpsYQkH7nQkfeCh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|116.0|0.718|6.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|92K7xCLi87ynSLg96clKHL3xIZKg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C40H240I111N40Pb40|Pb40C40N40H240I111Br9|MAPbBr0.225I2.775|1.640000174875072|1.01|145.0|0.64|9.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08848b|92MrIX_9M-d7OkPdlhpcW7QQdl3K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|208.2|0.72|15.15|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|92TutbfNBQK9Jk5BxOOD7EBnuZkG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.525|164.5|0.58|6.0|['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1002/adfm.201903621|92fDdFlSHLFZTRtaPRuL_zgIheQ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.6|0.7|13.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc09452c|92lj4IsV-BevgxYpmRHsX-ZYKP35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|230.2|0.61|12.56|['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PEG']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.018|92nY99NloVq9MjplNuSJ0fo6uhL_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.0|0.703|11.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|92s1CK0Qo37Jt6nlRh2XKT2zsKeE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.6|0.69|14.4|['SLG', 'FTO', 'VOx', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx', 'PEI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b09063|92vop27caEVz8qinDkuRg3MwUGCN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.07|0.792|17.71|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|92wcVq_a4iZRcF9qyTBJmV2x-DyL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|200.0|0.62|12.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|93-ewdwXDfIaE7ThhcYSyYYW64iP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|223.0|0.75|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501320|932ChdjUqLEcvI7-BDzdO2Xb14WZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|196.0|0.64|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292014400013|933FvjqMlF7lYsFM5e3pK7OwEUH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.0|0.815|20.4|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|938WZZ3HkoX91NZGwPYoiGBzpuNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||||||['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|93GfrUlqmxxSTuO1s5qDf1dz6fKw|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|133.0|0.544|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|93NwNBMaAwGsX-mFaz18ztHR1tH6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|182.0|0.65|12.3|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b11245|93fJ0shKY2tIwoQg9ADEorGHlYOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|189.4|0.77|15.46|['SLG', 'ITO', 'C8-BTBT', 'Perovskite', 'PCBM-60', 'BCP I Ag']|['C8-BTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900317|93j42lg72EB36kvSGlyrc0crjTS3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C8-BTBT', 'Perovskite', 'PCBM-60', 'BCP I Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.745|183.0|0.52|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|93oaqEDU5hGhsXWhhsjRrTm3za1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|225.3|0.755|18.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900476|93vz_N98NOJFkV69CGJNl9htadaw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.06|211.3|0.6970000000000001|15.67|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|948q_vYwzLHaIErzlUINYS2K9enT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|217.0|0.72|15.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|94BHg7Th7FrhGRXXpPcHQK-XNK2j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|63.7|0.594|3.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201501425|94E1bihI6OK99xdu0UZiyrypj3kv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.11|238.5|0.7709999999999999|20.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|94KMnSEIot5V8Ib81ulJ1LSd0vyq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.88|138.0|0.6|7.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4mh00237g|94NWDzud_svsYBAihjAj6nPUBmW7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|119.0|0.645|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|94ZnwdxppktL1SdyA0pH_UdkSPOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|152.0|0.743|12.1|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Au', 'BCP']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201601128|94dYdme2rgLFXWquVve1r_EA-ZUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Au', 'BCP']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|234.6|0.784|19.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.025|94kzi1zFz8YxJziH5YDPhIrTVixt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.45|59.7|0.7|6.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706073|94nbmWrZIj7P_nPQVhy09HjCCWzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -C23H130I61N21Pb20|Pb20C23N21H130I61|EA2MA19Pb20I61|1.5800001684772036|1.028|223.7|0.606|13.57|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|2D|https://doi.org/10.1039/c8ta07836j|94vikW80ImD5a80kih_ab9pcH8P0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is EA2MA19Pb20I61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.992|210.0|0.73|15.2|['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nanospheres']|bulk|https://doi.org/10.1016/j.jcis.2018.12.001|95-NKt1AFqaLBxaL1POWtti7ZxuA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.57|183.0|0.7|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|955H-ODBj0woBAX-MRKJ4l3iEM8T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.042|193.0|0.7509999999999999|15.11|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['B2F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|95HyToovzTzz5BsXzl2c1BamKrmW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|203.6|0.58|10.31|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.019|95NrI-DfIZc8cRjyIyG5DuWlFlHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|207.0|0.65|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|95RzqC-x9TvLcmTamRNja_PaNLUC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Cs10I30PbSn9|Cs10PbSn9I30|CsPb0.1Sn0.9I3|1.2200001300899923|0.206|1.77|0.31|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2016.08.052|95SB6INZmJOQgXLdRZuITNHT9MeV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb0.1Sn0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|185.6|0.64|12.38|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|95djjNx2_kwKnu_UdUajFnGHTvmE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|183.8|0.68|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.084|95mDyYsLTuCmUQA79mJr-COSroAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8PbI3|1.500000159946712|1.09|207.5|0.7509999999999999|17.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PDIN', 'Ag']|['PTAA']|['PCBM-60', 'PDIN']|bulk|https://doi.org/10.1016/j.orgel.2017.10.028|95ooiYUovT4Lsx2CnDMtsZ_xQKhq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PDIN', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|0.959|87.0|0.56|4.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502202|95q9o6PBS1XVR_vYPSWjP9P6xc2Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.0|0.726|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05879a|96-7Hc0_7wOPEQ1Wa_u4Cib9Ii1N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|230.8|0.66|13.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|96-YKgynlvAGYGQgA2T-TS2_SBs-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.75|230.0||11.6||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|968In4j5LHF4JmX_twLj8hKB7GWD|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.0|0.872|19.4|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201601128|9698me0rTwJEk4HcxE7zVeTb3mlx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|203.0|0.64|11.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b06780|96WX_B9VZygwAGwKze5GEG7AOrNK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|190.0|0.63|10.51|['SLG', 'FTO', 'CeO2-c', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['CeO2-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.210|96aZ_4x7upMJPEcU9Lvi30CVlR0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CeO2-c', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|15.3|0.31|0.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|96yzNsHM_LlOfbV56I_jhmj_ULJH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|226.4|0.57|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.002|97-9cx58hAaI8DUd9DzOzIdmfxO8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|211.0|0.722|17.08|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|97-rAYc3YyMn1THVHIbAM5c6B6xu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.054|216.6|0.693|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|971lG58-xJow2yfF2j068MFacNBu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.961|128.0|0.54|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc04830g|97507ExZ2m9MpPiFAnHL6tZniV6L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|153.5|0.64|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr06217a|9757A5u4g-b2lpbJIF-9PekPoFy8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|976F1Mkt8XGHHRCJHYnT1ctWdnSU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|230.8|0.698|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|97VdMk3IH0g_46dCeZrcmHsjRvAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.04|165.0|0.56|9.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|97lqtpebzqzhwXj3jZQa3J9wGbMT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.96|224.0|0.764|16.42|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|97n0E_mmSAS1cPIFk1zPAls8vMVY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.5|0.831|20.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta08081c|97yvh0kwZ-ZfwXvMz5mHXfk8LMbr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|141.0|0.684|8.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|98Fuc1WcmX9E17zLtp-U_4LcUQBT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|201.0|0.78|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|98IgqWsiXYmBqbMRJVKlayXTf7g8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.83|137.7|0.424|4.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|98LbL9lvH5QdU8J64aUxDDDTYOTi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.3|0.7020000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA06718B|98Lug5E9ik3wkDFHIEa0tiuD7XV_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.755|143.0|0.52|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|98UmhQ-n5ZYOSQ7VHtbTbCZA4hTe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.7|0.71|11.82|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|98XEBGubEEwr8gutfDq7Oau_SAlo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.898|209.1|0.75|14.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|98ZJEl59Bg4f1AcSa7rSn3cynOmS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.942|95.5|0.53|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|98widq037UXrSPHOukhSA01wciBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.6|0.75|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02965|99AQTuSv5jOisU19Qef4L1JBEWRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|225.0|0.733|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-5', 'Au']|['BTT-5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00997f|99OvZ_yooo7K0Ilm1A2ub_xzHIWh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-5', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|203.5|0.77|16.01|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|99WLsf7RLKt_LabeaDKgRdo_BTis|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.1|232.0|0.74|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|99_q0V9ono48J7p2OKqjp6k96GxF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|244.4|0.7140000000000001|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227586|99fDszrGrg3C-d9BFcxNuMxPQgjl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br9C47Cs3H243I141N86Pb50|Cs3Pb50C47N86H243I141Br9|Cs0.06FA0.78MA0.16PbBr0.18I2.82||1.14|220.7|0.79|20.03|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|99p0kOzI5c0nFXiFySOnhq2_sBQJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.18I2.82. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.971|193.4|0.6559999999999999|12.32|['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['GAN']|bulk|https://doi.org/10.1039/c9ta08929b|99pGxLmJEaO77ak-VzOhJogIsQdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.812|192.5|0.71|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM']|bulk|https://doi.org/10.1021/ja5125594|99pf4yPiFvci3t-Sbr2hdfdKWbLM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.5|0.71|14.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|99qQu1sxxqTAnbEn6Pok2D8Hyse5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|165.0|0.67|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500209g|99xQ1VDVZgyQ_RjKDKSpfNw1tS8H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.01|221.4|0.579|13.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|9A1dbDsPHec6nCjSdHFFm9mURvhm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|179.0|0.75|11.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4914086|9A7k6VSA_cPt-rT1SyxtXY_rM9uc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.88|106.0|0.427|4.0|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|9AH3_U_qVbuPXX0k1MshqLaNvOPV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.867|239.4|0.674|13.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P(BDTT-SePPD)', 'Au']|['P(BDTT-SePPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.04.026|9AQiVv1riIN8RRvvyev77LXP66PA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P(BDTT-SePPD)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.0|0.711|12.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|9Aqs9fXPKBcooTxd0lVHMqKESGTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.0|0.629|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|9B0ourM1w-krmyAQvu6qZQjznwny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|38.5|0.4029999999999999|1.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|9B4wtxBVTQTgmXza64p3I0XfQPBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.4|0.64|9.73|['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|9B99GdB6seeX1Arz-QOtVvcwDlnu|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|233.6|0.769|20.08|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|9BMgKcvDOBo_skUOtC36qw7Fz8EU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.25|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b01440|9BRLjkCdFqDB2gasBj4g9bN_8lPY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|181.1|0.181|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']|['MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|9BU-JhKdx6yr7trFFVOfI8Zinu4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.1|228.6|0.765|19.23|['SLG', 'ITO', 'NiO', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201701586|9BUxZabvTYUYe5xo39fJyh9ccR94|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|231.0|0.62|14.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra02637h|9BVhYedzSYY6Nws88UsCWkbOVt7U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.089|156.0|0.76|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBB', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['PCBB']|bulk|https://doi.org/10.1039/c5ta10574a|9BWG64Vf-8VDlHu0MNjdN5rt06cq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBB', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C200H1200I597N200Pb200|Pb200C200N200H1200I597Br3|MAPbBr0.015I2.985||0.923|238.0|0.687|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2020.104984|9BX80DahUXhvJvJtdsuT0kNpVNqd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.015I2.985. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|168.9|0.63|9.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|9BbCEjUWOO__xO9bhXFSnjeRxlGf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|182.0|0.56|10.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|9Be8nvT17sNgDx0-9ClfEW9dKIXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.023|236.5|0.65|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|9Bg_lzkv2Jjv4tya51bna_ijbonJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.31|103.0|0.445|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|9BkwzohU3_cVNgUNJEsVgMszCBg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.880000200466546|0.97|87.0|0.58|4.95|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152768|9BsISD_s7FCePNvLOLQX3u3D9MgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.7759999999999999|17.3|['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01987k|9BuqSd9wPvWsWAfyMwnekOCQoes0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.094|212.1|0.78|18.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201504666|9C3e490sQxbhI0xyS38mVLLnvKCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C1900CsH11400I60N1900Pb20|CsPb20C1900N1900H11400I60|Cs0.05MA095PbI3|1.6100001716761378|0.96|197.0|0.69|12.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.185|9CAiOBGNy7_G9Dgfsw-DH1inBlhS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA095PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.46|74.3|0.8|8.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AIGS-QDs', 'Carbon']|['AIGS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.04.052|9COgW3EmsrUcsuot3w_qXkqHPShe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AIGS-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|234.4|0.653|15.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ra12049d|9CPAcuoga58nMJRfiQUxkhSCiBcZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.9|0.58|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|9CVe-wP1f0oNIY-OlwLUWA_y71NJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.804|176.70000000000002|0.626|8.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2017.12.076|9CXY-VL-3OXtoyG24wSht-rM05Hm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.1|0.65|14.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08622a|9Ci1m80lVv8Ct_OZuTSEiw8w6MsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.7000001812729404|1.08|226.0|0.758|18.51|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2018.10.032|9CjPcvaIv3-H8zI2IrFvhrQyNEOc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|244.2|0.78|20.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|9CvhDuD1eLJvwEAaOY7RfIhr2QYt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|100.2|0.8|7.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|9CyZ9m_3M7FPNnL8urfLennrTzRk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|234.6|0.789|20.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|9D7dwJk8euz0lPjnfRqn5A9q4FuF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||161.5|0.74|11.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11082-020-02327-3|9DFooPi7-A6Isqb82tbttRwwPx_J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|183.3|0.64|10.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|9DMWyS5Pko_FTJtt9EhbaiNC8Uc1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.03|47.6|0.24|0.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']|['m-MTDATA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401991|9DNIKevwuZwyE9WXvLzGp4rIEhZy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']? The composition of the perovskite layer is CsSnI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.94|157.79999999999998|0.519|7.7|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|9DW2jhtK5IVOSJeLq_uXiJ67KZ9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.095|235.0|0.705|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|9DWqUieL2DTi3DgDW66RNyIyvOQg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C100H510I291N190Pb100|Pb100C100N190H510I291Br3|FA0.9MA0.1PbBr0.03I2.91||1.01|224.8|0.595|8.81|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.3390/coatings8090314|9DixAPuUU5m-nHnFI59MwrpSUGES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.91. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.082|220.1|0.752|17.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|9Dnti-zkY0G51Ou_pr8JEgzHoMZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.68|0.4|0.56|0.03|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|9Do_4Ef4UfVjEgPWa8Piu4p1LUHe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|165.2|0.6759999999999999|10.85|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta05026j|9DyXDfO8_giWHIiwpQ01cod-J2go|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|240.6|0.7|17.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|9DzJOxQddXMZIQmwi51z9GZFSXuY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|202.2|0.8|17.39|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|9E0CfyxmPrJkhLFG7d_yGmZp2bzM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.0|0.74|16.2|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|9E0qT6Lw8jEY77prxwW3DJbNLJt6|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|207.4|0.659|14.08|['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'Au@poly(4-styrenesulfonate)']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800061|9E2kczV5BwI8fEZDNNaAYzD797BM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|159.0|0.78|13.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|9E6E_jXaH3SCHtv4GV4_jtgW4T1F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||12.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|9E6Q-a62q7F0xFdHsHBgSZtldilt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.7|0.7490000000000001|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.09.014|9EOZ3OBGMZ4iTQUgR-A-F0QHjj18|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.634|49.0|0.26|0.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b02651|9EPMmBx9DPAOMWq_0vI9lBvZc8ex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|179.20000000000002|0.64|11.2|['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201306271|9EXc7Hg77R9ui2FgV9jM1kCN7gND|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.93|144.0|0.54|7.25|['PET', 'TCE', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.051|9EXr4xfKjYwdkTrNu5NKCIRNjrSp|a perovskite solar cell with the following device stack: ['PET', 'TCE', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.5|0.72|14.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.084|9Eafid-d_icjaG3C9wx6G7dcFSMr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|168.0|0.63|10.31|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|9EfsJcS6WJDiJvRetsKqovELvWe_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|222.7|0.77|19.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|9EpaOwUlY3UpSY_C_kA8SEOYHlBu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|170.5|0.74|11.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.202000393|9EtRNpYA_g7oNtbQl8NG3XdvHfVG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|206.0|0.63|11.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03522h|9F1LX95BRsWE82-4sdGWwUC-48n0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|211.0|0.693|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00573|9FE7PWpIAQwmYq3hAwX4OlxMJ6O5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|0.97|182.1|0.5820000000000001|10.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acssuschemeng.8b05734|9FG53A_QGwyWAoo831ojup3lTOjX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.0|0.721|14.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|9FKvvcdf05pD_M6a0wnZuBOGoTIs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.746|17.6|0.53|0.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1757-899X/303/1/012002|9FVAorrV5hnoXQNDPbqsFJzZiykj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.5800001684772036|1.1|182.0|0.6729999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']|['PDPP-3T']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|9FZN-Gnu2BcjACCfEigyeX5LL9ZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|162.8|0.42|6.36|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|9FfycwN3HZKMgl62Eqhoas9hx1e_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|126.9|0.608|7.02|['PET', 'Graphene', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'TETA-Graphene', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|9FtARZaxHf6GxCXBnDS1-Mw_I7NF|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'TETA-Graphene', 'PET']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.081|244.8|0.79|20.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'O5H-OMeDPA', 'Au']|['O5H-OMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.031|9FytOZYLpUKYB3KoMwpjNV9GO3CL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'O5H-OMeDPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5800001684772036|1.04|211.0|0.58|12.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|9G3-X-Ik7jrssIrlKN7taHnSfpSq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|203.6|0.75|14.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|9GDqSTOK3xkflEP2Mzc-unPFfzir|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|190.0|0.607|10.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|9G_YvRXqvTzxtr65bKY46AyjZOzX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|162.0|0.757|13.28|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.07.041|9GfnqwB7KwHvz-UtAu98rC5_803I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.04|194.9|0.68|13.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|9Gngp5IN6mTfxgQv4-KmWMITUf9N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -C10H60I30N11Pb10|Pb10C10N11H60I30|GU0.05MA0.95PbI3||1.054|220.0|0.76|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|9GuIu6IJm07Hh0LZPPyn5-IQbD9M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.475|39.900000000000006|0.248|0.44|['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BaSnO3-np']|bulk|https://doi.org/10.1016/j.jallcom.2017.06.121|9H2m1jow4xHtT_l3wt9nBr4Ypjql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|9HDUSeN99pRuvtIK-2orMxaRMFjg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|9HFtMAgw27OCyZl6NN1a4P_wwMUI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.05|228.7|0.633|15.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NO2-PEAI', 'Spiro-MeOTAD', 'Au']|['NO2-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|9HU5ylqXhJl1psrhx7mS0E1U3Drw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NO2-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|158.0|0.49|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|9HZu9fcCs8dpTURTtWp0SkzfTB7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.0|0.72|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|9HbmHxo2qkI5iZ65VItWX2TdOD3P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.052|221.6|0.759|17.66|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|9Hl5P_usgopKfeSeZN6S49GuXYw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|232.8|0.61|12.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|9Hlilhe-e_Td6pTAMhYlhx94OBJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|167.60000000000002|0.67|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|9Hv5ZrU071kinlv4WekmjfaBH6o4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.9|0.682|12.72|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|9HzmjKIv0tAwnM_Oxi16jNLoHQAh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85|1.6200001727424491|0.99|198.2|0.63|12.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|9I-KfLD6G8O6Af24WCA_heFUGBe9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6709999999999999|183.3|0.2769999999999999|3.4|['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEBS']|bulk|https://doi.org/10.1021/acsami.7b00576|9I0L5MVJ_FRMPfVpRUYg0NZgKy0z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|9I3FtP5yRxtH1G6R_mL3PbI8Dpw6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|239.8|0.7859999999999999|21.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2‐aminoterephthalic acid', 'Spiro-MeOTAD', 'Ag']|['2‐aminoterephthalic acid', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201915422|9I83I1i7nbS5_LTsqTcTqxvwxX8x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2‐aminoterephthalic acid', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.04|235.3|0.75|18.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-019-1186-4|9I9R9Qo0O1eTJ__I-OX0RiWfZRem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0759999999999998|246.0|0.733|19.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.202000782|9IA8A7ON9SljbY40Pjl4NtxR_Iu2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|44.0|0.34|1.1|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/admi.201500790|9IBj-Eyx3irSaT4N52Hl0BFKjCWc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.0|0.613|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Ag@SnO2-nw', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'Au@SiO2-nw']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b00309|9IECdhq4czvHlcbZtOGJxx4VNrNW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Ag@SnO2-nw', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.106|252.2|0.252|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904856|9IXuxsR9kdF9zVgUNUre5yOd_g0x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.07|117.0|0.618|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1038/s41467-018-03757-0|9IioplnSIceFsYrXdLKYhxGwX83M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.116|199.0|0.757|16.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'Ni', 'Al', 'MgF2']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/advs.201700675|9J6wR64fHpyLNi5f2rPU0yuapibU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'Ni', 'Al', 'MgF2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.0|0.71|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|9JHmc6wCduyApXRck2jCF9-BcxDL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.935|196.0|0.55|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.03.030|9JKPoyGoC1OZI9giWT_U0Y65fx1x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.0|0.685|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900627|9JRKNcc7NE3Ixb3XNRl0rvPxO_pB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|198.0|0.75|14.6|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|9JRXndDIHQAs0YEHatlb_1YHv2R0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|154.5|0.49|6.75|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|9JWKGNIer5apS6iXI4pNc_X5jJBH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.0|0.762|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|9JZS_1ZtKFvDOiChzZS6latgm-3-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.038|237.0|0.66|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|9JfqMT-aWtKdLlwf3UAANxZi38rP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -C2H11I8N3Pb2|Pb2C2N3H11I8|FA0.5MA0.5PbI4||0.929|199.2|0.54|10.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|9JjbaW8Bhtd2SiXirXPIo7gR-tYG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|174.89999999999998|0.6|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.170804|9JxZ3Zpj9KkfkYkcP46nCrWnetTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|210.6|0.76|16.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1049/mnl.2017.0477|9K55Q9kgh7aT8znWGnP1iTxPD-63|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.067|222.5|0.762|18.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201802234|9KC4NAh4Ffhx75XUekcv7hNLBqUb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|156.7|0.61|5.69|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.150888|9KCGNvCcLvz6T3otQcj3-drL81Hu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1740000000000002|134.8|0.7859999999999999|12.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02277|9KCqEmPIERNWUV3ZjYwPIoDBEPb0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.629|159.9|0.617|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c1nr10867k|9KD4WDBjO4YkIu0Xbow5C6N1_7cH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.7|0.7240000000000001|16.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|9KO5nY-we4VY-_58Q8D9r39Tmq_S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|154.5|0.794|14.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02277|9KZpyvvn3LnUhcS7Xa3S73UZwP-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|205.0|0.75|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201801808|9K_CV6hEYYm2_iBfvZXnR4F0YSzM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.11|201.0|0.69|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.0c02405|9K_Roel56e7QGUi-4heIjDlu2SRd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|164.5|0.647|10.02|['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['rGO', 'CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.07.022|9KdCn3PZNCc0R1N20PAENTGGUsDe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.62|43.0|0.6|1.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFO', 'Au']|['PFO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|9LKwMs2T2kJUQ670zb2qsXaj_POI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|199.8|0.72|13.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|9LZQ_AX75k8u5inWjYa-SyHVgnmb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|224.0|0.703|17.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-np']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201801254|9Lfzm3gNVer0hMsPPDcp1t6PzOZC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.98|191.0|0.68|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2014.2364115|9LrCHlztxBStjno8y42p5pf8zP-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|176.4|0.713|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|9LzEPWZyhOZ17Ei4kODChagcpdtQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|203.2|0.654|12.83|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|9M1sv3KdrYCGSe-6WSqdYvrbzzI1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|9MFs9S-Cf6HVmoVWSjqU2vGvKzSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|120.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|9MK4tooFLWjhdgh390eAEMWaajtw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Pb97Tb3|Cs100Tb3Pb97Br300|CsPb0.97Tb0.03Br3||1.57|82.10000000000001|0.7959999999999999|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS-np; ZnS-np', 'NiO-np', 'Carbon']|['SnS-np; ZnS-np', 'NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta08900k|9MQLtZgBCQh6G7aWYUqdYAr9u4nq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS-np; ZnS-np', 'NiO-np', 'Carbon']? The composition of the perovskite layer is CsPb0.97Tb0.03Br3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.754|185.0|0.66|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|9MTNrXXX9ZoqsJbIq--y36UoFWAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.481|197.32|0.506|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||9MUiJkdt_dPHSMlf4kNqq2WnNCBN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|216.4|0.397|5.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|9MWUkjUoput_ydGJsruv-dmKKaK5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.799|188.25|0.69|10.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||9MiLSZvf_Qr45_3oxsc1LzNncOOd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br2C5H27I13N8Pb5|Pb5C5N8H27I13Br2|FA0.6MA0.4PbBr0.4I2.6|1.5800001684772036|1.04|209.0|0.73|16.0|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|9MtTd4p0DESODzc0KEXcKSuoVYp3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|9N-nooIoshEN3aKNbnaZ0BJvwIX_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br30C9CsH45N18Pb10|CsPb10C9N18H45Br30|Cs0.1FA0.9PbBr3|2.2770002427991094|1.234|70.7|0.711|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5087246|9N5BzNN-FrM4Jc7iGWrtqLO_cpUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.0|0.72|15.3|['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|9N8zvvwkdcv9lYKuWj7VIP_ADadp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|199.0|0.75|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05576|9NB4uUarXV2EWrvd7_ff3JpxoJOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br19C100H600I281N100Pb100|Pb100C100N100H600I281Br19|MAPbBr0.19I2.81||1.07|183.4|0.82|16.09|['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskire', 'PCBM-60', 'CIL', 'Al']|['PEDOT:PSS', 'VOx']|['PCBM-60', 'CIL']|bulk|https://doi.org/10.1039/c6ee00612d|9NFCk54joveS-O9k3tCd5yfj1KG7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskire', 'PCBM-60', 'CIL', 'Al']? The composition of the perovskite layer is MAPbBr0.19I2.81. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.7300001844718749|0.81|214.0|0.71|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']|['FDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12236|9NQ5rYPmGwS4ibV6nqPYO-4MyUGF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|136.5|0.63|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2019.04.014|9NSNx4Gias0Rgsq-JawOwhif_mbv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925||1.1|240.4|0.7140000000000001|19.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.05.008|9NVgKZdy5X07U27cv4yCX6fdFxhW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee00689j|9NiQupfHTY4KFiDiKlfbYA_AS1AX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.7|0.65|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|9NkvFGy5Qo4aY1l4PDLao6f-3yW0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.9|0.7|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b07216|9NphNEi4W_pneqmSVEAepYjUYF3D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4||1.21|185.0|0.76|16.8|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|9Ns4WazBX_LQ94_ro9AqSkEVS_z9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9se00102f|9Ns6g6SJnYt96M-0a6q3whczkuNn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|184.0|0.552|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanocones']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|9Nsowm4SJHid6DWYg6cmYi-PMb44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.2|0.51|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|9Nw7V7LuCwdKlu6ve6tVY_jPP1fp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.94|182.0|0.5579999999999999|9.54|['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60; PDI-DA']|bulk|https://doi.org/10.1021/acsaem.9b01154|9O2soId9iNGxFY3Al4XgUfSBaG1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|236.6|0.442|9.43|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|9O9h8khJHC2iXHjW9sWFG2rrv36r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.102|196.0|0.68|13.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|9OCorku87jv2rRHS3-tlYG7CnL7e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|236.7|0.615|12.82|['SLG', 'ITO', 'PEDOT:PSS', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.10.024|9OJlm7OqVzWzLA9umRHHX8nNZwlN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.8|0.705|16.19|['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|9OUBtVzZqGXuWSZZbjIvRZ4avw_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|159.0|0.72|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06163c|9O_NYV8SWbh99z91uslKPnVBUNjb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|186.2|0.63|11.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|9OePNxjWpMB8i6WnipcP4n2nfl1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.9|0.54|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|9OfcbuB92_RAYJqlZY9AYeSDIRLr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|229.6|0.7879999999999999|20.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|9Oj-ZAd99pmGbLgt66ZzkFeK-m9E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.93|67.0|0.544|3.37|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|9OjztckiCxzloMgPBUh0uLzvbJxo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.075|203.3|0.685|16.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|9OnobmN9J4zbF4X7TDGmyVieUXZd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.809|183.6|0.606|8.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602822|9Oo5YhP5FUQOOO5R_vh-HDvabK33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.6|0.665|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH']|bulk|https://doi.org/10.1039/c5nr01820j|9Opk-ldwjdso5pfZjnMtirAwBlQf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|169.20000000000002|0.68|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|9OtfwlURgHH98TTvRCsMJMqdA-M_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|197.4|0.723|14.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2017.14278|9P2a39nhLYXRL867vIGZ63Nm9UjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|228.2|0.746|19.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|9PEyu8lpxC2JEc3lny7SeK5J5YzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|140.0|0.711|9.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|9POwZM11leGPG6g6aem02YC3COUa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.069|210.8|0.69|15.54|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-mp']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.mattod.2017.12.002|9PPdJJoBvfSySs7hBOeO8JpWQucy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.75|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|9PSDGaabNPPJXsuCn07ToV2bu5aU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.06|210.8|0.8320000000000001|18.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|9PSpGvv0Ey9ZwA6-96kJ53i5KlGc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.021|225.2|0.75|17.24|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801249|9Ps1TKn1xr6q0jLKY0w5WuB-i74_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H116I57N24Pb20|Pb20C20N24H116I57Br3|FA0.2MA0.8PbBr0.15I2.85||0.96|203.0|0.754|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|9PtQ2QLeMrDCDsTZ9Y1TZk4wwFny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|217.7|0.73|15.4|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.3791/59929|9PvKyjFKUnufHGkDhd5Gu7jxWY1w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.795|149.4|0.389|17.42|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b01180|9Q6dB9nhxlZMyKFKjgIyJ2aJ32bR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|225.4|0.6779999999999999|15.07|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-K']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c7qm00319f|9QMpZpcAqaqHCRcJZn2Owu6QYQQV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|134.3|0.5329999999999999|6.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|9QYawZ62CpoJyVybPWPyMI1p6K13|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C17H74I30N11O4Pb10|Pb10C17N11H74O4I30|(GABA)0.1MA0.9PbI3|1.5400001642119578|1.09|220.3|0.757|18.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|9QZpiIWNNiy-Zro44N-WjnKj5Kof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|160.0|0.7|11.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|9QbsCHdVDnPMVpgf4dArZpGG8SIY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|31.0|0.35|0.7|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|9QcbkIwSXW430ryknabh1jnHFHEw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.4|0.733|14.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10470c|9QhtWl_hgSjegA_ZW77jF80hPRXB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.026|195.7|0.7|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|9Qkw7_N1ApotYZTON4R4aBJpfjK9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.058|185.71|0.766|15.06|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||9RFv5JHn1LhtlhLkJjIF1KFvWuX4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.031|214.3|0.7140000000000001|15.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|9Ral2yoA4K6V1af7IsPShncm4uDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.04|232.0|0.72|17.4|['SLG', 'FTO', 'Nb2O5-c', 'Nb2O5-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'Nb2O5-mp']|bulk|https://doi.org/10.1021/acsanm.8b00859|9RlfEivm-THFoCxSNF_8abqAmphG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Nb2O5-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|209.5|0.61|11.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|9S5gwbSYuVdwqJ5OfPQr3TmHi82e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|11.5|0.72|0.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|9SEMkkus_bUpjGwc1IFO1sivom3c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.0|0.78|16.6|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|9SEf5ie_pCj_dlUorFuHZuGFm9XB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.805|58.58|0.449|2.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05055g|9SEqfNuks1cey7oaKcIFOwsNkQ8C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.002|99.0|0.69|5.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06268|9SGD-bHo3-J1nn8sE0tpyeKvmgVA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.0|0.743|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|9SO27ZjdULyX8bHkaFX5RlWPyBVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.240000238853757|1.4|72.5|0.7809999999999999|7.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|9SO_ZXpLJ6kYZ6QDMt-mpeW8Uoxt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|184.1|0.6|11.31|['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|9SXxnJRJiJeRH7srycrG2FdLCYtA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|230.0|0.7879999999999999|20.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903166|9SpkREdpHEJxgGAe_UDfTB8rSf7l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|9SrzKlouZc7kQ34kJpdGzmd6lDaE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|158.0|0.6729999999999999|9.2|['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MHGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|9SxPmMXSomAno-sel55yMozPHq6h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.118|230.82|0.746|19.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|9SyvHb_FEYeVR83epVh2J8wuxTZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|238.0|0.601|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al203-c']|not processed|https://doi.org/10.1016/j.solener.2019.09.100|9T1hDL88pPHqcUTHXDSFM-609rXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.68|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04267h|9T2Lc1W_tQzyas4_erE_uEfUPByW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSb3|PbC4Sb3N4H24I12|MAPb0.25Sb0.75I3||0.5870000000000001|7.199999999999999|0.332|0.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|9T4F0Gq4leNNYFJhM4VXH6Vbp8S_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.25Sb0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7020000000000001|35.6|0.445|1.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphite', 'Pt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2014.10.017|9T6_NfqYl8ZskwurARbRZDkCL5to|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphite', 'Pt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|75.0|0.38|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|9TBvliFKB6irETV8lCqAtxFKHDUu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.03|245.3|0.77|19.44|['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|9TFn_7tpF34doSWnQvkIgqfhjjIF|a perovskite solar cell with the following device stack: ['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|199.9|0.67|12.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.081|9THMonzw6lYpN7lRbcTwMidFYxQH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.09|202.2|0.6859999999999999|15.17|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|9TKccwbw_UnkJhpX7CQrNkAajmKJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|0.95|156.0|0.54|7.98|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|9TfvGoxCglCUX9HOfpzQ_uFM68aj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.148|216.0|0.764|18.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|9TkMRFh0Ma25F9BXSuKhd9Smber-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3|||||5.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|9Tl153zGSY2_P4VD1SlK5dSjYcbZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|214.6|0.8109999999999999|18.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2018.10.017|9TnTmeXKZcTnKgNjhxSoyFXa_tSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|203.5|0.68|12.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA4C', 'Au']|['TPA4C']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2019.08.036|9TsdZ4bTvhERpEdHmWi5rVc3Rv7W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA4C', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|209.1|0.68|14.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-1', 'Au']|['Yih-1']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|9Tw8yieEctZKv8wKbEhusaOp-S-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|232.0|0.7240000000000001|17.14|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|9UEBqk9qBnmEHrSktW5L4AHJ7Ley|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|186.7|0.633|12.37|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.10.101|9UKWx0-Urtqnx-g6yhf7S3oEOPsI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.0|0.72|16.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201700897|9ULE-Ny-F4nBDV3HODNXoCKFBVGk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.8|0.802|19.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|9UTznZE-B6CT2ZrQ_3YPK_KXChH_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.8|0.78|19.55|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|9Us5D0n1Y04oZjl8lesKVlm6SEaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.66|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292014400013|9V3VGVpHx0onmoPbTd9ElB7PTWOx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|146.7|0.54|6.7|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']|['Cu2O']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.08.013|9V5EJav0zSU2BQDNdUYeScY7X-ri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.081|213.2|0.77|13.82|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808119|9V7RfX2qFWIL64cgWdcAfteOfrPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.945|170.0|0.69|11.08|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jcis.2018.12.001|9V8-kipKwQoEL6O52sOF4AKdhC8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C40H240I111N40Pb40|Pb40C40N40H240I111Br9|MAPbBr0.225I2.775|1.6000001706098266|1.08|215.0|0.674|15.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226914|9VBMXkFxyDOLyf7N8r5PtfU68gxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.6|0.604|11.86|['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np; Nb2O5']|bulk|https://doi.org/10.1039/c8ra01571f|9VP_Vv_0TWabGK0gxvcdjAmNzd5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.6|0.63|11.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.11.011|9VSypY6JGjASLqGVsqAvCmz79orN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|190.0|0.55|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|9VUNHmC_jS63tFov_92FF-NJIXfG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag10Bi10Br60Cs17Rb3|Cs17Rb3Ag10Bi10Br60|AgCs1.7Rb0.3BiBr6||1.01|12.1|0.69|0.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.037|9V_dfwIf1NMP38AyvnbuZabIDRrq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs1.7Rb0.3BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.8|0.8009999999999999|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|9VfxHQtEGeJIMeve09g2KuO5_ExK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|213.1|0.67|16.26|['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|9VgBCeBuAvGgJSTiE4Ls8gDNM4YG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.14|225.9|0.74|19.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|9Vkqs1RbUab5ALqfeyNLYvSuI1WH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|166.6|0.66|10.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|9VoEF1WJ_NbgsxQl2xHrV91cdcCZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.648|41.03|0.5|1.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b06278|9Vpnx1nLVlvYW5gGzoO0Y9XhM3qQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.0|207.8|0.785|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab221b|9W3Mp3G0-vaw83VFGgC8H3MvgGXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|105.0|0.48|3.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11468-016-0255-9|9W59OY-Hd-0EeeruNLGX7uOJwTpV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5500001652782691|0.95|218.0|0.7879999999999999|14.83|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta06317j|9W5aBKc-ZYMg4xH1xJUvYF_Qp45O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|220.4|0.753|17.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|9W6aSKTv9xGTJiII0IjhthQxOqm3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|||||['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|9W97yF-R8noSern9gIsRaB-Ji7t-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|67.0|0.43|2.1|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1149/2.0171802jss|9WDO6fOhrqlT1nI43TS5RbdaMcGL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|141.1|0.696|9.78|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al3O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|9WH1gSmFKaDYEWM_8AHejJg4cAyg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|193.6|0.53|9.03|['SLG', 'FTO', 'TiO2-fibres', 'Perovskite', 'Au']|['none']|['TiO2-fibres']|bulk|https://doi.org/10.1039/c4ta03658a|9WNgb_57e7_7TlC8KH601FODQ4g3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-fibres', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|107.9|0.467|4.14|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.032|9WPJROantO9TkcCMPolao-9ajFG4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.08|211.0|0.75|17.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06595|9WQN9_a06plJlZO-wA5Y2USUcfKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.11|219.0|0.76|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c06315|9WUsXLz0pUTAoaaKGSkK8c_QzA5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|157.89999999999998|0.6679999999999999|9.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|9WYSMIpwENKLIyKJHORo8Tm8Ur-t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|136.2|0.43|3.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|9WYluKH4QPpEkTBZJ4iGj_Hxeb1g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-51945-9|9WebOZEhZr8VgzUmygX0AVWizBto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|209.1|0.7559999999999999|16.25|['SLG', 'FTO', 'NiO-c', 'PTZ-1', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PTZ-1']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09530|9Wiu-GA1ngX1imrIsfKuMJAx7rs9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PTZ-1', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.6|0.672|13.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP06', 'Ag']|['YKP06']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|9Wm-fBgaHiEpWhOFvJnAEF6_6N9e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP06', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|180.0|0.65|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.7b03243|9Wu2n4rk3Un3AaG_Zx_t-yQCM9Uq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.99|87.69999999999999|0.609|5.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|9WyimNPReIa_XTVWRC5X1YQtGx7K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.043|208.0|0.711|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|9X3lJKxN6tBeB0o6BV7jd1IQhOHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -C18Cs2H108I60N18Pb5Sn15|Cs2Pb5Sn15C18N18H108I60|Cs0.1MA0.9Pb0.25Sn0.75I3|1.2600001343552385|0.48|218.4|0.609|6.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c6ta07712a|9X5Qm90d4CtC6DKmVB-mlY4yyzIP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|213.9|0.64|11.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|9X8LQRA_Ih0dvhOh1FjloUPbtNCl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|184.0|0.3|5.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'PEIE', 'Ag']|['PEDOT:PSS']|['ITIC', 'PEIE']|bulk|https://doi.org/10.1021/acsami.8b04861|9XBhxBB_jRWcfRoKwgZ3fbXZ-kVb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|211.5|0.775|15.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|9XBiHWsSkzzwl71mndvAgXIHxom3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I54N37Pb20|CsPb20C20N37H103I54Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.70||1.135|228.8|0.78|20.25|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901016|9XFPM9c1b6EzdCU8X5sKiIPhlQu0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.5579999999999999|186.0|0.3|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|9XXj3sahDUUbphPiS-pNKY4Zo03O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||1.16|216.5|0.777|19.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5118679|9XZDI3qqgvyoiYm4qZFL9Lo-pQC1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|176.0|0.599|9.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']|['5,7-bis(9-ethyl-9H-carbazol-3-yl)-2,3-dihydrothieno[3,4-b][1,4]dioxine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.5b00283|9XcaBd6QqsBHH6UFbol61yA6g1w6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|212.9|0.742|17.46|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'IT-4M', 's-Bphen', 'Ag']|['P3CT-N']|['IT4M', 's-Bphen']|bulk|https://doi.org/10.1039/c8ta12028e|9XgAyfQ1w4x602Vg3P24zxiULfV4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'IT-4M', 's-Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.54|169.0|0.546|4.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|9XoMQ41k6BEmftiDPWKzfM3AKwaq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.02|207.3|0.64|13.6|['SLG', 'FTO', 'TiO2-nanobundles', 'Perovskite', 'CF-BTz-ThR', 'Au']|['CF-BTz-ThR']|['TiO2-np']|bulk|https://doi.org/10.1039/c7nr06424a|9XxnRhuzffQHcvhrrywkurOZG5NQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanobundles', 'Perovskite', 'CF-BTz-ThR', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C2H11N3Pb2|Pb2C2N3H11Br6|FA0.5MA0.5PbBr3|2.2800002431190025|1.385|70.37|0.728|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|9Y72I0XF_eTwq1gqwZRd3VwCQxqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|179.8|0.74|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1038/ncomms13938|9YOn8H4u9sdmzNzwOtbZpQW6y2dE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.0|191.2|0.59|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|9YPRl4Em3BWXNOtts-S0htTAwOwe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|9YTWHTmCcgvtXxqXqRkkDBvX8R4s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8|137.0|0.61|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS; Sorbitol', 'Ag-grid', 'PET']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2016.1176512|9YW84181Tkumu9mEEERzYuB4lXBT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS; Sorbitol', 'Ag-grid', 'PET']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.06|193.0|0.595|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|9YWXxm0cGrHx5T4TK_q6g7EW3uJ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.12|233.8|0.74|19.34|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|9YZA85vByrask12r2FJGxgBmnfux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.62|262.6|0.733|12.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Me4NI', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Me4NI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900413|9Yd41tpQUd6NTFerFhAP1gP-1Gcw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Me4NI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.89|205.3|0.725|13.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|9YrNdhvojTOTACpyc1yvi1VvolwM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5900001695435149|1.15|212.0|0.753|18.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b02948|9YwGAoJfGRLxa7co_qoXkzYwAc7l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.280000136487861|0.48|207.0|0.452|4.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|9YyAQj_QIpO9dnn6HkkNyhIT4RKH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br6C9CsH45I24N18Pb10|CsPb10C9N18H45I24Br6|Cs0.1FA0.9PbBr0.6I2.4|1.6100001716761378|1.14|200.0|0.71|15.4|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6tc04510c|9YzQExXbkQQW5Up__80FsRteJJxm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.6I2.4. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.117|214.5|0.738|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|9Z-112YT3GlogEzEmZZxnmTLdef5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.077|224.95|0.7809999999999999|18.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|9Z0Z--4r_sNcAm3iUT-zF3ZNiKwt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|210.5|0.74|16.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.04.283|9Z6yZWbZm6IQcCCtdCrAcsacoC-w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.0|0.76|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900138|9Z81dN69DIZ43_DHmeXheqPrTQ15|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C38CsH200I120N66Pb40Rb|CsRbPb40C38N66H200I120|Cs0.025FA0.7MA0.25Rb0.025PbI3|1.5100001610130236|1.16|231.0|0.752|20.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b13418|9ZAjlHujaYLpP1W1QA38s09_AdIZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.025FA0.7MA0.25Rb0.025PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|201.7|0.504|8.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5026797|9ZCM2xIi2iJ4qQZk6VqMe3Sj-5r5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6000001706098266|1.05|202.8|0.8029999999999999|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HT-ZnPc', 'Au']|['HT-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601733|9ZHceWbV2DwzKJVjOaklSIPVUVd0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HT-ZnPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|153.0|0.64|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nn5058672|9ZIGNCY7WGN_MnYWdBgZZE4TVI8R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|229.0|0.73|18.0|['SLG', 'FTO', 'TiO2-c', 'Carbon-nt; TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Carbon-nt; TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900164|9ZQ5FhAlMsgJqtUFg0D_CXS_d6Bd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Carbon-nt; TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|164.7|0.39|4.56|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.scib.2018.11.004|9ZQGyBL-2c2YfIblE7QF9Wnrh4O4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|55.6|0.4|1.82|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/C6RA07549E|9ZYKn-DRDGUGMeSS71zFlRJWYYkA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C94Cs6H477I288N181Pb100|Cs6Pb100C94N181H477I288Br12|Cs0.06FA0.87MA0.07PbBr0.12I2.88||1.06|230.0|0.6629999999999999|16.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|9ZaIKnaW1g25gPXR0YdGGdtI6egp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.87MA0.07PbBr0.12I2.88. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.88|120.0|0.44|3.4|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr04179a|9Zl8FHAs-SLKqBhLMT8qboKAfprr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|226.4|0.78|19.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.037|9ZmuWhihH9_bzSt3otdbFSUCJwCg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|194.5|0.505|8.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|9_5L8-8F-cMT6hvoGi0BDw_1c0f8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br100C83Cs17H415I200N166Pb100|Cs17Pb100C83N166H415I200Br100|Cs0.17FA0.83PbBrI2|1.5900001695435149|1.19|178.9|0.74|10.86|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201801562|9_Hadqmn9FD0QMLg77YuxN3xE7yx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|231.8|0.71|18.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6dt00900j|9_JaXKlMXuZ6pRe9eJfz3DXLLryB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|201.3|0.71|13.86|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['IDTCN', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|9_KvY5MKvO_6NEt6F30OyL59BuVx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|163.0|0.71|12.9|['SLG', 'ITO', 'AZO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['AZO-np']|bulk|https://doi.org/10.1021/acs.chemmater.9b01292|9_X3YN8psawMgwKNCjrb4kIIakQk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.1|0.45|8.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|9_hqVRHwPeo-y6tJDP93UdtR7KgT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.59|125.3|0.838|16.67||['MoOx', 'Ag/TeO2']|['ITO', 'TiO2']|not processed|https://doi.org/10.1109/JPHOT.2021.3067703|9_ipdVUlmuQd_bsFsUZ03potL7Ca|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr2I. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||1.085|232.0|0.797|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta05378a|9_j9wnHJ7fL0QunSqDSqVDhSRdj8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -Br50C95Cs5H491I250N174Pb75Sn25|Cs5Pb75Sn25C95N174H491I250Br50|Cs0.05FA0.79MA0.16Pb0.75Sn0.25Br0.5I2.5|1.3400001428857296||||13.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|9_tJWWofVGAjaIqeYx3-961TslEL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.75Sn0.25Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|221.0|0.7240000000000001|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|9_vUKBbuBvaxe0NmdGuks9tbFOFW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|130.0|0.405|5.31|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|9_yb2xspCfLO244qoZRPQWRPo5_A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|110.8|0.61|6.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.6b09671|9aLzNByzuVHtHADxWdjAB3j3mOvi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.0|0.66|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|9aXshkg4vBPD-znlpTjphSGXVCU9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -C49CsH245I150N98Sn50|CsSn50C49N98H245I150|Cs0.02FA0.98SnI3||0.43|185.3|0.68|5.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b03194|9aYfMPbCeRp4MWsIkWvkxLl7LYDu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.5|0.6659999999999999|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|9aYl4NfqDSP3y-qKKiA7sQF93etT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|216.3|0.71|14.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta08970d|9add9YSRYmpJQSUc6IPEKyU6Mt9q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.98|76.39999999999999|0.42|3.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|9aizWqWT1KN6n1akegCQ9MqNCGIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.12|228.9|0.73|17.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00028|9akB276ZO0h-SFarSRtQGhxDLG3o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.261|115.7|0.66|9.64|['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['NiO-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|9b-3qnOWc2sGIiEtYJG6HSc-aLiJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|1.1|238.4|0.763|20.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|9b9Ic5F514IAkCwk4t4RTELAc8ez|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|212.2|0.61|12.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|9bBKH7tQuwjGBy4HeMEmdmwr_Fd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.3|0.65|13.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-4DPA', 'Ag']|['TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.10.022|9bQ1Xh4Dhwdlo6TbUehnp2P3TFWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|184.0|0.785|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|9bTZHubOpt7YaR914v-IGYcf9bnX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|||||['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900466|9bZgsmfxjpRYAR_hkPgotTa4FTrY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|199.3|0.708|14.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|9bmmQwPbw9x_O51tKjlBBZAx_KHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3||1.07|220.1|0.75|17.63|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|9bnlyUaNpSfO4EOlrNV0e-GwNAez|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|196.2|0.6|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|9brFes3DWMxnN4T57NmkmlUdvuDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.92|110.0|0.61|6.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|9c1Ge-ukRTM86aDftPwaM6XEak-V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|165.0|0.62|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|9c7nfbP5f8cG4057eERfIu7wz48m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.1|224.1|0.7490000000000001|18.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc01104k|9c9LlkerW3EpPmDJDQMj1RipOKUa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.091|175.3|0.32|6.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|9cAl7nWplk7PXR84MwB2HE-Bf-Rf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.965|190.0|0.66|12.1|['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoS2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2020.04.021|9cHydtUVxO9kQ2T3oWcqBXtW6VGQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H30I6N2Pb2|Pb2C11N2H30I6|(TBA)0.3MA0.7PbI3||0.75|87.5|0.59|3.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7ta06735f|9cL1_1Qek1NcvCGwQxBKX1AB7-0v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.3MA0.7PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.13|224.6|0.7559999999999999|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|9cXJCyFnu4vE1BqBDzQP6fRV5bSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.2|0.705|13.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|9cZnfvc3C4wf2yB0hZEl3-ofFy9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H513I300N187Pb100|Pb100C100N187H513I300|FA0.87MA0.13PbI3|1.500000159946712|1.089|223.9|0.753|18.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adom.201900018|9cdAs1OOiW2TKVdZaeS17CSYV5Ou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|236.0|0.71|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|9chQ5HZO64LoCbCONkoa56Li0Tu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.7|0.77|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr08375g|9cj6Lt-lzOGi4ro3IXjxICZ5hbHd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.074|189.42|0.771|15.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||9ck9KfWD9bQNn-S_7NGML77iw1Wu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|211.86|0.72|16.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|9cnVMjBjSiePq0EPNneDSf7tWViq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.0|0.74|17.59|['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|9csJ1xxebLNaADGAfeDiCMFm2H0a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.2|0.69|14.82|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601156|9cwsJKabyDCJWXScoAY7J65IUE3D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.77|17.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|9cwvqEYljAmIbr7zgiuRS2CXI5uh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adfm.201603968|9d3Xr3B4-IygVsJJO9JroGd8ijRY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.06|232.0|0.75|18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60-np', 'PrC60MA', 'PEI', 'Au']|['PTAA']|['PCBM-60-np', 'PrC60MA', 'PEI']|bulk|https://doi.org/10.1002/adma.201806516|9d4wB_9kNvcWpx6scL2KC8xbicrM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60-np', 'PrC60MA', 'PEI', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|1.08|215.2|0.7170000000000001|16.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|9d6Nle0pxW9BXbWAqiA3X3ER9_uz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|99.0|0.71|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|9d7BNAxJfDEM7nrb01NtwiAVUr8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|236.5|0.71|17.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|9dGVC_L8pbhn1tNxWktdrmwBjo14|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.39999999999998|0.64|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.031|9dHclVumkJxht39C4sPgCySHLzfw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5500001652782691|0.89|200.0|0.63|7.5|['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['C60']|bulk|https://doi.org/10.1039/C6TA05095F|9dR6edhYQZFVuc-qGYJrDbMCWMvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsFAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|178.79999999999998|0.579|10.73|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.039|9dc_0bbMoYseDQa1lQwfFv0CCcp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.865|51.0|0.25|1.1|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|9dlTchqSPq4NXzBLTFHY2qwDnqrp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|216.87|0.7|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|9e2KDtszZe6uaIq95kg4rOQwt3Gv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.62|19.1|0.61|0.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|9e2Sj5VOhFi7QBkAXaSX2CyimjQV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|200.1|0.73|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM']|bulk|https://doi.org/10.1021/ja5125594|9e8yKXrMkiEwPxiQ40WjLItyw5Na|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.08|129.60000000000002|0.659|9.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00258|9eDLGUd96fwE7kpha8Q555t40ij_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.96|166.1|0.63|10.08|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7cc06183h|9eDnuDYHL1-ofrDHVRleXeP5GaN5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|11.4|0.7|0.072|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|9eFUYFx6v-iZORAsqV87ELmz57f9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|179.7|0.66|10.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01718a|9eRz3kqfApDarQ5JTcTFuZmI2lHC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.34|57.7|0.46|0.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'Al']|['PEDOT:PSS']|['C60', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.03.016|9eUSObkQ7b2xvdD_Hw8CZ9ezj75n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.68|125.0|0.63|5.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee00896d|9ebRNsnP3YhIPYMHBLs546k6kAbi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|177.2|0.62|8.79|['SLG', 'ITO', 'CuI', 'PbPc', 'Perovskite', 'C60', 'Bphen', 'Ag']|['CuI', 'PbPc']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.solmat.2016.08.024|9eg6LdYRaVMfeE4nVGZRZzURX7Af|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'PbPc', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C91Cs9H455I288N182Pb100|Cs9Pb100C91N182H455I288Br12|Cs0.09FA0.91PbBr0.12I2.88||1.123|247.1|0.773|21.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|9enw16lsXSoOYBArXw5SRVbuxuxL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.91PbBr0.12I2.88. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|237.0|0.7709999999999999|19.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']|['WO3', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201801386|9ezLSj8vxJIOiZmhNB1wJJOKU-oN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|201.1|0.7|13.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.10.019|9f7tH45kSAP0HefrpueN5L7anm5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|165.39999999999998|0.55|8.33|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['NiO-np']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ta09845b|9fE8SSZ9-VL-qIT9P89bKUFK9kOM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0490000000000002|214.8|0.74|16.67|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|9fJFCvUmzq77IpGkBpm3E2yl59qv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.5|0.62|13.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|9f_EczWzk9a5FCAv6ajX4fznE872|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|172.0|0.61|8.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|9feU7FkB7xvwkEe9RxrX-IRwqdRh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|148.8|0.7170000000000001|11.02|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|9fgTtOHIOY02N2bgzpayQLQcM_jo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.96|229.8|0.659|14.54|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|9fnnTKHhPdwAaIT-MmRqIqNNGfP6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|117.3|0.48|5.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta10871k|9ftXlEHjhR-NN1D7LKZE8712fCHe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.841|187.14|0.76|11.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||9fyGhiAsOrF9cd6nV4NY6cnA3tCO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|170.44|0.344|4.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|9fym7y0lBx7qCCSpn65qAS7bb9kA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||1.07|188.9|0.763|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|9fynaXs-X_QCVmCMoKdL0bsDBhxl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|217.7|0.66|11.06|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|9fyuRkgi9kJa2czHQO-vjKLhYYXl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|229.2|0.64|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|9g4dPBA8qJ2PGVAf374pjExkezfA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|129.9|0.7609999999999999|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|9g5XIn68-nwxOw-YNqziUx_hA-zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.0|0.7|14.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110288|9g5ZP7JAHZ5023yQpYNQpcybRXPb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|227.8|0.64|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01815|9gAv7dhj_7Lmfn2JDdmVgNECL87f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|219.3|0.752|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0282-0|9gJXh4jwXmqLrsjvXmPOmVaitRn_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|160.5|0.67|10.89|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|9gNv-vj-5UBbLkF4WjN0QNrTs_1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|210.0|0.51|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'n-dimethyloxamic acid', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'n-dimethyloxamic acid']|bulk|https://doi.org/10.1039/c5ta05220c|9gOULdFlVcntxGpqTKip-RmlCkUO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'n-dimethyloxamic acid', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.012|27.7|0.667|1.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|9gOZrm6kO73Q1-ywiUi9g_AoXJTk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|215.0|0.6|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|9gUF4lSLua9YfJVxO3xoE3JPqcoc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|222.2|0.755|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601116|9gX7kNTwWu-CwMRKdZmoBjXE7Sd3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/acsami.7b17938|9gc3_3U-Mlgf5u0DW_1xQA4bAKC5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|212.0|0.68|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|9gdnqfc5cu7YNMowCwMR70fyaJVW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.95|214.9|0.54|11.12|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|9ggCtaj5RTUp6hthMg8Wt2a1C3tj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.134|230.5|0.778|20.31|['SLG', 'ITO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1021/acsnano.7b04070|9ghHKos3cQjXW5II_fAxEblABjk0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|170.6|0.75|10.24|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.15541/jim20160218|9gj0WnQct6_xxB9pbmqMAK2jchMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.15|101.0|0.726|8.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|9gkT8Mj59okDoS_nx0BGLym5wGn5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|219.0|0.78|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-SCH3', 'Spiro-MeOTAD', 'Au']|['HS-Ph-SCH3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|9gnNXI_OBtiEBeGxmdx-4eqwtq4S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-SCH3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|175.3|0.57|7.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|9gnqUCWw83j0P0T5tlvwhF-LCkcE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.961|191.25|0.71|13.05|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||9gpkpYTwFHE7WvVoF2_Y7nNBBEz8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.4|0.703|14.56|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|9gq0KcVGrqI5ShamPLQKYOZbvxb3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|117.0|0.41|2.64|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['none']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr03181d|9gqGYynroe9nl_A0Fb85qSNA5Rld|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.74|95.4|0.2739999999999999|1.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta08262e|9h47l0GU9Eh2A-KhAkD9PN-apzaS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.1|0.6|13.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|9h5-KCNdEzF7XQhsb6UwXn3ViKfO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|94.0|0.355|3.12|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra03162b|9hGN2CfXPEJrMRvCLgRaN3nrp5aK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.253|73.1|0.77|7.05|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|9hUGtH-epunci2d9omTV36kesAfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Cs50I150Pb49|Cs50Pb49I150|CsPb0.98I3|1.710000182339252|0.752|181.0|0.65|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|9hcrXn--r2hh1MOorqM89UR0O-xc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.98I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.29|8.100000000000001|0.21|0.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|9hvStm8PodajqtqOJ2pR3fEYyI9K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.04|225.8|0.76|17.85|['SLG', 'ITO', 'NiO-np', 'ME1', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'ME1']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|9hyWiUJMuXs9GXEGjKHW5ybQdfsp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'ME1', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|231.4|0.759|19.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|9i20V5upqClU_WnXU8SIblsDsfVp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|180.7|0.696|13.71|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|9iJrFIsMiV7B8J62LxBbfSpEKkST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5300001631456466|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900220|9iMM-fnu9Gwusacl23jXEtiRTKCY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|205.4|0.73|13.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|9iO4Q71XR5c_rMFw-jxvq1qXJBIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|176.0|0.69|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|9iQUt0DK1EUlm8PrYBIswJ8D-K3e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.3|0.348|7.3|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|9iT3xcudHn6LmM0sdK1Ly25NWQe4|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|222.0|0.721|16.9|['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IDIC']|bulk|https://doi.org/10.1039/c7ta09543k|9iW4HzT6V-PmWu9jlsqVe-doIwiZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.0|0.4029999999999999|8.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|9ictKszCwyJsgEdQMPe-YaaW_Nkc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|155.0|0.708|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00480|9j1zUvtg2xhAaLY08Rzg-v2rJOMi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.4|0.647|13.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|9j2x5JTw6d9rdnOUPBIho1EuA5aQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|234.6|0.8140000000000001|21.03|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|9j4wfST9Xv3_tGYLNn68--4fwisM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|187.5|0.66|12.98|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|9jE3r8AjmfByM6OuHBMwf-aaihuO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|236.5|0.71|17.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|9jIn5-0x-O7ESgiGEz9jPapkwN2L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.6000001706098266|0.7509999999999999|133.8|0.532|5.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/TED.2015.2413671|9jKHC47Pz2B3CtlWI3MZfOXgXuLi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.5|0.72|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01360k|9jPBv0eX-puB3FAQ9VZdIR_UXU6v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|152.4|0.691|8.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.116114|9jPkna5Zap37mQP02hdc59vE0LGB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.0|0.75|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|9jRnUQYa9DKgSwed9Bh7m1CGRohf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|206.0|0.51|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Sn']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900146|9jXbKbiH8_kF0TY3n2huX1d3hV1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Sn']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.0|0.78|16.8|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|9jbSEHvKKyagluI2cKXO-mZAKU6B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.0|0.735|14.9|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.inorgchem.8b01030|9jflYjepdK-yPSFWAsj8P3DkyHtF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|230.1|0.725|18.08|['SLG', 'ITO', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'FPI', 'Ag']|['X-DVTPD']|['PCBM-60', 'FPI']|bulk|https://doi.org/10.1021/acsami.8b04396|9jnNXj04KLiZw9INkNLFHhgK_FFZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'FPI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|130.9|0.8|9.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04482g|9k-5aW8kBpoaaN4lV8un_o1mV3cF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.07|162.0|0.72|12.5|['SLG', 'ITO', 'SnO2-c', 'Ba(OH)2', 'Perovskite', 'PDCBT', 'MoOX', 'Au']|['PDCBT']|['SnO2-c', 'Ba(OH)2']|bulk|https://doi.org/10.1021/acsenergylett.9b02604|9k4Dsv8C54gToa37ztaxKDiza6Ml|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Ba(OH)2', 'Perovskite', 'PDCBT', 'MoOX', 'Au']? The composition of the perovskite layer is CsPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.06|222.9|0.72|17.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|9k79lrtLj_IoFqp8MdtDeor8jAw2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.9|0.63|12.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|9kH7w2nvwarBwUPFA8wyIKGp470K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|211.1|0.657|15.1|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.05.022|9kJpXdUT30FdFmhRKWpNEsJqgSjL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -I9Rb3Sb2|Rb3Sb2I9|Rb3Sb2I9|2.240000238853757|0.55|21.1|0.57|0.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03310|9kM72hr141hQK-yN6VBEJHLzffaz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is Rb3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|144.0|0.31|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.03.069|9kNeShI8eEF9LGlQdlB4o9AGf6-I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|200.0|0.59|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700222|9kPNaPo8Unl9_4RwOIuGPHXdXjzG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.15|222.0|0.71|18.03|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180211|9ka9qKPkZ-whLnv5hOKWdu6mbwos|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|225.4|0.78|18.22|['SLG', 'FTO', 'In2S3', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3', 'TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.nanoen.2017.04.033|9ke79OS--yjQSJn6JKnnsnXXQ3Ws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.55|16.1|0.36|0.32||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|9kjkUj13-VXPgMOmDKImMXqoajNO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.867|138.14|0.366|4.38|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||9koXxYxzfizQw-MgRAHf9kb9zBAl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.7500001866044976|1.01|168.79999999999998|0.52|9.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc07673k|9krmNadNW1vLSWgoVJHmzFvBUT1q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.863|218.0|0.52|9.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2015.09.092|9krxpFBA7Nmeq_KGck6dXNNzytFw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H85I51N34Pb20|Cs3Pb20C17N34H85I51Br9|Cs0.15FA0.85PbBr0.45I2.55||1.044|218.5|0.7020000000000001|16.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c9se00448c|9kvnxeKQXV0QXCB8vUlERgfwBDK1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.5|0.534|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.surfcoat.2018.12.069|9kwkRs6Qcup0M6hGP097_kWHsFcE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|142.79999999999998|0.593|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|9kxnesKVAj64DOHcQCZS1XwuIF6k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|232.9|0.741|17.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|9l-2VNcm4l6Jrusn28P-qbhlsR6I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.81|217.5|0.429|7.2|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1039/c9ta04043a|9l2yW6EtHJ9XuOCDA4iNIINPxOLI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.92|238.0|0.7|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-9734-4|9l8mayGwLfUGV2w59WSAj769b4UB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.147|232.9|0.758|19.62|['SLG', 'FTO', 'MgO', 'SnO2-np', 'Ethanol amine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO', 'SnO2-np', 'Ethanol amine']|bulk|https://doi.org/10.1039/c9nr07876b|9lCOzAfusVlukDAjMvN52mArD2sQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'SnO2-np', 'Ethanol amine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|181.8|0.74|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.6b00327|9lOgWsT58sHU3HKtEHdJIy3TEtAj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|167.89999999999998|0.66|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X51', 'Ag']|['X51']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201402415|9lVXzheE_wdq4cduC6IvwF2Bo92w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X51', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|169.8|0.619|9.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|9llZudk36AygEeTDqPRcEzMzfRP3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.03|194.0|0.77|15.4|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.04.055|9lmtB9Ix37dTNF-Eo6dpkm3q76Mk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.32|1.2|0.27|0.01|['SLG', 'FTO', 'MgO', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO']|bulk|https://doi.org/10.3390/coatings7030036|9lsUzECLypvBVVxaaPM721LGVhNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.0|0.73|16.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12782|9m06rk62qbWog-Sbrz9QjdirQHRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||11.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']|['PEDOT:PSS']|['pSNT']|bulk|https://doi.org/10.1002/smll.201803339|9m36D3Q5HzJegnhkVL5YtYQhrsqe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.0|0.67|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep43979|9m8DX_6iHfkQUL1SCwK-9XOKgybc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.12|246.9|0.782|21.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']|['TPFPB', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|9mFGec5TS24YI62JrPgJv0v6LOXX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|229.7|0.44|10.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|9mJ3GzbB5dMPDrVVRTXLjNWv4Dxg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.125|222.1|0.754|18.85|['SLG', 'ITO', 'ZnO-c', '1,2 ethanedithio', 'Perovskite', 'PZn-2FTPA', 'Au']|['PZn-2FTPA']|['ZnO-c', '1,2 ethanedithio']|bulk|https://doi.org/10.1021/acsami.8b10170|9mZB4Hbfsb9TEgd-CulL5TcXYXN3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2 ethanedithio', 'Perovskite', 'PZn-2FTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.2|0.78|18.38|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Spiro-TTB']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900389|9mZM6M-hMxeJw15K5-fvc1P4vqxY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|103.8|0.41|3.14|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.vacuum.2019.109077|9mg-65Ln3cS85m3EJtsOHXPh5wKF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|2.400000255914739|0.85|65.1|0.4579999999999999|2.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41598-019-53609-0|9mhXErgoIvxuhbIwgqO9sOrfX-Nb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br51C95Cs5H495I249N170Pb100|Cs5Pb100C95N170H495I249Br51|Cs0.05FA0.75MA0.2PbBr0.51I2.49||0.72|184.0|0.7290000000000001|9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2019.04.052|9midzs0n0XNuKayXCawxfcU4w0eD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.51I2.49. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.11|241.5|0.741|19.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|9mntdIogI-boa6RM6DzHBX27ybOA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|203.5|0.645|12.59|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|9mqPUIu85TS2C8SUPOvLgRmRAjTm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|208.2|0.75|16.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H66', 'Au']|['H66']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.019|9mtUzfsYCFmALVcw5xrAxLkWUVVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H66', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||3.25|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|9mxMAiXdU40rYBB68yEX3xN4vjGQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.6|0.64|12.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800282|9n2qui2T8MBwT1jk1PaxjxpvAJmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|123.2|0.61|5.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201800572|9n8JwZYPMjM6gaFZkmJdVOvRJO8x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.225|71.6|0.763|6.69|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|9nA7nNvADeUYBzNTrpz0i8u632DD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|47.0|0.46|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|9nGyHUUo1CJLoK_FNRthEPIZ8OPE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|93.0|0.6|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM01', 'Ag']|['SM01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|9nO3nw-epVnQdkkvI_IY2BvoTQBh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM01', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|206.0|0.7709999999999999|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|9nRjBk7y-5uyW4QPLrAvT6FpslWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||0.923|208.9|0.6729999999999999|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|9nS1lQZgTp7ccqxLBZCKZ_Lyt9uB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|118.9|0.54|6.2|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|9nTD4-DhU8CJHJ7HG3-kNx-mwVMF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|226.4|0.736|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|9nU6pOkLkPziTFAare4KjVd3l_f4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|222.0|0.662|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|9nX_G_XjfZRlUl4y3yM3M4vUIpb_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1840000000000002|215.6|1.1840000000000002|21.56|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|9ngdyS1B9-XqE2npGyo37zr-chYu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|187.6|0.6709999999999999|12.01|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09530|9njqyezi_dPctfegxYkiwEY-GI3t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|187.9|0.7240000000000001|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|9nn9qjWrerehS2N_Zs4lYuIdtQsq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.0|0.6609999999999999|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|9nobs0xPy6fiQr6jWD3-Ajwuyvlx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.906|131.0|0.524|6.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2018.08.005|9ntqjZu_e5tGj3z6rZEhL0VBrpSy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|189.41|0.73|14.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|9nzg9laEpVtiMDfMwzHamMKfpwK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|206.0|0.75|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201602545|9o-z_6FrMr60tE0l6_Cr30X_Osxx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.994|181.95|0.574|10.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|9oCsKR-ytlsKCMk9AWEqc5PG814Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -BiCs100I300Pb99|Cs100Pb99BiI300|CsBi0.01Pb0.99I3||0.83|152.0|0.573|7.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|9oZi1RrnP2LWGq2OlY3PuKmu_3f2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsBi0.01Pb0.99I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|205.2|0.8|18.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Ag']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|9o_06jmyhkC4DhvYPio_I_lMtvp3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|235.7|0.6890000000000001|17.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.04.011|9oaO6WClQ-GE2jKzVjWAN1s7ztPs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.0||13.2|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ee00292g|9oeV-rIodLpxGQu7DcWHxQXFrjzy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.3|0.8009999999999999|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|9oxAqGFVvyXRCLlbrih8ICy6R2b8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3300001418194185|0.55|238.0|0.6859999999999999|9.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01588|9oxCBjupLEiHL5sIDNU4OWEcQ8cR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.74|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|9oxFEOU4GFz9hAgef65sKHq2Ii-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|224.3|0.635|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.02.018|9p-3YwkjPqXMgP6KhduBsfqK1uK8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|223.7|0.7240000000000001|17.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|9p4hnrBGXm_OUkBAUCO0ZI2gNB9G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br510C1000Cs100H5170I249N1830Pb1000|Cs100Pb1000C1000N1830H5170I249Br510|Cs0.1FA0.83MA0.17PbBr0.51I0.249||1.07|220.0|0.6409999999999999|15.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|9p8EmCWmpwW_76aJiHtvVzZ5VHWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|220.0|0.278|6.8|['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c']|bulk|https://doi.org/10.1039/c6cc04840d|9pDi2rn-idKl3_-exni7fvUERpku|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.7|0.703|13.82|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|9pH3ynCmSobuoCtmOLSAtV0IstsP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5F2H30I13N5Sn5|Sn5C5N5H30I13F2|MASnF0.4I2.6|1.850000197267612|0.45|118.2|0.4|2.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6tc05069g|9pkp9eQfRylhSqFpEpFzLzHqur63|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnF0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|195.5|0.69|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05675b|9qHPYedFec7PyGirX3q7y3GnlgTN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.116|224.98|0.782|19.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|9qLqr6a-8ADCDfY1UtSk-JiIh2qK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|74.5|0.58|5.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|9qM8tFdMEq5NY5hSRPOOdNNGnBsY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|180.0|0.81|14.1|['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|9qSOe2dtMEibj9wVkO5g7nZIgXBm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.017|8.299999999999999|0.56|8.0|['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1117/12.2291595|9qSkGKq8zpGr1lg4geJPIRwVTnwr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9|||||15.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|9qcsJy37RsuRz-NhbMZIJP8gD_KN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.772|15.7|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01969b|9qjxwVKh7J5dUBD5CyORj6nPwQu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|87.8|0.64|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112218|9qnoPJa5YuWi_L93W_mO6fULv-s1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.092|228.9|0.77|19.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201902902|9qwtIqTHUFjaqkWraq3Nt-zQAnQ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.74|15.2|['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60-SAM']|bulk|https://doi.org/10.1021/acs.jpclett.8b02824|9qy6bxShUHWeCHOVqrTtFpyD2VSf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|0.68|191.9|0.319|4.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|9qzRHvP_TaMjasXsz7Ww5mXJ3vQ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.4|0.628|14.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc03259b|9r3EDiDUsyndbDJUKkbRjEMETQxL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.4|30.0|0.15|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|9rEJnqKBcVeYLngvXaM-4fkTH185|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|153.4|0.631|12.09|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.081|9rFPN4uZmBXopTBs6W47yt3bB9Tl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|202.0|0.33|9.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|9rGXRqDHCn9VNNvLiu-PCKl5rGHc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|232.1|0.723|18.12|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201800475|9rJDqkl2N2GMjwFhwqug4mivj7hP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.001|208.0|0.84|16.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/smll.201702775|9rT-tbL8GWaTHgjPVvlMWSbK0agR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.6|0.75|18.89|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|9rVjwKOtc6KnEgDWuIhGIVKbPNgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|204.0|0.7020000000000001|14.77|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|9rXiC8x9ZT-7CMF4EoXs_vwZYnAM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.36|10.0|0.42|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|9rYGPeoUg4dpmPrSGN7GxqLmiaiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|228.9|0.7879999999999999|19.13|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']|['NiCo2O4']|['PS', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201904684|9rb9heL9QDMoL9IEpyBFB0f9crG9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MAI']|bulk|https://doi.org/10.1186/s11671-016-1540-4|9rg7xIXNC96bGth-I_Y7nvIQ_fJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|182.6|0.71|13.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|9rqDsytF9Ozt4rWmxqtcGTgRCXI8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C830Cs170H4150I3000N1660Pb999Sn|Cs170Pb999SnC830N1660H4150I3000|Cs0.17FA0.83Pb0.999Sn0.001I3|1.5100001610130236|0.96|188.0|0.7070000000000001|12.3|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|9rqoIBGuqeL7ZU6P0HoOhkal3q42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.999Sn0.001I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|125.2|0.677|8.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|9rtrr_E3tqZixzk1KZQ47j7AvYlV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|230.3|0.72|17.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.240|9rvJKhfhd9i-wH8krtovxAITs8bd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|181.1|0.46|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2019/2878060|9rwOQdXPWFqi9uo3VGqoJ_6lwEzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|204.0|0.8|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTEG-1', 'Al']|['PEDOT:PSS']|['PTEG-1']|bulk|https://doi.org/10.1039/c6ee01337f|9sHf9Wctq-IczOGHe8A1H0naTThO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTEG-1', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|49.0|0.7090000000000001|7.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|9sP4lsfw41Jwi2TdtpLWJIpL2Knv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C10H60I24N10Pb5Sn5|Pb5Sn5C10N10H60I24Br6|MAPb0.5Sn0.5Br0.6I2.4|1.350000143952041|0.89|231.4|0.75|15.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['ICBM', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201704418|9sZsTkqoXyZwirPIMZE78-BxyORR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02242e|9sgF7pH9guIB9PYS10rxq0wIF2Cl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.61|210.0|0.67|8.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|9skgkljxOdqUkdRd37_q9ZMuLepf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.86|177.0|0.55|6.5|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|9ssL9yK48wn54KOE13NrF0vpqHL6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.7|0.78|18.43|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|9t1nSZCLYcbWCSgzGUZGFkdrxkFA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|224.7|0.68|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|9t1sBKnvvhCuE6JG7tsGRfsfDbGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|152.89999999999998|0.63|7.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1246/cl.160298|9t4g91u26QxWENoACDvJvhKwuBml|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|228.7|0.65|12.73|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|9tFgpxy4thMnuQc1J33y8qiI_kuK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|198.0|0.698|15.9|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b05008|9tZL9n2BBfB8rk2Tuaj_TmbgA4d6|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.1|0.731|15.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|9tf8k4G6bqdspsqCo9uf9_fEjCaQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|166.70000000000002|0.56|8.64|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solener.2018.03.054|9thEGqoYN2yf3Dwb2YwYu_uviTVo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.09|243.4|0.764|20.34|['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiS2']|bulk|https://doi.org/10.1039/c8ta11841h|9tj1eE629EVNNF0ILNh_JxvTGm5Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|221.0|0.738|18.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|9tmDR9B-FawFXGxVuw1CzLN8qUZh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.6|0.74|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|9toi26ftHwIg2EL0UTIHnbNwJe6i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|232.3|0.7709999999999999|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cjoc.201800469|9tr1axjq9P_HADj9B3ffu8uliVFJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|220.0|0.67|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03103c|9twa5w-Ls26nBig7Tr8l-8nJZkS8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5|1.872000199613497|1.117|65.72|1.165|8.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|9u-l1BI0t8HhjpgKEMLW5rWNfsyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|78.0|0.41|2.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|9u4TLvG6ajOBeW8ltADjsvFo1jx4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.079|163.4|0.73|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'TPD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.5b01716|9uEFeVsOpA58-Gj7PRTtRig48Lgf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.0|0.7|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|9uHPl1B_imDXOkpVRm9YPZgiX-vq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.999|142.0|0.6920000000000001|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|9uVIP_QKpQivmQ9g0EpVlhINO53e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00358j|9uVPj28XA6EmE87EonvWUcKabxIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.0|0.81|18.0|['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.3389/fchem.2019.00936|9ug6dc8G-BI6fdNiimLx25mIpdOU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|145.0|0.53|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|9ugGZN7hcsDRCulBmSYQDkc18vp7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|197.5|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|9unI2zILkPtkWs5pdxKGohEglHfv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.11|231.5|0.75|19.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN2', 'Cu']|['YN2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b04003|9uvBOTAzBPYiuhZtHzKQU37xOkue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN2', 'Cu']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.0|0.6940000000000001|12.73|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|9v4TTN7vlOR14SQLW1ZeBiRfQ74K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|96.0|0.46|3.7|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|9vUu9llYksmOcYOyU1BYD9fasMfc|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|211.0|0.7490000000000001|16.9|['PET', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|9vXMsIgwpaVkABBD43CWfdk2D_5S|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.2700001354215498|0.65|61.0|0.284|1.1|['SLG', 'ITO', 'B-γ-CsSnI3', 'Cs2SnI6', 'Au']|['Unknown']|['Cs2SnI6']|bulk|https://doi.org/10.1007/s10853-017-1890-z|9vr9VvP9u9EhjUA9KwnHemb0r_R7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'B-γ-CsSnI3', 'Cs2SnI6', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.07|212.0|0.773|17.6|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|9vyqNmGLC8ZLiV7K6J5tfS5rrbzo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|237.0|0.726|18.23|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7nr07001b|9vz6VACZNV7GIWVeoWDTjHGnjl3t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.0|0.76|18.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|9w-rXo32wH04urenyXuv0_xb-0Jb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.123|210.02|0.642|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']|['X2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502536|9w54Fz5GjqvuPUpwhU3DUusy7Zu6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|224.3|0.75|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|9w5lNwGJ1RelGc-momSrpPD2ald1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|196.7|0.629|10.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|9w6TVJoYOJnzjU_ehkkWXFCJrijb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900511|9wToFQKdmR81KCqKxBWrwdOpNFQ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.69|29.3|0.6|1.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-017-1264-6|9wUcr_yX6kj8UpN1UpYaid9J6M-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|206.1|0.757|15.73|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|9wXtD2sd5I6x3cd2NpinaP8TsPz4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|125.0|0.621|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12627|9wY-5sKRxqwTzO4p-fXLRyUNsCkU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.99|202.0|0.59|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Al2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'Al2O3']|bulk|https://doi.org/10.1016/j.solmat.2017.05.072|9w_l3EcO-_qUb0uuSFWbZa6BXutL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Al2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.16|208.0|0.812|19.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201902692|9wdKDQ9xJEL7T96oqovbhyJtrijX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|196.0|0.665|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|9wkPHgCgfmr0BExkSvxZGRTEIe-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|1.09|242.1|0.65|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201605988|9woccyq5UQxZ-pHo-1zBN0rbTdgx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.05|189.2|0.73|15.85|['SLG', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|9wrsFDh5YuzvuuyADOwOQwEKln7W|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|200.0|0.66|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292014400013|9x2vndyBuZKYrmLyGtRZEaozSO1L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H44I22N6Pb7|Pb7C10N6H44I22|(PEI)2MA6Pb7I22|1.7000001812729404||||8.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|9xDFM64mwCXao6gzUFAHde3z3lYn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA6Pb7I22. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|25.0|0.31|0.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04122|9xFWY6WxDkTyZR8XRxxfdbT1CfUe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|209.1|0.64|14.51|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|9xKzIbzMObOODZ3EUJ2jvLdqmi-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br20Cs10I10Pb9Sn|Cs10Pb9SnI10Br20|CsPb0.9Sn0.1Br2I|1.7900001908697432|1.27|144.8|0.6|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b07949|9xO53afn2duUx9EocITdWrF54_xi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.9Sn0.1Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.4|0.748|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|9xOq6V5qiv909KqgNhsCUFENXckm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|83.9|0.545|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|9xmLC-UsPT47Yei_oX4nbqcKT4sW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.053|151.53|0.456|7.3|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|9xnHHfoXOwUSrB3dXfE0nZDAY62R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.087|225.0|0.74|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2019.04.021|9xt3Jv90v5APdoVw3xrhva8PASZb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.113|223.2|0.747|18.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CJ-01', 'Au']|['CJ-01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b00702|9xwof2ZajRd5uUzP0_PWTKYXQS7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CJ-01', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|225.2|0.72|16.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK2', 'Au']|['YK2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01731c|9y3YLKh99Zw8oSVLXaVDyd8xOlIS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.095|240.3|0.748|19.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|9y5j6W9I-faSrcUnV6V9FMYR6TPk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.22|153.3|0.787|14.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201803269|9y5woo8adTFA0odC2nCbUmVwMc4k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.0|0.7979999999999999|19.9|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b01439|9yBxvgo9JpQYnGikzYXBJes_n8zW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|220.0|0.75|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-Aminobenzoic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', '4‐Aminobenzoic acid']|bulk|https://doi.org/10.1002/ppsc.201600298|9yDmUS7WtUIK2G61Q8__mwzDuazc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-Aminobenzoic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|137.7|0.26|2.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cap.2016.08.002|9yE9Qa2kGKmVLhTPTs4pSZDQEV4o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|172.0|0.61|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|9ygTQUfon8ksKDs6hKncowV-PMTb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C16Cs4H80I60N32Pb5Sn15|Cs4Pb5Sn15C16N32H80I60|Cs0.2FA0.8Pb0.25Sn0.75I3|1.2000001279573695|0.56|244.4|0.5720000000000001|7.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|9ypW5TF3OThdOhjWUWZ_6eDdCe39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8Pb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.1|0.66|12.23|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201601769|9yqKrYht_29Edt8bvOaZ2rTzsfyK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5300001631456466|0.835|210.0|0.4479999999999999|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|9z0IxvQ5AaRxPahQmALipKRaBc_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|206.7|0.65|13.3|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c7ra01110e|9z8ZRn3krvix5D8w2rpBDEtx4eN0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|161.20000000000002|0.56|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|9zI9vS9DFpgAryonV16wx2qxeF65|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|137.79999999999998|0.614|7.02|['SLG', 'FTO', 'ZnSnO4-c', 'ZnSnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSnO4-c', 'ZnSnO4-mp']|bulk|https://doi.org/10.1021/jp509183k|9zKqR1Jz-FCnoczDPQUHaaHLyGNs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSnO4-c', 'ZnSnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.2|0.71|12.25|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|9zNaOX6_R1JgNKklpoieYcyMYYaY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.9|0.775|14.57|['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['MoOx', 'PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|9zVLaa5Eru0cO_S3jncXgf8NoHfq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.1|201.0|0.7559999999999999|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']|['KY7F22-np', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00518|9zalIuJCPRaLhtJn8C9n0GNUrrI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.8|0.505|8.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|9zl7A8rvGSNn4EzrF8-N9w7EFpwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.916|210.06|0.6709999999999999|12.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-EDOT]3-TPA', 'Au']|['[BMPA-EDOT]3-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.025|9zmaQxsAtugTZACz7iFfNV8mMhla|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-EDOT]3-TPA', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.6|0.488|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI3HU-DTYM2', 'BCP', 'Ag']|['PEDOT:PSS']|['NDI3HU-DTYM2', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.06.049|9zqdbPYnTlWm4Vno46jaHxoDb24R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI3HU-DTYM2', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|9zt4AF9GXyd-bwcBAM7oyZN3LmlR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||13.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|9zx60TXjOE45EkMZR5455AslhUzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|159.60000000000002|0.5720000000000001|8.45|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|9zz10hCRkwLr9fTsjxCfD56uFRpv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.653|111.6|0.51|3.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2016.09.003|9zzibCDuhAEkjOP9l2mCMYLA8J_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||0.956|95.4|0.268|2.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|A-04PIDPUbRDMRPaxz2qqEAxSZb5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.23|182.2|0.812|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cr', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201804771|A-2bEXwTwa2fxfbeLGyRFijcPW0t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cr', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2018.01.018|A-5ieVEC3Y3A0PSxhWJSadqk5Hwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|208.0|0.638|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201700953|A-CV8GkcKnHizyDdHd4Z9Rn2tIM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.868|169.1|0.55|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/6/068803|A-HtvSSjHEBhqG5JXW1ClMm354Zu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|96.8|0.8220000000000001|4.36|['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanocones']|bulk|https://doi.org/10.1039/c5ta08375c|A-JALasLZyZCqyaZWhON9OIFuF6v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|197.9|0.757|16.48|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|A-K9bKgVQsmRTBmsHNxNAqWGUAJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5600001663445808|0.953|223.1|0.7|14.88|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|A-OuUhyzgi3FmRHte62_660pS1c6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.074|138.2|0.66|9.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|A-oJAfoQKquMWD6Ry2up_CymRi2C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|A-xp2JkFK-OfIgtpHpsqfSZClNWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|149.60000000000002|0.534|6.64|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3DT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b10651|A07ePYH4Bzuwh-lkmp-J8gMBo5Bd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3DT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|264.1|0.561|12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|A08LDGvuESMOLJ5gkfPXtIDVtkhG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br151C100H505I285N195Pb100|Pb100C100N195H505I285Br151|FA0.95MA0.05PbBr01.51I2.85||1.05|236.0|0.8109999999999999|20.1|['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.018|A0APdI0t8v-R9Dq27wbwAlT_XWf9|a perovskite solar cell with the following device stack: ['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr01.51I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.0|0.74|16.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|A0AhWUFQB9Q7kAtiDbttF-IHnoSO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|219.0|0.7709999999999999|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|A0B_OX3q4ReXbv1tmD1f5hIRLBAt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|152.6|0.667|9.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|A0GJdfgIefckF5jQJV10DW7KvN2L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|189.0|0.69|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201500518|A0SX56RR7fBbZi5hiT2VJictnE30|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|169.8|0.62|10.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|A0Sd9KC_Dz8DO91nWSCi3Ns6_usX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C50H300I150N67Pb50|Pb50C50N67H300I150|GU0.17MA0.83PbI3||1.091|225.4|0.785|19.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|A0XtamBZztNOQ-NXpUECcpJ_fnlb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.17MA0.83PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.19|146.1|0.672|11.63|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/advs.201801117|A0blVxyOwIxeUDSlVeY1yftXEHmK|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|14.0|0.26|0.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ph-inv-OMeTPA', 'Au']|['Ph-inv-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|A0dWsCNAIzQmG3XXyn2rk6HKjeJP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ph-inv-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b09595|A0gFXCL2dSF393LFBoU206OKr9c5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.176|227.0|0.725|19.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.037|A0lrtKGiO-GRMnpSVI5608AruN94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|178.0|0.73|14.0|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|A0odp6AANj_34Vgv4xNz_by5QJ8q|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|162.0|0.68|10.7|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|A0usA0oob9RSqpkjwT1FSMJ4WUIS|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|207.8|0.565|10.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|A0zxsYWO8ha4pf3yz7Fe3_uD9Lf8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.0|0.65|11.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'PEDOT:PSS', 'Au']|['Al2O3-c', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201700043|A10oNut3Tzi8xysuy4D0JoPyHgZf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.089|226.5|0.79|18.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201902902|A11pD45oNviMCzr08_k_c3bzgGw2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.05|207.6|0.75|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|A139dZimRmIkMpKHKX6vBcioPv6C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.87|65.0|0.59|3.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.8b02157|A15Y7gxKId7THtl-3rcxxtAPFTG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|231.66|0.691|15.66|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|A184Rgi2sJ9v95oxU5MLQJRtblii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|176.6|0.313|5.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|A1EiHrj_SSVp9Wd1NmuuKr9POcKm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.033|222.1|0.754|17.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800138|A1H2G_6s5gSuLZiXV_C3H2Qu52nc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|202.8|0.6|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01090-w|A1HJbqQgPFPytQEEvghxatzKMCYr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.9|206.9|0.745|13.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|A1QXv-DqvoyoMMqt8cnz0Fcnhoj5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b11341|A1RdO47T28dAOLmmbo0Y_kW2POQl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6600001770076949|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/nature18306|A1TzA01cn2X-7QPA2eZA--kAtz6D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|1.8000001919360546|0.29|4.6000000000000005|0.34|0.0046|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c9tc02181g|A1h0TWDZg2ng6O9ZSrjdqzI2MDBy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -CsI3Pb|CsPbI3|CsPbI3||0.84|77.4|0.62|4.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|A1sYCAoKAvNdtE7JVjfCsbM2XkUT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.99|218.0|0.7170000000000001|15.4|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|A1u_k-yUh68IkAfrsYILkwqPsAgp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.99|199.9|0.774|15.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|A1vi-62nLZJSlEa429ZAcWIaeh5W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|145.0|0.3|3.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|A25xY2OGX_bBk-LEZsQRR-1u2dBv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|116.6|0.52|5.09|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|A26kanydmdWZO2v3FeHWVWgdAmHd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|A28RnAotKv9-L4sIcIkuDU5i94Pp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.5|0.743|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226765|A2BXcMu_gzSctRAZUOt5AKZj2IYm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|188.0|0.74|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b10803|A2GKTRzBVXod7M46F6QJZDi4OJmo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.07|237.4|0.773|19.64|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|A2HzOZqNxxcJ8-W2oQf-EnVP6GJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.062|199.1|0.706|14.97|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|A2KeyYE_VrJ8H8suBNS9nhqigR2S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|A2YeSwhXwAMfzPvYUochdKRIqhky|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|180.0|0.64|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|A2bNlC-CZBQGaxChN5VWq37cuew0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|234.9|0.67|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|A2hr5UI6EvcLw_Yav3K7GCLhrk3Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.095|215.0|0.7|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|A2vvfXCLU_59WlRGNomlw8TfoF8d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCClCsH5IN2Pb|CsPbCN2H5IBrCl|CsFAPbBrClI|1.8000001919360546|1.15|150.29999999999998|0.6779999999999999|11.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['NiO-c']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|A2z3WYhmU44BGUOER2Une8WqieeG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|A3-ExpFl_AqX6_-BlMzfW6icspUi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -C8H48I24N8PbSn7|PbSn7C8N8H48I24|MAPb0.125Sn0.875I3|1.180000125824747|0.238|142.0|0.45|1.53|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|A32j8iz2P_fbFnTUdgKndDrTiwTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.125Sn0.875I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.5|0.7040000000000001|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|A38MDSAg3RpOpyqtFZgIeJ_4T0JI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.05|235.4|0.76|17.13|['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|A39p56u2U4gMdYIiaaJMW4yNieDq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|236.2|0.7440000000000001|17.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.03.1025|A3HivRu1QpdkJxmjnucFIss8MYd_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.06|224.0|0.75|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|A3O5rKYwcZMouZD6fwkwyqoRcVWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.2|0.78|15.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2019.08.036|A3UwFbq8bTE4Z8KX3hklrm87uEJ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|166.0|0.64|10.0|['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene; TFSA', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|A3Xz2oo7f695kFrLnG2qFk6odIJe|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene; TFSA', 'PET']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|242.0|0.71|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TAE4', 'Au']|['TAE4']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ee00528e|A3bPoXQw3FtRin8_2IDbLsxNq7GG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TAE4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|202.1|0.78|17.23|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.0c02837|A3mRzJ5qfsJbCTdPNaNxeMCaAc41|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.9|0.647|12.62|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|A477VU5zvJHZSwFZNNP0XYNwX6Sc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.048|225.7|0.762|18.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|A4LyHoRPkzltGHTova1nKMM4pTuU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.645|0.04|0.23|0.0|['Au', 'ZnO-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|A4Mib4zgHMvD9G6F9sF0_WCblCUL|a perovskite solar cell with the following device stack: ['Au', 'ZnO-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.1|0.767|16.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08827b|A4abWvK8DINFVJi70pl2OX0eVT21|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|176.0|0.649|10.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|A4cUAv51OEAIii3WkMK_kawzad5-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.6|0.682|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'ZnO-c', 'Al']|['NiO-c']|['C60', 'ZnO-c']|bulk|https://doi.org/10.1063/1.5010951|A4fACcD1FaMJWZy5br76X5Genys4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.089|245.3|0.76|19.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.031|A4oyIWz64lHRkQCWDqt2zVquM0kX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.071|223.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|A4rURqtNMPGBZIzxgbH-fLnz0v8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|149.4|0.63|10.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201503361|A4vfUPv1GWwtdR4MegvZU5H0v6HN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.83|154.0|0.65|8.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5029253|A503X_1VQKCTM7Ui1v3XgISpBSW-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|177.39999999999998|0.44|5.35|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|A50n55ZR608RkDOQl_Vtoi1j3bcj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.084|219.0|0.7|16.7|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201800133|A52kKQYkf0Wr-Mv1TzVx9xbk-xvm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|135.0|0.63|8.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T101', 'Au']|['T101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4sc00814f|A55X4YL16ycGnC9_v-UvwpYNvP3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5710001675175231|1.05|215.6|0.645|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06619|A56LzKtMlAVLSZ17yIlnV-bkNkLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.769|206.0|0.61|9.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']|['PEDOT:PSS']|['F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|A58SCXgkhrxKmpP_mP0PjKXHhmg-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.13|224.6|0.745|19.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-019-08507-4|A5AGuGKC7shJpn8ywusWg0bmSBSm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.93|72.0|0.35|2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|A5FYse5uoYEaqGNUSbRcTqSpBjq1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||191.9||14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|A5PHOVH95pq4kpa3pYfhzId8s9Kw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.01|130.0|0.624|8.21|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|A5PI0UfXeKxgy0Gu8KnRukr9mytS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|143.0|0.56|6.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|A5RL2gVFCXbODav-9hVj37IUsI3S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|212.5|0.76|14.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|A5aIQiUY9z1UJNq4NYumR2f9cdcq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.02|140.39999999999998|0.5720000000000001|8.19|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|A5bXMr_Qc8k4cPGepa2ffx9oay9Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br19C160Cs40H840I181N280Pb200|Cs40Pb200C160N280H840I181Br19|Cs0.2FA0.6MA0.2PbBr0.095I0.905|1.640000174875072|1.09|225.4|0.767|18.84|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|A5qANttbqSlevoAUoEJXxcP7rK11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.6MA0.2PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.3|0.7340000000000001||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|A5srNSJ8sfBQh5knVgIvvuoZ0UA8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|82.10000000000001|0.37|1.74|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02562|A5z92upqCzfUUUcyATlJNqQJ4UMn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|171.1|0.6|10.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep16098|A6-2MoHZc7MDIusV6CF4xDEW3Kxx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.1|0.63|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201903599|A67QG34-fBnL9HSzYYUk_Igwmy21|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.8|0.53|10.09|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.161|A6IuwDmRqGLRHcF37P8J90e6ggG1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7070000000000001|90.9|0.58|3.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.020|A6gmBLXOXXn1sVB7b2uEQzRs8hHo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.94|159.0|0.66|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401775|A6rEl5R_ijcqOiChya28GSnurQnz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.101|208.5|0.599|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0403-4|A6shPSO_Asy4PDAtMVmhvbRsUfaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br14Cs5IPb5|Cs5Pb5IBr14|CsPbBr2.8I0.2|2.3500002505831827|1.06|55.8|0.65|3.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|A70a-_LI_0ciu4GT12_gvH4alpog|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2.8I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|219.6|0.67|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b02784|A74YX15QZFJ9Cl4fyzIJuxz6GZWt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.0|0.7440000000000001|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|A7FNZ0H_k0_K1iNTvDOiTHQB7YHo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C16Cs39H24I121N2Pb40|Cs39Pb40C16N2H24I121|(PEA)2Cs39Pb40I121|1.710000182339252|0.991|195.1|0.7040000000000001|13.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|2D|https://doi.org/10.1002/aenm.201902529|A7OB0Hn91WlgZMNQvd4zPp288K4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is (PEA)2Cs39Pb40I121. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.096|213.0|0.77|17.7|['SLG', 'ITO', 'Ni', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['Ni', 'NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|A7PLMokW4NQYFTSlqkfS0FbWSOQ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.2|0.787|18.49|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201803872|A7XSRCiPLh9ZomqcQBHn9bBsZDA6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.078|201.15|0.713|15.47|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||A7ZhPBWgat_f1a308-0oN1x4eZP9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.7000001812729404|1.12|214.7|0.74|17.8|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2018.10.032|A7mlJz90kcJHxFQGqZW049YkmqFW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -C9H30I7N3Pb2|Pb2C9N3H30I7|BA2MAPb2I7||0.95|51.0|0.266|1.4|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201901090|A7p9e4lzWSgu5-l13X0URs5o_qi_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MAPb2I7. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.500000159946712|1.03|226.9|0.648|15.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']|['PEDOT:PSS']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.06.134|A7pF70d3rYnEZl2sXATHlf5YVT9u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CsI3Pb|CsPbI3|CsPbI3|1.7700001887371206|1.25|132.5|0.75|12.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1039/c9ta07143a|A7tJwkcnjeqGVojeJnEvK2W4eVMm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|233.9|0.61|14.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.036|A81DB-thVQi79p_vUlaZ-ZkVzCJI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs', 'Spiro-MeOTAD', 'Au']|['MoS2-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|A8AAO3Kr33CqAZIJ_6-fyxrSmve9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|219.9|0.787|11.23|['SLG', 'ITO', 'NiO-c', 'NP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NP-BC']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|A8HLhLGPYnge5s6ZDvgWDLmbpZZ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|235.0|0.778|19.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|A8KZsXEGv4Jp8pG2Nsyx8psJFpl4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|218.23|0.495|9.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201900681|A8L5Emr4eM-r1uHMWzAlvLlozdx_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.41|72.2|0.7609999999999999|7.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|A8NIgxkOc9sJVsff5JQikOsHyTNK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -BrC5H30I14N5Pb5|Pb5C5N5H30I14Br|MAPbBr0.2I2.8|1.6200001727424491|0.97|163.79999999999998|0.78|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S0218625X18501378|A8P2vq17guvfGxvsULOQqrnzu1yl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|200.0|0.4|7.01|['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09101g|A8acJn_LSvylZEArui7tIqEJwxT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br35C93Cs8H477I265N174Pb100|Cs8Pb100C93N174H477I265Br35|Cs0.08FA0.81MA0.12PbBr0.35I2.65||0.795|217.3|0.517|8.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201903705|A8e_UULjxnMqXcGUcn0MQys-W4tw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.81MA0.12PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|181.8|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep39333|A8gHLGK5ETGkvML3FAIA91396lu1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.61|35.6|0.24|0.51|['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Al']|['MoO3']|['PCBM-60']|bulk|https://doi.org/10.1002/bkcs.12092|A8mBbzyyM2Yq3ZtQ4ZzZPPUf_zC_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|177.5|0.503|7.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5026797|A8obyfRAv7NyZUtpNkZyTVyTxpFw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br249C83Cs17H415I51N166Pb100|Cs17Pb100C83N166H415I51Br249|Cs0.17FA0.83PbBr2.49I0.51||1.05|208.0|0.75|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|A8tMwHL_G3jMdOp-A213gbYOivY7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr2.49I0.51. -AgBr60C20H120N20Pb19|AgPb19C20N20H120Br60|MAAg0.05Pb0.95Br3|2.300000245251625|1.01|27.0|0.689|1.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|A90TWZ2pQyRy2Rzza4hK96AujzMA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.05Pb0.95Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|130.0|0.28|2.76|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|A9KNLuJWljsnyJPjxTP3bX48vo5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|186.1|0.6990000000000001|12.26|['NOA63', 'MoO3', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3', 'Au', 'Ag', 'MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1364/OL.42.001958|A9UM8W3NVivviMz9qdHJRdQ6TxCw|a perovskite solar cell with the following device stack: ['NOA63', 'MoO3', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3', 'Au', 'Ag', 'MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|17.6|0.36|0.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|A9hpq7uGtEoh5Ee2Q5hnVwprdZlY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.16|231.0|0.784|21.01|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201900078|A9pnEvQV21MMoB82MvxOFpGuCHvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.5|0.426|6.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|A9w8PVo7dKQELpkIEW4RW3ssm2Dq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|205.9|0.72|16.82|['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|A9xAnF72qH5jK3eJDeygsXU07uNi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.054|170.42000000000002|0.728|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|A9xmfPD5boUylV1m6akz_sL244v7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.07|134.1|0.7|10.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta08203k|AA8N0Jtaj9KMwQPElaVCT7au2UXZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|160.5|0.63|10.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104044|AADENA4OBVanjGDVNqZ9og-_v6h2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|212.0|0.57|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.190210|AAEVnnbL5TiqgBzNL3877nvih9JN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.08|222.1|0.7809999999999999|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|AAHOp4Ybei0fk8jMapEC6iWPXcW5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.06|189.0|0.75|15.38|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|AAJYjEcWRN4B0NoA5ZDA0N38UlyO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|199.8|0.64|13.68|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO']|['PTAA']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.03.004|AALF9fRKD_0Dm_P85J-OSRDfhWkT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.117|223.0|0.73|18.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03911h|AAovYCB4NRwl3pqynb7DqC7fRCC2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C10H59I29N11Pb10|Pb10C10N11H59I29Br3|FA0.1MA0.9PbBr0.3I2.9|1.5800001684772036|1.0|156.5|0.68|10.61|['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104036|AB5AelOm1f3EgF7GZ4YUItRhRv1U|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|185.9|0.65|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|AB5UGUgMAQPJ3tHXjXAQZsSvJmSu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br20C95Cs5H532I280N133Pb100|Cs5Pb100C95N133H532I280Br20|Cs0.05FA0.38MA0.57PbBr0.2I2.8||0.97|233.0|0.71|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201802512|AB866tu61hFs-mTy0zDTBRgG9A12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.38MA0.57PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.1|0.7659999999999999|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.05.014|AB8PahnZ9CBq9ZIt6KpUverW8loV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|231.9|0.747|18.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877022|ABDh6Ap6R6t1PLPAPlHjJY0WCRK-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.74|17.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.029|ABJVjsM4TCAdwAa7EdL2yvicecUQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|227.2|0.777|18.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201808855|ABPaBFHALB_g7nz_UpPTYfotu7v5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|182.4|0.5760000000000001|9.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/12/128801|ABYvUxBV9ipNhKoLGMP9bcT8Kurp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.47|222.3|0.643|6.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']|['BDT-4D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|ABahE-K_ViU0pMoU6jguSKa1s-CE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']? The composition of the perovskite layer is FASnI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.1|221.8|0.75|18.38|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']|['PTAA']|['C60', 'ZnSe']|bulk|https://doi.org/10.1039/c8ta08306a|ABkJWPRVk0EQmYXbm6ancOixeORk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|233.9|0.63|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.09.065|ABpaz44w0hxU88Avc29z8hBp-IoU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378||||16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b01857|ABqFg_oO87uCZk3AjpC1vvFnvh6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|140.0|0.4|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SubPc', 'Au']|['SubPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra12004g|AC0WBmp6F7AOGYFb2uFz6w2vAQ36|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SubPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.096|192.37|0.719|15.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||AC5zBE49yzjf7LqmIezS_5KdXFjL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|206.1|0.725|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1039/c7ta90054f|ACFzwFB5_MC7eLMRtes2d3qcjkix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|57.2|0.65|3.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|ACG_ecatxYv61HsvBEsiyg9pzYph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C99CsH594I297N99Pb100|CsPb100C99N99H594I297Br3|Cs0.01MA0.99PbBr0.03I2.97|1.6000001706098266|1.1|223.0|0.7879999999999999|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.070|ACJGKlLyThNCanE-sOBLFJTtnZzn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.01MA0.99PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|151.3|0.763|10.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201501330|ACRi2dX6Nx76tkvCaPNXmpxtE1YC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.31|58.6|0.75|5.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06177f|ACZP47CK2NuZqmwXjAaAAOinAI25|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.0|230.8|0.76|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1361-6528/aa75ab|ACdwk2jv4-CvWk9KUsgxwlLgdtFU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|198.2|0.57|10.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07307-2|AChY9LCK-M8iDsmGzzgVMdzVdEHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.5|0.7|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|AChgOZ6tIH-wsl7hx09y0GdoyJsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|190.2|0.7929999999999999|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|ACinQfDr9opJ9m6yOrZ1lSUsnqfd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.083|208.7|0.7829999999999999|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|AClNeoINoL74uElV6kEfdL172ilW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.72|13.2|['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Au-np']|bulk|https://doi.org/10.1002/aenm.201500038|ACmHemSIIKlPQn30RHDLxN1i74co|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.65|50.5|0.275|1.35|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|ACmaTQWoUynZOq7qubKcS76M_Adw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7659999999999999|87.8|0.56|3.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|AD0Vi4IGn1Ntt36lFEMltxfwa0Zt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5400001642119578|0.98|220.1|0.69|14.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|AD4Hb89E-2YV8LpWdNCMLwF4akZ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CsI3Pb|CsPbI3|CsPbI3||0.61|29.3|0.67|1.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|AD6mnBV2ZVgnH_fSdoIgynxz61iW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||0.705|1.5|0.53|0.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1757-899X/303/1/012002|AD84WqxlqFogv4u4yzOjVG0ocpLK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.136|213.6|0.78|18.89|['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|ADCFs5EOrJPd5VcWL458zFUl8ysd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|ADEWhH1oeMdykIeb_dfmTLZIB71A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|196.0|0.66|11.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp510837q|ADGG59Ahb6DCgsgXKZSvgnT6LA66|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|226.7|0.79|19.17|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c8ta11651b|ADcLP9kAmS6IGPYycnoMjnJ144Ip|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.747|120.53|0.667|6.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|ADf97Ocs-GhtUBzWsTff4CkS6x6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|160.7|0.6679999999999999|11.88|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|ADkO8GYqYQ8Mn4GbYZEfhfVUkXLV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|209.0|0.764|17.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|ADvenY1MHZdkhtjqOBd28Fjmr0E7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|200.0|0.66|12.47|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|AEADzPIE93c0GvodyyDA4GdenXFN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.064|222.4|0.71|16.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|AEDII6-BxF_GHoUqaXLIE7t-xfNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|218.0|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23062d|AEF3445XzAf4Jctgf80nnvDQvvs5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|225.0|0.7|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-2', 'Au']|['TbT-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|AERWztfMjBYJQ9_T70acWsSBMeOq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|207.7|0.792|17.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP; TZ-3']|bulk|https://doi.org/10.1021/acsami.9b18757|AEVubPzJchw7mAIvp6JC30YbFqDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|191.0|0.5770000000000001|11.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|AEYIUj_DSml3rtGRn8MV_y1Ijt-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|170.7|0.62|9.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|AEYsdySPFHJpG7zdHPhGOSCeY5mB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.0|0.58|10.6|['SLG', 'TCO', 'TiO2-c', 'SrTiO3:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3:TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.10.090|AEbFyIRkFwRatGu5wsCtgtkPQKD2|a perovskite solar cell with the following device stack: ['SLG', 'TCO', 'TiO2-c', 'SrTiO3:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|224.2|0.772|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|AEezdUDHucg0KAEH1c9W4a8Kgk_8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.926|225.7|0.69|14.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|AEo1cHCkaPgPHMzdt1XcYy-0VKbE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|197.6|0.6|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanoflowers']|bulk|https://doi.org/10.1002/ente.201700030|AEuAblo5ZKsk5db1AK0Cit6l8Cm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.0|0.752|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|AF1DMC93KiZiH0uAar6z3Ocz4DAH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.2|0.723|17.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT', 'MoO3', 'Au']|['PCDTBT8']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.028|AF3xnM-e1mqHhE6SjGDXDn13Taa8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.116|233.8|0.737|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|AFMn0OQTdAFcBfId6JFSrIU6wSkt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Sn|CsSnI3|CsSnI3||0.41|53.0|0.61|1.33|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|AFXBbUzPd6ug8MQWjd0090GuBPla|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.1|0.733|18.05|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|AFXZPw0AYPR0ioR3ko8Le3nahHV3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.87|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|AFinzHGK7hCP_OynOvX4vEkiINgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|190.1|0.722|13.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|AFlZQKt8orLxhEaNi4ziIjt5ocvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|192.6|0.56|7.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr02866c|AFpS-YDpFYWdngeIOvvHl-0JZ-_I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.14|225.4|0.6809999999999999|17.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|AG5oBGdSGuzFLx2mNdeet4mVHXuV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.0|0.782|18.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700484|AG9qsLp8m0sWEXU3GVej8qY8OqNV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.6|0.728|17.95|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|AGBJTRALUUd2JbNJinZKl2Ilstnp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|119.4|0.629|7.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|AGHApZUtg9EubB4Rh3iWikWf3nO-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.5900001695435149|1.0659999999999998|203.6|0.754|16.37|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7cc07534k|AGOyRuxzgikR5ZcpsVlBt3qNzUbr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|211.5|0.585|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|AGRoBHC_b6KRodtU_d4QMD69NV9s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|213.8|0.77|18.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16627|AGTGT7_plbutYcy8ItocqpXj2FVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|AGUH6TzhJ3ZLqAQ-l-mhzhECNKg2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|222.5|0.7340000000000001|16.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']|['Ome-TPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|AGWsQExUPnmfEY0Tb4cs2eWTXBhO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|207.0|0.78|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|AGYpf6NvIz70S6H6u9kB60bXKSii|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|207.7|0.73|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602785|AGflOThireXqQuqxJrAydx-VWqEN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|218.5|0.51|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ee43991g|AGj6gEj4OlwioFWP2VpQoNfmpwt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|209.7|0.66|14.88|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|AGjm75lpm8ITVQVRD0Jfae1GD56u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|221.0|0.748|18.07|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|AGkErTdFf9nhlVetxROZ9fhIqnXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.965|97.0|0.63|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07999|AGo8ZPzYUaESP2x1042eAF1P8CyP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|AGuxXLraVD8euOpFQHmR8bvcciOV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPb1.0Br3||0.845|13.85|0.575|0.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|AGwn03ZAxa21vzkdzZQHEzNdxrjg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|88.4|0.522|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|AGyEIJREb5YpeG91_HJixvWR3dK_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.0|0.74|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp02715j|AH9a_X_yEVqEGrFYE_AbtOcnbNn2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.8|0.71|14.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|AHPVNXG0niz1b6V5EKSMf-CcPzvr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|1.034|189.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|AHcyPswOyAqxj1MCwSoL3n7lgXR-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.99|215.8|0.63|10.73|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsaem.8b00681|AHmnAFCZTE9l9KG8-PdJtfOHD3pA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.137|238.3|0.7979999999999999|21.64|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|AHnPjFdgd9obhwgqbOwARscVXnUc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br15C78Cs22H390I85N156Pb100|Cs22Pb100C78N156H390I85Br15|Cs0.22FA0.78PbBr0.15I0.85|1.670000178074006|1.15|203.5|0.816|19.09||['NiO']|['BCP', 'C60']|not processed|https://doi.org/10.1002/adma.202201451|AHt36ZI49xjN3CnZ0W4Y-88CrVHP|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.22FA0.78PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|114.6|0.5379999999999999|5.89|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|AI4ave8uBdjXkAXX_K2RE_WRI06X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.05|214.0|0.56|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|AICu3RgP5m-wpha2jQR8aa_Sqj2A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|123.8|0.687|8.51|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|AIEpbdMnirR15hnkDc8RA9UmS7zl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.105|218.7|0.73|18.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16632|AIG3R4GuhnUIipVBcIyBqKkfdA5b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|201.6|0.696|14.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0tc02078h|AIKyUoL0JeFYYw68ZSY3FmQ40Gxr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|204.7|0.68|13.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|AIMeA-smHuzjU4THhFLHarF6Kv33|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|236.5|0.701|18.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105681|AIOcWcZJB6WmCPFtC10a1MlstoES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.8|0.7070000000000001|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh-EtHex 2', 'Au']|['CDTh-EtHex 2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00119g|AIUlEXHIqJ9cZsJPVRsrpM9FpX9E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh-EtHex 2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.7|69.4|0.411|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504175x|AIVLau7vmkjvRZZ4iFH8HM-U1OIS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|153.3|0.623|7.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1364/AO.59.000552|AIVM-gxqXLVosDHtXpNFxSZJijEl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|AIo0bMUT22VlLd-H31tvDXhfWJ01|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|149.0|0.509|4.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTCDI', 'BCP', 'Al']|['PEDOT:PSS']|['PTCDI', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|AIqzkXLhuGaye2MzGon1nrQ5o4UF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTCDI', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|138.5|0.67|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|AJ4nQnZ2AW2i7WAoDZBbPwPCCgDA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|175.9|0.575|8.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|AJ5t-mWqXPHIRoqQ0qvbFG3oI-jn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||1.16|238.0|0.726|19.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/adfm.201907962|AJBGxpon8V6LIWo327zFyln4Vpgz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|152.7|0.53|7.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|AJCRMg9uMbWrSmgx8fd85iayAlrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|176.6|0.5489999999999999|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CIGGSe-np', 'Au']|['CIGGSe-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1933-z|AJIEsTB-1x51bi_EOsme6BUfRV4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CIGGSe-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|162.5|0.618|8.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|AJMVDmFEhlFUkcfzIvBxI_y9ocGK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|110.0|0.42|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|AJVzWyKJ8AdEqmENWoX-uE475U9u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.4|0.71|16.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|AJesu3floNvuUYWg9KxB6fV23G8f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.2|0.72|14.94|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00300|AJjAmo8bzqwluLSct5ovSdgJ81DA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.05|201.0|0.6920000000000001|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta07036d|AJqNtnaXLY_eq1ytgM8JKNWoIaFq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.0|0.574|13.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|AJrBCGn-hVLlMitm2vZ7I4IJEmvI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.94|211.7|0.6|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']|['PEDOT:PSS']|['NDI-BTH2']|bulk|https://doi.org/10.1021/acsami.9b13894|AJzi2bGS86izDw3Oi7iQT3nFD-i7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|204.82|0.67|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|AK0UcVBF8BC950XBJ-0ejvNpl-BQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|136.0|0.531|7.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|AK2dyta8zbzT14h2sQxmCxIyGV44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578|0.99|226.1|0.677|15.18|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.7b08429|AK5JPUfRq3mwrscKeUmCXT1fyWo0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|134.60000000000002|0.591|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra09976a|AKCdCPvCk_b2w0-iXLTOxSJP0dRX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.5|0.758|17.7|['SLG', 'FTO', 'PyCEE', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PyCEE']|bulk|https://doi.org/10.1021/acsami.9b03304|AKE6M5C_d55ivuoW46k7bMnf8v-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PyCEE', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.08|221.0|0.76|17.7|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|AKWskv746GVwZv3-6613-MiUEPg5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.01|183.6|0.4|7.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-F', 'Au']|['Spiro-MeOTAD-F']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|AKdyNBmMTN1SzRQS1wnKhZe0fL16|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-F', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|171.0|0.591|10.71|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'TCTA-BVP', 'Ag']|['TCTA-BVP']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201601165|AKeTHs9uahZ9AZrk1VWdWPR3wJ06|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'TCTA-BVP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.3769999999999998|65.0|0.6829999999999999|6.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|AKlDR5IxkhTbaojAIbPSFhQ_Sbbo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||1.065|152.0|0.701|11.36|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|AKovOZY8oRKmP9kF2rdsyrZP73Bo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.1|28.8|0.43|2.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|AKpHgXUDGxD6mnsS8G-t3VS01hU6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8|169.1|0.7120000000000001|9.61|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|AKsMaAlwZKKOVBvhwht-55Rgzjhi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.0|0.752|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'F-60; bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'F-C60; bis-C60']|bulk|https://doi.org/10.1002/advs.201600027|AKvJWpFkQmSauwWvH88mIZaf_DmP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'F-60; bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.1|0.73|15.76|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|AKz6MFWDTIAeq9tijoOIogv8Gmww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.87|172.39999999999998|0.72|10.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|AL3udAO-x1nkQn2N5XEgfgsVeA0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|236.8|0.721|17.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']|['N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|AL4hmy4ilfWyoCvFk3r5bMvlqbbt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|167.60000000000002|0.607|8.14|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra19265c|ALWLsqfJPcVPWzdKJb2fJJwABjzA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C125CoH750I375N125Pb124|CoPb124C125N125H750I375|MACo0.008Pb0.992I3|1.5600001663445808|1.0|196.0|0.765|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|ALoSic0A7oPeWRQM5Xm4zs_y-k9B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.008Pb0.992I3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6200001727424491|1.13|230.0|0.736|18.5|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|ALt32Ff4SDXxr-QQWmZRIdezlVfJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C396Cs4H1113I249N159Pb100|Cs4Pb100C396N159H1113I249Br51|(TBA)0.2Cs0.04FA0.63MA0.13PbBr0.51I2.49||1.19|223.0|0.6709999999999999|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|AM4_Xy6LAE2TcnDyrXCYxN4cTYyC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.2Cs0.04FA0.63MA0.13PbBr0.51I2.49. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.11|241.1|0.745|19.95|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|AM9z2CqRpHf1jbV8qnG3QkSSX0Jq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|167.3|0.65|10.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|AMEfQ37qIjQ6y_tulH67gJJPLqTz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|215.7|0.76|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|AMLSHwjc0cmhYvfCRudWa_4YXizS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|19.9|0.46|1.35|['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']|['P3HT']|['TiO2-mp', 'Pbs-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.081|AMObEHi9aNsi3Kx5X0XpM7C1ncbp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']? The composition of the perovskite layer is MAPbI3. -Br90C168Cs14H863I510N313Pb200|Cs14Pb200C168N313H863I510Br90|Cs0.07FA0.725MA0.115PbBr0.45I2.55||1.173|225.7|0.747|19.77|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b09035|AMTuXaOctDzazFQZs_DZrDC0IzyM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.07FA0.725MA0.115PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.0|0.71|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01617|AMYCQBBIUcnYk8zaESkOMuGgszGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|180.0|0.63|10.48|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|AMbQeAYpXYk6TmxE2xFfYjsohap_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|172.0|0.62|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|AMsE5ndJU3PUDbz09WV_LjtYXuL1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|218.0|0.563|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|AMvYwfSFlNW-ZcWYn5f8B_H6oQ_c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.029|226.2|0.76|17.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901591|AN0AhtaQIVTWVGg5yrbvxvMluMMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.873|221.3|0.527|10.18|['SLG', 'FTO', 'PEDOT:PSS', 'TPA-NAP-TPA', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS', 'TPA-NPA-TPA']|['PCBM-70']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|AN4-iHDBImlhhAGA1btmtpnbV6Zj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'TPA-NAP-TPA', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|84.0|0.75|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|AN9wJqMZFEmtgssqUb_8SsFikqbi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.2|0.76|18.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.035|ANBcOWfmMJdCHMhpW98r6U920-5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.97|150.0|0.69|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-ANT-DPA', 'Ag']|['DPA-ANT-DPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc05238c|ANNmkN-nfdaS3xsIUnqhMI6veLfA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-ANT-DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|225.2|0.7929999999999999|19.06|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|ANWA4OdlRLeefwDINa7a_SiOCil9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.31|57.0|0.28|2.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|ANZ_cxjyoV8KBi5aj8SmNJoZHuGK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|99.0|0.503|4.69|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07758c|ANdgVXjq4rU-4nrUMiX_m68nl9fz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|211.5|0.43|7.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|ANhTqTh7TnT8tocJU3dVfdHhdo7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|117.7|0.652|6.97|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aa6e47|ANhXdNERa19tUBoHlTrOB_hNpxlY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|200.1|0.7490000000000001|13.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|ANpsKt3P6ncNu7BFeanwNIsi9Brw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|186.0|0.67|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07496|ANqF-OrtbImgoKyF9vLCKLvITcJD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.87|190.5|0.42|7.18|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5031167|AO0audmuOfDm1Z0bsh1de0NPL5Tl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|162.60000000000002|0.544|8.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|AO26WC-TUMhrOPrk7FbsI-FITe0w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb7Sn3|Cs3Pb7Sn3C7N14H35I30|Cs0.3FA0.7Pb0.7Sn0.3I3|1.3000001386204838|0.77|264.0|0.716|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.201705965|AO2hUBnP3Ze9ynK5A99CEzk2cczK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.3FA0.7Pb0.7Sn0.3I3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.51|207.5|0.55|5.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'BCP']|bulk|https://doi.org/10.1039/c9tc02003a|AO741XYLiJ0eaUTJC2u1q0bNRQ1c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'CuSCN', 'Au']|['Al2O3', 'CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|AOCaVZPHa208UAiChiIEGKbzXd-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.512|201.2|0.653|6.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|AODZkjOndeTKIXHlGObPGu7jMZCG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|191.0|0.74|14.18|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|AOFTg9QcoPNzUrmDDxducfOYGJOI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|212.3|0.67|15.19|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|AOPbytqsHlyoF8Gt_7WGqmCmlyDw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.1|0.703|16.46|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|AOQAwnANNfQhxvmXXQkNLqLucGsy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.0|0.69|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10055k|AOSWEWRLoAzlNG0ZEAusHOIWrCtr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|207.0|0.74|17.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|AOdT2xwJEPrjlde-Y3G963rvtSHI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|230.0|0.65|15.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|AOe8QO9ckPaZ25WhrpG83z2b22Wo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.053|203.1|0.66|15.77|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/adfm.201805168|AOgBNUkz5cKTzY4guBd0fMQE7UX8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.1|231.0|0.755|19.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2']|bulk|https://doi.org/10.1021/acsaem.9b00637|AOgc8-tE1Hto3H1SPv8uq3TpuR2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|170.79999999999998|0.7|11.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|AOmZpceg0h4pWEfdcSLdQN4hkBAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.4|0.675|15.94|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.11.021|AOpjWzlxHoueXNO1jFaG2JkhVXU6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C50H293I129N57Pb50|Pb50C50N57H293I129Br21|FA0.14MA0.86PbBr0.42I2.58||1.04|226.6|0.779|18.4|['SLG', 'ITO', '3,6-2,7-PCzTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['3,6-2,7-PCzTPA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.9b00372|AP0cqp1P2X3mn9j7ulEp83dKYTVP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3,6-2,7-PCzTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.14MA0.86PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.9|0.72|15.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201604153|AP7OZuad5ZwPhaSWJeYEkYzyxu4N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.052|220.1|0.544|12.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|APCMH9DmfqMSQ6r1QwDKafLgq2AZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C90CsH464I255N166Pb100|CsPb100C90N166H464I255Br45|Cs0.01FA0.76MA0.14PbBr0.45I2.55||1.081|225.0|0.757|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V950', 'Ag']|['V950']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c8tc06297h|APDQ21J4ITfwSvArCcY_m_hV_6PB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V950', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.76MA0.14PbBr0.45I2.55. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.1|227.0|0.78|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PS']|bulk|https://doi.org/10.1021/acsaem.9b00162|APHGLJrDpxzw7WlK1Uuf7I4AefCj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|52.7|0.483|2.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc', 'Au']|['H2Pc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974797|APIzyi727JSHUn2JitI1GQCgVaS5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.2|0.601|12.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.039|APP-axLfsYcbsPCc_GWqv-hpw3Ke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.6|0.716|16.65|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|APSBNjqdCotF454Crr-7JvRoW7uc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.0|0.67|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|APXMoPPwjHpwpTu3YB4yCALV8vJH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|223.4|0.48|10.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s00339-019-2769-4|APf_S4nJnP6ghjsu2Vrwjg8GStI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.1|0.71|14.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|APhrrESoculipd0zTPL2fl8xAyB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.093|242.7|0.7659999999999999|20.31|['SLG', 'ITO', 'NiO-c', 'PEAI', 'Perovskite', 'PCBM-60', 'AgAl']|['NiO-c', 'PEAI']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b18217|APisaRf65fMZDaCJmqtUHoi9c8oS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PEAI', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is MAPbI3. -C11H62I30N10Pb10|Pb10C11N10H62I30|(DMA)0.1MA0.9PbI3|1.5500001652782691|1.06|191.3|0.73|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17068|APj8fCrbRxF9x7zLkSesFFWQ5sIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.0|0.63|12.58|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1038/ncomms7700|APnti40S6jvLBgpqfzLX84NeNLQc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2600002409863795|1.04|25.0|0.41|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700362|APoKjy3pHnhOoEekGMTAuYvO-yUy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -C4H12I2N4PbS2|PbC4N4H12S2I2|MA2Pb(SCN)2I2|2.100000223925397|0.6559999999999999|15.2|0.489|0.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.poly.2018.01.034|APojdrqdKu9EudI1p6wf6gCpQ-ER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2Pb(SCN)2I2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|143.4|0.509|5.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra09976a|APxH5-5WyjwVPYIy9MRhIZO8OxMX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.07|233.7|0.729|18.22||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|AQ127La72CnxFId7pdqCPRmn9kfZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.17|0.13|0.26|0.0|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|AQCesJ3qe0EzQpCaMhMJk4vvndXC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.39|3.1|0.5870000000000001|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03310|AQEUfmqIDzCcYgniqv9FGewzzc1b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.93|224.7|0.541|11.2|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|AQKGycDllH5YBZzSoVhpQ3D2FEIU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.5|8.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-019-01561-0|AQZ8akxiahTfyIIYTezhLf_zP6jm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.12|226.0|0.76|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|AQd5VHaTdlXoJ6Fj3XysSpcJo3Fj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.9|0.7|13.97|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.041|AQfYpsj5oRhbbg7fGSSDKzZHGcyN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75||0.98|148.8|0.68|11.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.161|AQkmhPQjA5kWF90H5jj6QQ464Z75|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.0|0.7290000000000001|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07507f|AQqypDUrN0ivTf3kqZ3ULTMLacpE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.8|0.764|19.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227420|AQuyZ6e_acbLYVobj6_1D30qGVx_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|205.0|0.7020000000000001|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsphotonics.7b00138|AR3Ix6OgDBY1KlYpEcjzBPgY2p3f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|124.6|0.598|6.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.05.012|ARGvao9cdqcgiIOwNlY-VBTCAP9f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|177.0|0.71|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07703|ARZMlGCubPdyuVjSdwM21ZWoSN8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592||||12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|ARfHc4aFFAYeaN1yPnM23e1578gs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2|1.0|0.31|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|ARiu-5JMDj44iXeF4XnLuHmwqwSe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|188.2|0.682|13.85|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|ARjIdOWUxo7EAc5NyQQm71qSxXax|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|42.0|0.38|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.09.055|ARl2hcdwQhY3LsiUEwG7cYR6-utz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.006|198.7|0.736|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|ARtF2z5iN4pcEZrf_1KLiK9PYg9H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.18|89.9|0.598|6.34|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900831|ARy-1iKC-tNzHoNH9EbgL-No7_K-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|161.0|0.67|10.6|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|AS1VNo5em-nA_sEL8z-uJj-4HUuH|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||0.97|89.0|0.27|2.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|AS3TIZEKDcnJb7bBB4n8yZraJkw1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.752|17.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126647|ASGYU72h5fhlH-16QsNg_WNBQM1M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.598|148.0|0.436|3.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|ASKO4Hftsf-y645fK6kW7Epl5Eoh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4810001579207206|1.1|223.1|0.69|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|ASWeJe0xtL1pranN9XQm9Y7nuBeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|213.6|0.68|15.35|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta00398c|ASbLv40UIm8uv5X3ZGPBobwDE-Oc|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|209.3|0.732|15.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|AScyjvqsGTtY6oJazqSf0E_WEpIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|1.12|197.8|0.718|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|ASudaH2JLR3brsKlaX-rrbYvz6pT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|125.47|0.684|9.04|['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-nt']|bulk|https://doi.org/10.1039/c9ta11892f|AT2hZJUdt4x16x_fh9wRIQXu6Fe0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|229.0|0.63|16.1|['SLG', 'FTO', 'NiO', 'Perovskite', 'PTEG-1', 'Ag']|['NiO']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|AT8XC3DaJkmn69NcNXqGuldQHdGc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.22|152.0|0.778|9.41|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201907331|ATIfIWkEVHhTinNtHY-djsBqhyrv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.0|0.75|18.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|ATNJnr4G5Ll1HU4B2AnPml6d5Oz4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|205.0|0.725|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsomega.8b01626|ATcEcfqmRaU2ihJU_IvNycpqjPOD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|89.0|0.508|2.7|['Paper', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/LED.2017.2735178|ATje7Mz6ps6znkjzCXy_BxAGpGeH|a perovskite solar cell with the following device stack: ['Paper', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.098|230.0|0.758|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|ATk3Ps7bRDELJrOPFKJK3VqFP52q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.0|0.79|19.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|ATviyMxGC8rzzmkGURRZ7A95LAmn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|208.9|0.778|17.75|['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBTMT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900421|ATwsaLxW1x2Ww5JfZKo67Zef35CY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|200.3|0.602|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2018.01.018|AUCvwOAp_heSAne_oglVcBhVbgVn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.04|209.1|0.65|14.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|AUJ-g-1aY6TELrh3zlgCSF4J79kZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.405|40.9|0.638|3.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|AUWZJdU_mFjvAj4zkG78HqE-zwC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||16.27|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M109', 'Au']|['M109']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|AUYl-Nk0I99Fq1csWMrWvDEzDdXj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M109', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|112.5|0.48|4.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|AU_BMQwgM1_IDdYMpDnaTmqvu-kg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|215.0|0.7979999999999999|18.9|['SLG', 'FTO', 'Al:ITO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al:ITO-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226907|AUa4UGpPOHhPj8BVuNjAuM3R_cc8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al:ITO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.5|0.616|11.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|AUfK3mQWbk8fLya-0aSc0Yvj6kXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|195.0|0.77|13.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|AUh9v29a5CKa69O1a4vLlw6Yx6Ri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H78I48N27Pb20|Cs5Pb20C15N27H78I48Br12|Cs0.25FA0.6MA0.15PbBr0.6I2.4|1.7000001812729404|1.12|178.0|0.705|14.1||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|AUiBHLXe_QpOyf92hiT-mz-pKnBO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.6MA0.15PbBr0.6I2.4. -C2H12I4N2Pb|PbC2N2H12I4|MA2PbI4|1.5600001663445808|0.98|208.8|0.73|14.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|AUpWLquFC38HwvEXRAc5gqWcigd1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|212.2|0.72|15.29|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|AUu1HFmaLsx-yAk1VL9QE1KpTvUM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H477I300N192Pb100|Cs5Pb100C95N192H477I300|Cs0.05FA0.93GA0.02PbI3||1.04|245.6|0.7859999999999999|20.02|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|not processed|https://doi.org/10.1002/adma.202000571|AV6Op2ZJzk_K2Q_9Miclj7FyJE39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.93GA0.02PbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.05|236.4|0.6659999999999999|16.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'MEAI', 'Spiro-MeOTAD', 'Au']|['MEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|AVKazonBhsIqq_7W-fqHG6oU9tYc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'MEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.07|247.0|0.7290000000000001|19.3|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9RA05371A|AVNOWNVhVDtGT-AHHfTAOSMFFs_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.6|0.7|13.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5ta02730f|AVQ9AAfh4ssvak2rqhObpH_xxaVQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.8909999999999999|217.7|0.7979999999999999|14.5|['SLG', 'FTO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.08.003|AVTBgZRbykqfAy7-iPnaJiuRbM4z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13||1.11|170.79999999999998|0.725|13.0|['SLG', 'ITO', 'PEDOT:PSS', '4-bromobenzenediazonium tetrafluoroborate', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', '4-bromobenzenediazonium tetrafluoroborate']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1038/s41467-019-08843-5|AVi94vq6wq54y8G0zbKYLdh2_dd2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', '4-bromobenzenediazonium tetrafluoroborate', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.516|94.0|0.29|1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|AVmGrzZloyKTmFn3-cpuVE4ZlViB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|107.5|0.55|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|AVoTBy7JlNQ6W2qR7cMFPq6cfJSJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|1.06|233.0|0.782|19.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|AVuLxr-TC0k9N_Kz3oGRP4Nyl78K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.0|0.62|13.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-6A', 'MoO3', 'Ag']|['Ph-TPA-6A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|AW6fLGKa1xbK8mjlaRNg5zsEg8tp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-6A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.9|0.66|13.58|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'CeOx', 'Ag']|['NiO-c']|['PCBM-60', 'CeOx']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.079|AW7NUDd5as59Yite6TW6IHBmkBfc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'CeOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|185.0|0.72|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz501392m|AWIYc43HxoBA1jRdwZysif3jgh0L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.3|0.68|12.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201501024|AWTqlwRT1NxNkuiLJhzHZjYtcxsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|65.0|0.67|2.7|['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanospheres']|bulk|https://doi.org/10.5229/JECST.2018.9.2.118|AWagJsfxBdYx1bu7VkUifqtkCaLp|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|196.0|0.589|10.9|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|AWgQ303Edb6XHBlwp01mpCIthh06|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|182.0|0.66|11.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|AWiHLuuhdWSLdUUqUaJttJwBIJ37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.0|0.7340000000000001|17.2|['SLG', 'FTO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['c-OTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms8747|AWlXbYcdbhasXLHBeZOyVqalfuy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH95I57N38Pb20|CsPb20C19N38H95I57Br3|Cs0.05FA0.95PbBr0.15I2.85|1.5500001652782691|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aau5701|AWrxnQddqFUWey-saG1brif-2UMO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|63.5|0.439|2.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6cp03388a|AX5HIo72vONOO3g_65_zY10Z2pNr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.8|0.71|15.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605187|AXU5GwJ19W-JJdFRZ4hwH9LpbXfL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C89Cs11H534I300N89Pb100|Cs11Pb100C89N89H534I300|Cs0.11MA0.89PbI3|1.6200001727424491|1.03|226.9|0.76|17.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04501h|AXVzwph6K6T3WRomSKpfXU3QNO56|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.11MA0.89PbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|1.09|123.0|0.69|9.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|AXdrZO8W1jwwPCSrv_2UurdzKDH_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.07|206.2|0.64|14.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|AXlPXderJxXQpsW9x2nsxy76g_Ug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|228.1|0.6|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|AXvhhREWJvy_NIdwaVEI_lWCmYVX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9|1.5500001652782691|1.029|226.0|0.763|17.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.02.015|AXy_wPcFN18RLKT3XqL9wCoBbZjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.51|48.2|0.606|4.41|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|not processed|https://doi.org/10.1021/acsami.7b18902|AY1yPGGXr59B0TaIGYJqh_88aIwY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.02|202.0|0.68|14.03|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|AY4Gs4yeDPoIF5s6EnxdM6MJ69z-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|177.7|0.71|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1038/ncomms13938|AYHfwyvdqPkaoJUAvpjeWl0SaRyQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.148|228.3|0.762|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiN', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp', 'TiN']|bulk|https://doi.org/10.1021/acsami.9b18082|AYIemwpHL0OJbARNffrktfWtbS8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiN', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|145.0|0.53|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201301047|AYQxp6wEy-1Yp_GSd-UA7Kzq6PFs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C83Cs17H415I255N166Pb100|Cs17Pb100C83N166H415I255Br45|Cs0.17FA0.83PbBr0.45I2.55||1.12|232.8|0.7829999999999999|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905502|AYSPSc9aSnjUguXByADX-8Tg55iL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.45I2.55. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.03|233.5|0.728|17.51|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|AYlHYVdxYnjIx-jkFqyBmZ9vWjsr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|AYuRX01K1slZrBJF5NyKspj2QEUY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.09|218.8|0.66|15.76|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|AYzbsFDq4uc387HG8rgNtkTCuYnc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -C3H10I5NPb|PbC3NH10I5|(PEI)2MA2Pb2I10|1.950000207930726|1.21|66.3|0.53|4.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|AZFwVsdHTa6H2JW_0RSPqLfKJzyU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA2Pb2I10. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.08|237.9|0.76|19.58|['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiS2']|bulk|https://doi.org/10.1039/c8ta11841h|AZHZTwVBlDcr632Y9Kf-tFFAYZiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.014|223.7|0.777|17.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|AZIJdfKCmmK_gL5dHHpLm4rM0KJl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.115|224.83|0.78|19.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|AZK8JLzvopkd_lLlYVCXzv4Qn7g7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.9|0.7440000000000001|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00432|AZPEYQKB8ngujtkwNknmgFwAJpCd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.12|213.0|0.65|15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|AZ_ntyLRYA4l8xCLSDBIqP32CZ37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|27.0|0.63|14.4|['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CdSe-tetrapod']|bulk|https://doi.org/10.1088/1361-6528/aaf158|AZhzHJk7DcXB_a_5xxns2YTIY7_4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.0|0.82|15.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nj03067g|AZtUaPDCqpj9SYr01wRVGd_KHkEh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.814|196.98|0.624|10.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||AZti_ake_he-1-CSoG3aZ8Wewc4O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|187.5|0.605|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS-QDs', 'Au']|['CZTS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.08.130|A_4hF3hwH06mH6tdXIVR2iDbU6MI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|188.0|0.77|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/adma.201505279|A_4neHTKvnYWxx2B2B1rF3z0JlnB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|225.9|0.695|14.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201500335|A_FpNjjEo5KcRL4jIhmnaY88n3C2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|35.0|0.33|0.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|A_HTsvqW-JzhFjst__jBaQQ6knBE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.067|208.0|0.6940000000000001|15.39|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|A_JAiOKtxEDNStEJSapOxJ6ZNhkD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|220.0|0.77|17.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']|['NiO-c']|['TPA-3CN', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b15130|A_Otca6OKfZR2oQWYZnXTh1Ev9c1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|203.8|0.63|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b02158|A_SLHRm_ubk0wLZS-EuxL_9RzIqN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.223|163.5|0.7959999999999999|15.53|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|A_UKWsw2UuiAXs5_tK47aPQF3W7m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|231.0|0.762|19.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|A_ZWqEPd4i06F02G7W5HaKmoaQL3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|174.0|0.579|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|A_jG9UbTvm3h0ERnjQypCpQEJZo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.127|214.0|0.73|18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|A_zvbc8itfpP080ROypriAVzvANs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|176.0|0.7170000000000001|10.9|['SLG', 'FTO', 'PEDOT:PSS', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'CuSCN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.033|Aa-quDDrYq7JtidOt_lGOVyIbnGI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.0|0.56|9.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b10093|Aa0C946rJ8xSE2Ee8mXp2MPKlREw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.008|216.99|0.762|16.89|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|Aa3rd0FonQzwr1BkjFhj2yocz0ih|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|219.5|0.75|18.16|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|Aa7tGSQAeP7iLvg7LCr46OdmwqKv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.6|0.732|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|AaLsdvx-7pmc3aoMzsJPsdsSLBaD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.763|110.6|0.747|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15684|AaNTTSEJ4KrmeMR0tjeDeaa_Odjn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|79.7|0.74|8.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|AaVlrhQxnAO9ckAx4aupkNR8FMe8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|168.6|0.65|10.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.09.020|Aaa4niMcR5S7RKmjjBHJqSSr_Zde|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|207.1|0.73|15.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|AarG1BeQ-GY9EGBF115vDZaHa3TA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|222.1|0.74|17.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.031|Ab0JrdeZRam3M0gsmrx7M2_OkLl7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.8|17.6|['SLG', 'ITO', 'TPASB', 'Perovskite', 'PCBM-60', 'Al']|['TPASB']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|Ab2ma3VsC6TgnSy4HZA8CGJZ9fT4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPASB', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|160.0|0.524|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|AbAk6NMMa0Fg6Z4D9oP_XZEQ6F02|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.0|0.728|18.9|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|AbIkxnpS2XOeImphInoLZ4Ner_xV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.75|15.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']|['PTAA']|['TiO2', 'C60']|bulk|https://doi.org/10.1039/c7ta09178h|AbNCXknALcPnqCCakH0IIyfCs-Ax|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.92|94.2|0.63|5.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-QDs', 'Spiro-MeOTAD', 'Ag']|['Carbon-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703682|AbP6aRBIlsze4aIgDfT_3qD_mNvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-QDs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|47.400000000000006|0.563|2.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|AbTdjifvDTE_owV5g0vGNk-nwlY5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|224.6|0.6890000000000001|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|AbV_yrXtbPHyXpkTEqb1j4YMkB8-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.13|235.0|0.805|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|AbZIWEL8sl2d_Km5MzfX6IAQgvXB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|145.7|0.76|11.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta11892f|AbbfjVlqPlQrLfI1RBG11KuVt5Ns|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3||1.04|231.6|0.78|18.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|AbfpsTAfsqNKS8EouukXHj3lIjA9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|225.0|0.77|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703659|Abm0_qN7v1qLkta7-SfXhVQ-OcfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|194.0|0.66|12.8|['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b09322|AbrpPOd3v6iF85Gp_lPOkcnOx6kG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|233.9|0.8190000000000001|20.85|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|AbrrTaNcBNA4JgDxVL6tKocFhWJC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|143.8|0.65|9.35|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2019.104285|AbtLQ7jooEo01ZZvlGCQrpN7haOG|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|150.0|0.46|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|AbvyP8VEPZvqoT5dqbJMvZqRoLTK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|185.93|0.677|12.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|Abw3pOZzcvLiYpf14GGNLx9twttK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|228.0|0.79|19.7|['SLG', 'FTO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800278|Abw8SEalx4zVdlaHn97i92Aa8lgc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.03|211.5|0.6920000000000001|15.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/advs.202000480|Ac4snevkTDJEBRdNsIh3IasZW8tY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|247.2|0.78|20.77|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|Ac5uRWfiWtqPmxCQ2PLt2Y3DlXuw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.0|0.677|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|AcKLJa2-FreEVek_tqkIaITqjWBs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.05|20.6|0.65|1.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|Ac_HiQZmnGgHdh3ac5IFQfpkuccG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|226.3|0.778|19.27|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|Ac_qchtvaezXXFYOZMBXAO4Gfhco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|191.0|0.6629999999999999|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|Acd1RU7ROVKmR-GrL7USudjoL_Nw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.3|0.7490000000000001|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np']|bulk|https://doi.org/10.1021/acsaem.8b00192|Ad8co9ksyaYCQiZkZyYTrllCbDfL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|157.0|0.547|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DFTAB', 'Au']|['DFTAB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b00858|Ad9z70bB4SQ2LVU7gP0_8HXi5h6p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DFTAB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.047|AdEpR-xfDhlR_uKsRtCZQ3nzbuOQ|a perovskite solar cell with the following device stack: ['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']? The composition of the perovskite layer is MAPbI3. -Br37C100H517I263N183Pb100|Pb100C100N183H517I263Br37|FA0.83MA0.17PbBr0.37I2.63||1.038|207.1|0.609|14.24|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|AdHjDj5MAg4yUu64W1OKzRRITDfR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.37I2.63. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||1.29|21.8|0.693|1.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|AdJCPUP7HUOv89kMu2GOeliIR2dd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|242.0|0.638|16.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.028|AdKj2rK2g_-L2L62WsSKZrjwoMVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|134.8|0.61|8.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-017-11193-1|AdMX4NxLa5TUYjmpBChny-pTYGxb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.2|0.7340000000000001|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.11.024|AdRoG7wDXwDaI6Qo5MB8Q6pWqqLA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|AdT4elduANBI-YEBwhCjLxw0SYNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br21C100H507I279N193Pb100|Pb100C100N193H507I279Br21|FA0.93MA0.07PbBr0.21I2.79||1.04|232.4|0.748|18.14|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np', 'BSO-mp']|bulk|https://doi.org/10.1016/j.joule.2019.05.018|AdkhU8Np2sDifarCMrR9ajebRz8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.07PbBr0.21I2.79. -Br64C225Cs25H1125I186N450Pb250|Cs25Pb250C225N450H1125I186Br64|Cs0.1FA0.9PbBr0.256I0.744|1.7200001834055632|1.073|192.2|0.619|12.76|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|AdlV_ayJ9nIyJEHAYqbc_SBVyyE-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|122.0|0.7|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06362k|AdpN1K6AOPmbyeSwchMbtO40J0Zl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.97|163.5|0.59|9.44|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|Ae7Zoz-oG3xIC_efgTZHMIfoMGOR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|196.0|0.7|12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SiO2', 'MWCNTs']|['SiO2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.003|Ae8mvKd2L8QQ-jX_jrjPjp3TFrcM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SiO2', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.87|78.1|0.57|4.13|['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|AeCroWyCpXj0QpkK6DoUrtb6t_Qd|a perovskite solar cell with the following device stack: ['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236||||8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']|['TTF1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|AeGkFV-chHgvqnHgn9vtvU4HbxLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|1.06|223.1|0.713|16.55|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'NP-SC6-TiOPc', 'Au']|['NP-SC6-TiOPc']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b09490|AeRLiaa-P2neJ4LsaeiM3G-w9JwS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'NP-SC6-TiOPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.186|232.5|0.782|21.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201902543|AeUKIvLy4hi3-7wh2iSiCRFSRZYV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.935|202.0|0.82|15.6|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|AeYt1lUmAZoQxd3hiEdrPgjuG8SL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|142.79999999999998|0.61|6.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|AeepwaTki-WIqTv9VPcy_h-67abs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|212.0|0.544|10.7|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.11.025|AekamUb-qCVYrPwSPemTljYvBaky|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|227.4|0.727|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/aad71c|AeppeXlK8hhVbcNU_GUFzm6_wGmV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|154.0|0.7759999999999999|11.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|AepujJ0KBghSZmT5MkHiS4QOpPfJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|168.0|0.695|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|AexxcrjKH6fgGOnQ5gR73R3tMT3o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.011|234.8|0.77|19.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|AfHRPypSKlYNn9e5LZYkk3pnIwK3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.08|225.0|0.7|16.96|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']|['PTAA']|['C60', 'ZnSe']|bulk|https://doi.org/10.1039/c8ta08306a|AfIlPLP4ONsh-zz4SC8JacqHJ3oU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.092|215.9|0.66|15.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-2EtCz', 'MoOx', 'Al']|['EHCz-2EtCz']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|AfMNvEJQaR-o1mshZhXwof8Z2ErW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-2EtCz', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.5500001652782691|0.76|256.3|0.69|13.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|AfMl85kKweU245D9BG49Woh-raR1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -BrCH6I2NSn|SnCNH6I2Br|MASnBrI2|1.4900001588804008|0.241|93.3|0.474|1.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/anie.201707037|AfT6IVYsUTf6j_5LCYOP5yyT1jTh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.7|0.67|15.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|AfWI5b3sWMTp-Ks8U9BgqbJWghVY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.28|10.0|0.785|15.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909972|AfzeXK_8LhFdzqNfncQyIaIk5QU7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.97|216.0|0.75|15.9|['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|Ag27gTw0XvazkSi0B7hSYRPbgtBh|a perovskite solar cell with the following device stack: ['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|200.0|0.68|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta03180c|Ag8WFl3W4-A9zE0wXCnlG_7_5r6l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|183.1|0.4|5.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.018|Ag9D5BT46P6-0xzrRBp1DN2Y5Ozr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49||1.14|232.0|0.7979999999999999|21.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Alkoxy-PTEG', 'Au']|['Alkoxy-PTEG']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902662|AgFbEanRHsyLdJduqlSrNoTWHkuN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Alkoxy-PTEG', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|233.0|0.7020000000000001|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7sc03543h|AgJRHQi9zZNmURwnAKbri7qQzqdY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|122.4|0.6|5.73|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|AgLXvtjp01OSHesjKP-ibxp2jDHN|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|191.4|0.6|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1012', 'Au']|['Z1012']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.08.002|AgPR475N8RDjsYEmHN2rxBCjDxaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1012', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|230.0|0.55|11.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b02375|AgZ8JDf1x1WanP93Uuecrp9-Wpr3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.8400001962013004|1.16|145.0|0.705|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904072|AgbQ9tjnPN7OrzyIJYYu-K0q5C-r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.2|0.64|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|Aghiv6vZAhvROzEnt7jRaWxoyrH-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.42|123.6|0.493|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|AglabT3eGKdPAdkjunq4QzIDdV8M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6100001716761378|0.956|208.2|0.489|9.73|['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|AgrG2MtOTP6Nxu8CIIeJ-jEs9re0|a perovskite solar cell with the following device stack: ['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.6|0.79|17.7|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|Agrit9IR3ti4SC9K1F5SFe_Z3ph7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|178.9|0.48|5.89|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|AhGZ4s_g6IoxrobONhgRnT0l2C2V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.107|206.6|0.695|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|AhSxoJmh4KKPrFo2coyf9XZsF-pU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|197.3|0.6|8.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr02866c|AhUcjyQndGhaL2AFUw_GWvTHTyD0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.93|236.2|0.457|10.23|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.099|Ah_pd7JHqNt0JgTl9A9ZBbIBX19S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-3', 'Au']|['PEH-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|Ahdsr-JNa_IpUJ8xA_H1XcM-jsYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-3', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.06|95.1|0.685|6.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|AhjBh_TnYrxzL5fNsH53t-LEgmjw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.09|218.0|0.67|16.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|Ahqg4L-y_bZIHEFyWSTLhlms5Icz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.79|193.3|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|AhtWVnChIXPz6KjS1i34Or_h8Yo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|97.0|0.392|3.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|Ai06Xc0q79pUyFu4nPqWWs0EYySM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.75|115.0|0.75|6.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|AiCDv-9YQo4WA1K6b03Qb7_Nb64C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|112.6|0.4|3.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4ra11155a|AiDAvGCZEjUA5mL-PPffrp9p3sZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|204.6|0.616|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta12890e|AiVQY25EiQsOGJoB5YsZbUz4zqgk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.5|71.7|0.429|1.54|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|AibMra4vlhA6u6OSCDFyaukp1Xhs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.16|244.9|0.769|21.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|Aikxae0Rhrb4oML-Ws-jVDT1yR5I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.625|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2391-3|AisK1dlH1_PxeCZYsivMnw0uTgQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|141.5|0.48|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'NiO-mp', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solener.2017.01.019|Ait8HJKGrNyDFZRYar_nNSFxVg4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'NiO-mp', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.087|161.12|0.446|7.8|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|Ait_jMqFDYI50TMsAz_uJc4L_AWN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||2.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|Aiy0tkZvJxL8_0YW_i4pkGIJgwed|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C3H18I3N3Pb|PbC3N3H18I3|MA3PbI3||1.01|197.4|0.72|14.35|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|AizokSmZLK-0f28MukGaxScEDOu4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MA3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|177.60000000000002|0.52|9.67|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|AjBzJbjtmU2YXjYE6z1cHo1T_Xm1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|201.0|0.59|9.7|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|AjCeOeZGsoNZhZUOuGDVssw4VKKI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|121.4|0.56|5.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.5.057410|AjIElPBldx1YkszMw9rJstLZuTB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C96Cs5H497I250N175Pb100|Cs5Pb100C96N175H497I250Br50|Cs0.05FA0.79MA0.17PbBr0.5I2.5||0.9|178.0|0.78|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03993c|AjLMQDtWe4M01pAjkObagrvkZbV4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.5I2.5. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.552|176.4|0.6940000000000001|6.76|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201811539|AjMk7Wmcl6rc6JkiJNXz_tEXwbcJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|212.0|0.728|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.6023/A14110823|AjNSuANu4tk2-0RTrOhBi9zLlpZd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.575|196.0|0.46|5.2|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|AjRy8w5cTDwMQwHZI0dxShDYm0NK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.4|0.657|11.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|AjTNi98BneDf6A-DI8xPdZvb6IDX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.01|230.7|0.68|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2', 'Au']|['CuCrO2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07368f|AjVYCKWtwLTYbqNJ-Iry5-KHqFox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|175.0|0.7559999999999999|11.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|AjYr1VSTlOLXmC4zqqP1870ujSKo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||18.75|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|AjjYISptrG6KfapH5yiWJOnxMzGn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.5|0.56|10.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tet.2017.05.020|AjnCbRThaD6WwnuteT6S7dL1ufQk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||1.05|234.8|0.72|17.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02348|Ajp8iJLsAeVtQExjafzbZeB_bGo_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|190.4|0.693|12.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b11679|AjpbrB3FDA9oKFwnu7yVaRA1ktWP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.7|0.79|17.7|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|AjuPSqUi6rjq2B3qFo_mnAHtU2o9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H491I240N174Pb100|Cs5Pb100C95N174H491I240Br60|Cs0.05FA0.79MA0.16PbBr0.6I2.4|||||16.0|['SLG', 'ITO', 'Perovskite', 'Carbon-nt', 'PFN-Br', 'Ag']|['none']|['Carbon-nt', 'PFN-Br']|bulk|https://doi.org/10.1002/admi.202001121|AjzMKG8kyVow8I6TZQmHMzSZuoOn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Carbon-nt', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|191.0|0.649|11.8|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|Ak0mp_5hX3SrKnkKm2auCoxtZUN6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||13.95|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ta01617h|Ak6TUnVOumMIZLIHlHX3C5qCmzHP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|192.0|0.77|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta00679e|AkRms3EF5B3RzZiNYTOxpt3G69V1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.3000001386204838|0.52|199.0|0.527|5.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|Akf5Oixcg5gMGZambxWPpD-av1wX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892||||9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|AkrciQDuYaDrE3YXYv60YEJSmhND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.0|0.71|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|Aky7J20WC43ZfFQtxb8pe7ZrN-tF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.1|0.63|10.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01768e|Al5_n9VT7K3xCJaAOjHPZeYoOTcI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.06|218.8|0.76|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601451|Al67T5c0tDY2nF0PeGs6RPWQ6olG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.841|87.10000000000001|0.5|3.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|Al9A8E3hokJjfUYw24VF_vxLs4Z-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C25H128I75N47Pb25|Pb25C25N47H128I75|FA0.88MA0.12PbI3|1.5300001631456466|1.06|234.0|0.72|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09532|AlOyut_DC7tpbg9bbNJbUtAZD6Jp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.8|186.0|0.47|0.0|['SLG', 'FTO', 'Al2O3-mp', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1039/c4mh00238e|AlU8QH2UxiP3WHFW1_9sU4M906-o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|210.1|0.677|14.68|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nw; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|AlWWlK5XJXwKzB-VaIUMsqu2NHVw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|123.9|0.745|11.34|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800188|AlZMZ_EO9BtdGesCbYJmTA8_1E9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.96|91.8|0.47|4.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|AlgZ6rYWHVYbl87oII8OfQFDSU91|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C2Cs8H10I21N4Pb10|Cs8Pb10C2N4H10I21Br9|Cs0.8FA0.2PbBr0.9I2.1|1.740000185538186|1.17|174.4|0.741|15.22||['C60', 'BCP']|['ITO', 'PTAA']|not processed|https://doi.org/10.1515/nanoph-2020-0634|AlolY8g6tqqH4Qqewg4s3N7uAYEZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.8FA0.2PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|135.39999999999998|0.3|3.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|AlpkoEdsCZO-uJI3-gv97yMtnyXz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.0|0.76|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|AlskWcy1W1ONQoXh_2XXWK9VsnCd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|230.7|0.76|20.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|AmDuPpMZFmUvzmeCJdu1aomlMEga|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.0|0.62|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'GABAHI', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'GABAHI']|bulk|https://doi.org/10.1021/jp412627n|AmOsKmFdeOIHoG0DAHnRlDhiQJgy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'GABAHI', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.0|0.584|11.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|Ame6XBpQ1tcIzPbXsvWU2I6X_9YO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|AmnMgHcxm8N9Tko9fsp8zsIGqwvX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|205.5|0.524|10.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4956436|AmtXMEM4fwPAnY_hBsD1KVnk8qiZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|183.0|0.72|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|Amu76pPJPnbAuccayT3tRlsI74yo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|213.6|0.492|9.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|AmxlOWFKN1VU8qEqu_sW3dAE_ZPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.0|0.575|12.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.028|An1DP55D_dDGjZDJyJiqtlIGhSgL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.16|226.1|0.76|20.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|An2AP8VnMK77DYJrofHwDvAOWTmi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.01|209.9|0.787|16.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|An9jIfp4cZhqS2OcckZQcPhWoKFW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|171.0|0.62|9.96|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta10605f|AnHOzJ5w5ag-Ayk5M4jS573yRgjU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|184.0|0.644|13.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807544|AnTylXUqIGeItrqsTorDY3yovOYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|167.3|0.65|10.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|AnUsj7JBoQp3lq_KCUdU3XW5_bQw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br14Cs5IPb5|Cs5Pb5IBr14|CsPbBr2.8I0.2|2.3500002505831827|1.13|32.400000000000006|0.5|1.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|AnWH8WkvqLtYFKzAYOyr2iQYEEvw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr2.8I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.72|17.03|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO']|['PCBM-60', 'bis-C61']|bulk|https://doi.org/10.1021/acssuschemeng.9b03148|AnbiNooO0pfhGZ4rz-TiAXfN0-sb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.4|0.77|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.6b05159|AnlWXLfvRwp4IO8iy_zL081K35jd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|31.9|0.6920000000000001|2.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201800346|AnltynuEd8JJ0Vj9A0AWxiNu-ILU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|183.0|0.61|9.89|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04642|Anr1c-pglvWZ06OLXG-8qokeLjqv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|194.3|0.65|13.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|AnyOWfqw9lfqUXLKaJczrBfWGa8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|209.0|0.737|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c7cp04053a|AnyPHndUtJLibE7O5bdPtgCsmmGD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.6600001770076949|1.06|229.5|0.74|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.12.013|AnyPLJqk2JaC_zC61NqMAZA7EBvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|211.6|0.73|14.58|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|Anzs0EaBSY9Kh7SInsnY9x_sBtim|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1200C855Cs45H4419I1800N1566Pb1000Rb100|Cs45Rb100Pb1000C855N1566H4419I1800Br1200|Cs0.045FA0.711MA0.144Rb0.1PbBr1.2I1.8|1.780000189803432|1.14|170.0|0.78|15.17||['PC60BM/Rh']|['ITO', 'PTAA']|not processed|https://doi.org/10.1002/solr.202000740|Ao1hxN8yjQetXEgplz0FKYj_E-V8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.045FA0.711MA0.144Rb0.1PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|114.1|0.565|6.66|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|Ao5TECxfm9OEg9_WLy5_XXCC6S_6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|1.02|136.0|0.578|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1002/aenm.201803258|Ao72ru8OHyTilyiwOKTpRdcUu2gR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|90.0|0.41|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|Ao9dv9csht76_wQcFflQgXaMGKGU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.7|0.7|14.6|['SLG', 'FTO', 'Cu0.33Cr0.67O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.33Cr0.67O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|AoL90fcUQ1mktekSGigEF9v9rr7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu0.33Cr0.67O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.75|231.0|0.5870000000000001|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']|['PEDOT:PSS']|['DNDIF3']|bulk|https://doi.org/10.1002/asia.201901452|AoLeLt0jPQbORDozvQ_vJVKeVmTg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|132.0|0.736|10.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|AoaF8KyfkQK8ONmeispJE-OE9C1U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|143.9|0.611|7.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|AobWHjiKxMRSc0UQQcOzKOTPau1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.91|179.0|0.72|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04490|AoiltdnlCvE0GnoMnGcguiogvw8T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6200001727424491|1.13|228.0|0.737|19.0|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|Aoqlk2adxM_PRgygUgexJXVc7a3Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|166.1|0.625|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra03066e|Aot4t1FkYnWt_VOHzktKsWZa_JQX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|216.5|0.691|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104671|AotrMRLhRtnCx6c0LJRKMChVIjck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|118.7|0.426|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|Ap1D6ZzPIsBSthRp6my2ezsiQAuT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C10CoH60I30N10Pb9|CoPb9C10N10H60I30|MACo0.1Pb0.9I3|||||3.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|Ap490EDoLcWWyQvH3nkf0an39zyJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MACo0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|121.0|0.66|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|Ap6Db2jDQNtiBen8-INbgWTVd94R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb25Sn75|Cs5Pb25Sn75C95N174H491I250Br50|Cs0.05FA0.79MA0.16Pb0.25Sn0.75Br0.5I2.5|1.3000001386204838|0.71|214.6|0.71|10.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|Ap6vVBxd8HIsrzJJfiihy77z8u1X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.25Sn0.75Br0.5I2.5. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.8140000000000001|146.0|0.57|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901685|Ap8J0AdJvRaEo6thxkPzUawLksyR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.14|135.39999999999998|0.726|11.2|['SLG', 'ITO', 'NiO', 'Perovskite', 'Nb2O5', 'Ag']|['NiO']|['Nb2O5']|bulk|https://doi.org/10.1021/acs.jpclett.9b02644|ApFr6qFOKgOR4uqFkbNJQ-ggf8mr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|191.0|0.59|9.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201700043|ApGy2T2RLQ-bmAWEjpR4ZsfvUlTF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|143.0|0.613|8.9|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|ApK6j7Jm6orMtNFV4YmrZuIUx3cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|ApNXj2Fe-9k5F3sBMqkR2oem6KFm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.98|216.3|0.63|13.41|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|ApO6uu6CXsK7gkTfsMJX0hJGYRJp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.32|128.0|0.33|1.34|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|Apb5qp9FHnGI92MOUe2Z2QH8ESMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|212.0|0.58|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|Aq072B83v2VKexRh_Jte5KyfB7I6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.1|0.7120000000000001|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.067|Aq91-hRytdHHJrjt5lpszb1mdOSn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|200.4|0.691|14.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602822|AqQKjIHsRD2qvtChO_npLWO9fvyh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6100001716761378|1.14|216.6|0.7|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|AqSl5lkZqt6IyQvkkObAdwuDHxQy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|172.0|0.73|13.3|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|Aq__51QRZnv2ESu-LNDyITLXIALz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C13H36I7N3Pb2|Pb2C13N3H36I7|HA2MAPb2I7||0.71|13.3|0.355|0.336|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c7cc00921f|Aq_gLkHkR_1MmgAiwHTRg3uvcN3x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MAPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|197.0|0.629|13.0|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201601974|AqbUS3WGcC0tufmpeBgNyqbCnTIw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.94|192.0|0.732|13.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|AquQcwppH5-kqEQFP_EjC6AgJ_Ri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.0590000000000002|189.5|0.75|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|Ar5W8bagdtpCHS0ji7DWsZMyowTo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|158.37|0.706|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|ArBaJDs6IeHMpt5XzEBQHKCc5P2y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.934|148.0|0.664|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(n-BuO)4ZnPc', 'Au']|['(n-BuO)4ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/2473152|ArJxDqD_s4AO-hu5JjjVLdICUEEt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(n-BuO)4ZnPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|139.0|0.669|8.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|ArTnn-OCJwuWI2OOaYcPM_2yn0aU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7140000000000001|68.2|0.485|2.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|ArXxega-AjOtA2cFfMdyIcY9AxGb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4Cl12GeH20N8Sb|GeC4SbN8H20Cl12|FA4GeSbCl12||0.73|231.0|0.53|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.solmat.2018.12.031|ArahrZDJtpx4yMwVstyqiAnhvB-o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA4GeSbCl12. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||1.018|221.6|0.627|14.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|ArbLND8fYtbXxf2nGUOY403WPWAx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|181.3|0.69|12.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|ArfJn0dD_X0AeJN9i-QfAmhsZfUg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|191.0|0.64|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.151007|ArgqlXso-G6hIXwSBH8P6605vDC_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|185.0|0.57|9.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']|['SWCNTs', 'PMMA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsnano.5b03626|Arj5PDaNN8zNzn-6pSnUP1pNnn8M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.0|0.437|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|Arlqbl7dXytVOdM2xlfRsYOqRwdC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.01|221.1|0.754|18.36|['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/acsenergylett.7b00644|ArqwYqGFY1OI0TybWmxCwtsLuoiz|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.98|239.0|0.57|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|AsBEG1hDEmRDwjZ6gvl4TBrF_4rf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|152.0|0.589|8.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja4132246|AsDdABw1xC-bKeolxAcFu_SiimWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C95Cs5H491I180N174Pb100|Cs5Pb100C95N174H491I180Br120|Cs0.05FA0.79MA0.16PbBr1.2I1.8||1.25|192.7|0.75|17.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|AsLDMa3kxkq9hYUwIMGCaV_O1mGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.0|0.7140000000000001|17.4|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|AsNBHaThUreM7BzWlHRtxbkuKIWq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|205.0|0.669|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra16355f|AsQIDbuKMnREvv9eIgjSrhQoV0s6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.8|0.743|18.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-018-2571-2|AsRRfKno4sLL7PP9_AHMP770vb-j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.0|0.71|14.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201601745|AsS4ppO0nAeU9LSgQTticTCGnoSH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|164.0|0.59|9.0|['PET', 'TiO2-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Ag', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|AsUZjnj95dbFkDZcHB4lMUio0c3C|a perovskite solar cell with the following device stack: ['PET', 'TiO2-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|142.0|0.586|8.33|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|AsVGr8IrsmOpN-W7YdTFVlhrEul1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|148.0|0.68|7.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|AsZXlWxbnTZiZpcxDBC-0zdS8Fq4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|199.4|0.8009999999999999|14.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|Asht6Q_IDYCH3eQ7aAC3Z8yODfX5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.42|4.2|0.59|2.55|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|Ashz1I8vIW1wg5Cs1qCdS1ZJsu9Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.0|0.72|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|Asn5hPBpFE9oR28Coi-Q3NTDyxfG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50Cs50I100Pb49Sr|Cs50SrPb49I100Br50|CsPb0.98Sr0.02BrI2||1.043|153.0|0.6990000000000001|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b00937|AsnzUojb2EBd2kwQG95z1Jw1-h_-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.98Sr0.02BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|181.5|0.56|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/ente.201700030|AspCSGrkfk6cV-lu5mqtKg6vNN0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|170.5|0.57|9.03|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2016.02.147|AstanUQDgwEb9e3HTWeaqI9cONzv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.07|223.6|0.75|17.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b18230|AsuF6JTgt2iTDgcyborye8vh71vN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||0.88|149.3|0.42|5.52|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|AszPyY3rDLxlyMePDHeGlDHgroGC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.97|132.0|0.68|8.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|At0WDCEDmia5MOy0xRM-AjlHe20S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.97|216.0|0.62|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03577e|At5FhdR1U4sYP5RdY71V2axeBT8s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|181.7|0.66|11.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|AtAJrEHD-gbBuCph2YPLNUiMZh_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.0|0.662|13.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.024|AtEHWYIyV6S141KzkPR-vRT4TMLF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3100002463179368|1.431|60.4|0.737|6.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|AtGhKfJyUY_qZSzg4yLxO9eADx9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.07|206.6|0.56|12.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|AtH8W70xi_gibLuzt_T1Nl5rjaZg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.10000000000002|0.61|10.84|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)"", 'Au']"|"[""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|AtIEDLO0M3TZM4vcoBQRb-G4rP5a|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.5|0.765|17.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP; TZ-4']|bulk|https://doi.org/10.1021/acsami.9b18757|AtPDYojp-iOtoj4wZcIAE6Q_8Bsl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.53|117.0|0.6990000000000001|5.9|['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['CuS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.tsf.2018.07.037|Ata_qfTQb8VzAbLqAyMNoNtXEikU|a perovskite solar cell with the following device stack: ['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|174.0|0.733|13.0|['SLG', 'ITO', 'BTPA', 'Perovskite', 'PCBM-60', 'Ag']|['BTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc00858a|AtfleiIuozJhFNsp38nVuOC80WKS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTPA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8190000000000001|113.3|0.497|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|AtkS6DxxUY1LVfKp_daW9Fus-qPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.731|119.7|0.44|3.85|['Ti-wire', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02779a|Atka1MEE-eKoFcEgIpgxcKyoowv4|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.06|230.5|0.7490000000000001|18.37|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201703852|AtwC7Kaj1ti6vHd4IZDswyoHwoSC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.5|0.737|17.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@Ag-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@Ag']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|AuCFGh5VSpC1kaTbnNkC-VJVCGok|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@Ag-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|91.0|0.27|1.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b00364|AuF1tWCzNDWPV-bbrOHuTyu46OvN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|AuKBpXNXqa05kDuSRjm08UwBaoHD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|224.0|0.6609999999999999|15.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|AuSrZa1TTE2ugzK5p9Q54NSzcHM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|204.9|0.789|17.7|['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']|['Cu2O']|['SiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.077|AuTByvomMS1UvQS5vtexmxl9ymAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|155.5|0.63|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|AuTMBgkdZc6zteNV1Mltx_YJjHlM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.743|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.019|AuWxM_x5L6UL1pKXFm942fvuGCmO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|232.0|0.703|17.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.jpclett.0c01776|AuaUT1KBCA6IjT3uQoaB01xY-ypF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|162.39999999999998|0.7809999999999999|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|AuaXFL1ZGeNRz9zsyfcBl7xu8GyX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.4|0.754|16.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|Auk-t72yOqXOu5zxdz4eGKKlqiaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.539|108.0|0.645|3.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|AuzSUxzCqFtKMg9bgnB9gnvGuccL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|200.5|0.6940000000000001|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|Av4CzkgWBceJEz_NnB2S56GJyOaQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|218.0|0.762|17.4|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|Av8-fnmlVDyVtP_hVHRigXsavdvg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|1.04|223.0|0.75|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b02787|AvDoJ0tKd76n8RNffnZxAwFEYeXN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.05|18.1|0.63|1.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|AvExPdkNgO9crL-tBH2rdKOWng7q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|200.6|0.64|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|AvFODuRUb5fpCyQA1u8P_B4nU6bA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||0.96|187.6|0.629|11.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|AvGEDshJicDZCo2j-X0xwkNSvE1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.01|213.0|0.69|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine', 'Spiro-MeOTAD', 'Au']|['Triazine', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE08|AvHsvCRUy7D8xb1-2aXu6lt7KBBc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|229.0|0.7559999999999999|19.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']|['CsPbBr3-np', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00925|AvMOHhXfRBXBsAhYynym4Us5394x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.0|0.67|13.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|AvO2L95WbbULWUPML-TnfVwfj-sy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|221.5|0.71|18.87|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|AvRgtxzsCnG4qRbLwtnpcHPtmyBE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8590000000000001|226.7|0.66|12.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nj04448h|AvUhWVzi8XAkaOeGg7ha8FqBqpZk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.1|142.7|0.7|10.99|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2018.05.004|Avjs3eVk4beHXLjEEErs53vo8L6d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|166.1|0.416|6.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|Aw3c6t6yxbPYSmNkraFp9XBbbqsx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.04|226.3|0.71|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']|['Spiro-MeOTAD-I']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|Aw3tkXKLr1TSgKwEpRgErmR4B_P1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|Aw9JwG3jla78f3n-cSlsd9jsrkoj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|AwMLSwZBwbeIPPaj02DQ4Cl71cW-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|217.9|0.764|17.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|AwdmYP3K8CeQefnckQvJKxyNtkrd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|172.2|0.6629999999999999|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|AwfAoakXYt2GfS5Z5vRtlY1ewR7o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|203.8|0.63|12.46|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c7ra01110e|AwjzZ6pp4L_yNMQyYkvb3aQJ3xHH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|177.0|0.72|11.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|Awrtb_CshdJi--67SwhZugsjvwiL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C21H54I19N7Pb6|Pb6C21N7H54I19|(PEA)2MA5Pb6I19|1.6000001706098266|0.95|181.8|0.737|12.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2018.11.019|Ax-8dTbyDhDoGIPe-xOFpE49Upbv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|167.0|0.69|10.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Liq', 'Al']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1039/c8nj04131h|Ax5qcAN1Zp-NvD7XPrbGsSmk7eRu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Liq', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.01|180.8|0.6|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|Ax7gEbESkluq9wulUzRMuteLThsA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br12C94Cs6H477I288N181Pb100|Cs6Pb100C94N181H477I288Br12|Cs0.06FA0.87MA0.07PbBr0.12I2.88||1.12|238.0|0.7609999999999999|20.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|Ax89EN0LKJMpXGgV-X6frtd-Mfx8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.87MA0.07PbBr0.12I2.88. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|213.3|0.75|16.9|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.07.018|AxWQRHqk0-cjAs1ZXy3i_ghIP8yD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.0|0.623|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.02.026|AxaaPPoe4cUqDO5MAvBRFdTEF2Jf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.63|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ph500255t|AxdjkKpZvGVND3GgHQrCYgMAQT-C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|200.0|0.71|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|AxdktJDFLS7rO8MsBrZ3IdAvqGqU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.99|199.0|0.64|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|AxhDoYZKx-mcZurciMmaIIEbOvqz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.64|29.6|0.4429999999999999|0.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b16349|AxmAPjynDet5wakOUTDLx4klynlx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|141.4|0.51|7.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11082-020-02327-3|Axrl9GnUStjWLoqN4RTNvEvI4dAH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.9|0.757|14.54|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|Ay6Y-n-nd000JZPFL4TQQCWCDm7m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.740000185538186|1.17|157.5|0.74|12.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/s41467-019-10856-z|Ay9kgAxWEDyNBmNrC4i7fCeNvRPQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|184.2|0.69|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|AyKDetRVEPlf0k3xUH2mYClaplvu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|0.757|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|AyO_WPJSM4YibDwVw4DiL867YnEp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br255C1481Cs5H8805I45N1562Pb100|Cs5Pb100C1481N1562H8805I45Br255|Cs0.05FA0.81MA14PbBr2.55I0.45|1.5900001695435149|1.093|232.8|0.79|20.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.0c02983|AyQhmJcnOGVnt9VCpQFhmQKd_11g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA14PbBr2.55I0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.8|0.7|12.86|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IAI']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c9tc03684a|AycLWofiJYCOT6C7c9UXB2Mf9voL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IAI']? The composition of the perovskite layer is MAPbI3. -BrC4H24I3N4Pb4|Pb4C4N4H24I3Br|MAPbBr0.25I0.75|1.7300001844718749|1.14|182.8|0.695|14.53||['Spiro-MeOTAD']|['CPTA', 'BACl']|not processed|https://doi.org/10.1007/s11426-021-1306-4|AyqCcR9Rf9NAVZddPy1ONc76AoJH|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.25I0.75. -CsI3Pb|CsPbI3|CsPbI3||0.89|82.6|0.48|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|AysYKUSBMoe4awwLvlzWSshacAJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|86.19999999999999|0.73|5.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|AyxF0mUEl1aoJRz1LaGQpuILM505|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|207.0|0.5920000000000001|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|Az3Nlcml7NsDTvdKED2g3nJLBhBs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|||||['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|Az6XaBEirV8U5mkQ2G6AYE0uMyAv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|172.0|0.532|6.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b15175|Az8_T4mRT369iRWpgz4im3Zw0d4e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.2|0.63|11.96|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/ja512518r|AzJmuCfTpbKmqE6uJMykBh_baAN7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|AzLtxu1dRnRM-uJq95VHVrztwqZb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|184.8|0.57|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.042|AzR9fjBax8yvNtpnpRbVQsNBz_Tb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|200.0|0.7509999999999999|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta01595b|AzhZZyszgd4A7GLOmGS_W3tOP0M7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.95|153.9|0.68|9.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01942-5|Azj0Y7Cpx97EG4B7Zs4PyuEvZ3mb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.7|0.73|14.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.056|AztSSDIkg_wkQkOTGtG1PKwM8tle|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.16|238.0|0.74|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@SiO2-np']|bulk|https://doi.org/10.1002/adfm.201606545|B-3FcqGNIU44K2CLtLlXzg2sacUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.001|165.0|0.609|10.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16963|B-3wehdfr-xf48V1Sym44_Z3i-_K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.0|0.42|7.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01558|B-8yBfGP2_S6AKH0ItWj9b2AeLYP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H62I34N21Pb11|Pb11C14N21H62I34|BAFA10Pb11I34||1.04|214.6|0.662|14.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|B-BQ3uQAnjX9Lvc_H9aTG9F-a5Ch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAFA10Pb11I34. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.077|187.83|0.763|15.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||B-DSFxOJ76NLWsJOF9cwZLwYrUY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|204.4|0.732|15.86|['SLG', 'ITO', 'NiO-c', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|B-Ek10wmV1I5uiINNikMU1sAfc-K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.8|0.665|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.108|B-IXJGRM4LWddcSxx3lP7YP8Al7C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|183.0|0.608|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|B-KrSBCPkwx4Xu2PIQ8fsmarjA2V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.54|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/app8020308|B-RF8Q7NK75ybvaTnmpip79Cv5nM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|149.0|0.5579999999999999|7.41|['SLG', 'ITO', 'PEDOT:PSS', 'PbI2', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PbI2']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.020|B-Xfhwaw2YI7jA5kzuz6rJ0UfQ7C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PbI2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|181.3|0.76|13.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c4ta03674c|B-cyBjeD08TAIbfnA1UUm3keMvDA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|B-eQSG6ssFxrbnLvW8Xf3RskGUkN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3|1.5100001610130236|1.018|208.5|0.5870000000000001|12.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C8TA05282D|B-qTn9QKoGoGlTEkpCZ0hY6b9vWH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|231.5|0.67|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO3', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201705875|B-qi4QzwGeXv7vgWkI9BhF0u6Rgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO3', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C93Cs7H480I249N171Pb100|Cs7Pb100C93N171H480I249Br51|Cs0.07FA0.78MA0.15PbBr0.51I2.49||1.12|227.1|0.72|18.21|['SLG', 'FTO', 'TiO2-c', 'Thiourea', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Thiourea']|bulk|https://doi.org/10.1021/acsaem.8b01508|B-zp5OuqiLOwqAROXBfbRJQZCH4p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Thiourea', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.51I2.49. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.5800001684772036|1.1|224.0|0.782|19.1|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|B05r35KjLLzsinz-WUcKAKSTs56y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|229.0|0.76|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta12407a|B0T_IzAxNVPOx7HHiDnCL6d8coAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|187.0|0.47|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.061|B0ctUDquYK9aVINZX7W_Es-T1lrn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|228.0|0.735|18.85|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|B0ufBJubR6gtizlPeRNFemsvHMKL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.0|0.649|12.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.03.002|B0yg5iem0GLjrsktaZfrAvjQdzRg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.3|0.76|16.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|B10tMVyLzlXbql6QBrDfUJhfU78G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.732|130.7|0.401|4.9|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|B13GstaE0NwXhgDjVuhXSvRUUR0f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.11|151.6|0.581|9.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|B16U5_fmKoarYCJVpzKjYqVa-uvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|221.2|0.74|18.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|B1Dn3Mmp6j9-Vq0wHpb_WYkw-XxB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|196.0|0.55|11.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4992783|B1OLmL-Zuq26DTrQbGsnZwz9vzV5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.1|222.0|0.7709999999999999|18.83|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|B1RC60P61RBVa7ZxayQZDj5kaZbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|192.0|0.68|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|B1RsU_f52_ehG2wfzj9-MU7PI0Am|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|184.4|0.63|11.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|B1m_uiQCTRcj9g5aJ6cpVGMWbwyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.942|174.8|0.4629999999999999|7.62|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|B1ofLMVlToO0Zk-ZFETHzBmFzhvH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|232.0|0.733|17.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201900068|B1phwfKaG3cq07cL0Usn0sKAq6wi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|245.0|0.76|18.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD:P3HT', 'Au']|['P3HT; Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07071|B1yNvcJE_ov3l3l_aUJSmFtZagZs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD:P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.119|183.0|0.74|15.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|B29E4WXLcOsC-BA2PmuGFZS56Kil|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||0.8370000000000001|168.96|0.527|7.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|B2A4Pw9ZyXppqDPeGpD_Q_KRLYZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.083|208.0|0.76|17.1|['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/advs.201700463|B2CdQ8wDnmNo1IJHZqDmivyn1cTu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.76|33.4|0.45|1.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|B2DyXABJPyqdIU2-iJaMEG_3xixc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.3|0.72|15.52|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|B2LCr4_njtFKPfcxIu-0573kGT8A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.07|230.3|0.758|18.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|B2Muk1fXTWxVptvpAHmiGX1oCWmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.6|0.81|20.71|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|B2O6Ic-fs69scOQ_nuIvs-dgovNI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|214.8|0.81|17.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|B2TxZsP25nPPBzDfK46U0OPZZMm7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.151|230.0|0.789|20.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|B2XFctmQT7VRGFD4Tz0I2WvW3Wjs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|217.5|0.789|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11936k|B2Y6mFDmAW4Srjkda33p3N-TqVVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|205.6|0.8|16.69|['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']|['PEDOT:PSS', 'Black phosphorous QDs']|['PCBM-60', 'ZrAcac']|bulk|https://doi.org/10.1021/acs.jpclett.6b02843|B2YwytnBsipdYxuK6IUTGjdxZiry|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.07|204.0|0.66|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'NaYF4-np', 'Au']|['Spiro-MeOTAD', 'NaYF4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr08432k|B2b-F9obHNX1xiCRmf_p4aWDIDun|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'NaYF4-np', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|193.6|0.5379999999999999|9.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|B2dGH3Wxf_HWxiTgOtXL1IzwpUnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||192.0||7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsnano.5b03265|B2e2kSO73apMhwmblAigm8NIdyyf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.8|0.737|16.79|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']|['NiO']|['PCBM-60', 'PEOz']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|B2eij_jxyFOPxBh82ySzU0BpTVkb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100Cs5H517I83N183Pb100|Cs5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17PbBr0.17I0.83||0.9|216.2|0.61|11.92|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['BCP']|bulk|https://doi.org/10.1002/slct.201800804|B2j0N60zqbdJTE_x7659oZjVdaaL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.4|0.711|17.01|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|B2rJU98zqi1rkaV023YkFq7kSOmp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.1|217.0|0.66|15.8|['SLG', 'ITO', 'SnO2-np', 'PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBA']|bulk|https://doi.org/10.1002/adfm.201905883|B2rm6Nl3JuGBQrH4y6rrZDfPoWN2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.16|226.7|0.69|18.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|B2ypiH9-W-qC-3DwRmNlSLCp2Jp4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|177.0|0.55|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b03265|B32jvgnMeny647LG7_16g2fvx6d4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.99|193.4|0.54|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']|['Carbozole @ S14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|B36eTr4q2-dMqvELDkh5P5vZPd8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||1.09|176.0|0.741|14.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.scib.2019.09.022|B38l_I5i8c6Cq2-7yXzr930Fb0di|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.1|0.53|10.18|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-np; TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|B3B8De-ogCa7nx7xM5zfLyQX-jz7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|232.9|0.72|18.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800149|B3Eo5B556KkUxaYciCVPB-ykKhu9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||0.94|185.8|0.59|10.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201705545|B3H3Mu6eZgCQfPtYp77Spykmg3cQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|152.0|0.502|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|B3JnjtTB19jAkyWgYXxQMNsMrM71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.072|188.94|0.68|13.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['NiO-mp', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.047|B3OtWIri0dXUoCX83WOylyNDQPVv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|127.0|0.67|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|B3P99lor6ftiS2yYUmKf5GaRKpiP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.7909999999999999|18.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|B3PyxplikWgvIbppX9zPjkt5lX3e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb49Zn|ZnPb49C50N50H300I150|MAPb0.98Zn0.02I3||1.02|194.0|0.667|13.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.047|B3RI08KE1ABozZlPVmxO2hFqJnvb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.98Zn0.02I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.01|4.0|0.6|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|B3W6OEWQE_wLyNq3hJpmwFx8ALfo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|130.0|0.57|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|B3nomwYF5DY5yRvFUXA8J9LtTHsN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|212.3|0.3339999999999999|6.85|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|B3sVoGWjEV_b-92LbbXz007iL1fh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|193.7|0.67|13.73|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz500113x|B3xAPYlJDaygARqTsmJ2ld4ygP5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.111|198.6|0.6970000000000001|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|B3y6geEbfLfBmSKHAC3ojT9x1cTC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|89.0|0.7|5.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|B4AlWx-c7muF4Mba4wrSBhkv4hWH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|206.0|0.768|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|B4DhlKeU_wbQwG0cJtLIlxAInWgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.4|0.747|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|B4g0JMi-Rgj07Fki7H7DfAoXP3EF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||0.61|39.0|0.418|1.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|B4i-6SCZJrxflG8udoC6fgvB2QP7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|52.0|0.7040000000000001|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1186/1556-276X-7-353|B50MhqwHALry5316rB6EMiqGHj7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -C5H28I20N7Pb5|Pb5C5N7H28I20|FA0.4MA0.6PbI4||0.975|208.7|0.7|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|B5LTL7fPjrZSsf9w8fIfoRR78vOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI4. -Br45C88Cs10H453I255N163Pb100|Cs10Pb100C88N163H453I255Br45|Cs0.1FA0.75MA0.13PbBr0.45I2.55||1.112|225.0|0.7490000000000001|18.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b01863|B5Oca-FEibodeICnDVJDzsq3asMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.13PbBr0.45I2.55. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.15|235.0|0.75|20.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900053|B5ZTmEH33n7KvNUYRfcRwQi-36Le|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2700002420526912|1.462|15.5|0.62|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701433|B5bQaS1HbpeiCKPw7-fdXd4lKKDh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|27.200000000000003|0.32|0.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl501838y|B5bSKSpbpdMVtyuw2L3XHaWpf-r8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|141.0|0.65|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01258-4|B5btKmHN5JAt6ZFhQwV4P3DqB0dH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|123.0|0.42|3.14|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2014.12.015|B5lqSpZojbwfQICkInHbFsN0wUmg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br57C95Cs5H489I243N176Pb100|Cs5Pb100C95N176H489I243Br57|Cs0.05FA0.81MA0.14PbBr0.57I2.43||1.11|224.8|0.685|17.09|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06190|B5n_kjdXHpCvgKXwCxG6hvIHtwgY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.57I2.43. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.65|10.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs', 'Spiro-MeOTAD', 'Ag']|['P3HT; SWCNTs', 'Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|B5pTKuIkcz_WpeUWh5Mb9a31gjmc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.797|16.759999999999998|0.287|0.38|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|B6EsEYVfAsGuf6HsxlSTaFwFG2lA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.9|166.70000000000002|0.371|5.57|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Au']|['none']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8tc00385h|B6WJ7fJdi1AE74XwNAg3huXYGjGf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C83Cs17H415I120N166Pb100|Cs17Pb100C83N166H415I120Br180|Cs0.17FA0.83PbBr1.8I1.2|1.930000205798103|1.286|147.0|0.7040000000000001|13.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|B6f79C2d8sR-T2QXTKiNsC1SkaAS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.8I1.2. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55||1.103|233.0|0.759|19.48|['SLG', 'FTO', 'ETM', 'Perovskite', 'HTM', 'Metal']|['HTM']|['ETM']|bulk|https://doi.org/10.1021/acsenergylett.7b00981|B6sY6mbQRDLjaipUI8I32B9JAD56|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ETM', 'Perovskite', 'HTM', 'Metal']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|212.1|0.72|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|B6z5bPYIDvjTLdu__5gXfWeeoaVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|229.7|0.8|16.72|['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201701586|B782G2ydj8qLsyppPuVfYGGj6ioB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.0|0.55|11.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta06177f|B78yDz76DfqLJmwt_Ggg30gjajai|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|151.9|0.61|9.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|B7N2sY7McuZRJee5VS5hOXA9FkOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.0|0.61|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201600581|B7SJYrCH58_dGfztzl3ZYwD8awEt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|84.0|0.59|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|B7Z5uH7uCKnTibfR9dLuBmFY2HFe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604|0.95|201.5|0.6729999999999999|13.33|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|B7ih5o6t937LewUbVrJBI1VXbvqt|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.2|0.62|13.79|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)"", 'Au']"|"[""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|B7ySmYFA9lg-LIGvpsnL-Eg30xYn|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.0|0.59|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ni']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00788|B88cJS_u7mtqY1yHRicRwzB1LqlL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.6|0.735|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c6nr04741f|B8FhPt_OnBcQeDfvFtVZKNLKF5dm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|160.10000000000002|0.59|9.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|B8GJs9e4OPrCzfnkAX90pjL_7Cy2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|203.1|0.752|13.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|B8HrH6Pyg3j76vX2OxBe33RFF0MV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.07|222.5|0.7759999999999999|18.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|B8ONKSYavBafZRQC73ykcaxZbG8F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.015|152.0|0.635|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|B8eYAx90_T-ioJZ2o04-SlwSBeHE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|215.97000000000003|0.67|14.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|B8k0U0YUfw4UmzOMT-KwLHw33y88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H48I24N8Pb5Sn3|Pb5Sn3C8N8H48I24|MAPb0.625Sn0.375I3|1.2500001332889268|0.69|244.0|0.645|10.87|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|B8wvcGoQYfFqz_qZThZHWjdv3GSz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.625Sn0.375I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|179.7|0.68|9.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/ja5125594|B9_ZUlpsC6txlUEF8z03nhYVylDT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|220.2|0.66|13.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NaYF2@SiO2-np', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'NaYF2@SiO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06606|B9eKmEtIyAkeaJrfdgz_p-1oImAZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NaYF2@SiO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8029999999999999|94.0|0.49|3.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|B9lzTIcpiTOZb-MXyinRaQOiSdl1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.0590000000000002|222.5|0.768|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|B9mA2-K9bWJOXiyfm8Z8cr01xnb_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|185.93|0.6970000000000001|12.75|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|B9odh7Mj99d7frYmPOgdynPlBB6c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|186.0|0.74|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b00447|B9xGXQGR4kDCoHr6MnAr4cYok46I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|192.0|0.667|13.63|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.014|BA-yIp83kfeI0jEmSy_qPfZmGsiI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.78|79.7|0.4479999999999999|2.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201501425|BA0JVaYoYRg6zb4ZCu4WgUq-vANj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.3|0.66|14.3|['Textile', 'PEN', 'ITO', 'Au', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'SnO2-c', 'ITO', 'PEN']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10321b|BA2wQH1EMRcUSe6S46ghGN2CI8tn|a perovskite solar cell with the following device stack: ['Textile', 'PEN', 'ITO', 'Au', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'SnO2-c', 'ITO', 'PEN']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']|['JY6']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|BA6hlEvMaBLzfLcgDFZMY7Di2nY6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9||0.98|173.0|0.6759999999999999|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3866/PKU.WHXB201607272|BAGnrswt6sq15JG1-mPtgd3Ikb2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.1I2.9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|219.6|0.626|15.12|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|BARLqvwBjLL8TyPzlKiyMrKd2Og6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.768|130.1|0.497|4.97|['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanocones']|bulk|https://doi.org/10.1039/c5ta08375c|BARpyrkqt_xoCFYHlL86mRsTrfZw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.09|215.0|0.71|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|BAST2rYU-YftqlgJzo_X8EID_XiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.09|244.7|0.743|19.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201901241|BAdLOmIsfxpXQD8an2CnFuV9pkNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|183.9|0.63|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.9b17552|BAqHFduCoYkaIZd9EJtXFXJj8VeR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C1085Cs15H4053I1300N542Pb400|Cs15Pb400C1085N542H4053I1300|BA2Cs0.15FA0.57MA2.28Pb4I13|1.5900001695435149|||||['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|BAv8FWNzpREbOn8EPGjNAmwH4E9y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15FA0.57MA2.28Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201605668|BAypmLIhKNYE9XJZxDjMcE6G0dKJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.8|0.763|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|BB6R98knJ7y4NvRKGtIotxJP-BaT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|86.57|0.312|2.64|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|BBEYKPZC64mkDemyZL3XAHEfahBq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|186.3|0.73|14.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01535|BBJrukrki3UyQN4EQ44aDCzfFPd-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|215.4|0.75|16.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|BBWFfv5aP0ZBSsOKanp1BpLlJMP7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.19|155.0|0.732|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|BBYUuZIoY3jHEwImKeehIH-BFzS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|148.0|0.54|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|BBbMg4sfX1Mb-AgEh4fzsxaV2Yjy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|189.0|0.6629999999999999|12.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|BBi3sWl92aR7uy_uyIjypqL3IYH9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.7|16.4|['SLG', 'FTO', 'Nb2O5', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', '(EMIM)PF6']|bulk|https://doi.org/10.1021/acsaem.8b00094|BBkSp3ORMPuovLkvPzaKODEcMq9s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.2|0.77|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|BBsP71_BM1qg6rnSlHARdfPbufv_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.582000168690466|0.865|180.94|0.542|10.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|BCEk4_nIBd1lZtpRONv5eldS0_BI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.86|226.0|0.659|12.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']|['CuInSe2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|BCJ1tlzbbPAx83PiHiiB5-vEcdQr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.0|0.74|16.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|BCKjVJ6i6azQa3R2TbIcIegtcwqy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|210.5|0.748|16.54|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PCBM-60', 'Al']|['NiCo2O4']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5079954|BCMgNktWKQG-5-bJqLLOywlaUX-y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.4|0.638|15.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|BCNT818eKRQAmJIbVp1eQK2Vma4t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.6|0.77|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']|['CuGaO2']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|BCOOm8Zc6iM2n80vWJ-hea6BOeBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|BC_JbXUa8v1R3z7UCopLUgU4yvE8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|187.3|0.67|11.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|BD53BJ0e565Q3PeqdYO4dMv9DHbo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br32C125H625I93N250Pb125|Pb125C125N250H625I93Br32|FAPbBr0.256I0.744|1.7000001812729404|1.077|178.9|0.634|12.22|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|BD5hyRWIXUKP2HimlYHrhDzRYH3m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.71|15.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|BDL9MMkC0mkhy3TGhRscYOTasyST|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|108.0|0.71|6.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|BDSCctSgi8XMCJbvckd8mDgcwxhH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|183.6|0.78|14.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1117/12.2187973|BDZ-llgFrMFLZclj-grR-MOT8n2l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.173|226.1|0.804|21.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104224|BDofLsN4HUB6wxf-MjRmNp7CmHjx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|219.5|0.757|18.3|['SLG', 'ITO', 'XY1', 'Perovskite', 'C60', 'BCP', 'Cu']|['XY1']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103946|BDuJtqyTsLnEKIjHhVphlac7XD-I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'XY1', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|197.3|0.635|13.2|['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1002/aenm.201701144|BDwA2A5uM5grqNYL7LGwD54OVthN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|186.0|0.8|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0se00460j|BDxEitJaTZY8_skDn3CyRU0QbVOU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.84|93.5|0.497|3.98|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|BDxqFyEolzRjjR6DQNOXwHLEU1XM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|169.0|0.565|9.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00220c|BE4SCkVWWxwzSS8XAYrHewT-4qhU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|231.8|0.66|13.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|BE4q4imqc87RfFaia4mXqyotgzjl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.1|0.6709999999999999|13.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|BEVpbZVZYwSXbFo_nhQDxfR7R_N9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2689999999999999|40.0|0.25|0.3|['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2015.03.016|BEYAlEEu7IOXdHvssbz0e__5rJbe|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.04|226.0|0.74|17.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|BEei_EOyCsOK4QYfjzdM1kbSwi3a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C34H129I60N23Sn20|Sn20C34N23H129I60|(PEA)0.1FA0.15MA0.75SnI3||0.431|131.0|0.68|3.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|BEjz-cuV4YonOYWUKCDdcY5AaCWq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7390000000000001|166.0|0.51|6.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/0957-4484/26/49/494002|BEm4YlKXrLpVX-4UZ11MLze_hOdq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|152.0|0.478|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|BEtydXA445LJxtI-TduHgrFrePJ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH54I27N9Pb10|CsPb10C9N9H54I27Br3|Cs0.1MA0.90PbBr0.3I2.70||0.93|226.0|0.648|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1429-3|BF3yn9vKOz7RcScEGb4Oo1Sb8rrl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.90PbBr0.3I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.893|158.3|0.56|8.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']|['rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02710a|BF7z__esB7cTh5WJgP9Dq7qlnACM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.95|114.0|0.38|4.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-9734-4|BF8kW55gXfjBmv8_Rran54Oui8uN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.83|201.1|0.626|10.12|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|BF9aXiWqCAbx3laHqVUW-66JL0Yj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|238.1|0.78|19.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chlorde', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|BFLvBXg5LreU-Xwipp84aUsHAI9A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|206.0|0.54|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; SWCNTs', 'PEDOT:PSS', 'Ni-grid']|['P3HT; SWCNTs', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-017-01842-4|BFNOyKtS33_xalrKIfW8Jp318QSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; SWCNTs', 'PEDOT:PSS', 'Ni-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|217.5|0.684|15.27|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc03259b|BFUEu_wU-okTsaM-Hs4jbVoeZ4zS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.155|189.7|0.6859999999999999|16.63|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|BFXL7v71WqbV_zDt0BQD2mSbxx2o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.025|210.8|0.68|14.8|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|BFZMIiUheX8HazusJO9gc_qiXpiA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.872|166.0|0.69|10.03|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|BFakcA6paxsVQ4j4FqhSrl-yRfJM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|177.0|0.63|10.2|['SLG', 'ITO', 'TRUX1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['TRUX1']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b05484|BFnAugAVi1nSV1zYXGdtjdEJOxAZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TRUX1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|175.2|0.47|6.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|BFsUzvneHvwibdBLKpG7Rmcqy7tT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.81|179.4|0.68|9.88|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1039/c8ce01337c|BFuJ-7cT2Mh4KYcsyHqZOCQ-EIz8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.033|230.9|0.7659999999999999|18.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'V1160', 'Au']|['V1160']|['TiO2-c', 'TiO2-mp', 'SnO2']|bulk|https://doi.org/10.1002/solr.201900224|BFxLoB11fRLJRIOE4bd3YZmMtjlv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'V1160', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201503099|BGBeQ2iacd_8awvL3ha6-SmTVlHW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.0|0.57|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta03710d|BGEwPsc7WzAtS9sm9BoUwOppWFM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|BGRMEUx18UZnIK-ysbD1d8CueYMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|BGRQheqOSvH8SClzsWAS1M4NBE23|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|224.2|0.584|12.31|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|BGSlm_X6SHQ6ppUVzSUpxrOyJUaB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|220.2|0.764|18.29|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|BGZwEhg2qavjaEY_TGsQiSeKOBEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|187.2|0.65|11.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5ta02730f|BG_vQnXWBCz2Y5-q5uW-XLm9Sdxs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|217.0|0.579|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.017|BGcLPFGXmMuV9uRfftWC6oJyuuq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01508|BH1x1Z0xVqBEYhK-iHShhNYDMWBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.063|193.8|0.606|12.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|BHAGhyJ3RBVKuuLEOLC-kKIX4lwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|240.0|0.727|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|BHI-i8hdOU_RceD_WR5knlt1zQqc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.028|194.0|0.6409999999999999|12.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|BHP4094jouAaKMhgUeza5UL09CsA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|228.0|0.77|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b15870|BHWQ3mSrEcLXig0RZReSG8JNI1cJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|192.0|0.6890000000000001|13.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|BHcQOpm6fIzaQQqXmHqRoERTX5Ue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.0|0.78|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4960698|BHeD4WeimmHEV66Y8h42uhokDdlK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|183.0|0.77|14.6|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.008|BHjECzckrgermxU7AEpnEiZLm1wA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|238.2|0.654|15.95|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|BHlbAsw6NoFHvG_AHjGbYCc868tr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br50C95Cs5H491I250N174Pb25Sn75|Cs5Pb25Sn75C95N174H491I250Br50|Cs0.05FA0.79MA0.16Pb0.25Sn0.75Br0.5I2.5|1.3000001386204838||||11.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|BHr23QAfH4sma41U8K95EHP0SGU4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.25Sn0.75Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.0|0.742|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|BI4rbmTADKS7TJsE_MLUMM6cBg5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|204.0|0.8|18.1|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']|['NiO-c', 'DEA']|['C60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201602333|BIBMSJlIwzGSc-0HOFLvrXybKegb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCs4H6I15NPb5|Cs4Pb5CNH6I15|Cs0.8MA0.2PbI3||0.91|30.0|0.66|1.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|BIMwy0o70eZPUaotTBRr_Zx3qHou|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.8MA0.2PbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|1.022|195.0|0.73|14.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|BIQHeho_FiP5tKsvFNe__Jfz-L7x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|72.0|0.76|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|BIfZtPcGIkp-onfpyMv9U85wwZR9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.62|48.3|0.7|1.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|BIkJR9ZIxlOW7pHhYsoJRkvtL8P4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.84|189.0|0.606|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|BIo--IAQfp325a2aWTnTcqIl--la|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.02|190.0|0.67|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|BIpm1aoswjXWbzb2ZL9_vU4NA96_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|173.0|0.53|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.045|BIsAlqgy7t1L110j6Yza-tYOBF4W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.125|195.2|0.62|13.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|BIzfUBr9hl3PdOtv45S1q8ch6kvT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.8|0.54|12.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201804637|BJBdeCYRNUlnNnVXx3-YifxZXz13|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|227.8|0.64|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|BJBeJUVPsZfje0arW6wKBz_S94eF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.7|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|BJDQ-5EXcE3KSsyES8h-r0QyEXRc|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|200.4|0.723|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|BJI_9mois0FLi52VHYc0O9XzR8cO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.09|237.0|0.8|19.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1038/s41560-018-0220-2|BJP3_sxv8EK5JVNGUcOEnSNi4xr1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -Br57C95Cs5H489I243N176Pb100|Cs5Pb100C95N176H489I243Br57|Cs0.05FA0.81MA0.14PbBr0.57I2.43||1.11|224.8|0.685|17.09|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06190|BJiFNSGA6uFmFIuZzg5QG7SGBXOZ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.57I2.43. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|202.84|0.73|15.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|BJk7dSpfvQhyMqYWqGcK2kEM4bv9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.98|230.2|0.76|17.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|BJo4BRUFpyBYzW_a3F7p_SpoSmnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.0|222.0|0.615|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-1', 'Au']|['TBC-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|BJr_orxOQF7IDW4QK3SeRKYaS8PP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.16|240.2|0.8290000000000001|23.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|BJyks__WcHW7JCnHGwr1XLOnj6wK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.5|0.758|17.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|BK2H6MxMrJey61imkjJBaNFioHFW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C10H60I13N10Pb10|Pb10C10N10H60I13Br17|MAPbBr1.7I1.3|1.9400002068644144|1.14|90.0|0.57|5.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.020|BK5vP1kJ9h0N1fw3VmAv8EbPfAs5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr1.7I1.3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.948|120.4|0.557|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']|['Montmorillonite', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1002/cphc.201500163|BK8X8EyCvje2NChLJcg1ZIpxP79x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C36H101I52N23Pb16|Pb16C36N23H101I52|(3AMP)FA0.75MA2.25Pb4I13||0.95|5.4|0.63|0.32|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|BKMvVh9-ir8tZ89zhwYmFTwH77sV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.75MA2.25Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.38|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|BKNgEiZKz1AlBAHFPlCwmsWRKdoW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||4.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|BKSJD6NBJp9WbxHXTg122hGtSVlo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.5719999999999998|76.8|0.76|9.15|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|BKgemixb2USwyoFewFGKPby14d3K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.8|0.6659999999999999|14.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ra01186b|BKkSIBrZ7JnA_D-EMjmXXxKZZsiy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.08|223.7|0.603|14.68|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|BLHq2SGfBSQX2tc0pG4pbKGvK5UX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.095|226.5|0.769|19.05|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|BLLfqnrMIgOVrPeD677NK0e-5Rem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.032|206.8|0.7090000000000001|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra05323a|BLNjlotFlzS0DBOr5lLFW8cuplZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.008|226.48|0.7170000000000001|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|BLcvyxtvmL9FerSzpR4_sUYcrjmA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.01|215.5|0.721|15.75|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|BLdf70x3fNBu2IU7AWZ4qMnnb_zI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|204.31|0.613|11.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|BLhl7bASwC63Qz2fpXQvlV89FKKj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|214.4|0.76|17.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|BLrQs_qzOTxdOO_GLdYFOTlE5rzh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.97|117.2|0.62|7.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.solmat.2018.05.002|BM0n8yRNxqJ3iC3yg3L-pXaAf5iT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3||1.11|185.0|0.696|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.013|BMC8va4DJfYszzFQbpjyPyGYO3jg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.41|4.1|0.6|2.08|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|BMD6dhYg9oIIo8dQ4SJeuEZnR3K6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|229.8|0.63|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|BMGZY2DB67YRvPYgQFsl3z46-TcZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|209.8|0.73|15.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'SAF‐OMe', 'Ag']|['SAF‐OMe']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201504245|BMX_T1pnx2B0Q9gajDR2HgGHImFA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'SAF‐OMe', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.03|193.7|0.67|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|BMbQFTsHQT3EQnRN-C55LlQwqIXX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C25H150I75N32Pb25|Pb25C25N32H150I75|GU0.14MA0.86PbI3||1.07|228.0|0.79|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|BMbRBJs2SuYrAYKft0YznOYjlEfY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.14MA0.86PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|113.0|0.32|1.5|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|BMlRv1dqod6P8f7YEjOeGQLi1QNY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.486|190.0|0.43|4.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|BMpVlb0LEx1lHN9mKox9Z1So3ZJ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|202.0|0.6890000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1016/j.chempr.2016.10.002|BMvSxjl0HaqAGXnnv0Wpp_uJ6a2l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|167.0|0.77|13.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|BMyPVfqmhO6gp5crCUcbAsieSTZn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|213.6|0.723|16.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06879k|BN6uSmLtfjhAyGWb_5nDqPXw5ve-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.4|0.5|10.47|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|BNC1XGPIamdWpa8BiqSCAAUNoj6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|126.0|0.55|6.0|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|BND4sttse_73vy1asUGMTN_85Ysu|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H102I57N38Pb20|Pb20C20N38H102I57Br3|FA0.9MA0.1PbBr0.15I2.85||1.09|203.6|0.73|16.2|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05776e|BNYLssEkBLyBJMEPHsjgNJy_5zmA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.15I2.85. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|0.99|229.4|0.679|15.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|BNoYbSOOG0uP1Hm_97DadS4XjzJ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.7|0.74|15.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|BNycvI0XEvNHZ-g6ZrXpdsirWbek|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.946|163.1|0.653|10.08|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.electacta.2018.02.103|BO62wwPAg33KXlJDnbjMaNzhVH6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.9|0.57|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|BO6UKWVRvwzR_N__R1wTmpaSaEAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H56I27N14Pb10|Pb10C10N14H56I27Br3|FA0.4MA0.6PbBr0.3I2.7||0.964|159.0|0.66|10.21|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|BOJYZi8crJJv8XydQQ-eIt6BHzG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.7|0.74|18.78|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|BOOmPy4xBk-ZfVPeicfJGsv5PDfm|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.55|61.900000000000006|0.72|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']|['[BMMIm]Cl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20831|BO_m7Lc4KkBk0J51BOcyGCnjPmJz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.6|0.74|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|BOcX27SH14Z-0b0ks7mGwar8G4eT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||9.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|BOgZwqDi8cMFz8h41xYFT3orzHwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.1|0.701|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|BOhv_-8hwz2RqBV8jxbG49MVm2Cz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C37Cs3H154I60N20Pb20|Cs3Pb20C37N20H154I60|Cs0.15(DMA)0.85MA0.15PbI3|1.670000178074006|1.05|194.0|0.75|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b02272|BOlo_V_4hOlS70udBJnNn2BRPSpW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15(DMA)0.85MA0.15PbI3. -Br10C18Cs2H93I50N33Pb15Sn5|Cs2Pb15Sn5C18N33H93I50Br10|Cs0.1FA0.75MA0.15Pb0.75Sn0.25Br0.5I2.5|1.3600001450183523||||15.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|BOnzPqYm4jKTYpoTfpDtegSvdI_n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Pb0.75Sn0.25Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.078|209.8|0.74|13.82|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808119|BOpBT_NAz_KUp8I1Cb2sG7zNm0bq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.0|0.629|12.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|BOpPGCYejOyPEdAzrSHpP3eEQW0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.974|196.0|0.742|14.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|BOpmCE5tvEH1_n2Stro6CyPyP1t-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|230.4|0.769|20.08|['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|BOpnAUwUGXxL1FtyPvc5hxwWdrM0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|142.0|0.604|7.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|BOvYiQXl93tz87Bg25hu2JXXUUuA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|190.6|0.7|10.47|['SLG', 'ITO', 'H7', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['H7']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b10070|BP0mthfwZ3QFCV9ZN9Hx9mBiEWpc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H7', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||1.17|224.5|0.75|19.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900466|BP1F4OTZYVneaqIsFp49BnsGZ6J3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||1.149|224.1|0.7709999999999999|19.85|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/anie.201905624|BPF6ysyPVd8QaUPRvbJr4THlJIwy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.92|165.0|0.56|8.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|BPZya-vkj9rrin-mWVfs68snhPli|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.73|152.0|0.43|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|BPlyPMYUWkmdtvxWx7a2xq6GHH-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.58|119.9|0.774|14.69||['MoOx', 'Ag/TeO2']|['ITO', 'TiO2']|not processed|https://doi.org/10.1109/JPHOT.2021.3067703|BQ9SyWv812bwWEbVD6OLbkIGuBAb|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.022|160.0|0.73|11.9|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|BQXsBq8mDPwig3mR-KLt-8G7m-uX|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.098|201.6|0.7170000000000001|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|BQ_12Wt-AEhn6nQMzg8pfvGJTHPm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|198.5|0.568|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00110c|BQdps5PKi50M-RqppX79EIRO690V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20Ge2H105I60N35Sn18|Sn18Ge2C20N35H105I60|FA0.75MA0.25Ge0.1Sn0.9I3|1.4200001514162208|0.33|132.7|0.49|2.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b00275|BQhF7cvScg6L8g_BqCvpvcuhT9zq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Ge0.1Sn0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|219.8|0.75|14.52|['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['CuAlO2', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|BQhsLZLvk-p0IfnwoKcgO4_l6_md|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|222.4|0.752|17.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC01', 'Ag']|['YC01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|BQmTan9vEenTsdGMyn_r2zOPy8RG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC01', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|223.0|0.7240000000000001|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2018.10.020|BQynYCbe4M5nZ5EbjTJcyF8hWOjH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|208.0|0.66|11.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201801541|BR1iC41VpiEN1HNeTBYoCiehXGqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.0|0.72|15.3|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PBT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|BR6-5QabIyc4WCIgMpKBtQgFXC7u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|167.0|0.7040000000000001|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|BR7Gz2LYn_8yF4L7M9axf-eJ2A6V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|228.0|0.76|17.1|['PET', 'ITO', 'SnO2-c', 'Al2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-np']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|BRAQiAe2doTXVZs2WwbUge_pyesH|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Al2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.2|72.30000000000001|0.42|4.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.3390/coatings6040053|BRNZJhDt4XJ_BkJb28xNIm8ai9jL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|219.0|0.765|16.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|BRRajLImYOI30UJc6aj-OJy3Ajfr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.159|232.0|0.78|20.97|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16341|BR_0CE7NkRIpXtzuEeGO1yvffI8q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|210.0|0.7120000000000001|14.18|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|BReQH6EpmVMYubxdWOkRHc8tCHWN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.123|132.7|0.685|10.21|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9486-0|BRhoGnW2t5LbagNuypeFFbMy2qBl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.13|224.0|0.78|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.06.050|BRlR2u_fA1Wz2e2XpAXJxlOYVD9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.07|229.4|0.71|17.51|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b09238|BRnyzMa-waVrXgRF4GpLdYoUnfMp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.568|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|BRo3lAUeLAZ4FhjUkyVga8Rszifj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.144|222.0|0.784|19.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|BS-VxUtOlev5iuOPhlkA3qbgs5fG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00358j|BSATQhh_5QcyJtmogXUAeVHzbXeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|226.0|0.775|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01931a|BSQN7-mPt2LbUTPuA_IhzkQPZW0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.8|102.7|0.546|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|BSYvVErH6V7QQPx7i_mjwW5tEzdT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.11|235.5|0.71|18.56|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9cc00016j|BSbJOWOF_Kd2wxjr_Fy7_bpwKMlw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|226.8|0.78|20.03|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2', 'SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/advs.201800130|BSsiWtz5KrtsL733M-yns4mc3Nf0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.778|17.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|BSxGv0g_ffymqZhVfTXiz-IurxwL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|158.0|0.52|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|BT4nrQL-Fi0YZRMblxljq5k-VEPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|220.0|0.77|19.31|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|BTCWoGVA9gMlcfSDclV5uqMDtaBs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|222.7|0.7559999999999999|17.17|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|BTFBwlid6AKKTF5f7HBSTYGRVyuC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.99|223.1|0.68|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|BTe-Vn0mog5v9UhE2vOxbvFi_fsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.1|||13.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000001|BTicFCzS4bZVA7PGZc5DU55zWN5E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.918|178.04000000000002|0.578|9.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|BTm18wLxXdft6Avjkr0K1sXtpRy-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|BTrSF1TXiwYe7XCSvS1TCP59tbfR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr3I. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.079|229.7|0.764|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3']|bulk|https://doi.org/10.1016/j.orgel.2019.105426|BTxOIFUIsmS9zayuAfsDDoMfRC5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.102|206.5|0.746|16.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|BUAhAnLQ9rjH-R8Qqp_tFhC1fcEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.5|0.6859999999999999|13.07|['SLG', 'AZO', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|BUGbmEgd2KHkncr2R-03de2FL3ad|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|230.0|0.73|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|BUKD-mbyFOj3BWEPF_m-0qF7FWty|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01776b|BUKvavvjXxgPUFP0IDJqyc6zNYM5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||0.92|175.10000000000002|0.61|9.81|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201902629|BUMEM9Fs1lEaL2cZTsQA06E1B9zA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|222.0|0.49|10.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|BUOM7yojsklsE2HXOFBhZru7bFy0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|179.0|0.7440000000000001|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4ee01216j|BUSrKsjEprfMh3XE8Y2bZ-cKYYYp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|231.1|0.78|18.56|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|BUXrN37cLQ-tnVm7xeBfI_bgxj-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.955|210.0|0.525|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|BUZQjCHzffyGjEWC11r8yJJl4E3K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|214.0|0.78|17.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01179|BUaQF9soAE3mTuL8wRBnk8_se61J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8540000000000001|190.7|0.62|10.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nj04448h|BUn69PwqmWVp3d8f6yYNRSxZQ79R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.0|0.7|16.1|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|BV0jWihy5SOwHvfVsoXYShfir4hF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|137.0|0.583|6.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974796|BV4Pcrvz-hvdoM122CSpPXdvrmII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|129.0|0.74|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|BV89QE-1tgZmgRkhWjcEWEAN7-TY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|180.0|0.6|10.2|['SLG', 'ITO', 'NiO', 'BrBA', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO', 'Br-BA']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2861752|BVMSHUFajMRhTURCSdW6d8zcGHvT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'BrBA', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|219.9|0.79|18.16|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP4', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-DPP4', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02766h|BVPCknuo9l1pe9M0xmk2K84ScT0c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP4', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||0.993|204.8|0.6679999999999999|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag@SnO2-nw', 'Spiro-MeOTAD', 'Au']|['Au@SiO2-nw', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700151|BVVj1esrREvmBMeN1bGVcRbDiiXW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag@SnO2-nw', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|206.0|0.64|12.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201901601|BVYchKkRa78JDNPUkOC02fhSj64y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|174.4|0.77|11.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta01343g|BV_xKaw0wAeshP39Z2nG6pC-LIIS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|110.2|0.728|7.52|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|BVjb_DBqi1aO8VSKJTmA1ZqvWnkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.3|0.516|10.28|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.03.027|BVlpVSSJtah0Z826gpk0-IJRP6Km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.48|204.0|0.69|6.79|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|BWOXkyo8FZP3G4RyHRcIGq_PEwIM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.743|40.2|0.56|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|BWexj4sg6zF9pYnw5yHNblzcyTwQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.62|172.0|0.61|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c8ta03054e|BWuybUPswkvzR6-ZrU6YNv-Mqc24|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|140.1|0.46|5.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.010|BX35VfSXsHIJ5W40lnqQDic8LMio|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.30FA0.70PbI3|1.5800001684772036|1.01|207.1|0.758|15.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.8b05555|BXGK5l5eEUKk1BtmfolZkq0-OBKt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.30FA0.70PbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.11|227.0|0.7979999999999999|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705763|BXICYosyUjNW3X8Pzw2P3IQohbsK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|197.0|0.7879999999999999|17.2|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'MoO3', 'Au']|['TaTm']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.8b00193|BXaHmqUIR_1ZL7RGP0ktDOt3b5Ao|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|223.1|0.688|16.06|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135281|BXdzl_1BhIw9uMn3NHsFLVcDDwnK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|76.0|0.5|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|BXgWhaqe6xU5WQhIjwXjpbTak6Mz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|139.5|0.6|8.39|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|BXrJbpQUr03KMLBJs0qUWuctLGvK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.6620001772209572|1.09|198.6|0.637|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|BXsmGPPxKuzmKx8eoxsb3Lw39Uda|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.6I2.4. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.02|210.0|0.75|16.0|['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|BY0Bot65mtPNvNhj7sHnOeVGxJy7|a perovskite solar cell with the following device stack: ['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|176.29999999999998|0.77|9.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.143|BY8Lrs-9zR6dg1baLpwoXiI8jZFP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|158.7|0.6970000000000001|10.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b01933|BYHRzZXX5POaKO9_ZBIQ1cQlXlo1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|142.10000000000002|0.736|13.01|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-019-2936-8|BYOsKXX1W1ZgmKB2QCrEPMBHn5-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|137.0|0.56|8.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b16394|BYPPs2zpkL5CBSQcgEVqYJDAvFPT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|217.3|0.71|14.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|BYT9YuuenjjtgQRtLDqyn7iG7XBc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.9|0.302|6.1|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsomega.6b00465|BYVA3dWv_jUzJpeDG3cZWYsccWHX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|191.0|0.77|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|BYYcmv3c_nnTh-LEH4glooR2acC3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.01|211.3|0.605|12.97|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', '4-dimethoxybenzoic acid']|bulk|https://doi.org/10.1039/c9ta11744j|BYr4T0ISni4nSZcZgiSo2fuaIKdR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|224.9|0.61|12.89|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|BYuGxhBC0urE7hvxhH9kJtdd18Ls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|116.4|0.594|7.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|BYxqOYvpsBjlmpbUs4DT-tHqu-44|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|BZ1N3CWhZl9j85nRMgEJ6IE3KRBa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.0|0.68|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2019.116178|BZ8QL7t2Cq3aRN2TqAsxnAw-nw86|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C36F4H68I13N8Pb4|Pb4C36N8H68I13F4|(pF1PEA)2MA4Pb4I13|1.6000001706098266|0.688|138.0|0.534|5.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|BZAANlhQWHaKlhdN4ffZsw2HXRX8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (pF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|115.0|0.54|4.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|BZEXPN5-wCaSl073RNwZUFcMfUnp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3||0.981|188.7|0.6609999999999999|12.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|BZJusw1dRDuNUzc8eF6cUGyOlyqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.5|0.77|18.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b19330|BZKTULnS901Zfv-L3fOSFlNj-3Lb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.085|216.9|0.71|17.11|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|BZbcnwI5FHoo8V3qa0X3Tli-uzqr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|210.1|0.72|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc05410c|BZk9wgbNdnKH3jsmROZ_PI5--_EY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|200.0|0.579|8.5|['SLG', 'ITO', 'HTM-1 (bifluorenylidene-based)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['HTM-1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.008|BZnCXBDfVJNislBLEGuScPB6JDxQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'HTM-1 (bifluorenylidene-based)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|153.0|0.53|7.6|['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['rGO', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.10.013|BZvbntSdvmYoVxy9UY16eqDSADgE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|BZykU0lmBkGKSGMBohxTzNLG0QUG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C17Cs3H85I55N34Pb20|Cs3Pb20C17N34H85I55Br5|Cs0.15FA0.85PbBr0.25I2.75||0.88|223.0|0.595|11.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1021/acsaem.9b00452|B_2P8Qg-fW1ZI4BYKY9XjxXdPZkw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.25I2.75. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||11.4|['SLG', 'FTO', 'BaCoF4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BaCoF4']|bulk|https://doi.org/10.1021/acs.jpcc.9b04502|B_4s3SMBBfX6hEZ2dcaFolyUlUoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaCoF4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.99|239.0|0.68|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep35994|B_AAneFlSr7PVUuoScXdtySYCKH_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.085|192.0|0.77|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1088/1361-6463/aaa7cd|B_D62LhJ9O8iviYdNtyIKcwocmPB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|135.0|0.5329999999999999|7.2|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|B_HDo-toGBJ2xXve3v-z-pONIXEu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|127.5|0.69|9.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|B_XSUZcJrDutt5eVKbwPI3PRUqcw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||183.6||9.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|B__TSfsNeLoAflKvls5Rt2PfxhhN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.98|203.0|0.76|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|B_abnIP9NrXfRexmhsHAyMn7Vo9q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|201.4|0.7|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|B_dfHJmi0FDTcoejJl1wMM4RKNGo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.083|207.0|0.66|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|B_m8MODg_0bKkKxomdrXS8jaj4CT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|203.1|0.693|13.63|['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx', 'Cu phtalocyanine']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|B_mJ0aHn_5YlQpLrAhLZWcvWEjqx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.0|0.779|17.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00438f|B_vJqFsDuoQ5zw86umYiyKPvoN7T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.5|0.674|14.57|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta00816g|Ba5GmA3LY1KJE3iftzRikyKwSFVr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.6|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00059j|BaRH9EIxA7MuNDOrDGDJZ29p2SzY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.6|0.725|16.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|Bacp4aWI1hVigH7KmbiUQzQ_WXLK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|251.4|0.8059999999999999|23.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|BalBbmxHR6GSqr4-XeAsR5fmvF2h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.87|196.0|0.44|7.5|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|Baygs_lfG3d43mJWxXD8EeJ5OXRd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.61|117.0|0.3|2.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|BazrtK-4jgk_syfNi3jV-u9x7kNG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.07.081|Bb-5WE_A9a9Syz6m4xuaA8sKTurT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|225.3|0.674|13.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PcM-Cou', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PcM-Cou']|bulk|https://doi.org/10.1016/j.synthmet.2016.06.003|BbbPdMi4W5IBHgRuvsvElCJmSC1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PcM-Cou', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|135.0|0.45|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|BbfOao_VAREau6WHQbWcleiHXdJb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br72C75Cs25H390I228N135Pb100|Cs25Pb100C75N135H390I228Br72|Cs0.25FA0.6MA0.15PbBr0.72I2.28|1.7200001834055632|1.12|179.0|0.764|15.3||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|BbkNFi0nc6YOSxswKoUzK6LuzeYy|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.6MA0.15PbBr0.72I2.28. -AgBi2I7|AgBi2I7|AgBi2I7||0.49|68.0|0.63|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700634|BbniOqYQh5LxS4dZxOdOsQhgmJ2Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|103.4|0.445|3.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cabon', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.10.015|BbsnNHUhYLm2Z6J9m3ifP0-grbki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cabon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|228.0|0.75|18.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201704181|Bbwpodv3qiRc4PPUjB1eWL76JJk0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|194.0|0.71|12.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201400355|Bbx7r66bEz1B_muFGSan4DPigglq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||1.063|243.9|0.7490000000000001|19.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|Bc1gGC5EjF61wKavFCb5zJzuq3n8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.93|202.9|0.7170000000000001|13.65|['SLG', 'ITO', 'WS2', 'Perovskite', 'C60', 'BCP', 'Al']|['WS2']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06403|BcERUxb99iW842jV_MfrcLnKPpvo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WS2', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.1|0.777|17.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|BcGUAL63JnjzsceY1UaDBOgJLtdI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|0.98|225.0|0.76|16.2|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|BcKXTrwn_SUp8Y1R7hvRTmsSp3wG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|230.0|0.75|17.25|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|BcTh7ycycHTENcJTAl_PhmGeTjT1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|197.0|0.71|12.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/0268-1242/31/2/025009|BcfM-jn6cc70A5Uzpbs1VFe3ghQI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|221.0|0.775|17.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901620|BclNfkRBZppzDv5zbK3YrP3kWhjU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Cs2GeI6Sn|Cs2SnGeI6|CsGe0.5Sn0.5I3||0.63|186.1|0.606|7.11|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1038/s41467-018-07951-y|Bd0BMVhJiHcdRSuHwxQugO0qJaZv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsGe0.5Sn0.5I3. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.7500001866044976|1.3|189.0|0.778|19.07||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/aenm.202201509|Bd2dcHXMonz8hC_piaq0_iiMLkBS|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|160.3|0.3|4.9|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np', 'ITIC']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|BdFW23kwYHbOV7A9BNxNQ34CIW0P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|232.0|0.65|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8se00332g|BdRwOf-1Lac8BpuWSuI3CJjOdQ0Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|178.0|0.62|8.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.07.011|BdZ9eOUnWBwZlBU1nLnJhPmzTWZm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.975|199.8|0.588|11.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|BdeUAUC_0OotHt1B5ZUfG3R-IX8-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|220.0|0.73|17.2|['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|BdeVicgDYZALEGKEzUpDNAtXP17S|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.68|208.7|0.588|8.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au-np; P3HT', 'Au']|['Au-np; P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b08157|BdiVxB__0XTk8rhq1EfG5LmdZO53|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au-np; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.55|185.8|0.69|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|BdukXdUn0McUjmktqbWK7PxEidI3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.85|172.8|0.76|11.13|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|Be5YiSzyobZAqep5sHobPdTxULJV|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br39C96H493I261N179Pb100|Pb100C96N179H493I261Br39|FA0.83MA0.13PbBr0.39I2.61||1.08|226.0|0.7809999999999999|19.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ee02172d|Be5shgLqj_uKpDPM85m21jHvf9aM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.6|0.6579999999999999|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC', 'Au']|['TSHBC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|BeRTgpOXBy33yoGB17mE1Cl2KWHs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|229.8|0.762|20.14|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135197|BeUMgQ7QF6MM5rgKJwEqyhR6Jr1m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|BeW0BhdXWBKcXafIaofwR4_Q0eM_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|168.0|0.7040000000000001|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DFTAB', 'Au']|['DFTAB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b00858|BeceVZR0zUucNqhz-2Gu1ayY_mDa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DFTAB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|226.3|0.74|18.19|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|Beo5nDaNxb4vXMsbQeIyYvQZyZbF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.096|231.0|0.767|19.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'beta-Alanine-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'beta-Alanine-SAM']|bulk|https://doi.org/10.1021/acsami.9b18034|Bew8ExEVTlIJ3-ds16Z1iVgSpXrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'beta-Alanine-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|184.7|0.653|12.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.008|BezFHeiJZsFANd58ejx7pTWzBcl_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.5|0.71|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc01973d|Bf1xdsK-oiAieesKUQr8YH77mY6B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|185.8|0.716|14.11|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta04313a|Bf3vKJ2ODf358QyIbtyKUyuuVgp6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|182.0|0.78|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsnano.7b06413|Bf4VThaZB1uRDfSo0SMPci6BdIDm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|160.0|0.435|6.9|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1002/solr.201800056|BfHX49qzjgAy-TPr_WtaJX7kOXRR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|164.8|0.61|10.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|BfXCIH4fNHw_B2LQ8WS5btZgUpbH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.6|0.738|15.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.6b06291|BfckO3_ON5DeceJv9ZnVcbHF7Ny6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.6409999999999999|123.5|0.635|7.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|BfnE5epxEZii4eS3rvEc626c_kFM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -C23H126I60N20Pb20|Pb20C23N20H126I60|(TBA)0.01MA0.99PbI3||0.85|208.2|0.56|9.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7ta06735f|BfvO-rx-AhK_cNB52_ZDc0ec2FXt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.01MA0.99PbI3. -Bi2CsI7|CsBi2I7|CsBi2I7|1.7700001887371206|0.44|27.3|0.41|0.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.inorgchem.9b01233|BfxbmYyEnDgbA04p3vCP3ejA2ZHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is CsBi2I7. -Br52C100H517I248N183Pb100|Pb100C100N183H517I248Br52|FA0.83MA0.17PbBr0.52I2.48|1.640000174875072|1.12|211.0|0.67|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|Bfys3jEMN4vz-UGjWA4iHq4-gIlE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|136.32||6.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'Teflon']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/LED.2018.2828501|Bg-Hi2_0E_AMBwScZLHRcQJ0AdW6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'Teflon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.2|0.59|10.51|['PET', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02241k|Bg0xM3-XRuuV7i_CYqWWSprNv8uL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|234.8|0.7|17.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201907442|Bg6tMx0_-oDzULz4HfR1Gg2gp4nZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.011|157.0|0.75|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nc', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/admi.201801076|Bg8fi6t4EAIff6dDWR0uDFqmbPo1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nc', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|185.0|0.648|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201801254|BgCl6CO3_rqHTu6nN160Xl0wZWtr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|206.66|0.628|13.66|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|BgQXLAqnAkfY4gFqsKpAy_TEkiX_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|228.3|0.81|21.11|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-mp', 'ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|BgZsx9UZ5R1_7HeWPLGScuiM-R5m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|229.9|0.735|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-tBuBED', 'MoO3', 'Ag']|['Spiro-tBuBED']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12274a|BgdPscoMI0gcizV6zq-THQyl8vqA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-tBuBED', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.921|216.0|0.713|14.21|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201705998|BgeQrJ1pmAyhZ8dO00CZevS1ChpM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|199.8|0.64|9.33|['SLG', 'ITO', 'H6', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['H6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b10070|BggCP6qUh1dFlgXBTQvRBQF2Fo3u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H6', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|174.8|0.63|11.66|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201404189|Bggk079kH9sO7PATb6zAR5lPxDBb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|227.5|0.67|13.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|Bgo9WYWA69CfzDqqBApr94flss-q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|181.9|0.38|6.59|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|BgqxAijqx35Hf7teqvjTc-ID7_nr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.2|0.799|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|BgrY8fGYFPaZ_oIFyu_VvKGEdKNd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|223.0|0.7709999999999999|18.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|BgvZ1LjEqNKfnShsmNO_tgMaxyUt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.5|0.7290000000000001|17.63|['SLG', 'ITO', 'PTAA', 'perovkite', 'PCBM-60', 'Bphen', 'Cu']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.05.003|BgvpO448yYxjZC8LXXkgT9brABc4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'perovkite', 'PCBM-60', 'Bphen', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.930000205798103|1.06|144.60000000000002|0.68|10.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ta05118g|Bh-d72QHjtm8Bi4YoS8SVBHOTJu7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|233.0|0.77|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03826|Bh8Omn4Rxh6aYJYIq-saARdQX5HP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6500001759413832|1.09|230.6|0.68|16.92|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b01728|BhBXV6tYli2GN1uK5zGz1a25Y0Zr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br510C1000Cs140H5170I249N1830Pb1000|Cs140Pb1000C1000N1830H5170I249Br510|Cs0.14FA0.83MA0.17PbBr0.51I0.249||1.1|217.0|0.682|16.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|BhJXpJ8Hcw-UZMjyvqdqkkNhUxev|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.14FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|182.7|0.54|9.75|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ2', 'Au']|['H-Z2']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|BhLpZWRsGLzqgvTkWEnl2Tde2fFi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.0|0.69|13.91|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c6cc00522e|BhNvWBz7NtOK3lx5rMVJ5_sn2EWb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|BhP3MfjCxgjJB-d4guw9FazyHrRk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|185.4|0.42|6.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|BhXy0Em-HMyjbdNiJqc5azZM_YBc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.3000001386204838|0.725|236.0|0.73|12.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7NR03507A|BhZTlEAJ83D2M11XWMldwS9u0zyr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|218.0|0.7190000000000001|16.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.083|BhggwsIhIjIJJD0rgDrtGJaALIjU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|236.9|0.696|17.2|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.3390/nano7070166|BhtUj6KoYV-sm1ou3bbg35PwJ-_8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|192.8|0.65|11.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr03511b|BhxF_INukn9y77Leq5lBX-wwXNsh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176||||15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.034|Bi034w7uEBSDbbv-EZSmZ-vUNKSk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|239.0|0.802|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|Bi03ENMFIfyQBgDquW2znkY-CqQE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.959|222.7|0.721|15.13|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.8b05610|Bi7PXtT13QqRmgR9ENkWa6SMa5f9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|248.0|0.66|17.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104014|BiD_8Xxs-bozlNf9_hHOA63vcuLQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|198.0|0.588|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm5041997|BiEy13aqRZuBrW7MHjU2niW-qPLe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.878|142.0|0.54|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201403348|BiLvteTRa_BJlU_Ih0e2GKJP4g4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.6|11.1|['PEN', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA|Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/c4ta00011d|BiMVG902thH2vMXT8xbtVkyspLIs|a perovskite solar cell with the following device stack: ['PEN', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA|Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.0|0.35|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|BiTLoduS5nksG4jEV8doUvGNS-km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.922|206.0|0.81|15.4|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|BiTiCYKKkTBmT0pSdO-bIOSz0iXy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|197.5|0.65|13.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|BiUv8RRHOwoDeCeYiAzP6LflnRVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9|1.5500001652782691|1.019|226.4|0.767|17.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.02.015|BiborzjNTEfTTcm2X0nISAzUJnMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|132.0|0.52|6.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9091220|BiigjaRXX3ClSQvmFl8i_rWVdE9K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|176.1|0.62|11.27|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|Bil1Q4TXKYqTvN6DwDjrdmMZk0Zq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|185.8|0.66|13.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep10557|BiwCgNrVQWgE1vKsoJxkSdU4dyQV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.6|0.7290000000000001|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|BjEjIm9AIWYmYc1f5pBEL2ZGIAbD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|168.1|0.598|8.84|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.12.047|BjImRDmteE0LHAR_B__qrm5W5WO9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.354|165.36|0.495|2.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||BjhTd75jCqNHWZ_Mt-JSmIQNeo-y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3|||||6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'BCP']|bulk|https://doi.org/10.1039/c9tc02003a|BjuDPqnFp1z2SwRThFpny8H_GSUB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||12.77|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|BjzgqxLvfSGWPC9M2A-LGuRkegdX|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|205.0|0.65|14.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|Bk8Ghh49LeWpdlFFd4meyB8RKT9e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH23I15N5Pb5|CsPb5C4N5H23I15|Cs0.2FA0.2MA0.6PbI3|1.640000174875072|1.13|230.0|0.75|20.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|BkDwaIIBbqP8b_1rfg5Qav4B8ZYf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.2MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.9|0.731|16.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|BkFLslDgnzG0jHBoE4MXjunRNFfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|210.7|0.7090000000000001|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|BkGA_8TVpiCFFhCW58LNTJKjv476|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|165.98|0.77|12.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04919j|BkSCx-j1VQ9rbekVsoBQcSuJet3R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|213.0|0.77|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201804005|BkUbUwjuUZirQ-Whf-5CP_Rz7xZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|147.0|0.552|4.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2016.13661|BkZrBMky06U3E7rsq19Rw4YHLa9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|224.5|0.75|19.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904347|BkpcC-9dk68QmohyKLyVGQB-lavc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.083|216.8|0.653|15.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|Bkqw8oHT5J4vySzR967wnY_8Z_br|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|186.8|0.713|13.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b08869|BkyDaXCBPp81iLgYn9ZHAoQ7Vg8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.2900001375541723|0.39|145.7|0.5710000000000001|2.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|Bl2gqP_0eWoRe2YFxmA9dbPHOMsj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|210.1|0.785|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(BMPA-EDOT)3-TPA', 'Ag']|['(BMPA-EDOT)3-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|Bl7HaRK8ZdSIQYkcW6rk10hTZBES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(BMPA-EDOT)3-TPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||14.68|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|BlXrNRpxbNaRCj3Nz2bUhU4VCBf2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.966|231.2|0.6559999999999999|14.66|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|BljBQ5azgVsp-pYqmLMGY-4erKPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|139.5|0.65|8.0|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151970|BljPSKkxguUEXnS5ociH4-yh3JE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.14|229.0|0.7829999999999999|20.5|['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['SnO2-c', '3-(1-pyridinio)-1-propanesulfonate']|bulk|https://doi.org/10.1039/c8ee02242a|BlxnNjBz8AFJA7ft2lFiCWaiQ3OQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|210.8|0.76|17.46|['SLG', 'ITO', 'PTAA', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.033|Bm-5BvvrHCYyE9b4dAzwOJSw-lqJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|123.0|0.42|4.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.07.004|BmDhX1XIBBYes0LIbBRUNqAQLCKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.098|164.60000000000002|0.7240000000000001|11.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2019.03.002|BmEYbVpgB4YTx5IDppTYhj4VwAlQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|230.1|0.72|17.7|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'COTT-2', 'Au']|['COTT-2']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01658|BmL9CqY43R3_T69j2OulSzDjgnaZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'COTT-2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|128.0|0.47|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|BmLfJgCKJz5xar2VYoRGxgQ7AydP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|186.7|0.66|11.23|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ra01869j|BmPy1jXFDDLxc9tT7BJU35-_s_-N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br72C95Cs5H494I228N171Pb100|Cs5Pb100C95N171H494I228Br72|Cs0.05FA0.76MA0.19PbBr0.72I2.28|1.6800001791403176|1.11|175.0|0.733|14.3||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|BmQbXNkQptq5InORbnWs5IuecY9C|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.72I2.28. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|213.0|0.755|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|BmT8OPO1LYKAl0kshdN4MIOXFueE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.11|219.5|0.7709999999999999|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|BmYvRrRbmaCqGqQe3l6QOkvxz1R1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.116|213.06|0.747|17.76|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.202000071|Bmd3nMzRCk8jbST7iU3gsrkDS0jl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0285ecst|BmehlV8x-xRbpLblMKdyG-zizR8s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|222.5|0.7020000000000001|15.93|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9ta02094b|BmhG0nSgewBe2lzgy3-d2YRe4I8A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br11C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br11|Cs0.1FA0.75MA0.15PbBr0.55I2.55|1.6300001738087604|1.14|228.0|0.7509999999999999|19.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|Bmq4cDWAi4cO2mICd-roCTKqRsSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|155.0|0.563|7.6|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.02.011|BmskQHC_v3leP-9p8xuzG_yf1bpo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|236.7|0.7390000000000001|17.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-1', 'Ag']|['YC-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|Bmvx7LAz2KvNzuma92eUlagep15M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs100I300Pb93|Cs100Pb93I300|CsPb0.93I3|1.8000001919360546|0.882|160.0|0.74|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|BmxazX4H0gtT24DpqBIhfJRoXc4F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.93I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|211.2|0.48|9.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|Bn27sb6rL6bFFZapIVXqMiRw9NiK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br75Cs24KPb25|Cs24KPb25Br75|Cs0.96K0.04PbBr3|2.290000244185314|1.454|69.0|0.753|7.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|Bn3aSPgzloToDW7I8SGvNNM5uTxW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.96K0.04PbBr3. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3||0.83|74.0|0.8|5.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|Bn6MPKKKBpIumRDDVh5gQXpz0UAP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.07|229.4|0.71|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|Bn9E3VfslG5qeaxydCIYCaXG8Ovr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|169.8|0.62|10.5|['SLG', 'ITO', 'TP-FTzF-TP', 'Perovskite', 'PCBM-60', 'Au']|['TP-FTzF-TP']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.016|BnAbO8qc63DRoJWOuTwEFvkl3tRu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TP-FTzF-TP', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.7120000000000001|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08701|BnBz_3E3JEteGR4CfM3S6Y3nra8A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|216.0|0.81|18.9|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|BnI_poXGb9NrSrrrNsfT1OSnt75S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.15|217.4|0.809|20.23|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|BnSKO5y9yOA0Uh4wRdfi4BQ8aMRv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|95.2|0.51|4.42|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|BnVDGPw4Sq8-uL78qOY6NFryzHfg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.2|0.657|13.49|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|BnZf3x8p7e5-s_iDDYdGiH9c0l03|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.3|0.405|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNDI-2T', 'PEIE', 'Au']|['PEDOT:PSS']|['PNDI-2T', 'PEIE']|bulk|https://doi.org/10.1039/c6ta08526a|BnazXUOJ4tD56F70kcimvYA3fR_t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNDI-2T', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|230.0|0.738|16.7|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|BndTBOwEKFpB6NtFoLpxP3MOAoN9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.8|0.61|12.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01277e|BneDWPE2y6ymQoaKt5KLXi2uFNz0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.11|222.0|0.773|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTEG', 'Ag']|['PTEG']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701935|Bnl9yl1VVPJKpID1B2p8esjtp2vf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTEG', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|140.7|0.58|8.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra25149h|BnlM135UQKNfak9j1t7sa3_gyFYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.8270000000000001|143.5|0.62|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB-BO', 'Au']|['PTB-BO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402033|Bno8ABJ_IA1Rkw5wsHmNt3DhJfI6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB-BO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|49.0|0.48|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|BntdSeukb38s0BkU71d782PCrudU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.0|0.67|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep35994|Bnufg81Z-axCfCdQed2OEQpQCupN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C100H517I270N183Pb100|Pb100C100N183H517I270Br30|FA0.83MA0.17PbBr0.3I2.7||1.14|249.8|0.77|20.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903299|BnvDw9NqYs6wrTg9sPHQhT2dTHjI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.6|0.76|14.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201700492|Bo3HEHhzJ0ADA9973ZNJzbBzESdD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C4CsH20IN8Pb5|CsPb5C4N8H20IBr4|Cs0.2FA0.8PbBr0.8I0.2|2.0800002217927744||||4.83||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|BoA7GRQ2GqWTP2Dx6-635_dwrd4m|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.8I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|220.5|0.58|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.05.184|BoWVk3vMqPGN0ngTkCUAzwSFmQEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.11|243.0|0.768|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|Bob7nzFAOzi74JDiNKm0Ts4Uqa-w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|211.0|0.688|16.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|Boe5Sa0XckjTtXa8da-4Cv3iUIoE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.03|221.0|0.78|17.5|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1056', 'Au']|['V1102']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|BohgNhmCysgu33-e9brisSwUd6BW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1056', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.18|154.0|0.74|14.0|['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201900221|Bos_vxxnUw75S3q9G72E24ezwkgg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|206.0|0.62|12.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PBDTT-SeDPP; PCBM-70', 'MoO3', 'Ag']|['PBDTT-SeDPP; PCBM-70']|['TiO2-c']|bulk|https://doi.org/10.1021/nl504168q|BovEDnfNwvepMydguoUQMKlKMus6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PBDTT-SeDPP; PCBM-70', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.0|0.74|17.7|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|BowJL9u-UIfZwP0Xo8sqpgB0h9ry|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|197.5|0.63|12.7|['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|BpEWWqAYvry2WPoDOwsk2yAj04s3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|201.7|0.6629999999999999|13.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|BpFsOKFR-4zWd3C14cr5pZRSrAT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Alq3']|bulk|https://doi.org/10.1039/c8ra01633j|BpJ-OdEaG-ukRzCw_CPJTBH5My4m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|1.08|184.1|0.588|11.71|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|BpXH-lKnQsKpqlESdehlgOwyheg1|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.55|72.1|0.8140000000000001|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|Bph2v8P9ThSytz4PI1mTBomwiWgJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.736|72.0|0.45|2.3|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2015.03.016|Bphj6FNZvg4BJM3vYkm3tihl4toB|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2960002448251005|1.24|38.7|1.19|4.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|Bpnj36CzpzpzyExs5qvWBtWMUkxb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.99|219.6|0.58|12.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|Bq0xXUlGGQ0jEKaysOJlt51nuKkE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|130.29999999999998|0.31|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|BqAmJBU_8C9JNs-_Id5p9CpVxCWT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|213.2|0.69|12.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-NMe', 'Ag']|"[""N1,N1',N1'',N1'''-(ethene-1,1,2,2-tetrayltetrakis(benzene-4,1-diyl))tetrakis(N1-(4-(dimethylamino)phenyl)-N4,N4-dimethylbenzene-1,4-diamine)""]"|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.10.022|BqBJ2JMmKjFtwCH9wiBDW-TDKB1n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-NMe', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.021|214.0|0.62|13.59|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|BqPU88WqUoq8nL6bH4PlrbLVXRsw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.5|0.7240000000000001|14.59|['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1‐benzyl‐3‐methylimidazolium chloride']|bulk|https://doi.org/10.1002/adma.201600446|BqR1o_4pohPE5Ym7NDYxMB9w9n7f|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.857|86.0|0.628|4.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|BqVZOa8mdkBrOOENi9IXBX3Jt6DC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.005|181.6|0.6679999999999999|12.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.8b05555|BqZpW5pG-dXkdtB_OfnZyizFWNF1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.77|14.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b10253|Bq_7riEEk-gAUBufQ3NJ6TEkp6dR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|223.0|0.69|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|BqcUYQLWp0NHcarvd5jWIxahlVJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.5|0.52|8.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|BqhxQpPi-r8lCy0kOVQelbdzqcr5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|146.4|0.71|9.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2015.08.002|BqzDBsUsUPOzJSU36ACYT4xjbf6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.851|107.2|0.612|5.58|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/anie.201405176|BrGsvIRJTd5wbh-zaYj16mWSEtd-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|158.2|0.69|10.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q221', 'Au']|['Q221']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tet.2017.05.020|BrKPWMKlLB8d9nfTVM_eNQGu_zz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q221', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.0|0.66|13.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09925|BrN0gu4hZjP_RuvfNk3CiF9WuiyM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.9|0.816|18.53|['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBTMT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900421|BrRcM3bIS68AcOAYBWEPhZiKQTWE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|145.5|0.597|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|BrUlG7bxE1uiXz_pHZgicQ_eEm1n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.962|134.0|0.598|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|BrV4vVCRSKqgZzYgqzLv_2U0dhAv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|161.0|0.55|7.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|BrfG8rdrck9hS5gorTs7vEvlGcoB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.136|234.1|0.7659999999999999|20.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201807420|BrzrpMGPGmrD1y5m7mEtUjFp7Ewx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.807|129.9|0.52|5.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C70', 'BCP']|bulk|https://doi.org/10.1016/j.mssp.2019.104813|Bs0gxaV3uxTHKsIKbk7l434xsD2O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.029|214.5|0.6970000000000001|15.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01364j|BsAg8MY2GeEw3gsZ8bm75bBcxvz8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.57|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|BsC7nSNozXooZTIrDiOHsUiwaxD-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|164.28|0.3|5.02|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|BsCJVHg2PKSId7RHsD0X8uOmvE6I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.091|229.9|0.6940000000000001|17.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|BsH-_blMpXU8RO-z1N4bS4MrZ7ga|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.0|0.68|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403344|BsTADNcBh69DBmASX9IXBZ_1Trtk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.11|175.6|0.768|15.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|BsYhti4ljUqiY758vBgeWDxCw93x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|112.0|0.54|5.28|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.08KF02|Bs_TUekzV8jMFB4XanrCgk0tvugo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7859999999999999|159.0|0.514|6.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.17162|BstWKIZ4Lrp94vS9Al8ATk_APre7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|210.2|0.75|17.06|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|Bt4KScE-S8cMLWsfjrwc8S1bOaAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.097|224.9|0.649|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|Bt5EA2Rori6Mc6LaZfJRQ0SXIY5o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.48|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|Bt5JkCYUbUug3ZwKvsGRGUWyfUGU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|59.1|0.605|2.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|BtA4JDoUHE-o6439oeJZU9zfAz5M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|229.6|0.62|13.81|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']|['P3HT', 'SWCNTs', 'PMMA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601079|BtHfY3DrceY-xsVnUDMQ41_1fz4N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7||1.112|220.0|0.718|17.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b09515|BtKSyh9MhNT9CzAAIt96cAUqbHge|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.84|180.0|0.607|9.16|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF2', 'Au']|['BTF2']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|BtM-swHmHoJaO95R6ee7ybbjY8C0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|213.0|0.619|11.9|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|BtNfAsKs6Dec56C-CnwhqtHOKjAh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|170.0|0.62|10.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|BtPqw-v_DrEYkXrAesa84gI-OqBM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|179.0|0.557|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|BtS6CDSO3jAelhx3YO3uAKeDOydM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|199.68|0.742|15.58|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta02490d|BtZ1vlFOuKVK--wVoXGWsLhvMfIh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4||0.5|177.0|0.405|3.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|BtfNcPAT7xFDB-mHKckU07Ko5YEl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|139.1|0.66|9.45|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105396|BtkqoaFpGllEZEFhXkA5jPjbVBas|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|210.7|0.8|15.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201402321|BtmfW-7OkIgONQUzFOyvfI00JQb2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C321Cs4H959I249N163Pb100|Cs4Pb100C321N163H959I249Br51|(TBA)0.15Cs0.04FA0.67MA0.14PbBr0.51I2.49||1.18|227.0|0.688|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|BttKc978kJfnfmlUrOIrlIukmQil|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.15Cs0.04FA0.67MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|BtvvauP1-5B4X42bG8pr80w0_2MX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI||0.96|123.0|0.87|10.3|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'IZO', 'Ag']|['Spiro-TTB']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1038/s41563-018-0115-4|BuBKj6b87LxxTxcP1RuhLjn4z6at|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'IZO', 'Ag']? The composition of the perovskite layer is CsFAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|181.6|0.481|7.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|BuDTBUf4Yy3ETWoaSLrjuHdEKbUJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|186.3|0.69|11.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201701586|BuKtQbfA7x2_HdknnobjjXcYUOTZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.7|['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00183a|BuOYSKRIZKIzsuuSrs4ohgVewvK0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.01|202.1|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|BuRaWgXgAgrcgsX8Y993zTdiqiZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.03|172.0|0.67|11.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']|['Carbozole @ S12']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|Bua3bhMzIWRoi59-OB_ScNNrBKLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.4|0.81|19.0|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|BuaFfEnhLRnJZVbZC3GsZ_wXAU5s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3||1.05|230.0|0.71|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra04742a|Bua_FWTWOrVCkIKjcAFKHfq06dC-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|176.0|0.488|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|BueIr-sujnuAlmrTQXbKVp2gFUMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C92Cs5H476I251N168Pb100|Cs5Pb100C92N168H476I251Br49|Cs0.05FA0.76MA0.16PbBr0.49I2.51|1.6000001706098266|0.84|214.0|0.55|9.9|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.10.031|Bv-th05pVNHLm11mmAosLWAbQ3gG|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.49I2.51. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3300001418194185|0.634|208.9|0.431|5.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|BvCAfwf0EXkd40cJdAbsHDhZ-Ipz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.0|0.74|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/advs.201500353|BvCkrkvs_DZr6mdbhpp-Q6SCxiSb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|122.0|0.57|6.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|BvOU9oRcbFrAD89fOOQ-AWgqAEir|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|200.0|0.75|16.4|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.202000197|BvPOI3c7yfGDp52oX2z3q-_M00tI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|53.3|0.371|1.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cabon', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.10.015|BvSpmgvBiIRE7y_xUQB-DgI2NnfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cabon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||1.13|151.0|0.534|9.1|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201901090|BvUZqB0omHLOJfYw7ufzxXidXYq4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.2|0.531|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|BvV0Zqtqc9IpRHdC370d2BgUets-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|204.11|0.8270000000000001|18.29|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|BvVUV9f3hHpmDnK0CQOM5l4nLCDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.74|106.9|0.42|3.63|['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; TiO2-np']|bulk|https://doi.org/10.1002/hlca.202000044|BvXqUo9iuEmc7R9010IYcYmc1oUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.22|5.8|0.157|0.02|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|Bvg1p2pGDloTpnpkRn_7Y866Otxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.73|155.2|0.55|6.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|BvqXrlkTqDmVP5WDJwZ1UlC6dOqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02044|Bvqclm9mqY-jO462oP271xSPMaRG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|170.2|0.4579999999999999|7.12|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201701144|Bvrr4JVVsAGoEyCsoFNMRbsdvTPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.5|0.75|17.25|['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSe']|bulk|https://doi.org/10.1021/acsnano.8b01351|BvtajBqv9uQWWvuxgmeCAegEBnYa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.1|0.619|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b00468|Bvyoz5NG39y9u_IyA9etF35IFvWj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.36|55.0|0.76|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b07295|Bw05Uo0IZIgJtN1LtpDjUh0P_0q3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br11C50H260I50N90Pb50|Pb50C50N90H260I50Br11|FA0.8MA0.2PbBr0.22I|1.5300001631456466|1.02|222.0|0.7979999999999999|18.1|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|Bw6YJq703Ckkn0A3y59Bl3YGeSPU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.22I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|237.0|0.805|20.51|['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBFMT']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227488|BwMK_f4b_7gUshFuR3YAw1VXKUiI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.0|0.794|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|BwSvsj3pol2VeD7JffgqeCopLTpi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.165|205.0|0.72|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2765082|BwSwnREsKvHGW7njM7k2UqKt0tfP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.9|187.2|0.75|12.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.044|BwWRSbdQ8GYuxmfRn26c0flE-MBg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BiFeO3|FeBiO3|BiFeO3||0.87|25.0|0.609|1.36|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1021/acsaem.9b00722|BwYV47VgfFjG8CD0Gj8y0cCOB8rm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is BiFeO3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.03|187.3|0.6859999999999999|13.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|BwbP1M_4JALoOqGZ7hbqXhxqQXZO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|Bwco8jADoQcab4k2OqimkCiS2AGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.582000168690466||||15.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|BwqZBfWEZyL3yMLGhBqxFBFHVgOw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.88|8.0||0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.05.180|BwtldxCtbSw2aQv0QFumgt2bkaSo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|184.0|0.78|14.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00488a|BwxT2Slk6qstSyDKVAdtvwfycFA6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|194.54|0.289|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|BwyH-GOX6efx3ppGhVq0XNJa2dCa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.6|0.8079999999999999|18.98|['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na', 'PASP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01947b|Bx-yaCAxzQTShHRakpcgZwiMe8z2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|232.0|0.74|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b17930|Bx4BK8FLnmrRC24eujHX1mHno4p6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.05|214.8|0.7240000000000001|16.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|Bx4Qg6AVhRJCHgRNR-stBssBUIEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25Sn1.0I3||0.255|174.4|0.416|1.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19143|BxFqZAS62Do0uksr984W_S2xNt41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Sn1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|179.0|0.74|14.7|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|BxIb6ipUXSHh2LNOqupGuqDn2HWh|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|158.0|0.54|7.8|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1246/cl.150982|BxKZ4Jz5KA9JLpc9MXtL09HLrjYE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.079|213.5|0.66|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|BxN-MaosVyjQMdo-B2_drVRDQ6TM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CsI3Pb|CsPbI3|CsPbI3||0.838|109.6|0.62|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr00758f|BxPuVnP5GMr7fB40-uXTltmCR_T8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|226.0|0.59|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2018.09.072|BxSKzR70Z_AVYT16F-Jnd7NkuDuD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.976|171.9|0.5379999999999999|8.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8se00213d|BxeU2t1pfXIpxpdXKsryam3n3428|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.1|235.0|0.69|17.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|BxlIxUxWKBOjMR1UypmIgdNRX_Fp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||1.06|220.5|0.76|17.78|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/ente.201700561|BxwDzzEum0_chQzm_B5n2hLVkxf8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|160.3|0.6509999999999999|9.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|By4_vet95OIzz8wEevYjNs_cEnyJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.0|0.66|11.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|ByBt4EPW6QOQNYMKYxz4VaOXkjGg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.05|214.3|0.649|14.6|['SLG', 'ITO', 'EDTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['EDTA']|bulk|https://doi.org/10.1038/s41467-018-05760-x|ByI_2o3IOuFTYwe2qC6qMlLMve1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'EDTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|10.14|0.72|14.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|ByPB2nRj3yW6OzRLSe4vxqjdZNQa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.07|202.8|0.6509999999999999|14.07|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|BySYJ30g08K2lJuhQQ_FWw1wOcrv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|223.6|0.722|15.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Carbon-nt; Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b18530|ByW9uhvOkXp5Bqw3Kxd-nt32RTZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Carbon-nt; Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.0|0.77|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|ByagYmLgzkArm74s2VjriNMZNw3Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C59H210I65N25Pb20|Pb20C59N25H210I65|(PEA)0.2BA1.8MA3Pb4I13||1.12|166.0|0.742|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|BypyjlrFH3LBwc07nVQVh-ms9caF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.2BA1.8MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|102.0|0.5489999999999999|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|ByyAl1ALqU_ixiTD25bKcaQMqmgO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H44I15N6O4Pb5|Pb5C12N6H44O4I15|(GABA)0.2MA0.8PbI3||1.06|202.4|0.695|14.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|Bz2OjgzSOoBAa2NCvaEmgr-qnI4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|187.5|0.52|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|BzBUMM6HRf5XSLfOJiipMofBfCPC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|215.5|0.76|14.01|['SLG', 'FTO', 'TiO2-c', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'WOx']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|BzK9At10Cc4U_1RIR0GTsUwuJlw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.785|159.5|0.762|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b09722|BzQGDTYf7K7kWgWVHRzGMNMcm2aC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|1.627000173488867|1.06|178.0|0.75|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|BzX_-IZaWwXBhfMHsvFahc52Uqd2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|219.7|0.71|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|BzqgYm49zdo3Cs3AS4RapJvr9Y92|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1||1.021|213.75|0.727|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|BzyAV_eN4V9yoa7QypHTMd9FmQ6l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.52|102.1|0.625|3.31|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|C-OwH8OkalOzkKivpfDVrp7Re-hV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.690000180206629|1.025|188.4|0.755|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15684|C-aqLKeZ857f72ZaxWzyjd7x8m07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.95|213.7|0.7340000000000001|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|C-fAvC8nHCzvg254Yt1StbEwplZc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|179.0|0.578|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4cc01864h|C-iTy2u8p4Zd__VapnPc9FTfNf47|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|184.4|0.72|12.71|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|C-l4DbIi_vq-avIaqeiOQqnOWck1|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|132.10000000000002|0.61|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|C-pieZGhWUCh7szUotr1XdCf7CEu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Sn2|Sn2C2N2H12I3Br3|MASnBr1.5I1.5|1.670000178074006|0.752|50.2|0.483|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00513|C-tnHo99bemit8NaAqcjod0VMby4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.71|174.0|0.56|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.cplett.2016.08.067|C0-uz1Iv6iVNbTtmohvxOf5O7lj0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.73|18.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|C02AmQ93seobWTAqQ8RhjEc5OZrB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|201.3|0.7040000000000001|12.85|['SLG', 'ITO', 'PEDOT:LS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:LS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acssuschemeng.8b04603|C09Qk9a4rqHUB2hayhUZhNTcOIsC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:LS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|C0STSpwa9zrq0wgsiLYmk4umdIza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.145|207.0|0.77|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR131', 'Au']|['KR131']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11076|C0dR2cYxZzWKn7tHK3T15T8NHpL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR131', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C94Cs6H485I249N173Pb100|Cs6Pb100C94N173H485I249Br51|Cs0.06FA0.79MA0.15PbBr0.51I2.49||1.091|209.8|0.767|17.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201704825|C0fiQIk8UHp4rd6an9HRBq0gHg_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|230.0||19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|C0kh-fa9esWTrKrwl590yhTlE7lM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|103.6|0.521|4.94|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|C0ncTVqgLluhjG8kCjo05bFXJe0G|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.0|0.742|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|C0qkZUXKqSWMbDoWaBmJ4MzyEE8v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.0|0.7|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|C17A4KA25X3KLd87fb1K4DQha2LQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.644|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.182|C1EcVpf0NY_R09ZKwByy6inXHZ5g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.1|0.67|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|C1H-jGVx45zuUQB4n7JWoNw6zglk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|158.0|0.632|9.2|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']|['Graphene oxide']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C7TA01752A|C1H0Af9nB62DwgP6qHYRebi9dD20|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|198.0|0.73|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.11.025|C1Z428h_KEyB3BYojDXJt4cT9umB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.06|122.1|0.61|7.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04590a|C1bnvKKU3Aly4b8ln3-WrjCN1fQH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|28.6|0.73|14.48|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b02362|C1dohHkD1BM6Wxe0ZQcqPb_IHoO9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|219.0|0.629|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|C1dxrCaXVfEEhxC1n_LA7c6tWh4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|231.5|0.73|16.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.084|C1gteHr-zz7XoN35IlxRoXrMNHVE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.002|128.0|0.74|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02594|C1xORB9RtSs78Xz8Gjtv6OB0ix8G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|126.6|0.701|7.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|C1ydQaPUeDLxZT1XlxHMX3i8UNTn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|193.0|0.71|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|C1ygvwMLagJFnqwx_5S_lq0bWE5p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.5|0.7659999999999999|17.54|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|C1ysO1-qNVisYPl8P2wmxSubhkNX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|148.6|0.59|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11082-020-02327-3|C25lleBC42RIt2qCGixbwgQk0Bq-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.9|0.6|14.01|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|C26suhwyfhA5ffiAu78RLMnYEWhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|246.0|0.73|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.020|C2GjF-DYmhY2U8AtiiXxK8eaywFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|233.0|0.72|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/bcsj.20190241|C2JfTLY8G4wYVWaI9gDuOPst987c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|101.2|0.43|3.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|C2Lf0ndX1XpKdp-l4nD7ljbfEK_7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.12|177.3|0.6679999999999999|13.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|C2N0rCBkIUa07TMGxmPcj0xHdsT1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.08|230.0|0.73|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|C2TLvnAoOs2n5dGjrLxb36wZHUn6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CsI3Pb|CsPbI3|CsPbI3||1.0659999999999998|200.9|0.7759999999999999|16.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201910800|C2lok5y93WV83UpBh1nwq6LHEToz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.6|42.400000000000006|0.362|0.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|C2uhhfNz-hJ7SSujZbQA_p4hjpxD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.122|180.7|0.4589999999999999|9.22|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.202000071|C3MM-BJpfyvx2DFnYbIlMO4pSGIM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.079|219.0|0.7090000000000001|16.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900838|C3U0rehoxQKx1QT0yUUacpOC-_Ff|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|204.0|0.594|10.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|C3UZrFaYYRCm0zORGTQQ9G0onNvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|232.9|0.74|18.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|C3UytxoLrb_9UQ8nbsOp978F3tuL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.75|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1603-6|C3a5XTFcASR-DTobf6E1YodB7vTk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.68|126.3|0.231|1.98|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|C3aaHIVBZvllHwIwJdcdoD6BdUxb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|195.0|0.53|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11393|C3cR1O1-KLs-1b872UDRTm_WBoYC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.8|0.655|13.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|C3g22Qdn-BlPTg9-cmIBOcbtMVVI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C40H109I19N32Pb9S20Sn11|Pb9Sn11C40N32H109S20I19|FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05|1.2400001322226155|0.74|281.3|0.794|16.53||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.1c03213|C3hSAeNHZCW2zwCo2zrIumrLnHPz|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|241.26|0.617|14.8|['SLG', 'ITO', 'MoS2; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['MoS2; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700603|C3wlboYD1cCmfK0qNCl3EJiL3AG-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs13H435I261N174Pb100|Cs13Pb100C87N174H435I261Br39|Cs0.13FA0.87PbBr0.39I2.61|1.5600001663445808|||||['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PEO', 'Spiro-MeOTAD', 'Au']|['PEO', 'Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|C41xVWUTKb3DvqkkICSqmneXTvmv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PEO', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.13FA0.87PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.6|0.76|16.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']|['JY5']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2017.04.059|C4AOXHsfA5HY_mar6knRr5tEfVkw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.8|0.73|16.08|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|C4FfenD1L9xuF_gljSi3bVBmOqnx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.08|238.0|0.81|20.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41586-019-1357-2|C4GCqmLhp2eD1AYj6V4tUqtirmYi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.3|0.75|18.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|C4OWrDQK1p9LJCaFqSiE93vV13eY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|234.8|0.65|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|C4acvN66H2KY5s-QPPVvMeI0ddI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|227.0|0.785|18.9|['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02224|C4co_uM6iIDuZ_H2iPdotGtYriO3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|149.4|0.685|11.05|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc01209e|C4fFn6ykuLj8Fu7QKK3qHfnEeq8p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|182.4|0.6679999999999999|12.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01831f|C4gQ4N9Y93d0alJ_wSOdLXb_xF3t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.09|232.0|0.764|19.28|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.7b08582|C4k2sTBN1KOGN3jRepbETOTAdGp1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.99|204.2|0.695|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2019.04.022|C4lj1sHwJ_y8yk3nAUTaXCPvtRRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|215.4|0.66|15.71|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16632|C4rFA5JCpS6anXgcIBAq4Tsglx4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|180.5|0.6459999999999999|10.46|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|C4v75oiRyfoFCqi-DNrDaNjccoB6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|||||['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|C57KcS5W_45IFbp_C8fW5RwIktYK|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.1|0.639|14.82|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|C597xbPFrnZNsiz8di8V9cT1etnx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|103.3|0.5920000000000001|4.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'nPrO-DATPA', 'Au']|['nPrO-DATPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp07682g|C5BDn9mrzDv6ghQ-CibLgDUIh13b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'nPrO-DATPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|112.0|0.574|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|C5MkoTDiOSBJz-NG7-TUfBKqdyFK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|119.0|0.49|4.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11468-016-0255-9|C5PUzV_a8EQ9BYiVtkpgjXZvYc2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|209.0|0.375|7.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/am506869k|C5QCWYo7uorz08vNuHij1Q8YtZZ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|150.8|0.7|10.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPIO', 'Au']|['DPIO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.06.019|C5VkPywktnOFe_T4sYyoV2NoUP1M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPIO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|184.0|0.5|7.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.09.112|C5a5cD9O0WVA-ljVBlp2zsC_eD2p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|194.1|0.816|13.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|C5cx7Uu3GWjTS-pBHbISIRdeI4bl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||5.6|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|C5oKEsMvGUy-N1B5Dbx7L86Ka6Cy|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb99Sr|SrPb99C100N100H600I300|MAPb0.99Sr0.01I3||0.9|173.0|0.6609999999999999|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|C5oiHZSKDUx4sGwgES-uCrputxEe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.99Sr0.01I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|131.0|0.506|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm5041997|C5qdubpYejmJpGcTHSidfuPbGlcO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|157.0|0.6|7.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|C5tppqRnuKCkqj2SGNKrKd2NG151|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4|1.626000173382236|1.159|213.2|0.788|19.49||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|C60xs1rba7wv8bWSZSuUe0Nrpvgv|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|149.0|0.63|7.9|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1039/c5ee01169h|C614CaYlJKTKdAzC_rX60-VpzwB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.2|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|C64MpyX2iiSYIuuCWePj6ApM0Irj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.772|195.0|0.57|8.6|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c4cc04908j|C66FcHO6AKII9XlMP4TglREj0YOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.7|0.55|9.77|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c7ra01110e|C69VFXb7G_Y2Rls-ln8EHv2Hzd3F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|205.0|0.68|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04267h|C6B9vdNlWYXzfGU1Q463kofI6S0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.06|199.0|0.75|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NMAT4014|C6GZNgxZ9qR0m_FgNfJVoSovPs8O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|172.7|0.726|11.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|C6__zpAMSRD7vYVfy1_QCglIUaH2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.0|0.63|11.31|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5nr02874d|C6acK5MwrICvB6PS03Sw6TqIIv-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.0|0.69|13.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b06780|C6rPvz1SA_vXZa6v277ocS10RkQT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C15H48I15N5Sn5|Sn5C15N5H48I15|HA0.4MA0.6SnI3|1.3000001386204838|0.34|20.0|0.48|0.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1039/c8ta07699e|C6wK-n2c7OtjCFn4j7RZnxCduosL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is HA0.4MA0.6SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|165.0|0.093|0.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150651|C7-Fuu8u9f6e6zAysXrpLdF_05U7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.87|190.1|0.5|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8CuPc', 'Au']|['(OctPhO)8CuPc1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|C72he4Q6NY_FL-jLe9zVthNQRFE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8CuPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|180.0|0.74|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/C8TC01033A|C73h9SlmJFeLnfpkDgHm4qcFFGOF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|207.4|0.64|14.22|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|C7AQfl8PwVhJdnaj0meHXy0hmhXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.1|0.667|14.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|C7AimJnrGpQ3fquS4XWcsrZza0q6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.095|240.3|0.748|19.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|C7Gwh5wvQF7Y4B4BUaCDBExpG7z8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|C7TOjxp35_6qHkN3hBRJRrDgtafO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.99|165.79999999999998|0.62|10.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.089|C7VOyOBC3pXhJK5zqqSlzBvE5C9b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|224.2|0.7|16.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105384|C7cFP7FmOs1VT45omNxE2sRFj6B2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.038|190.3|0.753|14.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|C7fFPpc3dWSbXUgvKSonHUz7h_Co|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC2H11I5N3Pb2|Pb2C2N3H11I5Br|FA0.5MA0.5PbBr0.5I2.5||0.98|93.7|0.6809999999999999|6.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|C866LXVGvjxC8rw3o5mldRrdzo2j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.5I2.5. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.48|213.0|0.6459999999999999|6.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|C8c1mik22gnOJAcSfLqkVg0r8WNR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|201.0|0.74|16.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502039k|C8iUS-WYNXlMxWg1meLJny8WvN6w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.139|222.5|0.677|17.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|C8yxeZS-DJzu9w8ROrt3-rS7aLTZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.885|155.7|0.51|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']|['rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02710a|C94H2nZiTUOXloGBOVtrA1dVKB5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.92|109.0|0.59|5.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|C9V77KC50XJVMJ0vd51oAkOYFIrp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|191.9|0.758|15.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b02500|C9X-OY-Gz0dZ-qABt2XOmQDWnhQl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.6100001716761378|1.025|199.0|0.784|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00187|C9efZ6V0pCIOLB07FBB0Dj_uKSzV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|1.02|221.6|0.71|16.5|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|C9f-Mr-3ssTFK5k1PUL8YaeDJBrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.5|0.775|17.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']|['PTAA']|['PCBM-60', 'm-PYBrZnPor']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|C9k0Pra-shBnpyWbL9TCu9kxSW77|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|211.1|0.726|16.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.085|C9s_yIsYIiCDGX2zKpCFPq-EoF3h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|C9ztn-wPLG90HDXBc1T3Hrf025nI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|199.0|0.784|16.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|CA1NHH8-Wb3kabLV-yka-8lgDZ6L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.09|185.8|0.74|14.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|CA52dr61zAvgiF-geI0GuUvHocr8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|155.0|0.693|9.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|CA7Bj4bnRpD4rEc2FHNRWUfILNaL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.095|212.5|0.7140000000000001|16.53|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|CAM63aQN7mmJ_z83xjBZAPqWzUUG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2||0.471|68.4|0.527|1.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ca', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1007/s12274-016-1051-8|CAnT8ZnJVVyjpZ3mDAXMHnkRAk3v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ca', 'Al']? The composition of the perovskite layer is FASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|85.3|0.523|3.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|CAnyZE-80EFV1P3zsWhgNFXAnDB0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.1|0.7290000000000001|15.93|['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|CB1A2RxZPM-I7xTwOKZT47SZZMp7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.0|0.69|14.1|['SLG', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1039/c6cp02896a|CBS26z6bK6WCT_Tl2qyzoWJ5zFlQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.54|78.5|0.82|7.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Choline chloride', 'Spiro-MeOTAD', 'SWCNTs', 'Au']|['Choline chloride', 'Spiro-MeOTAD', 'SWCNTs']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00509|CBTmZ5lMMaNSyeHIwcT6wFKxYrz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Choline chloride', 'Spiro-MeOTAD', 'SWCNTs', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|182.0|0.75|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|CBVFP5xTvUylBsPQV-j1ziEWf32H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.79|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta00679e|CBWXgSioSMvoRhRsSs-YSQ6bTWJV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|51.4|0.66|2.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1039/c3nr04857h|CBdP0socJMsrN4X2GyueE9E0qS8G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.99|178.5|0.6859999999999999|12.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|CBuL07dl-ZlXHkefoXeVgP-gHpfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.26|70.7|0.674|6.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|CC1kL43TV2efES9sNl_ke8b7MZMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.492|67.5|0.76|7.65|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|CC5Z_NAkvNEJJ0i5ggwXXIrjP2tF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.9|0.6779999999999999|14.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b15513|CCL2hjdHke5Txug579hJZ2cNsyNc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.0|0.6940000000000001|18.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|CCRvp9M8KqJvFzaE1MGBmjMfiM5-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.4|0.74|16.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|CCS8EXmCwxiAP2Yd0U_xjZm6zLIV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|114.0|0.68|14.1|['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CdSe-tetrapod']|bulk|https://doi.org/10.1088/1361-6528/aaf158|CCVHHZXbaRgRMlt2gAJsuL-KcuJX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|161.5|0.42|3.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701456|CCaySed3NA1zl4tdHqpZ0MJ3pK-W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|151.0|0.71|8.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1088/1755-1315/108/5/052005|CCeYAxPaOk8EDz5KQu6EzqAnrjof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.0|0.8|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01099|CCvYl-3orIuj6dHETSfjhfqmP49M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384||||1.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/adom.201801368|CD43z86KnhUrEaFc_qo8j56sBB49|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs3Sb2I9. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.04|232.1|0.71|17.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|CD5UfXJkGPNiSbFlZu1GaqSbu52I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.14|212.6|0.755|18.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|CDAUDgBlDwf0uv0M_SXfMzDiEOEj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.2|0.75|17.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00303c|CDGhS5F_lT5UISYZEHtmKh2st8k6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|190.3|0.72|13.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|CDHRNolaIt0V8TXuE_N_kczuI2HH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.1|0.746|18.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|CDOFo41zemEHH104QM6iJarHI8X2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|174.0|0.685|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|CDR_EdWx4JfBpe6whTodVloyndzV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.126|242.3|0.804|21.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|CDXx73l5zyXf2K7l9e7ZZq9eAUi6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|163.6|0.643|10.6|['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PBTTT-14', 'Au']|['PBTTT-14']|['ZnO-c', 'C-PCBSD']|bulk|https://doi.org/10.1039/c7tc00966f|CDZ_cIeKXSA988y99-u7_SIgC4z-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PBTTT-14', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|195.1|0.73|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|CDaWaPcdwlJmmS8Arq91hRhFl6Gn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|235.7|0.71|19.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|CDdzwh0BIIqvmnR9v-aT-dmCgRBD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.034|227.1|0.767|16.58|['SLG', 'FTO', 'SnO2-np', 'Preovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201910561|CDkNQIcY-84GvtHb_M5GeFwj4GDy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Preovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5770000000000001|146.5|0.439|5.65|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|CDolALRJd8LVshUrHQhr9SCoC_zI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|213.0|0.72|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|CE2R-qoTzxJ8XAAoMkLDdEW4k53d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|209.0|0.5539999999999999|12.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1246/cl.161060|CE476UZoSz3vJmzaAQN1y2EG9TD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||0.81|1.7999999999999998|0.37|0.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|CEAwSyrrQbIJp3tECqLAkqjsHI45|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.0|0.75|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1603-6|CEFxty_E-kdDU2_7mSWq8qxxufOV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|233.0|0.753|19.75|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|CEHwvCCH22UpG6WUTMCt282SchQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.161|227.5|0.731|19.31|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201902543|CELhBq1Mk8QIKr-aGnkkRXU9rQUq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.02|196.0|0.753|15.06|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|CELhS_yLIImZLg0X_nLR6X1Ikewa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|176.67000000000002|0.622|10.67|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00042|CER8HHstsgNexR48CyTiKOawXtkN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|158.8|0.773|14.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-020-18015-5|CES5yzp3LhSLZEwexGYgZBVMWX3u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.52|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|CETRdGYa1RwBlzOfRlYhWZQRiUjb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|201.87|0.684|13.41|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|CEanVLHPEdxhcYFpXtoighoaf-Sn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.0|0.57|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|CEwyulRkKzN8gSG958Tw5Eac0Xi4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.621|186.39|0.684|7.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||CF-F3A5O-G89hywxeYRCXxMtGv1T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.103|206.64|0.657|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|CF12nii09iXtb1XKVMY-2smIlnt6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.06|221.9|0.785|18.42|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|CF2EmwKz-h6H_k0rLi9zvtYorRXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8909999999999999|200.7|0.805|14.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|CFCO8FS7Njimjaq4UtcBGE8BibyQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|209.0|0.626|12.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|CFHXmYNXeYYT1vY7uaZPBWujefdl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3200001407531068|0.146|182.9|0.301|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.156351|CFJmnymzPz1eaCtpCPrhxbx1Ns-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FASnI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.95|225.62|0.733|15.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601297|CFMFzyeRMvMG9fOG2nVFgekYEEaY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|222.5|0.747|14.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|CFPflsLxUiLQzFrBGXjnZLH_NaHM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.017|169.8|0.503|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|CFeUXragFkROPDq-Yx7H7NvJLp2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -I3PbRb|RbPbI3|RbPbI3|1.98000021112966|0.62|37.5|0.446|1.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.07.011|CFfKiXb-tcOtVPM09E6tNt2YeW_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is RbPbI3. -CH6I60NPb19|Pb19CNH6I60|MA0.05Pb0.95I3||0.98|209.5|0.68|14.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|CFhidThYMK0R3Z7LHXTDFPQnzd_9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA0.05Pb0.95I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.461|223.9|0.68|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|CFogc0h8UrkIng7hYd__Ks1061y_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.5|0.57|13.55|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|CFpLbE4P4bUtuGebqittm69bpu6m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|80.5|0.37|2.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|CFwZQfydG5aI8t1OWA7i5754Nf7s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.721|161.0|0.42|4.87|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201500518|CFx2a5Nbbwu-jilBCT3rygtrn9Fx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|66.0|0.266|1.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'HAT-CN', 'BCP', 'Al']|['PEDOT:PSS']|['HAT-CN', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|CG1wWUy_rh76UU2BnqbTiDDcGNKZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'HAT-CN', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.104|223.9|0.75|18.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|CG8KjsxBGHBC4AuInvu1D-3nipLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.015|204.8|0.72|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.020|CG8ObtGSbvcrZyQ5vG_BYPt_nPa6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|99.0|0.7|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp00008e|CGABTJSzvqkdHe5R5XtE2ltM4-FR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.32|107.0|0.43|6.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|CGOqRkeCP6phttfwKido7EAdce5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|165.0|0.57|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|CGWC6BtDbgSWfzo9btK7g8rLCgCa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5|1.8600001983339236|1.272|159.0|0.6920000000000001|14.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|CGcSmiV16gbcdoqG7ExSuUur60xc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.035|209.04|0.65|14.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|CGg2IV-7LigSpAdpBwJbQvXSzfF4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.052|223.9|0.7170000000000001|16.88|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|CGj7ewKO7dhiVgGQY1kOVSL5cOgg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|176.4|0.491|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']|['BT41']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6RA12574C|CH1LPJ6svUBR3nexvhrTCZULzenk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.5|0.75|15.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09709j|CH1y9pDXRkowAy51BAC4Uphw0So-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|143.5|0.716|8.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5nr05271h|CHE7RiJa7LUw86xstF4Z2q4HmI9W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aelm.201800978|CHEdBEudu0dqdzr16epomvcsETl5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.6|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano9091263|CHFROZWFU3M10RpCgufNhcbFAVOG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.18|210.7|0.8109999999999999|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705763|CHRb_kjek601iaZySWQaEGGVBiJn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.595|8.0|0.4|0.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-71', 'Carbon', 'FTO', 'SLG']|['HBZ-71']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|CHiPf1A0drFMw1peJOJpJq4pYi0K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-71', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.73|47.0|0.428|1.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|CHkbELtWIZalTO3vDnrpfU4fBINN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.07|223.6|0.73|17.47|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604758|CHmmKE2P8F5MPDm0Uc81rdI_5dRN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.85|156.0|0.5770000000000001|7.59|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|CHnNPumC2O1RWHUydkKB_AcEktA2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|CHp-S0_f-43zZYgVxJpqfjJx_27K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.21|119.4|0.725|10.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|CHq8Ac5LUWaFn0EWmyYuw5aLOm7t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|164.1|0.71|11.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1039/c5ta08015k|CHrWkncf__bZyhbocdzugI9OWWFr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.182|224.2|0.77|20.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|CHu2UvMe7Xd8JWAJ5jzPe2qP_4sC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.103|214.9|0.7190000000000001|17.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2019.03.024|CHv0bj9-colHVFzdNS0Xk_RbzS9M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.415|20.5|0.41|0.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21291j|CHwOTiAw52uU9Sw-cBXLj9cK9NnI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MASnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|170.0|0.48|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuBuPc', 'Au']|['CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.027|CHzzfmDV-28Mq4jqxth2lSjMj7Vt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||20.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smtd.201800361|CI-ecm9NVzyLgyJKb1g3PI7Jc9kv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C5H30I15N5Pb2Sn3|Pb2Sn3C5N5H30I15Br5|MAPb0.4Sn0.6BrI3|1.160000123692124|0.65|228.6|0.59|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|CI8V2Hdl8xaxpw-ezmMoQfsGtYZZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6BrI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.998|174.5|0.624|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|CIBhz3mH6XTqpI3M1MT8tQZW5PKF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.7|0.632|12.6|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|CIDBB4MRz7i8aZg5vVdj_bcEK280|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|102.6|0.38|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|CIMuvYTuzA-Kj8Lsq2X8WFg0kJ0F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.986|182.3|0.7709999999999999|13.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|CIWwK5pGe_FMF1_pW1dekcVWk_VE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C20H117I9N23Pb20|Pb20C20N23H117I9Br51|FA0.15MA0.85PbBr2.55I0.45|1.5300001631456466|1.04|191.0|0.66|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|CIbgpcooQovccIW__cRxw5cSenzr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr2.55I0.45. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|88.3|0.62|6.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|CIfMiiU7GaBdtSTIUadtnka08sZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.0|0.57|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|CJ2yUQs8R1qUIi2DMnO2xEGPaV2J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|202.0|0.604|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|CJJ2VwjH4yYxlR-gNsJ7AjPdGuiV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|199.8|0.483|8.3|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Selenium', 'Au']|['Selenium']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.05.022|CJNh2xOMLCBQjr2ps7nOE8MnE4Ph|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Selenium', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|195.0|0.49|7.9|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1088/2053-1591/aaaa88|CJQYyalPuMNW-DaARpGNMWKnqESo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|203.6|0.735|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|CJSAQ0fzNWaThX0_pIn5d2x1iZTK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|224.8|0.77|18.27|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|CJZ1pFADRPPhcItlgCyirwsZN-Iz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.0|0.67|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|CJoz4s59wVp_PWBwpFNAOaYhCZeS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.3|0.757|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|CJqD6tBgwVh_4vuHEB1ezPb2e2FK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|206.8|0.72|15.13|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['IDT6CN', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|CJsFZK3WSup1E3AHr6-SQ401WYbE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.05|212.7|0.721|16.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|CJtBboNoTc6OOStTdsuhb5xfDhLI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.0|0.7|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|CJtF3FZVDxlJbZGbLChXJSKZWOxN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|157.7|0.5760000000000001|6.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|CJujFHDti1yFrgYzRb5hUKLF6HbK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.9|0.645|13.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|CJx0lIKYmRA0dD3Dj4cKebYEpgeZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|206.9|0.7|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|CJy4CBmxIWwQMMir-FvvUjxsz_Hb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|219.5|0.74|13.48|['SLG', 'FTO', 'TiO2-c', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'WOx']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|CK0VaOzrG84mhtF8cFDgXKOZMBiI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|221.2|0.7879999999999999|18.35|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|CK6Lg7VXsO5jY3QJpZ0-I_NWf9FB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.54|34.1|0.34|0.73|['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; TiO2-np']|bulk|https://doi.org/10.1002/hlca.202000044|CKV31Qy5_nl6DqJrR2z5bLBU0_98|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|163.2|0.46|6.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|CKodP1yzlYwbRWvdBxm1a2uClf4v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC2ClCsH11IN3Pb|CsPbC2N3H11IBrCl|CsFAMAPbBrClI|1.7700001887371206|1.23|200.1|0.785|19.32||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/smll.202203319|CKwDpW9Y2bejRx8IhLlKtMqzwSYj|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAMAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|102.3|0.647|4.44|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|CKy2KyjxiKDKVgqPC0ADLP4bHWYx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|165.0|0.81|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|CL1oyyc2VCCnGYsqRiLn0WF0YYqu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.942|235.2|0.68|15.07|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.032|CL4KWiDybL8HPrANhVAa4InWqgBi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br19C140Cs60H700I181N280Pb200|Cs60Pb200C140N280H700I181Br19|Cs0.3FA0.7PbBr0.095I0.905|1.6300001738087604|1.015|220.3|0.762|17.05|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|CL9Z5ldjOd0XdscHqKML-OSNjGHF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.625|11.5|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|CLRWZi4DIiLMOS-duKGfMebz1MK9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|183.0|0.47|8.4|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|CLUplfRquvggKqElzlHxbAkPBmZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.99|0.823|18.14|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|CLV7vNDqQe-5TdlS9wJKqb3Lbyz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.08|228.7|0.7120000000000001|17.6|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|CLXtmIRAkK3w2N0Kp24MWpIHGRnP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.82|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|CLdYUKt6np_FTALqH7OKk3SlL5gW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2600001343552385|0.273|173.6|0.391|1.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b00118|CLkDlKIrX5bkYjSsEgxmnVAAuBsQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.4|63.4|0.753|6.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|CLufWivcKa1GGxjAlMRcBkenxhC0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br3C18Cs2H91I57N35Pb20|Cs2Pb20C18N35H91I57Br3|Cs0.1FA0.85MA0.05PbBr0.15I2.85||1.11|240.4|0.787|21.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903009|CLuoeRrXv4FEw5Sv-RY4qeQcAx17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85MA0.05PbBr0.15I2.85. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.118|224.33000000000004|0.772|19.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|CM3YqK7avuj5nf8XQuVdE70fxAqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.098|208.1|0.691|15.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702256|CM3ecplaZ-qzmCkDFF_xhJIz4vIm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|197.4|0.7809999999999999|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZrAcac']|bulk|https://doi.org/10.1021/acs.jpclett.6b02843|CM6MOk_ZtebR_d3wv7CmWL_e-j-Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.027|198.6|0.614|12.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|CMFuN4dx1s_t57qv-WKd9PiOCQAm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.88|201.73|0.625|11.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/cnma.201900097|CML8574bGrD9o7vHMowMw0eQRIZh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.9|['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00183a|CMPpHNb8KUURRkPHxKQRo7TN4iHG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|217.2|0.657|14.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.105|CMRj7Qp_eLD_YMZAqdz3WR8myVVY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|177.3|0.63|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|CMiXVYa6XDgyifbM98AAcICnlTOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|201.0|0.73|13.06|['SLG', 'ITO', 'MC6Cz-9-NPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['MC6Cz-9-NPC']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.005|CMlYOuY-916Imt0Tc9uJsik71rxZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MC6Cz-9-NPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|122.0|0.5660000000000001|6.01|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|CMlsbhVwgZ5ajkXgnN9yjXAIxjtT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.1|0.72|10.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.06.020|CMzDpe5sabx8uy4lvFWtEcjMD0MY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|176.0|0.78|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/aenm.201601822|CN7p-BQNDgPUnJTZvKC0vGXYSen6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|205.3|0.63|12.17|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04053e|CN9S7xa8nVqLf5AwMGOP73EtM0Pa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|104.6|0.6|4.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|CNDF9DXSR8L05BJIGY6lf6grQEsp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C19CsH97N36Pb20|CsPb20C19N36H97Br60|Cs0.05FA0.85MA0.1PbBr3.0|2.2800002431190025|1.4|62.400000000000006|0.65|5.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01920|CNF1dNEHl3bAhCSd22l70i9qlvV-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr3.0. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|190.44|0.6890000000000001|12.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|CNR8blmOuQGh7Y-d4Fv6R9e15we9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.983|200.0|0.72|14.15|['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nanospheres', 'PEI']|bulk|https://doi.org/10.1016/j.jcis.2018.12.001|CNSlNhz_QC4xRIElp0e8E2yfeUyE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|231.0|0.7040000000000001|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TDT-OMeTAD', 'Au']|['TDT-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7sc03543h|CNWj-zDM00Mb0r_AXkIKKDpcOfte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TDT-OMeTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|193.2|0.69|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.018|CNczAfnKv8lK7_y-t5r6gnpR15HD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.118|215.4|0.737|17.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|CNquR6zc5NS3DTrFnUIGe63gt7gB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.85|179.3|0.45|6.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800064|CO0ppDFgVcFSlA1aNcSMAOIF8CtA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.3230000000000002|116.8|0.7|9.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135325|CO8xLwAmtt6oV5or4TMf2to8-P7m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.98|168.9|0.74|12.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1021/acsnano.5b07043|COG03GmQm3-SIBHaDnSgpQvgZpsy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20Cs5H100I66N40Pb25|Cs5Pb25C20N40H100I66Br9|Cs0.2FA0.8PbBr0.36I2.64||1.08|212.0|0.647|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly(ethylene oxide)', 'Carbon']|['Poly(ethylene oxide)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804284|COHqKLQMADG0cN59irtumaXUU-KL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly(ethylene oxide)', 'Carbon']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.4|0.722|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b03304|COWTvk0KmTGNd8x9WTzxsTbW8Lb_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|212.2|0.76|16.63|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|COeMTzlmkkJ8VNFKvhWxD32p1a87|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|174.20000000000002|0.7809999999999999|14.29|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b10022|COs5w1NP2CDIl1-VKj0zj9bFN-Rb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.073|199.5|0.7040000000000001|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|CP6ApiQAzMrJ6r4SKAUe9DnwAWnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.0|0.723|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/admi.201900434|CPGHTY3kK9ZPclxa3eaaXkHOnhB6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|120.0|0.31|3.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|CPL3kDsEI7kuSgntjy9zHIlwwoQz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.562|109.6|0.497|3.05|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|CPQMZ-fXt995TOE3cWgp4_KSB8uj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|119.8|0.39|4.23|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|CPVB53MTjBvO72TLTl8nTDnHxIY7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|175.2|0.78|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|CPYdsv5GaLpl2N2F6n-gu8C1s7zW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.06|205.0|0.7|15.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.03.073|CP_NzI6DglmqnayFGrWfRSG2t07t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|233.7|0.7190000000000001|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|CPd3fZQ4U3Bmrl4e4FWaYccoBr5y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|175.2|0.48|9.08|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|CPe3FKAFhMsGVlEMmAj2vO5A5Ae5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|208.9|0.75|17.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Ca', 'Au']|['H-Ca']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.11.071|CPokVIiVgfdFU8dTlsqPUlS3aQ4L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Ca', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|205.6|0.69|14.41|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|CPsmShz4_QhbSlpXytrsfVxslcpe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|184.0|0.5429999999999999|6.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b15175|CPvLRbeBeLT8g5ADIH7V8yVTUv1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br14C25H150I61N25Pb25|Pb25C25N25H150I61Br14|MAPbBr0.56I2.44|1.6800001791403176|0.99|195.0|0.7|13.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.06.049|CPwZhPRTNfQET6iS7z9w_XWSvUGb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.56I2.44. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|188.5|0.7020000000000001|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jacs.5b08535|CQ-2CzoFqOJy0ESrHQL1P3Wzl2-6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.735|16.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b02297|CQ51AXGySEjPPIpsB8K55iBJozcd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.3|0.66|12.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp01936j|CQR4Jewj5N-IHkQmLOrhpiskg3AP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.62|12.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5cp03803k|CQTOw0-b25SLHa9IJ5n9fKgwdDhN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.15|217.0|0.75|18.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05837g|CQ_GghNalsWVghq1wp7s4ZKkFMBj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|199.5|0.63|10.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|CQpP9V2285rUGnLUNz3h1pUOB85f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|235.8|0.76|20.05|['SLG', 'ITO', 'PTAA', 'PS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|CQuNa31WQLWGH3jXrf9xXX77bIat|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|226.5|0.75|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|CR3C7HNjisxsAliJKHzLiOftllQL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|164.0|0.613|9.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/am.2017.91|CRZJBaV8WpwRSU8OOHsIxZM2Icaj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.962|246.8|0.5720000000000001|13.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|CRbHrx4hnt4cNogBMusxwWWKLqxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|193.0|0.69|14.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee00162f|CRe2z_-6YXfxhKzivOobtw7DstrL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|21.0|0.64|1.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta10422d|CRtL3viJlMnNbRAqU6jUKPaXkUpB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|183.4|0.75|12.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|CRyntNOy_cnelvGdr9UT5pbd3vLu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|CS1uJ5UUTN-tloxnRa9VoOJOeTTh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CsI3Pb|CsPbI3|CsPbI3|1.7700001887371206|1.25|138.1|0.75|12.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1039/c9ta07143a|CS3PYBbuSRTnb9RSv82gLjqtTkVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|206.6|0.7040000000000001|14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2']|bulk|https://doi.org/10.1039/c5nr08344c|CSO-y0ZHuwnaMOffZjXRFCSKtOuE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.96|212.0|0.68|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|CSPmdJB-v67m3XapU6zlK3s53D3y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|140.0|0.61|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2018.01.006|CSdYQrJDPBrkQ3MJIJYPb0NHYpD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.04|237.0|0.77|19.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|CSj5g_AzQyGT2I-4Cn8tMLrpQDa1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br30C95Cs5H484I270N181Pb100|Cs5Pb100C95N181H484I270Br30|Cs0.05FA0.86MA0.09PbBr0.3I2.7||1.0|230.0||18.33|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13876|CSkTcl2mEkvzQpltHp8seFZNfVYE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.3I2.7. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||1.04|189.8|0.72|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|CSlVF1SecaPVjSDXcQULy7Y9195w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|209.0|0.669|15.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1109/JPHOMV.2018.2877002|CSm1ARcEU0ieOgeqLHmhNEwRMcAv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.1|0.68|14.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|CSmPurPPhBb4JIouwkeQ-O6vTa6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|207.5|0.612|11.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600229|CSt79ZGXy_CY-4aPYW4j9MmrnWRz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|215.8|0.6609999999999999|15.23|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|CSuQVXxGKBLpfXJ7gj-KrQBNYYaK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.425|17.0|0.38|0.27|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|CSwlXlHl102S36nwCEzVGpuwonSq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.913|187.0|0.58|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06232f|CSwsuSAD58bvGU7XH8cil0RPIHlI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.5|0.52|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|CT96Di-oXI5BFKMEElQKot9lzbOD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|151.6|0.68|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|CTMuN6RMA2t_JeTTO-aJEHVOIrJF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|239.0|0.54|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09174e|CT_wnSz3xX47qh4Tzete9eFWZ2Mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|217.2|0.73|17.31|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|CTb5PF2puajRaK3C4VIf0jmZ_pFh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|214.0|0.5|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ni']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp506991x|CTdhhFuAyLRHcNo9VJnOlsk89NDK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|188.0|0.59|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/er.3485|CThBfc0MKmYSRsUvHRhtDxxoMQeg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.9|0.74|18.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201803043|CTi6y9KKdPNppaUc4CIkLO2zwFEj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|152.0|0.419|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|CTna6R8YiYWtNMq5JMSyIUwu_PRl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.02|196.0|0.76|14.9|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|CTqTnem9xP66sScTptGw98XBcPxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|175.0|0.733|13.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|CUA77o0jzCgph3QZ2844yyfD-1MR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|230.0|0.527|11.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.028|CUAjvtYpJC6DEZRfgiZOA7DtrZll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.0|0.777|19.2|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|CUBcicZKP17wovl3FqMU-Si7Qzo6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C92Cs80H483I210N161Pb100|Cs80Pb100C92N161H483I210Br90|Cs0.8FA0.69MA0.23PbBr0.9I2.1||1.14|163.9|0.74|13.83|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3 ∣ ITO']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acsaem.8b00926|CUFbmlnsseNha-xkvNCbUicDs_c9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3 ∣ ITO']? The composition of the perovskite layer is Cs0.8FA0.69MA0.23PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|211.3|0.49|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|CUGkDC8woGWLUxB2VfDaj8WXz91A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|152.0|0.55|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|CUT5XOlIjIIt4-RxV356xMZG61NE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.105|218.3|0.759|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|CUVjQyAvjPPXAh00te87Q8LUoupw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|0.21|0.25|0.0|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|CUlueWItNpnbwqACadbyv6p0QMYC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|189.2|0.63|10.06|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2016.06.044|CUrd-f8fNdDF-CJSM73FMTTbUtQo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASn1.0I3|1.400000149283598|0.38|230.9|0.6|4.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnS', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp', 'ZnS']|bulk|https://doi.org/10.1021/jacs.6b08790|CV8Y7QrPkC_yt9LaEjBlee907Ti0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnS', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASn1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.0|0.664|14.0|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|CV9NrwlCv0uhlhM1FeMO4aErkhVG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|166.5|0.757|10.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|CVC5UtAH3XXRswORmoOCahcfUhNl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C22H68I16N6Pb5|Pb5C22N6H68I16|MA2PA4Pb5I16|1.670000178074006|1.11|184.8|0.491|10.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.8b01153|CVDRFbpWGp16_KM9_JyQzLxIJGR1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.3|0.75|15.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta10510c|CVGdo-ZZK14Xy-Ji2av78CpHA8FS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|196.3|0.528|8.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201700007|CVH3ILiHWfaaahldnaKjNTeEBzgu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|213.46|0.67|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|CVH4qTwSwCERkiTthBoFgNF2VkKv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|236.0|0.68|19.2|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|CVOzgh3ShI2GmX03Tl-aul2SZ7Sp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|170.0|0.62|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b03685|CVT4IbCKS0aWLLAVVK0xqdrECrGp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|222.7|0.72|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA01824B|CVWXVxMwYAnrF1lb6bWMwP_CCiwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|36.1|0.63|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|CVdhOU-ljLfNd7ELDJG5XZTGkIee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|130.0|0.63|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.038|CVgkKCp23mGcykW3hBLiRqipXyam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20CsH100I60N40Pb20|CsPb20C20N40H100I60|Cs0.05FAPbI3||0.81|180.4|0.66|9.63|['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']|['s-PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.12.103|CVtXt0mq_FV6BDt4u28t1qXDw8yH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|216.1|0.711|16.67|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|CVxjYo87K4THwG33XXbzr6GjTCak|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|CW8WvYMgTpGT4ukDgP16Cxa8luJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|91.0|0.502|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.07.014|CWAUEz3FgLCnVXku609nA4_1U3T9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta00398c|CWAgXQCUZCtdoMX3H_gkuCLHBMKE|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|209.5|0.78|16.1|['SLG', 'ITO', 'V1036', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|CWCOrzuGeXJiX0Iy-Sm0YigrVX0B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.58|24.8|0.422|0.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b16349|CWCkaY6kU_3yyq6ueL6eE17eof_V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|211.8|0.7390000000000001|16.71|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|CWHlB9qPTbsgmKeVeXSrgIXN_jmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.011|145.2|0.528|7.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|CWTLMd9vPHgyl2QL9e_Iiz9EhqJT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|146.0|0.7509999999999999|11.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Ag', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.5b03189|CWgEmQMCZ64dlWlfVWeTX7-jN5WZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Ag', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.4|0.61|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|CWmMWQ-swuEGQIQhsfVsyTXXuRfO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04051e|CWuWv6yapEydwAsplkz7wLaUE7jS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|241.9|0.77|19.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|CX2yT4lyRKmpgmr1eGSpsROELieB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.73|129.70000000000002|0.5429999999999999|5.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|CX9KC55R-ny9HDbEzEAPBHA17u-1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|193.2|0.7170000000000001|14.64|['SLG', 'ITO', 'TPA', 'Perovskite', 'PCBM-60', 'Ag']|['TPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01831f|CXPO6iKb-6qrXJzmmPnMKY8Wca1n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.8|0.73|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201401229|CXoOOcEpThEcAGQHfh5d6-RDJI5A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.91|138.07999999999998|0.519|6.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|CXpEmeJeXQtH9sDfkfAkynEb3vmw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|92.0|0.633|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|CXpP8RFSouAlwEF4ku2NtoJabIcm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|223.9|0.75|17.7|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1039/c9ta04043a|CYBSChOd7fJfdMtY9VywuLNLGxt4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.11|225.3|0.789|19.95|['SLG', 'ITO', 'PCBM-60', 'ICL', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60', 'ICL']|bulk|https://doi.org/10.1016/j.nanoen.2019.104098|CYButHfLJJsAz7pPCG1gPKBntez2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'ICL', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.065|225.8|0.7559999999999999|18.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|CYGvFBSNfeYwBInImNflToDpOwhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.613|82.5|0.5329999999999999|2.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/anie.201405176|CYcwxTJXmIeQjk-sdFMB9MibFdls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.67|104.9|0.46|3.23|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1007/s11082-018-1652-4|CYjZdcQ5dnjcRfzDj-gJm62BdF7L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|163.6|0.595|9.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.elecom.2016.04.013|CYqMdpluiBt3cxjUsiDPefq7xFqz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|128.7|0.66|8.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|CYtEYbxCisEH5E-PWkueJJFwdRRS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.0|0.75|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|CZC2gAzIg9Sv3_hdjPqW7QBNVbbZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C47Cs3H235I150N94Pb50|Cs3Pb50C47N94H235I150|Cs0.06FA0.94PbI3||1.01|171.02|0.77|13.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'ITO']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903897|CZDgCjjeUqT5_za2z9klUUXFSJiH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'ITO']? The composition of the perovskite layer is Cs0.06FA0.94PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.121|203.5|0.76|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|CZI08doPAExFzSxfysSQMq__zlGg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|CZKmAESUoDq5iUu9cAAZU_GodCrq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I70N166Pb100|Cs17Pb100C83N166H415I70Br30|Cs0.17FA0.83PbBr0.3I0.7|1.6800001791403176|1.191|187.1|0.789|17.57||['Spiro-MeOTAD']|['SnO2 Nanoparticle']|bulk|https://doi.org/10.1002/solr.202200252|CZXJwcgtKu0UyffpdluK55lL_Ikk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I0.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.104|129.1|0.685|9.76|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']|['Co3O4']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800315|CZZQDVFXdfjILirvHWz6Z9-LpXKW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br51C20H117I9N23Pb20|Pb20C20N23H117I9Br51|FA0.15MA0.85PbBr2.55I0.45|1.5300001631456466|0.019|10.6|0.637|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|CZlBdyL2ZZRNkZE0e67Qnj9Jf8Z5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr2.55I0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|237.2|0.6759999999999999|16.5|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.7b11795|CZx48__n425gnD2yRyNvFjRg-oej|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C48H224I15N36Pb5|Pb5C48N36H224I15|(Anyl)2MA34Pb5I15||0.82|104.6|0.693|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|CZy5w-itjhlDox1eeOuMIBqLxeLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Anyl)2MA34Pb5I15. -CH6I3NPb|PbCNH6I3|MAPbI3||0.68|142.20000000000002|0.64|6.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4991633|C_14a3J6jNTYSXZFzBcC1BBcsrQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|144.0|0.6|8.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn506465n|C_6YjVhwSYU6BvXqt1gNPp6Pk5Kd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|214.4|0.73|15.3|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|C_7H0yoXHvZoH4sPRYRv1P6ZxNc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.91|209.3|0.65|12.45|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1674-1056/27/1/018804|C_8HN8Wy6XMu0VkliCgql9HNUksF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|224.7|0.579|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.023|C_8KWuNCVQYYW19ANLglwWBqQJHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|1.012|197.7|0.655|13.11|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|C_8WgANZZPJEN-cGlVU30Uja5ELk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.7|0.7659999999999999|17.21|['SLG', 'FTO', 'TiO2-c', 'Zn2Ti3O8-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Zn2Ti3O8-mp']|bulk|https://doi.org/10.1002/cssc.201701779|C_GXiPVOWeCl58eT-g5hRW4xnIqI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Zn2Ti3O8-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.68|9.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|C_HgDarOxqKeB_oj9kYGBjlsOodg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.61|250.4|0.68|10.43|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900413|C_YHIET4i9JeloHrGQqz-d9N2jl2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.5500001652782691|0.59|189.1|0.627|6.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpclett.0c01859|C_ZQ2iKSu019HxUbS2m0XhHmcOda|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.9|0.7979999999999999|19.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902021|C_on295S7TSSqxQt94CDtD7kJaL1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.828|161.0|0.56|7.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|C_sTxN1dQXXS4j-NeQbO81438OUs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.6|0.691|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|C_vwF1Dj9ddw9I0SV9Vb8xQ4m63U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.76|101.0|0.599|4.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1039/c8ta06976j|C_yLQgRnN4vj6fsIUxZi9xUG507g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.4|0.622|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.003|Ca0px8iozgH8WOWKTAqf60RShfkl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|234.2|0.762|19.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02031|Ca8HH_N75nTqFGUqHfcJTBJIRFZt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.9|0.733|17.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|CaD8tEhx800BjN1QZeC6HgI0hfqj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|164.0|0.41|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|CaNewMXCig7wXCnTS6mtreReSJ7s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C94Cs5H496I260N162Pb75Sn25|Cs5Pb75Sn25C94N162H496I260Br40|Cs0.05FA0.68MA0.26Pb0.75Sn0.25Br0.4I2.6|1.3600001450183523|0.81|282.3|0.754|17.08|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201804603|CaOAoNsCuueLAye9fVDxpClxK4vT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.68MA0.26Pb0.75Sn0.25Br0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|211.1|0.74|17.34|['SLG', 'FTO', 'TiO2-c', 'BZnTPP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'BZnTPP']|bulk|https://doi.org/10.1021/acsami.9b17580|CaV7jJnEUk49SqfVhYfeKQITVfuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'BZnTPP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|247.0|0.7|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|CaX28PuCI5tIPxlEKVIPJ7yEFAN3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|187.0|0.78|16.0|['PET', 'AuCl3; Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06465a|CajyJuVZzimKC1DANrAxRd7-DABl|a perovskite solar cell with the following device stack: ['PET', 'AuCl3; Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.5|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|CareMsxQDd5FZkfvS2RpxO7W7t-c|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|196.0|0.755|15.51|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|CaruZ4rntQZacN0mINYVHzcNQMxW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|218.6|0.605|13.35|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.11.021|Cb9b3V6aGEfdKq3DpNsp7IgQ1eGe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.5|0.62|9.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01768e|CbDHJ2ebkxefrvJZBOsGnBBJ33Vm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.917|201.0|0.753|13.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|CbLCe3YXBsL71-G_UKKalokdxEUk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|2.4|0.35|0.1|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|CbRVFyC8yVnqyrLI_4s2kq1nwmnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.11|226.0|0.79|18.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b00555|CbXoooaGzcVc_T5ymm2TD2kgiO0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.902|172.8|0.45|7.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.02.007|CbjJrqax1YUngGiEc_PAhbPN2N_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.0|0.7609999999999999|16.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XMP', 'MoO3', 'Ag']|['XMP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|CbpvptYsQJdx0xtiBpdhY2iZW8RU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XMP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.069|120.3|0.7|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|CbqbS1XO3Y2M8qIoddeQGyeWPsoz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.8009999999999999|191.9|0.56|8.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|Cc3h7VUyVfID-XIKX8MIaYdEl4Ci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||1.06|66.8|0.489|3.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|CcDsctYneEk96Rt7AtsH_-sQpm3E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|239.0|0.74|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|CcJ9FsrIrp8F9RSssFZ0ojjUSEJR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|235.9|0.595|14.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.028|CcLRaY2hVSC3rNPrI4nMv6lUrq2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6380001746618096|1.05|169.0|0.7|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|CcMiFyTZAn52WXV83hQJMZZovJR9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|234.0|0.77|19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|CcPUkXbf2r9vlNSxqcMsVvF4nhfy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|221.4|0.802|15.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|CcVYnKZjDbqYVxp3VJ7VskPJQCCM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|229.6|0.7120000000000001|17.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201804799|Ccf1lfee7WxH6HZD2oDupJ6-AHSI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|170.2|0.764|13.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|Cck0Du0ceM92uZ6kSHHJcUW8QgwL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7000001812729404|1.09|195.0|0.65|13.8|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|CcrCgOOGy247GCxBrNJBdhQxhV9_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|154.1|0.667|14.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|CctE7h8R-hjrBhNSo9iAVxVPGN8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.6|0.79|16.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|CcuT7xsL5FiArtmav5F58zicBYFq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|230.0|0.7|16.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanofibers']|bulk|https://doi.org/10.1016/j.surfcoat.2018.08.039|CdBhc7EnI-Bu7WlFNJIm1Cm8P93D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|177.0|0.715|12.5|['SLG', 'PEDOT:PSS', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEDOT:PSS', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.10.032|CdPJmCAORelYdgcLBJlQ6NKjT042|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.855|83.0|0.4|2.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|CdQ8nAZSsWYSyQzw3g8KI--8kWgG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.071|215.0|0.684|15.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|CdV9GIUm3zfAzi8zPn0wbu4v1MpV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.0|0.713|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|CdWB8hwvvsPY585AIBmYhQ3axg-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|161.29999999999998|0.705|9.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1674-1056/25/2/028402|Cdqivq0vyIDE7vIcVRsg3GFGO71Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.1|0.69|15.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.10.036|CdtOh8xCwrPmx_qnpdAFIakwh4oA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|138.7|0.66|8.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.018|CdtW_krnwKtLiIH8iQbS6H9voO1J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|196.0|0.58|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P2', 'Ag']|['PEDOT:PSS']|['P2']|bulk|https://doi.org/10.1021/acsami.7b10365|Cdx0viv-qXxFVotkgBDOjl6fkwBc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|183.0|0.71|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.orglett.8b01295|Cdz7YLTmlFyuri1pDkEwCJZTpLQI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H600I297N100Pb100|Pb100C100N100H600I297Br3|MAPbBr0.03I2.97||1.015|210.0|0.73|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|Ce1GaPM7DMrmMj8VFEA3Vbwt8l5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|227.0|0.62|12.71|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|Ce3eINYfDJoeDcFBI3OHLbdWWVD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|233.0|0.72|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b07513|Ce6SSqbL2hC9O0VlXYkMCHCOTU66|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.074|209.4|0.63|13.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0403-4|CeCp2iVtzXLLij8EBw5PWITvCSfa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|161.1|0.67|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403719|CeQSsZXgHDj_DBzk-PyiojUgrTP7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.5|0.63|14.12|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|CejiYWpX-WiHNXHIlfKOfzNS6KVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|211.0|0.725|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01720c|CelfcRxojqJ4Mfu1rFDwngWW3_fV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.0|0.624|11.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1038/nphoton.2013.342|CempHY2zMGI62VTUgoy_5rPMwFnH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|234.6|0.75|18.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201900509|CesKp2QiPzU41UD3DVmJiWJQbTRK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|164.8|0.39|5.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.08.009|Cew_LAtI0qw8eCzL4WFMgY9yQSVI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.08|122.4|0.67|8.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Cf1PhzAe0xAJDdjiAV_H45DJMpxo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.8590000000000001|103.55|0.685|6.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|Cf6SPp1Ov1fy6aSMRNptYKxwRMiF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.2|72.30000000000001|0.477|4.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano6100183|CfNBXVgnscQSwETYm-h2nGFu4pDB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05254a|CfOOfjDL4q6rkQVNGeFvjE47Cs6Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|215.2|0.565|10.83|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|CfX6e0YG5a1j2M_deYd-IkgDDUqi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.7|0.74|16.13|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|CfcTZpwyHb3CrlRrv5JjNSRCaFuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.6|0.74|16.52|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|Cfgkaw2MG649YI69DPE5iVZc_WYE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.7909999999999999|17.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|CfkT71Jip0sqz2AN4Zav3tI75Nof|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.73|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OprTAD', 'Au']|['Spiro-OPrTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|Cfl-NMrg-j1a4JkPrReuBmR3Z8oP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OprTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|90.9|0.28|0.74|['SLG', 'ITO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|CfrH2R50qfACW5ED4A4ZI9BzXQRA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.280000136487861|0.59|231.3|0.58|7.94|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12200-017-0716-6|Cfuyem4mgT-NpU51BUkLRSqrm-FN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.046|244.8|0.804|20.58|['SLG', 'ITO', 'ATO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ATO', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00709|Cg1yCQZapGSBedT0Sqg2Pbd85rxc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ATO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|224.0|0.728|17.3|['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IDIC']|bulk|https://doi.org/10.1039/c7ta09543k|Cg2p1xi566C0lPoCXu29ncMn69rc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|Cg5fhET-bFwVJLxwKAPZrnp4tjDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.08|196.0|0.48|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00358g|CgAfv0nQJnPofZDo_4-f92nIpCKc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.66|156.0|0.53|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|CgCwP3eCmMeEQjdnFwsqNkbdHHx3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|104.3|0.6579999999999999|6.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|CgGkvPLcuJaRNQ9CdvVu-MjLZ2I5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.5|0.71|16.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|CgGt6sTBrdWQdX5FxXDmE3FU2ddX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|193.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|CgKC_ICwBUSoFgwGoexY2qjuhf7Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9747I4980N3553Pb2000|Cs100Pb2000C1900N3553H9747I4980Br1020|Cs0.05FA0.8265MA0.1235PbBr0.51I2.49||0.81|192.5|0.51|7.95|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02391g|CgMgdBHBcFy2K9thqfF_r4PbROIH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.8|0.74|17.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp06953c|CgOyKjBvWKDA6CpPB5DiBFPVajkX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.0|0.733|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00980|CgT3wc86fqGO5iNm6NfdnQCmoew2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|212.1|0.698|14.68|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|CgTc-sRsRgC5Boj3W3PrQeVFSO7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.7|0.745|15.38|['PET', 'Au-np; Graphene; TFSA', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']|['Graphene-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.9b02336|CgWJm0NFxEKdvUKwPUcRLbhOIXuk|a perovskite solar cell with the following device stack: ['PET', 'Au-np; Graphene; TFSA', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|208.1|0.732|15.59|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCA-1', 'Au']|['PCA-1']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801248|CgbjXWBJlGpCfWMvRTlM7hl2WvPu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCA-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.281|250.7|0.5379999999999999|3.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|Cge_9rX-zhN2dqQbTT7CcH_9yG1w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.11|188.1|0.743|15.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|Cgk98bRUTuceHCu_oY2A5SjN7Hkw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|126.3|0.53|6.29|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900389|Cgl-OfOZaiGfFRa2nicHKqVeZr1X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|88.0|0.67|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|CgryQbWNlWyvRuRep_mrpVVZ6Ts_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|230.0|0.63|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b00787|CguUpjQSMBJqXDGvIKWvkp4_E_nr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.7|0.71|12.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|Ch3D321QUpxfr2-XrXYk_b5miNqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|213.6|0.562|12.01|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']|['NiO-c', 'NiO-mp']|['ZnO']|bulk|https://doi.org/10.1039/c7ta07775k|Ch3h77HH1mlDmYnxpPHiwTnrsTPk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|200.0|0.7190000000000001|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab221b|Ch4ZnaVKra2_c24UUJMBqlgcQGbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.1|0.69|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc08269a|Ch6lVFPmG8qRH3lLF41GZFPLi0ra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|121.8|0.2789999999999999|3.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2014.07.039|Ch97njY2kkJT_SsmxHj2PDhIW8nZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.09|225.6|0.746|18.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803573|ChI29a6HMg5FZEXlsbwZCi2PQTrp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.64|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201900400|ChIK5w3973EKsU7OnG11AwQdDujG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.0|0.65|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene', 'Au']|['2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201310877|ChKCfAXjSbXGwqI_zw7oMiqLCps-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|216.9|0.631|13.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01038|ChNBGF6E0BDefdKTDZqzktXcMlf5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.05|227.2|0.7859999999999999|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|Chakxb3_ETZOQtvF88iVjU5ABDaZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.051|218.8|0.746|17.08|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|Chuxd0mOcEJ9psRqODWiEathkZgv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|0.88|163.0|0.68|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|ChxOUTswtR2yb0JEetHUxZvseAJm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|135.0|0.614|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5011187|Ci3FFguocPdTyxL4IubKOvTbGmP4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C100H517I180N183Pb100|Pb100C100N183H517I180Br120|FA0.83MA0.17PbBr1.2I1.8|1.7200001834055632|1.12|171.0|0.66|12.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|Ci9Mq-7p4UeTqxfGvmj1uBGTWc-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.83MA0.17PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.75|12.0|['PET', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Cu']|['PEDOT:PSS']|['PCTDI']|bulk|https://doi.org/10.1038/NMAT4388|CiGrnctiL4cnHwa13w--xdzYv7zs|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|219.4|0.73|17.76|['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta00398c|CiMl2ivqf7BEb41MQ3YFjzPfKIXl|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|124.7|0.73|9.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.007|CiR-agH3cr1zMIxYzAXygmD4wBWe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|109.0|0.53|5.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00635|CiVRmP7QNPTyQD1QdCwGvjf-1Q6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.02|214.0|0.5|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']|['Carbozole @ S12']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|CiWG5ZWDWckeYR343wMHot94hMTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.5|0.75|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'PFN-P1', 'Perovskite', 'PCBM-60', 'PFN-P2', 'Ag']|['PEDOT:PSS', 'PFN-P1']|['PCBM-60', 'PFN-P2']|bulk|https://doi.org/10.1021/acsami.5b11286|CicFLQ6o6kN4ky1jNjvACwi8Pei4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PFN-P1', 'Perovskite', 'PCBM-60', 'PFN-P2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|Cicyn7y-bihFXbwA94VqLyXVHsyf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.0|0.76|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1364/OME.7.002150|CipKK4QciUd035FT6IO7_2WaQJ6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.03|211.0|0.718|15.7|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']|['IDF-SFXPh', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|CixUTjCf4dPNhf6i7Rc-V3KRrQcf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|CiyfmUL9zEjnpZVCDVGdS-NFfXv6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|224.6|0.74|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|Cj8Hgfn5nnoXB98jjWovwDkFKEoZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|200.4|0.67|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|CjBLt1m_W6yfg7Iw_q5cnjAwFRxo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||1.09|233.2|0.71|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|CjFYnYPbJGUPr5CsPvhSrkBsbp81|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072||||11.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|CjOYhZuMehom2_Kg_vOYuaZsxfjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||1.055|231.1|0.78|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12446|CjOlpDM5iOc22lfupvj45VORC0zL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|191.0|0.477|6.05|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['Unknown']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|CjRsZYVcFZLwUi1mQcSyvQtw9c9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.13|184.0|0.6|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|CjTDZtRkStpitgsBKLsHo1WOQNhR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|227.4|0.731|18.91|['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NiCl2']|bulk|https://doi.org/10.1021/acsaem.9b01009|CjU007vFiqKq0LngSRvVFXSG6bAe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.9|184.6|0.4529999999999999|7.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']|['BTPA-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|CjYng0ONvZk5pEjinc_acHZDX71I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.0|0.722|17.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9dt00930b|CjcWEI2vEBMswioX25WMkmuTF2gk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|170.0|0.77|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|CjcXgLIdx0sXlkQ9_0P5g4bK4Wg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.05|228.3|0.71|17.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706923|CjmTo3-vksm_V4IXvdzNt2wzit0b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C50H267I150N83Pb50|Pb50C50N83H267I150|FA0.66MA0.34PbI3|1.53300016346554||||15.5|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.jechem.2015.10.017|Cjs4AWVsM-3HWvx7wNerdZAUbEs6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.66MA0.34PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.3|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|Cjt1JsJ_maLIKHonfec5EUmjXRZJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.01|74.80000000000001|0.66|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']|['X2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|Ck-4jFzmI-1e_DX3-5NDPCURXF1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.933|235.3|0.657|14.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|Ck1gtOaxhmMvqJ_zttrzp82KDtjs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|183.9|0.38|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602736|CkLYYBBXzQPXt3n7cMOUpJbapqWr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|177.89999999999998|0.67|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|CkPG8Lgl2o8iqmuo93xLYMWS1auI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|135.0|0.586|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201504379|CkYuN00MW1chEVS66EiqMYUaDBVU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb60Sn40|Cs17Pb60Sn40C83N166H415I300|Cs0.17FA0.83Pb0.6Sn0.4I3|1.2700001354215498|0.68|154.0|0.509|7.2|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|CkdKwSNNYzQAsVC2ZxQa1eo6A-pe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|119.5|0.3939999999999999|2.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|CkmCDrgHduWqNPHE2KXMhc96wTHQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.18|226.1|0.7|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|CkoZxTaJgBfUIY81DnF5OqKpHXio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|163.0|0.524|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7se00536a|Ckpx8E3eB88NskNanR-2ZOA2vpfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.97|204.0|0.63|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.01.132|Cl0FtAfbKqcrFJzmOYVkxZVoepo2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.123|229.4|0.765|19.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Cl2Z6yg6KaMRYXI1_DmXp0zphSXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.0|0.736|15.87|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']|['DERDTS-TBDT']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201504293|Cl4XFn3ShKhwiI7yvMeNzYOb8XIC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|221.9|0.738|17.78|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|Cl7NedSwagZ87m2Fd12EHKaRYp9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.769|120.0|0.42|4.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M2', 'Au']|['M2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.108031|ClDhHLfIs8ZGXo-B8aOd0MZKbgtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|202.3|0.54|8.3|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800205|ClFYjQYga7HC6R3CLkh6kH61PAoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|197.1|0.735|15.62|['MgF2', 'Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903108|ClMibcz79FCyWvCYNoX4sjMF-s0A|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.11|235.9|0.74|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|ClWQK1QT33Hqs0rzutnfTqN00Vp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|171.4|0.69|10.65|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.02.049|Cld_1LogvP2K32-tUN7RVF-g-Z5m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.29|63.0|0.61|4.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00522|CleHUMgIjnpT7RmZV3Ekz-91KZ8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.93|159.0|0.63|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b12579|Clt4Q-ZpMxgjCbd1kibAv2JYsy4-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|168.1|0.618|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1021/ja4132246|Cm49rTbc-SwBU-8hoZ8O7UE00GRW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|191.3|0.768|14.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.052|Cm6cM4pIWZ_tQNFRcWE_p9drgqb7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsPb|CsPbBr|CsPbBr||1.25|58.1|0.657|4.77|['FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ra00288g|Cm9gXLVldcMDsS_22wkJ9ejb_SYE|a perovskite solar cell with the following device stack: ['FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|160.0|0.66|10.9|['SLG', 'ITO', 'Spiro-MeO-TPD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['Spiro-MeO-TPD']|['C60']|bulk|https://doi.org/10.1063/1.4889843|CmCSfQdMl5bRGNLQWwn0yrMp3Ssp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeO-TPD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|220.8|0.67|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/anie.201912051|CmDWcfu5Qbil-MqLN--kjCIqReQf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|226.4|0.71|15.19|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|CmE2My98h45nt_SGIH9up5FX_hOu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|216.9|0.7509999999999999|17.16|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pip.3205|CmIW_231JW-E9gLw3oZYKPH6x6uu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.000000213262283|0.675|30.0|0.51|1.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1179/1433075X14Y.0000000252|CmJZ-otFhojn1f-MxdgmY4D8ny1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.5|0.648|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700536|CmQlJmRo-8jIigO1qkGyrCK-nfge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.802|141.35|0.775|8.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||CmacKJxjjhO0khAap3kmDbAzC-HL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|167.60000000000002|0.67|10.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01200g|Cmhbj1oyF4lpAKiQuIpypc_QJebu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.0|3.0|1.7|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|CmjU_Zjllg1rvYHszhnM4Wj6WTPI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.11|217.4|0.711|17.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|CmjjhpTndAnhhTfdy_2snSMY4KWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.9|0.706|17.1|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']|['TPTPA', 'TPTPA; MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|CmleGmORAKegMuXjWl-_8yv1eYTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.0|0.7759999999999999|17.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.064|Cmn7CGzmknF5sPGLj4smZ_HvWzK_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H11I5N3Pb2|Pb2C2N3H11I5Br|FA0.5MA0.5PbBr0.5I2.5||1.09|102.8|0.7070000000000001|7.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|CmxIqkb22tXYMkVBwH11-qDKOyMa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|209.0|0.54|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.190210|Cn0Kk4895QZNcpMt01YxliiE6doo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|117.0|0.71|7.1|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['WO3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8cp00645h|CnBFv4yNGxgCCIDaVcVJ7a_CM7E_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.11|221.0|0.7490000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b04949|CnU9eU_RLXYQosogCsWtILwlGPb4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|147.3|0.22|3.18|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|CnpqmjkpGlASoJ8vpgDSiVZgdjJZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.9|0.7040000000000001|13.09|['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|CnzZL8QNRcY7StXT-2mbVOFfZuLt|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|0.021|10.9|0.777|17.87|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900231|Co3WuDzeTVyiJLYI_EOhye4a8m1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|95.0|0.35|1.7|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|Co6CCBCWIQdWp81gYfrucwpwi_z6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.03|220.4|0.61|13.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']|['Carbozole @ S14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|Co7CsH0AhvhouDQFe_C_7EHEq7pJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|222.5|0.75|19.9|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|CoJQuCVHajIb6v8P0EZ-MOUBO1Ni|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.9|0.7979999999999999|19.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|CoLBJ2GjxghKB2_S2oOgxtEqL2vQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.05|214.5|0.747|16.9|['PDMS', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|CoPHbFCe1p-ryXAday9NXM21Nieq|a perovskite solar cell with the following device stack: ['PDMS', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|150.0|0.75|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|CoSrhWtOZT4rDRYCTaQvGBn-IkkL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|136.9|0.41|5.28|['SLG', 'ITO', 'Ti3C2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti3C2']|bulk|https://doi.org/10.1039/c8ta12140k|CoXcKKpV6q1JRTF7b0dV06sF1KEe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ti3C2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|165.0|0.612|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|CocH4rBXXfefSyyAKhDlF6IhUvsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.81|307.0|0.7|18.2||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|CocwPFCrc7bBCK4UWAkpK5P414V5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.930000205798103|0.9|106.0|0.52|4.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ta05118g|Cofx2fTacMdj4azicnjoQwf41yCj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|208.1|0.7659999999999999|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/chem.201800460|Cor39N8V1wnafpWDBwfjwbt0oAMs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.15|225.4|0.785|20.4|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|Cp6hxLriIqjzLCinKoi3ttfUy657|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.79999999999998|0.73|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|CpG3u-Skc3JLtUCdYByTwvvAUxHy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||0.68|152.4|0.57|5.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|CpIF11i_S64-ikotEk-jwLg_AkL-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -C5H30I15N5Pb2Sn3|Pb2Sn3C5N5H30I15|MAPb0.4Sn0.6I3||0.57|268.29999999999995|0.512|7.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|CpKGmZ_zb9hPyEpmaotVJuFz2Q_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6I3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.11|249.2|0.777|21.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']|['TPFPB', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|CpSYT-k05hZslu8hI5P_LF1vFpMv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Ag38Bi750I2375|Ag38Bi750I2375|Ag0.152Bi3I9.5|1.8600001983339236|0.69|60.1|0.501|2.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|CpXNM5Ht7CQ0rhE_t4Pl99cKtqry|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag0.152Bi3I9.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|165.3|0.54|7.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4891181|Cpd7vgwbz56HNXyPPROha5R9Isr-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.07|169.1|0.77|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|CpquiZFP2dv00aJuKrnn4i3pJYzA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|193.0|0.59|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/er.3485|Cpr-QFmP8gEPr8p-2dzRS-7oGtFE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C50H258I125N92Pb50|Pb50C50N92H258I125Br25|FA0.84MA0.16PbBr0.50I2.50|1.6500001759413832|0.99|217.0|0.53|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|CpsEb3woD7Partg3XsFYNtKNE4Mg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|172.39999999999998|0.774|12.04|['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|CpzoHiWkP6OvVZ8OzrrMnuUkCuRC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|201.0|0.75|15.58|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10773|Cq0JD3yTYvogTq5DYvXpb8yQp2XC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb7Sn3|Cs3Pb7Sn3C7N14H35I30|Cs0.3FA0.7Pb0.7Sn0.3I3|1.3000001386204838|0.68|244.1|0.777|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800997|Cq50leMp9mbiqjRuzfJMh7q2i329|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7Pb0.7Sn0.3I3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.43|64.0|0.67|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO8', 'Au']|['SO8']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00077|Cq58SjkY8L8mTPa0eLM-M_W1qEQm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO8', 'Au']? The composition of the perovskite layer is FAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05541f|CqDvE01c8mn-paZL2aR-KsFwJ0lh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|112.2|0.718|8.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|CqF879XJLcn38UWqPpz01RQ6JFvf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|233.0|0.8|21.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803428|CqFyVwRQmXyOYlpFDrroeK8KfbPJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|228.6|0.765|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07076k|CqNpEwtT80VdMuE6kE633E9JdAnP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.66|265.0|0.53|10.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|CqOz5RuYJ95aqOhAbplXox_dkgOM|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|213.5|0.76|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|CqQZ6g7LdolzeAd6lCKCDNWPFghH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|252.23|0.64|13.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.3390/nano9030326|Cq_djOdHWgtOJmVGfvs3mBp1lO8g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.11|229.0|0.76|9.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703432|CqcwNWRKt3H0JG0lHadfdDzIx4tb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|206.1|0.629|12.97|['SLG', 'FTO', 'Au-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ta10715j|CqdiHhyB5wZgFr5lS-uPF6xRzjz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|167.0|0.367|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|Cqtsyz69sBqWmdFNozhLxch590OU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|229.3|0.75|19.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|Cr0MaDskEESY6MC32_BOQVacug4e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|164.7|0.68|11.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|Cr49ZgF1qlP2B0pElHbOgtUCu4z-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|184.2|0.573|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00965g|CrHIbaN2ugzPFUDKwvd8hTWJwdub|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|224.6|0.722|17.92|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|CrHX8uRn7Md3RGXWckDo1mvI5ckI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|163.0|0.43|5.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|CrIxKL7KhnNSmZA9wOmFYxdm0flF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.081|207.3|0.7829999999999999|17.55|['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au@SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01306|CrXmP0Fc_cku5J4TKMytYtQfENwk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.891|215.9|0.49|9.46|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|CrfVxX1z5-kyTrrDFVpMru5vsPl9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|1.04|217.9|0.581|13.17|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135197|Crg90hTP7oTHmGkNLAzb-U_vv8O6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.95|179.3|0.6890000000000001|11.74|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']|['18-crown-6 ether', 'CuSCN']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01968b|CriLyVuliUpp4TaIKGmi2ZR1MUnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.37|77.9|0.81|8.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|CrjAy_7gaf6dk_tyfn7KqenUozCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.2|0.77|19.17|['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol (10 mM)']|bulk|https://doi.org/10.1002/aenm.201702934|CryeHmvRFOwuJ84ZPEQV03oFxOiH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|170.79999999999998|0.618|10.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b03525|Cs-O6XiE0DCANBIfiSXc8ZGkUzIy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.8|0.7240000000000001|16.3|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|Cs39HdilYOvvITCdoP1_7I2W2sIc|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C17Cs3H85I36N34Pb20|Cs3Pb20C17N34H85I36Br24|Cs0.15FA0.85PbBr1.2I1.8|1.75200018681776|1.203|183.9|0.753|16.67||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|Cs3WwjDAvzFCblpAYTJgM8XctFY1|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr1.2I1.8. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.570000167410892||||9.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|CsA_jxvP3JyJjDQ8CSZ27IUN7_Il|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.4|0.75|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.57.052301|CsGwnvJcgFLUH7AzrK4aS0HUw6mH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|CsHgZZ2HYg9v_9v-bQXh-tKcZua_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|92.1|0.58|4.22|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|CsIiqi48BP-i0755UXLyMtUyQc59|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|168.5|0.45|7.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|CsJBalSjDmTx-6H2xY_7lvjKQ-db|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|198.3|0.62|13.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b11596|CsN3P6xHMqe7OU0CmgLdN3Zge4x2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.04|209.8|0.7120000000000001|15.53|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'X2', 'Au']|['X2']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|CsOa2Atp_HMefs6FCMYeBgOGbLbD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|216.8|0.63|13.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c8ta00526e|CsTAf8nqXd0_TYCDx_PHUiPE6KdR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.04|237.0|0.721|17.9|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9RA05371A|CsV9KJRLT3lhSfOdW2jL8kn6b20m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|108.0|0.7|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|CsWgNTSCYOVxSSA_mxt0QpV12kMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|Cse4k66LXAuNwmzEiFWtooIaF3Sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.122|209.8|0.6579999999999999|15.48|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|CspRNWJ8pIwXE-X5-MbCL5WGjIGL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5850001690103592|0.79|212.0|0.5579999999999999|9.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py-C', 'Au']|['Py-C']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201806392|Csq4BKXqGLi1Rsw4W1hN7G1mYRlu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py-C', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.2|0.747|16.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|Csx-Np46oC6xGy5IBcbD1kgkkcni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|169.8|0.535|9.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03593g|CsxFRex9ndVLvM0Hf5TTvSagkUQn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.97|206.0|0.62|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE08|Ct--UHAE8sYIZ3L9hq6iiSVaj3PI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H484I270N181Pb100|Cs5Pb100C95N181H484I270Br30|Cs0.05FA0.86MA0.09PbBr0.3I2.7||1.11|241.0|0.75|21.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13876|Ct99ItOg_65NOkYLrB5KuR2DNSR2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|185.8|0.6|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B2', 'Au']|['B2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.107954|CtWXS6l0yDN6xhvUFwTCW7uGEiBx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|197.0|0.76|16.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2019.03.159|CuRvBGj5nxKbS1wMhyLJG5E3y4i4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C47Cs3H253I144N76Pb50|Cs3Pb50C47N76H253I144Br6|Cs0.06FA0.58MA0.36PbBr0.12I2.88||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|CuU3jik3pHd0ZmR1XnXa1ucxNKY2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.58MA0.36PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|232.0|0.483|9.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16219|CucJH2lbyLW45MFTa0cc59Cl_Mxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|205.2|0.65|12.84|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|CuqZvlGWGcht0lAHIHyUiLsV_zrP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|||||['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|Cut9gAqasj0lGoQEGr5YMP5CpCIB|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s13204-018-0836-3|CvFkEF5I21h9t6eoEBzycjVAJ68q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.01|222.3|0.77|17.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|CvMEoGwSDgat0TKFaoU2fmkZ2hj5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|CvPChdwTTv8lD8mRoM_Es7nAoXok|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|201.2|0.168|3.5|['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'Ag']|['TaTm']|['C60']|bulk|https://doi.org/10.1039/C6EE02100J|CvTqMjXn3GZjJF1yM2jDUqtjiL_y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|163.6|0.507|6.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.electacta.2016.01.133|CvWA1UQvsMGo6afJ11esF-TCztUi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.28|196.0|0.4429999999999999|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|Cva4oUwdifvjeGJtCD4dwEAYikup|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CsI3Pb|CsPbI3|CsPbI3||0.88|144.0|0.61|7.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5029253|Cve-I4hEznhGCxwZVY1v9_rtbw2n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.12|217.7|0.7929999999999999|19.18|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201700722|Cve3inSZeMPJ-kclee8BYQA4znoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|173.79999999999998|0.71|9.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|CvgzG-JixA8BKz1SF93sehL69UvS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.04|232.5|0.723|17.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|CvnySg4xx5Pu2-KD_Uvik_A69HRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|187.6|0.77|15.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.05.014|CvyJTVuq9lx7jPFrUVsOQ9eygIEE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag20Bi60Cs3I170|Cs3Ag20Bi60I170|Cs0.15AgBi3I8.5|1.8600001983339236|0.69|30.3|0.5329999999999999|1.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|Cw6hLhC3n7495lmpftIBlaW8Dmop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15AgBi3I8.5. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|220.0|0.79|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|CwEvKsZa-X0W0_adJdyWfgp7yAwj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.923|112.8|0.65|6.82|['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6tc04639h|CwG3vzx0f5paFqBJiFc3LNfJlfh8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|225.1|0.624|14.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201902600|CwJFlHfdgvheMDdIanOtiUxoT7US|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||0.958|203.0|0.57|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01515-6|CweQskHSOr8k6g-Nm7Fzfku_EQOq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.908|200.0|0.764|13.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|CweYMW244buLafoi07bJD9hRy4fd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.3|0.727|16.03|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227386|CwlJ0KstXAF-dESGhJxgFQGfBX8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.882|3.0|0.42|0.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|CwoCVw82_srUrqQz1X8MB5FJ4GSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|216.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|CwwHDpvpq-6flUbOe_3ZhOo43nq1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|165.10000000000002|0.693|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00032k|CwyFAwmb_gqLaQcYR_mUchvzmtuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.93|174.0|0.65|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1116/1.5052287|Cx3Itv5pmJWx4hT_M8A0F_ZFoV57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br8C85H425I292N170Pb100|Pb100C85N170H425I292Br8|FA0.85PbBr0.08I2.92|||||21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02142|CxDTIW1FDwpEKTsQhLPmW2h2goHK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85PbBr0.08I2.92. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|0.987|187.3|0.57|10.45|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|CxN70bbEoPeMTcYOxaM12HK-BOaO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.116|191.0|0.754|16.1|['SLG', 'In2O3:H', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO-c', 'Ni', 'Al']|['PTAA']|['PCBM-60', 'ZnO-np', 'ACO-c']|bulk|https://doi.org/10.1038/nenergy.2016.190|CxSn3vEWQVIGN_dyrfGL3iTZQJXC|a perovskite solar cell with the following device stack: ['SLG', 'In2O3:H', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO-c', 'Ni', 'Al']? The composition of the perovskite layer is MAPbI3. -C3Cs2H17I15N4Pb5|Cs2Pb5C3N4H17I15|Cs0.4FA0.2MA0.4PbI3|1.640000174875072|1.15|143.0|0.67|11.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|CxUwMJ-gFDAN7X5c9NtwCW8BvIuD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.4FA0.2MA0.4PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466|0.903|215.0|0.659|12.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|CxeBNkqKhnEcmaeJdJJg9hlRVIHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|190.2|0.737|14.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solener.2016.09.048|CxgjMFTDFvfPxtAzWdHyRn2c0rQe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|94.1|0.57|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2016.12.050|Cxr3HjgiWA_Kwm-_--2Zrn_h9hNg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.1|0.684|13.62|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Carbon']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.092|CxsH3hUNGzpAlIsDG8S91G5BePX8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|221.6|0.67|15.38|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|CxyZ2w6JU8R-SUKpOC1uG00n3vnZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|208.0|0.716|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c7cp04053a|CxzuoU1OMe3JHn3r6bm0hCjJX-2d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.0|0.66|12.4|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.161163|Cy2Y4GA3VGP59-gFtpv6RvoD4AI-|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.482|72.1|0.7929999999999999|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdZnSe@ZnSe-QDs', 'Carbon']|['CdZnSe@ZnSe-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc05517c|CyA67Pf-xTHrq0PEtpxG4zoQPp5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdZnSe@ZnSe-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|CyDCnw9VKYXGlWqgSZ9zwjhMK5i8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -C10H52I30N18Pb5Sn5|Pb5Sn5C10N18H52I30|FA0.8MA0.2Pb0.5Sn0.5I3||0.77|300.0|0.67|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201902583|CyZ2whCKuZlDzz77w4cQ3gWQpxO6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.99|171.1|0.49|8.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|CybeVcE37BArn9C37qN3umyEf_-z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|244.0|0.777|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|CyeBB1yVI_1L1MOlA7SJj-SAOhxE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br57C95Cs5H489I243N176Pb100|Cs5Pb100C95N176H489I243Br57|Cs0.05FA0.81MA0.14PbBr0.57I2.43||1.15|222.9|0.8|20.51|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06190|CyhXPZ9kJndbaazgkPynLvcUBTAM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.57I2.43. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|152.10000000000002|0.79|19.04|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|Cyk-ICDq7eDcmWWu47Uo3T4gnSZE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.126|242.3|0.804|21.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|Cyygrma7VlxpAYlMXrXOeXgQkVdj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -C40H201I120N79Pb40|Pb40C40N79H201I120|FA0.975MA0.025PbI3|1.4800001578140891|1.08|231.3|0.77|19.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.009|Cz68WQMyAcYVgEryQK3Xtkn-HmPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.975MA0.025PbI3. -C19CsH100I60N33Pb20|CsPb20C19N33H100I60|Cs0.05FA0.70MA0.25PbI3|1.5100001610130236|1.16|234.0|0.794|21.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|Cz6wDIddU-Sm2j4jWXDOTRm6ysFr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.70MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.1|0.728|11.59|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7', 'Ag']|['NiO-c']|['HATNAS3C4']|bulk|https://doi.org/10.1002/anie.201604399|Cz6yKU6VWnMrMS_ahfdEcTYmcJ1B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|202.0|0.713|12.24|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|CzHCf6fBJ_JrQpXww4JdW6kKMBu9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|187.7|0.735|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|CzRhrxjB33UQB3IqsA_7eVcrkC-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.104|203.3|0.706|15.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|CzXr4LTyUD_fYRTbMQsg9e2jgV16|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|225.0|0.72|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01744e|CzYnfuXIep1uy4fKjOWS859xHWvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||18.37|['PET', 'ITO', 'LiCoO2', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['LiCoO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|CzfMSMx7aCOuISPzbblRy_Cq-MRW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'LiCoO2', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|174.0|0.68|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F1', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F1']|bulk|https://doi.org/10.1002/solr.201900223|Czjsprs4rIbW2HOjQ8PPH-A6Ge0d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F1', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|218.3|0.657|13.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|CzmXaNCeyk1A8-WrkeASAqRKX7vz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|241.7|0.57|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|Czup6cg6n77jVX9tuh2_ltppE5R5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|235.0|0.72|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|D-FLE7nD3yHejaBqE7uABJ4X0K3o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||1.04|187.0|0.6920000000000001|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|D-GQ2nFMHx14yX-ZDhzQbS3Lz5Ik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.3|0.67|14.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09925|D-Gr0PVd8jJ5NQ-1smbB-OvwxJXB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|D-M94Q4FMyVsYNgsripF28jYXHPO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.11|201.8|0.736|16.47|['PEN', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|D-PpWjPmtDcp4DBKPMleDcy16CtC|a perovskite solar cell with the following device stack: ['PEN', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br12C94Cs6H477I288N181Pb100|Cs6Pb100C94N181H477I288Br12|Cs0.06FA0.87MA0.07PbBr0.12I2.88||1.05|236.0|0.7240000000000001|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|D-U_70O0h-I-BIIMfDEtdmvxZPHE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.87MA0.07PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.6|0.61|12.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|D-UkZiaA42aSXslrxPsCZ_aI-Nlb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.71|220.3|0.63|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|D-UrYPlHjFOKJqQ8piXG8_1_ybnd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.0|0.7|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PyThTPA', 'Au']|['PyThTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.041|D-V3Kam0Tu_QxbsDHdJKPK2FG-Im|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PyThTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.7|0.73|15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3791/55307|D-iFWcPZz6jj4G-bmK_UbVHELgsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.135|217.8|0.72|17.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|D-o4_R4CHTLa4hqVzFI90VQf-2ZN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||1.01|196.0|0.6970000000000001|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|D-rQOAa9pbG8wkJyROmYDKkwoTje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.410000150349909|0.64|153.6|0.56|5.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/d0ra02584d|D-tDyPEW1pjONbMZHHt85OpN21V0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.0|0.6679999999999999|13.6|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'P3HT']|['SWCNTs', 'P3HT']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|D0-D4hNWSWRD-hiQflKO5sLhX_y6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'P3HT']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.02|86.30000000000001|0.608|5.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|D04RH-03_qpiHD9wLHO7XKLfPt3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.947|190.0|0.72|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|D0AXG3vWvoFbTOxmqRZRJTbytEhJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|221.1|0.731|15.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|D0GP_BoCw8N1RTAl3hrykv-5bA6o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3|1.5400001642119578||||16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b01857|D0PYKO1NOmwVgxqKiqpto2Iy_5bS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.06|185.9|0.74|15.17|['PEN', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|D0iLdhsYx8xWllZBe_yQaL2C65NI|a perovskite solar cell with the following device stack: ['PEN', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -C16H30I4N26Pb5S11|Pb5C16N26H30S11I4|GUPb(SCN)2.2I0.8||0.69|17.9|0.54|0.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00639c|D0lNPcrVmkRzeAegBGgkuxa67Inx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPb(SCN)2.2I0.8. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|213.6|0.669|14.04|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'C60', 'BCP', 'Al']|['NiO-c', 'NiO-mp']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta07775k|D0s1GPKXQ9KUmYZqjeZB4CCmFyw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.74|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|D0t_3sHEcj4rt9XJWwQY15W-lplR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.03|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Au']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|D0zSsthKs_oXuC-hVI7Rhs2Ezrl5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|168.0|0.631|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09922j|D12kqPqVT_kLqQYlBfunsdx2zheP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C298Cs2H1154I400N182Pb125|Cs2Pb125C298N182H1154I400|BA2Cs0.08FA1.36MA2.56Pb5I16||1.13|182.3|0.69|17.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/anie.201905690|D13-t6O6TPxQlSQgrNgK1npnjbOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.08FA1.36MA2.56Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.308|41.900000000000006|0.474|0.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|D15A-ZNExG_pu8UCkcLIhRLuSv6n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.718|17.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|D164APrJfkMEXPUCr_20XeX2zFWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|176.0|0.652|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|D1DNvVnAQwP_2cGXD8wkkSAByq77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||0.981|194.6|0.6729999999999999|13.44|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.cej.2018.06.124|D1RcVdQBXACp0OR1mZwqovkXbfyK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|224.1|0.65|14.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|D1a80ry28W3OwHYNedy_BAiLO1hy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|229.4|0.812|20.18|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900529|D1bIhyBcM8WxEUueksVr9LPm4IEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.98|117.0|0.21|2.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']|['NiO-c']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|D1ey4phPccS7PHrKascdYa5wtNsu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.45|90.0|0.59|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|D1jfR0QJh4n_5xf6Vg0tJiojK9zM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|124.0|0.34|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014002|D1nbz7CMlQc5jlIF0Gh5Wq_PpW-Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|219.0|0.778|18.0|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']|['P3CT-Na']|['C60; PDI', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|D1oiwtT1O6ZF2ZN6Glwy8H1JI7CK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.2|0.6659999999999999|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|D1uzANI8DxsMT4IShnQ1gKGdVtZT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.640000174875072|0.87|142.3|0.71|8.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|D1zJMJ6aQCLOA4X5LzxjXX-eLidO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.8|0.682|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|D20O-m6DxecOQoaejR-z75jsqfza|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.019|34.5|0.243|0.02|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|D263m_kumJfjfL9bYll4Y3tm4BZt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.64|44.6|0.491|1.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b07594|D26reuhobb0osuJOKe2vKGqVQYAJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072||||11.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|D2M9Cos-vv8wUYtzn3id-XfP_N7_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.1|221.0|0.78|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902653|D2OmMPMQQUdQmLQs1Nvrx3VMg0BF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|165.9|0.573|9.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|D2QDoA9TOI2teE-lCVmW6oLYCf9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.9|179.0|0.7440000000000001|12.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900375|D2VxF898IEpZxLRlyLD_JkitgJj9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|193.0|0.7290000000000001|13.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'DOR3T-TBDT', 'MoO3', 'Ag']|['DOR3T-TBDT']|['TiO2-c']|bulk|https://doi.org/10.1021/nl504168q|D2_mNyz3vWqP1cZBElFfZsQfGero|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'DOR3T-TBDT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.11|213.0|0.61|14.3|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|D2uyIGoZt_cKw5lRO7NgfiGC3mBp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.995|237.9|0.58|13.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|D2wzBv1nTEbNBBvp3lHkn5VGPMLx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|239.0|0.736|19.9|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'PDO2', 'Au']|['PDO2']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1039/c9ta00654k|D3B9FXfKRvcIR5LfVAz0jj2unxbB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'PDO2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.143|164.0|0.745|14.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0278-x|D3GKje7EaFQpH9Ny76KWH-hnwlEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.111|236.6|0.742|19.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|D3HVN7iF6wR0XlyLUdK6MWPFFDxI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|201.1|0.5489999999999999|8.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601069|D3Qw0LilUu5ktrdhPRHNouyZ9635|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|D3R8dqLMhQr7VcYUNpe0T84GJsuV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C10H59I28N11Pb10|Pb10C10N11H59I28Br10|FA0.1MA0.9PbBrI2.8||1.06|233.2|0.713|17.67|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|D3SMbC2jNjEcTt_kweEojAEbmJ-z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbBrI2.8. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.63|177.0|0.64|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C8TA03054E|D3UGrOdtZLGyhDWm24bcKbz6u4ui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|153.0|0.53|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|D3aIIxjOa19ld9-pKMs2HZ3_sMOp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|194.6|0.56|10.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2017.06.079|D3xYo2tcZZ4SB62v767DWOa9H6iN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|228.1|0.74|18.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800051|D40jA-QPx-p6jZe93Z2Zmj7GXFKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|115.7|0.633|7.53|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|D41vpMNvGcTPnAezmZ_0SR2LUuSG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C95Cs5H491I85N174Pb100|Cs5Pb100C95N174H491I85Br15|Cs0.05FA0.79MA0.16PbBr0.15I0.85||1.12|232.3|0.8140000000000001|21.02|['SLG', 'ITO', 'MPA-BTTI', 'Perovskite', 'C60', 'BCP', 'Ag']|['MPA-BTTI']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201902781|D466Dlhw5yzJgwPtLt6rpc9N4Bv1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MPA-BTTI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|117.0|0.48|6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep06752|D48i1hGhFahLQbZRGSt4Ju0oc7iA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.95|169.1|0.65|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|D4Cm9i-5HFQQnosVtALKsb_aDHuH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.936|113.0|0.62|4.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b01808|D4MnzPq6PIAidqFpn_I4HA3bfs08|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C20H114I51N26Pb20|Pb20C20N26H114I51Br9|FA0.3MA0.7PbBr0.45I2.55|1.6600001770076949|1.11|189.4|0.78|16.4|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|D4Pg4kc-4CVjpOkEoDAW0_oyrfLT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.0|0.67|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|D4TanDe-s21BWeDVApASbnhGES5k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|160.10000000000002|0.71|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|D4aEYHoisjzXvP1UQObPlH0-7gsA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.4|0.57|13.9|['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PVP']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|D4fDwzxrfdg0typ2Ys8uDCdAB59d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.0|0.74|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|D4fJmvqxBSzVYhyv2ZIwEn-QVUJx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.5|0.74|16.74|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.182|D4foShPLb7O1NEmU55YbdyEjsoRu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|194.13|0.769|15.98|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|D4fqjDw9ciNFlrgM5cZQLquTI7mo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.04|185.0|0.64|12.3|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|D4g2GTAchTf_XJnjHvbCXMvAvj7d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.01|194.0|0.56|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|D56dvfWhqPtcZiPjzhIECGl54yZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|191.9|0.73|14.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|D5KYvOhtr8jeUk4g3us9tnuOuWTc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|223.0|0.727|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra12304c|D5S91RRKa_JFYecwYBSs14Stsg-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4||1.18|203.0|0.81|19.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.10.003|D5SwmyTNgtjde6VNn5HOUOFGraDP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|119.0|0.5|5.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/12.2217737|D5Tavv7xYHqxOH9lyzqjyF8nR4TR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.240000238853757|0.214|23.3|0.33|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.034|D5UJ6ItZ47eur26NYeJ415dQ6MMI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.55|197.0|0.5479999999999999|5.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|D5Vxk5VLvjaD7Xy_KjPrVFlaJEVj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br3C100H515I297N185Pb100|Pb100C100N185H515I297Br3|FA0.85MA0.15PbBr0.03I2.97||1.11|239.0|0.764|20.3|['SiO2-mp', 'SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.0c00175|D5_9E0M9rWli0ZsxZ0K1n_1FXrRS|a perovskite solar cell with the following device stack: ['SiO2-mp', 'SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.03I2.97. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.11|240.0|0.797|20.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201803095|D5_Ra4Qo5mSvcNRsaMW30a0q9dj0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.9|0.7190000000000001|17.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|D5ef6aPGRUdZ9NjbseupkUT19-_S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.0|180.0|||['SLG', 'ITO', 'Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']|['Ni-acetate']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|D5emObXHSAqI_OoTousW8aDeYFcL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|134.0|0.75|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600940|D5gjSZKHAhxDPsnxX1DKKoHcDrDr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.55|75.6|0.855|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']|['CuCrO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|D65HwXO2evuzDZFz-L7krN_P5VLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|180.8|0.401|6.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|D6ePxxhWa0kCn1kSzoOPUWKkv2DK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.91|159.8|0.785|11.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900375|D6gTS42DjxKf2F3dI4MxBMC9JRUL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|133.2|0.418|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.04.153|D6hj3MRWfMSRZGV720gpcuyAP1oN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.6|0.65|12.53|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solener.2018.03.054|D6jRkSAeoYzquRS67C0ATDnktola|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|198.0|0.6|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2015.05.106|D6waMnsrkxf5C5tb_Xyk0XTJRY5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|151.3|0.74|9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|D7HnMRBGkN7Qnpob5Ukuubx1FMuz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|210.2|0.71|16.12|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.067|D7IFSDSSt9-2BafzhUnFXdtVb47F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.122|215.4|0.73|17.66|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|D7IFdXRGT8KES3hQv5K9oUEqucO4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|194.7|0.758|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b00980|D7JAH6Tf1f0lirSS4EZXtIH3Xj2n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7340000000000001|83.9|0.562|3.46|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|D7K1Sw7EjqUVkdeNFEWSl350KIJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.2|0.61|13.06|['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti3C2Tx']|bulk|https://doi.org/10.1002/adfm.201905694|D7jrOJbTe5sf8AUccvkY5PdDcDVS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|173.79999999999998|0.6559999999999999|8.17|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|D7oASNQLHP5IrXtXwNWRoPCBldO0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.6|0.589|10.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600729|D7pJYa_i2dpObdP4TAtR2Hd_ea0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.0|0.64|15.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02105k|D7v70356EgUAoV6474hE_I9F3ifo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|208.0|0.72|17.2|['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|D7xZ9p97ZGL7YGLeLKfzP8JntZms|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|164.0|0.72|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|D82u9Yt80LtWHsY-Q__QqoSutDzk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|192.0|0.72|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|D86TNIwTIzUK4gOsPM38KZTM8oIH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.9|0.674|14.23|['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|D86ZaqK9sz9YTxQSK5JS2iCJo92l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.97|195.0|0.58|10.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|D8AghwdXZabiYrdrwf6abxc507vZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.07|214.4|0.74|17.08|['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']|['PTAA']|['PCBC6', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|D8BawwIbPLmLAn-NNIEDcPzuxVC7|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -Br25C50H258I75N92Pb50|Pb50C50N92H258I75Br25|FA0.84MA0.16PbBr0.5I1.5|1.8400001962013004|0.9|164.7|0.57|8.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.3059|D8D7JUOikBs9977uGbWUL4UfWyDm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.5I1.5. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.1|227.3|0.748|18.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|D8KSQnDGgf28qANAX-U7eB9BJEol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|227.2|0.64|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|D8M2Zka_u3_aq04ATLkFsuwVD6Bk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|128.4|0.54|5.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'FTO', 'SLG']|['PANI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.05.053|D8YgxglXprA68dmOuiuxISOOSsD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|215.0|0.81|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|D8dvdzlCoLaHRqOyNJFdRejtT31Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|198.9|0.6779999999999999|14.16|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.03.047|D8m0WgUNegvoym1zdL0ErkyOvJcc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|220.7|0.78|17.92|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|D8rpvbmrLmQnss8SUxuyPNz6lQTz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|258.0|0.648|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.092|D8vv0RSUo2nW7EDbOkyTbBOvimWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|221.0|0.61|10.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01889d|D9-X_DwkO_C-_6Cg9HjCn2rP1VhJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|181.1|0.605|8.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|D929TmYj17WnvmLQDKVElrdNb9Jd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.0|0.72|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|D96p3CdYZ4mXqhBQoHEJEaKqHKBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.14|192.1|0.53|11.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|D9FnkLLh75mw0QHirmAx-enw3_19|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|159.8|0.6629999999999999|9.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|D9at6uMLK_AUMuzFWRjdpFw7MP2D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.0|0.61|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']|['SWCNTs', 'Graphene oxide', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|D9f7A14Oo-v4aVs3oDBPP5xC9TQO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.612|51.5|0.52|1.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.12.011|D9hdnfdHwIIB0iqQfkGpF-Zpw53i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.0|0.71|15.6|['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4']|bulk|https://doi.org/10.1021/acs.jpclett.6b00295|D9kJKN4iHnvMmUSow4CrYoshzA0p|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.0|0.44|8.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|D9oZrVHPpzE7ISYiItLVJ9aTYFDs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|D9sk6sbSyyGrpJJDMZdKiu9acNuV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.0|0.687|14.0|['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2015.09.054|DA6ojz8CvvEozFgweEB2a7WZZJYI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|207.0|0.7|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05667|DA8-Kr8UCGkT80NDtHHbNzAxHTvL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2767Cs567H13833I10000N5533Pb3333|Cs567Pb3333C2767N5533H13833I10000|Cs0.17FA0.83Pb0.9999Sn0.0001I3|1.5500001652782691|0.92|184.0|0.741|12.6|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|DAGD0upZ0-YQ01G7sGlGMbPxkY29|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.9999Sn0.0001I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|129.9|0.623|7.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|DAGRfsdmCC2myQevjr-8zjyHD3yT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.114|224.1|0.718|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00055|DAP-1L1rGa3ykNpY_Bf7s88SBoSN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|207.7|0.645|14.86|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|DAP9kZzptm9E2rUlvQyc9q8BXuYQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|168.0|0.53|8.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|DAQXyROLZ64ryiHJv_CmqSTmFAQn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|125.44|0.542|5.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|DAUZvHpxbv2Y00Dy3tgNQ9ovY8el|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|206.1|0.612|9.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|DAXw6HCrXNJGkKHJO_xfjppLXsIa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.134|232.3|0.7659999999999999|20.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|DAa5j7O5JIVmz9QpFoTPm94Xj95i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|155.0|0.72|10.41|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/ente.201600320|DAmpPVB4l-sTF6GPveEb8Dc2EPsf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I4N6Pb|PbC2N6H12I4|GU2PbI4||0.7070000000000001|11.0|0.4679999999999999|0.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.7567/JJAP.56.08MC05|DAs3Q4BKtwuV4Hrn12QruWcqRIjt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.0|0.7|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06362k|DB1RJApQCCximZW_0G5M68TQx-q3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|190.0|0.78|15.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|DBwVWcR1Nj82UBfoQGii5xA5TBEx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|171.0|0.62|10.39|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.002|DC6O8uvDl7-F2_7i7LZtAE54C6w_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|108.0|||['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/adfm.201600910|DC9ZIgq5J9UJnbsOMFvZx12S3eXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C20H117I9N23Pb20|Pb20C20N23H117I9Br51|FA0.15MA0.85PbBr2.55I0.45|1.5300001631456466|1.06|202.3|0.7|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|DCMpkK_WuRD01puSxN49JeLFYDP-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr2.55I0.45. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.96|93.1|0.59|5.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.solmat.2018.05.002|DCQHNlVMCo8RhdZ-Oj9ZU1K-6O7D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3||1.125|237.2|0.726|19.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900020|DCV0VHrKSDU_StIcWrAa1zCVIJFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|DCXHMcBDqHm3KdQp4vARjasydKPW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|142.4|0.522|6.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|DCXUk1bvYyYHFzk6aOH-r-srva7y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|195.6|0.62|10.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|DD7O4nL2uKT5x6Kp4wMaMB7N3txp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.625|1.7000000000000002|0.257|0.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1016/j.solmat.2017.05.007|DDA7pEo8_6pjQJgdh5a1lMe4DZaj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.19|152.5|0.79|14.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|DDLOPuxS4DDZSUIlFYEdaTbL0R3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|178.0|0.62|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja411014k|DDZx3HZaICcEwFuOELTOWf55ik0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N23Sn10|Sn10C10N23H53I30|FA0.7GU0.3SnI3||0.59|188.0|0.672|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|DDd2oOXR3k4KPttn6gNs6fjb0rMs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7GU0.3SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.79999999999998|0.5|7.99|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|DDev4L9PvNm1NxFpUc1j5yk5Dz8u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|209.6|0.637|13.76|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|DDiy57x2toxkhsVND4Fmts117Y7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|177.2|0.44|6.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.03.017|DDkcDcIPYn8e-PPef_saGlllltrC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6100001716761378|1.11|229.6|0.76|19.33|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201802012|DDkh1uZxU4aB4fdjMDqD-FSrOLbq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C20H120I60N20Pb13Sn7|Pb13Sn7C20N20H120I60|MAPb0.65Sn0.35I3||0.75|210.3|0.6|10.05|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc05325d|DDxoWEAfu95qmjIy36cwK9ZiNAFV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.65Sn0.35I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|173.9|0.7|12.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|DE57QYrLeA0mxPpyQeWVxiAGX7ex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.0|206.0|0.49|10.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2018.14385|DEDgk1r02y7gf_W5RbmvzB-4CuKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.899|172.0|0.637|9.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|DEFVRbiDjrs_NC7Cs5iC30CdVdEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|1.007|246.9|0.67|16.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900340|DENN8BHONSpVrLawz_y_I6IfD-tU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.52|4.0|0.47|0.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1246/cl.161060|DEPDVND5otbUd3FZUAQvAAaPcN9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|235.0|0.722|16.68|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|DERFAm_57CK6aqU4VCxTzo8Isf7h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.12|210.7|0.815|19.24|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900231|DESe-0M2TsgDI4pXy5jj0HxX1QdP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|213.0|0.67|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|DETpASUfVMubPcfDeTpw2N-BkluQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C40H228I111N52Pb40|Pb40C40N52H228I111Br9|FA0.3MA0.7PbBr0.225I2.775||1.162|221.5|0.77|19.75|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|DEX5NqnbxV1kxmweIojAEW77c4k_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.4|0.7|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07968k|DEZxvYDwg3II9pDdnuMz_xuQBWLd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.5|0.758|17.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|DEmoSiZxxxiBOjXSovrk3k1E1KVN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|211.2|0.77|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|DF775V04Uwv9TPMmVsmuD3NUfvNN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|236.5|0.7020000000000001|16.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|DF7AX-JIdfQtRkrapDJY1Tm49a2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.726|139.0|0.52|5.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|DFUchSYbyfP9QofWH7uAVcYuLb3o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|0.59|36.3|0.497|1.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']|['DMF; I2; PVA; TBAI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1362889|DFYD3rYYxY2GuKy0AVHpxNWJSzRZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.0|0.79|13.96|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.032|DFaICpE-STR4nZQe8psYnomOuAsd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|222.0|0.653|13.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|DFgZBHAg9gUJu6eN3L2pXtLI-NXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.843|216.7|0.54|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|DFlwM-DKbE4HBZJh5MQjhG0z0Zz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.195|228.5|0.735|19.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|DFm63F7rdC-Crfn5ZDeG1dRUbnGP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C8H12I4N2Pb|PbC8N2H12I4|(BDA)PbI4|2.536000270416575|0.148|3.9|0.348|0.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta11744j|DFoJxFv12ps3L4Liq-ad-8IhIwZF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.0|0.8|18.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|DFp6nuUN6ntKIRVzzOfbfFyiqPGO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|177.10000000000002|0.69|10.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TPA-PCBM', 'bis-C60', 'Ag']|['PEDOT:PSS']|['TPA-PCBM', 'bis-C60']|bulk|https://doi.org/10.1039/c5mh00026b|DFsL3WNrn0STth604U7CJhLAMtva|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TPA-PCBM', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.06|203.2|0.73|15.65|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|DFtslRdXwTnrXV1q7GiOc3ntx1Y8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.037|219.0|0.716|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00801|DGF_y0T5ga_U7AfOxg0NNpp-U7NN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|226.3|0.78|20.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPBr', 'Spiro-MeOTAD', 'Au']|['TCPBr', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta12597c|DGYHuIIF0_KRP83JkWoB3NkDqSnF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPBr', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|166.6|0.64|8.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.11638|DGY_FV04Xk4l0QFZUDorCihAzTg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.76|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c8dt00692j|DGZsBAN6gZysiLOUtWLqDvqKJpfB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|200.8|0.75|16.11|['SLG', 'ITO', 'PolyTPD', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.033|DGaax4EVdmHA3_wC_FL6jRFNM0i5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|217.0|0.68|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|DGjRfjPSrTRNJOk9n-thXgVTp-fM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|0.73|10.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|DGk-ZwEkf_P6Rl3Ejvie5tt6lM-7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.0|0.777|17.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|DGl7WOMuYKrtklTw5azOp9kTb7xo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.5900001695435149|1.15|224.0|0.774|19.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.08.012|DGlpPhnX5yfx07LzqhjKq6wTl4KN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.2|0.73|14.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|DGqKgxtRUeawdQuzSZAozSaLCgqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.1|0.7559999999999999|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12050726|DGymquadYviDmF1D34wEi-VLWkgn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.59|124.4|0.839|16.58||['MoOx', 'Ag/TeO2']|['ITO', 'TiO2']|not processed|https://doi.org/10.1109/JPHOT.2021.3067703|DH1QJH3eBZPlkElcQWvhrzx8onR5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|94.0|0.33|2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|DH3Zpjw03mUUs_vl253hCkXTBcBK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|128.1|0.655|7.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:OO', 'Au']|['M:OO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp04162h|DHO5HsDmE2pBsBTzOJvXPAcx1_tm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:OO', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.06|227.3|0.74|17.77|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|DHStC_SAQ55DCeXPMUzwoQLaLCqn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.863|123.0|0.594|5.87|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'ZnO-c', 'Ag']|['NiMgLiO']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta05802h|DHXzcMPTNe0LryYIOuXCsjVrBJG-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'ZnO-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.05|230.0|0.7|16.91|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|DHbj6brSUHdp9mKerAe3DbHiETSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.01|214.0|0.56|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|DHhPQgGbWVjao3e5_iFr7HYONaw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|233.8|0.708|17.1|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|DHrub2J4C35GPyYWBgOsuPm0xkk6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.93|178.0|0.62|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc00268d|DHvGBpsfCJERAL4V1xHT5Jn4flPI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|105.8|0.43|4.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|DHwGJqw99Ah6eHTq6cwlpNwOd7dk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712|1.0659999999999998|224.7|0.682|18.63|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF']|bulk|https://doi.org/10.1021/acsnano.8b02079|DI-0BjDgWHEiqlRAJcJSKGA356zr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.84|154.1|0.75|9.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9111616|DI3xBZGARL5aE0kt5W0EHw67UEB9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.81|206.6|0.43|7.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.047|DI99h-EuKI2An6cGZPRLrXOAXCAD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|9.4|0.63|10.9|['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1117/12.2291595|DIHfkqWSryBV0j81Kdb4hggz4Xw3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||||0.75|14.0|['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.012|DII1TDZw--rBRHlwPaehEw9c0Ii9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.072|211.78|0.73|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|DIdcPbG3wL3wwnjnvYA0EYrs1n4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -C9CsH52I30N11Pb10|CsPb10C9N11H52I30|Cs0.1FA0.2MA0.7PbI3|1.6200001727424491|1.12|210.0|0.71|17.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|DIpdBUHoxlvq87S2iyt0GSHsI7rP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|196.0|0.76|16.3|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|DIvYsbSKsHo5H4_t9CUawffSrX08|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.0|0.823|18.5|['MgF2', 'Quartz', 'ITO', 'PTAA', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']|['PTAA', 'CuSCN']|['PCBM-60', 'AZO-np', 'PEI']|bulk|https://doi.org/10.1002/adfm.201901476|DJ0pt7fz4FwpK6g8vBIkH8eKb8zl|a perovskite solar cell with the following device stack: ['MgF2', 'Quartz', 'ITO', 'PTAA', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|0.99|202.0|0.79|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00358g|DJ4LVq7o6qRc-BuoQA8Hd-XJQF8G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|218.3|0.7020000000000001|17.04|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c7ta03150e|DJVg0vHwzodwnhImc_vWRHVdLCJK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.7|0.74|18.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201700169|DJbVn2IYtnZkZXut9Ip6ndR6L7uR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.03|228.8|0.701|16.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|DJd4DIit99LRvPbQx8JwHtZCCdul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|53.0|0.321|1.2|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO']|bulk|https://doi.org/10.1002/cphc.201301215|DJhckGNLJPpHfMQS81D_mQ-hOTLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|230.4|0.67|17.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.034|DJnOa1y1KNt8sGsrVUHHWgBNo4GJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|202.0|0.735|17.23|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|DJqXf7vYy-jtrZsFvnkF1tLX1IXH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.33|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']|['SFD-Spiro']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|DJsmUyMXzVKPZYKZtgNftLPdNoVN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.0|0.607|13.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|DJuSascw-htpTmFnFKQSTd6aHPeO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|178.2|0.6890000000000001|12.96|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.081|DK0i1t9ZR2T1osvVmGvR3B5tKp2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.1|0.6759999999999999|17.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03276|DK50jdMJ209G2lW6ZujyqasLf8Y_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|DKCIm92Z8ojm7YrnkSL-YC4F36B8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.0|0.685|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']|['pBBTa‐BDT2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|DKCNfczYqTsW_MImiPrFzHcC2nxa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5500001652782691|0.915|203.5|0.59|7.5|['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['C60']|bulk|https://doi.org/10.1039/C6TA05095F|DKTNa-cZg2VAZfs9JdEWEFXlhQgZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsFAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.96|135.7|0.649|8.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|DKVl5UPGbYpn9wTr0AerW3DbvDZv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.1|0.703|15.14|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|DKYOc2SdIGhe5MRA3L05qfSMDMJa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.0|0.64|12.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ta09202k|DKeAeCR5cRHBKddgfcXiE3dy5CAt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|231.0|0.64|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505480|DKeFNw-guKvdZtbHP9PLP83CFgaL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4|1.6200001727424491|1.04|200.8|0.61|12.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|DKhtKeJZwzlMMVHT037pMuhMiisc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.2|0.8|17.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|DKuMRNH6XRVQh1siTBaWb8iEWooI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.09|213.5|0.72|17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|DL7WcxImw7ffB2eRdfzO9gknyIO6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -C10H39I15N5Sn5|Sn5C10N5H39I15|HA0.2MA0.8SnI3|1.3000001386204838|0.35|118.0|0.5|2.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta07699e|DLFQE0z4PkNkRtgldPnxVpHIAjqj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is HA0.2MA0.8SnI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.52|169.0|0.6|5.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|DLIBWwBdk8qrtiCxqU4tkxCutMYK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|DLRlwrDRbvRylEVDJ7rwRa5WXqB3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|210.8|0.6970000000000001|16.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|DLUWKK-3J5P194AY_f1kydI2TLX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.77|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b04778|DLcPYXnLdmGPHfDXRLfXSTGcj5Wd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|131.0|0.41|5.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|DLqMH7VOO5VGqb4p7XQVfggCI3PB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|147.0|0.61|7.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|DLrND0Dq8T7wsvEHp285ZyGgNWQr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|108.5|0.568|5.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra09976a|DLs6sxQ4KtJ3PHEvY8KJb3h2SHLn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|175.0|0.62|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|DLvwCLdH5bK7vioGIlF97Z0XZgJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|207.1|0.6459999999999999|14.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|DLwzqfsmiizgtvp2ulXQEqi0GVfP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|215.9|0.68|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|DLxmr7pQkpGXX_v8IaqQfy6z8sfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7900001908697432|0.97|169.0|0.617|10.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11474|DM08-LVM9fkn3RxXFcu7-Uupv_mq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|144.8|0.49|5.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|DM0Ry9Lgo-tDq5elHKf_CdKPDBp2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.05000021859384|0.99|17.9|0.65|1.16|['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2']|bulk|https://doi.org/10.1002/advs.201700759|DM9CUq0m7PCYv5pooxpdigdyaQFa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|191.0|0.68|13.24|['SLG', 'FTO', 'Cu0.8Cr0.2O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.8Cr0.2O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|DMZynnAk87xlll7PugKWqRh3iFTG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu0.8Cr0.2O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|192.5|0.6859999999999999|13.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta10040b|DMoYXrv9ih3vTZt7PjkemnubAwWu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|182.4|0.764|14.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|DMzhyCWpNGMgVuwBCr2gpFhnvlfL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.3|0.757|16.51|['SLG', 'ITO', 'Cobalt–porphyrin', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Cobalt–porphyrin']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01106-5|DN1gLZLSOnYg9u6gIAdLNyP78zzL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cobalt–porphyrin', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|226.6|0.75|18.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201702960|DNP-zrZ0DCahAFrBwJ2wU6HpckJ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|165.10000000000002|0.701|10.89|['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501406|DNPaMIyRxr2ep8E_aG4ifnuRNtTJ|a perovskite solar cell with the following device stack: ['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.89|194.0|0.56|8.7|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|DNcnOzgoKwJSsdIrMKQ9pW5tRftC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.6|0.607|10.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['Boron subphthalocyanine chloride', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOT.2016.2608619|DNjhpc-UXF8CvHaND2e_D7BZV1Xa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.18|215.8|0.738|18.79|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|DNo6Wmo-HO1NM1LmMN5Un6CZwBCA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|156.0|0.8|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|DNpXRFYDznAhEF_3h8xOJlBkIHhp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|129.1|0.34|4.83|['SLG', 'ITO', 'ZnO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['ZnO', 'MgZnO']|bulk|https://doi.org/10.1016/j.synthmet.2020.116412|DO4es9Jx96yAqGc8mp4VaOA6m4NZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|176.0|0.743|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|DODEAe0J-lHvLiKnsrdyxje_bTEs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|149.4|0.675|9.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|DOErqzRv3ptOTOYrFiHRGNsimU2o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|215.0|0.77|17.7|['SLG', 'FTO', 'C60', 'PAA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60', 'PAA']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.068|DOHx16xu2cUWdeFdZs7RrQK2V7mA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'PAA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|83.0|0.455|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|DOUotSZqnyKWfoOWQdwWSbpk7L-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|228.3|0.62|12.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1117/12.2286301|DOjc8dYy__R1qIlZhOrw0gOCtL5n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|63.0|0.7|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PF8-TAA', 'Au']|['PF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00762j|DOkAkwX11KhdGW-oEvdPnVoG1kow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PF8-TAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|165.0|0.317|2.4|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1038/nphoton.2013.342|DP2w4KUHa6zSXRsWh0GVedSGwmft|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.8|0.779|18.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|DPO3fzUXZlQG6gDcgfUoeDL6fFIv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.12|242.4|0.782|21.24|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|DPQUuA5cHB0PwJ7YL2vDGogLEdgI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.607000171356244|1.01|197.0|0.67|13.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.03.073|DPUtkp-GMNGKCBZJ8R9whfNXT6IF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.19|229.5|0.77|21.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|DPVg2qGIXxS9xW3ssd3IRpWk4Gsr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.8|0.73|16.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5120307|DPbRfNFMyKBx_it-yBHA9Y8CLk3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|226.6|0.71|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|DPjlg8pdjhlbwoZta4A9xunCsf3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.0|0.698|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702915|DPkxJw2KMqxXZP8AY0cHRoLP_cVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|149.0|0.7759999999999999|12.4|['SLG', 'ITO', 'PSS-g-PANI:PFI', 'Perovskite', 'PCBM-60', 'Al']|['PSS-g-PANI:PFI']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201500678|DPmaVjpHO2nIpe9hZCUZDtT6DcWR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PSS-g-PANI:PFI', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.0|0.75|16.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/solr.201900104|DPs3ufRNHFbiHSJQA77V39LjOomN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|141.0|0.667|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b00571|DPyDwDs-LHn8PXGc4orVv6T51Mwc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|221.0|0.802|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201801170|DPyc7dsijigc_7FMsFn9cK7Kk4mC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|168.0|0.488|8.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800297|DQ-ofVPvfL8BNQ3QGTmDRa8qEBGj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|180.0|0.6629999999999999|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-43987-w|DQ0p7VXQHU-2rrEhVPMFGQqcJnEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.851|97.54|0.6679999999999999|5.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|DQIMmlkBZdDkNEelXIeyZ0wFUpDV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|177.3|0.57|9.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|DQJgIRBPuh9vefAL_R1NvA57Hast|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.0|0.578|10.97|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM']|bulk|https://doi.org/10.1016/j.solmat.2018.11.006|DQJrV0Si_0hxqM9TQesjCjQy4Gsw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|173.0|0.79|14.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|DQKd-5iK72fjlvJZ-B0cBU101KjV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|190.8|0.5|9.05|['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'MgO']|bulk|https://doi.org/10.1002/cssc.201500518|DQS6qVmbRZJ3JqSGTTtb7t48OXs8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|188.1|0.77|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|DQdoTrxnjLiX2aHNe_YRuyUDbtK_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.998|220.0|0.75|16.46|['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nanospheres', 'PEI']|bulk|https://doi.org/10.1016/j.jcis.2018.12.001|DQilHOO-m8bvq3T0HpWNtFI3TdIV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.099|234.7|0.7759999999999999|20.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201903216|DQxInXWj4DBPE84CjoYCylFImQpi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.1|202.0|0.78|16.9|['ZnSe-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.11.021|DR1CLCQGUYn4g_VQ9zo3ljeXVXCy|a perovskite solar cell with the following device stack: ['ZnSe-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.1|0.58|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5TA01730K|DR3nPzNUz9jCqwt2vxwX3jMW4i22|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701203|DR7uLA6fpnPjbbNGutPEAWOkgkmv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|193.0|0.575|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201900434|DRFSa_x1J3_J7l49GV-JhiE7tcR8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|196.0|0.51|18.9|['SLG', 'ITO', 'NiPcS4', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['NiPcS4']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|DRJ4m3qrsmkAGQ_lybfrFlU7keUR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPcS4', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|133.6|0.76|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201501024|DRLlwt76hNqYsH6f5kzMe36f8dl5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.4|0.62|12.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/admi.201600571|DRVdTBpC8YrXwrp21-WF10I9grd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.58|292.9|0.536|9.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PbS-QDs', 'MoO3', 'Au', 'Ag']|['PbS-QDs']|['ZnO-np']|2D|https://doi.org/10.1021/acsami.8b15469|DRXB0r8CHONQ-3S_vTJPKlZMfeTY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PbS-QDs', 'MoO3', 'Au', 'Ag']? The composition of the perovskite layer is BA2PbI4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.128|225.5|0.7659999999999999|18.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|DRXBpXd7Y5fia1APWagLK33MpPig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.151|31.82|0.627|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|DRdW--J4Lbz7uOfAxCPOQXdJWV_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -C19Cl2H40I13N5Pb4|Pb4C19N5H40I13Cl2|(Cl-PEA)2MA3Pb4I13||0.94|124.08|0.6779999999999999|7.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9nr10382a|DRiAwx1iH8CaoZGQRZs5DNCmy7lM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (Cl-PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|207.0|0.75|16.2|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/jacs.9b09182|DRiyvXmG5jz9zMkuFqjhAzDMmipS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH5N2Pb|PbCN2H5Br|FAPbBr|2.2300002377874453|1.02|29.0|0.65|1.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43822h|DRq_DzNwqB4SfCFW5SqJEtwrq5zj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|191.0|0.54|10.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs; Spiro-MeOTAD', 'Ag']|['P3HT; SWCNTs; Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|DRsPdsUsaTrlQzHISX7FGli1FNtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs; Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.5|0.728|15.65|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900164|DRwqAAIkmEhSKCncyrz-fkxMVZ6Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|148.2|0.784|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201501330|DRzye2oRkEQB7ljzABdxD4SdvjrK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.1|198.3|0.6809999999999999|14.88|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|DS4M0_y5o68VGPXtb3rZ6ECsRaQ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|184.9|0.447|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|DSHUHzCVGUXrhTFdnScm6JFNEnK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|219.7|0.715|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201900884|DSK__7GfK6CrlMUCpWhBU8r40dXT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']|['PEDOT:PSS']|['PDI-HE']|bulk|https://doi.org/10.1002/aenm.201700476|DSRUaWJzj6CinFdNKaLISFCXj-uf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.932|103.0|0.59|5.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.20964/2018.05.15|DSX2XSJ8n1TTS8L7dNKKF1RiafN1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|0.5|79.0|0.4|2.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502458|DSZkAafYP1FyDvCH-0UJN7vxGaGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.88|82.6|0.59|4.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nphoton.2014.82|DSdBWfr8uNaR5XBMw9pbvm0e_mjg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr3. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||||||['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|DSgQlTZb_r59Ftq0GwZv_hcupd6o|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|138.5|0.335|4.27|['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70']|bulk|https://doi.org/10.1039/c7ta10366b|DSq2Z83MgmxXFE-hqlTNfvwQiHDe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|221.0|0.71|14.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta08970d|DSqszsqwiD6lTsJ8a880QU6jOqDJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.0|0.68|13.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c6ta09117b|DT1BhGy0YQavLIhJi9mrZdlKib9Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.77|152.0|0.49|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04267h|DT2sZRfNMzUeBZnGssy3nmFZ34Na|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.6|0.628|12.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|DTBN7GJsmAv1GVrK6X2Fy1HIOrP2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.9|0.72|15.79|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|DTCrABwttkS_ZwoBruynRH9wnA9r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|208.7|0.65|14.01|['PDMS', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05413j|DTDqw2ZHy1i08ioiSBIyjzaWhcHR|a perovskite solar cell with the following device stack: ['PDMS', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.0|0.664|15.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|DTTZ34-mH7OtWVf_L6z5I8tCkoIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.09|234.2|0.715|18.25|['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|DTXy_iR6nA5lmJBfQF8NQ0JepB3M|a perovskite solar cell with the following device stack: ['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|129.60000000000002|0.575|6.49|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|DTYuBwF85bBuNIcDV7UILUEoI5Ye|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.08|231.1|0.657|16.73|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|DTctbcEA07heKMf1TrqRUTuPV5NH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.15|46.6|0.5|2.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|DTdtxcfJgu0iIMpHNCh8zbv0O8PV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|184.4|0.715|14.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|DThw86CvJE91GYxVXb-Z2BpLOZS9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4||0.89|163.0|0.76|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cp03995a|DTmAh4p3gAjYQWCJmedlfGqakLKW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|166.6|0.49|7.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc01483b|DTrtOjdcOmasoArRd0RZ35IwNcMJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|220.8|0.72|17.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227504|DUBhCdJXvqxeUrnNWz7I6tAEvgEE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|158.0|0.69|10.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|DUQJ6FZ_YCiTB7WNThMAUuRk0V_x|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.93|202.0|0.64|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|DUQr4g4Hz2LM0wVxOIRBpOmtvp2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.12|12.4|0.26|0.04|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['none']|['TiO2-mp']|bulk|https://doi.org/10.1051/e3sconf/20186701021|DUXOXTATvKhLR-MKof3GDrV7E6r1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb3Sn|Pb3SnC11N5H42I13|BA2MA3Pb3SnI13||0.78|171.0|0.682|9.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/acsami.7b15059|DUXjsYkHdUEBfh-sWkZDdrPfEMla|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb3SnI13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiCo2O4']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201904684|DUc7AsgjkzlxO1HhJQ4cKqwHPOYu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|161.6|0.77|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['IPH']|bulk|https://doi.org/10.1016/j.orgel.2016.07.019|DV-z1LdlvZnu8TwA_Tl4xaegH6H0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.930000205798103|1.1|157.0|0.7140000000000001|12.34|['SLG', 'FTO', 'ZnOS', 'Perovskite', 'Carbon', 'Au']|['none']|['ZnOS']|bulk|https://doi.org/10.1557/adv.2017.449|DV39Vos3KCtjesjXsT3_dX47-O45|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnOS', 'Perovskite', 'Carbon', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25|1.670000178074006|1.17|204.0|0.773|17.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-05531-8|DVEjH804mVoPOQNQnunmCyagM-dY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chloride', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|DVbQErdVkI7Q_SC6s4PgAXQ4BJs8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.18|226.0|0.79|20.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|DVcON0uZdE4JuITPuPhwt2h0Iozt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.1|0.72|15.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|DVgzo3eB__iGDWWvz4mkNhyYxMVQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|178.29999999999998|0.73|14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01701|DVh1TR2RH9XBSODiZEHyekpZYhz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|160.0|0.42|7.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|DVoRig09cUSU11NuCbKidDCURTq2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.1|0.8|19.4|['SLG', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|DVprMPDSdxgPzvZS8dVHUxFpAAu0|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb5Sn5|CsPb5Sn5C9N9H54I30|Cs0.1MA0.9Pb0.5Sn0.5I3|1.3000001386204838|0.7|233.2|0.617|10.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|DW1m5ZEc4gMNkQXUnzNlHcfiaY9L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|DW7pbw2QJlJMxlCPkNoASwJNlYEI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|212.3|0.76|14.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.jechem.2018.03.001|DWCz6Yoz_xJbHCG_uxFPCxqLE85_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|149.8|0.71|8.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|DWJjMozDOFWv0bcQeRlMhdgqu8_R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|208.9|0.687|14.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602822|DWV6NsStse_lMfTleiAWhR7aKZft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|212.9|0.65|12.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneTTPA', 'Au']|['EtheneTTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201502741|DWbXFP6Ru_790DATF3pcZpllNQ1I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneTTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|160.0|0.62|9.17|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5nr02874d|DWczJi32_EsheMu1wvU0sQMdoJD6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.5|0.77|16.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|DWhJ9VmdnOfQbGidLlnKOY9kOHeY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|174.3|0.752|13.1|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|DWmbpLul6rPaS7DXKk8FQ1IQUvke|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.171|90.1|0.52|5.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201802080|DWosKIqOUiP_-WTke7Xi3GQsqHW6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.163|225.0|0.76|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|DWq7pKc1j5pqP2-nXDSelBtf9pbv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.58|160.0|0.2|2.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|DWzTkvlcvDOzi-B6amF2xgmsge40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||50.0||2.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|DX2sSzqsonoObyNnMMin_F5J6Diy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.4|0.73|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']|['DR3T']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|DXI20Ofdn0Kw9enWgL3h6htqd6Sy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|200.6|0.7070000000000001|14.06|['PET', 'Au', 'PEDOT:PSS', 'NPB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110379|DXNBU1wzAjXOy_eQFhWV4HphSzgj|a perovskite solar cell with the following device stack: ['PET', 'Au', 'PEDOT:PSS', 'NPB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|215.0|0.294|7.9|['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c']|bulk|https://doi.org/10.1039/c6cc04840d|DXOR583CK04Mlig22BJe9-OrwKiI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|189.0|0.72|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'LiF']|bulk|https://doi.org/10.1002/aenm.201600994|DXbU_3BJig5wQaakfE1p8Xf6dIdx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH101I57N32Pb20|CsPb20C19N32H101I57Br3|Cs0.05FA0.65MA0.3PbBr0.15I2.85|1.5500001652782691||||18.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|DXjvv78Nb6pdvnHRAfFxlNmoLp1o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.65MA0.3PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|128.0|0.65|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05189h|DXpRg5icg1yzmc74kUf6AT3GorOl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|179.0|0.72|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502009r|DY5NCg7oZdsA1RPD65LtXZtZ5PMc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.670000178074006|1.04|208.0|0.647|13.98|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9tc04282b|DYDwDOVu2j0i2ll3jnv2EE21wYqv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|197.0|0.75|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|DYPZiJSCLfRiFnBcYf7MTv0cBcXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.919|227.0|0.47|9.4|['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Alq3']|bulk|https://doi.org/10.1039/c7ra06645g|DYS8pvCLNc7cG2_YuVhqd3lFTmA1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.92|210.7|0.622|12.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|DYSOFXHt1dZ4HrvVddVfnc5iwtv6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.83|125.0|0.75|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|DYiM_J6JZq_xC5Gt7xrMGhrUvhu3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|116.2|0.38|2.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|DYpbcxiGj0QJj-rF1Li9oH0dBwDq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.33|4.8|0.39|0.06|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.ijleo.2017.02.101|DYqJbTeNXH6AV6UZCDNyCpmUtHkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|180.8|0.569|6.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|DYvfVUClL6C7YYgDNr0uRLCR-R2t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|159.0|0.768|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/cphc.201800732|DYwkfaOAnqhYbkPPH1kwxUGate-O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.06|227.3|0.735|17.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|DZ5_hm-l8A8jfx__c20TqN3EGPM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.6|0.622|13.27|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|DZFaM3OurEzHAH-OfmH_hOTcmuMh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|70.4|0.43|2.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra27122c|DZLq-HOUUvBK2EANFZSWaTrRp1G0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|207.6|0.7440000000000001|16.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15684|DZV4LtCVWqi6IXXvevnxc8bXaBLs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|218.14|0.7|15.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MoS2']|bulk|https://doi.org/10.1039/c7ta11295e|DZYP623mZIKWJuZ_l-ZA-u1jKxFT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|166.70000000000002|0.44|5.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra09110a|DZcOFXVfqpBW1doyGaOPzEd6deyo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|220.9|0.5|10.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|DZpkOGINpiJVkx-xbzX-6A_ZBLa0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|199.1|0.56|10.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cphc.201601245|DZyVz1bxMnDOmmAvhgbskbvyRJuH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ba2K18Nb19NiO60|K18Ba2Nb19NiO60|Ba0.1K0.9Nb0.95Ni0.05O3|1.450000154615155|1.27|2.3000000000000003|0.647|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1367-2630/aaf8eb|D_4VJbdqqryEfuhSNdvuOzx4eses|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is Ba0.1K0.9Nb0.95Ni0.05O3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|121.0|0.62|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|D_E-NqhYlYy6vmWbkt8qc7ngt6C-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|189.0|0.67|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|D_Gukl40rhKURRdW-3KkA8ikz0cR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|76.7|0.66|4.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b05267|D_JPqHKye4BtnGgA7NYtw7GhgHmG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.96|118.9|0.58|6.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04590a|D_M-7nHEonHuHitK58pKWhJDWn6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|219.6|0.73|16.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|D_QKZK3EdZJQDjmtqTk6Po2-j0-d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.2|0.467|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s00339-017-1240-7|Da08LfOJrFtO03Uzt7gA1vddEjva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C50Eu3H300I150N50Pb47|Eu3Pb47C50N50H300I150|MAEu0.06Pb0.94I3||1.02|207.0|0.778|16.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|Da1n1SfIH-5Gce_QVGvxSGEX1BPi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAEu0.06Pb0.94I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|77.2|0.4679999999999999|2.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|Da4NqAtYf8clByCqucPedmg4KaMN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br22C100H517I278N183Pb100|Pb100C100N183H517I278Br22|FA0.83MA0.17PbBr0.22I2.78||1.09|235.0|0.74|19.0|['SLG', 'ITO', 'SnO2-c', 'PCBM-60-np', 'Perovskite', 'PDCBT', 'Ta-Wox', 'Au']|['PDCBT', 'Ta-Wox']|['SnO2-c', 'PCBM-60-np']|bulk|https://doi.org/10.1002/adma.201806516|Da7XAOqw9p-VZFqqkAMywIj0-TnY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60-np', 'Perovskite', 'PDCBT', 'Ta-Wox', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.22I2.78. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.9|0.77|18.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.03.042|Da8Rr0IPEXyHP83yanNUe3ktxO-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|188.9|0.79|14.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|DaNRkj4c6D5JLWwIziWfkhR7s2NS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|198.5|0.764|15.91|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.electacta.2020.135697|DaVKoAj-oPzupvXwUWsT-Rn3mEak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|118.7|0.71|8.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|DacVSqb2mMkVhiAWaq7IChnOrRm7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag10Bi10Br59Cs20|Cs20Ag10Bi10Br59|AgCs2BiBr5.9||0.96|22.0|0.643|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta10422d|DaofxuLzfb_GRTca-ul1AsYMP8DP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr5.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|129.60000000000002|0.56|5.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.017|Db-n5CfZJOqjuPXh8w8Sm3aU_pF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.72|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|DbElHwVlyYJySi3KGobIROOI2t-3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|235.9|0.68|14.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|DbXdze-atJt6VdlxZN5dJcZYAuDl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.75|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|Db_W6VMwS9LZfio4NK_1gTk9akS5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3|1.5800001684772036|1.12|170.0|0.7|14.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|Dbq7t5t60nRpAjuLsvojzPiKi9r7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|206.3|0.71|15.44|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']|['PdMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|DbtmN6pdmsv7vWqkb1Ku4rCrVVcg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.983|198.4|0.539|10.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6tc04639h|Dc5e3WXKs5pEcDgxAy7cXeP6VigA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.011|19.5||15.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP', 'Ag']|['NiO-c']|['Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.07.030|DcI_otx5KRMGWSzFbU-IlF84BxDt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|145.1|0.61|7.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|DcJJpgViNl3wAJe3r0vFeFvlpMCJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|139.0|0.34|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|DcMr-S230IJZT-AE0ZJtE0a6jae_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|118.9|0.493|4.57|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s11664-018-6614-x|DcPPZ2sOFFlGvS_eWAHs5Dma12HY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.5550001658114248|1.048|218.4|0.736|16.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b19908|DcTyz5S3cENDPDJz7C4KG3dd1GkN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||9.34|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|DcVSgZjIj-1A193-Elw5T8wOqzXp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.015|220.5|0.7070000000000001|15.82|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|DcW9wWiag4Mjc_gIod7bspAOLsa7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368|1.22|130.9|0.708|11.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|DcWjsLOWmZswDIi9zMlDaRwE_Hvr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|223.0|0.7|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03394b|Dcf1lbZDr28L_64TcAfs1dJ8xnGf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.0|0.546|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07647|Dcjcvz6Nul3X_pKF0ZWKHQvrYGX3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.95|218.0|0.72|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.07.065|DcpZW2cpIv214npEBpx77fEVDf3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.2000002345885115|0.83|1.9|0.353|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|Dd27Hy0xHhOCB1fYftPCq7510EBc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|68.7|0.363|2.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|Dd7xNOKBBR1DjSEoQhXuLlvWlca_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9060002032389556|0.98|115.3|0.557|6.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|DdB6CNNE3jODrXDyxNZiHSqppYki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|196.0|0.74|15.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|DdBWEUWsA__X86siA81W6ZmsEkEL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.42|73.3|0.738|7.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'Carbon']|['PANI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|DdCrf7Nu8ku4vpTOWvgH8LQTsxCk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.1|0.7|14.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700290|DdU__ymPXMWD4cpmOehd3IscEkiL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|230.0|0.79|20.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01760g|DdfysCtl_9I0snvI6mLX51ProLi-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|144.0|0.5710000000000001|5.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2016.13661|DdlEo9ujKFgTn1ywUZ97HOmc51rF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.04|238.3|0.794|19.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0325-6|DdoXuHQtUFFwTT1-9R490xSodhs4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|161.0|0.66|9.21|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5ta09067a|DdtSGJxYP_1Dj9QrQrOfrsRSl1GN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.77|139.70000000000002|0.427|4.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|Ddwypvxl3rb-61K_gt0qDvxVidJI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C94Cs6H485I120N173Pb100|Cs6Pb100C94N173H485I120Br180|Cs0.06FA0.79MA0.15PbBr1.8I1.2|1.830000195134989|1.12|153.0|0.72|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature25989|DdzdYKKddz8_6m078ZEnvVLlgAxh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|181.0|0.75|11.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|De0nLtlkvd1pdP5qDwTJR1-NNXku|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.99|228.5|0.67|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.089|DeFak1rxm_Vt5A6TyugMmHUQ6oPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.11|189.2|0.743|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|DeJ93mHlrw-TFmzhUs06EGG5o1-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|37.0|0.526|1.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1002/solr.201700066|DeSykgJJnd-9_e1uYoy3av_Rsnpw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|184.0|0.74|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b00447|DeUhnR3w6eL9PcqOVQXzCiSci3_V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|222.0|0.737|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|DeWnQ33TJnE_wq4P4rz7jubQTMKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.8|159.5|0.405|5.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|DeZrclCMj2KvY-NKmt1nsJ2Nj40m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|1.11|197.2|0.7659999999999999|16.79|['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|Dehf4-KUMr0XDaFDU1rJQb6qi8MF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|193.6|0.7|11.65|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|DeossppTSUAdjFVyR7Ymi4M8aqK-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.2|0.69|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ODA-FeS2-np', 'Au']|['Spiro-MeOTAD', 'ODA-FeS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201601119|Df50IC_5DqL0FwmELvtfFyjRpgf6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ODA-FeS2-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.05|22.0|0.14|0.01|['PET', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|Df7yCchydGoSYZPSurxiI580xQEp|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.8|0.7759999999999999|19.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']|['PCDTBT8']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.028|DfClzA-9RGq2gUmSAExAIO-S7Iie|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|175.0|0.64|11.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|DfMfu76aeB8IbdRQn9cgwjWsBuzL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|||||1.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800217|DfQjjPi6mCOHskFSsrmUUCZUTODk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|223.0|0.74|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.9b01352|DfRxiSkg8akdQlok5wqHRr9DgVpB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3300001418194185|0.78|249.0|0.78|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|DfTHC1uz-gCl3h8AwP3AyEi-CfX5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|173.0|0.6|10.89|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|DfVvcPQT--kdbj2VAHmPaI3qePQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.78|189.6|0.7|10.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|DfWZbwBlGqBgYJkopgG0uwvtcyvh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3||1.1|135.0|0.55|8.0|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta06719h|DfY17IZOdibclvgivCKVBDIuswYp|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.1|0.73|18.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|DfashR3_MFeAVfnBaUhEoLMhgSPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.0|0.78|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900132|DfdfoqND-xndF-6qqQuq9JXbpWTd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|223.8|0.7609999999999999|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'MWCNTs']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.003|DfhCDffNyp1WPdWioSF1QcH5u057|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.92|157.0|0.439|6.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|DfnUrnjMj8Fm6wHGw0vp60qH5v5z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.88|150.0|0.55|7.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|DfzUDexS8ocWQE8os27DQV2V4z62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|197.1|0.591|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|Dg5KgkE6vpAliQ-jwF5JxWw7CeJc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|210.2|0.72|15.43|['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|Dg5uuKRB8Pu0vUdfH_5J49FD7FNe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25||1.02|126.0|0.53|6.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|DgJrHFgq5hApExVsNrvADw5Q9hYH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.75I2.25. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.59|68.7|0.812|8.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110267|DgLGCvgsU_QOCnbESDOf9tATU76y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|224.0|0.6779999999999999|15.03|['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|DgNzKcz_M-0qn1FITsH_cRZHbZuP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49|||212.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.10.062301|DgSrfCyQ0KwBIs0hT9AVASASNd8Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|202.0|0.6409999999999999|12.29|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|DgZSl18jzlPmt9hqAVZ1106Ap301|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|Dgaw26nkakyJlxC4jWUm6sv-EqRY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|103.2|0.63|3.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201301327|DgbA3xBeCyW3lZXvm20zh9rfwM4v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|234.1|0.79|16.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|Dgiks2QKT7WTuRFZ7vytZkmjihfD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|238.5|0.68|16.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00477|DgmDjQDhwcDz53oLYuEaiPtGAszP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|233.0|0.66|15.8|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|DgoDtMiDYDMxG5G6x4ZVVHES7oDf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|31.9|0.54|1.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|Dh12cWD2arfXGh8oOaQbjeTy0yoK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.198|77.0|0.3|0.46|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|Dh78Jm3qVuxR--JQMb1VKEs_1EHX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.094|223.5|0.785|19.19|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta07048b|DhAVZbEpXNPRE2NmeRAElLvBjXhJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.61|152.89999999999998|0.56|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|DhEVlTQeqyPQmbYk8PJq48_jmmsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.7|0.637|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|DhRpDhCyoBuEpPxEY_oYZdmSn6xH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.008|132.0|0.445|6.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|DhUEgMycQ4U3eGmmZ4sRVuRipGrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|205.4|0.75|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|DhUdpyXVlAoTHN_fKIe9FjKKKg4i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3|1.6100001716761378|1.0|185.7|0.7440000000000001|13.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c6ta07712a|Dh_FFBxSS0sxs0n717RbO9gK7XvF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|220.0|0.623|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.6023/A14110823|DhvufV68tPTbNZk_34JbpB3aVQOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|Di46hK4JLj4mZ6l--2B89hYKmVuq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7000001812729404|1.232|199.1|0.771|18.91||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|DiFbN91mP-Y5GWhwGiOarFntvU-J|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|0.964|225.3|0.745|16.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|DiPCm-gP96EutHC1Qi11bwJeTH9X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CsI3Pb|CsPbI3|CsPbI3||1.07|200.0|0.72|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc04851k|DiS6EooNstPUIvPtgXEM-KjuVvey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.82|42.0|0.61|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTZ1', 'Au']|['PTZ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00054|DiXzf3qN4K71uOfInZPY5ahmtZVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTZ1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.1|0.8|17.15|['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['3-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|DiYpfT89hs-AWV2nlCwYYUj5brdp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.1|210.4|0.65|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'CuSCN', 'Au']|['NiO', 'CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|Di_cgMTtReflsnKmO99HNFHBVK4X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -Br21C16Cs4H80I39N32Pb20|Cs4Pb20C16N32H80I39Br21|Cs0.2FA0.8PbBr1.05I1.95|1.760000187670809|1.1|172.0|0.73|12.4|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|DiaJswR3pvjQ5tFGCCF7n09fW4qy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.05I1.95. -C97Cs3H485I300N194Pb100|Cs3Pb100C97N194H485I300|Cs0.03FA0.97PbI3|1.5530001655981625|0.94|212.0|0.669|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|DiafNyHUUxczZq7uUo2cHiMwyaQj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.0|0.72|15.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|DihJuQMITwDcVykZ94ePxWXTy1ci|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.1|200.0|0.62|14.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|DioL0zOD5EFJvkP93brzo95IoK4x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Sn|CsSnI3|CsSnI3||0.26|124.0|0.45|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700224|DioX4_NxAA8wF9E_u2KCYJMXBgWo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.0|0.62|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|Dio_9hWGbHVv962dcl1T6cQDbmEW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.957|186.4|0.583|10.39|['SLG', 'ITO', 'In2O3', 'Perovskite', 'PTAA', 'Au']|['In2O3']|['PTAA']|bulk|https://doi.org/10.1039/c7nr05695h|Dip1fYW8vb5Ck_FA2f6twXRXPuVt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.11|92.0|0.385|3.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|DisoCRDy_0vcvlQCxPF693IOJTw3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|36.8|0.433|1.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974794|DiswNTv_KEvlzosedcX5_HtbtCZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|167.0|0.784|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|DixEG3Ns9VZ27BKAEUtr-j5f2JdV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|154.0|0.74|11.4|['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZrO2-np']|bulk|https://doi.org/10.17586/2220-8054-2019-10-1-70-75|DiyBMQ296ASXOZ0JBgbWvQob66zK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|95.1|0.66|4.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201306217|Dj4Mq-ooGIZMNopJdodM7eHvizFS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.19|125.3|0.815|12.16|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'TaTm:F6-TCNNQ', 'Au']|['TaTm', 'TaTm:F6-TCNNQ']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01936c|Dj9udRUwxIeJqyik7kg575gBS8cQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'TaTm:F6-TCNNQ', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.04|221.4|0.67|15.31|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|DjBETlkR5lFxjBXnPMcMPafGS3Pc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|239.3|0.39|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|DjQ1uD7SUzCUV--kl06e_KFvMLge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|DjSm6Gg_Hw5XrYnIYOqvm208Ok_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.2|0.67|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1039/c6nr09972f|DjUBizncpeQRdcOESsfmrd9zrGqD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.089|8.51|0.25|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|Dj_9LDDAzmrf1S9NrDdKIWkbxFjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|158.0|0.74|12.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|DjdJ81oBUT4XyfohQTJ7QvTlKRRR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.7200001834055632|1.18|124.0|0.49|7.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803699|DjkfZBhPjALQRQ5PUivMNOCLIET0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|223.9|0.75|18.31|['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta00398c|Djx5LDMSR7Cj47jFtRTRTzXXVmOe|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.1|0.7490000000000001|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|DjytNjJXuTvvUPNVTkz5GEb20WCq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|217.0|0.67|14.33|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|Dk5CSSyyG_8pWSr8W3LXvG1nzXee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.12|233.9|0.8|20.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|DkDYhvSu1rC9K-iZu0Je9Zf-dP_w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.094|185.0|0.63|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P4', 'Au']|['P4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|DkL_Mkxo5qlEnp1L1s-U3O9Qcjo6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|177.0|0.53|8.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jp500717w|DkbQ33RHOH6HDl7azkqdJNVPpEya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.137|218.3|0.7490000000000001|18.57|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|DkgA8Vt6LghNYiaZ9PulYcDqtETf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.04|174.3|0.713|12.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|DkhyXOybZK8zppgU3nuVpQ5_wcfT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|191.0|0.69|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2015.05.106|DkmIMjVoTMIN0M2s4VaUqbQTWVyp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|208.5|0.713|16.5|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|DkmJlVNYqLpW-caMMKpWgv71klnI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H116I51N24Pb20|Pb20C20N24H116I51Br9|FA0.2MA0.8PbBr0.45I2.55||0.94|184.5|0.706|12.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|Dkqp154xuwbIEJmCzA_pguxCCKv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.8|0.71|17.33|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201900417|DkxASSZNwAzienEjuQsXGuKauhCv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|189.0|0.7|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500048|Dkx_kbJS06IoT43Nhvp3xrfZVGIc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C371Cs9H735I260N142Pb80|Cs9Pb80C371N142H735I260|(PEA)2Cs0.45FA2.55Pb4I13||0.97|27.0|0.49|1.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|DlAI5lAEcoocLJJbJkM1smTkksoW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2Cs0.45FA2.55Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.09|213.3|0.733|17.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/ncomms16045|DlFJyHFcALSWYQxBnju2jWbL6sth|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|223.0|0.691|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra12304c|DlGFYZ_HLZgdMsPBqDI0g-Pc8VfB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.320000247384248|0.77|17.9|0.55|0.77|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.9b02958|DlWh5da9p8EB5W2MNqNLEM3vnKx_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.7|0.62|11.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08536|DlXgoO7UHvwMXFUAjzuYCOTRz8-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.508|13.0|0.41|0.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|DlcUzXqVLYsj9j00QVe8St8WaT6K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|192.3|0.7020000000000001|13.35|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b10614|DlkqF8DNvcBTt2YG-nwLW2yp-Vec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|183.0|0.71|13.9|['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|Dllp8OqDFS5ave-XsPDZZHzJrKMc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|175.79999999999998|0.75|13.57|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1142/S2010135X18500066|Dlr6DSLC5MQrt_zzwtiQ849naiGA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.223|195.0|0.721|17.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|Dls_GNvG_k1rd5rtlM697dxcUSiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|71.3|0.499|3.2|['SLG', 'Cu', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2019.03.002|Dlt6Pxois0HlP-2GaNqPmUqTGNxc|a perovskite solar cell with the following device stack: ['SLG', 'Cu', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.031|155.74|0.483|7.7|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|DltS90qJfNlxqEFIirmNgeTqmMNz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|235.2|0.76|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'G2', 'Au']|['G2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800809|DlvzM_A3oj_omdzs-vpPyBIt_2vW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'G2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|26.9|0.426|0.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|DmDZxJbE7ihTPLoRyMd-HRVr448X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.60000000000002|0.6829999999999999|11.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2775162|DmfhhYt_zKPsx5hJHxjsveeAfViU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||1.02|157.79999999999998|0.7829999999999999|12.56|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|DmhCQ-SB7ODVpropUDktvPBraK0l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|223.5|0.77|20.65|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|Dn-h9HpTnBO7LrLE_O3kC8XxFNLa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|177.3|0.7240000000000001|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06607|Dn61RkOcD_AYdnkJclxRCWIPcDER|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|221.6|0.76|16.33|['SLG', 'ITO', 'TZ3', 'Perovskite', 'C60', 'BCP', 'Ag']|['TZ3']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|DnBpicabInmpKN5eB-5I9422duie|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TZ3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||0.98|165.0|0.72|11.64|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|DnNwXNwA5r1lg_IRx8xY54IJOii8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.9|206.0|0.604|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']|['PEDOT:PSS']|['pBTTz']|bulk|https://doi.org/10.1002/smll.201803339|DnVj5PZAAb-At1USyIs4uDNHHmra|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|224.0|0.7|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03103c|DnZdv6nu_CDjirLmsi_y5yrTZOpP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -B59C20F236H120IN20Pb20|B59Pb20C20N20H120IF236|MAPb(BF4)2.95I0.05||0.957|181.5|0.76|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|DneLUpZV-g-isAoi_ha02clH7Jq-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)2.95I0.05. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|243.4|0.75|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09933b|DnlQvhV7T-rw9CbcAF5gpVztAI7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.5|0.601|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']|['IEICO; PBDB-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09467e|DnnJcgxHtMbX33Ceg-T3BHb-l6zd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.1|223.0|0.71|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|DnqLI9td9Q5fs-5gma1oA0Qk2nLm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.05|183.0|0.73|13.6|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'VOx', 'Au']|['Spiro-MeOTAD', 'VOx']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c9se00081j|Do6RmDmXFmITRvoXLNVEhZEzA4ZA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'VOx', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.96|196.4|0.66|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.056|DoD__kGsUzXWHK3jmpVcQz5gB3-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.967|206.19|0.632|12.59|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||DoIk0G6nyTjxlWNsAcjOXIvlFiAx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|126.1|0.56|7.09|['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['Au; NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201504621|DoSrCemBcn20MCAPKCXppmivV3-V|a perovskite solar cell with the following device stack: ['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|212.7|0.68|14.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|DoaghOhAchLGt2Tp8mL24UTkMWfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.104|215.7|0.732|17.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|DoiTD1aRAUFvD1ynU44lYxmoCTZU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|158.0|0.68|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201702197|DoyoZVCUvamY7_VB6OMuWcz0pZrS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.111|223.88|0.76|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|Dp1iXFlAjaQGsy7CVDcKlTYGFjm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.2|0.64|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF003', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|DpCSpZDpZmbyhBwzMHJIl9-HY1pg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF003', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|87.69999999999999|0.469|2.59|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cp01140g|DpH9tsDc5JbuCxSgnGEBZPFK4B1H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3|1.5600001663445808|0.97|187.6|0.726|13.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|DpKRQLr4mUhtpZl8IdZcM0hi-AL6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.1|0.75|16.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|DpTR9kXiZHaiHHpy6lvWf7wAhK5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|230.4|0.753|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-4', 'Au']|['BTT-4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00997f|DpZejomGMC333WAW23H_FDNuyUlP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-4', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.06|183.0|0.735|14.3|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'PET']|['PCPD2FBT:BCF']|['SnO2-np']|bulk|https://doi.org/10.1002/admt.201800390|Dp_y_7-Ome-s32aeIBM5mOn-BSZf|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'PET']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.97|215.9|0.754|15.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03658a|DpapT4jHMkixwXP9ZUKMxyrJaiVT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|181.3|0.551|10.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|Dpk_aGNQJxpGNxvEG2ropqkH1yqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0|183.0|0.51|9.31|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1246/cl.160281|DpqPlTAWZiTjGH_jx2UpBHdflZ7v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|12.27|0.667|3.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|DpzHCTHsr4qg38msIZetcyDRdMri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.51|39.0|0.53|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'I2; LiI; Methoxypropionitrile', 'Pt', 'FTO']|['I2; LiI; Methoxypropionitrile']|['TiO2-mp']|not processed|https://doi.org/10.1246/cl.130774|Dq-ydK_NBXOIir-aanms6vPbq9xK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'I2; LiI; Methoxypropionitrile', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.075|236.0|0.7490000000000001|18.5|['SLG', 'FTO', 'TiO2-c', 'CuI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CuI']|bulk|https://doi.org/10.1002/aenm.201702235|DqIHhCpoaD2U-DnkW-bOE2pYkGDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CuI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|78.60000000000001|0.5379999999999999|3.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-2', 'Ag']|['YC-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|DqWIEUXO6-vEGEVpV4f3RQucE8jd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|217.7|0.58|8.99|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1021/acs.jpclett.5b00010|DqZbj7i9zsRh2-CGjMwqFFkgQom3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.034|171.0|0.69|12.2|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.004|Dqf1i77MRZLY0Pl31Q7ucUhJ7Q9l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|176.8|0.759|14.25|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.0c00067|DqmMJBWvzIRudQ7w7jwjCm0Y9eoW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|DqsS4ovuM1fAc_zarKOwZdm6atP0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|185.3|0.48|8.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|DquHW-wq_rfHjVUd89leJDlM-XkL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.2|0.755|17.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.chempr.2018.03.005|DqvvHZZB6iUJI0vDdwnW2L2I4cWs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|196.9|0.65|13.45|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']|['PdMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|DqzTJpW9nEzjuOhUu5YugdTUZF0W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.3|0.741|18.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|Dr1wUAn468t5ThJLSEuKpDeRL38S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|129.1|0.63|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2016.12.050|Dr2QL8svG0hq6HKk6tHnSh3TTBS2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|219.0|0.65|15.6|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|Dr4ugjG19LfLNxi_phGAQxCHoO1W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.0|0.75|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|Dr5-9Mc6Jhumg6GJmk49n1zMfBrN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|196.0|0.8|14.1|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|Dr8XJmtRzawR81jkS8WnOueSrRHY|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||1.08|230.0|0.68|16.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Au']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|2D|https://doi.org/10.1021/jacs.9b06418|Dr964zu738Zn1K8gq2qogMMwPNzl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|195.8|0.59|10.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|DrKDJJ6SjhVe4ywb_E_ZUaTA-oRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.095|239.8|0.769|20.19|['SLG', 'FTO', 'SnO2-c', 'Perovsite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b01037|DrKOXvtPmXtWzb8qS3HjLtPe6hY-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovsite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|171.4|0.71|11.56|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|DrPHYKJLwgPrhW7MvOhTBnG8kE6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|195.0|0.616|13.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|DrRkGZteR5RUKlpK4R1QVlrT9Y7k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|DrU6EoaP9Qo5I8hC14e45OUr86me|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|171.0|0.65|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta09992g|Drc1vOppET6-8imVJvHhKyh14Kky|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|Drv-lQ6-5l-GOq6dbyq0Od528-nV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|152.0|0.711|4.63|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.01.027|Ds-yPu3hkPvDAIfuxLw6de-aeZR8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|182.3|0.762|14.88|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.0c00067|DsATYpj8yepK7Ri9V71bCcXlgxfX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|224.6|0.78|18.11|['SLG', 'FTO', 'PEDOT:PSS', 'NPB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NPB']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110379|DsAm8BoQOSNJGTP8jvZugnG-d2cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'NPB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.1|0.69|13.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|DsFz9cAbB4WppWA-TM3E2OGe6wMw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|229.7|0.7240000000000001|18.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']|['PbS-QDs', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.069|DsJulFuRASmQkrl0vOxe-4t6idGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.06|223.0|0.726|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201500768|DsurCaY3pjJmb-B3B_oao_dz1IVI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|188.48|0.6629999999999999|13.36|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|Dt-9HnZvzop4iKxxzYcZp5PPKQpr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.1|0.696|15.06|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|Dt1tFCHBV4AjVh9XSJ54661bhLtz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100C83Cs17H415I200N166Pb100|Cs17Pb100C83N166H415I200Br100|Cs0.17FA0.83PbBrI2|1.670000178074006|1.2|196.7|0.76|16.24|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201801562|Dt3c7R6nf8om6i555swXCt8xO7Gd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.0|0.777|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|Dt9BfPTVb0GrzhDl0FEmLPdB2mJB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|201.0|0.61|10.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/jz500833z|DtQTGgImSS22s0yKG_2Sfgmdn5oM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.96|192.0|0.66|12.16|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; PDI-DA', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; PDI-DA', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01154|DtahfZ13a12Z-6ivbAqF7TKrMarp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; PDI-DA', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|82.89999999999999|0.5489999999999999|3.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|DtkeZABKCsPqYtmAE7Z5PDkYWa3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.3|0.69|16.56|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b08658|DtwBV9matp3WowIn8cZOxhnKczRT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.99|202.0|0.62|12.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.100|DtxZB1cRpI_Oh3vL5GjZiMyJgIHG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|207.1|0.7509999999999999|16.33|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-70', 'Rhodamine 101', 'Ag']|['NiO-np']|['PCBM-70', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7nr01678f|Du8wwWZ8D_17GurtRJsourZN1BIR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-70', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|82.0|0.63|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'AUH']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|DuBMT18pZn3uesisr9I0yQlLeYEh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.66|12.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cphc.201900856|DuNNQurKE7ymutOnfJW5AUMK6rDm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.0|0.575|12.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|DuSxAoUKdtJgNDHNSEBzFZO7tcqM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|186.0|0.68|13.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn506465n|Du_UwTPZf6uijt2to31AqVPvJppU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|148.0|0.767|12.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901152|Dv7GUXcnW4juH0corfnEHbvmhxBg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.93|189.0|0.76|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta09967c|DvEPec5F6ZutnQrXpLliuz1IxUbT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.12|231.5|0.72|18.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']|['Thiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|DvKj3Oti61O2QyVwN6sUS87Y7CSe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.2|0.81|18.61|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|DvPSWIarqxiHF5GGVukRSbySe222|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5300001631456466|0.97|209.6|0.647|13.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']|['PEDOT:PSS']|['C70']|bulk|https://doi.org/10.1016/j.solener.2016.05.032|DvSjLHCsV0TBdsloIjtKcEVuaR9o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.75|270.0||14.2||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|DveVcO2mji-0BsNp_sD3nlR865fw|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.5|0.758|15.83|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|Dvt-XRtDL3DurT39JweiO0IYDg6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.976|211.8|0.511|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105734|Dw3Bsc2gGcZrZo03idvTpWL1yf94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|213.0|0.6970000000000001|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-Br', 'Au']|['OIPC-Br']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.202001460|Dw3VSGiyu9KkN0z-_rKGpEc7WQeH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-Br', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|215.5|0.74|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|DwDeJvH1KOGLbO7HVKfr8CQL3NUy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056||||7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Red Phosphorous-QDs', 'Carbon']|['Red Phosphorous-QDs']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.solener.2018.06.041|DwNX-sGbG7uTz6QuXd5ppo8aa-_X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Red Phosphorous-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C19CsH111I60N22Pb20|CsPb20C19N22H111I60|Cs0.05FA0.15MA0.8PbI3||1.08|225.5|0.79|19.15|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00161h|DwVIQUBg2cn4N_FU2C2uxuljWJVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.15MA0.8PbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.02|195.7|0.7020000000000001|14.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'BCP', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801010|DwXfuIOr9ZIfhWWKhShpr45GFF0L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'TiO2-c', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|225.4|0.78|18.75|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|DwZmRli1hsnSrQ_zYm7f9-bdT1z9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.84|204.6|0.687|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07359j|Dw_fy7rVoEIQp2b8seMtIV8IBN42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.97|154.5|0.542|9.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|DwawMn45-gtG5b0qnHVEAmRyh3eQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.07|222.5|0.7759999999999999|18.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|DwuXM6GG3I4r8PlcrEg-kAewh4bO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9010002027058|1.02|90.6|0.5720000000000001|5.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/anie.201807270|DxHQOL0yf0YuSNRRjeWYBBuGBBVN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.76|153.8|0.5429999999999999|6.36|['SLG', 'ITO', 'Py-COF', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['Py-COF', 'PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b03463|DxXksrc7jdxjGobJ8euR-H5ji07t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Py-COF', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.5|0.74|15.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02241k|DxYitDD_4QHnD7CAxshJcXnxm6UJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.173|210.2|0.682|16.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|Dxmh6Oeke2c4TTyJUYdHmA_icisJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.8|221.0|0.27|4.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']|['PEDOT:PSS']|['DNDIF3']|bulk|https://doi.org/10.1002/asia.201901452|DxpopPsCaQLVEtGYHmOBdmsSYWWa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.78|18.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|DxuQXu3hlYjVIuBtP5t5_rW2g1Lc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|67.30000000000001|0.266|1.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2014.07.039|DxxEug7iX114kPnvbwm2wx8IJLOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|217.4|0.775|18.8|['SLG', 'FTO', 'SnO2-c', '1‐butyl‐3‐methylimidazolium bromide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', '1‐butyl‐3‐methylimidazolium bromide']|bulk|https://doi.org/10.1007/s10008-018-4066-0|Dy0IAR_WrzLj1L94pEaKvAW2ic1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', '1‐butyl‐3‐methylimidazolium bromide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|229.7|0.764|17.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12274a|Dy4Rnn3TAuMkTz4cDDH1FObMan-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|202.2|0.76|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Black phosphorous nanosheets', 'Spiro-MeOTAD', 'Au']|['Black phosphorous nanosheets', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.018|Dy6guC-7RKEO8DVa5Ebj-lVS9WeG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Black phosphorous nanosheets', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|106.7|0.48|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-PCBM', 'Al']|['PEDOT:PSS']|['bis-PCBM']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|DyNcYBsnCjOkpFfdHdDBXPVjk0yr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-PCBM', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|220.5|0.695|15.94|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b03304|DyQ69qLOnwfPmr4-DWLf_FAueots|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|145.29999999999998|0.61|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Dyd1eQBG3IRXmazC-xszodPj580Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.2|0.63|11.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|DyjW3B-C9PH_oaB-zR3w8Grb8_Qr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H10I2N4PbSn|PbSnC2N4H10I2|FAPb0.5Sn0.5I|1.2200001300899923|0.662|146.39|0.629|6.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|DyohMk1CpMwoscHz03eOY9HKCmvR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.5Sn0.5I. -Br251C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br251|Cs0.05FA0.79MA0.16PbBr2.51I2.49|1.6300001738087604|1.127|217.0|0.732|17.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.093|DypeynHKa43VpBL1Ywz87_FFQb9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr2.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.5|0.76|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|DyranyvHhE_DQkAZEjfUcHUEy4IU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|238.0|0.77|19.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|Dytc0JxvgurjkQ8BfH5MmHfsoKPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.1|224.0|0.752|18.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/adma.201908011|Dz-lE04GDHz9YgF7GsK7GzCKeBHI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|229.5|0.755|18.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsami.6b05971|Dz0uaLPkUH5JlRVflSaJo8NKYWZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|236.2|0.7659999999999999|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.085|Dz3dfK0iw3qD9r4PJwT7Du_csivL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.13|94.7|0.625|6.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|Dz6CXgzQSZ1QYIxGf2wVrgOpaPX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.1|0.769|16.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.003|Dz8AccFQw2aUo1C2phf_lWGzJ7_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.99|178.0|0.64|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|DzCV0hw0UmJap9K3SBQHWZ_I-cLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|222.3|0.759|18.21|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|DzFLtGAX1bAHWQCGur75sYqwsqbR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|208.9|0.65|14.82|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|DzKp0bwwi42bPLpnttewD_5Y0ZcF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.0|0.69|14.1|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|DzS0NDoxEZSnsistUUtpYtGOomHE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5|1.6000001706098266||||16.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b00830|DzZDkK5vePB8aKC9H-WIf6ufR1kQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.0|0.7090000000000001|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700536|DzZIDl0W1V1Ky7xUGaHTjnK2peQc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.954|161.29999999999998|0.695|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.7b11157|Dz_RZJUqxea9ad9wBeyGrWc2Iqfj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|239.6|0.78|20.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|Dzb7P8u9yhr3wvMThbS63L511RHp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|155.0|0.562|7.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974796|Dzd5ll8Q9wx-z0fyAaOI8lMcG190|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|219.1|0.74|18.69|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|DzmbcNocLgdLodM4YjYLMjdnlvvl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.57|206.6|0.674|7.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|DznjBc65rQsEQvY03cPkaGR1P2Om|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.7|0.76|18.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|DzodvlcEgyWpu_JWtGD_uzYR5TmO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.6|0.75|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.10.036|E--aniVyRcl02TdpGy3QVLAwo4rv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|190.0|0.508|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|E-H0wE4RweCV1iUpOq36lrD7JOty|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|195.7|0.69|11.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1002/ente.201900446|E-JwCXt_ulX2ZBSZ5sNDCZu43MTw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|171.0|0.64|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502009r|E-Uygpf4FP7Sh5D42N6_0umeOSy1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|183.1|0.74|13.93|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b05588|E-YuSf-ynSa3weQrWOvanDBHGDAM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag3Bi2I9|Ag3Bi2I9|Ag3Bi2I9|1.8600001983339236|0.67|30.4|0.504|1.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|E-afUjkiAD_GC9p28gNurGCdbxck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|188.6|0.58|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'NiO-mp', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solener.2017.01.019|E-ve_LGs53RI3jv5Kg_y3vc-h37Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'NiO-mp', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.1|240.0|0.746|19.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C6', 'Au']|['BTTI-C6']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17386|E03GKg571cR0KGgpZDokV8-BGEv2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C6', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|182.0|0.632|10.7|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|E06rOAWkQbDmgaDxb78eF4I8L9Kq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.98|59.0|0.737|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|E07_uRaVpJDy0vWN2pp9OWTRstjt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.0|0.73|16.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00438f|E0AS-tLQmwK3X-8PZvxp5uw9h3oB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.5|0.75|18.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chlorde', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|E0BpcXSaIvTt7oSxWXTSMuvldbeV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|224.8|0.71|16.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|E0DK3EC3UnW8feFlEtXf3-eEgm27|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5500001652782691|1.05|249.1|0.7759999999999999|19.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01668c|E0FDyd1AhppFLSbc6h8GZJb6otit|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.0|0.71|13.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma11122407|E0H9mEgWZ4PP6FE40u-5isPTyAjR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|238.7|0.76|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.035|E0TFze2xM0khM_dBmHY2mk2d1yKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.01|228.0|0.617|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']|['TB4-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1088424619500457|E0_tslXAHmO7gOLDRJil6rqKx08H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.51|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|E0bqim_gkCPWxgKriTzeUQt8oDd1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.0|0.636|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03655-w|E157FvBkudyGGyclt7tihl3H-XIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|224.2|0.58|13.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|E18bO1XccnwDvcrwGN-jncbNBsKi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi19Fe20LaO60|LaFe20Bi19O60|Bi0.95La0.05FeO3||1.23|40.8|0.807|4.11|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Au']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.9b00722|E19DKse53DAC6PFa87Ths8ZAloIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Bi0.95La0.05FeO3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.16|219.3|0.72|17.54|['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'APTES-SAM']|bulk|https://doi.org/10.1039/c6ta08783c|E19WVm-OcoAhmBEf3SOlFW_84R8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|149.0|0.47|5.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|E1MvLHoxlmmj5BQGvhfsQDqd401x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|212.4|0.752|17.21|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|E1T6X1JOUDy940C223wURbq-OciU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.1|232.4|0.7440000000000001|19.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|E1VPVrgi-9RrbV3yMJenk-PSL4lB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|212.0|0.585|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta05674e|E1VhckRy7gqiogDGofKoE8CpXLUf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.82|91.0|0.51|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|E1Ys20i6_lUSI3JG2BjS6ecakXli|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -Br12C19CsH114I48N19Pb20|CsPb20C19N19H114I48Br12|Cs0.05MA0.95PbBr0.6I2.4||1.1|224.8|0.72|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201906681|E1eOIGDyyHrOwpFNzczQOd8AhzBq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.043|219.0|0.67|15.34|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'HTM3', 'Ag']|['HTM3']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/asia.201600474|E1kK_MIZPUyC06lKAI-yeADXhgie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'HTM3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|163.4|0.644|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.saa.2018.09.005|E1u7NbH0lJRkh2I2-1svQsJCHwIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.51|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|E1vMlg30PcIWmISMZQMEGUCWvisp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.7|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|E1wmfVWR0Hlib_vUjua_AKKScqTT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|157.22|0.652|10.46|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|E20bgVTOFneHi2wyR43sZHypGb9Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.3000001386204838|0.6859999999999999|262.9|0.515|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|E21Y1Mhbhg8GkTbubU_VOyLyZpid|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|205.41|0.755|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|E263QvY46tNBQJ4piaVhfbLvQtHv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25|1.7000001812729404|1.15|205.0|0.805|19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201905487|E2C1ilfUIo9R43_cxrmhAFyjC5Iy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CsI3Pb|CsPbI3|CsPbI3||1.24|146.6|0.75|13.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|E2IK1QwvYMd_rKMklIGS14PNje2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|225.2|0.642|15.12|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|E2dDPhKZa9cDFPjswrRkhs-hmEyY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH5IN2Pb|PbCN2H5IBr2|FAPbBr2I||1.08|135.39999999999998|0.72|10.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.11.011|E2f7RyHqcXDF1NqrLyCIbGmCKx3d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|214.0|0.424|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.045|E2frVgITifYTRIaufDKltPrEY8Sc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|202.5|0.62|9.85|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|E2iXV1zt9ZZQ9fHlfyT-MEP8ngwQ|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.5|0.68|13.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|E2yK13B4gthWDgyqYy1dM8etWrQu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49||0.94|165.0|0.551|9.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201802899|E36s6CrViW9Z-doblsh68Y4T1fiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -C50CaH300I150N50Pb49|CaPb49C50N50H300I150|MACa0.02Pb0.98I3||0.96|191.0|0.6609999999999999|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|E39lhL1rkuTTNy3z4e8vwQzAzRVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.02Pb0.98I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.76|18.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1021/acssuschemeng.9b00368|E3F8HrEaqehSHhijxKQZ8OHyhzRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|201.4|0.602|12.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|E3ODR59D-mLl-HH_np0kD2ucezz-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.8|0.78|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|E3TpcKg2Z87unxsTpYm-cQWnJEcB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.444|98.3|0.455|1.97|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|E3XsbcsLpvyVnoiykKah0iwTN9s9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.119|236.86|0.76|19.59|['A.R.C.', 'SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202003460|E3bvVGtc9eEBOlVPDg8dNHUwbX2b|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|225.0|0.8|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Si-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Si-np']|bulk|https://doi.org/10.1088/1742-6596/1135/1/012067|E3mF-_zEFlHYlvUJpu09VlTvKk2x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Si-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|204.6|0.69|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5020840|E3tiFuIKU6B9UVM6Or4YCJjQUu_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|223.8|0.79|18.03|['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|E3y47ifhdSpw-_fSWA9YwjZLWM-M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|E44jtjq29KQdPsp7pnDBiydwblsE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|163.0|0.677|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.11.046|E4H1sHeqHleS34mHgKD4eTR7nFp2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|E4TeTC3jenT906Wyem1tgyIQJyzS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|16.5|0.34|0.3|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|E4XM1aF7rJb_CRYoY3ws0UjV2sjr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|201.7|0.63|11.36|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|E4YK-bZpb48jUVzs9HY8idM1KRKQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|156.3|0.614|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|E4YP2rf4_q8GQlL6JaZvwIY1a_Cq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.05|198.8|0.7|14.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|E4ZCh6or8tpCx6VtxIw5b_QJ35OD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.2|0.62|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137627|E4_0Or9RUGI3tA6pOg4Gz5GBWI5e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.0|0.53|10.0|['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MFGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|E4tW3_ydrXwU-n5n6-ccgK56WOGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C2H10I3N4Pb2|Pb2C2N4H10I3Br3|FAPbBr1.5I1.5|1.91000020366548|1.057|71.3|0.497|3.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|E4vF8Pc4RRC7KcfmpYiSqU3oY4Ie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr1.5I1.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.45|72.4|0.76|7.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Phosphor-QDs', 'Carbon']|['Phosphor-QDs']|['TiO2-c', 'TiO2-mp', 'Carbo-QDs']|bulk|https://doi.org/10.1016/j.electacta.2018.05.087|E4wAg0B7b-q7zauE_MZyMxPhmjih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Phosphor-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.740000185538186|1.2|194.0|0.7509999999999999|17.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aad5845|E4yQJrcAg98TsLsshlAu_WvTXnUe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.0|0.6559999999999999|13.7|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|E4yoE-o8U6sBnzxYgERegLR_iIZF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.09|223.8|0.614|15.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TCP-OC8', 'Au']|['TCP-OC8']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.121|E50JanQWmk8tzEkCeqgv_tI47Vm6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TCP-OC8', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|212.4|0.72|15.94|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|E57mQeGYDXtLf4nOdJl55nViB8dJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.87|195.0|0.7020000000000001|11.9|['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|E5A7TmRoIXWODRHrnTQl7GFEDiHc|a perovskite solar cell with the following device stack: ['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.02|174.8|0.76|13.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|E5Cs7bLs3mVOQxGJVEyTeOBWx_ET|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.0|0.57|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|E5bCTcDpkQl3RL1Fr4edS5royKZ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|185.2|0.65|12.46|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.079|E5fvK-nWlGeTqrbRHR7VGKCukAwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|1.14|198.0|0.75|15.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.135|E5iZCzFRzwszNE93aY0Fl02MQLoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.955|227.4|0.78|16.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-1', 'Au']|['dly-1']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc08985f|E5klfPVZ2G842e63YQ7IFAZLz3GZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-1', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -Br3CH6NPb|PbCNH6Br3|MAPb1.0Br3|2.100000223925397|0.7|147.6|0.488|5.06|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.mssp.2017.04.022|E5o68Qc-psQidQnBqI67ZMF40Adt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|14.4|0.3379999999999999|0.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.09.011|E5oFkqkxgE_T6pv8tJg6f1Am0mlZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b16541|E5odHXg5gm4r4OX85fy8pfg4YLJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|152.3|0.654|10.5|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['CuSCN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta04028k|E5xdrVnd0DAS64wRuUQojJL6_SRT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|224.5|0.79|17.03|['PDMS', 'PET', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu', 'Parylene-film']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee01944h|E66CZJaiThxPSj7avkS4snM5BG98|a perovskite solar cell with the following device stack: ['PDMS', 'PET', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu', 'Parylene-film']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.12|['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|E6EY-Xi8q7NVkI1ukYlyNM75DJdZ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.96|247.0|0.44|10.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|E6p1HcpRnMIFzXZcS0JnNHF9j0UY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|134.70000000000002|0.644|8.25|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|E6pZ3jaVn5MYp3mxZ1i0hqahukxr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.9|0.71|16.33|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|E6qVXtkivEMiNNnkDd080tDuTkrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|135.97|0.235|3.2|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|E6yh4qZBgUcRH8J9B99C6tKswH5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.079|197.5|0.74|15.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00093|E70Ukdu3SwGooNY0gPoZu4rJabZD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.94|218.5|0.74|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|E738qhQWHLnUJdAyJX5GCOQJHSRV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.2|0.46|6.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl501838y|E7Cp39czwBxX-2txLpbRPx20eJl1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.640000174875072|1.15|227.0|0.774|19.6|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|E7II-1gG0Nj5zo4SSXsXaUuUpcuS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|E7NAuc8tH4xFNKDnKmBTxQFPrbQx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.94|199.0|0.69|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03990h|E7Ui5Rhen3jRYzVjKvYiR7ESzpc8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|197.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|E7W1rxvtaQpgoB16Ez6esBHKYzsR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|197.7|0.501|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|E7Xew0y0sSA_QCCAbu_KnBMVrMqc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|151.3|0.6|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11082-020-02327-3|E7_gIhyE4q8m0lxBuO8ATR9oOsVP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsPb|CsPbBr|CsPbBr||1.328|68.5|0.72|6.55|['FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ra00288g|E7grHiUR5gtCeRwlMYpUCM-gdmpv|a perovskite solar cell with the following device stack: ['FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|247.4|0.72|19.87|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|E7riTbzulpRIWiNI713-xwZ5OVYK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.0|0.71|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|E7roHd4apX9TM-sOwAj3iSlo_JAU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.01|168.0|0.72|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|E7wIey2JP_43J9Qu9zYZyFweZ0Aa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.061|201.8|0.71|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.048|E7wrxGKnHsIb_332VtOZQVLA2-4l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|148.1|0.695|9.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02193c|E7yvH9toSfRqpLsWqPKd2lNVRpdd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.1|157.20000000000002|0.738|13.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900831|E8058fdov0JOSGMGFHxFxTxENKeC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.778|152.0|0.68|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/cryst7080252|E82IxzED5d7p3ok8ZsxjcgMRDEoo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|235.0|0.73|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep42564|E82q4e5YlkXp3yf4gas4VVtLa44m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.5|0.78|15.92|['SLG', 'ITO', 'Spiro-s', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Spiro-s']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c6sc00973e|E83teTYSRM7C_3an3cFvEhU2_OKC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-s', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|203.6|0.984|18.56|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1002/solr.201900499|E8ZCdTnopC1oD7wUE2sxb-xoHUyo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.52|184.0|0.547|5.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|E8ZvdMHBL-wG3zIDKoQMAIuJtIoZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5100001610130236|1.058|243.4|0.743|20.2|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/ncomms13422|E8_j7znS0PfKjXMEW3KEO4lUtSQ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|173.2|0.53|6.61|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.07.057|E8fNlmRAHpyR7tt7DoK5fUYBwvCl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.88|175.0|0.53|7.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.026|E8hPfc6ovdi4r3xs3ZQlnaISI6Ai|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|E8pt36z_6rn6YGxAKx3OCW5UHlwI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.11|195.6|0.72|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800177|E8qP8oVrJIz0us6ECNAQQx6Iqr2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|152.0|0.645|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F4-TCNQ', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00577b|E8r0ugNx8Iyz_aGg3WDloU_Sj8dj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F4-TCNQ', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.9|0.54|12.32|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|E92akVYfTY3GlqvC_46c_lmBbrt3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|152.20000000000002|0.754|10.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.202000393|E92jLvwB2UHGY7z3LDKDP3JbZPCt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.12|238.0|0.8079999999999999|20.55|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902239|E93ii2rL0kH99IHncFpG_a_vecMG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|105.8|0.532|4.93|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|E94hyG0ism3PfdEHCPcV1X6qHsW4|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.04|158.0|0.5539999999999999|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta07036d|E98nVLzbfUseC6j0wuTPLBrKBVp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|216.6|0.53|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.surfcoat.2018.12.069|E9Fj9-PZWmBe4NnEE-NX4nkokkzn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.95|86.0|0.56|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|E9OAdt_2LySMAHmg735o0uHS_Qh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br24C95Cs5H482I276N183Pb100|Cs5Pb100C95N183H482I276Br24|Cs0.05FA0.88MA0.07PbBr0.24I2.76||1.17|241.0|0.816|22.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-019-0538-4|E9ZmhNS1UNbH92-b2anMiZFASnqw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.88MA0.07PbBr0.24I2.76. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.563|182.4|0.669|6.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|E9gMIk1amkrtAS8OTmloL8g_ILyQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|161.0|0.58|7.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014002|E9rSBbk8GAygdlHqCfxZB8NxdEuy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|155.0|0.76|12.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|EAEwCB8SfYY_vF4j4AgT381oU4xZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|221.9|0.777|19.04|['SLG', 'ITO', 'ZnO-np', 'NH4Cl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'NH4Cl']|bulk|https://doi.org/10.1002/solr.201900154|EAU-lY93SQHDa0NnaZkbD_i7-2Yv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'NH4Cl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|172.39999999999998|0.35|4.56|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Graphene']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta07730k|EAX10fC7DYL7dkSnTC1Pl6NkeZy1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -Br11C16H83I51K4N29Pb20|K4Pb20C16N29H83I51Br11|FA0.65K0.2MA0.15PbBr0.55I2.55|1.5900001695435149|0.95|221.3|0.573|12.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|EAm5fpLCjRN8h7gJz3yoYxVjifIs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.65K0.2MA0.15PbBr0.55I2.55. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.953|222.6|0.603|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|EApQaVQjolmKZdhE0jXmM7bk0APx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|222.4|0.745|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|EB3bOaObFvQiyui41cceHHXaVj51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.7|0.765|18.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|EBXSNjVdR_iRd0I09toF5LGmN4Z0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0|220.0|0.775|17.0||['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1002/inf2.12345|EBbv5byXPKBgnjhU77XxtaekJcyS|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.33|84.9|0.417|1.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|EBfexKRs4N0t8F1Gsphubyx54zg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|200.0|0.619|12.7|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1007/s10853-018-2752-z|EBhRPqtgvB3lXLtR0CFgWrKFfrz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.5|0.75|17.14|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00161h|EBnvh5Anaw81kIKPKjGyTwO7sBMJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|218.0|0.76|17.4|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|EBtNMHyoxRkXc5nXO5J9M_HIlTD2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|178.79999999999998|0.7|13.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|EBwcRno1kasd8TONbw1vMFlVu5kx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.64|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|EBzZz4hL2htzpbHEOMNRoZ9yzhsu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.92|182.0|0.502|8.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|EC-1tb6rcRQLQLwQt-XN7EcfOWiE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|153.2|0.64|8.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiPc', 'Au']|['NiPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.03.005|EC4cV0bXNwI2xRv4Qbw502z0GF2C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.7|0.621|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05352d|EC6lWIXhygeb8VYf-JpNoUFUWKij|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.097|219.8|0.779|18.89|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|ECHScuputixEInNokXVA8MFxQFOE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|226.6|0.7959999999999999|19.31|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|ECMTf_k3GsC1YsQ7TwxY-7uagqlo|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|165.0|0.66|7.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|ECbrXTGevR1lJywfwu3_42A96KJL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.424|10.9|0.317|0.15|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|ECdY02ob-EkYwQORHFTARaWBUPWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|219.6|0.655|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|ECt0tUtt3tQcJMJYRtdyONJ8q6K8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|165.9|0.445|6.46|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07828e|ED6k5EOvL2NAjgjaGPkpsvMsqz-t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.0|0.61|11.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.7567/JJAP.57.04FS07|ED7GMgw06hax-0M4X25IOP-QfrsF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|147.0|0.41|6.5|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine"", 'Au']"|"[""N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|EDCYt4LrkmzaYVhfkZ4IVCAXC5I_|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|142.79999999999998|0.517|7.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201500373|EDECstDWV5ntvxsxCTNlYIPo7Axr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.104|214.4|0.71|16.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|EDLrfPTFCX2IS9I_D2WNNs6qMsbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C18Cs2H108I60N18Pb15Sn5|Cs2Pb15Sn5C18N18H108I60|Cs0.1MA0.9Pb0.75Sn0.25I3|1.3900001482172863|0.84|228.0|0.76|14.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c6ta07712a|EDR7QMCKRkgq7SF_9pJkN_8WRzbc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|186.4|0.39|7.44|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|EDRGUq8w4sy525H1DEL8cXoY0HSp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C21H121I60N21Pb20|Pb20C21N21H121I60|(Ace)0.05MA0.95PbI3||1.143|224.9|0.728|18.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|EDWTFCvoVCqE1w8sSP7f-TJK9HGN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.05MA0.95PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|EDXg-R4ZkiSZ3hlCZzP4nOc7g02a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|238.2|0.72|18.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.014|EDYWBWu0dnqsjc0rKDd_qJ5oytt8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|91.1|0.508|4.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|EDaU-utQq-o4o_VO0zsTH3PIu3QI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|136.9|0.6729999999999999|8.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|EDap1Mb3F0V1N8aApFtT5iomTihK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|214.6|0.75|16.55|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|EDeCOEd4lTXE_40IB9uX3ECqXiPT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.500000159946712|1.03|231.4|0.51|12.18|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TiO2', 'Ag']|['NiO-c']|['TiO2-c']|not processed|https://doi.org/10.1002/admi.201800224|EDkR0mSHsnxg5M9ASXol4rKyt1q8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TiO2', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.2|0.718|16.09|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|EDnTolrGV7hBinzdYyBO_E7XtPjh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|242.5|0.484|11.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2020.17288|EDtM2pyNAevkf572GdNv_wcqwkOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.93|139.1|0.66|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|EE5ImN_lYYQVuw_nbO_a-wW3l_jk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.7|0.74|17.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|EE6DjPOXD3xWuaES4pUkqLeeF7J4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.0|0.7340000000000001|15.1|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']|['LiMgNiO']|['PCBM-60', 'Carbon-QDs']|bulk|https://doi.org/10.1038/ncomms15330|EEBkt-sis0hBHZPTw3S7ECPi_qH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.047|46.8|0.379|1.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aabedd|EEFBWizUjqfGSZQ3GhL7g867Czl2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br15C91Cs9H463I285N174Pb100|Cs9Pb100C91N174H463I285Br15|Cs0.09FA0.83MA0.08PbBr0.15I2.85||0.97|186.0|0.441|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X61', 'Au']|['X61']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc04026e|EEGb8ZAlb3kugVyD5OKPdjqsexAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X61', 'Au']? The composition of the perovskite layer is Cs0.09FA0.83MA0.08PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|158.0|0.506|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201601309|EELMMYUuYqysBD3DexpJtxstxaJu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.83|2.53|0.2339999999999999|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04924b|EEMNSB-IelJIZ5-rbb2URgrnzo2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.96|216.0|0.71|13.33|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']|['FDT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7cp03551a|EEOf45XHQpmmDsnmO1kP0jq-K2QS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|230.0|0.594|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.analchem.7b02800|EEWd64GqzFOw9f3lCnARgOgcV9kv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.12|220.0|0.78|19.22|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|EEqr3URPTssVROLmLR41Vz3QwNcK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br20Cs20EuI40Pb19|Cs20EuPb19I40Br20|CsEu0.05Pb0.95BrI2||1.223|146.3|0.7659999999999999|13.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.10.008|EF0etgLKLpzp-0I-aM3rhwmlCJ9v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsEu0.05Pb0.95BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02238j|EF1BbLLCeuronk0bDFyztUXJcD0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|130.0|0.4|4.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|EFHk_jo7C7Qm_k2wjLjkzZ6piLzH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7000001812729404|1.044|190.1|0.61|12.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02248|EFIY1Dl3QFKy-AAwFuJ-0kwQ7ECx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|114.0|0.74|7.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|EFOdRuDVkSiZOk2HaXcFNZQ9OP2r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.7|0.62|12.88|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|EFPMeFzPZHCsp4ijfBiaUDxW_MWL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|178.1|0.713|13.19|['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CPTA']|bulk|https://doi.org/10.1002/solr.201800317|EFdmH3uUZRozUX4XYHpyeG92eMTk|a perovskite solar cell with the following device stack: ['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.53|1.1|0.564|0.034|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|EFiaC8Z7vR1Jt1Xf7-TMFEUVweRp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|233.0|0.7829999999999999|19.51|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00613|EFl8Bd8YHVxUGhkBnouQjR9GCtk8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.06|206.0|0.61|13.4|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|EFmkSzkBBDj5JpvIqeMNAhI3Tevt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55|1.6500001759413832|||||['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|EFxyt22OpDbl1tDU8GV8iQSywVH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|222.7|0.79|18.54|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|EG-nqHdSboRm3ovkN6-ZPL_gaWn3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.0|0.706|14.4|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['CuOx']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.044|EG4o7UAekKqrVRJBzK9E9hdu75Q3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|179.0|0.726|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12627|EG6y7hifelnMfhzq0uG5q-NXj_Tk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.0|0.7559999999999999|15.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XOP', 'MoO3', 'Ag']|['XOP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|EG9HR-VE-zUhwbKSPLlN7g96Bk25|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XOP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|163.0|0.64|10.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/polym11010147|EGAR2dfk7ZWX0s9jKF5pINZHh1oy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.71|12.47|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|EGEgKqjcdtrcHtFYzse5pKzpPMAS|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|200.8|0.706|14.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssa.201900087|EGH-d6ua3876ZgRp5Ev34XxRyWIY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|168.70000000000002|0.266|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|EGa5xlFFkm8Kpi9hFMd1jLZ8b0-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.0|0.655|14.2|['SLG', 'FTO', 'SnO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5nr03476k|EGfYMBXklPv0-vGYAsJib25VBGD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.858|154.0|0.513|6.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974790|EGnNi029q2LY6IVHdhbaUUhvFtUf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.47|224.5|0.6779999999999999|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['Spiro-MeOTAD']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201703800|EGtN7ug7NTICsrd9FsGIaF9nFm2_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|165.5|0.725|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra21698b|EGuKlZLcC12r9z2anOoPfFyMlwSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|109.0|0.611|5.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Y2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Y2O3-c']|bulk|https://doi.org/10.1002/cphc.201301153|EH1AUsXiqBOtaqRVj1oIWCRKSwSd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Y2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|155.9|0.72|11.11|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr03181d|EH32hK7a3PfQwyYbLCvMFayUfkEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|101.0|0.65|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|EH3JDTUWPp67Hw29a1KTjHUxFu73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.69|200.7|0.357|4.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL25', 'Au']|['BL25']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00637|EHBMVmibrD0hpt3D1KxT9TKbXjyr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL25', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|222.2|0.665|13.62|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|EHBv8JrbW8pTRd-DxJDWH597auPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.8|0.603|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|EHCmzMw3y25QqpCFGnHhDu6c5Z-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|194.1|0.54|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-24436-6|EHFWhKW8n0Par6VJZTxy6xlW1Pkp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.915|211.5|0.5720000000000001|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']|['PEDOT:PSS']|['PTTI-2']|bulk|https://doi.org/10.1021/acsaem.9b00857|EHK1_Z5Ky53ixV7JNPCrmh-xsW3G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|160.0|0.56|9.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01444-4|EHLMsHAUoUg9vSU4lWh1qCwM7rjC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br33C100H556I267N144Pb100|Pb100C100N144H556I267Br33|FA0.44MA0.56PbBr0.33I2.67|1.6200001727424491|1.0|189.1|0.723|13.69|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900050|EHaMD0864WGAQu0jWZm1hIwwYjE0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.44MA0.56PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|129.60000000000002|0.46|3.78|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2014.12.015|EHbKJgLLR7IIyr-1UX7eqIJVvfme|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|237.0|0.69|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']|['Cu:NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|EHvtmVpOwxBHs1UG01aQf8xj40K-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|216.2|0.64|14.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|EI3TvyVZdQ7WYVk55eEoSlXA0Am_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21Cs100I279Pb100|Cs100Pb100I279Br21|CsPbBr0.21I2.79|1.810000193002366|0.91|143.7|0.444|5.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11474|EI5tePeoO0hLy_QB1NxG964nE--l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.21I2.79. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.17|220.5|0.78|20.2|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|EICSJLHR9mfPR7a85ItNYf-s3Ld-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.1|0.695|14.0|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.8b05560|EIDAIUhf6eebPXNxnrUZfcfll1DZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|116.2|0.518|4.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|EIjTODEvGsuFLQuXpe_txjtpIBiN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.14|122.5|0.787|11.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703246|EImNXJ0XNqJ5dJK8GRmw0A7do28r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.6|0.6|12.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|EIqVSFaF_orWsdK1v5dNlGcbNuwC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2900001375541723|0.77|268.29999999999995|0.701|14.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201605469|EJ-0uKlt1lJRZjlmksjaLKkJyxAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|149.0|0.69|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Pyridine', 'Spiro-MeOTAD', 'Au']|['Pyridine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502694g|EJ-KJxBUIOrdnIfTwikxia8980Wg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Pyridine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.48|37.0|0.48|0.38|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|EJ3AnpGSKheL3a1n0uc1KRJJrjeB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|179.20000000000002|0.65|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.016|EJFhM0g9TXZyCBfcGMvbE_R2kJxc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.6|0.78|14.53|['SLG', 'ITO', 'PETDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7tc02822a|EJKnTiyUo6ugVl6HfQXWeFRqOv9Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PETDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|0.97|213.2|0.64|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']|['TiS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|EJOaQz-R9fWW5u-U6ydQ5zJKhLA7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.06|234.0|0.718|17.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|EJZpV4nd0uwXdipZQIod98EMT3Ne|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4700001567477778|1.0|236.6|0.7909999999999999|17.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10468a|EJnlCoVDK4IK4ksxcWyY9hD6yGCv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.0|0.72|16.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700612|EJoIbLH4ivh4NrKCChrPSR3bT-la|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2|22.6|0.26|0.12|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|EJuwiJWDdORM1g8dBTs6cP6rht0K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|199.9|0.665|12.8|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|EKI-KjCfXhpXQnijmOLH7Sruaeyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.1|0.621|12.23|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|EKOytFnHyp9OZgv7PKNtHhacAvtu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|208.0|0.6779999999999999|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01864|EKpEQPNMzJz9wp5xXY6cdXWnU4FA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|201.29|0.765|16.14|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|EKr9KCtGz8Q3VvrGMSWjfnRSwex1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|70.4|0.544|3.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|EKwacEAeSVS3yyxDKfLoEs4osdTt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.759|16.9|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/advs.201700025|EL0U2vuL-sN3DOI_9NYGvASG-qPm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|221.1|0.753|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|EL1I6kMkNUIn8h0CvVNIAXJGVjaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|208.2|0.6890000000000001|14.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|EL2VzLySCvVaCzAzNc37Sk4aN5NW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.0|0.62|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr03476k|EL6EkqqkBW6eUdwNQ95T_B6F73pa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.2|0.652|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|ELC7RHxVK5GcG28Pq7V5MU9ypJ3v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|162.39999999999998|0.54|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|ELFCMg7B42FDNf4SzgoKMUsxrzeK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.075|222.8|0.769|17.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PhCOOH']|bulk|https://doi.org/10.1039/c6ra16839f|ELUpBjRI43ByNtZEEXcEaFgEawEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.03|212.7|0.698|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|ELasuouVif9IFnmR5XhBev69dUe7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.81|176.6|0.64|9.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra15210d|ELfHhejX3obgqaUJ3mHPVwXW8fQ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|208.36|0.7440000000000001|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.150|ELgN85tRWDWG7Sy9ukcpnnsf00LR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|235.5|0.77|19.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK1', 'Au']|['YK1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01731c|ELqFdT3kPhtd1ksQhLNN41pzvJ2L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|208.06|0.767|16.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.008|ELvjize0UybUG51mtEKtdZ_7n9K-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.9|0.72|13.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600493|ELxp18IIqJkW2X8UBwRwGfs1216E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.2|0.574|11.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|EM491lEQzzAxGgoRuYOLmGhWraAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.931|159.0|0.491|7.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|EM5MIDTUyjBLEVNr2NvYaC2G20WJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|153.3|0.583|7.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.11.026|EMD1uI4d_S-qZyT_nLmehSxPZe5O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.094|209.4|0.61|13.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|EMmnYByRobzESbJTdbi3I8WaTtI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|212.7|0.7120000000000001|15.43|['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|EMpZIdbreQxl8nsSx6U7_5vauR_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.959|223.4|0.67|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|EMvo6dc7wUAMmmY2FuW-mp2aO34J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|137.0|0.45|4.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'CuPc', 'Au']|['Spiro-MeOTAD', 'MoO3', 'CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b10898|EN2DBoKrc3Fj3edr1-ZTXqqy_exz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|137.0|0.406|4.9|['PET', 'TiO2-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Ag', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|EN6KIbXGwnla_QPIOgX_ObyTiY6Y|a perovskite solar cell with the following device stack: ['PET', 'TiO2-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368||||9.98|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA', 'BCP', 'Ag']|['NiO-c']|['ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|EN7aJmwtws4s8ibh0hVZIo1nEQRN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|EN7txkEPTSdxOVMFw7tkNYfpWeaC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.75200018681776|1.071|174.7|0.726|13.59|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.001|ENAxS9Td20VsLDXMZC7mXA4dHHdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||16.36|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|ENJGRSOqfY8P-fB8t17flHT3Vld_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|208.3|0.69|15.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M103', 'Ag']|['M103']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|ENV90Rg_ZhrQExxQJwnB3xRaowKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M103', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.117|201.6|0.731|16.94|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|ENWYBwLgG3GZAwtRrlJWulPGhpi6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|190.0|0.745|11.4|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|EN_z-jUhvjWZzxtnWauQ3LqSiVnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83|||240.9||16.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.05.008|ENdX7dAJSPd0ETiw8P2rynuDYxwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.691|139.07|0.599|5.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|ENflL-kIoWyhOdeO2K08DYcum3G7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.6|0.759|16.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|ENhqyphGX4iYkS1M-b7vOT0R-xWz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.34|['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|ENlrpBtAK34WvkoodpbzQDizWuEL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||0.96|||14.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.12.002|ENwGCksmj8XulTTs9hNzLhNNsI9H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.02|172.0|0.75|12.9|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'VOx', 'ITO']|['Spiro-MeOTAD', 'VOx']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c9se00081j|EO4Xs0NWrYhpppEqVs7oQDG2z-gI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'VOx', 'ITO']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|163.6|0.747|11.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|EON-8hBuHkHkjINudr8sOVlnN15f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.4|0.66|15.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|EOYWSfqZ_HFeFg2PEOyliFR7a0UG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|164.0|0.63|7.5|['SLG', 'ITO', 'ITO-nw', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ITO-nw', 'TiO2-np']|bulk|https://doi.org/10.1039/c4nr00621f|EOd01Xy0TFBE-6xPN6qEt91JylUz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ITO-nw', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.14|223.5|0.825|20.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b15166|EOgzlXARlmd3-VNq2hczdRh5MJtu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|132.0|0.68|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01220h|EOj7CMumHk6CzdLcLKoaXpa6nuQt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|215.0|0.7|16.05|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.7b07775|EOm7giyiLdUOeAb5yOZw-de3aDD6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.77|68.89999999999999|0.63|3.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PTCBI', 'Ag', 'WO3', 'PTCBI', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5tc00622h|EOyyQi6iuZkVZPUC-oQgduQ90n2f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PTCBI', 'Ag', 'WO3', 'PTCBI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C40H220I51N60Pb20|Pb20C40N60H220I51Br9|FAMAPbBr0.45I2.55|1.6500001759413832|1.041|203.94|0.647|13.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b00144|EP7-YBEvrxNsQ54WTpEf5YYKVtEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.17|217.0|0.78|19.7|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine"", 'Au']"|"[""N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|EPB9Y06hw3eZnui5RB_4uz5CvjEk|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.85|154.0|0.7440000000000001|9.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Fe2O3', 'Al']|['PEDOT:PSS']|['PCBM-70', 'Fe2O3-np']|bulk|https://doi.org/10.3390/nano9111616|EPCEvB5uFQNP6umRpmdmtmBW3dum|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Fe2O3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|204.6|0.6|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-017-2326-z|EPa3NLHi76xtvHQEhwoHfHOc-SYi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.12|198.9|0.708|15.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9nr02777g|EPevggLANChwB8ujqtg6Y4jLpP0d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.62|23.8|0.52|0.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|EPlxCBDCFCgIoMJLTJZaHB6iY80J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|215.8|0.74|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen', 'Cs2CO3']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.057|EPrd-ER2Bbx0AwBgSjDpSih8NJ5G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|140.29999999999998|0.64|6.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|EQ1LiyKM5Sbp0tblMTK2s6Bd-7e4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|153.0|0.32|4.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|EQ3UrFJRrbY4-2Fy_Apfmsr9NLqq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|133.8|0.72|8.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/cryst8090358|EQBYkyRY6c0zpZFE-VhDUy1Ambpd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|210.2|0.65|15.07|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|EQIBs0mQIHsWVLxT5fP-aq3o5aEU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.0|0.6779999999999999|13.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|EQRrlAF7a6Uvqo87AX4qZtmhA_X1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.615|87.5|0.564|3.03|['Carbon-nt-fiber', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; SWCNTs', 'Ag-nw']|['P3HT; SWCNTs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201501333|EQYjo_cw6Qqw-Qf9z8T2AYkQEP20|a perovskite solar cell with the following device stack: ['Carbon-nt-fiber', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; SWCNTs', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|175.0|0.8|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Au']|['PEDOT:PSS']|['PCTDI']|bulk|https://doi.org/10.1038/NMAT4388|EQdHDreqsIVbBcP25TXrdSuM3V72|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||1.139|230.2|0.741|18.6|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'DTPC8-ThDTPA', 'Au']|['DTPC8-ThDTPA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9tc03111a|EQeRfQSondw_ZahNDgEqVrF8-Afx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'DTPC8-ThDTPA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|210.5|0.66|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanoflowers']|bulk|https://doi.org/10.1002/ente.201700030|EQyuaxn4Xc13-rylGdcXAdK1yRF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09724k|ER-oHcEyraRYj19Dt76m2-2UuivY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.009|165.0|0.59|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5011187|ER2VuckerkZoBVwf8ThHMGpMbQc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.17|222.6|0.685|18.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|ER2X_6eIj_mBunr0lpC_9IAnaILx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|239.1|0.741|18.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|ERHBi1xYN37p2_lyzvU8da3UOmWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br33Cs100I66Pb100|Cs100Pb100I66Br33|CsPbBr0.33I0.66|1.9200002047317917|1.17|159.8|0.807|15.1||['NiO; Zn:CuGaO2']|['nc-TiO2; PCBM-60; ZnO; ZrAcAc']|not processed|https://doi.org/10.1002/solr.202000344|ERHFQtLGX3XASpPG1pJxr9tHSYtZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr0.33I0.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|197.0|0.73|14.92|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|ERJxUwrKg8I9uFNYNlR9MfAknAA9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|210.5|0.716|15.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-3N', 'PCBM-60', 'Al']|['PTAA']|['PCBB-3N', 'PCBM-60']|bulk|https://doi.org/10.1038/s41467-019-12613-8|ERNAnH1mutXH9BBUm2mWGniqQkCz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-3N', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|156.9|0.71|10.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|ERVXFN0A8a7PfKwaSVNwz7HxK-Js|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.68|231.8|0.48|7.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|ERYMrvllheLWMdf-AM3ItHVDFXlq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||1.114|241.5|0.8079999999999999|21.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02348|ERcCPwqRsZxSJpkaPbjEneTF6Fee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.09|241.9|0.725|19.11|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|ERdOHvLxmgb6C8PVVFugf9aPORIl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|170.0|0.67|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05189h|ERe6-3rwxhAwfy2eNoJ0qapp9Z1P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.022|166.9|0.607|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.egypro.2017.03.391|ERlk0HesWMU7BohsepODtS6f6KBa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.7|0.5820000000000001|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2714-z|ERquAarM6Z8l-MG62IBADO7iiTkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.43|125.0|0.432|2.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|ES1-fs-odx2dbOB1rmksqLS66dPl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.036|205.6|0.6990000000000001|14.91|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201700722|ES2CiAHUtiZ-XrQoPOEn6VGeiFrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.03|109.0|0.67|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']|['X2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|ES2Ung4JJwnae-u0KWmOiQXSn7LV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|153.9|0.7|10.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW5', 'Au']|['CW5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04405g|ESFXbm7YRS2Yw-HdNDefE3nszL4S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW5', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6500001759413832|1.22|212.0|0.805|20.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-05531-8|ESIS80yixaPM9thlw3BQI6Bv8whw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8909999999999999|139.0|0.43|5.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|ESJES4W3n8BCv7g20oVmLxyIEZK8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|221.0|0.7|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']|['S,N-heteropentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|ESMAVjout6OQeKp9z0Q6CR6pn6ar|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C33H165I300N66Pb100|Pb100C33N66H165I300|FA0.33PbI3|1.5600001663445808|0.995|222.91|0.6459999999999999|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|ESOTZ1iRpPlHEG4-5OMEYujMuEpp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.148|234.6|0.7829999999999999|21.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|ESQFcoaCd7p93IlE1oZTk5XkGnv9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466|0.955|207.0|0.64|6.8|['PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.nanolett.5b02126|ESQssd08ErQdzRksYOOAJJFDidB-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.133|222.9|0.774|19.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']|['NiO-c']|['PS', 'PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|ESZN4SYTIu3ncBtGLaboZxtn0Y5o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8Cs4I4PbSn3|Cs4PbSn3I4Br8|CsPb0.25Sn0.75Br2I||0.34|150.2|0.614|3.13|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800525|ESiWzhFfZnoG68YLZ3Nrux_-Lge_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb0.25Sn0.75Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|201.0|0.688|14.6|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|ESnUxD1YLD3gwnNt-w5iQOeAa-CL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|ESoZ1Xe9i-A91AXIGKsEhk_gj3UK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|212.5|0.696|14.47|['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx', 'Cu phtalocyanine']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|ESsdWATlPZ6OIM2NNzbkyALa79VU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.018|225.5|0.77|17.76|['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']|['MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201800476|ESxKlysQ0q4QyCNkY7PIluNUr_pB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892||||17.89|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|ET0G4HNdDeuOr9mR4cMQUvw8yOdM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br510C900Cs50H4653I2490K50N1647Pb1000|Cs50K50Pb1000C900N1647H4653I2490Br510|Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49||1.12|217.7|0.782|18.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsami.9b07610|ET7iajJfgvZCbq-5K28eJB3ODzsD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.78|202.9|0.74|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01855|ET9wT8gnzSNaQfREmypT4cA_sR7a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|206.0|0.768|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|ETGA-CNBuvzShIofZrCOWxJGXl3g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.146|234.2|0.782|20.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.10.021|ET_AXEy3eW98BkczQ-gYYxmYxuPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|233.3|0.75|19.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|ETenydzlWG2pdWQCJ72ShgUQUHCM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.857|166.0|0.441|6.27|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110071|EThNKNuucxdSpxM9S0ohRtMmviKC|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.9|0.6409999999999999|11.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c7ta00203c|EU2eYOaB16QjovBNrd_MQ941ivW-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.3|0.71|16.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|EU63R4OslHiL3Ggo_9ZDaP1DuVO7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C50H300I112N50Pb50|Pb50C50N50H300I112Br3|MAPbBr0.06I2.24||0.861|187.0|0.589|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2020.104984|EU7b_AZfhz1HsL9is2Xvb2tAF_l5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.06I2.24. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|191.8|0.69|13.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H64', 'Au']|['H64']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.019|EUJKoN5XxYV8piq2XogNtQUKuNoy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H64', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.134|233.6|0.769|20.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|EUL1aq08vowsj0sS6o8LiKcwdpYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|126.8|0.59|7.38|['SLG', 'FTO', 'Zn2SnO4', 'Zn2SnO4-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4', 'Zn2SnO4-nw']|bulk|https://doi.org/10.1038/srep11424|EUNkFRrh2YzeT-xyyAGqOPmrLyEK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'Zn2SnO4-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3100001396867953|1.05|213.0|0.6629999999999999|14.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.6b13675|EUTIHo5lVQ_uWRjCWvqkon_Y-NaJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|171.0|0.716|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5796/electrochemistry.85.276|EUVTB_u2MrD3P2reRDl8fexJUvoa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.0|0.69|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|EUWU2BaIo9rp9btyEvptqPKr_M9Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|135.2|0.63|9.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|EUkH5GrCNOaFwzMvRoDItYWg-BpS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|217.0|0.65|13.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra02637h|EUs0zh5_ErHPvgSsyc0qA33X-hrD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.9|100.0|0.44|3.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|EUsSqecgkaq8CBflGefSPU6nmN7f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|163.9|0.73|10.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900235|EV0YArL5tzbNV7PHzi9zJCWM-fHo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.111|212.1|0.721|17.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|EVKpUg2N_aZ2e4sSrAzhMjLz_gE-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.78|17.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.8b01683|EVL5GEDwv4fE2dLaoyg1hIqGk594|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|220.61|0.7090000000000001|17.35|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|EVfLY2Y5-tjBiDUL_imJ365V1m8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|180.0|0.55|9.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1126/sciadv.aat3604|EVpCQQpNWwVJ346UUWrZCdzNmOGS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.79|176.1|0.62|11.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|EW2oi4BUJrR72IEiewMoUa_M4SlK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.7|0.64|14.03|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|EW5W6cr47TCU9QoXjN8bHyNlG3EP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|211.0|0.79|18.7|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|EW8VNyFPApsmUgmmLKCamGO14YJD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|225.0|0.379|8.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14619|EWDel8pTO-86HUTR9hJCDFzGJIv5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|206.7|0.638|11.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|EWG_Cz6fMnGbDRxWh-t59jbdpeZv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.9|0.722|16.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|EWHYSfYW3JRj1BiJcILkgPz2S0s5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|228.13|0.485|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201900681|EWS0bDfom-AdPTD2D-YkbLndkBHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|226.3|0.774|18.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700213|EWar2QrzXC-w2pYGoOrT5lZk6aKI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.186|232.5|0.782|21.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201902543|EXJvKG4uaUAtIE2SkliC0DKABnnG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.5|0.65|11.9|['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|EXKuqSB4tbH7JMVwpFWeECemoPl6|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.1|200.0|0.682|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4967817|EXj935hk9meeyp6JQdYhqaagqAP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|173.0|0.72|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|EXlJyJUFG3WYQeXsD3KdOsv-p1YU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.1|0.75|16.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|EY-ppd0X4jXEcecHO6bRwP51pf_2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|177.2|0.491|8.1|['PEN', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MFGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|EY0cbV1ssS1chtWLhns7NqsvyVmQ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.35|18.0|0.34|0.81|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz402706q|EY5yrQmzv-z_smOjzEY8stCuMJ-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|127.4|0.25|2.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|EYEKdoeYyU-buHypJJxdD9zHD7Z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|EYFzATD5FwIMKVFGyjR5khRuZ77v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|216.7|0.727|16.53|['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']|['NiO-c', 'FDA']|['PCBM-70']|bulk|https://doi.org/10.1039/c7nr08750k|EYJEJE0k0WD5TKftujni4ATVGOIp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|178.29999999999998|0.78|10.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/en10050599|EYRmL7b8GoFnfHYc1Gni3d7Q2PWq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|184.9|0.57|9.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.061|EYUxpew7QsU6kZEjJpECgfJf67jF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|234.8|0.762|20.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|EYW6ZcWxAYI-N2Qmt0VdXAroB6GY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.44|69.0|0.68|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b03455|EYba6QNs5Mns6wLmeC1BhUA2hdL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.589|44.0|0.68|1.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|EYfAyVnk1Tdw19KZolgm-oYi7P1_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.8|0.603|10.97|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|EYgK4iy5DSX9giSFd6H1MY-x1q-2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|207.0||14.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|EYiZ2Z-6fFgZNTRUdiZvV1EpPZ2k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|208.4|0.54|8.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5069076|EYqnVgeiIinPPbNRqqM2r74dmnyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||0.3|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine"", 'Au']"|"[""N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|EYrgNHLXGUv0lpnesmbSncUNCnXO|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.6|0.79|15.82|['SLG', 'ITO', 'MEH-PPV; PFN', 'Perovskite', 'PCBM-60', 'Al']|['MEH-PPV; PFN']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|EZ1p8Rh0HOCqKiRpwIDF0WrK28UT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MEH-PPV; PFN', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|228.5|0.836|18.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']|['PEDOT:PSS']|['PCBM-60', 'P3HT; PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b09758|EZE4OnZfsW3yVTrztiyVVwOcQ8B_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|178.9|0.5|9.14|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|EZEIK5euwpu9rD6XMrW-IBD0iqnX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|219.0|0.71|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/ncomms15688|EZbFd1t3QlgqftUjwq8ldMycykx3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|78.0|0.46|2.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon-tape']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nj02847d|EZf-0Nl-z6eAg3e6pOyxpVnnNhGs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon-tape']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|180.8|0.736|14.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|EZfTLcm1xHTaL99KBQOCYrgYVE-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|EZpZRSkWni9YKSCH2nevF8rBPCtF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|163.32999999999998|0.408|5.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|EZvsyQXfHaBYLK0UkULm2lZH8yKm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.4|0.59|11.4|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|E_1F28D6qGwhdGSTbI2YS4krogjz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|175.0|0.6|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|E_1v_afqXKYIjrLDbTLJ_c4aduB3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.112|226.7|0.741|17.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700576|E_5plYZdIoNHglQiijv-6Eo0xY76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.1|0.74|16.21|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|E_AU9rnjq1HvWG-P0oGqy5yzE4Fq|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.06|219.0|0.76|17.6|['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|E_DupYQ8uajUZsJEWnSQaikSs1a4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.59|198.0|0.621|7.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|E_JuVx1xGtFZeKVGzc4jFmzgM02-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|215.5|0.6970000000000001|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|E_LLAlq633ioZRBiOccAePYh8HoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.9|0.61|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201802046|E_NWeCBLUiJctVuR3BiJokHtYttM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.03|218.4|0.75|16.87|['SLG', 'ITO', 'NiO-np', 'M3', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'M3']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|E_OLI_H5Ucf6JJZBfyTTreMle-kZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'M3', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7000001812729404|1.135|197.5|0.7659999999999999|16.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02248|E_m7ErMzBwslzRZCznyzP2xZIKy3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7900001908697432|0.96|152.3|0.66|9.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05948b|E_tslNGdYoeM5nH9YLVw0Z05hot7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.0|0.66|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|E_wreh4u1WF_pr-tO7PhWU0lWVuC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.011|179.60000000000002|0.3389999999999999|6.16|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105560|E_x6jS93HgwKo-b0CgX7o2FWCz2H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|225.0|0.81|21.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta06718c|Ea0ItLDfIWqv3jlqCa6Bb27BVB8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|211.0|0.728|16.54|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014001|EaNTxI8YdFpVELL9OStlDbJUUIbs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|190.0|0.6|10.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'BaTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04642|EaY7hM128f-NAwG6ALPMLQj2VICD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'BaTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|198.0|0.72|12.92|['SLG', 'ITO', 'TPAC0M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPAC0M']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|EabJswx1_FkohysaqRn22PuavJFg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC0M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.50I2.5|1.6300001738087604|1.03|216.0|0.73|16.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuGaO2-np', 'CuSCN', 'Au']|['CuGaO2-np', 'CuSCN']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901372|EafKDKNuQMRF-CCjC-cxo-tf38Ic|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuGaO2-np', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.50I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.896|168.36|0.733|11.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||EavL0b33RVvX-83MpX4ly639IHZF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.3|219.0|0.65|18.51|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|EaxDgbLqR0z9NBnIsdw5xfhXosfY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|110.5|0.62|7.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|Eb-XSI6__x-Z5dHYEiBkPH7zyJt6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.0|0.7|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8-40']|bulk|https://doi.org/10.1039/c7cc09452c|Eb1CFtrPddxCBcfNk8iohNIo4vfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.79|164.0|0.48|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b11067|Eb45ILn6IZ7-uaodFoExHDcVM67S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5300001631456466|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900220|Eb4bAyv2Jik3qmfNsEOpQhmK7hdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|198.0|0.481|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|EbREWzhLQ0DcVfP8AaaTgulfDHWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.773|97.0|0.6|4.5|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|EbUTKVCOlfd3UUi1fREgRWLp9QbJ|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|209.6|0.7040000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.03.050|EbcEVnkcmjiJrV9-oYD1835Rzkz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.14|218.2|0.7929999999999999|19.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|EbhVt9TOHc8RBGGf-6YM0QnxtQra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|188.0|0.506|8.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|Ebi6ymSAC4DnezNFA18nGY-3bo0B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.81|208.6|0.68|12.67|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1016/j.matlet.2020.128174|EbjKjspdg62LnHGkl6QPA7Bk8KW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|123.0|0.7|7.1|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|Ebu0i0HSUc4yWH-1E0bn41j3GW0i|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|166.5|0.67|11.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.12.036|Ebw67h4K6Mz2nqAIK53SIcsmcSwH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|246.3|0.581|13.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.024|Ec-wNIiWrMxvIP4KBS0rx2uJQbol|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb3Sn7|Pb3Sn7C10N13H57I30|FA0.3MA0.7Pb0.3Sn0.7I3|1.3300001418194185|0.74|270.0|0.6|12.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5126867|Ec0oCU2KrGtTIrKCbo9mF7CscBWt|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.3MA0.7Pb0.3Sn0.7I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|213.5|0.578|10.26|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b07627|Ec2X3xi_awsEg8armc6lvEwkWJQu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5300001631456466|1.12|249.2|0.7859999999999999|21.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900220|Ec38RBBM-vv2O_pxMvFABeSkJx-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.4|0.69|13.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|Ec69i202h1teBV1R28eKGXZ7fRmE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.09|222.5|0.8079999999999999|17.65|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|EcGuEP6N924QYX8elCRtIU7YTYsc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br3C18Cs2H104I17N22Pb20|Cs2Pb20C18N22H104I17Br3|Cs0.1FA0.2MA0.7PbBr0.15I0.85|1.6500001759413832|1.23|212.0|0.813|21.2||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41566-022-01033-8|EcTEvXqsB_ZbywJbt-yDOm_kiza6|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbBr0.15I0.85. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.046|206.8|0.68|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.034|EcZ0HUJo1v2roEmXjH11UkcYvTrv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.0|0.487|10.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|EchIVe_OUcMkX9Iz61wx36tLgsOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|162.3|0.6|8.23|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.017|EcjmCDLdsQ_vSrCi5mtZ3HTMV-px|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.06|75.9|0.51|4.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|Ecjv2ofCNqs5xlMYJ8vspQ1cRj5x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -C125Co2H750I375N125Pb123|Co2Pb123C125N125H750I375|MACo0.016Pb0.984I3|1.5600001663445808|1.05|211.0|0.777|16.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|EclOYutEw6yxxopf7b8pWiYKf4zG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.016Pb0.984I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.18|228.0|0.74|19.6|['SLG', 'FTO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/adma.201804402|Eclbc7K4GHd6GwbxLv_N_1Fl2Lyt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|168.0|0.69|12.0|['PET', 'IZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.006|Ed-D8HO2IeAfDyxGUDJ90vc9sI1z|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|172.0|0.481|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm5041997|Ed17qTs1CyQ6SSo0PxlPh3cd9qSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|209.7|0.58|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.029|Ed20MmRNH29ovqcnS8Tv2Dx_ZA0c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||0.98|192.3|0.629|13.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|EdBxINCrD6eAVofQ1JKim0ThkzYC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|159.0|0.6890000000000001|10.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/am.2017.91|EdM8Wip3R8CjldesWliK34HVW2oe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|215.0|0.708|13.4|['SLG', 'ITO', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']|['none']|['C60', 'B4PyMPM']|bulk|https://doi.org/10.1002/adfm.201807556|EdR-DphGIyX2MgWcWKRqlgqzPKBj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.978|214.8|0.53|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|EdRR-NrNMusNh2I90RaZioyOiGh4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2800002431190025|1.114|71.0|0.67|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701433|EdZDWn1Pg1r7yG8r5DQHfhcfYKvY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|124.9|0.481|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|Edi4tulUD9oK_rRGMQMdYSH6wPsM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.028|174.20000000000002|0.72|12.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.mattod.2017.12.002|EdppRJgyXvqU5qrhANOgYKwUTskN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.05|220.0|0.7|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|EdsvVzxqAojNHr472njSGe7kUDvt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -Br3C18CsH93I57N33Pb20|CsPb20C18N33H93I57Br3|Cs0.05FA0.75MA0.15PbBr0.15I2.85||1.103|238.0|0.78|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201806823|EdwBf1o_NewM5keDTGXwOxEuyZbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.15PbBr0.15I2.85. -Br15C83Cs17H415I285N166Pb100|Cs17Pb100C83N166H415I285Br15|Cs0.17FA0.83PbBr0.15I2.85||1.09|236.0|0.7509999999999999|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905502|Ee0f8wBWcnFlpbCRtMiUHZmdGJcP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.15I2.85. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.9|181.0|0.474|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06189j|EeFgUK3qt7vR7rkQyB_iCEm1dDlL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|203.0|0.62|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|EedH7PPBAQ1ylU1d_hxIGieYcCrj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|110.0|0.27|2.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|Eef1T15TQKgq4ZrTbGiM0rQmAEjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|208.0|0.64|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|EelQWadSY23y2JjCdtXIAR3CXuzD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.19|225.2|0.7040000000000001|18.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|Ees8_HehDQYnCISBP0aQcfvC6tSi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|201.4|0.728|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|Ef4eoL8fcc1d8CumqyxOC2mNVWvG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.8|0.73|17.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|EfB66Y601fdaYhicG7zTjFx8E6W1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|135.6|0.52|5.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5069076|EfBjvfHO_qSeOZda_OKvqsuiUtNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.91|178.5|0.58|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']|['PEDOT:PSS']|['NDI-BTH2']|bulk|https://doi.org/10.1021/acsami.9b13894|EfEtSzMGBpxTTCO2JZFdrcCtZHxP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|78.5|0.36|2.35|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|EfKQl1lU44xYXPQw_k3fDWM7jtUu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.84|175.0|0.48|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra07579k|EfKUBgHL0gm8AzLH6DF4WmbF-Dw4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.0|0.757|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|EfL-N-1nGVR-_6t0O2C2ASYpPMnq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|130.39999999999998|0.67|9.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|EfL1TXuwU5m32N7hjHHro371MV8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|124.7|0.73|9.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.007|EfL8rSQjPkdbxv8PdBT4Tb1OQIOf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.1|0.7|14.12|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|EfPj-IhujEiwZ_pcakVYW9C-mUKw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|224.1|0.813|18.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b16541|Ef_IRhdrltsB5bBLlahJudt887KP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-c', '1ab', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', '1ab']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|Efc5ELh-b_uaa446tuw3zyBbvQX6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', '1ab', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|183.0|0.61|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292014400013|EfldDkWOO8d2KikTJ2VhiC2Iq579|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.0|0.75|18.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Phen-NaDPO; Sn(SCN)2', 'Ag']|['NiO-c']|['PCBM-60', 'Phen-NaDPO:Sn(SCN)2']|bulk|https://doi.org/10.1002/adfm.201905810|EfpeBJehFs-9Z1KadaG9gYMOaNLG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Phen-NaDPO; Sn(SCN)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|220.0|0.73|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|Eg5z_qf0ThceixUT6N7TtVxgx1an|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.701|104.6|0.626|4.59|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|Eg7Q6kXMPOZe19iXG30ECL_TddD2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|136.0|0.68|7.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|EgBRUlmr2AzLTMWP8auZKGkQDM3t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|224.0|0.69|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']|['S,N-heteropentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|EgH8JdbecFFJQMaHso8_0VAtJtxZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|157.0|0.626|5.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|EgJdWZotXwOcY_cLHTCEsKNYOEo8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|199.3|0.611|11.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|EgO7BRY8w9dxldAqMuXZAwVwZLNs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|182.6|0.77|12.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|Egb82WZK8mbbMXMZANfBGj5fsB8e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|189.0|0.62|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/nature12509|Egq9wADuwJWE9kL0cd6uxDan9Bj5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.8|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|EgqCLrRajp3QhgVHh6gu6tRbX197|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.828|204.4|0.617|10.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|Egqb3HegWi1vO4iRSkCMsW0SVTYc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|205.6|0.736|16.67|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b15710|Eh0uSDIQNjAOH0gUICDI9ETckzQe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|175.79999999999998|0.633|9.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|EhBAc5hNBdPjZk7Kourvgf_kDjtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.79|307.0|0.69|16.8||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|EhCzYCwKcFWm_Fh3xa0PcCYnOsPe|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -C11H42I13N5Sn4|Sn4C11N5H42I13|BA2MA3Sn4I13|1.500000159946712|0.382|89.0|0.5710000000000001|1.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00202|EhGctr0gK_rd5sX5DhxJLNhBHgIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is BA2MA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.4|0.82|19.6|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|EhI_tinGd4kKap5jHFQN1tBsBkpl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8||0.997|226.8|0.7190000000000001|16.36|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|EhO2g8T1YtcVmrlRLNu2jK2bvITh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|184.9|0.65|12.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-56164-w|Eh_dEck3oH7DK1kJd1Xi2sDAafRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.035|208.1|0.7140000000000001|15.38|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|Ehr5nWi4pbXehlw5Wh2q3Z-HEN5F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.73|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cphc.201601168|Ehs9aDgYdaSvUZyLtPjYPPw7XfaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|202.31|0.631|12.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']|['TTBCPE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600555|Ei1R4NXIvkmbU2Bh8jwRuR_i-IHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']? The composition of the perovskite layer is MAPbI3. -Br102C191Cs10H987I500N350Pb200|Cs10Pb200C191N350H987I500Br102|Cs0.05FA0.795MA0.16PbBr0.51I2.5||1.106|238.0|0.6709999999999999|17.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.051|Ei1VEPXjbPc9FFoUjG0k6NvMM-ZA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.795MA0.16PbBr0.51I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|123.1|0.48|3.74|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Au']|['none']|['TiO2-np']|bulk|https://doi.org/10.1155/2016/8947597|Ei3_PxJ3vtOVbPQ_COEl3iEn9uNd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|109.2|0.363|3.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/12/128801|Ei4aMbu0Fw2Lx84uV3OVPmIBVlGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.81|160.0|0.58|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acssuschemeng.9b04772|Ei83JNm8SpWBmGWNXA1xk3I2lkbd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|208.6|0.78|16.84|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-Na']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|EiAMFX4aVQ80bUgcEwVKRGxudMiI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|145.6|0.64|8.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|EiEOqoEcdAF4DBXL9eKh8y6im105|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.4|0.695|14.14|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|EiMtzTPUl4vOwxbpOqLbju-4_HrX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.1|0.76|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|EiOS7Z3NltOhaSkpQCpJqQL1q71p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.5|0.73|17.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703054|EiaPwHkEwNtWlg8KeDmscsCLofeF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.0|0.7|14.69|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|Eie6sStE1MJastmtNbzzEswFLNnq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|201.0|0.564|10.6|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|EihkSsvCR4SXudJEZ64z5iQAUur5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|222.7|0.73|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|EiipH6I8lw9StFCQlT-0SIPr_v7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|174.20000000000002|0.68|11.35|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|Eilc6LFfMg1IF-6MFlJ1fi6NnCRz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|203.26|0.698|14.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600555|EinlG-1YirAjVWoCjC0YcDUbp1Wb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|191.5|0.47|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.100305|EisMEbgoAKmwXDgBnq-qLsO0frXk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|171.8|0.597|9.33|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c8ra03119c|Ej-uZPXzEMgo2Sk-493x2h_4ccbx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|219.8|0.79|18.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NENERGY.2016.148|Ej0-O8PUniY6gYvwDahTdbW9bkTW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C10Ge10H60I27N10|Ge10C10N10H60I27Br3|MAGeBr0.3I2.7||0.449|28.0|0.45|0.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|Ej1juZBgi29RiC4m2euURw4dgZ_-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeBr0.3I2.7. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|180.0|0.56|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150743|Ej31jlfuEvXmjML1p_ULZrVK9pg6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|172.0|0.665|11.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b11084|EjM-SlW6D3zy24Oveo-IbqJbJLPX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||1.09|238.6|0.737|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|EjN5fi3s32OOUbqjCY6Ry_kOs2VH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CsI3Pb|CsPbI3|CsPbI3||0.64|2.9|0.38|0.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|EjRv9QxtaSw2hby5ZfP0lqJgE2OR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.82|137.79999999999998|0.29|3.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8CuPc', 'Au']|['(OctPhO)8CuPc1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|EjUMU_A85IIRR7TiIlV4hTAb7Oc9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8CuPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5300001631456466|1.02|163.2|0.49|8.18|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|EjYsNFJLjsaxE2IoAkjwDDyxzJZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.8|0.802|19.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|EjfXPXBFhJLHuOoUwC3UkcLteNtC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.32|131.8|0.675|11.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1002/adma.201705393|EjhhD_e8Z99wjnu-bEtsO_ayBKVv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br12C25H129I63N46Pb25|Pb25C25N46H129I63Br12|FA0.84MA0.16PbBr0.48I2.52||1.006|234.0|0.74|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.034|EjifhHe6k4iYGYysBUjuqYUWiEmw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.5|0.759|14.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2621341|Ejkqrq0c52Zgt9iqJSy_APcNH9OM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|249.9|0.78|21.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901591|EjlQdYs9CSKsi8lsgTPTsQldaSE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.0|0.595|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|Ejq1ECiJP8nFUdxXt4wR-3X_Vsc7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.23|99.0|0.55|6.73|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-c', 'Ag']|['NiO-c']|['ZnO-c']|bulk|https://doi.org/10.1002/ente.201700361|Ek1O0ydCOHC2HQAXf4m9QI5mECCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-c', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|93.0|0.44|3.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp']|bulk|https://doi.org/10.3390/coatings7030036|Ek2sgvgI1QmgjxEk8JOiDe03C33z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.113|234.2|0.74|19.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105406|Ek5qJhhsG99_oxaLexyI_Qpa2x9q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N23Pb20|Pb20C20N23H120I60|GU0.075MA0.925PbI3||1.05|220.0|0.77|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|EkI7cUBjDwNTgTyMJSTnpqsUYkCk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.075MA0.925PbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.04|175.0|0.68|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201901036|EkJwi3MGXAflcEvnT5JFeC8ANvx4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|EkQRJ-yLl3wOIkpfIe3YRsIorrVE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|219.1|0.604|14.01|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.014|EkWF56jN-1V4D2OWzq47uLaUCvoL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|158.6|0.45|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'rGO', 'FTO', 'SLG']|['rGO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.01.084|EkYFnEMxACnyN57yiNHhiAIQHp-3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'rGO', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.97|195.2|0.71|13.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|EkZwROPTNYx4qNE64HBNfEYBJTk8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.1|0.65|13.23|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|Ekb5E8OCReBtxM8hHTozmm5sWv8-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N13Pb10|Pb10C10N13H60I30|GU0.15MA0.85PbI3||1.07|223.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|Ekk6Zp8f6a5YUbgX00pFOYw2kzFy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.5|0.6|13.61|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|EksjSaoCiWUm6Km2xDubHXj7WLXa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.99|206.1|0.652|13.31|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ta01617h|EksyUrCTNosrrVuh0nVYbFloKMnU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.58|119.4|0.35|2.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.molstruc.2018.01.037|Ekve9OvRjOJgllmY-RTi5BhcNqFM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|151.7|0.59|9.84|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|Ekvr0_UOouOlclgIP0C36HH5c73K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.08|219.0|0.71|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05795h|EkyyEOWbtOQku8TlmtkiaOY7_IrQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|241.7|0.7340000000000001|19.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|El3M5uck2x4yMSvZeJvWUOU80o8E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|137.0|0.58|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|El3yki5aHxUQ7YUpBRK8KrCs-b8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|199.3|0.58|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.01.010|El6qXxcmF85lMq5B8sP1xACD_0Ob|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|111.1|0.66|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|ElA1T8qzkp3B-k4H1YO6qkkbOZVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.08|232.3|0.748|18.86|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.scib.2018.05.003|ElJu84FSM4M1b-YaKGfS48OcP7QG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.0|0.74|16.0|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|ElNefWnBpb2GeaO1YrqSu_uOCKxL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|241.1|0.643|12.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C70', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.09.078|ElQYxNpPtpjjWL_1GJbU0STJeu8p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.04|212.0|0.57|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|ElXe8w33Zg0_MyfkAoQjTaroXXE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.18|83.2|0.748|5.3|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800525|ElZChUIX63l-uFAFu7buGnuFscFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.0|0.5429999999999999|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15434|El_b7tLFBW2cr5ppHO-SgzGD-sgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.6|0.765|17.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|ElfdXBChdA1SifmBmEQQMwCUvLaD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|155.0|0.57|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b11584|EllDQjQp86AvMH0ZVbGdHGlzpa9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|226.0|0.64|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.053|Eln-W-qeDsAtNUz7vd8HrKmdEJwA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|189.8|0.43|7.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1016/j.orgel.2019.03.022|ElneBd0z5tC072FLj2Vtfz3REiu9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|209.7|0.71|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201904684|EloRiThFxCe93g43hooZT3AGTfBj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.098|201.6|0.7170000000000001|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|ElvYKG5cZQYtGZMH40TjZ6g9j_Kg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|178.0|0.648|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|ElzH8wnv0Err3AWoPgnEfEQIVRGh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|221.0|0.74|17.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b03948|Em0vXleuMz80TzYt0iHPX1I0x1zc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|200.0|0.57|11.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s12200-018-0847-4|EmDDVpiF9r6VuNQJiJFPnucc0oQ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br66C165Cs35H840I534N315Pb200|Cs35Pb200C165N315H840I534Br66|Cs0.175FA0.75MA0.075PbBr0.33I2.67||1.1|225.1|0.727|18.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|EmFDXXOgTJYnXvps8YRTdY_yK6w5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.175FA0.75MA0.075PbBr0.33I2.67. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.14|160.2|0.76|13.88|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|EmHnXVtLcXwt9I8mE2r6S9j2zYk_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5500001652782691|1.07|209.4|0.68|15.24|['PEN', 'ITO', 'SnO2-QDs', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201706023|EmbNMbAj_7eHpavwCUqbqWVbAd_-|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-QDs', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.89|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|Embhnlyldiy3aEbv8DgP5mBavBW7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|144.5|0.61|6.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr04801d|Emdepa85SatfyfLWl13ydj_M-YMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.0|0.7909999999999999|18.03|['SLG', 'ITO', 'Carbon-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Carbon-np; PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2019.01.002|EmkhTaHqB_cwJmN6IkllYyBJ4LYy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|171.70000000000002|0.581|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|EmvnE1haQHowqQKGi0lKM9YTIRr4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|226.0|0.6509999999999999|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'V2O5', 'Au']|['Spiro-MeOTAD', 'V2O5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|En01MKqmJdE-j6pqJXan6w0RAy7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'V2O5', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|215.0|0.57|12.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|En4UrCNSw9rBWC3nQK9sLhZtKp17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3||1.03|219.8|0.8|18.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|En64n-kyWlTN6Ji2Xn3IGy56YsJq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.7|0.763|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|EnAJ8ult3FshJArj9ZACwTKzMGvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.8|0.68|11.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|EnJx_buti9W8Uu_6CXL8rynp7Wd5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|205.1|0.79|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|EnSDunLBsWLEHi0VJtgdAz0Hc_O2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0490000000000002|208.2|0.685|14.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|Enb0qDFj1WT6fSlRWQ8oFrB8P00y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|234.7|0.75|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1002/adfm.201806506|EnlOGmFYekMwVyglzC8p1j8xP6-Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|239.0|0.52|11.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|EnmYJUsZIqHLOPFQkkuemCxcJo1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|195.4|0.7609999999999999|15.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra25753k|EnrtstBz14Sq3KXvitcJ9ojD1V9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.6|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.024|EnuoIhoAxxwaiYSWo9xq4taTT5bn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.29|201.0|0.51|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00976|EnwZeP-m1E7m016fq1gFpn-_Ywb1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.75|13.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|Eo0Vhmo_c19PxlyZLrYwPep8VuLf|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|171.0|0.5|7.55|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|EoN5LvnYXI0Yrae5dHjohYxqtRa0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|210.5|0.478|8.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|EoOVE31EFuqu2qfNElIssLEX_MiQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.03|229.9|0.67|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10876e|EoZ1bAhUBxR8F7U62BCy6uWj8D2D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|177.10000000000002|0.541|9.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|EobjZJetmusHcwQZeZbK4lD4ViYK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|162.0|0.62|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|EodzUsgAGcnlv6qS6pvTZ0H7nwOf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|201.0|0.58|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|EokEaxCM6sJHyG_huGFu0nrAFJ5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55|1.6100001716761378|1.08|230.0|0.685|17.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000189|EoryGLqEPZw9niveo8yzHYiJNNxR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.02|211.7|0.6509999999999999|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|EouIs8G11PCJ0mxhoinGXk_iPeVP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|199.7|0.563|12.03|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|EouQNBZvsOj4eT1p-i5YIZUvKEt7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.51|84.0|0.82|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PIF8-TAA', 'Au']|['PIF8-TAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201403140|Ep-16aYzCYoVk1WOQCLbAV6iQZ2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PIF8-TAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.06|210.0|0.67|14.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|EpNQI6DLu5CdtVt5AjtmDMf-uMQn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.6|0.728|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PTDPQ', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PTDPQ']|bulk|https://doi.org/10.1016/j.orgel.2018.09.034|EpSViREKLwXoyyhR1GUruWQnSKSk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PTDPQ', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|225.0|0.58|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|EpUh1PdnDGt-PM--Rx96WJBdR7kc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-np']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|EpZyHAH-vgLcRClXvXheO_UL0kEs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.5|0.72|15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|Ep_8lomlo7mgqFCgcSSy_gmboC8s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.147|235.0|0.785|21.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|EpgzN56mul4R5ncwLOTDPnXjahRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.7|0.69|16.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms7700|EpkHtqX13GTyVQx1O7Yn3D0tEumY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|191.0|0.51|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|EpqDnvSGGmA6MkohzdFECeTt3Um6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.982|175.79999999999998|0.68|13.26|['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1002/adfm.201805168|Eq-oxH22JgxpIiGn5fJGbvXlIYZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|188.3|0.677|11.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']|['4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|Eq4r3wgBFXcjMJ05Hrz1hceHDk6B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|207.4|0.68|12.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b12268|Eq57gGQDQGi-uZEnwa_qgKI_frwK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|170.0|0.64|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|Eq8yyvHldDLTBFdYwFfB_f8YfGWs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.1|0.74|12.31|['SLG', 'ITO', 'PEDOT:PSS', 'Etylene glycol', 'Perovskite', 'Liq', 'Al']|['PEDOT:PSS', 'Ethylene glycol']|['none']|bulk|https://doi.org/10.1039/c8nj04131h|Eq9Q-cbRxmJ9Gz2zEJE8bgbFKeqe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Etylene glycol', 'Perovskite', 'Liq', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|63.0|0.45|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04122|EqCYnK_E0BUOw6ykmvhqfzRUE1cd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.578|119.0|0.362|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|EqKs8algPhDCa1NTFyVrMsCIitOe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.0|0.68|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502206|EqNHukpycOAKbSyYox1SMAAwSV3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.79999999999998|0.691|11.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|EqYGpiw54QOq83ovtqe2gblH3YxT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.66|157.7|0.58|6.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|Eqaxs-WyCbhlFVnxHahKCYSN0lWz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|Eqe4TtsjRaP7wRQZ-p_hMOerSdWZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|193.0|0.59|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1364/OE.24.0A1431|EqiO5MQcjkvHjKufJS4Dx0bwSak1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|211.5|0.764|16.37|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|Eqjxg1SXXBUhEIEV6F31hPokoSsa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|201.1|0.6709999999999999|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta03684k|EqtT3T1yzAmLRwocQcHLYaki6PVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.5019999999999998|74.6|0.8420000000000001|9.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']|['CuCrO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|Er0WKRLP0Fj2qGzWR5APaFHaRpcX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.9|0.68|15.96|['SLG', 'FTO', 'SrGeO3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SrGeO3']|bulk|https://doi.org/10.1039/c9ta03176f|Er4U8TY1MrjVKKMnahMImU43Krrx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrGeO3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|182.0|0.7490000000000001|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|ErBLnXITnDERTQYx6l8fVUbQqo2g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|ErEYXkVz1mPF4_NvSc4Nl0vNHKP_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.7|0.78|19.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b03774|ErO4SF2epdzX2Glfk0UAvqMz9NPp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|189.0|0.64|10.7|['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'NDI-H']|bulk|https://doi.org/10.1021/acs.chemmater.8b05237|ErYWCJH9rle2T1roqUYy6G-xpkyN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|162.0|0.527|7.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.011|ErkzeIXX6B6VlExc26TJKS2R0kzD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.091|228.1|0.738|17.21|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|Es0UO9EjPpbf5MkjP_MfMHUV_8w1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.3|0.69|15.79|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201804454|Es1Di-9QDkKA_WSyOikK9Ybeqhbo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|107.9|0.21|2.38|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|Es2z8JRZm95TmuMB5pVy58-j9QHU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|169.8|0.636|12.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.7.022002|Es4X5Ov2RVn0Uww-3WaEHLXAh2ts|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.106|213.1|0.772|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTF-1', 'Au']|['BTF1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801734|Es7m-2f58_ODzViT9fgSIZ1oU2Sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTF-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|90.8|0.5|3.87|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ra17316c|EsB0puubW8RQiWQIBUxCn8FiyPaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.0|0.72|15.1|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|EsC9RBG6h5YeBBWkhAfiOfV3-BQg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|148.6|0.76|13.74|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-019-2936-8|EsLYxsNTtsWgMhiRHIjjRZ0Sl_Er|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.37|166.4|0.62|3.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|EsaqZVOg_krJJ3qavK3vgoDkImIL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|206.4|0.73|15.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|EsdqcDFq2NIe1wSwi-a2nWg7l6ji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|122.0|0.64|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-OMeTPA', 'Au']|['EDOT-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03046c|EskgqJwG898adI3mO-_2hrvjS-eq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.011|222.4|0.753|16.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|EsmEeMwspb373CwkRIpVMheiFIhS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -Br14Cs5IPb5|Cs5Pb5IBr14|CsPbBr2.8I0.2|2.3500002505831827|1.11|33.9|0.5|2.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|EsoeCaoxYtRKyzov0ghdhkjZm9xd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr2.8I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.0|0.75|17.5|['PET', 'ITO', 'P3CT-CH3NH2', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-CH3NH2']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11977|EsrU_4lQwS3-FsDDh9hjjidW2qnv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'P3CT-CH3NH2', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|179.0|0.45|6.8|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|EsvSSodLfkslZidxv---IdNVycnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|0.99|187.6|0.71|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|Esxic8Jij2Pld7KrzXvHbVBRJgCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|161.0||8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402815|Et255qJN01Ehq_jFtsMEbcRUnbIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.82|185.9|0.68|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1674-1056/26/5/058401|EtHPxPm_h4ft3XpE6WkDJSSz9SOZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6200001727424491|1.0|210.0|0.67|14.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201905190|EtKJa1AEBvFzvbatOoMlo5RC5cRp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|208.9|0.647|11.17|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PBDT(2H)T', 'Ag']|['PBDT(2H)T']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta11744j|EtY-TiBpIsJqF4xzHI6ohIoBETAR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PBDT(2H)T', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.008|228.22|0.716|16.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|Et_MjASe1juAhOwO9nCLcdzDsjBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|107.5|0.562|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03593G|EtcMypOrQZkeeMF1ALvQ4noC_74E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.092|221.7|0.82|19.85|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-T', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|EtgyOyZBPM1Jjg_1rzZHKTGhXjpi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95|1.570000167410892|1.01|194.4|0.716|13.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S0218625X18501378|EtjTLUeyUDEAugc4QSMrtBD0iu3Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.05I2.95. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.39|61.4|0.6990000000000001|5.86|['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|EtoYGsUULVhnZvndeUK4G7_Rb56B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|224.0|0.72|15.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PTCDA', 'PO-T2T', 'Cu']|['PTAA']|['PTCDA', 'PO-T2T']|bulk|https://doi.org/10.7567/1882-0786/ab1fb6|Eu5Xd2DImsMp3mS99iGe0370kGLO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PTCDA', 'PO-T2T', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|157.7|0.61|7.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']|['NiO-np']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.019|EuCHfntSCe1LezU7WWClFMvgeoY1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.62|34.1|0.43|0.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|EuFqU0rI_WzV4bHcS6nLbcbMcR0M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|215.0|0.67|15.0|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|EuSAGS14BvbgLuFU5gXC1Nyw4RW0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|1.04|216.3|0.71|15.97|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'C60-SAM']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|EuSq5GRDCceYPkuBpjkZ6X62ZDS8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|60.0|0.65|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2016.272|Eua7tyF5g2R2BKBxoXa-mcbtKRzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|221.5|0.57|12.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']|['Cu:NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|EudYCYM3auYeUf5XHcxVrJIsbflv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.121|213.4|0.7140000000000001|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6 BCz-OMeTAD', 'Au']|['3,6 ´-BCz-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800538|EumOci72Xp99yfVg9pay_jThDLJH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6 BCz-OMeTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.11|218.6|0.643|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|EupUzijIZgKcgztcZz-rD0ds7r_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|116.8|0.6|5.24|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.10.023|Euxa8dI24YXLHXcqCNO9iUTdEpN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.0|0.76|17.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.048|EuyW8ez-mGzcFtOqFVnLL5LxLTWI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.0|0.71|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112141|Ev5psEf6ZXhiKDadYlJe2AnzyO29|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.5|0.715|14.6|['PET', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2019.107630|EvHazNED8ximEGB9bWpZyYd6wGOu|a perovskite solar cell with the following device stack: ['PET', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.81|285.0||||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|EvQw8ijLPS_tFrzX58v3746Fp9Wn|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|136.0|0.51|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|EvXd8cU4i9P2TPBzOeFmh8Q88C8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.orgel.2018.09.027|EvZ7XZYRiL8RecVPAS7BEA4FbPIl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|EvcMHAfCAHLTYyGDSJwlgh0aXoVG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|207.0|0.6890000000000001|14.9|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|EvlJm9-fEPmfg8lBjNwyTxkGEBRA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.893|176.1|0.522|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|Evqbsyt9vxC3n6mEX0MazEGuaJHP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.13|242.4|0.81|22.18|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|EvuIKKZyNXp3wUBIOS4qQZi4qZM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|147.0|0.501|6.48|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s10854-019-02199-8|EvwHFdTBr-2kFB3cxj1lGoQw-dmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|192.4|0.596|10.71|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']|['DERDTS-TBDT']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201504293|EwAfO_qqJSzODVS59VqN__tPWALF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|213.5|0.762|16.58|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|EwGBBY2BgfO1id-XBZbDrZrlwUGg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.75|16.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|EwJLC_YyJK6CtV8F--H3qs9hm3w5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.8|0.528|10.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|EwOBNAL071M8JgNEForz7p_pvK23|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.2|0.73|14.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|EwkpzWQPvC-9jkUzzJ5tbhiEFKvT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|144.0|0.5820000000000001|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12221|EwoKA38mcOMTgm0lAUL0u0ov4Rv_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|164.20000000000002|0.7659999999999999|12.33|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|EwpsYjwQ07c5l7qurgIp00dFweNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|Ex18DvGnbiJOuDHycbZ8VFczEUGO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|12.0|0.35|0.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,3′,5,5′-tetrasubstituted 1,1′-biphenyl', 'Au']|['3,3′,5,5′-tetrasubstituted 1,1′-biphenyl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|Ex1dVTKOZb2yvrX5rC25mOWKHkWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,3′,5,5′-tetrasubstituted 1,1′-biphenyl', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.9|0.75|18.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602017|Ex4z6Gt54D4NPMbua6SEcZMOswhq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.906|179.0|0.731|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7:Th', 'Au']|['PTB7:Th']|['TiO2-c']|bulk|https://doi.org/10.3934/matersci.2017.4.956|Ex7CQx-Bxsp_aTUwOzoMqCBwWPqB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7:Th', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.013|219.44000000000003|0.706|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|Ex85Y3SS18BJM2KnzQK29CZWwYOZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||206.9||16.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|ExCk_c4bTJQ3xJJ4BgGlU22_m0rm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|237.8|0.62|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|ExKGd3Pj3a3fm-ARQOJk5IOxAqjN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.8|['PET', 'ITO', 'PFN', 'C60; PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'C60; PCBM-60']|bulk|https://doi.org/10.1039/c8ta00816g|ExRnvOZZwlxWoiVPlLeTKL1pdEFG|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PFN', 'C60; PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|230.6|0.78|20.77|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|ExTHdkCb2e9C8L-68OshHCw2tPGn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|171.0|0.53|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '5,7-disubstituted azulene', 'Au']|['5,7-disubstituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|ExTohv-mLDYgXmR4mACa4PfkDb_b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '5,7-disubstituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49|1.6300001738087604|1.0490000000000002|207.0|0.75|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|ExWcb4ibht2iLCT9VvpFXsSzowmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|162.0|0.61|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|ExfFLDsbyaZegZgjAZCvidECDmXl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.0|218.3|0.65|14.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|ExkDEpBOuHYt2kOd7iHPLvK_yB0t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|136.0|0.579|6.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|Exp74nH_CO7KgD0vW3IBAYW96xoj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|211.0|0.52|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201503038|ExsQBbsUeQ8pk70aK0JcuyBLWoQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.735|160.2|0.6920000000000001|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|ExtlEQLL3YLnPABpgzGU4-WjPYCD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.0|0.55|11.3|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1088/2053-1591/aaaa88|ExubJnle2XCmtmeX_4H7rDXQ6cju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|205.0|0.67|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2017.07.019|Ey89Ae5fu0I83yUVHQY5DaS8jvnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|EyIkSRXMBBtC13Rh7qos07xQwIbB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br200C100H517I100N183Pb100|Pb100C100N183H517I100Br200|FA0.83MA0.17PbBr2I|1.9760002107031356|0.975|111.45|0.535|5.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|EyPJAUZL8Vq9_bnCOgktW2NoNmE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr2I. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.73|199.5|0.71|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|EymElX0E5vJ50uo9j3PI40tuDbmM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -C23CsH120I60N19O2Pb20|CsPb20C23N19H120O2I60|(5-AVA)0.05Cs0.05MA0.9PbI3||0.894|205.7|0.633|11.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra13611k|Eyo2jpdc--5bBKcEJcj7jnX4cJoG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.05Cs0.05MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.64|12.2|['SLG', 'ITO', 'TcTa', 'Perovskite', 'C60', 'BCP', 'Ag']|['TcTa']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8tc05372c|EyzcqRklHDCZj225Oo9xO6iRb8oO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TcTa', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|231.1|0.7|15.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706401|Ez3zyOZoGz_OLAEShC-AEkFhQzOX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|1.02|9.3|0.59|0.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|Ez8sRm4wDwMzq-iHVqGv6UAB9Ecc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.4800001578140891|1.08|246.7|0.745|19.61|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|EzOeHeFZ6oZk5X3B65KFp-J3bWxo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|139.1|0.557|6.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|EzQQm87Qg2lKMuVmU27PfbnuANSB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.0|0.62|12.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.05.002|EzS_ZXL9xLriiRIH36cnKFa4BTkY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|1.02|2.8000000000000003|0.309|0.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|EzX3s90f1FqyOlzahfzvczRV7HcQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|152.4|0.7709999999999999|12.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01859|Ezis5DA7pzL2eXMZ9rUVeKug8qJB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|74.2|0.341|2.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|Ezlb7ZPGzXmWSieN2PCp-QWa0Q2B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.145|128.8|0.62|9.14|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1039/c9tc00374f|F-A2t84yqOwXglorzCR4Bvhrqiop|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|220.0|0.58|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep09863|F-GC_z_O9Tm0yBf5f1DRADMFe6eb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.1|221.0|0.78|19.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTEG', 'Ag']|['PTEG']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201701935|F-PafH70B4Ws4YJKTJLCRxNgYI7v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTEG', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||0.9|202.0|0.67|12.3|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9ta00239a|F-TPAR9WX5XegNc5zvSXHN1-fz98|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5400001642119578|0.922|209.0|0.6709999999999999|12.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.05.050|F-akeI8NYBp-y7sh5C4YaygoGf98|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|132.3|0.7|7.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|F-jqeyxSPiBgeLeFr-ITltbRtIRg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.7|0.66|13.63|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|F-lUw7Zzv5PnfBHNCk7AK3-E-EmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|174.8|0.6729999999999999|10.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.06.002|F-nX0MOEybLzBz-24LN7b-qi2OCE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.83|34.8|0.49|1.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|F-sqX6MTwpK_UZV_eL23L1a33vWL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.432|74.3|0.733|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|F-wZGU7XPg38jdKdFHBjVD78JTHx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C19CsH99I60N34Pb20|CsPb20C19N34H99I60|Cs0.05FA0.75MA0.2PbI3|1.520000162079335|1.07|228.8|0.69|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41565-018-0304-y|F07B5xzcBx8e763F7DVUD9iFieac|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.11|234.1|0.79|20.57||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|F07ZNh5JPds-R3mE56JF-z7zzTYr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|209.1|0.597|12.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aab795|F0B84dX6zqstjkYB_Ix-iTCG708k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20Cs5H100I66N40Pb25|Cs5Pb25C20N40H100I66Br9|Cs0.2FA0.8PbBr0.36I2.64||1.06|190.0|0.601|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804284|F0BuZQntUkaUfgF7-JhLPgzaHIq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|223.3|0.69|17.05|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8se00095f|F0OFyMR0FlB9PmwXMeNBGZNPDUxD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.741|121.79|0.6409999999999999|5.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|F0QW000T2GcBJ-kNN6YjGcGfS6EZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.7|0.78|16.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|F0VOp_IGTlhicm6n6mQNEBGsCFi5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.0|0.72|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800232|F0Val9DTwuHaSAvlFdS5p3v8id8a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|187.3|0.452|8.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|F0esj0sXX5G_KQAJHRd5OarEKCsy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.5|0.77|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4Pa-SAM', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp', '4PA-SAM']|bulk|https://doi.org/10.1016/j.electacta.2018.10.130|F0etk6mKZJKU9sB1Xwy4YBrA0893|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4Pa-SAM', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|199.1|0.65|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|F0f6rdhR4Qmm3KTBpTZXNDnl10rf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.07|249.6|0.7609999999999999|19.83|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'TMTA', 'PCBM-60', 'C60', 'TPBi', 'Cu']|['P3CT-N']|['TMTA', 'PCBM-60', 'C60', 'TPBi']|bulk|https://doi.org/10.1016/j.nanoen.2019.103962|F0ivPuJm4jAvnkEm81bP3rE-7nCr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'TMTA', 'PCBM-60', 'C60', 'TPBi', 'Cu']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|107.9|0.63|4.65|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2015.07.028|F0mEi5pTLNhRCCPhu_DVkFnq5evw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|205.0|0.609|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']|['CuInS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|F0n_VI-YIXjYMHZuguyYtoBM5Fky|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.3|0.72|15.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|F0oDjdePtencBvmDcNzjXcF5fzyu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.04|211.0|0.65|15.0|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|F13xyJe2W7mjRjDbzH1xYY8QD3Ff|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|90.9|0.79|5.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|F14cf8F-Sgn8vZd6FXQ86I2BQ_Y6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|138.0|0.67|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'AUH']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|F19kpttb_WeYS54LQPqGLSqtXNOo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.98|202.0|0.62|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|F1GgWF9Z3rB96TffMUM1o8fQK75S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|120.3|0.58|7.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.6b09671|F1UeaJFmaONF3-pfVab92ck1xJFg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|157.89999999999998|0.617|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4905932|F1cih2-7HEbKHtWc7g-vkk8rBPya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.52|95.6|0.29|1.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.5772/62435|F1ihSHraBZWLIpTZxG0b4SSDFuUE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.0|0.79|16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ee01179e|F2ASh0YGWPiMG9UV7-HKqRdIu8u3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C19H39I13N8Pb4|Pb4C19N8H39I13|(PEA)2FA3Pb4I13||1.01|159.0|0.71|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|F2MG_XltsApsLlK_2yEKTLbByeyK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2FA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.9|0.8|17.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201702248|F2epx8xfXY9eZsvlXca7T3QmlEyb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|235.1|0.78|19.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']|['CsPbBr3-np', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00925|F2kZ77DkzMsVKP7AGY1zCXbLkzh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|198.0|0.65|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.04.005|F2oQT4P_M2BwtyuITHvILAkwGNjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.5|0.612|15.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14254|F2tJHTTpt6cjW6oZfgdULswTywtV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|148.0|0.71|12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bi2Te3', 'Spiro-MeOTAD', 'Ag']|['Bi2Te3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900233|F2vze1FxolKXnHRKraLM6KFf51ja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bi2Te3', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|199.0|0.66|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2018.07.025|F2wtGv_VkO286A35n2PE76_05o0C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|192.2|0.654|11.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.11.055|F36BHdS_FhsUENeadeT1UH7qjTnI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|10.2|0.61|12.3|['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1117/12.2291595|F382fAlu2aichsfNz_lRcmFoZuox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|170.0|0.713|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5796/electrochemistry.85.276|F38ILkqLR-18TKAh8oZF61rWwB3n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.7709999999999999|297.0|0.7290000000000001|16.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|F3FdqTsfe2HjgI7uqJXtCgvR3L88|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.0|0.77|19.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta08204e|F3StPaPD2VT8zab3eaEA4FA8EerF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|21.65|0.353|0.63|['Carbon-nt-yarn', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Pt-Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.233|F3W4glMrHMx_pzD_DiX7fxs_hh0G|a perovskite solar cell with the following device stack: ['Carbon-nt-yarn', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Pt-Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H491I261N174Pb100|Cs5Pb100C95N174H491I261Br39|Cs0.05FA0.79MA0.16PbBr0.39I2.61|1.5900001695435149|0.99|147.0|0.61|10.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2020.04.035|F3bl3gaRmnPdIo4MKm2peJ8sqSVP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|197.0|0.67|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|F3wSfB5B34QQc_1JKVy6EqqwPbzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|F482K1y_oWwSJ2JhdPiRkkAl-TLu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.570000167410892|0.98|125.5|0.7|8.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|F49mu0bK8S1J2t-tvXSEtm2jrRnL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|237.0||18.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|F4BgtqfOBd7rqcuA2MJHxUVOi2WH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|193.8|0.53|7.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|F4DXaKQeXd1Mavevc9HB0h3LbD4A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.02|211.1|0.755|16.2|['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|F4Sbo6A9eynCvH7IugjnlIzk2UC1|a perovskite solar cell with the following device stack: ['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|178.1|0.718|12.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|F4gPggWYusl9AEjD2hQFP_Z24c2z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|223.0|0.7340000000000001|17.39|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|F4oDMT16dP2FkFz2-uGMgPxZTrrB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|206.1|0.69|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO', 'Perovskite', 'Carbon']|['NiO']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/slct.201700776|F4pw48KLvEH_4HHGBOqpeRN8BXvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||0.98|180.0|0.58|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|F4tTnBbd845047kJ9KbXMWERpEQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.65|14.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703879|F4xI9kUGR4TNCQdZofaWKF-JIzZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.9|0.72|15.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-20', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8-20']|bulk|https://doi.org/10.1039/c7cc09452c|F55JBscYtlCVuoAUNFV1_PgwyYSN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-20', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|148.0|0.47|7.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b09412|F5DQkoaPDoPC7qe7nBWf0ngqb_L4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75||1.01|167.3|0.66|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.161|F5QBIqdf_ctYW4z1p7X-q-RhhOwz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.8|0.74|14.39|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|F5cwlocJSDbj6sqqr_ndDTnFV7AO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489N176Pb100|Cs5Pb100C95N176H489Br45|Cs0.05FA0.81MA0.14PbBr0.45||1.15|220.2|0.72|18.17|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.066|F5e2gUZOVARKwc2e7M17k78uJUPX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.7|0.72|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|F5l7CjUAJRLsjw0CM_lBYIjgO1rY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.06|186.9|0.7170000000000001|14.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|F5oApQsCt-OPPookWBk2Qx2ar35N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|176.29999999999998|0.71|11.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['Phenyltrichlorosilane', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|F5st9MpDfqP9UBQBg-_69_OljCeg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.1|0.67|12.89|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c6ta03119f|F60tdU4zKDBkNlUSWTTzFmpQtHPB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.6|0.7140000000000001|16.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|F62VsTBV0A17jK-zo-bAUHzpWUPo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|160.0|0.36|6.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|F63sv2fNfNsWQUlQU1De01l8Vfns|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.4700001567477778|0.78|123.1|0.601|5.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.05.122|F67mxhRzD3kpPo72zsZoLPDpYJVx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr3I. -CCl3H6NPb|PbCNH6Cl3|MAPbCl3|3.050000325224981|1.65|2.8000000000000003|0.694|0.32||['Spiro-MeOTAD']|['ITO', 'LT-TiO2:Cl']|not processed|https://doi.org/10.1002/solr.202000718|F6KQxl5uhxqO8zc71AaBHwxX8-ZV|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbCl3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.09|229.0|0.8009999999999999|19.73|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900125|F6NmSJpeoSwIVk-VwAQgGLrUOKKq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|219.7|0.79|19.27|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|F6O8OBMWFx3wE7pYCapw5kfZ_W1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.87|140.0|0.516|7.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|F6RRuKlP687iIDfIExGZCDItGdac|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|136.7|0.7|7.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|F6SN8RV0NjqTp1CoU7rO8RyeMYhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.5|0.7240000000000001|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|F6W79gzyL4dsWWZJfDQX9KCSC80h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2000C1900Cs100H9823I4000N3477Pb2000|Cs100Pb2000C1900N3477H9823I4000Br2000|Cs0.05FA0.7885MA0.1615PbBrI2||1.1|216.0|0.779|18.4|['SLG', 'ITO', 'Poly TPD-NPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Poly TPD-NPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803241|F6vdCQlbk4JnqDswNAWodAX6eETt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Poly TPD-NPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|203.8|0.75|14.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|F7-j6Og8wYSbVn7oP6eGAZdBDJZl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']|['pBBTa‐BDT2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|F73HhlT57itUaw6PRpEwRsIyWegT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.96|89.2|0.5720000000000001|4.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|F75cwNWTBwYU6OQC_G_voL-9b2G7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.96|199.6|0.64|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']|['PEDOT:PSS']|['NDI-BTH2']|bulk|https://doi.org/10.1021/acsami.9b13894|F7BTSAM1Qp-uInpD_MDqXjIOjwXj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.125|223.8|0.7170000000000001|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|F7K7IgqMBCpKWfuEVyGncN_qiYZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|192.3|0.775|15.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801715|F7OCvg_sCAfP4MqUYZDblL1aGMgi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|208.3|0.63|12.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra10007d|F7Pcaf4tMx4vVsozih07z0Lz-Wtw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.77|17.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|F7VZu3GtkXpWn-OVGo4-NQi-kPft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|209.0|0.59|9.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606656|F7i80c5rSm6pCr0jrcusNoAPyedq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|0.0|0.24|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.analchem.7b02800|F7oH0A5kzm9qWRul8kibrxL20KFe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.0|0.52|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|F7qk1zMdFXJCkEY1o5hcqP-9NRxU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.025|202.0|0.685|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']|['PEDOT:PSS']|['PTTI-1']|bulk|https://doi.org/10.1021/acsaem.9b00857|F7wCpBkE6xfz_I2ME09Q-ry75j76|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br200C100H533I100N167Pb100|Pb100C100N167H533I100Br200|FA0.67MA0.33PbBr2I|1.9690002099567177|0.999|95.49|0.5920000000000001|5.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|F8818_8EcpRWcsSQOUTG9OlKUdz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.3|0.72|15.82|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|F8XUI0xKD5HJT56dl278oePi9zjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.4|0.67|12.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06735b|F8Zf5L8axqu4Ax96uIHG2Px09Yfy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.019|8.9|0.77|12.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.031|F8_TgQTio9AJM_nUdFMcwOyYZUhE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.5|0.68|13.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.048|F8kjnxyj2Uzzd2GOE6hQDdTnlgKL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.92|185.1|0.64|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.07.040|F8uK1JYl2qmECOdQNnXLcM88W7pS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.52|21.7|0.431|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|F93wzMCIg_EEat1WqQ9il9nST9Ok|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.713|165.0|0.226|2.66|['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEBS']|bulk|https://doi.org/10.1021/acsami.7b00576|F96aoLJ2K460gba6gI45m7p8Z2AN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.97|157.7|0.64|9.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|F9MOF7SQXqE2lT5xWv-iVxFBbwkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.145|221.0|0.784|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|F9Q6a2WOyxE8MXXXtV_RmrpMeM7j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|185.0|0.57|11.1|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2014.12.002|F9S6ukLRAMFWWtuPfCY56kNJQ_ZD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.6|29.1|0.48|0.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|F9T1AcODNdj69FEivB3GA8NShlzZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.091|189.0|0.6459999999999999|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']|['MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|F9WdHykOS2cjAu9BmBTV5w2Q26f_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.693|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800499|F9X4Ac9wIncRAncH6cj9_HosBtiz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs5H497I249N175Pb100|Cs5Pb100C96N175H497I249Br51|Cs0.05FA0.79MA0.17PbBr0.51I2.49||1.087|201.0|0.7509999999999999|16.41|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta02956d|F9bnbJcJMVWhG4to3SKBNXqbuuID|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|141.3|0.55|7.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|FA2TKijypj5kjY8x-r3pbNY1TeoO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|218.6|0.6579999999999999|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta05674e|FA5I5DwqwjH_ISua2Yyxmd7zdMWe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|187.7|0.62|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'SiO2-nanocolumns', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'SiO2-nanocolumns', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta08743k|FAB-On6GnTvsMi8Tf1TktBrd41xA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'SiO2-nanocolumns', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.2|0.76|17.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|FAHynffz-Ld24GIPvxALTPNXn2A1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.9|0.74|14.39|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|FA_q60nX0CLmvMOkr2yATS_b1euM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.0|0.7859999999999999|16.89|['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']|['NPB; PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03120k|FAij3ifuc9i6jC4GEcsZTcY48P81|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|226.2|0.7|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|FAnCzuhamRG9yX69j937QBgKIDWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|221.0|0.7709999999999999|16.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEG', 'Spiro-MeOTAD', 'Ag']|['PEG', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|FArCoZE194fdMCVdbEOx8yLvJT5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEG', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|133.0|0.2|1.9|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']|['Cu2O']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.08.013|FAvUlL2LkBxHeeAdEgwaU0cfzvQp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.0|0.742|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|FB9HmwlVGbnS0N49nK48tqXHZJuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|178.79999999999998|0.67|11.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|FBPDXM5ZM0jV85nB8MMdc4Og_f3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.8|0.79|16.66|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|FBZNPCKunaDg028lQp7yemHrBZBJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.975|204.0|0.68|14.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|FBl4bDHNZwM4u3te4XyLZcjP8uVO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|165.39999999999998|0.67|10.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SCPDT-BiT', 'Au']|['SCPDT-BiT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01155h|FBs3O5Zpii8Kyu1B6daeDFHf6Q3M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SCPDT-BiT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C47Cs3H253I144N76Pb50|Cs3Pb50C47N76H253I144Br6|Cs0.06FA0.58MA0.36PbBr0.12I2.88||1.1|237.0|0.757|19.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|FBvyKPO2gKYUphrloxuyxtG6psW_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.58MA0.36PbBr0.12I2.88. -C6ClH18I5S2Sn|SnC6H18S2I5Cl|((CH3)3S)2SnClI5||0.55|120.6|0.6|4.0|['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'Z907']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|FBwGxDPV8-YbIE6MGH628GxmzEM5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnClI5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|204.2|0.77|17.3|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|FBxNuy25DSVsSrWuX5f2nEaZdv5F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.9|218.0|0.579|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-2', 'Au']|['TBC-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|FCG1uHsuxCRo8Qn91J5EqLZ63Mq9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|FClQRtDn8EznYSEi6hbSfN1xTm4n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I300Mg3N3Pb97|Mg3Pb97C3N3H18I300|MA0.03Mg0.03Pb0.97I3||0.87|151.0|0.57|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|FCrlkEFNFLdl2LWrNXkKvKfktZ6d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA0.03Mg0.03Pb0.97I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|229.7|0.69|10.6|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.materresbull.2018.06.014|FCzyiizSn4vgD-xsEBKV3vxVSGSF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|161.20000000000002|0.677|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Ag']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201700183|FD5EY80AxPgzjF70pBdZ5ox1T9D9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H6IN2PbS|PbC2N2H6SI|MAPbISCN||0.91|203.2|0.56|10.24|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpcc.7b10018|FD7qjEIRLQRiiiQjqH1kOWp-9cAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbISCN. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.4|0.6|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b09537|FDC2-lnUM2MIlVHN22AUXCx8NT5u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.7|180.0|0.6|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|FDCOit72McCFKn98URBKlA08qYp8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.4|0.746|15.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'La2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'La2O3']|bulk|https://doi.org/10.1039/c6ta05008e|FDRzf4W0MuRJUg9VDBdkow9xLQ6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'La2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.188|34.2|0.735|2.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.1c02853|FDWK5Qy2_AkB6dVW6yTrFnD87Fy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.3|80.19999999999999|0.408|1.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|FDZZ23TN7nMelrTKbNZoLEddNEnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|215.0|0.595|10.49|['SLG', 'ITO', 'MEH-PPV-20', 'Perovskite', 'C60', 'BCP', 'Ag']|['MEH-PPV-20']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|FDa-dHT7nWRy6TFku4cUAmpOSk-I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MEH-PPV-20', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.02|229.9|0.7|16.41|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|FDfFHcaMZpmk8Fx4vnPFHA5HeieG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|126.0|0.53|5.8|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|FDjASvKJEUXQ6aPd32S8ju2RjXpt|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|0.508|156.1|0.252|2.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Oleylamine', 'Au']|['Oleylamine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|FE2qjTDD9klOB9rEAtubejQHe4V7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Oleylamine', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|191.0|0.514|9.1|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['Ag-nw; PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|FE3TZnh5K4LHXM2Gfd2acdXUMpk7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|FENMnP6kZRZeMZX3qUAwLLsQOaNe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.9|0.79|19.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|FEPijAOz8wnxi8837Qt74PM1kVgz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.3|0.74|17.38|['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD:GD']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.008|FEkCClp3HFBwRetAevucyy2WkDfg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|237.7|0.752|19.29|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|FEpEWShXc2m4mTUnA-erqArdF2yj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.5489999999999999|4.6000000000000005|0.442|0.1119999999999999|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta09582h|FEqfJockQjN4TKd5zYHBWfDTfpLc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.12|236.2|0.74|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|FEqtblD4CSHwQYwZiVgy_-hcWOi2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|147.7|0.64|9.7|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['none']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/aenm.201700012|FEwJdhQaK-pfdj6pJ8iH4JYrxJ8-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C90Cs10H450I291N180Pb100|Cs10Pb100C90N180H450I291Br9|Cs0.1FA0.9PbBr0.09I2.91|1.5400001642119578|1.03|225.0|0.71|16.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6tc04510c|FF4s4EppHbR7hEDezSwRKBiNp8VC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|202.3|0.59|8.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|FF7ymnbqv8DLBtmwBcGlnZjpfNr6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.892|206.0|0.662|12.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|FFVDgXwLbx-tzd4TBYU-cEd9vEKa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.01|191.7|0.6579999999999999|12.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|FFXINHxA6atkZlnya7G95VFXSKUj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.6|0.68|14.21|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|FFiqPypMeEpwGfH6PgbdNgrKpASF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|63.0|0.65|3.4|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|FFpzoLXTQf9swdaC--V3_sFroQZf|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.3|0.68|14.8|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solener.2018.03.054|FFtXVIDCAa0grrWvIpi4sf4Ak8m7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|188.7|0.51|9.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|FFvtRAjjZPT_UAZTyyfj5V84bF7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|215.0|0.67|16.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201701569|FG7B6NoTtvssM1dBGGl4oiN4ur_G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.1|0.631|12.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|FG9W3Pguwga3Kb1f2RDilAEsEy8K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|199.0|0.618|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|FGCpZjvkMm7zarjxerTdaN1i9KqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.2|0.71|16.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'CeOx', 'Ag']|['NiO-c']|['PCBM-60', 'CeOx']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.079|FGFA72Jqstx8wt4r15JnxknBmuaB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'CeOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|FGJAMgs5ANghhVijuxUrw8ldYtkp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.9|172.0|0.51|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03577E|FGJHO-raHea8WyVj7khXXZn0xln8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|155.29999999999998|0.25|2.71|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']|['none']|['ZnO-nw']|bulk|https://doi.org/10.1007/s10854-016-4640-0|FGRruYCld2mj8H99DumqAqe_QY7s|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.121|218.0|0.72|17.6|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1039/c9ta04367e|FGVeGCjhkxiyxo0DkbnuFWHY_-9-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|157.0|0.74|12.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']|['NiO-c']|['PCBM-60', 'PrCMA']|bulk|https://doi.org/10.1117/12.2237085|FGZM6rgf-uy1w-ZsmwNZMW2g0TAW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.604|104.0|0.534|3.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|FGaZn_nfK3LltSr23wq7i84SDNAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.028|195.8|0.763|15.35|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['B2F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|FGgqueHOx430G1WXGGBYhpM41lQH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.745|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|FGiwO_HamsCHtfXvXjaa17KrJgiY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.60I2.40||1.09|182.6|0.608|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|FGmu5-4RKJ36NTxwq-uAsekgYi0U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.60I2.40. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.89|48.4|0.89|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'D205', 'Spiro-MeOTAD', 'Au']|['D205', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc07298a|FH32sA4ofiRRYEYl7kH7RhQ7jQ2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'D205', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.64|11.8|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|FHECh7cWSlctRMA_jzN2VJs6DaJZ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|160.0|0.31|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Graphene']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.iecr.6b04768|FHFTSWiXiw6D3OIDPXuPEQEOK14W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|152.0|0.73|11.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|FHLBgBFbKuq8f1rCye-POZUsR26y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|194.0|0.57|7.69|['SLG', 'ITO', 'H3', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['H3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b10070|FHg9yLjyH8DscUzccNDh77W2VSXG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H3', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|177.89999999999998|0.73|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|FHhgO4wkoDN6h4w9arm_1UmXELug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|197.6|0.68|13.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|FHpTXvQOizUzXVFpk3bSv6y5W1td|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.0|170.0|0.7|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|FHuaUV_nBKtLD2ihkFPfx0EMuJjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|139.8|0.68|7.27|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2015.07.028|FHwoMhxXGmpot1aK-6yN-0qiimo5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|218.0|0.782|17.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PMAA; Spiro-MeOTAD', 'Spiro-MeOTAD', 'Au']|['PMAA; Spiro-MeOTAD', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201902474|FHyPSz53fwvqJP1IeLj3hI49Kzmk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PMAA; Spiro-MeOTAD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||1.025|204.6|0.634|13.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3389/fphy.2018.00099|FI8Th7qb1maxpyNZ1f4fsZUWy3cA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|221.5|0.674|16.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6dt00900j|FIWfdy1I28JAiQbtWMVl1OIPoJhf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br66C155Cs45H780I534N305Pb200|Cs45Pb200C155N305H780I534Br66|Cs0.225FA0.75MA0.025PbBr0.33I2.67||1.1|220.0|0.654|15.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|FIgrIeI1y0-EdrOC-aSkOA51MpqI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.225FA0.75MA0.025PbBr0.33I2.67. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|227.0|0.69|18.06|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta09382b|FIjIVki4If0wfSSX3hxSgRJhCbz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.17|212.8|0.7|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|FIkIG8Rfk71ZgrMy9SW-3-1udp6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.08|171.20000000000002|0.7070000000000001|13.1|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|FIsJM4aWm3jbcQsUfRqM_2En_lGA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|185.0|0.677|12.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aad311|FIxi0dBtKyPEcR70lJ9iLi0rIdnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br170C1084Cs10H3868I83N720Pb300|Cs10Pb300C1084N720H3868I83Br170|BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83||1.1|208.1|0.613|13.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201901966|FJFTIxquCpjq65Izw_pAj0ZqbtAL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|211.0|0.773|17.81|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|FJTHa3d80gQiegDa6MKmr2R7FyC5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.57|193.0|0.66|7.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00847|FJV8cqAC6Zu-nC-dqUqDzoQkzuCr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|201.1|0.64|14.36|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-018-2633-z|FJsRfBMHprRNmbsYSB67j66ku0TW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|FJuWaTtC3hZjK5uRbFbpmAURJiow|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC4CsH20I14N8Pb5|CsPb5C4N8H20I14Br|Cs0.2FA0.8PbBr0.2I2.8||1.03|221.0|0.733|16.4|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|FK2lB5W5mIA3wWZuhXVHT67iFsZ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.2I2.8. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|154.8|0.68|12.59|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|FK4Uo6Qb6rVeMzJusDyGLnH7z9fP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|201.2|0.74|16.22|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|FKCbuqzGpFASp0_-hOf9_D34MA1O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.858|175.37|0.794|11.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||FKFNpJtrUnXNcG4q3OrBG6eZ10WC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.0|0.745|17.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FEH', 'Au']|['FEH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.002|FKJRvYR-94ZCnXpyVT5XX-KKnY_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FEH', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|143.0|0.575|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|FKXFbV8ZmBhvbk6-E4FkKSxegHYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|221.4|0.82|19.1|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|FKZYZXC2PQSfeA2OUXJE-dCZdbs0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|226.4|0.737|18.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|FKh_iDw3itSDjgObe3eFEyISWiCP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|101.0|0.21|1.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403344|FKiaFjszTfc_dDMhduY60JQORPIa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|141.1|0.743|12.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|FKmF4wR1Jr5G_1oOL6QMDTfIuonE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.0|212.0|0.732|15.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2019.04.022|FKr9W3NCfgAfewE5yV9sRQPUdIxU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|200.7|0.74|15.66|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr05235a|FKsriFTMisy5hyETguQl2FuN1Btt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.094|215.5|0.773|18.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|FL4MlG73HPzJfAgZA0N6vpq9sz-R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|166.0|0.7|11.5|['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']|['TAE']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|FLLcigQ1RjamWa7VTW3i8Uyh8_k8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|199.6|0.775|15.84|['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']|['PEDOT:PSS', 'Black phosphorous QDs']|['PCBM-60', 'ZrAcac']|bulk|https://doi.org/10.1021/acs.jpclett.6b02843|FLO8bDOeizttEoZyVr3r0-o79rNo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.0|0.773|17.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|FLPu9HkVvqTkbWveruhWNv0NoXCT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|127.0|0.6759999999999999|7.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|FLPzQfwrkT8dZsUzI9rbfcBA7THX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.18|189.8|0.78|17.39|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|FLSyAO1d1txPh2XyA9mIzIouYN85|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.569000167304261|0.7190000000000001|179.0|0.53|6.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1809-7|FLcfYfjN_RAqGjOx75oxSdWXCOC6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.065|123.2|0.67|8.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|FLloPcIazMnxSeZDCQ2khv6vsVe5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|193.4|0.6|9.32|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|FLr-EaU8oFC-uNDvNoNkIirAS4AW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|156.7|0.77|14.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|FLtqAFoGsAfEkJ89MgIx6wHJ_Zbp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|213.0|0.649|15.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|FLvAhhGYxOQPDSYsbb-N7b9p_zyQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|196.0|0.61|12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900922|FLxCELhrIlWunw_S7L2ZrCM624YZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|156.7|0.754|8.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|FM--D7ga1na0ZuigsR5qWTfzcVDU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.03|208.0|0.73|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|FM1SF7thmcTpOq6T0gc_Cba-Grqm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.0|0.667|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|FM35VIi_-GOY0VeuBwt8zUYF7nSl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|FMBAGzt_QkfJRU3hH1U-Lv_R9Wm4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|FMKyVh8m0UTx5nEpaynxuM9Wqgsb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|169.0|0.49|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|FMRJhTSDAdzTWB9FzqM-2mBdR1Hl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.9200002047317917|1.03|117.1|0.56|6.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|FMRvWblng3dhGgvy_qaliBnSnySO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|166.9|0.51|7.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2018.07.005|FMXo7ojnv55qOs-gQlOw3CdGXecc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.06|229.0|0.779|19.0|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|FMhVH67i05wEXIM_2vvlMrP9VLZn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|227.2|0.76|19.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|FMpK7Zlb-PRgIhb19X9CmFfBkLlP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|123.9|0.72|9.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2017.06.056|FMwXPK8c2CbylJNEBOkr3DznCIRs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiI7|AgBiI7|AgBiI7||0.61|26.5|0.3879999999999999|0.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.03.085|FMzHxrzuuq-cs4n3Fi0CzX-l32PZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBiI7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|178.0|0.69|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08250a|FN24Pp7EeJjvV4GmM-Km2tZnWhtt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|201.9|0.737|15.21|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|FN7oJoyLGgoBLigD2PKKBalhq6gQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.82|11.23|0.267|0.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|FN9gJDu6XRzGA11PsN68esmmWprQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.75|17.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8se00368h|FNAjtSOahOHvEKDgHCkPHgGF3stG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|240.7|0.78|21.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['P(VDF-TrFE)', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|FNGaEmh0VxpUefCBmr6d0mw7G2xH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|191.5|0.7609999999999999|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|FNK2O8A7mUPYM5ThfZcWJ0X9209j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|201.3|0.68|14.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ra04347g|FNWb-aAqa4VihoG0nYa1FXPbDdu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66|||||11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|FNWpopnh8Hv5c-GgOdH7spXkqHDg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|184.0|0.721|12.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2DT-TTCN)', 'BCP', 'Au']|['PEDOT:PSS']|['P(NDI2DT-TTCN)', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702872|FNXz2J4s1T1LxP__qLhRK2Max-iu|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2DT-TTCN)', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0590000000000002|227.0|0.682|16.4|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|FNgbrCSd7uOJRnL5k0wGHZYTf3Bn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|226.0|0.83|18.2|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|FNjl_WZKAq9PL6XT8tYMoBG0497p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.03|220.9|0.68|15.69|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|FNpsfDQDo4WUZgLddwm-HRNagmJQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|193.2|0.657|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta01595b|FNr7FvCiU_xvu9hb9Bpk8Fn5xePg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.96|160.0|0.63|9.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|FO1vpwbLglEbIS_ZQnARWDQYW5lM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H14I3NPb|PbC5NH14I3|PAPbI3|2.320000247384248|0.69|59.400000000000006|0.584|2.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.041|FOBs2ziTMB_XPxajmDIBW3JOUiD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is PAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.665|140.0|0.48|4.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta01310g|FOHqWdxxKHXWakkE1dnTEsux2G-z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H44I22N6Pb7|Pb7C10N6H44I22|(PEI)2MA6Pb7I22|1.7000001812729404||||10.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|FOHqjnNoi30YYnF3S1tE_dx3bjmx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA6Pb7I22. -C4H12I4NPb|PbC4NH12I4|BAPbI4||0.34|23.0|0.426|0.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.electacta.2017.04.067|FOObrggU2HZwzAONjBTL36SUfu6V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAPbI4. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|201.6|0.525|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|FOQA0s4qPcjvN_tYDhZqQqkRrSw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.4|0.65|13.55|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-018-2633-z|FOSJypOVhGw9pJR0aLWUXHcd7DVl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|||||['PEN', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800993|FOlg4KLyO6A34JTepGJPEl5A0sE4|a perovskite solar cell with the following device stack: ['PEN', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.047|222.0|0.708|16.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|FOs_PikqhH_pnwtupFTd_wtTmxfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|FOumt8jL4w_yfTzUJr9paDZm8nGn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|175.9|0.703|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|FOy47I8bZrJ74FMhRsrsb9m4fms-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|212.8|0.75|17.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Ben', 'Au']|['3,6-Ben']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|FOyS6eu-S0JE-G1tj_y-HHyb1uc4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Ben', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br4C95Cs5H520I296N145Pb100|Cs5Pb100C95N145H520I296Br4|Cs0.05FA0.5MA0.45PbBr0.04I2.96||1.132|237.1|0.7709999999999999|20.7|['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'B2Cat2']|bulk|https://doi.org/10.1002/solr.201900217|FOzi-Hsqg4oR_Fh7NzF19FQuw2mg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|171.5|0.5379999999999999|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05352d|FP5D6cEo-8aNGQ81AjCVFFj6PxKh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.8|0.72|14.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70; ZnO-np', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-70; ZnO-np', 'TiO2-c']|bulk|https://doi.org/10.1007/s13233-018-6086-0|FP7NP0PcyaihHizy7VMiARh8Sz2t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70; ZnO-np', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb2Sn3|Pb2Sn3C5N5H30I15|MAPb0.4Sn0.6I3|1.2700001354215498|0.767|205.0|0.631|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201604744|FPDK8GPIe20KArvHmY4xnTr8Xxdy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.0|0.64|13.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|FPDY08z0AInJWTDY0R8NygJV_G7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H534I300N166Pb75Sn25|Pb75Sn25C100N166H534I300|FA0.66MA0.34Pb0.75Sn0.25I3|1.3200001407531068|0.75|211.0|0.75|12.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|FPF-3UQYaqxB_WrkcILkLs-idkZq|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|199.0|0.54|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA04385E|FPJwPJhBEnh7eNXPt3HtzLdqme3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.07|184.0|0.7140000000000001|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/solr.201900378|FPKbx6lH-pfT-bHBKSsIXyHqNBT4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|205.0|0.56|12.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']|['ACR-TPA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|FPNr_MxGlFoX2OAkJ10zuaRWxKUU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|192.0|0.57|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/er.3485|FPV0usj1-grwewAcmQpnAo3s3mHw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|109.3|0.5579999999999999|5.31|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|FPkxqKmSGLbWc9-dblWXApLHj0py|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Cu3Pb97|Cs100Cu3Pb97Br300|CsCu0.03Pb0.97Br3||1.185|33.3|0.5489999999999999|2.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|FPlW2Wp9jh7Xq1c9-I_XxCPxSKzl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsCu0.03Pb0.97Br3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|244.2|0.244|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904856|FPmQAIJs-9VGO3sr9GPUKmbdwox8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|159.0|0.64|9.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3OFHT']|['ZnO-np']|bulk|https://doi.org/10.1139/cjc-2018-0414|FPs0whLcbB055E06_pu_dGppywQ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.938|195.8|0.726|13.34|['SLG', 'FTO', 'Zn2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4']|bulk|https://doi.org/10.1021/acsami.5b09182|FQ8zJvD17Xb2NQIRvSNGXo8Jesku|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2|142.4|0.757|12.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|FQFTw3l8bzbH3sN039XuURLh2Qwh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.0|0.78|16.34|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|FQJEVWCKmDQ-qlPJSvq9bhvt66DK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|151.5|0.75|12.42|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|FQKHqF0BKVoZ2Qeu8lrpA_MGyhYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.3|0.644|15.01|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|FQQYDVeTlMR9MGhYTz92v2S-QevX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6500001759413832|1.09|133.0|0.618|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201907759|FQTCSNJgvJd-ZBL--4sIxXRUIuY-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|75.0|0.52|3.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2019/2878060|FQVl5tXiXapz9OOT4d5A3Lc_YGlw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.336|83.80000000000001|0.606|6.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|FQWGQabnQ5KsU8YP4MPoatLy_HGW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.76|0.77|0.292|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|FQeGjjpEDDgyIC-0zm5vFTDTYWZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.785|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902021|FQgb382Z9Tga3q9_RF2MQU88lY2e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.4|0.747|18.36|['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|FQnu97ytNzC6Tf9sAzbBr3geK5u5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.75|48.0|0.72|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SQ2', 'Spiro-MeOTAD', 'Au']|['SQ2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc07298a|FQqvuzhU2-kxd4PZ-uGZCkU7748F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SQ2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.476|8.9|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b01439|FQru0J_gNMZya9Cg0lenG_F-_3Qd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|129.0|0.581|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|FQsRBySzDkGJ3gLLoKsYxdDTeXa-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|208.0|0.7|13.2|['SLG', 'ITO', 'H2', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['H2']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.7b00208|FQtmNOtxlEU5TnPIsaqx2hnw5Ano|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H2', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|237.2|0.648|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00938|FR3IQmAo0Ugbe19-gLuUfnNg-7Gs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|108.0|0.41|2.87|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ra07725d|FR4Q6RVCtxJcyzynNehS0BL-Q7Lg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|182.6|0.71|11.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/C9RA05357C|FRHwEFc3MuzAwceFVoi2eT5WhKou|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.79|152.89999999999998|0.69|8.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|FRISFIiEiNZkNE6NqhetfQ4t3Urx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|156.2|0.64|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']|['MEH-PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|FRIqjI12sEehazyzVuhWylSFSRgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.8|0.77|16.96|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|FRQWqNXuVKQrUn5kAKX1Y5_2-84y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|180.7|0.716|11.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b16541|FRWsWw56KQOma4d2jbxTkkSju0PZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7240000000000001|198.0|0.54|8.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|FRYA7kXIi1A5QJI9wI0V2IJyv8ND|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.8|0.561|9.04|['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|FRYB9gWyh7iYwkFdr1I_fKEyr-Ld|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|183.6|0.78|14.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1021/nn505978r|FR_8IF4g_dZkRMI9WFzwLraGPsGw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.57|185.0|0.62|6.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|FRb2_LL2e4khAGnbt-TjKZBZ1XJH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.8|0.65|12.09|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|FRcaEK1dqlMfOjrOXa3ERJ0_tsLH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.0|0.76|15.8|['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|FRd03uWa7WiMzfqNz0k5ckfamvpF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.06|130.29999999999998|0.62|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|FReql50WVISa1kLrfJAnBysRNnRI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.71|209.1|0.69|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|FRgraxCn6IPjDjMG3uJRorVLqkmW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|175.5|0.374|6.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|FRnikBb4YJCDvrcij93dt5_3yOvr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.98|30.8|0.67|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D205', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'D205']|bulk|https://doi.org/10.1039/c8cc07298a|FS-uoIbmRqByw9X2JvENXkXBk17k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D205', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C11H42I9N5Pb4|Pb4C11N5H42I9|BA2MA3Pb4I9||0.99|98.0|0.61|5.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsami.9b17047|FS1hejgrX6C2XNaAIM4ZAOYQRjFD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|210.6|0.5710000000000001|10.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|FS9_QoFWfXAe3RyPm2VUOP1kCeCi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|157.4|0.597|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12221|FSBDjCA2NN4DcYW3ZwbFOOqctatM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.0|0.6|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']|['SWCNTs', 'Graphene oxide', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|FSJzrT42BKMyIjjAxuFUo--Twsi6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.51|168.9|0.61|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|FSNTqC54tebfmvBUahHhW1r5eM9x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.2|0.716|15.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b22044|FSWW00PJKSufVNjtjNEDSZ8D56Tf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|203.0|0.677|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00698|FSasCc7Z3kpvrFmPDt9hiDRH0BaO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.9|0.753|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|FSdeYCANYu_BKsEjngRLpxkrxBR0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691||||13.22|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|FShNAYyW88mr3QS10fi1HD5ux60j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|0.946|197.0|0.674|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|FShUs9RU0ZYuXTr81t0mNkIYxKFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|160.2|0.705|9.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|FSj8C0gZMS4k1tGwldCoiNXk1VCl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.95|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c8dt00692j|FSqutT5TXoAWds1HQucV87qQmCHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|175.10000000000002|0.7559999999999999|11.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|FT0j0ywbbAKoA53HC3lYAPKVr3TQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.30I2.70||1.06|207.7|0.675|14.86|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.063|FT1-cBcweE6ypFDA-CHP4A-e4fCF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.30I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.061|176.74|0.679|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad7de|FT4MTJgYPgF57FIJ5nHqty435Nha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|185.0|0.556|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-3', 'Ag']|['WY-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|FT4WHr-1ZfWoGOO-cKbBcnziwgFG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|217.0|0.444|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta01237g|FTEFC7RwdFmnCsDbjveUWFw4ny_g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|209.0|0.703|14.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra12348h|FTFpGHwQ2e8ek7vr1d9EHG9clrTN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|51.0|0.713|7.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|FTHEYGTTTbul632_zrkiu1SlQN_t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|213.0|0.67|13.72|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|FTNOni84ksZF9XQZdZ840RLFoKON|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489N176Pb100|Cs5Pb100C95N176H489Br45|Cs0.05FA0.81MA0.14PbBr0.45||1.09|210.5|0.67|15.31|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.066|FTPBkzjmZob9V_smacegldyLEOGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|73.1|0.62|3.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|FTp7T9E1amun7BkYY7JCeoPi5k51|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|172.10000000000002|0.63|11.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|FTpakHkkcrv0STR1z6hjOB4jI8QU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|156.0|0.514|8.1|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|FTsu2-kmIn9WQHFjrOvtkdP2r7Q6|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.14|163.79999999999998|0.665|12.42|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|FTtY4UijbztiDWuNd7eJDBVRjQm_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.10MA0.90PbI3|||||15.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.034|FTvxoDHoj-oscfKrcVn8AkrNnDBo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10MA0.90PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|219.2|0.7809999999999999|19.13|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|FU4obgfwoFBeI6XT1ZHkYmOXaNi3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.1|220.0|0.73|17.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|FU6ZzELb-jADqauqnI9Zth28Y_AH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.15|226.9|0.76|19.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|FU8cowJkIykadQuG-1tmgRCf6tkd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|224.8|0.762|18.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|FU8uvJzacV6Ge-do8AHBriRqzQ7r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3700001460846638|0.15|45.2|0.38|0.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|FUAg8FFIuX03odetYbX4tcd_P19H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|190.8|0.76|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|FUBMl16TMVpD8HxXPYIXkuq3c7_v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|161.0|0.445|5.87|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1007/s10854-016-5492-3|FUL0q1i8yDqtfn8v3HTCcT8f1uXn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|144.5|0.62|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|FUOOn9SPz8cRz5K8X05CE-KCH65z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|182.0|0.53|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|FUO_u1i40j7vkFT434PG2zYpXnVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|196.8|0.72|13.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|FUSZjyvrSWrM-jt1CF53T-0x-mEv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.4|0.73|14.12|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|FUULoy7iS_pC0K_Fqgp_0wb3tAF9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.98|218.0|0.53|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06715d|FUUuRIl-J1Av8mBQl1aEGXWYaRyp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|204.0|0.669|13.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta05989e|FUZWkSR_As-ybcs687G8u4EaQZVR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|236.7|0.8009999999999999|19.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03826|FV1EbhIm8ODvYR3p3ff2e4LrPpuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|126.9|0.72|8.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.21272/jnep.8(4(1)).04004|FV97QnjHd-IdTtrVczhN1m89dQKt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C23Cs2H138I69N23Pb25|Cs2Pb25C23N23H138I69Br6|Cs0.08MA0.92PbBr0.24I2.76||0.94|203.0|0.609|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1429-3|FVBObeWQp_v46-p8Tav0tLHse9rb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08MA0.92PbBr0.24I2.76. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|217.0|0.775|19.5|['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['MeO-2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|FVKF9dIRIAkx8PXKNqyWwRBeWRdl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|216.6|0.741|17.12|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|FVPl2t24ZOGWDiZ_Wv2_ye1tA86l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.11|239.0|0.76|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806053|FVUonU2X54sUcYnj4qg7VOMpqZk6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|212.9|0.61|11.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b10342|FVZVuyP__x00CX8wKJ6Go_kBfeIt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.112|222.0|0.79|19.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201802012|FVd5VFJDIrRak0LVgQ32KABxoD-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.72|97.0|0.47|2.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|FVklnkW1mXZ3kgVJGxqjdJvfBhLd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.021|10.6|0.7090000000000001|20.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b12721|FVlD4Wlu3PAllmaGra4KWQoGKwao|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C50H251I147N99Pb50|Pb50C50N99H251I147Br3|FA0.98MA0.02PbBr0.06I2.94||0.936|125.7|0.772|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201601378|FW6pOaVnBRhiB_dqO5T_hfH4n0Zm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.98MA0.02PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|104.0|0.5|4.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aelm.201600438|FW8hRUtvlpXMXXfTUFyWZI5Wn-BX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br255C1481Cs5H8805I45N1562Pb100|Cs5Pb100C1481N1562H8805I45Br255|Cs0.05FA0.81MA14PbBr2.55I0.45|1.5900001695435149|1.073|226.9|0.759|18.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.0c02983|FWBYKroPB9lR4aMrlSCIOYlp3j3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA14PbBr2.55I0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|169.20000000000002|0.534|7.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ee03275g|FWF4X2IY0azVBD2GtBzE18ukmn9y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|164.89999999999998|0.74|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|FWHQsHgwRkkVBr2xWC62AAccrwp8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.74|146.5|0.31|3.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aelm.201700655|FWImrvjhf820IPWrspETqKT_HgIu|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|102.8|0.66|6.41|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.tsf.2018.02.022|FWUNUP3qo9DWsvUkrhHsI0eys9y7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|156.9|0.61|9.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta09080f|FWXJa6bWtQkcX-4iwY48YWsX1p3D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|135.2|0.72|9.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|FWYwdbg4baRVgnk831YZj62z2JOr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.147|218.3|0.754|18.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b04776|FW_zWv1IYH1cJ75l_f7Ag5Qf7DRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|182.9|0.74|14.5|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|FWqnc7cioJ82pDKCoObLQ2HpTmVb|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.57|146.9|0.296|2.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c9ra02036e|FWwAbgyq0dc9FkHHbSSrmqKQDG0N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|157.0|0.78|13.25|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPB', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['IPB']|bulk|https://doi.org/10.1039/c5ta10574a|FWzAulsk5ONz5E2XkAw5urf3urTw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPB', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|FXAY5zIr9kxpRMJXaW6XGOg4P4Ma|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.069|137.10000000000002|0.61|8.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|FXD1zY6id9hfIJBxguXiuyknVAdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|FXKSym5msxH0KS_FUs0JnbKTntDd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|182.0|0.7240000000000001|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|FXUYA8i55HvY5ab3Ba9ZL40VuFpC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|173.9|0.64|9.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/cryst8090358|FXYrjsQ0187_yrIKA1Wr8EUnxX1O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|230.3|0.706|16.47|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|FXaDcra-g7cX6NXyCB_wi04B7jEk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|174.1|0.66|12.29|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b13621|FXcW3cNFwUw0VNd_5xVcFwHPUvCg|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.03|239.9|0.62|15.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/slct.201701479|FXfrQ2NjaWUx2nzv8pfq_6anRFH_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|211.9|0.653|14.81|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|FXmoNIKH-ej_d4s3AL5-siPyL9GL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br19C100H600I281N100Pb100|Pb100C100N100H600I281Br19|MAPbBr0.19I2.81||1.03|178.79999999999998|0.77|14.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'CIL']|bulk|https://doi.org/10.1039/c6ee00612d|FXr7xw_C5BN75qMvalb4Xi_00ubl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']? The composition of the perovskite layer is MAPbBr0.19I2.81. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.013|236.1|0.688|14.97|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|FXxYSq0oPwDFNcp_32OCpzO5lgmJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.19|172.5|0.7070000000000001|14.51|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|FXzLSEcRy6IFi4KL-YbwGVUTFglo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|167.7|0.73|14.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|FY6ESCoTJtjnq-rLvK1WSvd6AwOz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800554|FYGdO_Cl6vuZDSZSTsRD1HjLs_jv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|173.1|0.77|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|FYJhQpTJw1o6pWdlpw6PWiENs-eh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|194.2|0.731|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra25753k|FYXV0MLxKeP_mh-JCbz7TA7bve7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag3BiI6|Ag3BiI6|Ag3BiI6||0.25|9.9|0.42|0.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0120-3|FYg-_EwAuUa9bJZIga9sxCOaYJBK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Ag3BiI6. -C20H120I60N20Pb19Sr|SrPb19C20N20H120I60|MAPb0.95Sr0.05I3||0.81|184.0|0.643|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|FYteOnQFVtlVG6YikGrxwjVbyZEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Sr0.05I3. -Br20C95Cs5H486I280N179Pb100|Cs5Pb100C95N179H486I280Br20|Cs0.05FA0.84MA0.11PbBr0.2I2.8||1.16|232.1|0.7879999999999999|21.23|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c8ta04453h|FYyax9FMkQdOrkaGUr4p65dUSi_o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|173.0|0.74|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1021/acsami.5b11494|FZ-4tL4vXUiAwx0BbYgggZg55F4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.17|175.0|0.5870000000000001|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00573|FZ4HSY8qDcoO8CFIKEPnbwQ6ChA4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397|0.863|214.0|0.701|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|FZ8RQb2WeOHGY1yRmdvGaX6b89fH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|59.6|0.6559999999999999|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsnano.6b00225|FZG1nmNekcvvRo5_lG-10OQ5Fgxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|||||20.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|FZQYBItnbrz9uAEt5mhZE67rhB-x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.077|216.0|0.7040000000000001|14.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|FZUi70QVGSP4QttyKKE2sAluf1QQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.67|99.3|0.39|2.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|FZXFlNVAiooOd4krNz1zpidYY1Bn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.126|205.1|0.721|16.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|FZnCCHmh4eWjNgQ47rI3Ei8SN7tj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|217.6|0.693|13.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|FZyTFBemQWjAZObW9I3eNrFDP3fd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.01|199.3|0.69|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00286|F_L3XkIATCv4bZ9MzSclkqZgW5ww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.082|108.5|0.59|6.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|F_LJ5te5ujug6YgA8FNKxkyja1wf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']? The composition of the perovskite layer is MAPbBr3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.4|3.2|0.685|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|F_QPpoP3x3wQnFp8bpxaLlEFmaec|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.143|219.8|0.6779999999999999|20.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02901b|F_VpUt3SA9FUB61sdU3vixLnmaWA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|F_Wo-gtzg7ltT1obT9SoZrwge6fR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|218.0|0.66|12.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|F_h1hL15SfkRVMDx_FVIrhs9hqPx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.09|165.9|0.708|12.7|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|F_uMl6cftfoU1EHGHDnEWNq2Xzkc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.0|0.72|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|F_vQnhuwnQPE7AsBfTK-wqbWwXXZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCs5I14Pb5|Cs5Pb5I14Br|CsPbBr0.2I2.8|1.8200001940686776|1.1|155.2|0.765|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.9b01822|F_vby5qHUsuhSrr-Flx-33AHNU6t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|F_vjgWOmqGtYd93kPm_zsWlV_aA6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.75|96.5|0.68|4.92|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1007/s10008-016-3262-z|F_zyCSFvUpUc9Sv_l_9hS84CLJ4k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.0|0.685|13.9|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']|['ACR-TPA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|Fa-lRVKSc5fi3p_R1eoA2-kDSHsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|95.0|0.358|2.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr06741g|Fa-qbTaPYRmvAazHwOuon7O34p-C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.8|0.755|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12050726|Fa2nygDziS40jAxk9N_zc7PRtduo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.054|182.2|0.728|13.9|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15031|Fa8pxfCzt9PZe387V2m-vgA0reVZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|88.10000000000001|0.56|5.18|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/coatings7120215|FaAJ8WSI9_meYMk-OWaRUYJmlzTi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|223.4|0.748|18.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201902984|FaKcD0Xc5-_EnWR1U0jlpP0KHi3q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|222.0|0.7440000000000001|16.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02203d|FaO1dpRdZ9QkkZyHtK_HD688ICCX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.9|0.76|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|FaQeT1bUlRglL0Gz5lcYb_A-Kk_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8109999999999999|105.0|0.56|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2014.08.015|FadT4RhMMRQaXpKv2wCJBND4gydB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.11|198.3|0.565|12.47|['SLG', 'ITO', 'C60-lactone', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60-lactone']|bulk|https://doi.org/10.1021/acs.orglett.9b02635|Fah4SqrPU3B3eB7iVe662wgMkcOd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-lactone', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.0|0.66|14.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00303c|FaqzsqI5NttPHFnW6eJJspLeA7Xn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.7|0.742|16.54|['SLG', 'ITO', 'C60', 'Perovskite', 'FBA1', 'MoO3', 'Ag']|['FBA1']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|Fat7z8q0rgbxuBGX6OGbtfpia0ZT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C88Cs13H456I249N160Pb100|Cs13Pb100C88N160H456I249Br51|Cs0.13FA0.72MA0.16PbBr0.51I2.49|1.6300001738087604|1.153|228.0|0.76|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|Fb-TBbp3Jkij1im5tNpUiIYSO-Dh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.13FA0.72MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.04|113.3|0.65|7.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/sciadv.1700841|Fb4yiibWLqIzqzZhBKuER8NUUXN0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.05|127.0|0.5920000000000001|7.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|Fb7JsuWwhBmOI1SWsVb-zKiKlQf5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|182.2|0.6|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01633j|Fb8IRO3fdcJSweHI_grrv6dH0UHv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.821|162.7|0.534|7.13|['SLG', 'FTO', 'Perovskite', 'Metal']|['none']|['none']|bulk|https://doi.org/10.1016/j.jallcom.2017.10.143|Fb8l4p0d3l2aco9d6dWOAJqCrctq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Metal']? The composition of the perovskite layer is MAPb1.0I3. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||1.07|242.0|0.72|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|2D|https://doi.org/10.1021/jacs.9b06418|FbFFWubiPXjtcAiRuLJBD-BErAcK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|114.3|0.49|3.61|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2014.12.015|FbGXSzNC66CAARXSdM9vecgngC6e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.02|241.2|0.705|17.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'PTAA', 'Au']|['PEAI', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|FbPpSksST4LcM7HOS_HNGfv3zq2l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|211.3|0.76|20.9|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'mDPA-DBTP', 'Au']|['mDPA-DBTP']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|FbnLocZG_gzM9h2T7_eeCnBTja_W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'mDPA-DBTP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||0.98|174.0|0.65|11.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|Fbq5zKElYwgiAe9ogHeBsT59YYfP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.0|0.606|14.93|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|Fc-D46Ctjc5eOry_x3KcSsMtAwL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|1.12|196.6|0.7959999999999999|17.52|['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|Fc2LA2wESaB0S96LKdPM77SRHiTf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.69|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|Fc79xs8uYpVnXh9BAzdz90bsfwOx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.071|201.5|0.738|15.92|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|FcK-Cb-JbDDu3Ic2O1jM4QoczlG0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|128.1|0.293|2.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|FcOBY88UwdUWJnDnnGvN1PbaKlRS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|206.0|0.75|16.9|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|FcRQ0O7saE0kfg-staez46AF7x_m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.51|191.9|0.3|3.6|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|FcTTP4y-IrxRYj5lWZqYHwGhaYJi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|183.3|0.67|12.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|FcTuGZY8lx8CaH_YEstC5grVtmqb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|224.0|0.5|10.35|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|FcV_8rR9j6x3TGT3lthDyT9vX66Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|168.1|0.64|11.11|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'TATF8HBP', 'Ag']|['TATF8HBP']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112228|FcXagzSdasbecN8vke9_xlJ5ou67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'TATF8HBP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|186.2|0.61|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|Fcd7MZrgas-t4oRidBtUdwRq8cfW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|225.1|0.7509999999999999|18.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|FchHWxqbOly07-7UL7czSBau_cbP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|191.1|0.75|15.29|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|FckfaTFjYfQUH1ELWm00kyzF4uIK|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.01|211.0|0.652|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PM-Spiro', 'Au']|['PM-Spiro']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja502824c|Fclb4udfX2NIk42B6Y-S29tajqhg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PM-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|FcvypAnz2cLGkovxkJJBvvgm-JrS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.0|0.758|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|Fd-Osrc4URhpRFUDHxsVqJvDD4Ru|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.0|0.7|13.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|FdMlx-zxjlVFYp-yGaVd_nk-g-EI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|179.0|0.72|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz501392m|FdQOxdVBYBQF5CLOpqcVi6zKBEmT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BaC20H120I60N20Pb19|BaPb19C20N20H120I60|MABa0.05Pb0.95I3||0.93|195.0|0.637|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|FdSZqI_GlTAgBF-E41nzs0O_O2bb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.05Pb0.95I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|224.0|0.732|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|FdWlzzQiun_cmTegX5l1B3hWKYhl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|98.2|0.2239999999999999|2.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03593g|Fde2B_TSrMZiNTi7HjmVsDvdeMs_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.556|73.8|0.794|9.12|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|Fdjwn730sPZpbr-t8Gwc8wzjYiDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|184.9|0.639|11.38|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|FdnTlddtPPvSzB0ZTdKxJZUA41-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|227.0|0.68|15.3|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4929435|FdsnT_AcpwJ46QPenet9OoO05yx5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|186.9|0.75|12.69|['SLG', 'ITO', 'PEDOT:PSS', 'Etylene glycol', 'Perovskite', 'Liq', 'Al']|['PEDOT:PSS', 'Ethylene glycol']|['none']|bulk|https://doi.org/10.1039/c8nj04131h|Fdw6fwJcVrZ65NrdZVOlHB7TtUCC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Etylene glycol', 'Perovskite', 'Liq', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.91|74.80000000000001|0.5|3.42|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|FdwCushAHbgrWlBL3CX_Tdn2QUMU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.0|0.72|16.7|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsami.8b11049|Fe0se75exEb4Bh5aQ6DWdV6jpaE0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|Fe26lyzzKwxAEsAv2HDjxiCMdK2n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra25753k|Fe75-evWGv0hTfwbRpYwN7c9Iehm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.2|0.765|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-9', 'Au']|['PEH-9']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|Fe7H84leBK74Y6d9z5Zzu4zMiLRZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-9', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.155|110.4|0.56|7.14|['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']|['none']|['TiO2-np', 'CsBr']|bulk|https://doi.org/10.1021/acsaem.9b00944|FeEAG9BSKGtvzqdYBPdpWw6RysV6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|213.9|0.79|16.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Lif']|bulk|https://doi.org/10.1016/j.solener.2020.05.028|FeEr-NOpJ-9wRFnHJNqMJeRDPvl1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|207.19|0.741|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601297|FeQ-17358UGCaOAegshYOidYtV9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.0|0.65|9.2|['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['rGO', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.10.013|FeS4n28SsbKhxpwVNy_Kk3W6agOL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|153.2|0.56|8.65|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphene', 'PEDOT']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9se00325h|FeTjrnIMEtxIklTyxIU4LTSDYDse|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphene', 'PEDOT']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|158.8|0.38|5.59|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1007/s10971-020-05221-2|Fe_ybmlSdW7PfkC2LlEmJiL9p2vx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|215.9|0.68|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|FegaSVzWI9gdsH6MS5_iMNJe7Itk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|189.1|0.45|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900199|Fel4ajg1zb7Wfc6g9PeQSKeJ1CBp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|0.88|175.79999999999998|0.52|8.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']|['TiS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|FenLqA7oJqofExsgZQzYpws1Qaug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|140.39999999999998|0.754|11.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|Ff0SrUgBOQN-AduZA24HPYmr5EHQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.06|186.0|0.716|14.1|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|FfBWFnbpLlVCxXy9l_eCBaU3qCKJ|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.15|212.0|0.6809999999999999|16.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|FfJnqvJ1JLRvkZsWYNxDcYlkbRYZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|11.1|0.78|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Bu', 'Au']|['Azu-Bu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|FfLfZfOxrhR1GfNzYKLd0Dk1OPmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Bu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.5|0.6729999999999999|15.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201901430|FfMYWyXn_Btbs1Miwt5uZArefGi6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|0.93|198.6|0.75|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|FfOVLN7wyleu7BY7Mj9WuVoVVV7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.7|0.497|10.22|['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']|['TBASBP']|['PCBM-60']|bulk|https://doi.org/10.3390/molecules24102027|FfS0imi5yDtNpGh92TnG3eUuU0DN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.637|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|FfSIZaK8D0n01KnPE9IvQENYaV10|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|199.0|0.73|14.8|['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b09322|FfkMwz-DjVzLBz2t5a-gMlPUizly|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|204.4|0.7040000000000001|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|FfqewGyMZIQDcXV5rLmrQSFCCg03|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|221.4|0.7759999999999999|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06689b|FfzeMwzIUawP-slIcKFt2WVb2ua5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.875|71.2|0.303|1.89|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1149/2.0161706jss|Fg3tcuWbxlSmrMbebpPZC-Kc1J86|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|228.0|0.737|17.35|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8tc00385h|FgJhh6DRxT3x6KfgzFnmZQPAukwQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.487|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|FgN7MUWZET2O5zZF8jYVQTBSNVs9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|220.0|||['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.104|FgOc-9IgRQKc9LImlr7UaKYWvMY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.34|258.4|0.537|4.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|FgURokT4BWK8DDHJfxevv3ItZaPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -Br3C97Cs3H512I297N167Pb50Sn50|Cs3Pb50Sn50C97N167H512I297Br3|Cs0.03FA0.7MA0.27Pb0.5Sn0.5Br0.03I2.97||0.845|311.4|0.8|21.05||['PEDOT:PSS']|['TEASCN', 'C60', 'BCP']|bulk|https://doi.org/10.1002/anie.202202346|FgaSckn5qeo4IbIqwhyuLyfOW6WY|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.03FA0.7MA0.27Pb0.5Sn0.5Br0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|166.29999999999998|0.748|10.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201503160|FggqVlD6hEIfPrxpx6VYayK0wFSi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.591|183.78|0.501|5.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||FgslzZwvUs6lNfmAcF8L60czWKqH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|217.1|0.7709999999999999|18.44|['SLG', 'ITO', 'NiO-c', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY4']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|Fgwz7K-1nYLumw1-fKh4DKgjoyoJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.116|206.5|0.746|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|FgycRdxzi1kTCpqdaqsQiJn_xr5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|121.3|0.507|4.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201404427|Fh-tJcWXHhrepr1p38Y-ZT0pwZhh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||1.146|230.6|0.7979999999999999|19.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']|['PbS-QDs', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.100762|Fh4h2-8BCHTwawcQK6MbprWNdAfa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.7300001844718749|0.84|205.0|0.482|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-M1', 'Au']|['HTM-M1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02960a|FhQ6obK0HmDYNpeO4X-FAf0gS_sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-M1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.7|0.672|15.67|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|FhR3D8u8m3D9NkSgbh_gvrwDFeIV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|218.0|0.515|13.0|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['Ag-nw; PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|FhSEJ9BKZFmo8eI-aZyriGa4sLYQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.0|0.66|15.5|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|FhSIB_0hLAjw6y6S-yhaX8HvY1hs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|157.0|0.523|7.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|FhXr6PloFXaIJ8jNq4ZuIM_m263W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.07|203.0|0.65|14.1|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|Fh_yKWFF7B85Uz4aMIjGWUZaT9q4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.008|221.1|0.718|16.01|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110135|FheGJ5BH0IoHEmB67CNFA5BZtdV3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.1|0.752|13.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta10588b|FhgvqqTO9cJFfvGxgLB6ydupeckz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|178.9|0.56|10.11|['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|FhmGg9VpUAq6q4CaGdqgH9hJX_Ht|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|211.5|0.75|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.7498/aps.66.018401|FhrBAcqJbpSr_sNg3t-uCa4yjOv3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|171.8|0.71|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|Fi8z30P_GfdrL_xJe8Za_ahTjpcZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.4|0.7040000000000001|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|FiBdKuB74EAIRp3BhNEdlgYmpHzU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|104.0|0.71|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|FiCG-NaPBBJQ3cuXPc3vWXYxM2-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2700001354215498|0.83|273.0|0.8|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b04981|FiFUVd5QOGqPAR80S1MoVOwS0YzQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.98|210.0|0.63|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']|['CuPc‐OTPAtBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|FiPBDF8lHxdHzelCZw8siGcP03D2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.43|10.0|0.61|0.26|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|FiRVhdJVYPqfyKuS5jd2MRl6cCww|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.93|178.1|0.64|10.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|FiXppS1jkGzhjdRjWfKlw6wOLLbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.3|0.713|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800066|Fihpe8UeowADrq8LpESyTHW2pvfm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|181.2|0.685|12.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00084|Fiy0C5Ge8If0wxPBcM8wQoGEOVxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br300Cs3Pb97|Cs3Pb97Br300|Cs0.03Pb0.97Br3||1.3030000000000002|41.0|0.56|2.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|Fj7fL50T069Vc3qr46EA6QKvMSBR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.03Pb0.97Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|221.0|0.701|15.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|FjSZeEnfA-2fBty15GACuURKcy7J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|136.1|0.39|4.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|FjeiYJT6kClfo6CJpjWi9nrG10aN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|112.0|0.62|6.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|FjlYKbAhYv0oCFyISeMjBMs3kkfg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8240000000000001|157.10000000000002|0.55|7.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|FjvCUlqGHei7998lxxtDXxkjD7j9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.710000182339252|0.931|199.2|0.4679999999999999|8.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.03.236|FjyO6OEO2HhdALyv4LOmbi0EfYKT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.3|0.584|8.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ta06392a|FjzGeVl6v5EQWMm2fzHDnZqiwV53|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|236.2|0.644|14.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|Fk6U8Crj39bqFoNzL1srzypgpUF5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|188.0|0.62|8.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|Fk79JOh7wKZbxb0u2N7N1Uoy56bW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|142.0|0.6|8.61|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|Fk7pGg8RhcMoKWL9KYWz1_7yQ6QX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|175.79999999999998|0.772|14.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.electacta.2020.135697|Fk9Nh8uh2IxK_FafAnR0Oi_kvkT9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|224.1|0.742|18.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.10.021|FkAeKkfcBxCn1UsWE-nDAsVpm9Mf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.056|167.89999999999998|0.512|9.08|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105560|FkAqFTkytCI8oOe0i2-d--WhQIcJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.4|0.688|12.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-017-0159-z|FkCImh29-5AwJtmzzcBz7ewapN7I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|13.0|0.71|0.8|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201401808|FkFgKaap6vbJfLXYY-sRNjVQ-hWL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.93|68.4|0.4|2.57|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|FkO_wNIkZdvhX9ILfbGv2MxBC5yn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3C200H1200I597N200Pb200|Pb200C200N200H1200I597Br3|MAPbBr0.015I2.985||0.94|209.6|0.75|14.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601175|FkRHkjFgmfyy8aUAVVZ1IDcNqHDf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.015I2.985. -Br3C16Cs4H80I57N32Pb20|Cs4Pb20C16N32H80I57Br3|Cs0.2FA0.8PbBr0.15I2.85||1.115|228.2|0.7879999999999999|20.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201702221|FkTO1Pzjx9JRejY0ATYDKnoMKb8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.0|0.6459999999999999|14.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|FkYVKBXXGUlOcOjQFTI9SnJsNagQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C92Cs8H474I255N170Pb100|Cs8Pb100C92N170H474I255Br45|Cs0.08FA0.78MA0.14PbBr0.45I2.55||1.12|232.9|0.765|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00437h|Fka6AawW8v285xPDofQyySTZ4q_Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|211.1|0.72|15.1|['SLG', 'ITO', 'C60', 'Perovskite', 'F22', 'Au']|['F22']|['C60']|bulk|https://doi.org/10.1016/j.cej.2019.123976|Fki9os8Xqp_v-cCu-fG9wLm4W2A5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'F22', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.0|0.64|13.8|['SLG', 'FTO', 'TiO2-c', 'MPMIC60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'MPMIC60']|bulk|https://doi.org/10.1021/acsami.6b06164|FkjUdv9sW3meohDR--Sdn2iLHx6j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MPMIC60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|183.5|0.6|9.4|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ra10072d|Fknaz6eknJNAAzX3QZoQLOK__Wg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9Cs100I291Pb100|Cs100Pb100I291Br9|CsPbBr0.09I2.91|1.7700001887371206|0.29|99.0|0.242|0.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11474|FkqHX0h6CGJks1vy47rFxJ-EfZc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.3|0.64|14.6|['SLG', 'FTO', 'SnO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/adfm.201700878|Fks44fDVWYe5X2zU88hF0o2EEZ1m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|112.9|0.408|4.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|Fkuc_TcecZVA75vnrYxaYH8u5-OM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|154.0|0.55|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|FkxgJkyphVZHZcjoNNnYTp0VHPRy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|231.86|0.74|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|FkyqIGBkavLvwkke3q6qgD5cfjGn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr05917a|Fl3EvO9vRrwCnmfhbzA0UssO-JMX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.0|211.0|0.68|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pyrimidine', 'Spiro-MeOTAD', 'Au']|['Pyrmidine', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE08|Fl5_Y-bNHrCMyP-8I-IhZrrQ6EZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pyrimidine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.1|223.0|0.73|17.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b14859|Fl60Mhb_ZYjlzcr6CIdCZXTt04Ds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|209.4|0.56|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.10.035|FlCHhQOLQz5Em5Quz7wvKPGIm9Cm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.127|233.7|0.7659999999999999|20.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|FlTzJMwKjFGDip2PQcdYCLpaCADv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.6740001785005307|0.973|152.23000000000002|0.636|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|FlUgrc8bAzSfk_LJm9r6wnuKGZn_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.2|0.6970000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|FlWrvQX9A6i4_RkOyxlAyxc-t7QH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|FljH2wHp22UpAJpOMcqB9KE9QN6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|203.04|0.5539999999999999|10.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/lsa.2016.243|Flk1lV1YBYYIGHNubiKQLLvZMxcZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C10H57I24N13Pb10|Pb10C10N13H57I24Br6|FA0.3MA0.7PbBr0.6I2.4|1.690000180206629|1.11|173.4|0.78|15.01|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|Florh9VaX4f1sKPQEzj9eABJL16N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|118.0|0.34|3.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']|['DR3TBDTT; PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|FlzUyt6RGl9Fxn_63fswQtO4riqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.0590000000000002|176.20000000000002|0.687|12.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105453|Fm0YFLw_Vp0lPid5vYadmX16B3lf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|161.8|0.599|8.43|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|Fm99fIkurY0TTQJktpEGjsCGd7u0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.148|216.0|0.763|18.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N,N-bis-[7-(4,4′-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluoren-2-yl]-4-methoxyaniline', 'Au']|['N,N-bis-[7-(4,4′-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluoren-2-yl]-4-methoxyaniline']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900990|FmBVjlkpi7FC2Pz3ZzqJlTb7JgEj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N,N-bis-[7-(4,4′-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluoren-2-yl]-4-methoxyaniline', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.787|194.9|0.49|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|FmBv8hV8-RpzcQf3hmjRmt81uo_f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta03169a|FmG1NDveeAeVipNO8oRihFBQWaO8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.030000216461217|0.26|1.7999999999999998|0.37|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01452|FmJv2wcvcs6gwV4jhXafTr0rR0uR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.6|0.736|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10526b|FmNpF0JklwfvX88GMxC6FHDgNXGB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.11|243.9|0.713|19.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|FmVbH2xFzwa63S6nNdwwspmxj6zY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|229.8|0.71|15.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9sc04900b|FmW-Fc72pLps1UffDuoAZSxLxw7o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.32|237.0|0.63|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b00142|FmW4I4YvejlJG2AeMzYVjUkqH2no|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|202.5|0.63|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta10871k|FmmfFtyprafO6tB-bN-8CsQzTDE7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.085|214.7|0.7020000000000001|16.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|FmvPesSB48OkwTz8hsvqpCWHr_o8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.75|116.5|0.34|2.95|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|Fn2IyNQYR2Rlt-_dT4E1EUDgOcTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.7|0.73|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|Fn90-KHrhguaa36zlgyQ7Q7gOisD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|165.3|0.71|11.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|FnHBZVjTlBJwdQb_WdciFqtJHikJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.0|0.81|17.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|FnJJ8M7UvaAGJrAr9qQGd9Lab7FH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H489I300N176Pb100|Cs5Pb100C95N176H489I300|Cs0.05FA0.81MA0.14PbI3||0.81|40.0|0.183|0.61|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|FnMgiZqjB59zpxDNT1YiHGKQMT94|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.5670000000000001|4.27|0.332|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|FnQcuSIAaHaugPkiIFxcb4nPK02z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|212.8|0.7140000000000001|16.74|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|FnSSVEZAoKHO7OtuDyw-ZzGYkaTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|224.5|0.7390000000000001|17.74|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1088/1674-1056/27/1/018401|FnTZbUdx3PWi7zIFUZOsnf9XBUEy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.27|146.0|0.75|13.9|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-np', 'Sb']|['NiMgLiO']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.9b17464|FnVQS0zRjiURlvUMqsNDonlpOTy3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-np', 'Sb']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7170000000000001|198.2|0.452|6.42|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|FnYWOWYha3R5T6AJl_hD_hHbThuA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br20Cs10I10Pb9Zn|Cs10ZnPb9I10Br20|CsPb0.9Zn0.1Br2I|1.880000200466546|1.18|158.0|0.727|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900896|FniLbyN6B33mSmk1LdpGcunmV_8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPb0.9Zn0.1Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|177.0|0.61|13.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|Fnlouhxl6wom-u3afSmuInvn5m_4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.103|229.5|0.745|18.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16963|Fo-5abXig1456mJvH4RFMlWyn__K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|119.5|0.314|2.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.08.027|Fo7V2GAiJDSPy5gjUcYSUvsesRbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.9|0.614|9.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ta06392a|Fo8JHycyxejChCs-eVm6uIb_K95U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|176.0|0.367|6.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800056|Fo933JFJb_q0bccUJOX17SXR80rt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.1|198.5|0.66|14.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|FoAHE7aDGn1oaxv9ogs7TFHqLsdd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br551C950Cs20H4910I2490N1740Pb1000|Cs20Pb1000C950N1740H4910I2490Br551|Cs0.02FA0.79MA0.16PbBr0.551I2.49||0.967|141.6|0.472|6.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104009|FoFNJnM8iMeWxxAgbP7rtYGY72Li|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.79MA0.16PbBr0.551I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|213.1|0.7909999999999999|18.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900529|FoN1qozuJnuN_dnOPikgz3TrP7-C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.57|206.6|0.674|7.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|FoPkqQay7utGUDepjCQVLKLIUzdy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8909999999999999|225.8|0.72|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|Fob8FakeEjExxkn452B-vR8NXnBL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.5|0.78|15.02|['SLG', 'FTO', 'WOx', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.04.024|Foeqp1b4--PFp6bUuhItBcOh8RD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|192.9|0.63|10.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|Fof9-Q9eC-cBOq07mPZD4tcEhNnm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|184.0|0.679|12.28|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.sse.2019.107714|FomOZBgmTVNvfYhMUrcfyMixLpuH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2000002345885115|0.87|16.0|0.34|0.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801322|Fovx7IGbmXuJ_a7bKKOmuCjyqzB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7340000000000001|141.0|0.3329999999999999|3.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF01|Fp6BQqENBGxMLADihrZDdo0zLLiF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|150.39999999999998|0.53|8.37|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s40843-017-9130-x|Fp9YbPBwTClH_2woKgaenaIrNNm6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C90Cs10H513I300N117Pb100|Cs10Pb100C90N117H513I300|Cs0.1FA0.27MA0.63PbI3||1.11|230.5|0.8009999999999999|20.4|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|FpFuLwc-r5cnK_N_et-fJOmlai0f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.27MA0.63PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.0|0.54|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '5,7-disubstituted azulene', 'Au']|['5,7-disubstituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|FpMA85X3PEF7fH3lgb0n0bkYdcwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '5,7-disubstituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|177.89999999999998|0.61|12.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b03687|FpQDtI8nErGYL7eYq0MrKFtPqRwW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|0.98|221.0|0.75|16.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903654|FpUeUB8UBpVbNq9MHc5XZVGfRQvQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|159.1|0.65|9.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.3390/coatings9050320|FpVsHUaW7mpUanum7tj4q2GB_XwI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.052|203.15|0.735|15.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||Fp_--OHrzuVE_rqGctJcQHrUereE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.171|229.6|0.78|20.97|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|Fpw2u8gTbmxiqICYiekoPgY4qn4Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||0.99|203.5|0.59|11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09433k|Fq-nM8yLh-fz-9Fm5wV75nwI3gso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|168.2|0.7|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.10.132|Fq4V2lWturOALRrh-K274fyrHdzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.0|0.7120000000000001|16.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700159|Fq4W_pbIblPKJMILYvie29_4e213|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.69|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|Fq75UuSVg9LuLJloMX4lxwddd1GL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.602|76.2|0.8340000000000001|10.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']|['CuCrO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|FqApjnuqAFxQK_Q6DjelSW418LHF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.04|238.5|0.72|18.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|FqC9AyYdEY1I5PYcu629JWIsTJ3y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -Br1020C1900Cs100H9747I4980N3553Pb2000|Cs100Pb2000C1900N3553H9747I4980Br1020|Cs0.05FA0.8265MA0.1235PbBr0.51I2.49||1.04|226.9|0.77|18.25|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphen']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02391g|FqDeoUAGhFn3KpottDhAsEIMrVV4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphen']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.51I2.49. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.7000001812729404|1.16|183.0|0.78|16.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500301|FqF0-pCjDhlLTXsTk8vWm5R56dkB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.5I2.5. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|0.794|57.0|0.59|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|FqYmRTecjfdXxsUxccYlp6gSBa8Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.92|225.0|0.6|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21775c|FqfxbdyMT3JWL6CdnSOyGoY67sXh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.0|0.69|12.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|FqgOvHWfgb02-F_GgCl2j62Kiv9q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.21|190.1|0.34|1.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']|['m-MTDATA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401991|Fr4n_tR-ZWZTxOdgn3p8hg2r3d4S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.72|43.6|0.36|1.1|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1002/aelm.201700655|Fr6imsNh3-4ooVAMyI0uBh73Y9a8|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.99|228.9|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01691|Fr70lETN_rNB-34jhSbr33FkGGDM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|139.0|0.6|8.4|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|FrHR0b_lSKPuBoK1HsDAGTqz4Dmp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC', 'Au']|['TSHBC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|FrHi57S5eNWMmvFIQ-HVu8-Z2Pi4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H58I27N12Pb10|Pb10C10N12H58I27Br3|FA0.2MA0.8PbBr0.3I2.7||0.95|194.9|0.701|12.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|FrKH7wgCsaojNsxSIkVn77ctyiFq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.3I2.7. -Br2400C1804Cs95H9324I3600N3304Pb2000Rb100|Cs95Rb100Pb2000C1804N3304H9324I3600Br2400|Cs0.0475FA0.75MA0.152Rb0.05PbBr1.2I1.8|1.780000189803432|1.19|185.3|0.808|17.71||['PC60BM/Rh']|['ITO', 'PTAA']|not processed|https://doi.org/10.1002/solr.202000740|FrSlh-hrfvXL9uJVICjpwK-36D74|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.0475FA0.75MA0.152Rb0.05PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|214.0|0.81|19.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|FrTTLI7GgZeLpQ1eMenJWG9sIjtm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|206.0|0.7709999999999999|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|FrVAqXnyzz9Yu2iqLteBV7kaHunA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.76|221.3|0.62|10.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra04743b|FrgqO8JpveFCCVJnU7rhB1_1lcSW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br32C100Cs25H500I93N200Pb125|Cs25Pb125C100N200H500I93Br32|Cs0.2FA0.8PbBr0.256I0.744|1.710000182339252|1.046|167.10000000000002|0.541|9.45|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|FrjUO0u4Umqe-y5VaW9-m_lS1TP-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|195.6|0.54|9.7|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2016.02.147|FrmzDjnjm7b9t_0ev4meEAkxuP2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|233.6|0.66|17.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|FryOgfLDhM1YE3Vh-8qN1KsO6d71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|205.0|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,8,13-tris[2,2-bis(4-methoxyphenyl)ethenyl]-5,10,15-triethyl-10,15-dihydro-5H-indolo-[3,2-a:3′,2′-c]carbazole', 'Au']|['3,8,13-tris[2,2-bis(4-methoxyphenyl)ethenyl]-5,10,15-triethyl-10,15-dihydro-5H-indolo-[3,2-a:3′,2′-c]carbazole']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01275b|Fs7kp6B0Mwu2a0Ds3wQmAR8bhJHC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,8,13-tris[2,2-bis(4-methoxyphenyl)ethenyl]-5,10,15-triethyl-10,15-dihydro-5H-indolo-[3,2-a:3′,2′-c]carbazole', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|178.0|0.51|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600868|FsDzpqp5t330qmI9tjeso9FLRARl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|166.6|0.6509999999999999|11.17|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|FsG3Tnd_M__wJQgCKs-GcHnXgXoz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|128.0|0.62|7.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600484|FsT35s1fIyCv4iXFrk3YwrVUJtpS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|132.20000000000002|0.659|7.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings9100647|Fs_GyfOY-Io1scM97S7FkrqCxRa7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|120.0|0.63|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b05986|FsayuNuZ2Efs4eFMDpRoen_KF_ci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|210.03|0.742|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|FsePfISrRTonc6e0862pXPK1YSdt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.0|0.68|11.0|['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']|['TAE']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|FshRezvxDgDE8IG1L9gXyLDKn-O2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.055|229.5|0.71|17.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.169|FsmNQZWm98K2MzQW9XsjRlQgtEzt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|116.0|0.52|4.83|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|FsoROU2JOTSeP5UVTbFA9ERsuHfQ|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|247.0|0.7559999999999999|19.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b22040|Fsqxdp3XluI_ILPJFZAzlsIXHFkY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.34|24.0|0.44|0.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|Fsr1EbkN8X-52O0npQDV2j6viR8x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|152.4|0.69|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA1C', 'Au']|['TPA1C']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2019.08.036|Ft3ijThckh1gJVraZ-jyshAWNMdj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA1C', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.77|147.89999999999998|0.63|7.16|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|Ft4eUpKCNqx7IN-0eOSA7FoTtRlp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|190.4|0.69|14.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|Ft8E3TbST2j5L4YJi1KTwBXKqWIy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.23|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|FtAq9FPJds52Oy761GWJdtOcGuy-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.97|176.0|0.69|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|FtNd6salshZHvUZV8OsGvXtsrt1R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|222.0|0.76|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01760g|FtRyzM7fszcFLbSq8ZlaTpqJyqDb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|98.0|0.35|2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|FtYuhBy6k-a1aSBbUhSyK3qGyB0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|203.5|0.7020000000000001|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|FtZigk2OOxfwpZp2ZK1UXLaw-j2U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.03|217.3|0.7240000000000001|16.18|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|FtauA-FPoytIh6xxoTeF4t6GRCmg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.3|0.481|7.96|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|FtjA2Z6U97ZcaMXPtqFkKseTSkUs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|FtxC9GyGa0rDuQxhkUxvifdhZznu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|Fu17y96hDQ8b8wtMuBP7hLqdMCG4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.925|210.0|0.55|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|Fu9M3W6FUKZZytGEZkBwCMw2JzY6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I9NSbSn|SnCSbNH6I9|MASbSnI9|1.500000159946712|0.51|80.0|0.54|2.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|FuE8z2lEUn6Gjcy6sd3Ab3q7Ln2y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MASbSnI9. -Br2Cs2I4PbSn|Cs2PbSnI4Br2|CsPb0.5Sn0.5BrI2||0.62|201.0|0.65|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/solr.201900457|FudpC4Q7dO3FSgxpRZyC1RmbDWjB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.5Sn0.5BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|212.1|0.68|14.39|['PET', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx', 'Cu phtalocyanine']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|Fui7mDUrQlvgJ86alF8dA6xOQqYg|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60In3N20Pb17|In3Pb17C20N20H120I60|MAIn0.15Pb0.85I3||1.03|219.0|0.78|17.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201600626|FumNlKCSphBPJfiQh_Fkw2J82RXy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAIn0.15Pb0.85I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.6|0.69|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700365|FusKNQmUSVp5wXDnryGB6f2UU-ra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|128.5|0.6659999999999999|8.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03593g|Fuxc0nlrXFe9rvXo8mygoGwSs8wR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.75|0.12|0.384|0.0|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|FuyKT2WKvsMU-hJtlGyxd7nLllK3|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|144.0|0.69|11.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|Fv2H2RhBa2EYBmkdDiKbPzCJ3Oje|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br100C87Cs13H435I200N174Pb100|Cs13Pb100C87N174H435I200Br100|Cs0.13FA0.87PbBrI2|1.7200001834055632|1.06|178.9|0.741|14.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13145|FvB1CtbkuDYIB3NYmvoUf0XnW7qK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.13FA0.87PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|204.7|0.479|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2020.135686|FvC_LbCWNUKF5oNBv7dqnq7mhDNZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|94.2|0.54|2.29|['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']|['CuI']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s11082-018-1376-5|FvJx8LDu8VMNVRS9q4U_4k7Pi-bX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.6|0.654|14.34|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe2Pc', 'Au']|['CuMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.039|FvL7tAq4etA3_PuZ8uDvWhl5dsqP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|238.4|0.7390000000000001|17.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|FvMY3ODn_DhIWl1Xsy7PSDjps6wn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.516|200.0|0.716|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee00956b|FvMY4RKjsbWXjFaFBndlqBd6w0bU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.0|0.6970000000000001|15.3|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTDP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201500436|FvVt0FEFWUuJKhlz7k0NaA6k9kQi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.14|231.0|0.83|21.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD', 'Spiro-MeOTAD', 'Au']|['PTPD', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|FvYuy_5mCsdDDFCakXmZO3JYfPhO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.07|214.4|0.68|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEA2PBI4', 'Carbon']|['PEA2PBI4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09433k|FvZm5wMyZ4H8kHlDyxOw1VGdbLBt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEA2PBI4', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|195.6|0.72|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|Fvxodw2CujsPzSbHQ-MnajSKNftC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC9CsH54I29N9Pb10|CsPb10C9N9H54I29Br|Cs0.1MA0.9PbBr0.1I2.9||0.949|229.0|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1f4f|FvzGA4i3KhgpG0vsfAt0QpqfZme0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|FwC9EDmel8FqZqfh6DRF40Z6U_uQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|167.7|0.58|10.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|FwOMCSM_iOkvzvAbOk3-X_gnyQdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.0|0.67|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201800973|FwYsqlZZ2CBBB_eINnrFZd3z6arL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.88|198.0|0.51|8.9|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|Fwcy_DX-qRaothPKaVU2aaLydtG6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.088|216.77|0.75|17.77|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|Fx1Mn9NZ3M__5xGhAk_oOTVN72tE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|Fx3OKKlJgtLdFDi6jFLMowKwRg7r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.787|18.5|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|Fx4cr3YeEXxTqAW1iuC43lK7Gf4d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|168.0|0.302|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00573|Fx4tOT--OI_eEu6idZ0C-XGHMf11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||11.97|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|Fx8NYnD2KQXaXGMXWEGs_J1WT256|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|206.1|0.71|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|FxBDy_oexT-3aGkZ7kFf6SeJv_9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.954|230.85|0.6729999999999999|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|FxJwHsBH7hR-kuBF-fecIz4HhkJB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|217.4|0.6459999999999999|14.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|FxMsmZdWU59oSREhHGQ-q06BvEb7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C91Cs9H455I288N182Pb100|Cs9Pb100C91N182H455I288Br12|Cs0.09FA0.91PbBr0.12I2.88||1.148|244.9|0.752|21.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|FxP1SFfqfFtyv_Fvxq4rmByYfeuJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.91PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|108.4|0.622|5.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MeO-DATPA', 'Au']|['MeO-DATPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp07682g|FxPSuctpGBdvMwC9XIhjbGy8a6ut|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MeO-DATPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.8|0.7|14.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01360k|FxWu51i1xgJCjF4gEm3RUWJGnl_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.2919999999999998|73.60000000000001|0.73|6.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|FxePnE-lT6r_v7DNRANLbBJfDhEm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|140.0|0.486|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.07.014|Fxmzuph_AkW5Mn04vipqbigwjjRz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|194.4|0.65|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|Fxn1U35KhyWjwka4IoMpCuEwLNAf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.9|0.67|13.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|FxnTuqKZJNVzoklPnQQwQqEcuf88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.0|0.718|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b05058|FxsDo5xoMtl81OES0iK__tPdL9As|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.8|0.77|15.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.12.012|FxuoaL2e_UeCdccyP1s84VNHMerS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|141.3|0.69|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn506651m|Fxv3m3012cTzsz8ZCEuDit3IiXfh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3||0.79|158.0|0.619|6.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|FxxRHT3-aplIU36cit9CmNfA9vCo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.0|0.76|16.38|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02766h|Fy81Y1L0tv5AmhlWrLs_x-K34-Hc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|143.5|0.73|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|FybBtoxGSf2Zyal4DUK31aCPqhog|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||5.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M105', 'Ag']|['M105']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|FyyaYU-PhvHi9ialVRskCyUD9337|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M105', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.13|233.0|0.792|20.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902239|Fz7WK_YUKSRUKK2Mr-u8wrVSsPCq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|180.77|0.562|10.71|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|FzS_vLc5W4nxsdlhKul0_01o1iwT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|112.6|0.595|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|FzUDrpGeJ7jjUflBnZIZJNp1Lmri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.0|0.711|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|FzbK1FNvCp8ly4NrQx_jUjWEeYYY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.0|165.39999999999998|0.69|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|FzitVMZNndvuqJMZ0JycF9mRz6te|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.60000000000002|0.76|12.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|FzqEO8mPFchelJgaBUG1FME8SzA7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|180.0|0.75|15.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|G-1OEvNB9jQprJwOCaOaVhTnxev4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.5|0.757|18.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|G-6Q7d813aae_uio4-UVFEtr0Xwi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8|192.0|0.62|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1186/s11671-016-1811-0|G-DgtlQscFbS-fwAU3aWxzRCwoaU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.086|168.4|0.181|3.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|G-H56ibsqc16PrjR5WyM_asal4T2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.12|5.21|0.331|0.021|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|G-Ox_Lr5Y89QyCml84beuw605kHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.03|115.8|0.672|8.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|G-ggX0bZ1Ur_y3Q0zFhXykkdTzVP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C269F9H1026I325N125Pb100|Pb100C269N125H1026I325F9|(F3EA)0.12BA1.88MA3Pb4I13|1.6500001759413832|0.97|150.0|0.77|11.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|G-sKWd8v6mB5zPBEycWJkP9I24Ds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F3EA)0.12BA1.88MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|144.5|0.672|9.31|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDBT-co-TT', 'Au']|['PDBT-co-TT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|G06AOselPrYc5jFgijlzcHwCAWCx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDBT-co-TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|171.0|0.61|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201401692|G08XEi4-yOfv3-HaSoLvyE-RZHwv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49||0.924|166.0|0.5579999999999999|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201802899|G09epXfW6u-53R1PbamiViRGbTdY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|170.0|0.58|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|G0CRU7D5o6OSH1NwdSsaLhhA6PO7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|239.6|0.77|20.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|G0MJ2N61kb68J2ezsF17ou4tmN1u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|177.0|0.574|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1406777|G0Ri9zYyzDC11wd0crjPFO25vrY8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.598|3.9|0.358|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|G0kpbjnSuo9Ri_w6pw2-sTWHbyGh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.380000147150975|0.365|89.02000000000001|0.564|1.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|G0lMmZ_UzQTPjjn1HYDkFfrsM5uJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8320000000000001|131.0|0.65|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03865k|G0uTawWYuRrA3hWW_tARyxeLa-Cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.96|174.1|0.816|13.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|G0y-WEopPO5PXWcvk0E_c86umvBV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|187.1|0.76|14.86|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|G1-bTZMP1gSAfVW2brtnd2RTpn1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|229.0|0.62|13.17|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5ta09067a|G13KiNRv2IjMN6IoAVOBeGqygElW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.6|0.75|16.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201900964|G18nn4z_j_hGXwqXw76jfaUDVa6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|212.0|0.72|14.7|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.024|G18ybmKsdYwwzvildsQmGvNCxJXg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.073|224.1|0.73|17.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.031|G1EdZtWfpbxfdfYbzWm4P7l01M1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']|['PTAA']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|G1ICkPw_T_qN-D6faVrxCXYQmtmh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.03|189.0|0.698|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.03.030|G1R0vHUqPKlPijaZe_kJNTt6uAVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|G1cFwmimeLdveidzCECkFgRS5aaD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|190.9|0.7170000000000001|14.02|['SLG', 'ITO', 'NiO-np', 'Glycerol', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'Glycerol']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-019-03898-7|G1eDc-aY9iwtZ62RvUaj6z_nWcFa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Glycerol', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.8|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|G1mgehFu32e5Iknqnf8WZuBZEtMC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|74.4|0.55|3.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.10.077|G1oY8GDTIepwFESW30z06pMpdqbr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|203.9|0.73|13.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|G1rqTI-Tk3iugrZ4QSg8pJO_KZlE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.0|0.611|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00847|G1zuBHyLyMKsu5FK6PrJyJ5R723s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|207.0|0.52|10.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|G21RFYstt0mFHjRHpxlweEEqEH2y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|G21rJB7Bxe_EvgMOXCowormG-cF-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.18|127.0|0.711|11.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|G28b3zdJWANLRzhMz8lm-YpPfz9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.998|187.4|0.645|12.06|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']|['NiO-c']|['CdS-np']|bulk|https://doi.org/10.1039/c7cc09838c|G2Fvi4BWO0qav2t5ePboiGafT7GH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|211.2|0.7190000000000001|14.38|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|G2RK74nSTxeJFMOQw7tjYK17V8vX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|195.8|0.736|14.44|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|G2cGcIMHvHyxvxut-x6bmBg7MuFW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.626|182.0|0.446|5.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2015.09.092|G2oDJWnlrES7RLfFEYExVUq7mk_V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.051|210.5|0.745|16.31|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|G2qR0Irn4ezO6T-Bs2LHVtbECumA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|233.7|0.75|19.41|['A.R.C.', 'SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02044|G2wzLtZkL422AkSdCDX9o-jIId6e|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|112.3|0.6679999999999999|7.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900374|G2xved4_yFGsE-rfgqSa8uMijh_L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.86|157.5|0.44|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta05121j|G33VqFMWS39KwFGUT5waNxhrAD45|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br39C95Cs5H491I261N184Pb100|Cs5Pb100C95N184H491I261Br39|Cs0.05FA0.79GU0.05MA0.11PbBr0.39I2.61||1.124|208.5|0.7140000000000001|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|G3Es1CDMIEhRJjyH-4lOvJgGdA3p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79GU0.05MA0.11PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.9|0.693|13.15|['SLG', 'ITO', 'C60', 'Perovskite', 'BTF2', 'MoO3', 'Ag']|['BTF2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|G3GSZjRrU-IdNscit2R6PyHiDlEG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'BTF2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.3|0.79|18.1|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|G3W7Xp7AF-mjIn4gskIZKQ-u9N7J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|205.4|0.682|13.53|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|G3mOEURPW7tqhDiPB7gU92xMvDK7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|219.8|0.728|16.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b05146|G3y37Jyhq5ow42RscJ6vqRCnHVbb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4||0.5|92.0|0.267|1.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|G44Q5AiwR88WTNoMThlZIDqNBUgv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.29|72.69999999999999|0.73|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc03359a|G4Gj95MC5ScpG1QDf_6sIQ4LfDrj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|237.4|0.728|17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|G4ZDeFTup3sJaIfGIVR3OOyUYC6a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|210.4|0.67|15.2|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""3,3'-(2,7-bis(bis(4-methoxyphenyl)amino)-9H-fluorene-9,9-diyl)bis(N-ethyl-N,N- dimethylpropan-1-aminium) bis(trifluoromethanesulfonyl)imide"", 'Au']"|"[""3,3'-(2,7-bis(bis(4-methoxyphenyl)amino)-9H-fluorene-9,9-diyl)bis(N-ethyl-N,N- dimethylpropan-1-aminium) bis(trifluoromethanesulfonyl)imide""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602736|G4_jwF9ZLwKWcQFn-vSvgeI5yIT1|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""3,3'-(2,7-bis(bis(4-methoxyphenyl)amino)-9H-fluorene-9,9-diyl)bis(N-ethyl-N,N- dimethylpropan-1-aminium) bis(trifluoromethanesulfonyl)imide"", 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.8|0.78|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|G4lVDJ5qVnvH94tlkG02Ya3J7JU1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||0.967|196.0|0.69|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|G4nODMulIkc5kXH_eqBJYtXdeCJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|229.0|0.8029999999999999|19.6|['PET', 'ITO', 'PTAA', 'Perovskite', 'Plastic foam', 'C60', 'BCP', 'Al']|['PTAA']|['Plastic foam', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|G4poupA35xhDNkjjlbDEJe0Bx_dk|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Plastic foam', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|G50lgVhaXakGCqTm6ZmDb9Sbexbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8909999999999999|84.92000000000002|0.547|4.14|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|G53QVi-FU8FnbQOVMVF-AzsCnEKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I2NSb|CSbNH6I2|MASbI2|||||3.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'PEDOT:PSS', 'Au']|['PCPDTBT', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b11332|G59VdqYEVeajzEMRzyLrYjf1BFWT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MASbI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.98|201.5|0.63|12.24|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|G5ALIbKx3PSWEwGkzU24blUcdQj7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|134.0|0.677|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.01.023|G5A_yMbf4588ZPTft0cVW0u5yCbb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|G5FKIq8CU8EmSpklN2JBpwKxJq9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.0|0.66|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.egypro.2017.03.300|G5JRIH4ZqD1L7VoJAhYPkZ4P1TIa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.13|16.0|0.6|1.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|G5LX74RThJSA9eWf6_uMPXMTKbsy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br3C2Cl3H12N2Pb2|Pb2C2N2H12Br3Cl3|MAPbBr1.5Cl1.5|2.650000282572525|1.43|18.0|0.7|1.08||['Spiro-MeOTAD']|['ITO', 'LT-TiO2:Cl']|not processed|https://doi.org/10.1002/solr.202000718|G5OHkn7-7TGzZzU3tLyFxuyLfBp5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr1.5Cl1.5. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|129.70000000000002|0.64|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']|['poly(DTSTPD-r-BThTPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|G5VoFPwc_QooENBmq8-mkSZSW_c1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.01|165.79999999999998|0.456|7.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/molecules24224039|G5YqGtVQmnLlBqeQf6vLNp8n2huG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.14|214.0|0.715|17.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|G5Z8la8eAWWCm-AWeeLdoiMWT6xA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|151.0|0.7|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|G5ZyP_Ks8FkwqqJOJ2kJx1iJDpxg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|225.8|0.7340000000000001|18.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|G5bGVvwN8i5AI4M2xWXqqzBOQLOQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.72|79.0|0.49|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01606|G5dRDzl4ZpFFCSHkDXaiTtXa0nzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|208.2|0.57|11.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|G5jn68_xIjyXLIuxV6NXzvBqxQvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|149.8|0.8140000000000001|14.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104241|G5nPJQIQh3I39i_S6oKfbaQA3Sdh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI|1.6300001738087604|1.175|207.3|0.75|18.27||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/d2cp02358j|G5p1k5LD030R5U7n-OpY0V1Zd0gX|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.743|190.5|0.64|9.06|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1007/s10854-018-0262-z|G5r2eLCAc_ZGJBexp0nb99-SZblU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||13.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|G5woUmydYa1O1G4kDrx7Du4u260v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|201.4|0.5770000000000001|9.8|['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdSO']|bulk|https://doi.org/10.1117/1.JPE.8.045501|G5zGsAwsFa3sABz5ppKpHM0Z3vsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C96Cs5H497I250N175Pb100|Cs5Pb100C96N175H497I250Br50|Cs0.05FA0.79MA0.17PbBr0.5I2.5||0.9|181.0|0.61|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c8ra03993c|G6DWorQ9uGTZu-We_5GXBkfdvObF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.0|0.78|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Bu', 'Au']|['Azu-Bu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|G6SFSFLfpPnOjvscy5lnFOKWIKHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Bu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|0.08|0.16|0.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|G6Z9fYicaGSQGC74z2eEDkxL8ZrU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.033|220.0|0.74|16.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901642|G6gT1wbV_iI1bnrgq-oNDzV8QHuy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|116.0|0.319|3.66|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|G6kbjZXpzVy9hbwyYR7-w801Cs6n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.06|198.0|0.69|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|G6w3MRujvyLSHbOho_emDzW7AkSi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.05|197.1|0.69|14.24|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|G6yOXh1wrq_buV8dOK4qgY2je3FL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|G6yZJHRs89F4Y5dFVBV1GXPz57vl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|233.8|0.759|19.9|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|G6ywBJR0SORPpX1HrhSIX4LDsfKr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.2|0.64|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|G73-DT0cgxZZovgtGA7gwnYVSTmM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5500001652782691|1.12|235.0|0.8059999999999999|21.1|['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['MeO-2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|G78tnVABCgNZdWmH32IRjxEqE8De|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|204.7|0.7|14.04|['SLG', 'ITO', '1F-SAM', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['1F-SAM', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b10445|G7AtEaNhdglF3jHb8v82LOl7g1aB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '1F-SAM', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.6|0.731|15.8|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|G7I7xKAyo_ziDMyNRcr5Cwo92DBk|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|148.6|0.45|2.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|G7WtkqlMRGLN5T8q9OXQBpeZ1GtN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58||1.132|233.3|0.7759999999999999|20.27|['SLG', 'ITO', 'NiO-c', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|G7YFiyUJxFDLp4CBc3BMdHRQ6xCy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -Br3C20Cs5H100I72N40Pb25|Cs5Pb25C20N40H100I72Br3|Cs0.2FA0.8PbBr0.12I2.88||1.02|224.0|0.754|17.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|G7qaM_VWV0fGFxDOxHunqSz9hQUj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.0|0.74|15.8|['SLG', 'FTO', 'Nb2O5', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00094|G82WgWr34KuvqoH1p-dnOywtH9Ln|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.2|0.48|7.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra21423a|G87VVyDqnODbOn6vJXTvE0KZPRVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|228.0|0.705|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|G89rnQQ26gLo-YrbN5WBq0siFM_C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|95.4|0.58|5.1|['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|G8ETFi8V3v581BtlGmMeIUYfbCw9|a perovskite solar cell with the following device stack: ['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.95|179.3|0.68|11.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-6228-0|G8GdA7fS6nUg1M24_M8Idtt0Bfi2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.6459999999999999|210.0|0.33|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|G8JEV4TmwQSc3vnnpnYRtPo6-PtD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|222.7|0.72|16.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01824b|G8SScq-HcM-ePDVl5aeso1TboDcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.55|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|G8aaZlqk93SXIAX4IIE9n8IZ0hsq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.774|171.0|0.58|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201700268|G8jiAMbbOO4RlSI9qZZ1R-a8uDu3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.04|207.1|0.69|14.81|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|G8mn-uTVRMO7qGH9XecBZJ_5IlK5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|189.0|0.72|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06362k|G8tplwv0arZEPHijGUkUhqRxXReO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag2BiI5|Ag2BiI5|Ag2BiI5|2.2200002367211344|0.69|60.4|0.624|2.6|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802051|G8uywhy8Fq3tX3vOgd6J11RUTjnV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Ag2BiI5. -CsI3Pb|CsPbI3|CsPbI3||0.87|170.2|0.6990000000000001|10.35|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903751|G9-SkL90Gz-jqbDRuQZVSjuJ9jIn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|225.8|0.51|10.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05373g|G94VfF1BW_o-V75woxRCs9wqlVNC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|130.5|0.66|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b10166|G9AmB6X2_CAHaXaKpplhgpNixPJl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.8|0.74|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.031|G9Bj8Ie6_jBfLg5bbPZU24fT5fLE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.03|222.1|0.763|17.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|G9GHpNlh3STvMs79wInKkFdazm0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|230.5|0.77|19.88|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16341|G9Vjkf4v_ZgDZRe5mRKpDrSZ24aQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.0|239.4|0.534|16.0|['PEN', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800399|G9XntlZvI5wEB8zhr4dhUxvyC-c6|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|230.1|0.726|17.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|G9YIl7VvCW8LHh16Kf4kZ9UCGa_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|230.0|0.58|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']|['S5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|G9ah6AQbYMdy-AV1ZIgBMqsMDWA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.04|227.2|0.7|16.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|G9g9xvhcf9B1VXl-opwNXPdHuCMl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.0|0.73|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|G9iPb7mngqeit_pWVN2F5FtIL1kG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.9|0.733|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solmat.2017.12.015|G9lJ38rV_a31xGWPlzG8wxjYCvyg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|234.7|0.74|18.78|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'NDT', 'Au']|['NDT']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02071j|G9o7UoNW9LdiEetG4suSFTwe_y74|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'NDT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.2|0.603|11.8|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|G9qVQyBhYt1HmK1AQS6smi9NShPC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H25I15N10PbSn4|PbSn4C5N10H25I15|FAPb0.2Sn0.8I3|1.2900001375541723|0.471|178.1|0.502|4.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|GA0n71bmfALbjkOBYj_E4uW9dwb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.2Sn0.8I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|212.0|0.74|18.2|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""(N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine)"", 'Au']"|"[""N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|GA7YBQO74Aq4ziBGTH8VFyBx26y9|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""(N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine)"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|153.8|0.76|13.48|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|GABKQ5FDQ196NMRUEsvoKw0BAsTf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|39.0|0.52|1.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|GADZOhRWsKAGJZVTF7bmQ_WMfBjr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|211.0|0.76|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2018.06.013|GAaVHjiJm70i5oQhjpTvplX8jCaP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.3|0.69|15.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|GAqFmLpd1TZv0R6VLENKj6ZUVauU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|226.0|0.79|20.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|GAzwPXTaJ13fl-THK4QTsRM3yJMe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|161.6|0.58|7.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|GB4rHzWuDL-PWXiRj2Cnpd8K9CXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.994|189.5|0.446|8.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cnma.201800009|GB95ssf47Rp3RKho4SMr7qbacd3-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.2|0.69|14.79|['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['N-PDI']|bulk|https://doi.org/10.1039/c6ta03119f|GBCBdUFOJaboCXuNVHn9at4A6fSG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||1.021|219.4|0.789|15.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|GBDrJDQyGrpndYJFmfwjFsM5ZwuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49|1.6300001738087604|1.132|232.0|0.797|20.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|GBHcp6czNloOZLAJdUH3_ZSGizoN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.03|92.6|0.6609999999999999|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|GBPwDlw-CSK0_xLQw48CZ7h8YZ-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|157.7|0.66|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b03171|GBTBgsYZ4FKSluJFzc-f5U3lWLlu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.2100002356548227|0.78|30.5|0.58|1.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06816f|GBVYP7N0lZruNe9jQXUA6csy6wJr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -C8H32I16N4Pb5|Pb5C8N4H32I16|(PEI)2MA4Pb5I16|1.8000001919360546|1.13|97.2|0.57|6.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|GBZ3ZHDNZ_dHBC6FruIOn3MsvZhw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA4Pb5I16. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.895|185.0|0.638|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'Au']|['NiPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|GBeahKvN1eCE2sBzkXqYJxmyD1lp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.13|229.9|0.74|18.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Dodecylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|GBhgS0xT4UAWHkwiHe-QOxJirOc4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br52C100H517I248N183Pb100|Pb100C100N183H517I248Br52|FA0.83MA0.17PbBr0.52I2.48|1.640000174875072|1.13|187.0|0.65|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|GBiEDZ6YSAS6dIcnAMLHElaRnzn2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|168.2|0.59|9.66|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solener.2018.03.054|GBiEPmgh5Lg5GOlt2xdDZOyMZrAd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|223.4|0.77|19.72|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|GBpPS60iozckQEHJs92ntzooyBvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.83|320.0|0.73|19.5||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|GBpXmHpYWVdJu1Ls5ZmRDWjmdqD2|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|||||20.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|GBph3OhHzJIxOy9q54J3D3kOsItY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.911|182.5|0.69|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|GBzALHwSQdj7u7srSKjjOEYTiFAF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.93|167.0|0.63|9.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|GC2Zupg6vYx89R_Ob7dYubmJEp0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|178.5|0.48|9.17|['SLG', 'FTO', 'TiO2-c', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|GC7FEzm_fh4DaVUQQGeD7WxKLHsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.0|0.65|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|GCHo-3WMG2RERv5n_f2alkpjHmC9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|130.0|0.59|7.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|GCKoEtRitExwhVVX0lb5_bbVDobc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|194.7|0.6809999999999999|13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|GCWPxEg_PAJldJT12rWROMVZ7Blr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.084|220.3|0.726|18.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|GCYz35ggkq6Cz72ccG7Ko3PLlyTe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|220.0|0.77|16.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01651d|GCgVjT-GVBrpDVnu7l8xwUqpd1Zu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|222.8|0.732|16.94|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|GCi2tIBYcQi5mQU1-ik-BsaX59H3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.146|217.8|0.736|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|GCj24SMNyUF-aHV3aJWgH5pdmTFs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|160.0|0.41|5.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta05470b|GCjMkGE9Ki9oB8jt_IIYI3nqDpeT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.1|0.66|14.87|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201702934|GCma4pTVCoyF4bxKK7kJlsg7IxvF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.06|244.0|0.78|19.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b00356|GCuss-A0Xc02-aNH2dbJuYjfe_RI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.01|218.5|0.68|14.92|['SLG', 'FTO', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuSCN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|GD3FaKQPILPoKw2v3v_ejrZTdzOy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.94|81.6|0.41|3.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smll.201700611|GDBoJM-BHPmkQ6LwRFOr28ofFFtr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.2|0.74|15.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|GDOY_U-pg6A626hHgvySZvt4g96m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.576000168050679|1.01|223.5|0.716|16.12|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|GDP_k0XsbV__p7fpYhE5JZyqKhvu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|235.9|0.75|19.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|GDQioqRM9zOWEXy8KVCF5Qci7wVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.02|111.7|0.779|8.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|GDWrwKM3yXktmClbr7BPx_BUmBBW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -Br45C85Cs15H438I255N157Pb100|Cs15Pb100C85N157H438I255Br45|Cs0.15FA0.72MA0.13PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|GDkTbyC0QRcI7a0KapBavjQDh4lN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.72MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.8|0.655|11.2|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.026|GEHDyxZ_7XCi86XyrbXLPeZ1zcq0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|119.0|0.7|7.1|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c4nr00621f|GEJOsjUragq7jmNvmq1WM6TvZZ5M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|175.0|0.78|12.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1007/s12274-017-1894-7|GES2IZqy2h9AvNci3kvhFhncQWuZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C71H210I65N25Pb20|Pb20C71N25H210I65|(PEA)0.8BA1.2MA3Pb4I13||1.08|156.0|0.698|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|GESYbm6MFIJs6l-KCsY9oMqv-Lnm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.8BA1.2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|122.0|0.57|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|GEYeqE1AOG_ESn5aP3zxp2DRc7dz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.113|207.3|0.73|16.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|GEmqrY_SETcOfzJyBJnegEQ1byI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|48.0|0.5|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|GEu0bi6bYKzu-1ZA5S1kStpYzzgY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.5|0.7809999999999999|18.13|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|GF14SLnwHRX9XMNUpLXmofG9k5-x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.745|87.89999999999999|0.63|4.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['No HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.085|GF6pgKnKdHLIvlMVJJL30DrX1TXg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.5|0.755|17.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|GFD0fD--CnFBKMIaf1lV7kNnmfDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|227.0|0.809|21.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|GFEC1zvQ1EA_kYcTI7_u9W-2cYn4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|181.8|0.68|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|GFFnJamJv57xCMhcjqy_43r8zkIs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I13N6Pb4|Pb4C20N6H48I13|(PEA)2MA4Pb4I13|1.6000001706098266|1.0659999999999998|132.3|0.411|5.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|GFLytfiVsQJXIzs32T-DUo1Z7Xa7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|192.7|0.62|11.02|['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|GFQJiq38B9jo-dyu4hx_mCSIBpuN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.0|0.69|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA09922J|GFgP7B6vKWqNNMiniwBnB4l2FCmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.04|148.5|0.5870000000000001|9.07|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|GFnYvXSpV95fDT1a31pG1j2AZqcO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.1|230.0|0.72|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|GFt75Uh6uIB8aek6_ggi1284dCtS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|205.0|0.45|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuBuPc', 'Au']|['CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.11.119|GG8yoX-L0BZJpQUjo5g7z2e8kUfx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|125.0|0.58|6.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b04338|GGMuUMuzVr4SEvEVjpJ_4cls-uLV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.099|228.5|0.76|19.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201902902|GGPn0ej5s6HcNMVXKhFbqLN08vKU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|60.4|0.6|3.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|GGRmE5yQi_XB6-2ZseOMBAzzE6hg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C91Cs5H468I255N169Pb100|Cs5Pb100C91N169H468I255Br45|Cs0.05FA0.78MA0.13PbBr0.45I2.55|1.6000001706098266|1.09|197.1|0.743|17.16|['SLG', 'ITO', 'PFB', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PFB', 'Al2O3-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900384|GGSCxBpYXQAfs4DlliUfTSwDtcDC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFB', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.78MA0.13PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|214.8|0.7120000000000001|16.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|GGSjWcgdiYTIXHrq7P3Bw9yEZxvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|222.7|0.64|12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|GGSma2hxaB4zramPFJwY_7OSV_Ob|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.764|143.0|0.55|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|GGcrFEMQSfmVcyyJpvLAhEFmESPC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||17.3|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|GGfhCtzNLyI-JxInBYdU26mf8_hA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.8|0.665|14.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|GGga-vNPHdP4dtgvJPev0e12dTWc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.71|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.013|GGnnzCA1oPnhvV539LfMYz5I2hdo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|224.0|0.72|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-51945-9|GGoz-MuthFTGmFMALy0ZZdo4mvoN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.075|203.7|0.562|12.32|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z2', 'Au']|['Z2']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|GGr0pp7UqZGs9YinvCo9fZfo0WHu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.0|0.75|17.66|['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['N-PDI']|bulk|https://doi.org/10.1039/c6ta03119f|GGyIi8CxxKg7nR5ibjqq3UojYwjf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|224.6|0.75|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|GGyg9Kwc41612CZ-X59UJ5qXM3sB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.0|0.733|16.7|['SLG', 'ITO', 'C60; PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; PCBM-60']|bulk|https://doi.org/10.1039/c8ta00816g|GH0zMcB9C5w0ICURmvhPzts2kFy_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.2|0.78|18.38|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Spiro-MeOTAD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900389|GH6Mb2wZtL4W9GuMvGLx9--MFiFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb3|Pb3CNH6I3|MAPb3I3||0.95|209.1|0.72|14.26|['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'Fullerenol']|bulk|https://doi.org/10.1021/acsami.6b04895|GHASAyEWoQWZNwXSeooTs5LgKclK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb3I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.88|168.5|0.425|6.28|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PtMePy', 'Au']|['PtMePy']|['SnO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2019.116248|GHHNTCEbk4dKIvbAAbXj2MYPOCGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PtMePy', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br250C250H1482I715N268Pb250|Pb250C250N268H1482I715Br250|FA0.072MA0.928PbBrI2.86||1.082|237.6|0.735|18.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|GHNbSHRMCzIqESlYwv_-3nBRPf81|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.072MA0.928PbBrI2.86. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|180.0|0.6|9.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'BaTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04642|GHPQChh6ZKwKoC7bGu-MJqbLNJcr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'BaTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|252.0|0.6559999999999999|17.07|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-K']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c7qm00319f|GHRk2jkjk6KLf2_4awz5CLVKV86X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||5.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|GHdwz7Y4kF0s2Vgm654SD4fqLtbc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|193.9|0.505|8.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|GHi9SMuAutTFONJq0Kuy_AkNBzSA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10Ge10H60I29N10|Ge10C10N10H60I29Br3|MAGeBr0.3I2.9||0.441|23.6|0.46|0.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|GHjwIx0UJNSzHBjXEc34B4WzzIjg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|32.0|0.43|1.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|GHyBu_o5k00NZJdZoAt2OWJaaD99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.5|0.68|14.05|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|GIIBINW6ixuieOOaqwK9ytl73Y-p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H18I6N2Pb2|Pb2C5N2H18I6|(TBA)0.1MA0.9PbI3||0.76|100.7|0.61|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7ta06735f|GILXwYwOVsJ56yHPxV75f_PtTvhk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.1MA0.9PbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.08|238.0|0.73|18.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|GIoC7OkZHnEufNr3hUni_dcVzIcH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|170.0|0.52|10.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|GIpvoS69MojkQqaOMDWx6LXQjJWq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.083|214.2|0.617|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|GIrC1nb6UZ1Qc2lsMzn8LXvaMo9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|179.8|0.665|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|GIuEpmrBlAj-iVO2F7rQHXZPUtmF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|154.1|0.52|7.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|GIvsuGtBFqY3Njx6-B6rwAXEFx87|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|84.7|0.52|4.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']|['HBZ-70']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|GJP4ud6SndJzep5KQ9buv1yRPRDV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|105.0|0.44|4.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|GJRXPwk9wVM62cmD_QK-xaaK4YVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|183.0|0.632|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00200a|GJS73bEaxxWtDpb__s7OUFV04ZFe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|58.0|0.54|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|GJXxotxipOQjYGpKyWdleQWJjFCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|168.0|0.536|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsenergylett.6b00116|GJaqFLnPgDdSMUskNY8zHWRjQVD9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|83.10000000000001|0.29|1.18|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.04.071|GJkRMMt-cVTJq27ovo8bbDrD3DIv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|1.6000001706098266|0.87|0.7000000000000001|0.254|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|GJueoMcv926VgQv9YyaSI8GwWfkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|224.6|0.7509999999999999|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|GK19SOd--fzbAqulxI4nTMxCjo7Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|GK67dpUoa5TtYrmMob1G33ji6haF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.112|224.1|0.77|19.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05484c|GKBd8E7Sr7C8vWFL_CE63VK_PO6t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.4|0.73|14.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|GKQ6zVcDjEwuBUZzIdeIpVV-10ui|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']|['TPB(2-TPTZ)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|GKSK778o_KGdSfQ2WIRvEVyS402U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|198.36|0.662|13.91|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|GKSzMEbv3mcIbc0fOslEwX4m0Vvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.04|204.2|0.484|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00243f|GKSzvjtcxZZIj6SJNXbRizX5I8ih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|190.0|0.583|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanocones']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|GKX2nENp0ZlIrrMrCd3Tl_CrqlC4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|162.0|0.7|11.7|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|GKduj81YT39XvEzyGLxmuqpMlZQa|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.053|205.0|0.64|13.8|['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/advs.201700463|GKjQ01oms6bUENQD4XXgTXH3jG4_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.5|0.807|16.04|['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['MoOx', 'PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|GKtqZEW3VBU4YkdByBslZjCDGrL7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H102I51N17Pb20|Cs3Pb20C17N17H102I51Br9|Cs0.15MA0.85PbBr0.45I2.55|1.710000182339252|1.09|131.6|0.73|10.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901863|GKvj6wFNb60CUdaHrZSMrzpm6NSR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|151.8|0.41|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPIE', 'Au']|['DPIE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.06.019|GKxLoxjHQ2uJrO1KPg_0WqI6Votz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|186.0|0.777|14.9|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.008|GL-TXAccdc331AWhM7aJ3Kx31RIx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.065|227.4|0.799|19.26|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201900198|GL6uAqF-mm0ccFyk74ysP-7lTcR_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.6500001759413832|0.78|160.3|0.63|7.91|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|GLB2C2GGRVvdavlEZFH_eo_XJeXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||0.972|228.3|0.4679999999999999|10.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2']|bulk|https://doi.org/10.1002/solr.201900224|GLETbxcpdLwHRTZ_j6b5TTSIpa3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|230.0|0.603|14.6|['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c']|bulk|https://doi.org/10.1039/c6cc04840d|GLKgYVKHEM3tJ5URU_1Budo1Fo3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2|40.0|0.635|0.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|GLLgQ1ikHH_H2-erdO_3pBvtRU8H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.18|226.7|0.76|20.33|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|GLPcTbvuauZscqWut0zXitjECl8M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.074|207.2|0.634|16.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|GLSHUHR1NfwhUnZKEtx7WMFPgJxx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.74|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|GLSKF6-bWyLvcOVDr8YzVVlpfTAk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.913|195.6|0.706|12.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.jallcom.2020.156329|GLStsH1kt7MrAQtuyVySYysQ9_35|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.36|72.1|0.58|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07694d|GLXi3V0gLip7QTOxkoY9VKkj4A5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|231.7|0.7|15.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601575|GLZquln6eT4dqLfu4xCPed--cJX4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.743|17.3|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|GL_d2FMKiPxi-W0bW2rrkmh1AhkX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.487|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|GLeKayH4IhlXXERg-HpKeIQA6hpm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.747|181.16|0.502|6.78|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|GLfuatU9xbWsf2pHieo4gAcL2bUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H39I13N8Sn4|Sn4C11N8H39I13|BA2FA3Sn4I13||0.55|169.20000000000002|0.596|5.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'LiF']|2D|https://doi.org/10.1021/acsenergylett.9b00954|GLrI-ekU7p3hwC2JIYUIt66XklSq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is BA2FA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.5|0.727|15.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-017-0159-z|GLtdFOvsi_Y1naI_ECdTms1IAZNG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|GLvqF8PHqCBcA5ds-3VIvdPAXVLy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|GLw9PiaINol_LzTK9iGdG1l36A10|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|174.8|0.743|14.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|GM36bmYm_p4kFvO5Gm3GfjoFv8cw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6170001724225558|1.04|203.0|0.68|14.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802139|GMCwFdLxu0hQqVVNoTfrjlmzXJ4z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3100001396867953|0.8029999999999999|244.0|0.7070000000000001|13.86|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|GMHHp_Dmuc7zreVCQB1KVPn8nFyp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.7|0.747|16.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|GMIeGXP8SiT9ao1Rw_4p4TZL0YQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|218.8|0.713|16.5|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|GMN2gZQFC6ugJ0B4anuxcxr_qTAz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.0|0.63|11.4|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|GMOT61afN3VuLMNkPTUrwr6PyOeI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|205.0|0.68|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|GMdOVNW7pkI9QptOr0Yqz2MoL8Fo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5920000000000001|2.0|0.27|0.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1016/j.solmat.2017.05.007|GMgfHbzTkQ7KuOixcUBjMZ8Dg_TP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|222.5|0.73|17.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|GMmG4lA28xT4jXWMHhij32HnDG35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|2.9200003113629327||||||['Unknown']|['Unknown']|bulk|https://doi.org/10.1002/solr.202200008|GMo7XwaxlsFpcdYAIyPIaT6Ao8CR|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|194.4|0.698|14.35|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|GMwk-k34DMa478ULYW8rXskSCry7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|0.17|55.2|0.228|0.22|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|GMxT_1wR4CQeMiSoZx2NNdmVi5MI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.11|109.8|0.59|7.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.11.011|GN8DiQBrFH54zEyOUpiCwe0Ig5OL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|189.0|0.68|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00450a|GN8b82j-zfM5ML66ueLzwZ_1BWIt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|198.0|0.54|11.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|GN9zOrh5ECEHZWvYka8y7PSOH04F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|182.0|0.6|10.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|GNI9gjV0B4e4otdw84XyuzcUtMkP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|171.1|0.69|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|GNJN8yYXOhMnkyua35ptXGhIR9Lk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C47Cs3H243I141N86Pb50|Cs3Pb50C47N86H243I141Br9|Cs0.06FA0.78MA0.16PbBr0.18I2.82||1.14|218.9|0.813|19.56|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|GNS2noReHBCIb2_045sFoQazVsvG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.18I2.82. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.8|0.49|8.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|GNTid2QNzEN7AbGptpwtVJKuQDo0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.5|0.677|13.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08992e|GNfyJ_kMB9YuSyDKnPKsWsALv8ri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C97Cs3H505I254N174Pb100|Cs3Pb100C97N174H505I254Br46|Cs0.03FA0.77MA0.2PbBr0.46I2.54|1.500000159946712|1.07|214.0|0.703|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06687-z|GNpWtfotw-E5MpojKamT1nOTV9lz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.77MA0.2PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.2|0.725|16.16|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|GNyvkhzZunvjN3FFyIm41zrM7Yy7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.4|0.72|14.43|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|GO-ssK_3rvN5sM75eflYxmfhNgdA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8740000000000001|200.0|0.51|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|GO8M2wmV8_9qpUFZI0uTzO_vKgaf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.1|43.7|0.58|2.79|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|GO90x5VqLcxRryYWj_n7O21ELRrd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|175.0|0.63|11.7|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|GOAlT50Fu-Pz7kYGmys4vFBvMcP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|||||6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra04311b|GOH7x2LjxepuzCxdH5ebVcEgB-6M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.4|0.65|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|GOeH-WoLfjU68ygv4eMl4CvflYUe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|143.0|0.34|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBP', 'Au']|['TBP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.005|GOjkI_SgT5h3XZ5ScgeQir_pGdyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.670000178074006|0.32|30.0|0.42|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI2.95F0.05', 'FTO', 'SLG']|['CsSnI2.95F0.05']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1149/06104.0361ecst|GOqEmEb4xJZskPnYzxUUionWjuJA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI2.95F0.05', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|127.0|0.629|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-np']|bulk|https://doi.org/10.1039/c4nr03366c|GP9dFKYwbWP3tT0MmyhjYQ-Q60pm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|171.9|0.72|11.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|GPCK4FoJflvfGDcoAlxdRymn7ZY9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.24|78.2|0.65|6.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|GPCZYOwcNB7MXQdHUoy927HJrZtl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|226.0|0.775|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01931a|GPMa-agYLKxFkF2Pz68c5mNHJb0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br6H12I3N3Sb2|Sb2N3H12I3Br6|(NH4)3Sb2Br6I3|2.660000283638837|0.67|2.0|0.436|0.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|GPREPUWl8qodiZicpuuThhDMPl1x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2Br6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.0|0.745|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.spmi.2017.12.015|GPRq57EMJt4GgrD4EUR7yzmu-YTL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|217.2|0.5770000000000001|11.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|GPat6vB6BTidi8JYTW7ienK7qbK7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|207.8|0.7170000000000001|16.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/coatings8110408|GPfqYuwhbRYtf9oSM8jqqi9ozWIU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|191.0|0.643|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|GPgFRokBfmd1D187ZlxCVFgFRxgc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.6|0.7|15.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09020f|GPjDHPB0Ehzxam6YSNUYE2WHjUx-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.137|50.3|0.748|4.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00335|GPtlsSWEGvj6CjTsh0RuxD5Vm7Gv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|163.0|0.56|6.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep25648|GPvEyxv-Jf8mPTwNwJjHwvRz15VF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|GPwI_TZ5Ak3pohu12TInpr8NZI_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.988|162.0|0.7390000000000001|13.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|GQ3DSeWC8j2iHm3HdFSAUHiWsfwR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.098|198.7|0.75|16.46|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PEO', 'Spiro-MeOTAD', 'Au']|['PEO', 'Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|GQ4lmUOper1d9GrhwV6MKH9wjE-c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PEO', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.067|182.4|0.551|10.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|GQKbiQ8Y5DiOKPOqxPz2LhNauWSx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|193.9|0.517|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|GQYNf3et1jJQ-IxPAFUz6tpvI84N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|231.0|0.7879999999999999|18.8|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PolyTPD']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9qm00112c|GQbtEwhahz7pfnwSJ_p03m6U1zal|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|234.0|0.727|18.8|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|GQePv85pIV38dO1r8dcrOsYSnffm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.807|222.2|0.5579999999999999|8.79|['SLG', 'ITO', 'ZnO-c', 'CsCO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Cs2CO3']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|GR4PsmPMfSdDaCG89Ew2E826StZe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CsCO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|166.4|0.4|2.82|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|GR8AmmhHyj6_xLCL_CwtN6f-_rGu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.7|0.76|18.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|GRBXuISqQc_D4ne-OfOMbhPiiGts|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C95Cs5H520I296N145Pb100|Cs5Pb100C95N145H520I296Br4|Cs0.05FA0.5MA0.45PbBr0.04I2.96||1.126|235.2|0.7659999999999999|20.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900217|GRIuOEu-IRSfp1WoYegBDCxIVc9N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.0|0.66|13.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|GRQfgbjXdyz6_E6YRyv7wPGaqTGM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.9|0.67|12.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|GRZG_ZJzG3IgeLU4dSGEF8P4Nit0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.6|0.562|11.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|GRdwnC0HicI3i7U35NGt0263bTeK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.0|0.6990000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00577b|GRmSv-gdlaynE-BGia-iImHhSX-l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06689b|GRmq1rcpKhcVj2STiD3qQ_KMb2Vg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|137.0|0.62|6.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500849|GSIQzgtnJTWDh8rnvJJugZbBlwiz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|175.0|0.421|7.52|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1088/1674-1056/27/1/018401|GSITsceqP5_MQPB5iMUz0R6ZY5Um|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.125|214.9|0.695|16.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|GSLH13J23Eu6ZOrE07-G4YM6s6-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.19|226.2|0.752|21.33|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201806095|GSlWog2JandnqAFG-PFV-NA-S02r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.84|0.05|0.18|0.8|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/pssa.201800894|GSnEwBOhovM8g_VWYyz0-hpgQOWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.5|0.61|11.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|GTAohbqsN9VDJj1YXBaowdf7Khnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|167.89999999999998|0.57|8.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6qm00248j|GTE4vOjgMUdgI175jOYVYPMaQEsZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|161.20000000000002|0.6559999999999999|11.01|['SLG', 'AZO', 'Cu@Ni-nw', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.8b09266|GTF8y3KGS_AU7R4Poa50UeTVP7M4|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Cu@Ni-nw', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|223.0|0.76|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|GTUD03fTRNJOWhHtwO3eAaVxnuhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.01|56.900000000000006|0.5489999999999999|3.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|GTUO-CPLOxmqGu_kHqBQS9Ggc5YP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.0|0.726|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|GTUWAIjCZdy0d_8aTOX4nqLhYI00|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.4|0.731|16.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800230|GTg4AwWkU4ps3TzLmnoq_cyvbnQ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|192.5|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|GToinzoCy-GPvEf9pmfBxhMRFgsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|GTp7qz_63Xi3hJQLdk0OYK3NzPsl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|207.0|0.7559999999999999|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2765082|GTzwBSwLUQDd4LVedPhpWf35mLKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|220.3|0.633|12.5|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1039/c9ta04043a|GU5HVMXL8yAjheuwalaYINkAJ63_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.7|0.55|9.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|GUCBxkL8OAgdt9UXv0cpJgbOqLyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.27|121.0|0.622|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|GUCk0tN1Gv39ewOM4uXuReKqgoIg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.063|188.11|0.766|15.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||GUE2PgVo13GFu-8a6AxTp3JprX3M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|128.0|0.43|3.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-016-1601-8|GUHMLUBKnfQL2gEV-sX9AZqHXYeq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|142.0|0.594|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|GUMdeRG9ZOFwSeinNC57hMy9KYG_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6CH5IN2Pb3|Pb3CN2H5IBr6|FAPb3Br6I||0.45|6.9|0.59|0.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s40580-017-0120-3|GUU2xLB_IBGZXt7pP48aHweYku2o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPb3Br6I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.14|237.1|0.804|21.74|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|GU_m5s8VcXRFgijAIo2gETqxsp95|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.092|216.8|0.685|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|GUcd4HVWoEr9sbi1VeZiJI71exyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8PbI3|1.500000159946712|1.03|195.1|0.721|14.47|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']|['PTAA']|['PDIN']|bulk|https://doi.org/10.1016/j.orgel.2017.10.028|GUjqfNCnyh5TS0vHPmgSUW1Zxh9S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|218.0|0.68|15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|GVGL8ipXOrtiOkycko71xn1Y6ZPO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|210.1|0.736|16.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|GVPU5mWVBK6k-g_QcpidCPrIBWQc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.7|0.733|17.55|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|GVXBJimpO8JqcxbUmJsLllsarnd0|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|197.2|0.758|15.87|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|GVcir2Y8tWWVEl8Q3VUN7SZBEkN9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|231.7|0.743|18.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Co(II)P', 'Au']|['Co(II)P']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|GViZE2Lv6qKEb_8zox0HGyyChmDO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Co(II)P', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|226.0|0.736|16.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706401|GVnQdEIaetkCjR6ARDEMKf0pp2uT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.3|172.5|0.66|3.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00085|GVvXeLnzVr5pnaVjqxg0jeDFMRVC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.4|0.71|13.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|GVwJ2cQBxwybtscIY86S3E0gnXI9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|123.8|0.597|7.3|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|GW-DOuvHw6Tl0nEmnoMaC0rwqYlR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|206.3|0.773|17.21|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|GW7kSSBGhgaC8d260DfpE0RTJEIU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|222.9|0.654|15.61|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|GW8W4QSSbF5oCzYcqGAfAK9TvRYC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.103|227.3|0.774|19.41|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|GWHhHvRwb-9Z3vZhGwMPLpCoCNKz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.08|200.0|0.72|16.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900474|GWKg60kiKgfsoa_tL5wjxL0_19sg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.01|190.9|0.71|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|GWWJFyxjgcRq8pof4TgMbTI1HrTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|201.7|0.62|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|GWWf8Mclt2Hd0UghPwUdmQWH8Ft0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2C19CsH114I58N19Pb19Sn|CsPb19SnC19N19H114I58Br2|Cs0.05MA0.95Pb0.95Sn0.05Br0.1I2.9||0.867|130.0|0.634|8.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|GWXoC2ZGBgT9DNgfz6vtQsMfH0kt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95Pb0.95Sn0.05Br0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.0|0.74|17.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|GWj4HPtGWllEncc3iHUdTDxL2fE_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C77H415I147N124Pb50|Pb50C77N124H415I147Br3|FA0.94MA0.6PbBr0.06I2.94||1.153|241.9|0.73|20.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aay9698|GWjI4qCj8jk4JjLLWFAwQYYfRxas|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.94MA0.6PbBr0.06I2.94. -Br75C1000H5024I2925N1976Pb1000|Pb1000C1000N1976H5024I2925Br75|FA0.976MA0.024PbBr0.075I2.925|1.5400001642119578|1.1|248.5|0.7190000000000001|19.65|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201700209|GWtKQhmrrRlC3U8UzchKfI-z54lx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.976MA0.024PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.778|152.0|0.68|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04904k|GX1iJX4abTZHN6JX4vBXW92LxecQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.4|0.69|13.6|['PET', 'ITO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np; Nb2O5']|bulk|https://doi.org/10.1039/c8ra01571f|GX39dDfbrhnMTYSm0bycsHeMCvoV|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.3|0.71|13.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2019.04.014|GX3SXyDQI1dGXY7KpHEDz1vGqjZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|199.0|0.43|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|GX477oY9m08loNBznOnRKkO73QSp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|86.0|0.64|6.62|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|GX9Q8pjMBIkjGlYiOejQHh1OKVf9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|129.8|0.368|3.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|GXAJY3mtknzhdjELdu-IJdAvjpNo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|16.9|0.33|0.3|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.055|GXb2md36Yld9IeQ5jfo1J3HD1R1d|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|96.7|0.6|2.56|['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']|['CuI']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s11082-018-1376-5|GXvtq4FXw1KVdGE6mB5WCGmd6Xg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|202.7|0.7170000000000001|13.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|GY-e9i8sOfaSXlHZE4jrIf4Wteqm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.132|95.9|0.629|7.02|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|GY05YaVqSuEhcHGTCS0ZSa_M75es|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.931|199.5|0.46|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.02.007|GY48w8Xak0XJaaNmQUGrijHCoDhu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.0|0.61|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|GYIILO1OQVbj7tddgNBsOTd_x1gf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|176.1|0.72|12.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['ITIC; PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|GYKmiD7FR1iz-PP-Vz-uG9wF1jYh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|142.10000000000002|0.364|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.206|GYO6aYtRA4KqPtJMr0ymI9aj2nR2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.0|0.66|13.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/nn5029828|GYUCtwpk0knNYLDye-NfiGM_Kqkp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C96H493I261N179Pb100|Pb100C96N179H493I261Br39|FA0.83MA0.13PbBr0.39I2.61||1.12|234.0|0.784|20.5|['SLG', 'ITO', 'SnO2-c', 'C9', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C9']|bulk|https://doi.org/10.1039/c8ee02172d|GYfvHIwqjXWOy8v3MrP_trGTsbSC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C9', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.13PbBr0.39I2.61. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.05|213.5|0.7440000000000001|16.67|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|GYqwEWFx8Hbqj9fI8JOMtLtXGXrm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.08|151.4|0.67|11.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|GYsTVjx5y8xOJ9CA9omnvhkDX10d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|137.0|0.63|8.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|GZDM00MN5AgPb1luzwrJSTUY8CX6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.096|230.0|0.73|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2019.04.021|GZZIwPrJ1sVJM0PK4zkqZlByO0c0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.98|171.0|0.78|13.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|GZ_9ns1ozc0yZXsNqrdiOct9ygls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|1.1|218.2|0.759|18.23|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.6b09656|GZayhbDm1GjABtfM2pS8FSRW587R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|210.3|0.66|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|GZbbjPsyvtDow56pRuG521Vu7RZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.07|187.0|0.78|15.61|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|GZcUv0q9PKpQMWW9BhjCyLkQlOqM|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||16.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|GZeH58p3qUZ-sP6SLJXN1vG5NVo-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C47Cs3H235I150N94Pb50|Cs3Pb50C47N94H235I150|Cs0.06FA0.94PbI3||1.07|231.0|0.742|18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b15867|GZf48Q311ACUwCn8BYqg-umAxgdD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.94PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|226.7|0.74|19.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|GZtgPxqxy638P3j1OUcjEkQIzRs0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.0|0.764|16.0|['SLG', 'ITO', 'PCT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PCT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|G_D7RKcoFBzSmr2FFHogPs0-5_iU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|211.2|0.73|13.93|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PDTSTTz-4', 'MoO3', 'Ag']|['PDTSTTz-4']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|G_EMwvVfOwoR9lEyejdSQ7IKncIX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PDTSTTz-4', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|196.0|0.426|7.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-017-2326-z|G_HWcBgawX9eUO0bbZf_f52JuwpK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|215.8|0.8190000000000001|19.62|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|G_V0L7W_YO6ew8FAsgGOYGMq-pz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|144.0|0.598|8.39|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|G_VB8c2inCUYljUuvQ7gK40Na2La|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.3|0.69|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00894e|G_XWN1sjnQO9tLZs9R4-odcLSOzt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.24|227.0|0.37|2.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']|['m-MTDATA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401991|G_iRUbd7JNEzM8EvDdCvNap2XIfu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|85.0|0.44|3.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|G_iXA6Vo21RBY788rYARaEwB4mvH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|190.0|0.68|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201606608|G_mXURhDOvAwm4mJU5kibuEP8S_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.72|215.7|0.73|11.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|G_tzXHlJtMQNPVxPUeu8CLmcOIaj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|217.0|0.65|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|GaBboEXtCTA_KzKWU1hcCSY5-ToN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|158.1|0.346|4.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.03.017|GaBu1ryIEDfJRsJLVFDDhnd8-buO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|196.7|0.66|14.07|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|GaKJB6sw_Jqql847qVU7Xxnz4lHn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.634|14.2|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1117/1.JPE.6.022002|GaPq288PHikOepEvLXmVky2unn73|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.936|213.0|0.63|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201501460|GaSJnDr31g1MRFUWrecYQhcPrr1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.0|0.634|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|GaZMXbOrMiKciWQ6ZUXyNIjeqImk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.944|208.2|0.498|9.79|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|GaZhpSAwGTUKxTDXf7iryQtgsBwd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.09|234.3|0.8|20.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|Ga_SjnSz6zQsqaZlfhvA2-L1lDrx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.05|196.0|0.71|15.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|GaaKh9LiMiBiT_dyZSOYTvFTEI4X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|201.9|0.6940000000000001|15.13|['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']|['NiO-c', 'FDA']|['PCBM-70']|bulk|https://doi.org/10.1039/c7nr08750k|GadFUeoQACCofYnt_5gsQyYB5Ncp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.0|0.7340000000000001|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|Gag4u7SNgpk-63i2YjuxCxgli2UM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|165.90999999999997|0.654|9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|Gap3XExcX7ZUgvIsut4wDQGldVXJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|96.7|0.432|3.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|GawoEvZhHcXim2WqZUB5zazZFnLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|175.0|0.74|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|GbBEaQS7NZXUQxSc-v9XEwkDLQNC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|134.0|0.52|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|GbGio7TsEmLo8q35mEjURRDdz0lk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C77H415I147N124Pb50|Pb50C77N124H415I147Br3|FA0.94MA0.6PbBr0.06I2.94||1.168|246.3|0.75|21.58|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Caffeine', 'Spiro-MeOTAD', 'Ag']|['Caffeine', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aay9698|GbKWDTFQ0w-4BVmgGdMnNWNXDZX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Caffeine', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.94MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|220.2|0.79|19.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.048|GbTKuuQ8GttCzvu1mCVVjV8eRr-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|214.7|0.74|16.24|['SLG', 'AZO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.09.095|GbVPqrJkVGmEwiHYr6lBYhF9faDJ|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|GbWm1YM3VRb45X3ruHpH80_S_wqE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|205.3|0.66|12.91|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1002/ppsc.201800137|GbcRK4WXyhOUbAUMM2kVEvbO6slf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.87|156.6|0.76|10.34|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|Gbfn2g4j8g8-KcBbhjAhNH69JYzE|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|219.1|0.547|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|GbhHXM4K1KVjBxB5gMbSGUpQBUrK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|164.20000000000002|0.723|12.36|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201501330|GbmdWEQhMdBlc-utMX3oBVpQvyJ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|173.1|0.662|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-016-5196-8|Gbmkbhg7Zig_LYJXTGa399joGhdd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.0|0.68|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502720a|GbopDd64DwWjqvcChT_YQ3vRs4QZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|160.0|0.56|9.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01444-4|GbxJknKoekw7gyHEs8gvuCGyecre|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|220.0|0.69|15.32|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['NiO-np']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ta09845b|Gc2MmpMFV15doVgLBvpiQT1MR-jz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.73|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|Gc93ZDsjq1AWCyynbS--pmAcdhyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.45|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|GcKL51-EA-IunkJF3F8Co8Pde4m1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.0|0.723|12.49|['SLG', 'ITO', 'DNA-CTMA', 'Perovskite', 'PCBM-60', 'Al']|['DNA-CTMA']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201600288|GcMN91gEf4YxnvVITNa33Hgr5vEx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DNA-CTMA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.78|17.8|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c8ta05639k|GcRkcN7JJlZQEV6zrLNnr8mP91ax|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.0|0.4|6.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|GcSszuDP_9tO73Y3d8xdF2KK43ZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|211.1|0.67|14.03|['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|GcUEUO2eux9h2QQCRNUY5BuvCzbn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|198.6|0.606|12.17|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|Gc_AK982UkGC6KQCc0tFoyGge2ru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSb|CSbNH6I3|MASbI3||0.513|4.65|0.4539999999999999|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|Gc_U40rmTWlbUUHWqN0G8YmDtC9v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MASbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|132.0|0.69|8.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Cu']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|Gc_c7lNQggPbSzSW6igUXDT8AvW1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.733|182.0|0.462|6.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en9050376|GckKI2T4lylL-o90rdotk9Mj85TR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|158.0|0.575|9.75|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'PEI', 'D-Sorbito; PEDOT:PSSl', 'Ag-nw', 'PET']|['NiO-np']|['PCBM-60', 'ZnO-np', 'PEI']|bulk|https://doi.org/10.1039/c6ee01555g|GcpfEq4IQ-wzQ1Ed7HRYIGgSnFH1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'PEI', 'D-Sorbito; PEDOT:PSSl', 'Ag-nw', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|193.1|0.75|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b01364|Gd2yezMD65yAF-scaGhStESfwfnO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C99H528I255N165Pb100|Pb100C99N165H528I255Br45|FA0.66MA0.33PbBr0.45I2.55||1.02|223.6|0.642|14.66|['SLG', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.010|GdEE9QwxnzrfTBn7xZLNzABysU99|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.66MA0.33PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|238.0|0.63|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.surfcoat.2018.12.069|GdInO4kBQNiev1KXS-vVJ43wx1nY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|213.4|0.763|15.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|GdMKEMz6J3zuIXUsYAs4QGNIQug8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|160.79999999999998|0.58|9.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01633j|GdXfFdJCSHrGtNU5mKriCAutUg1N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs2H517I249N183Pb100|Cs2Pb100C100N183H517I249Br51|Cs0.02FA0.83MA0.17PbBr0.51I2.49||1.09|177.0|0.62|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-00691-9|GdeFCdVM6zBVSGd3bBu1l0KzuvKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.83MA0.17PbBr0.51I2.49. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.300000245251625|0.62|23.4|0.46|0.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|GdeZ-DuTFOm6ZpgtgfHc_Z217q-S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|232.0|0.76|19.86|['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD:GD']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.008|GdelgezDXMMQ0BGstqmuS9PfYviz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD:GD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.3000001386204838|0.747|214.0|0.71|11.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7NR03507A|GdoXqvEnj6BCVw_QEMk5jKHJsL_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.011|225.9|0.78|17.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|Gdoy0J7NJOapoL-3piqe6gLWhhdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.0|0.74|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|GdscNAE65dbsu17kUZucYfHpTAlg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|211.1|0.6990000000000001|15.98|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|GeB9rR9G_3UWqRSv9m30puDPxQPi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|211.1|0.6709999999999999|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|GeQQS1e1MM-cW42S2bnk4SL60yWh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AV-Carbon; MAI']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|GeVCsndOZ-bKAO7M-2awjYYS55_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.81|159.0|0.53|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|GeXpodTlDk2K12P-do5fH8Uw5uT7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.8|17.6|['SLG', 'ITO', 'TPASB', 'Perovskite', 'PCBM-60', 'Al']|['TPASB']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|GehUrg3FOgSQY8ng2HjsL5sdZSk9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPASB', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb7Sn3|Cs3Pb7Sn3C7N14H35I30|Cs0.3FA0.7Pb0.7Sn0.3I3|1.3000001386204838|0.7|263.4|0.797|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800997|GeyAF4MHmNH7Lr3s9LqTtXR4wMPG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7Pb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|86.0|0.43|2.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.07.004|GfAc9JcY0qYBqCihyrGdylXB6M82|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br369C950Cs50H4873I2631N1777Pb1000|Cs50Pb1000C950N1777H4873I2631Br369|Cs0.05FA0.827MA0.123PbBr0.369I2.631||1.125|228.2|0.768|20.52|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201803587|GfGF1_9sG4oBMAawrpNFntSt0eax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.827MA0.123PbBr0.369I2.631. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58||1.12|228.0|0.772|20.2|['SLG', 'ITO', 'NiO-c', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|GfKI204DmIGDDuxu2rkWdStEFuUn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.109|219.5|0.741|18.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|GfKiua_55bO9Nila8zGReVw2jAXX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|148.11|0.642|9.41|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|GfKuceBXiLa8WSPyczCBQpDaOScP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|GfOpT3mYinTnAO0IeixiO4H4xSKQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.8|0.62|12.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-019-01561-0|GfQKbu6QNcxXvPuMPseJeYok1wK-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.3|0.743|18.78|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|GfQUsA1-k88Um59Lvpouckw7bUg8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|220.1|0.74|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201804419|GfXA6JGpM_nFIbYXmO4fM9341Cap|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.1|226.7|0.7290000000000001|18.18|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|Gf_Th6Zo3II3LjOR-j44jrhp25E_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.3|0.7|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5086692|GfhVlpRTdW9xCzwWUk77Ve6RP7vp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.6|0.65|13.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|GfhncJPzPn5LNIGp8xsS1PAskE-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.0|0.682|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|GfkDYsBuecZykGeGTyaXatrwqCCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.05|215.4|0.71|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|GftYPSwUo498Z3Eof0KaYLI92zOY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|178.1|0.6779999999999999|12.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.097|Gftoaz7H8etAo_Xkd0c79BXgxlOV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.68|12.9|['SLG', 'FTO', 'TiO2-c', 'BaSnO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'BaSnO3-mp']|bulk|https://doi.org/10.1039/c6ta09689a|GfxfNoWE6ZfEdAHp7MnkCiWyS0tZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'BaSnO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|212.3|0.6509999999999999|14.3|['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEBS']|bulk|https://doi.org/10.1021/acsami.7b00576|Gg1AlGlbm3CpLeMmOEfwLFl_OA3a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.11|224.19|0.773|19.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|Gg7Box17c1kbkDmhs69Ce73VOvXR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|2.0|0.2|0.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'P3HT; SWCNTs', 'PEDOT:PSS', 'Ni-grid']|['Spiro-MeOTAD', 'P3HT; SWCNTs', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-017-01842-4|GgEN4vxcgatMpz1x_P3VqfujMi3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'P3HT; SWCNTs', 'PEDOT:PSS', 'Ni-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.4|0.73|16.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|GgLd0CIM2hN084HLrGF_FxqlRlOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.04|133.0|0.509|7.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|GgR17j5cushbs69NPEHsTitRGtcq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.13|201.1|0.69|15.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9nr02777g|GgTy6r_n1tyXqForccSugaoG8uH4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.5|0.63|13.09|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01815|GgaoWDj9kU8N-Bu4sGHeN8JkNM99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.962|195.8|0.555|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']|['C12-silane-SAM', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc00128e|Ggh16VT-UcT7jiO24W05YabMiDwy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|201.0|0.619|11.54|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|Ggh3bUX01CZubmswEb1AFCazJjER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|120.0|0.58|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2013.11.053|GhJRtN7yIgVMJpCKf4Qg0miDQ4vP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|197.0|0.736|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201601711|GhM2JIoxuJPEwqm71Uak7ewBBqdR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.77|152.0|0.49|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|Ghi57BuCWmsN9o9g3aRohSXYNhuf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|168.2|0.35|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|GhpAiNjGG-W9CSNQ3tS10fbBT8bC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.85|282.0|0.75|16.8||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|GhwjL0pkUdIsZn3-gbbVSBgPWHvE|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|207.3|0.69|14.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|Gi6jwn2CNQnvyAlHMIPmeH0VkAmT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.0|0.72|18.0|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|Gi6wejl753fyK67XicPFlY358Kf_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|112.4|0.304|3.23|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|GiF5Hf0PStJa9J2fLbJ9KnIkTq3i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|166.20000000000002|0.731|13.16|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'PEI', 'Ag', 'Ta2O5']|['NiO-np']|['PCBM-60', 'Zr(acac)4', 'PEI']|bulk|https://doi.org/10.1002/adom.201801409|GiKzMJ7L9bGK4cdjEx9FLwyFNQQ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'PEI', 'Ag', 'Ta2O5']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|229.4|0.738|18.62|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|GiPQx599Y7XTWoad5idhzpRS3auh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.4|0.76|16.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen', 'Cs2CO3']|bulk|https://doi.org/10.1021/acsami.7b06681|GiPUX56jgxWOtipKMtU7baUsVPWC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49|||||15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.02.052|GicjPF8NT6rCzdH77jMg_TtM1gbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|217.2|0.77|18.05|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['P3CT-N']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta06439g|GjRy_Pe6sHfnKECRivmycGQBGcwr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.67|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|GjW_E1TOYufeVhlP2mcMd7TYktW0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|203.0|0.654|10.85|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|Gj_6WTTd4fQeiERlBeSRgcYZHQ2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|237.1|0.747|19.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee01500g|Gji-jIe9pXVbe5HdwSTiz2OJCQLP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.272|78.5|0.67|6.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|GjjPCCOKzFeN5CYaMZ6bxGhbGZbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00013|Gk2kbhlbm_ToBgy6Ggc2bOhZBRrM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|172.89999999999998|0.71|10.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|Gk3AW7UBNVlrfi5H4ryJeWekl3tO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.8|0.742|16.67|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900041|Gk90DQvY7g8CKVrReGShjCRUkXYz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|198.5|0.6990000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra05718g|GkBXA8o8LIqzrKj0pWom17OBzHch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|182.0|0.44|2.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201601186|GkcK97GO6PUk_HnMU2k1bElUr_kD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.62|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|GkdrMuPPhl_7M3xWUJalIFaUMBRG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|221.8|0.75|17.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201800258|GkeT5tpTUA5Jtu5anPJvoXMXoqBD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|117.0|0.624|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|GkgGs4D_Xf9bJfMe4-oCYkjYH-Fc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.974|186.0|0.743|13.46|['SLG', 'Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/aad71c|Gkhp_Gwq_tV7ZSJvHS-7SPGxjKJ7|a perovskite solar cell with the following device stack: ['SLG', 'Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|210.0|0.66|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|Gki1A32YCxRUi_KHT1s3WXLN5ZYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.85|167.8|0.62|8.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|GkmXxqOVj-lrGua2gdqwuUG8K11-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br3C4CsH20I2N8Pb5|CsPb5C4N8H20I2Br3|Cs0.2FA0.8PbBr0.6I0.4|1.930000205798103||||6.25||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|Gko36MTDLq8GAqGI9pUeKOnBJmLG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I0.4. -CH6I3NPb|PbCNH6I3|MAPbI3||0.82|136.0|0.23|2.6|['SLG', 'ITO', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60']|bulk|https://doi.org/10.1039/c9ta09838k|GktlukGlSuplBBzm8xlyVxRAyRTP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|188.5|0.6609999999999999|11.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1007/s13204-018-0836-3|GkuP-3SlTkzXevjsKUTQYgoPbrUX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|185.2|0.7|14.26|['SLG', 'FTO', 'TiO2-c', 'NaYF4-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b04760|Gl-FXh-X5LiSuOtEN3cZfz8UN5VJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|176.0|0.542|9.71|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['LiMgNiO']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms15330|Gl-k8Ie1jmqLseP-r46yAySDsw6R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.677|90.0|0.62|3.8|['SLG', 'FTO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1021/jz500645n|Gl2zp-AVh4qZuEbMkFOn0zgC-xxz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|170.7|0.67|11.09|['PET', 'ITO', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']|['VB-DAAF']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b09012|GlBTVOyRVeIatW_KWMxl55f3B99c|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|GlBZ3dkYNPbefE9k3_9w-7uzam8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.129|220.1|0.769|19.08|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|GlHHPP6GoYnORgqkJirKUu1lS6zO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br33C100H556I267N144Pb100|Pb100C100N144H556I267Br33|FA0.44MA0.56PbBr0.33I2.67|1.6200001727424491|1.02|191.6|0.773|15.14|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900050|GlItVGxydO1AYKDS_jYpyXBQkWoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.44MA0.56PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.0|0.69|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40820-017-0140-x|GlStobEjpxDyGPPgzNIyk-ebNP_2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||1.116|229.9|0.737|18.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201800500|GlXw8_X60Se31BzRuWDbgICuiOVn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.8140000000000001|19.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['TPA-3CN', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b15130|GlfjFxJtW5j-YytCelr393hJL8sS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|208.0|0.7290000000000001|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|GlnxvoCucAqRdJakepNsu19Rlo-t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|218.0|0.541|9.56|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4ta06416j|Glp-nXQOOmvL_htduLv_mMeoRHDW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53|1.5900001695435149|1.05|194.0|0.637|13.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2020.110517|GlsvM4nhLAYnenLB4imF4SVAP20F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.1|0.7959999999999999|19.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|GlxEyHuR0liuuaMmOZOA5IBfNsm8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|70.5|0.47|3.58|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c5ta01200g|Gm7xVMVfNGTDd3SO3CrOCckqEqkH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|||||17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700740|GmDCsQRYbmO7i4KxZ_bgTkw62_fO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|182.4|0.662|11.99|['SLG', 'ITO', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|GmGMEgRJso7Mb3VNjXDPSiqHvE8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|221.8|0.6829999999999999|16.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-c', 'NiO']|bulk|https://doi.org/10.1039/c8tc04475a|GmQSn8GF_iOdHOHAprgK55GzJfuo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|215.0|0.679|14.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTZ-TPA', 'Au']|['PTZ-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10677g|GmW4tdxhpjOL2UDB66z_dR1t8ut-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTZ-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.954|175.10000000000002|0.3939999999999999|6.59|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Hexamethyl-substituted subphthalocyanine', 'Au']|['Hexamethyl-substituted subphthalocyanine']|['SnO2-np']|bulk|https://doi.org/10.1098/rsos.180617|Gm_4XgnFjyidpffmqy45AZeH85uR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Hexamethyl-substituted subphthalocyanine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|GmardkI_GydGtXKaO-Yf42eKSrtx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee01624f|GmjSn9Gj1XaArFO28KqN1pu7PLvq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|161.0|0.52|7.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|Gmp7kNfo0hmDqU8E1BiRomBwA_OD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|207.0|0.69|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.12.025|GmrxgQ04P3qpN9w_TrbAi3aJdu4I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C20CsH110I30N30Pb20|CsPb20C20N30H110I30Br30|Cs0.05FA0.5MA0.5PbBr1.5I1.5||1.08|198.1|0.773|16.53|['SLG', 'ITO', 'NiO-np', '2,2’-BiPy', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np', '2,2’-BiPy']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.synthmet.2019.116197|GnY9o7xttwCA186svYf4x8O1a--I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', '2,2’-BiPy', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.5MA0.5PbBr1.5I1.5. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.8|2.91|0.255|0.059|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|GnZBLgxcOsid9wefFd5TuBoit2Ho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|0.95|234.2|0.6779999999999999|15.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|Gnb2mErQY4tgr_WRIldrlAz1GFKd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.069|84.1|0.49|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|Gnbr4Ct50-H_sHeaa4mKuT7EaGol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']? The composition of the perovskite layer is MAPbBr3. -CsI3Pb|CsPbI3|CsPbI3||0.985|121.0|0.6970000000000001|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02594|GncaDbiHZysWKwoqP3rby43sPJT9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.77|269.0|0.8059999999999999|16.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/adma.201907058|GniRcDlEhHYZF7Qfb4LwIOuX_ZT3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||1.008|193.9|0.6679999999999999|12.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|Go-GZyrGImMIL6hCf5uVNr-cUy2d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.16|137.10000000000002|0.774|12.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|Go8m-YD0_XlLuxaXYVIRaOFzXUcP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br27C50H285I123N65Pb50|Pb50C50N65H285I123Br27|FA0.3MA0.7PbBr0.54I2.46||1.09|205.3|0.778|15.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|GoFnlCo_qBySMFXFX6iYDLlKKOWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|121.7|0.59|5.45|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.10.023|GoLpuIgMpM2OOkEBQCVUct-UFmhn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.2|0.706|17.0|['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['MoO3', 'TPTPA']|['C60', 'TmTyPB']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|GoNG4dDs-802TDLd7NmfwtprVehw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.11|238.5|0.7709999999999999|20.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|GoT4jxnbrOA0mPuGYGGwNEeOCABc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|194.7|0.69|13.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|GoTpi1WeIvsW168xROv0JCMNhK-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.0|0.78|15.3|['SLG', 'SWCNTs-HNO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|GoV9G3AYeIv1tBFVIS3p-fLnHp86|a perovskite solar cell with the following device stack: ['SLG', 'SWCNTs-HNO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.04|208.5|0.732|15.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|GoVdT6xiAuzbFkp1yZcBWYcgmARH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|121.7|0.61|7.38|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1149/07202.0275ecst|GoapaSQ1qP2YuKjnqJeZYfw9TXdP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.02|201.5|0.639|13.14|['SLG', 'FTO', 'BaCoF4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BaCoF4']|bulk|https://doi.org/10.1021/acs.jpcc.9b04502|GocBTwIu1Gy4fvsaaJnPYTN09fSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaCoF4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|210.0|0.54|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|Gp-bf8bR72jWFlqNDOLcmHeSDSHi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|123.0|0.809|8.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.cej.2019.04.192|Gp1GSvIL4ZmrLix2-9HLMgKd9BLX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|188.0|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|GpCoxT68P64mbV-9en4NT_zoHI0H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.06|226.0|0.76|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703392|GpNbozWwJci4AoEEBUnOlBa23zFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.986|172.10000000000002|0.41|6.96|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Hexamethyl-substituted subphthalocyanine', 'Au']|['Hexamethyl-substituted subphthalocyanine']|['SnO2-np']|bulk|https://doi.org/10.1098/rsos.180617|Gp_8fBeVefdmOjq-uyWzZQrebvJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Hexamethyl-substituted subphthalocyanine', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.9|213.7|0.757|14.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|Gq22XSsNqcSpwbYAhzUu9ck6MPD0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.047|205.8|0.52|11.2|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|GqF78zW5PUONU781ivcgmMyq2Z5V|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.982|202.6|0.69|13.74|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|GqMaxTF3Cv-HcXqdDx9iYLZpbKq6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|202.9|0.7|13.33|['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|GqXe0459r88wWiRCUneR-b7FB-zm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.11|224.0|0.79|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|Gqc3Lecyf2R6PNtDo3N_uTOeyCXL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|212.7|0.7|15.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|Gqofv9MwAvJhwPaRLtEyH2Qp1dLm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.77|196.0|0.49|7.43|['SLG', 'Ag', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|not processed|https://doi.org/10.1002/cssc.201903038|GrD-5ff4sVfCUL0AlzCQXppn0PtP|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.13|229.0|0.81|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD', 'Spiro-MeOTAD', 'Au']|['PTPD', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|GrOc3WjR6i0TVoWc5Bl1x4susp0x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.6829999999999999|16.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807544|GrYTvhx09D4jmiVBMNYAFGmYX_Ra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||0.62|168.0|0.5|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700740|Gr_o18rlbRWinpw5--su4b3ZxNa7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|199.0|0.64|13.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802139|GrdDiQ6_sS4efFHG_7poiC5OWkY8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.3|0.6|11.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|Gri7_NwpDWzm9cMmirW-IQuMamXH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.09|228.0|0.728|18.09|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|GrlMm84FIei_wCeutdr8p36AVtAw|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|82.0|0.35|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201600581|Grvay3FexuYYZpDjlMzKTZy_wlSi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.765|187.0|0.5479999999999999|7.38|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|GrwwVbjk7aPOJlvQZeEddzaOG5c3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.44|75.6|0.767|8.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|GrzIfXQoItPlyWvsA1Vcn48dOWzy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.1|238.0|0.79|20.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02526j|Gs1x0QcU1WWYUMMvQtF6RQ-ZJJRb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.62|0.8|0.7559999999999999|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|Gs5ANB4MlNuQx4UxQa7X0fPgRgdg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|122.0|0.56|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Metal']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.09.046|Gs5k5PnuwOe_V7yQgRbLny6sdQ0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|82.0|0.5|2.6|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']|['PEDOT:PSS', 'PolyTPD']|['none']|bulk|https://doi.org/10.1002/aenm.201400345|GsCidz7F80ImUl1NKvfHiHtmp14h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|57.400000000000006|0.48|2.79|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'P3HT', 'FTO', 'SLG']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201900157|GsT_e5Xn8x8In6A5LP0HmZFXKXda|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'P3HT', 'FTO', 'SLG']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|153.0|0.6829999999999999|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00480|GsYrHXTOE0BDBIONzUqZP-PNHOzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|198.71|0.727|14.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|GskZCpkhpp3khfsi6pZKermyv9bB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ph500255t|Gsw9lnudaEO2vt8LkQQNH0TMAUCo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|156.2|0.7|11.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.01.006|Gt73kpXMd-fqRJQKrKSdFpVbzpyD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.04|208.5|0.64|13.75|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|Gt9cWcUEY_A9Vxt2k0zp3pSM6dbg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|186.03000000000003|0.38|4.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/lsa.2016.243|GtFVWYCz7gfaveq0EdjzQDBffK96|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I51N37Pb9|Pb9C20N37H103I51|FA0.85MA0.15Pb0.45I2.55||1.145|209.2|0.62|14.86|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.04.017|GtGxEPsiLJV2xSxZN-ISM_nlGAoW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|227.1|0.789|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|GtH_Xk_yNWuNV8oUyQyNPO49mEdF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.3|0.7959999999999999|17.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8cp00563j|GtLFEsv861-jmx3i0BdRqD0_6OKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.08|220.1|0.6809999999999999|16.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00457|GtLY7Egp69Tc8Sd_EsVOBke8ab33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.831|101.0|0.47|3.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|GtO8PbT9ErM9e43ybt_WwZfolTwf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|231.6|0.7090000000000001|17.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.orglett.9b00988|GtVJ1R4ypNn3T2BpPt8zR5qYzx5T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.09|223.1|0.763|18.55|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900482|GtWc5Twm7QFRYhobMTLgR6GgdRhy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.123|209.95|0.606|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700576|GttRHBgnSO2ygcSjq_gF7A2d3Fh-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|222.3|0.56|12.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201700878|GtwiH5USoTqrg6y3Fvut8udE6wsJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.374|168.79999999999998|0.272|1.72|['Mica', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b09166|Gu0t0eFN6rYmoCsxmpVX_87gYfya|a perovskite solar cell with the following device stack: ['Mica', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.98|225.0|0.76|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|Gu2shp81TF9eRvaRoyHTBmiaY2y5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|194.2|0.356|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DNA', 'Au']|['DNA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|GuCLMhRrR1BctGZPLaiRLbyMedr3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DNA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C90Cs10H459I283N171Pb100|Cs10Pb100C90N171H459I283Br17|Cs0.1FA0.81MA0.09PbBr0.17I2.83||1.051|236.2|0.779|19.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b23495|GuH1EBlsHXvpPQjCq-HU_2xnLrjG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.81MA0.09PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|118.0|0.58|4.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3nr01542d|GuKXT8SYtahpqj_GODx4QaEeEFcj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201605668|GuLwGLtM-hvig-TpcauRF248pfAL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.65|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b07216|GuPII-5ozAHdMcUVUzvAgAhIgjFF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.400000255914739|0.85|21.5|0.6|1.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201501978|GuglpJsk7ZYgFzbH2KutAeggK_A6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|222.4|0.77|17.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|GuhH6hzWPCReo5ExhB-AoHFwEpKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.3|0.73|17.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|GuywCZ4k6TYZ_arywtCtBXPkFODj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.072|221.6|0.78|18.62|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|Gv8ZWA6RHNT5uKEQPxCLXc9n483z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|1.189|168.46|0.722|14.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1002/aenm.201803258|GvEjGTQM2Y-ihukN3FKd6rEv5uST|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -C21H54I19N7Pb6|Pb6C21N7H54I19|(PEA)2MA5Pb6I19|1.6000001706098266|1.01|143.7|0.747|10.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2018.11.019|GvM8MarCMALmi72nCquwz7POyRJz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|241.3|0.73|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|GvMt_UsmWlmjj8vLB30dWvibTqHe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|152.89999999999998|0.575|8.58|['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']|['Si-OMeTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta09716f|GvUMFl6iQL0YVZDYWWxMM6XOlztz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.91|97.5|0.43|3.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11540|GvdIGNtssemcoo3ua67cjEirfRnK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.745|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|GvfYVzkEG51IhpkmfhqQi-VOSQS8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|184.0|0.71|13.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep38670|GvsqlPh0-FlsHJZkvE92Aj_f2f9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|228.0|0.742|16.68|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-BPy', 'BCP', 'Ag']|['NiO-c']|['C60-BPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|Gw2kSdAGDep9njjqOOaHp_vRCAqV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-BPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.6|0.76|18.78|['SLG', 'ITO', 'TPL', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TPL']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|GwZ9yNOIc-hccSSpVRJmHWkFwf5y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPL', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|195.4|0.768|14.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|GwdPu__FHYinXC79GB0FGr_FOROK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|190.7|0.73|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|GweMSLRYJKHB2hLgs9-JF7qvIZwY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.0|0.7440000000000001|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|GwfAFzdquVt-PNz1zdRhqr461tEe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|152.0|0.56|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01924|GwhWHly6uXiIQZ-BD0kHn2JBXgeD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5650001668777365|1.06|223.6|0.7|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|GwlFmXqnZ-eYy9APK0-kqaVlXwvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.1|0.73|18.05|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02071j|GwqSRAkFGLFZKQAx5-JHtxaf4cU5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.019|9.86|0.69|12.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|GwtcyB4x9w8YTggOsQSEv2lrNBjM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.12|84.2|0.52|4.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|GwyvTPZH61uOVK4_cJ8yjpUWb-AD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|||||16.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.014|Gx4hjkhi82Bv5iaDx9ku_x2KBxnO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|167.0|0.7|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc00858a|GxDXKlhLk9g1wR2qv_z_n6b-15o7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625||||4.95|['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|GxN2wfNlB-xE2N7daOW4uk1gTsjg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.2|0.79|16.42|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|GxPK5Szxe41J2bHvtj-ODvktKv6b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|207.1|0.763|15.2|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|GxPiQQV7_oDf0cdonRe8h5XFGfH2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01730k|GxUg_Ixhw307brmXflDa89CCOfdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|179.5|0.72|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01200g|GxXi66mBUwJxtShzCcDXW7L8mAeh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.5|0.782|17.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|GxaOXWDZc7LMRa5M3-8uZwDqWgEs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.127|232.0|0.742|19.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|GxfsW9URWho-UgnPzR-Oabqyd0uB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|103.4|0.579|6.41|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01389a|GxiTle27o7vuNDQk9tQmTjqGmZ3C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|223.0|0.74|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr00180d|GxjF3E0HQBt-5e1eWlXZwRE-DBa0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|103.6|0.534|5.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12221|Gy2dEt70upSP_4UdUtBezCCWTU6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chlorde', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|Gy6Df7nH2Iwk1gno3f4mT1rMs94M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|165.0|0.57|8.2|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|GyEEQhEkHlPooy6a896dxK9enTga|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|226.0|0.782|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.05.011|GyLph0gUkGnltbPUuI9otu5HflBd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|230.4|0.75|19.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01452g|GyOMdA5gQw6CYCpKGO57OtFzWMDd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.0|0.71|14.81|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.017|GyWJ0Dz2965o3bZD6hWzCu5lumiS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.0|0.741|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/advs.201600027|GyWMkKTa71S5f1pB5IkIQrYoZlLx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.0|0.65|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/1347-4065/ab241c|Gy_4OGY0iQiM-f-czhJCPcgvsCim|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|110.0|0.373|4.02|['SLG', 'ITO', 'PEIE', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941218|GybbeMeeBQb9fAlWqlks96DE9JTb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|167.0|0.703|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01563d|GyixcbfttYa6rmIXvzQwUxerNCXM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.2|0.71|15.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA01824B|GykmoILlvjpajDZ473LA6ZW8ai2X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|158.0|0.67|9.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.06.020|GypuAxTyzLvgiBwp79vCg8iEmkD_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.086|246.9|0.6990000000000001|18.75|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5108656|Gz3lq-hpqYqNVUXdh5E1Wp2bPVbj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.093|228.6|0.77|19.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.07.106|GzAWSnhNG6gGlDLbY3p3uveWORvA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07876a|GzEAbgABOa30Onz6g46CYzjiJV4t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.043|153.0|0.6990000000000001|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|GzURbfX4lkr9BExX5oJ4Ymp_Xk4_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.2|0.674|15.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b08384|GzVMCUJNq8Dtmib5oIFdnRF-IN01|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H20I4N2Pb|PbC14N2H20I4|(BZA)2PbI4|2.1800002324558885|0.62|5.8|0.33|0.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acs.chemmater.6b03054|Gznh7L7dr1TYgFl4Sjh2RMpWTz2y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (BZA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|175.0|0.652|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|GztM4c0hNkUV14zkSa5GjR1wLxuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.4|0.79|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|GzzJ38Oe2CGl2xkuPrR_9681BHz2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.789|149.1|0.637|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|H-GyhGQfec6Sblqe-cd8G3gwtKNc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|137.10000000000002|0.55|6.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNDI20D-TT', 'ZnO', 'Al']|['PEDOT:PSS']|['PNDI20D-TT', 'ZnO']|bulk|https://doi.org/10.1021/am506785k|H-Y8tmw0KhtFMhk5Zi_W9sV4zf8a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNDI20D-TT', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||1.01|199.0|0.64|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|H-dxWovpj8BdHzGo_Ar4uYiC-1L2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.1|224.9|0.72|17.75|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|H-m18fVXY5t9SjoLcwzLvVbA-UdE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -C15H69I30N10Sn10|Sn10C15N10H69I30|HA0.1MA0.9SnI3|1.3000001386204838|0.1|39.0|0.33|0.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta07699e|H-vfcEVE9Hs4o8lPxXDg_YSzukSk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is HA0.1MA0.9SnI3. -BrC4H20I11N8Pb4|Pb4C4N8H20I11Br|FAPbBr0.25I2.75||1.03|217.0|0.754|16.5|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|H-w1q4uXzVocuIQ9oEppEIZm-kzY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.5|0.71|14.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|H00aPMr2o27yAll9cilWUgCa2GIz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|198.7|0.61|11.27|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|H0M-hr0h1qaF2boFOeY5cbky7vgl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|229.0|0.7|15.9|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|H0NiDS1sS69FNSspzJEJEQCXePkj|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.0|0.5820000000000001|12.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2015.09.054|H0O4pNNAiBgQbh0JVgx9osr9c9mU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.0|0.7959999999999999|19.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902021|H0TVnUDy_G14_mYxRi3rzcgqq2Km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.56|206.0|0.5710000000000001|6.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|H0iC7gbx_PdrWUvSs8yC_3fk_0-d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|169.89999999999998|0.66|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja504539w|H0oP9pHsvV0CxsGywNnzlSnoZyJu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.71|12.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00739b|H0y0GjVmdh1IO0l7VAcQMgUscYL5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.0|0.7120000000000001|16.2|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|H0yAuTX9KKJYEBmRXZGSSNgp0rTw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.4|0.82|20.1|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-mp', 'ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|H17809yZVwnHyHhQzuAG9BO4a8D7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|236.9|0.7240000000000001|17.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|H1E-2eaegW40uBmS1PnJRqbPa1Mj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|153.0|0.573|7.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|H1JslRsQHjsRQ_ePyW4WKB4nUEH0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.8|185.8|0.71|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9TA08177A|H1eIACP4ihSb0U5qRR-nAKy0OXsM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.66|110.4|0.65|4.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsomega.7b00814|H1f1N1VZIKc9Pv0ag0W8iM3yDV4K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|219.4|0.64|14.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15563|H1r6ogI8YA761AwfFHHJdpIDswMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|170.10000000000002|0.503|7.7|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|H203zi0iN0aRhQrNK4lmN6ntO_HD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.03|215.5|0.69|15.2|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M110', 'Au']|['M110']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|H21AgxB-Cuer2dnr5601_qbf95lB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M110', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.62|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA04385E|H24D2-S9H016cc-Ocx45mwCrcaYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|138.7|0.59|6.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|H2Nr4dP10570vwNb3uEnAZ92aN7f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|182.2|0.6759999999999999|11.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|H2RWsrpvjFeE2x1YKEoyp2RO-hkC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|149.5|0.696|11.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01859|H2ZpvtIbvrjhTuWZAliJ_EXh8o5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7|1.5500001652782691|1.027|212.0|0.76|16.1|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/smll.201702775|H2ca6U-65K4mNl1Fzdv0ei6d4eSV|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.0|144.0|||['SLG', 'ITO', 'Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']|['Ni-acetate']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|H2dnYdu8wU1sR4xz4GuBoWfgT_bA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.1740000000000002|217.0|0.75|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|H2gEb0oUZ6rnlKUSzr7aoBw5Wx8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|167.89999999999998|0.7959999999999999|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|H2ngYS3IiR5Rh6I1h3W-1GZcl_2b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs5H497I249N175Pb100|Cs5Pb100C96N175H497I249Br51|Cs0.05FA0.79MA0.17PbBr0.51I2.49||1.102|224.1|0.7759999999999999|19.15|['SLG', 'ITO', 'PTAA', 'TFPPy-ETTA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'TFPPy-ETTA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta02956d|H2ppAPEX_i03f57gfUQGe-6teofx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'TFPPy-ETTA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|169.7|0.63|9.77|['SLG', 'ITO', 'CPEPh-Na', 'Perovskite', 'PCBM-60', 'Al']|['CPEPh-Na']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms8348|H35UfDIszTKBfbjpVn9uMGuVGGTq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPEPh-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsIPb|CsPbIBr|CsPbBrI|1.760000187670809|1.2|184.7|0.794|17.68|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1002/adma.201905143|H3ABeiyjcp4PKfWhP_K-eYTYjX6Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.5|226.0|0.69|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']|['Al2O3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|H3IHKVzKVIaUIaguajMuf5EwGEqr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|176.6|0.72|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|H3P4B_iKG5xMODtIEejRWztTdVwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|175.9|0.575|10.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.01.010|H3YMIik_bLKhncgO0214fyt7SUnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|221.7|0.782|18.1|['SLG', 'ITO', 'NiO-c', '1bb', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', '1bb']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|H3aqg0i2zVGMQuC9bFsVz-9QSCYF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', '1bb', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.137|188.0|0.615|13.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|H3ct6lsDDLytE9e2fegy4iXA9K_h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.599000170503195|0.88|165.9|0.441|5.82|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b14023|H3i2AkS9DY8cMiigYFppwJu_PqYM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|211.8|0.7|18.06|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s40843-018-9305-6|H3mMXqzuy-dFg45ctVxf_yjhKeAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|184.6|0.59|11.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|H3ntc1mhIM1RES0qAXonIQnBVYXE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|177.60000000000002|0.552|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c4ta05352d|H3qAKlpelufpnfNXnKPcQZUoW-AV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br27C180Cs20H900I573N360Pb200|Cs20Pb200C180N360H900I573Br27|Cs0.1FA0.9PbBr0.135I2.865||1.025|206.0|0.7759999999999999|16.3|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|H3z9VVfEKMXZiZOefbdRTr-4EggW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.135I2.865. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3|1.3200001407531068|0.81|229.4|0.75|12.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.061|H4Gsvi1zlKxA1rV3HAXGmSSok5QF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.8|0.57|11.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.06.069|H4LzJo2QB-yqWnsUszD2q7CEjh8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.09|230.9|0.6920000000000001|16.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ME6Bu-ZnPc', 'Ag']|['Me6-ZnPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900182|H4Tn0SLfgXhEQp-TX1pY5exIfKkt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ME6Bu-ZnPc', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|107.9|0.52|5.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra25149h|H4XToZGGrtioLiWPOpEavLi4o15T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.98|164.8|0.604|9.68|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|H4Xop1rLAcEeUzVc32d3-sh7ygHt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|236.0|0.787|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900397|H4ZlvDYb0N6r0MvgJSPiFv6DkZ_v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|178.4|0.6759999999999999|11.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(4-phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-methoxyphenyl)-phenylamine', 'Au']|['4-(4-phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-methoxyphenyl)-phenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc02211d|H4ccUkV97RPOuW9UQhUTjCxANBE7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(4-phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-methoxyphenyl)-phenylamine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|152.10000000000002|0.48|7.14|['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70']|bulk|https://doi.org/10.1039/c7ta10366b|H4myD7DDVRBRiPDgzUygMwfcDcR3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|83.80000000000001|0.425|1.96|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|H4pTpJYWaqZk0ZugXGy7NfsvK-0b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.5|0.578|11.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|H4rxZyKOjc8ZiNazg5brNjveJmzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.76|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|H4zIZ2eILimrJTd8iLaVGt8f-d4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.2|0.648|12.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|H5A5EOk73RYjA43h3ovLKHzWfo6f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|||||17.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PDMS', 'CuSCN', 'Au']|['PDMS', 'CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b16194|H5K__4liybyl5D78ovTVegyWoTV1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PDMS', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.2|0.74|15.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.084|H5Nk6g4TWmxoIkzae58fq16uLici|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|200.0|0.733|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|H5QPrHfwKO8KQMyWD0TYIg3aUkr8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.07|114.0|0.72|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']|['X25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|H5flCHnYyFdATBI2vfOVBFsagkmy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|128.7|0.58|7.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|H5i_mJskr5PcXI7UJF5tJJfFcfUf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|160.10000000000002|0.507|8.29|['SLG', 'ITO', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['C60']|bulk|https://doi.org/10.1002/adma.201601505|H5kTBmrgnBl-pa8449lqOagnoxm2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|220.0|0.685|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr08295b|H5mnr1-3Bh26gx__ApUbcYHxmdgX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|280.0|0.735|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153076|H5nNf08oV3V0BqucDR2px3g3ZZZo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|183.1|0.602|9.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOT.2016.2608619|H5sy1rAhP90DTQBuzOBdfbW-3wF8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.13|222.5|0.755|18.98|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|H5tTEBNM2vYWPYlT5IDU68sBODRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|218.0|0.8|18.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|H60l-q5OUJxT2cobZVqGYNxykhiG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|207.9|0.7140000000000001|16.18|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|H62lMqBTsua3NHfipbxsxOWCN6lN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.4|0.75|14.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|H66KDoCswwKiOke7Vpox3F1FrqD_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.34|94.1|0.36|4.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3389/fmats.2019.00330|H681FDpkdQgql3C7DNvHk-rVFTlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|192.0|0.71|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'C60-SAM']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|H6E33zYTzxPHSlE8MS1RuKOl7buu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|225.0|0.77|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1742-6596/1135/1/012067|H6EaUPGH-zFgvSBtABKAk7_IOXgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.12|17.9|0.68|1.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800217|H6G3twa6DO8MK7_8RueHa-yj_Ucs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|205.0|0.71|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501358|H6ZY9iGE9Ara3fUFb8vrXerRkLAY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|180.8|0.74|12.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr02903b|H6_7nuDiWnONpzjb0x2UxhoeZpec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|108.7|0.69|5.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.07.238|H6_qZSQZrCwyKoJjChi0TcN4pKQs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|151.0|0.7559999999999999|11.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1016/j.solener.2019.12.056|H6lcBUTJjbp7X3cn6rP1cBpkoZng|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|8.0|0.27|0.2|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|H6qN_1_Sku5SZ8zjNcN1GsqK8QbG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|196.8|0.762|19.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|H74DhiMesIYO306-dZDQzpGrQsIe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|220.0|0.57|9.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|H76sJTeEBPyFGaaUKAYyVrRL88Ce|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|134.0|0.511|5.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XDB', 'MoO3', 'Ag']|['XDB']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|H77OngtIORngp0oqmLdcLpR6sr-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XDB', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C20H120I58N20Pb19Sn|Pb19SnC20N20H120I58Br2|MAPb0.95Sn0.05Br0.1I2.9||0.904|141.0|0.595|7.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|H77quYveHdXIlpEwTwVP2KNnpnWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Sn0.05Br0.1I2.9. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.112|193.1|0.7120000000000001|15.3|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|H79ZyL08ptmMPwzC7ypL9aFdzHjh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3||0.926|196.0|0.545|9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT', 'Au']|['BT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.09.020|H7AiFOd1sxZW4f6ZQ01YenJL6eSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|196.57|0.556|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|H7Bn3qkHcsQ6b3zYfqw0vPo0kc2g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|168.0|0.48|7.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl501838y|H7JzK1AV5znuvdp8H0sd1T0a0yJM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.78|144.8|0.65|7.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'FTO', 'SLG']|['PANI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.05.053|H7N1ifQrrmrMj4otbAsnhOxf2pd2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.0|0.67|13.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|H7N3XN2wnoiXDIW7uCg--C2Cv622|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.5|0.642|14.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|H7Qo4HMC492eUQNDKgkWxyy5DjOb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.2|0.74|17.17|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|H7TTORrj-oeRc2czNaYb5cNyA34j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|172.0|5.0|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta04385e|H7ZKEFdvxqz-L8axMARWncwQqI2A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|243.6|0.67|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|H7Zg2Oxeu_JEZPcvea-t1LvUYbv-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.8|0.76|14.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['ITIC; PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|H7cYUqF9GRm6Db7C4rjpPMvNkhyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.136|139.1|0.752|11.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Imidazolium iodide', 'P3HT', 'Au']|['Imidazolium iodide', 'P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104180|H7e0RsPjN5it1LYBQxXFzfDMu2cA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Imidazolium iodide', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.115|217.0|0.748|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|H7l680_mBUWYa4ltQAfCyhkdxWP2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|217.0|0.612|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7se00536a|H7lJquGwnYJPXEZftpmGXGVRvXLf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.63|111.3|0.65|4.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|H7oYAKhg6f561iL1LGVLupRu5yqc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -Br33C100H517I267N183Pb100|Pb100C100N183H517I267Br33|FA0.83MA0.17PbBr0.33I2.67|1.5900001695435149|1.03|250.4|0.79|19.4|['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO4-c', 'ZnSO4-mp']|bulk|https://doi.org/10.1039/c9cc07398a|H8-kDVTAbdX2dqxOGOr777iACtZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|207.3|0.8|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201700131|H8CrQs3oLhanKdMaMvQnuRWqtHLR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3||1.053|215.6|0.726|16.47|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806479|H8Hblv11VoGnnPjwx5rMMJaFbYxj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|225.0||16.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|H8MjgZj2hJaa6IFzKSRCREWgEiMD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C20CuH120I58N20Pb19|CuPb19C20N20H120I58Br2|MACu0.05Pb0.95Br0.1I2.9|1.5500001652782691|1.13|228.1|0.74|19.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201800258|H8TnruheWH3dA2wUFVdWJ7TZXRPT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MACu0.05Pb0.95Br0.1I2.9. -Br20C95Cs5H532I280N133Pb100|Cs5Pb100C95N133H532I280Br20|Cs0.05FA0.38MA0.57PbBr0.2I2.8|1.570000167410892|0.1009999999999999|234.0|0.72|17.02|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|H8WdUy6JCDWPtwdrfpjxllbSV7Mk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.38MA0.57PbBr0.2I2.8. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.18|201.0|0.81|19.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|H8YFezwkDESbElsRPlTJEqWRPChO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|208.2|0.736|14.97|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|H8nHF40k27r2LtkHA2hvS8jPiYuV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.84|91.4|0.46|3.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.7b01556|H8uEZnJKMeUQtbGlIjt96dtaSTmJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.4|0.58|10.6|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-4S', 'PEIE', 'Ag']|['PTAA']|['2PDI-4S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|H9C-b8MMKmO8Qv1ku04B0kiSeFP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-4S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.762|126.0|0.39|3.8|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|H9CurEFF925souVwl3tvtxjeygBQ|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|226.7|0.65|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|H9MbAVTYGV-V_mMNa7r2KZezkUA0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|239.4|0.71|19.72|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|H9N0D3C17iZFmXg2YAi_pozKo6oc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|171.0|0.71|12.0|['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|H9YDOY_NbrsyeJ7DzcO654GU6i4N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7090000000000001|41.5|0.41|1.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']|['BzTA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.004|H9_bR6QlGL3tvGvs2IcK8d3niKcH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.01|231.5|0.718|16.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|H9dC6BybcwPaAMhp51-I59YGKBdH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.135|222.8|0.6920000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|H9hh20rgMisxsJPKQeJJxtnrFpo8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.52|83.9|0.598|2.61|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|H9wlJv28pfbh-zagqZGpXQB3x_Mx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.97|186.3|0.6|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|HA415bhPEYVo6-FdZm2uURb60tH_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|218.0|0.76|18.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|HAIOHhWDCsE8s2Y3TIgwxxDFGpZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|174.8|0.49|7.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|HALlYMBamWNT99BFho5-PkKeztu1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.8|0.7659999999999999|16.22|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.021|HAOkixBHgRLF0QwMq-jHZtJxYXDS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|185.0|0.46|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03577E|HAQydSgjbLLj0WBsaz_toriiWyTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|212.6|0.7|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|HARImmNpgdrFY0MRLcyqXP3dXYMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.950000207930726|1.227|145.5|0.787|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|HA_9ftr6Kvj84G8jptTU5fwq--Wr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|146.3|0.74|12.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110052|HAgf5AFeP-LM5zV5-dOIOviJ-TKi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.14|145.0|0.67|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|HAlPmGSJvxvTaQOthyaneA8dkY3_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|222.0|0.606|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|HB0Bt9aUbeRwVa6XZwqlFuDfQ3Xt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.11|86.5|0.42|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|HB0p8jVIBwrwccQwNI20Xw6IMczV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|203.1|0.75|15.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|HB6Ri7cwUsBTqForw6S_rHcaaUOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|214.0|0.66|12.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3762/bjnano.10.228|HB91Ys-jX6vwXQIeSSQLd2z6Jwha|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.55|80.0|0.54|2.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5029253|HBEW_J-H4v2KEU-hQPtlT-eND0Yz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.83|164.0|0.594|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']|['TTF1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|HBMooOG5TYKw3ASXD7aQEhjf5cek|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|163.1|0.425|7.41|['SLG', 'FTO', 'TiO2-c', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|HBQhNVeLYBkmj2uDWUGzQPf5EglG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.6|0.638|15.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp04162h|HBWLKZUe7ZatiOJLiRPNhNLAntCV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19Cs6H95I75N38Pb25|Cs6Pb25C19N38H95I75|Cs0.24FA0.76PbI3||1.012|220.5|0.701|15.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|HBae5P5xVpEeisYAvHkvFi7OEoIx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']|['pBBTa‐BDT2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|HByCDKvWzwi4N2PqxRjcC6IoXelE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.2|0.78|15.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1063/1.4941416|HC0zeehHDrBbx5HnxlvEXvKUx5Z6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|223.8|0.733|18.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05975f|HC167c2_N_7sYZa5xhjLNhAk4m6m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|187.7|0.608|10.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra14372e|HC1iSLAbKJVG7QY_0Xhmhmbn1uDK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H150I75N32Pb25|Pb25C25N32H150I75|GU0.14MA0.86PbI3||1.064|212.9|0.76|16.27|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b04060|HC1zJ4ptgtcFNu5lLqgMbtYv5R15|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.14MA0.86PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.0|0.713|17.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|HC2GmEIWDf6E6lrWE7kApXOUgpsD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|222.9|0.64|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|HC2oF80vGLu6v3gH0tNF7vcj_2ny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|146.0|0.67|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|HC5ylKxvhfLxXBMDh4yjSLEwOVo7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.308|144.2|0.405|1.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|HCUkeIqg56BKlkeb-15R5e3BxTT-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|207.0|0.66|11.4|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1896-5|HCfbq4K9vPD7UwONTLSlxM2kgnEq|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.5|0.55|7.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9sc04900b|HClvR0NzhIn8PZOUpk-CWOHhS0VF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.12|234.5|0.768|20.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201703852|HCnVVWO-0J9ohHmVe2u2_k7p6MUl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|131.0|0.58|7.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta08019d|HCnsbqLzWqzobMQG0dl_ZDAaZOqV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|224.0|0.72|16.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|HCqbgoHXvodz7UWJIsDjiNCeZkvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|124.0|0.542|5.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|HCyCHqHnUACTazQAHGgt_T7GFql2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.7|0.629|14.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201500543|HD4CNW6xNWE1vh1HWCojQztdIVgu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.226|115.8|0.59|8.38|['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['NiO-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|HD4IZ6bAOHyNP0QWa9f1gtngttZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|243.0|0.5710000000000001|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03686k|HD8VnFpgGcsM_gYETHPUNencl9s6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|HDDVlr9gJQuattKcSJhJtBY_hVVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.0|0.76|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|HDNvEhW5SCrKknVO5Zv45IoVQqKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|220.3|0.73|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|HDOLtCpn4X91ggL5BbBu14Oh3DBP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BaC20H120I60N20Pb19|BaPb19C20N20H120I60|MABa0.05Pb0.95I3||0.96|193.0|0.672|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|HDUqHo496kyiium6_Yg6h3fGcsT8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.05Pb0.95I3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.991|169.4|0.6859999999999999|11.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-07485-3|HDgDqFSv7qkPaFceImw5cY0TJt54|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|172.0|0.62|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01532e|HDgtYdMehQGHJif44kztmcjfYKAT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.81|163.6|0.6559999999999999|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11696-017-0373-7|HDhFvCoSUB9KX0JdUb-8QYMZ7TTF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.218|52.2|0.528|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|HDi-tL-SVSlyzfVj0C-vI7stum6Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|176.5|0.53|8.86|['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1088/1361-6528/aa9ac9|HDkb8YdWG8vfN5V9Jke1k14KZwi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|223.2|0.73|18.76|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00845|HDol7qJwspaxJacnai93ekc_8sXJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.09|230.1|0.722|18.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|HE24kkgw2iFsk5nBtml3MSE-mPVI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|179.89999999999998|0.725|11.32|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1117/12.2506443|HE5Hw_H5cpJQ3O368uMiTQ16ApKq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I12N3Sn|SnC3N3H18I12|MA0.75Sn0.25I3|1.380000147150975|0.82|224.4|0.78|14.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|HEb40rEB-mWL0_VKGmvir8em_pzx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MA0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.0|0.5820000000000001|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanocones']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|HErSON17kwqm80RiOO7iLooRCxdK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.166|215.5|0.74|18.68|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|HFBo5kbbhsDzSFmHIfKor2CqlSzZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|201.5|0.54|9.56|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|HFI6VcjLwY9Jz8fYaDuTjj-qk_si|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|184.0|0.68|10.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC04|HFM7RMwfJzPKdfXYVR7YFC87xq5u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.10FA0.75MA0.15PbBr0.45I2.55||1.11|231.0|0.82|18.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|HFMBOEEfi5CCOXHtrucTiLi1EZOe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.68|211.0|0.379|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-3', 'Au']|['TBC-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|HFUnySqlzIwenY_F_oGKe7G8wA4a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.941|220.4|0.634|14.82|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|HFUstU4kNgHBURbce1WnBq9L_Tow|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.7|0.6509999999999999|14.1|['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PBTTT-14', 'Au']|['PBTTT-14']|['ZnO-c', 'C-PCBSD']|bulk|https://doi.org/10.1039/c7tc00966f|HFaxRdbSiVqx5RwVSMjnywup6HmN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PBTTT-14', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|235.4|0.73|18.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14254|HFgvgMs-QKndKh5no0Edr_aPzqvQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|121.0|0.71|7.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'AUH']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|HFjQSYyhkx2-UQGqfgUHBfr0kTZn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|141.7|0.652|7.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|HFocHYWAO5CI7IW3pL_1qctK9HiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||16.92|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|HFs9jCbSlfGb0lGkHMpeSBQgY4Ko|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|208.0|0.7509999999999999|16.4|['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|HFwMpu9WidqnYRIvyysHJVTG9rjU|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|199.7|0.56|14.12|['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PVP']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|HG3SatOpEml45-Ijb76Ed6yUiblL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.14|206.5|0.72|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703057|HG7VEyXcru7zsuc_eFYf7VmtLf2b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|150.0|0.618|7.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'AgAu-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ra11720h|HG8RqaY6xqkc0TBEte0PLfeBXfOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'AgAu-mp']? The composition of the perovskite layer is MAPbI3. -Br32C100Cs25H525I93N175Pb125|Cs25Pb125C100N175H525I93Br32|Cs0.2FA0.6MA0.2PbBr0.256I0.744|1.7000001812729404|1.09|190.8|0.6809999999999999|14.17|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|HGAnwqPcrRBsoxL0EAvNDcd3fymt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.6MA0.2PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||214.5|0.57|13.9|['SLG', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6528/aaf2ad|HGBY8Tko3BN4G_oS7X4UGthYj4Kr|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.11|226.0|0.75|18.4|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|HGCywsfOl5tEDl_YKIXJE3zyTq1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.43|61.7|0.772|6.81|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|not processed|https://doi.org/10.1021/acsami.7b18902|HGElky5NZ5FKqG3faRExJOv7lM56|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.009|HGIEm8ewl5l8kpX-2OdPFNmb0l8C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|212.0|0.696|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2681-4|HGMJnrAmPC2mNkdbaZpI2L0U1Ckv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C13Cs7H65I60N26Pb20|Cs7Pb20C13N26H65I60|Cs0.35FA0.65PbI3||0.514|124.4|0.487|3.12|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|HGMl-IOVNH0HPCsamHp4chDrKnJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.35FA0.65PbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2000001279573695|0.76|260.0|0.66|12.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.040|HGNT0b5uBOq6eQuh4FJ4toigMKh9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||0.972|153.0|0.5|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P5', 'Au']|['P5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|HGcgMUF_yWq2SRsJaIsyouYsgV9w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P5', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|92.5|0.5920000000000001|4.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-2', 'Ag']|['YC-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|HGtSKi2txIzc4ItXJC-8imQ845t5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|203.9|0.49|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|HGzcGCnmg6RvHGv0mfSO0yUDgTqW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.0|0.79|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01099|HH498Gywm5cPeMH561UimNwzeFkR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|192.6|0.64|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01303e|HH9va0XbW8liHBjuOvK3358Z6wzJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|186.0|0.71|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|HHCX3SNUzmncjWJnzgi_0z95IoCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|228.6|0.46|10.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.035|HHNkwEL-vz1bxmEyvBMXf_LGxikq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.2|0.71|15.74|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|HHS7jzlp_Y_tVJuyqONaOa3QzWwL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|221.7|0.7879999999999999|19.05|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|HI8-b58_LzzL9CE2qjQkKBhlt2bB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|210.0|0.82|16.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate10', 'Al']|['PEDOT:PSS']|['PCBM-derivative10']|bulk|https://doi.org/10.1039/c8nj03067g|HIC_9UqXM6hp1ypYbKj0_L_epij2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate10', 'Al']? The composition of the perovskite layer is MAPbI3. -C18Cs2H93I20N33Pb20Rb|Cs2RbPb20C18N33H93I20|Cs0.1FA0.75MA0.15Rb0.05PbI|1.7200001834055632|1.268|188.0|0.769|18.4||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/D1TA05699A|HIKv7CJsGBszB50zHPFrz31LFZQk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Rb0.05PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.77|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|HIOaVURcZ-OHIYohlj2DbUDmLiao|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2900001375541723|0.73|242.7|0.599|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201605469|HIUGAsW97G2TL_9vpAvYPZLGbSsU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.137|215.3|0.748|18.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b04776|HIUlZimjjl74wRYBamS2UmsKjJ-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.4|0.78|18.91|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|HIXlepvXQgPU8icgZqnKhXYNGHHu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.83|200.0|0.45|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|HIgfhB4pQiIGxWB323qrTt2cXG_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.85|162.0|0.36|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|HIkY-dBot-99yv2K2knpbXlgwRjU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.02|185.0|0.71|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04538g|HIqVpvV-uSJRA5W3rNZDXxIPNkAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.64|94.0|0.38|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|HIsaiMnIk0OcPjryoJ5Kr6iyKKP_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.773|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|HItO5DSHbSP_T7FmgDKLZsdX40qj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4|1.626000173382236|1.156|213.4|0.779|19.22||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|HIwIcRUcrEajjVXOhb4RZs0RNpwK|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|205.0|0.73|14.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|HIy3PAHPMPHc6VEVOmo7OUUmksWF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|HJ38DvX-2g6wDBEcI1I2LT1y-oc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|156.5|0.37|5.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|HJ5Sz3iGan7IZBgjHO1OYoo30hsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|225.3|0.774|18.75|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|HJEsuLzJAos6mCKyDRfCY8KVt3Ax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.48|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|HJMFXnnCHwr9TgUux_6B4b1pNABp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|218.0|0.728|18.0|['PEN', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201900557|HJXoM2HrZLSdNrfKc21heFmaqmYr|a perovskite solar cell with the following device stack: ['PEN', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.0|0.66|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.034|HJaqEQimoqJS1fKspd89HDoCJ7kw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.089|212.7|0.723|15.47|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.146|HJjMqPUTYlSRKLvdrT4CpOWtKBVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.13|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|HJlqMSy5TWzbhDkyBSs6nqOfTuPk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|50.0|0.55|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|HJoQszGG9p6Qgs7czY88sRhgb7yr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.0|0.73|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|HJwjclYexlqXEHhxKRLO_1PS4gdV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|62.0|0.6|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|HK2uOZSEiIRR5WXkSnFuaqYA84C5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|HKPqGbWHG3kvfrosqrl9aOBegolu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.240000238853757|1.5|75.3|0.809|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|HKdyuTUFtdLS4ONmN9PnIOF1w4Ge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|189.6|0.7|13.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|HKgkN5VoJUG9wKNt0P2sgT4EB0r7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|118.0|0.33|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|HKr1WYBDKWOVhB29AUqDbioy1_aP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|190.5|0.511|9.67|['Mica', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b09166|HKyrorjOpmivl_t1-sCkmOv8hb9C|a perovskite solar cell with the following device stack: ['Mica', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|183.3|0.75|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|HL0NdY8OxSm_f-xwFAWzCFnBkmwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|213.5|0.768|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|HLCKNNzrgkIvi6lWtszpJDXCr8Nz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|1.7300001844718749|0.86|45.9|0.645|6.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta08465g|HLDvOY3ZrUGJGWc-kiSUxg2pytRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.065|211.0|0.75|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']|['FDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|HLIvnLyvdav-hV8mnoOOTP-DuM4v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.2|0.7859999999999999|19.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|HLQGcIkNPvUAYxg77ub8iI7ZM9hy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br98CsI52Pb49|CsPb49I52Br98|Cs0.02Pb0.98Br1.96I1.04||0.95|118.6|0.49|5.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800504|HLdeTSEanq_R5E09rtwhSMnffJbd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.02Pb0.98Br1.96I1.04. -Br81C85Cs15H425I219N170Pb100|Cs15Pb100C85N170H425I219Br81|Cs0.15FA0.85PbBr0.81I2.19|1.7200001834055632|1.24|198.3|0.737|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Benzylamine', 'Spiro-MeOTAD', 'Au']|['Benxylamine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701048|HLjVEcVN7WoWNVlI9AHqbxBBsKZS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Benzylamine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|184.3|0.49|9.36|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-0S', 'PEIE', 'Ag']|['PTAA']|['2PDI-0S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|HLyAEj_5YksniLeXzyo45vxwnNGc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-0S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|148.7|0.4379999999999999|4.73|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201401539|HM5JL7lbMi0qkKJwW-EoQ3_HEnfl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.07|226.0|0.6920000000000001|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104673|HMGI4KavY89gBeSoilG0l6mDa_ru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|222.0|0.76|17.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105552|HMW7fHzLBbqg9TsF5pW5BBleOVNU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|121.8|0.47|4.86|['Polyester-satin textile', 'Polyurethane', 'Carbon-nt; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Carbon-nt; PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.038|HMZ-lKLfwIZRZZQuFBV0M6dgm7bU|a perovskite solar cell with the following device stack: ['Polyester-satin textile', 'Polyurethane', 'Carbon-nt; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|227.0|0.718|17.24|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|HMheTA1_aCrBYGzeaYtdzU0J4MWl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.828|231.0|0.62|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800242|HMwLa3z7_ZwsUPQamTbKvyKMJdmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.055|222.4|0.732|17.17|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M114', 'Au']|['M114']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b09482|HMyS9cQZTo6JYWeCad8tXwWuzNs0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M114', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|HMzhJQpB8t0HWwo5x-lo1D-aw4G4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.10000000000002|0.68|10.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|HN0QCC5FZbD0UEfVnOAQC-9sGxkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.2|0.67|15.06|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|HN0pzbKYbfrgaPwiaDJo3jQVQzRH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.06|225.0|0.762|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.spmi.2018.03.051|HN2AXTi5yl5pm8uuEKG6CQt0hnUF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.07|227.0|0.777|18.9|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|HN33R2bqHVKGvfCfEseRM5giqUGE|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.93|214.5|0.69|13.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|HN7SOtJYtG-5UKLt65KGU3sWjgn9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br45C85Cs15H439I255N156Pb100|Cs15Pb100C85N156H439I255Br45|Cs0.15FA0.71MA0.14PbBr0.45I2.55||1.13|221.0|0.778|19.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|HNB5hVGJOpESLuV9yEQ_HxKgQTve|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.0|0.76|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|HNMqBvyikORojqvR-Pd2OofPj79D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|HNNkCTXRxnkH6VDBmCD_I53NSjIe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|243.8|0.737|19.84|['SLG', 'ITO', 'SnO2-np', 'TPPO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TPPO']|bulk|https://doi.org/10.1002/adma.201805944|HN_H7yac9t4_7oS4uogd0ukJNPIV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'TPPO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.84|193.0|0.705|12.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|HNaCustjdAErrKA5Y7A2f3i15X4n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|HNi1bNRi7xG7mDfqjO9xYmDy4Cw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|215.4|0.769|15.32|['PEN', 'ITO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227157|HNjZSta8J88_4fgWJjxiz5uzmg7S|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|207.0|0.7829999999999999|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4ee01216j|HNm4XSAhe4gszMSwFPJHfoZceGA2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.961|223.2|0.662|14.19|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.electacta.2018.09.097|HO6z34uLVJkKaEEyumqjUC-qEESn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.445|96.0|0.713|9.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|HOEkiiWa1rtGE4trv5Zd1jazEWch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||||3.19|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|HOQ9jFHi6Gc5vytdf7x8Dj5WZUjQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.08|212.0|0.769|17.6|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|HOV4qqJGaPJgSQy9ZfAB-tkjxa1S|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|HObB4lVfCZhbQdvydZ7D7J1uq8kQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.84|212.0|0.49|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150743|HOo68FfDwYqlCD7brqtVqyrqdvtU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|226.0|0.713|16.0|['SLG', 'ITO', 'CuI-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuI-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr04288k|HOudRWYD8EHpmmaFxhJSxJ8xyEc0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.25|76.0|0.7|6.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|HOwbqWcvkU9L2Ym7lZiSS1Rq3-8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.7|0.7090000000000001|12.48|['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS', 'Au@SiO2-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7se00472a|HPBuofgxC4Ot_zQXoTg9q4ZwNme7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.0|0.46|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|HPDwB_9jx5ellA-J4vXurtfiHS_E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.07|207.9|0.736|16.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20493|HPG_O7tA7inTyhl7jqaOXs488BuH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -C18Cs2H95I60N31Pb20|Cs2Pb20C18N31H95I60|Cs0.1FA0.65MA0.25PbI3||1.12|233.5|0.76|19.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201700484|HPHppzHtRcJ72-xgY4iXKJuM0wdt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.65MA0.25PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|207.0|0.705|15.2|['PEN', 'ITO', 'C60', 'PAA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60', 'PAA']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.068|HPM7-9fh6xPbD39GvHyUjcKsaR3k|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'PAA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|72.9|0.62|4.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|HPOLD40MjBD_V47ALD6eok0RZ3gi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C13H36I7N3Pb2|Pb2C13N3H36I7|HA2MAPb2I7|1.98000021112966|0.64|69.3|0.625|2.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|HPOQr6ba-TCx7W0OHCi0G-cKgKcO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MAPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|44.0|0.39|1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms3242|HPZl_insj32ZJiLH9y4HxDMBSDX7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.100000223925397|0.76|27.5|0.54|1.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s42004-019-0195-3|HPpz1JOmUovXUGe3M7l-3hHtwGxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|40.0|0.685|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2185997|HPu9QZA_yKkceWsBsEZKsIwJHjk0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|197.0|0.75|15.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|HQ1hbcDs8rYeu_9lYC5z5erqqFCO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.082|226.2|0.77|18.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|HQHHURaKbXsFgeBp5Jjo8F7O-M0v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.0|0.75|16.8|['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01987k|HQikIh4mMxIR3386-7sCSNosqeIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.0|0.508|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|HQreeQ6MaGaDuVhSuI-7bczeDyzy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.44|9.4|0.49|0.21|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.ijleo.2017.02.101|HQusG1VpwgeWxtjG6Uwe6cz-1l4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.92|210.0|0.64|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.07.065|HR2zMQBKa8s7AV85zkjU49jgfGWt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.86|165.0|0.64|9.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovsktie', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1021/nn406020d|HR3EEsbzJUZH3TYGhzl3p27gOA-0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovsktie', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|240.8|0.67|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09304g|HRGVInzpNqwh5fqj77f4MmFsVoZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|165.7|0.68|10.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.044|HROt58VlGXGrIx-KZ_diIzojlJJk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.35|4.629999999999999|0.28|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7nr05764d|HRU32gu0nX6uLs1SatuTMYAI2Lg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.11|195.5|0.75|16.28|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|HRVWG02Rndm_5ONE3tfPyJ115WwD|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|220.2|0.74|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.07.106|HRdZK928lmZ1qv-Bksr2R1UYLdEh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.1|0.7559999999999999|17.7|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/C6TA05095F|HRffJawWQrDudmddWOkkBfwTtlGv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.685|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01087c|HRnozeP7W08Xcf_D-BkGLKjHfUzU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|154.0|0.58|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']|['DR3TBDTT; PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|HRo3EUPCNi5FJR4kuVHuJ66ch90u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.57|7.0|0.3|0.12|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|HRqC6smtN5dDsgs_RYnWttKm0WqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|206.0|0.7|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07446|HRxTdMOs640_amfNCHCrM2I5Ds9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.4|0.47|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|HS1ERJ9FBUOTRC65kpuVXis8RCE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|124.7|0.67|8.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|HS53JaDKejdIeSGakFRNFG4sENwL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|156.5|0.498|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta08262e|HS5wE548N6u1WEUm6-iSbyXWu3G5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.055|221.8|0.764|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PhCOOH']|bulk|https://doi.org/10.1039/c6ra16839f|HS6IdnzJ4FP_c8yUw3Wy6l31DQCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|236.5|0.72|17.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|HSG1TGGYyiXiPw1HNPAh8eHqlbrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.08|160.79999999999998|0.54|9.38|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|HSILKx1jfIRqhMRqX59jalCMa87s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|227.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|HSUxv5Cf_GYUZm42xrW2q08mSowR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|190.0|0.48|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|HSYnhDuulC-mymetOBVXRcPmj79E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.725|146.2|0.29|3.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q219', 'Carbon']|['Q219']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700546|HSlS9CyFKZ4aWQbLTgzg2i1RbO9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q219', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br50C96Cs5H497I250N175Pb100|Cs5Pb100C96N175H497I250Br50|Cs0.05FA0.79MA0.17PbBr0.5I2.5||1.03|200.0|0.66|13.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03993c|HStCKFJy36SUXTPocucoq_o4MsFO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|205.1|0.483|8.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.04.012|HT4MNB_q1fHNywKK6CyqQ04iNcDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee02958j|HT5SiIErWdnY69feWwVEeGvuXfJx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.06|196.0|0.7|13.7|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|HTD7-A6kox1gEbb9lY9wpOKymDSU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|206.3|0.54|9.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07703|HTNgRJSo5zccZEeIo_mME-6J6wpE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.144|176.9|0.71|13.99|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|HTP1ApHgmlpPfK1psCb4n6RZG5Ix|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.21|228.9|0.72|19.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|HTPzT7hkhTFNWf0DUT-r9wWmoc3D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|139.4|0.632|8.28|['PET', 'Graphene; TETA', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|HTQ3JaPQiXLFuhQKwGXUefjPPPUK|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|175.2|0.64|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02014|HTTZuQwDyN6SLeldmWgbn9LeFMYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.2|80.5|0.65|6.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|HU3goXpFLrY5XpluhYT9oiMcCbmc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.1|236.0|0.741|17.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901726|HU6BQDENbxMbhm_sk2ZqYekzvi1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|210.8|0.578|10.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|HU8DzQU03Adfu8pkL0GDFY5CGMRE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C47H254I120N41O4Pb40|Pb40C47N41H254O4I120|(GABA)0.025MA0.975PbI3||1.09|215.9|0.684|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|HU8UNa3FZQpkUlHrKN4fsWk4b7Ka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.025MA0.975PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.6|0.74|11.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|HUBwrFWFajEC4cg1WYUO55wDH0pq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|168.5|0.428|6.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|HUIgCylZOapaa_cEp8tgu3iBLqqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.1|202.0|0.769|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.11.021|HUK9vYjRe3ruXX_fvY8BhytjzRMa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|164.0|0.64|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|HUKNSJpvXQRQrZgtCtMKcmbk9zv3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|201.0|0.74|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701305|HUUXzdDMI_McpZcEgapgXSxs0mW_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|251.0|0.765|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|HUdIraAiL1Z985nWA3nKcmQd-Dwf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|211.0|0.69|12.2|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np']|bulk|https://doi.org/10.1002/adfm.201909738|HUfTj5_cyS82EKSRuNCfieJIHk9i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100Cs5H517I300N183Pb100|Cs5Pb100C100N183H517I300|Cs0.05FA0.83MA0.17PbI3|1.5600001663445808|1.06|235.5|0.775|19.35|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/solr.202000282|HUszsvDg7ptfa783vd9l1mrSLBgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.1|0.67|15.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta08819e|HUyq12enAsppb5j1dOysam-7X39n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|164.0|0.6809999999999999|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.12|HV7AUbK0GEm8c0-DpqOii0JxaHH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.768|118.5|0.485|4.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11468-016-0255-9|HV870XHoDvOlstumdRev88juNAMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.8|0.5710000000000001|11.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.02.012|HV9IMJLANMD0Y_QNYCTHgSbjMsoY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Ca20H1957I1020N703Pb400|Ca20Pb400C380N703H1957I1020Br180|Ca0.05FA0.8075MA0.1425PbBr0.45I2.55||1.16|224.0|0.78|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900834|HV9fTQCDpv1KGnfRnZ98bsJaUDya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.5|0.813|18.12|['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na', 'PASP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01947b|HVEh-NBmtvzurJalzUGXUy9qFaMF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|HVFJDK4AqGkqviqqG3Cl2O6xmvpC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|135.5|0.67|8.35|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01942-5|HVQgK_Rnu29sA-FBg6WelPOvEJ13|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.05|234.0|0.6|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']|['Al2O3', 'CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|HVYlEv1Kw2-XKMe7wdqDDzwYPH9-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br9C100H600I291N100Pb100|Pb100C100N100H600I291Br9|MAPbBr0.09I2.91|1.5790001683705723|1.026|230.4|0.69|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep44603|HVZ6pP6WuIIkm1vtz3CxIRz8dN1a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|159.0|0.35|5.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.055|HVksOKGxgj_uk2EbHR1F3noGRIM5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|194.6|0.54|9.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|HVo2nvGQA5E7KKLEDBWpio_yZP0w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.354|63.5|0.76|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8dt03296c|HW1aGh0Z6T1Bla5obIH26uD-Jweo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; MWCNTs']? The composition of the perovskite layer is CsPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|151.5|0.75|12.42|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|HWCA1E1a84Kp_h81FWvSJkkl8bdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6000001706098266|1.03|201.9|0.6629999999999999|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB-ZnPc', 'Au']|['TB-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601733|HWCtubF92KMoN-0f9SJaLVt9gKed|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB-ZnPc', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.4|0.73|16.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00400|HWSPTh_aauB6ZqdKic8uY1H_NbCS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|155.0|0.785|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|HWUt5xxBN_0ZbkX4S1RFqUVxtyqG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.39|49.2|0.362|0.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|HWbnjRllgp1_dXepOBXha7Ec2Tqw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|134.5|0.25|2.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra01430a|HWv6DQ6JtLu-t6DXkfzagrQNlrSA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|139.0|0.17|2.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.3390/cryst6110149|HWw9a6VXrwL1MYLlxGtyZLtzOTUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.88|232.9|0.53|10.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|HX0AC35IEBILUmK0q5E10LV44vL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|132.0|0.68|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|HX6aiLrEYhrEH2O9PEQTzeenSNmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.06|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201701722|HX9OM6qDIvbh3Ncwrrtqkkv2hKIl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|202.7|0.75|13.64|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b07298|HXNKtkdvkieN8PD6C8ISm5-MaYfE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|166.20000000000002|0.639|10.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|HXc-PG3p44Y-3gm3QQkIxJYLkRpl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.7|0.71|16.99|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|HXv4VEiOosBqkhjLdoPpTBNY3Vfe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|197.0|0.76|14.7|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['Spiro-MeOTAD']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.7b00208|HXxD7TAp4YE2-k4dgl_YcD-ZVACJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C331H798I300N100Pb100|Pb100C331N100H798I300|(PEA)0.33MA0.67PbI3||1.08|138.8|0.6|8.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adfm.201901652|HY6stJs3K1vc3o_v_e26opdmPzOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.33MA0.67PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|196.2|0.6940000000000001|12.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra06876b|HYBS_-rOMI1bleEvwdQ0316WilMR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br81C50H300I69N50Pb50|Pb50C50N50H300I69Br81|MAPbBr1.62I1.38||0.72|118.9|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep39333|HYJUm7BKJLHv2zwvqMkOZ3WR8xic|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr1.62I1.38. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.785|180.31|0.473|6.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||HYL0Wf945U6DEQPx1OlNlbmbDNVg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.91|206.4|0.54|9.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.06.016|HYOg8y6HDJ9dInJUjH7z7ncT1QsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|163.4|0.6|9.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.solmat.2016.08.024|HYUempxmtSY-5PfNbC7T5Hc5gj9c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.047|225.6|0.7809999999999999|18.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'AZO-c', 'Ag']|['NiO-c']|['PCBM-60', 'BCP', 'AZO-c']|bulk|https://doi.org/10.1002/adma.201801010|HYgdZjZsMLYu_MFdLjB_-uSKz6Ot|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'AZO-c', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.1|0.6829999999999999|13.89|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|HYjuG6XZfPDppGlXFxNNN5gGytb3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.98|147.10000000000002|0.61|8.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smll.201700611|HYlyfB0n_5mOOohwDZdEjslggi6e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.0|0.46|8.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'MWCNTs']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|HYvTZ7e5RGQsuoqd0oBqd4OhhlpJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br9C37H899I578N210Pb190|Pb190C37N210H899I578Br9|(NH4)8.5FA0.15MA1.7Pb9.5Br0.45I28.9||1.09|226.9|0.762|18.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|HZ2zykhyBcRuFGxUiKc248MPqTGG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)8.5FA0.15MA1.7Pb9.5Br0.45I28.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|178.0|0.69|10.4|['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.027|HZ86ISkQtr91-qLGzWx4652LY5cA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|173.9|0.65|11.16|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.037|HZDSej1FzXtH0hvHWj23tOeonrFG|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368|1.23|135.0|0.643|10.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|HZML2tP9OqwaW8mgDV1H308VOn3J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|176.29999999999998|0.56|9.1|['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|HZPIOyNwmhdATkWFel4dAb3frHFS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|2.030000216461217|0.94|138.0|0.43|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'tert-CuBuPc', 'Au']|['tert-CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.07.047|HZRFLTMHyyg0qHYoNK8uQ47o0imm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'tert-CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|173.0|0.65|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|HZRaLMMX7nX6Xfy7OvsEW-MG64-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3|1.350000143952041|1.05|228.0|0.759|18.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b20899|HZVRccdl3M8XeMGB7cDPZBvlNDTT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.92|233.8|0.65|13.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|HZWFMrz6nSdHNFIX0ZvxB5kUL-n8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -C17Cs3H87I60N32Pb20|Cs3Pb20C17N32H87I60|Cs0.15FA0.75MA0.1PbI3|1.5540001657047935|1.13|229.3|0.753|19.48|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|HZlCCo62OnuYI28LdvzFTyIRb7O7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|75.0|0.59|3.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'AUH']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|HZlRJHva3VyDAP3kxPiQfwPjRS3d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.0|0.75|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|HZpGVoH7NbVaohmcWmsykT9IzEtU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|170.39999999999998|0.5720000000000001|9.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.10.018|HZzIEeq0vqHTjhsXYGrWCqRe7YWz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|175.0|0.48|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr04441d|H_0uSrIIbsqrQ_gS8OQPY4ZHOPOV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|234.9|0.7509999999999999|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08488|H_2aojethU4eV6lpC9wS_YyQBkil|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.0|0.61|11.7|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'P3HT']|['SWCNTs', 'P3HT']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|H_Gv59imhB6EXfCXuLewWe4jigfr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'P3HT']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|187.5|0.72|15.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201404189|H_S9IBBpGSRVzXNZc7tUzuZ0Kw5E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.380000147150975|0.45|156.5|0.6409999999999999|3.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|H_aSQjiWZ4JwErZRzWp72O3_AYxP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CCl3H5N2Pb|PbCN2H5Cl3|FAPbCl3||0.76|149.60000000000002|0.55|6.21|['SLG', 'ITO', 'Perovskite', 'PCBM-70; PTB7-Th', 'Ca', 'Al']|['none']|['PCBM-70; PTB7-Th']|bulk|https://doi.org/10.1002/aelm.201600329|H_gjGeSccMtkgekObvz95snzWw-A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-70; PTB7-Th', 'Ca', 'Al']? The composition of the perovskite layer is FAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|133.0|0.56|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|H_jauBdPIERvxhmk4duGEZsBy-kc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||1.041|202.1|0.684|14.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700151|H_kTBl7MkCkN9qjQRzAcAfu43fMD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.0|0.52|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02921f|H_lUXlnoZjSYVZAuw235k9mruzsP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|0.937|213.0|0.62|12.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']|['TiS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|H_n8t20ntyA9BDdPLi-ty0vkWYLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|201.0|0.59|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501379|H_rfykeDHERrUcwZLdUIBmKtuW0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C50H258I125N92Pb50|Pb50C50N92H258I125Br25|FA0.84MA0.16PbBr0.50I2.50|1.6500001759413832|1.03|216.0|0.68|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|H_sAh1ZTjewqo-O9A_pQDx89LOmT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.50I2.50. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.097|213.2|0.752|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Ha1JKLNTTvlF8NERVHyijs7FL66l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.09|148.0|0.71|11.49|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ra06363c|Ha2850PDmfsWDDSBVrZcwUU47oVg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.131|228.1|0.778|19.48|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|Ha4IG6HZ2xQmE9WZGR6D_GVBmEAx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|1.03|206.6|0.586|12.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|Ha9ncNhMcLuhye5X3BrAk5Bfax4z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.012|192.53|0.718|13.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||HaCJX38lYS0TbESNrX_ZHfMlAscF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|109.0|0.58|4.3|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3nr01542d|HaGQnjPLjumI8PXzgnfYwB7pUv0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.65|109.1|0.5|3.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.molstruc.2018.01.037|HaNnWLIJn60gb0PvUwyQ63Q8hR0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|132.79999999999998|0.5820000000000001|7.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2019.08.042|HacKqc7_N47i59Qi8jx63UIed957|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.09|183.0|0.8|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.0c00427|HafAKzpadiPRY6s0kItnS_eYef9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|195.8|0.62|11.68|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|HaiAocdQGaSjIEA_tas60lMfmIhS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.94|209.1|0.377|7.39|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8tc00385h|Hajg4HwYA-yumDlLuzfS6ygGe-e1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|236.9|0.71|15.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|Haww-Y9cUG9KonP9gxQDw6dCs5D-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|227.6|0.789|16.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.056|Hb2se5qCCsrlvhNtpudSp9hkdpVU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|1.02|234.1|0.76|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LCS01', 'Au']|['LCS01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|HbDKHjhFLtEznGJEM29Baf_RIxg8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LCS01', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|196.1|0.72|14.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.141|HbKK5ykOBdsPeRgIkSff8VONboaK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.722|126.6|0.4|3.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2015.09.035|HbNk-nMjSdnPjDWacaEBSetQEVZV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3Cs22H15I75N6Pb25|Cs22Pb25C3N6H15I75|Cs0.88FA0.12PbI3|1.5100001610130236|1.02|230.0|0.76|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801948|HbO_Y6QUPIlN8RhO79TzLpoK0X25|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.88FA0.12PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.6|0.76|15.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201700492|HbSveQJe5TnX2A301yraCBc-bwto|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07625|Hb_ZvHQKOiNqIZBvD5-IDk8qpiNR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.03|211.0|0.211|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|Hbm2zKKk43w0MXkUJuyxPbFa_Mvw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|209.4|0.78|16.83|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|Hbm8NAOSdAR0Sa7j1VNXWGm5Jq80|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.95|231.0|0.6970000000000001|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|HbxyI3KXdgTgNdpeTgWfSOgFOmCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.78|218.0|0.76|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|Hc5nd8YsX4bjMOUrCBEBR8A2OsDR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.08|207.8|0.618|13.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'CuSCN', 'Au']|['NiO', 'CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|HcFrkiY9L8c5FNb5JD7moHurq3P0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.245|106.6|0.69|8.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201802080|HcHLRuf0eYM1G11Q4wg8zLe8m_sZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.1|233.9|0.748|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.10.008|HcTGt5gfvqfys0DP8HYtyWHd3Njj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.662|71.0|0.4039999999999999|1.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-R', 'Au']|['P-R']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|HcZ-h73KKihq17-cuFeWmcNDWYIN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-R', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H34I15N5Pb5|Pb5C7N5H34I15|EA0.4MA0.6PbI3|1.5900001695435149|0.96|182.0|0.522|8.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.027|HcsI848E7GONgb3xdlQelvz1Khqa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is EA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|183.1|0.8|13.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10022|Hcsa95EePBY9Kq_bLMl-plkl5VnJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.7|0.672|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|Hct_laBYA5bB8WHRpeCxygSsqkW1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -BC20F4H120I59N20Pb20|BPb20C20N20H120I59F4|MAPb(BF4)0.05I2.95||0.98|196.0|0.72|13.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|Hcv3euLNHZr1FSmwXHAhIiaVJzEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)0.05I2.95. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|230.1|0.737|18.66|['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NiO-np']|bulk|https://doi.org/10.1016/j.solener.2019.02.011|HcvyElyax9JcaDUPAdRkldRkEqNU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|193.0|0.73|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|Hd6RAX944cq-rRZwvWBVzP4fGldS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|178.79999999999998|0.67|13.94|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s40843-017-9130-x|HdOIMXAwtDMMXWiITffNs286Ceam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|168.0|0.5|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|HdTNeul_Ye1vXTSF6YRyxziffBqt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.55|50.7|0.71|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|HdWH_LIquJCySOjYoXisGOXCa7UY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|98.0|0.56|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|HdZc8M7ooz2faFpSVVVXsPIHdTBH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.075|124.6|0.61|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|HdeXpHWkSqhBU65h6tPgEYhuhvmr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|214.0|0.619|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-06245-5|HdgwRueeE22PArq1l49pPFNz90GU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.67|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|Hdhs3spZ5suOxnrMXscVKYT-0UZd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.011|196.0|0.664|13.19|['Y2O3:Eu3', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-07218-4|HdmeHPTzr4Uck4C5tUhDykGK-bYB|a perovskite solar cell with the following device stack: ['Y2O3:Eu3', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|170.0|0.66|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aafea9|He4LdKIhzXWPefqlaVLjawoNQ0O5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.69|12.5|0.6|0.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.7b03227|He57AGz9c_e0TbHSWF5LPZB5717T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.15|249.6|0.82|23.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|He5QopoGRcTFCU7k__hTwQ-Snr0u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.05|219.7|0.72|16.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|He5k2wy7nMOWPR8Upe6weOVmiMft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.173|227.2|0.76|20.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|HeBeHpK8Tbrp7o9EbI_Yv3RV51JD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.04|206.8|0.7140000000000001|15.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IDT2', 'Au']|['IDT2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.015|HeDz8nk3L1r27O0ydr7X55n4h1Nh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IDT2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|184.5|0.647|9.91|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|HeP5OeiMoVSTdurbzGgyl0lLzQ3p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|231.0|0.63|13.3|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/er.3743|HeQPrlzeHfyic-JAWyRKorHAKhMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|229.0|0.78|18.21|['ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5048424|HeTIiqcqFLUMeJzl61jlJ4jJpY-k|a perovskite solar cell with the following device stack: ['ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|150.2|0.737|14.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201900311|HeVPNqrAjQS3odOqvaiGMXun-AB7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.1|0.75|17.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|HeXPXLl0KSUAgRC_2UbU8fdIvryv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.09|227.0|0.754|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTEG', 'Ag']|['PTEG']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701935|HeZJvQ0NPmcPChnyx7r9X5_kZYor|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTEG', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|240.35|0.6859999999999999|16.47|['SLG', 'ITO', 'MoS2; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['MoS2; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700603|He_nCvXtlcYRY5OO32HeWFJpQwNB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|89.2|0.82|8.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|Hek46zAQ0r1tF9oLYENLguGdU5-n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.0|0.74|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2016.06.037|Heo9I51yk9f0t_ennR-wXNHVNyY3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.0|0.7020000000000001|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|HfATi6t-x0aapYA6Uoiqss3s0E8d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|193.0|0.56|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO3-np']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsomega.9b02934|HfHBDtbUcMWhwiRYMS3p95t73I_c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO3-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.2|0.73|17.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|HfJJQ50mYZX_3k3j5ts75jDwySf6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|221.7|0.782|17.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC04', 'Ag']|['YC04']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|HfLSbvh_VhrLAvanZlZW6nSvLOrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC04', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.0|0.81|20.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0153-9|HfRk6nP_LjysinRxY4EJ2tjrVQlY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|203.2|0.66|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b00940|HfV7BQVxrs4dqM25DN5xTBHRHP3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.108|223.6|0.653|16.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|HfdCJYBP8_38WOze2dlxxihGzp-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.136|220.7|0.72|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Hfx62zms9J_a09sKocjI8fD9r2P7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|220.0|0.748|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', '2,7-Bis(4,4′-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluorene', 'Au']|['2,7-Bis(4,4′-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluorene']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900990|HgA5aJ3QHXXAnJZDaDHwKAmZb1bL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', '2,7-Bis(4,4′-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluorene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|204.0|0.77|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00989a|HgCS7k59EeKBYQ-9h-fV-rRUr8ZE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.867|149.2|0.68|8.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ra04347g|HgIO4zWBeQ1WjqYvvqb9Y9a7OTlH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.0|0.27|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|HgJqt6yV1NE04s-qpYQtPkhTeQtG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.94|217.0|0.71|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.07.065|HgZ9Mc4MoeobKYyckjea4cM9Dsl7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|182.0|0.7909999999999999|15.8|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06465a|HgigwSY9yO-4KllZM1-qA3V4WC9V|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.8|0.54|12.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706975|HgjfNw6QvQqE5slvjP3BiQJkqHBd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|156.6|0.7340000000000001|14.15|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-019-2936-8|Hgm6zbVZfMLDJBtgtpdXv6lEUlOu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.19|213.2|0.782|19.97|['SLG', 'FTO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.044|Hgn4Cn0cOnVXbPFkPf3buVnels6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.63|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|Hgp87VdiI2T9D-2eym1_SD3ufA0a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.08|118.1|0.648|8.29|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201900363|HhCebAbrY1OWUZ8WszknHjnVbww6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|169.3|0.613|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|HhDuQXbzIpMded5A_oNgzeyZ-H5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||18.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Ethylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|HhLuFoIEI1R0ZQ0i1Co5cGM9qA7T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.3|0.738|16.23|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.electacta.2018.08.117|HhMZAVVdSN2T4KRNukoOC5W5Xs9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|139.5|0.752|8.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|HhTnXDSpyElx5-3R77ij0idcRsW6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|135.39999999999998|0.54|7.39|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|HhY8jevQpWjhIOYtOqqHSGCk9cYZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|163.0|0.64|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b02490|HhZ1gyzX7hcTbxjDDG9jhStEH1Ya|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|202.0|0.68|13.2|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.3389/fchem.2019.00050|HhZ8UyygPUe6MOYpv5XQ0PdDr4Dg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.6|0.691|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|Hh_i8cSFMTl90aJy2IGgQNu5F9VZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|139.9|0.516|6.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|Hhdvo8sGxhf3wReP0JB3XJGToBbj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||||0.73|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA1', 'Ag']|['HA1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5sc03569d|HhiegHP9dfR1A8eu7Tm6sGwD-S3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|161.9|0.66|11.13|['PEN', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta00398c|HhjFscAl4eTEgBC0ZShmTT4SKnNO|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.0|0.72|15.6|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adma.201604186|HhmQOg1lP8UlwXwailTPy6P8S5Y8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0759999999999998|227.6|0.78|19.1|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-mp']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.mattod.2017.12.002|Hhptf-1UbFCHdhsGROwgPd3pnCpJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|205.4|0.7|14.92|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|HhrQgBL59H149eFqLw2bT_ryp4NJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|200.1|0.74|15.56|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']|['rGO-4FPH', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10773|Hhrf3EyJaFMxFLngJaJOzu-MJyVP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17H30I4N3Pb|PbC17N3H30I4|(PEA)2MAPbI4|1.6000001706098266|1.223|179.1|0.82|18.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|2D|https://doi.org/10.1016/j.joule.2019.09.020|Hht7LqKX7DZC1py7SUkYl-dnxNGd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is (PEA)2MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|208.2|0.653|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|HhukU9GWccFlJ7fFJAdYenK_acy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|198.6|0.722|15.06|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08565j|HhwVMKYvavdxxqjTTunhKCbsZMTt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|221.0|0.825|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|HhxcUq_drz8HLEBNgVg2iPZjMxGy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta10510c|Hi68vF2DkXgns2IzuPDAe9w4L5oM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|182.5|0.66|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.12.025|Hi7IevgWQFeDaXYNlm0WCiUShF5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.271|167.2|0.772|16.37|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|Hi8fYZa5PP_S18dzOqeQCndoCUHD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|186.0|0.68|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|HiB4b6_KYYrvtPqwzPpNbro78X4S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|222.8|0.758|19.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|HiGV-yCPP6nQ9W2q_FaFdKDTF4hD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.77|154.0|0.55|6.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.9b02524|HiNH-i-0B3zfK7UeNKs3YBhroUqj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|162.0|0.6509999999999999|11.1|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra05578k|HiXwGStIvzYUZ9KnHeyqE9_0742y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.24|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s12274-017-1896-5|HiZDljZFl1GBCxCIfgRvguMEqIDs|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|91.6|0.8009999999999999|7.05|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|Hih4EKk4xAUCvdwaD789XSVB-CF0|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H8I4Pb|PbC4H8I4|(PEI)2PbI4||0.77|7.9|0.212|0.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|Hih_OKFAGMffCkqUt0QOIQu8M0CI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|219.7|0.662|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|Hihar2o5K1aUR1Lj9Z6G25wQImQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.0|0.66|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']|['C6TBPH2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1882-0786/ab4aa2|HiklWikPrfgEunt7J5NUmVe8CRDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|157.0|0.74|12.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']|['NiO-np']|['PCBM-60', 'PrCMA']|bulk|https://doi.org/10.1002/admi.201600593|HinJ1ZgW5pricydUo53oaa6JXPEP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C92Cs5H476I251N168Pb100|Cs5Pb100C92N168H476I251Br49|Cs0.05FA0.76MA0.16PbBr0.49I2.51|1.6000001706098266|0.88|213.0|0.59|11.2|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.10.031|HinvdV7tD-hjGcNS4KUM8uXlW38C|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.142|234.3|0.7390000000000001|19.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|Hio_O1nYiFlunH-ZF_T11_LcVpHp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.7|247.0|0.711|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1039/c8ta05444d|Hix4HupnmNc3Kh8T-InKJQMcMoYs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.91|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|Hj18RMPVkudNVZCqRqSSAIUydAtV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|191.1|0.64|12.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8060416|Hj6k1sE_NvVpn1oDtXztLN8mSa9A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.0|0.688|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.021|HjGZjIxM7al1K_1BsDi3j001IIEz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|162.8|0.62|9.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|HjHEF__daDe9bs4HDHgusdcM9Fqt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.68|10.4|0.32|0.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05700|HjKdjvWx4NmHmH00eqK0V7f1sVWq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.4|0.83|19.25|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|HjhGIJOauhMu7I3eOGjZrUGNCsH6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.26|146.0|0.747|13.09|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-c', 'Ag']|['NiMgLiO']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta05802h|HjnTtXxrFjzcBo1TfIB3lBYp1wtV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.4|0.69|15.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03826|HjusHYkaO4WLWj-97nedtsPgCUqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.8|0.765|17.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|Hjv2M9j_YVH9bYbJkmnifDa1Rr7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|182.2|0.69|13.08|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'CzP', 'Au']|['CzP']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.12.031|HjvFuDjm-n5pSns-fYB6Cbtfs_GF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'CzP', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N5Pb2|Pb2C2N5H12I6|GU0.75MA0.25PbI3||0.88|5.6000000000000005|0.61|0.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|HjxJbSnTvLZVnyP_qq6uXsw61AhL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.75MA0.25PbI3. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5|1.6380001746618096|1.09|227.7|0.76|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b07916|Hk1FXKszekClDu0vBRaZ28oVyNrT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -C4H24I4N4Pb3Sn|Pb3SnC4N4H24I4|MAPb0.75Sn0.25I|1.2400001322226155|0.728|141.6|0.64|7.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja5033259|Hk3hCticUXGsLft3wZl9w3K7Lx7f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.75Sn0.25I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|190.0|0.706|11.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.010|Hk4RaId5ecbANEd2XGhxpXDZCshZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.625|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|Hk84lxu9yOSrBpViUMz5UJNq9Vmm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.1|0.7490000000000001|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|HkEs-dpI7V3emG35ngqoOaAoyOUZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|183.9|0.698|11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-MeOPh', 'Au']|['FA-MeOPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04179h|HkXgueiRWUocF3EYgvnrx-rFTUuQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-MeOPh', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|175.0|0.52|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1116/1.5052287|HkZBdTYZzur6-JAWPQtm_fxdSXwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|206.1|0.73|16.53|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201600594|Hk_9pXNzuG7hpbSvg_6z5eGpIuex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|229.0|0.649|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201602736|HkjYokEQNFQpXyDqJT0RmQvEg5z3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C80Cs20H414I250N146Pb75Sn25|Cs20Pb75Sn25C80N146H414I250Br50|Cs0.2FA0.66MA0.14Pb0.75Sn0.25Br0.5I2.5|1.380000147150975||||10.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|HkkCTrd8RgA3Qwo0c9hi3AAkw8qu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14Pb0.75Sn0.25Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.9|0.757|14.54|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|HkoJ_O1SsgehhuDA-Bg5jMMRTLlh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.0|0.66|16.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|HkpIKvFdSXLs4NPqQ0HjBGvkASju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|225.3|0.745|18.34|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab55a1|HkrmOfDw8LGzzj8DP3l7zkaTQo5Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|179.4|0.64|8.89|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Na@Carbon-nanowalls']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta07730k|Hl8ChRqnQ5fTyXWaW2SNBvTa4ooo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Na@Carbon-nanowalls']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.857|5.0|0.3939999999999999|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|Hl8pV2gItGFE_C3adTW6WHf4jJHD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.072|201.0|0.679|15.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|Hl9X7gU4wVXSx8NwonD_xg133m_F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.556|5.36|0.434|0.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC05|HlD91CS36EVfey48gGBCP3Ju-q1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|159.9|0.662|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|HlFk8te8an7opJVXx0VeNsFel_2I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.078|204.4|0.6709999999999999|15.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|HlIyWuNzn-XL_h31zhoD4kAnYK5T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5429999999999999|201.1|0.688|7.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|HlJ1cUkqVbC4SzRHd8wAOtX0jc1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.0|0.66|15.0|['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|HlKU8HTcqvPEo4NiLP4x7oXNlOaA|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|105.9|0.68|6.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|HlXhHFNPNf0uZ1LdVQjy3KSvYSxz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.4|0.75|17.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b02406|HlcrNRsLSQEU2VDGl0NJL7Kp3hMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.7|0.594|13.9|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']|['TPTPA', 'MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|Hlct7XLKuqlAkfVNJHvC3w3gtSh3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|181.7|0.768|14.01|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|HldeePwgZ6d7OM70E-QxBflK7GGh|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.52|203.5|0.63|7.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900285|HlkWAZLwo-NfX91pxYqm-TefmHfj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|212.3|0.7659999999999999|17.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|HlnAGYMHFQZsbuFhCKVcClZquk1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|186.8|0.662|12.7|['PET', 'ITO', 'TPA-BP-OXD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['TPA-BP-OXD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9tc03941d|Hlnr0Va_llLyztUHurQ9mOIHdZDU|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TPA-BP-OXD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.10000000000002|0.76|12.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra24616h|Hlo-a1mg0dk6uCGB52mCS5HPUBrd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH98I17N35Pb20|CsPb20C19N35H98I17Br3|Cs0.05FA0.8MA0.15PbBr0.15I0.85||1.08|232.0|0.774|19.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b20264|HloFQyeRkf_WjUmSE98TAcJTw7Jf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.15I0.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.058|209.3|0.7340000000000001|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Ben', 'Au']|['3,6-Ben']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|Hlz2_km-Ex1bgvsCqcT1zDMKP_y5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Ben', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|175.7|0.632|11.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5004627|Hm-4YwkkBVF6TCXsC0FU0PJUnHzH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|227.0|0.792|18.0|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|Hm6i5CNw32czlTs1EP7-gH3Criqv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.41|67.5|0.7759999999999999|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|Hm6p97EAZ2lf6x7U7f3PqGnuCPmq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|152.0|0.72|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|HmA9QF3IncsVTSVDC-CH8q3FXkxm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br100Cs100I200Pb99Sr|Cs100SrPb99I200Br100|CsPb0.99Sr0.01BrI2||0.938|143.0|0.622|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b00937|HmBf-mF8dM6aT2Z-cQ_gESyJfXBR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.99Sr0.01BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||200.0||11.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|HmC7G90y31-EqioDyitbZiOPYvis|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397||||13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|HmS9sAzw1_p0EfE1fHKc07McEgNl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.0|0.72|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/coatings8110408|HmZnjtEoxv-fUy3AeTu6q-prSq_k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.0|0.51|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|HmgloTj7g08SVnzlcp2Aiy1fC_uN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi19Fe20LaO60|LaFe20Bi19O60|Bi0.95La0.05FeO3||0.95|25.6|0.616|1.5|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1021/acsaem.9b00722|HmnsuxvvjmqVQYDavTxwWSnXCFXo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is Bi0.95La0.05FeO3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|212.1|0.78|19.24|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta07617k|Hmt2AxJIQYdKemfFogXZfWtqIjH2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|0.021|11.2|0.784|17.96|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900231|Hmv5VeGg5d0K2Tw0Oa5QxQLjMQhA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.06|211.3|0.71|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|Hmzx00n1ZzP3ZxQuUqy1u7DPxCqH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.647|188.0|0.418|6.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201501264|Hn1q028tbvNK2cmtWlo4JIw9wgVP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.59|10.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201606156|HnAuXpvIl9immPMvaG5myk7MfVmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.0|0.69|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|HnOTMMbe-3GbpEVevvKZVjxIsEM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.13|226.9|0.727|18.64|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|HnTTy97_v8hTMas7dEedhET2CECx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.085|222.4|0.76|18.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|HnUlsEWamZ-IDl90oxk0Pa9p4qEJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.017|225.0|0.708|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|Hnaj0E5sQ59_aWotA5uW3n_EHC8q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.2|0.67|14.78|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|HneHFEtE6sU-KXz1BPe97rJukIoO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.05|180.0|0.74|14.07|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|Hnivklrq2pr9NKSDGCKwkbIQZgVU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CCs4H6I15NPb5|Cs4Pb5CNH6I15|Cs0.80MA0.20PbI3|1.7200001834055632|0.84|0.579999999999999|0.46|0.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|Hnm8Nc_ezaGB0fLAyuG7913VfwCh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.80MA0.20PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|38.0|0.43|1.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|HnsPa8pUewusZ-V3_Z00O0u78ZHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|220.1|0.8|19.72|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|Hnswa9ntJFIDchzumORqrtNayR-z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.09|80.19999999999999|0.777|6.78|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|HnwAdHgk9LbbDpE6vMVxzX_zN34O|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|127.8|0.6729999999999999|7.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|Hnwj_8xZe1Z8yi59J1_AmACtEI5a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.500000159946712|1.15|222.0|0.752|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201801169|Hnzl9TwQTDJyV2BXZd2b62ybqw-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|206.0|0.71|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09314k|HnzvSa9uZ21NbGFu8bLwbYr1RfgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|Ho1LfZqqjeyyL4wbMx0WACe0oEsL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.1|140.0|0.71|10.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|Ho4WShgxzjwEnjSZChOTuPNjvpIF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|209.2|0.748|15.12|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ra14372e|HoDvXiuFMo1hnUDk4diRyZHHry78|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|219.4|0.715|15.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9nr01836k|HoK24IT9gNLf8K-gx1HpDUraItO2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.01|222.0|0.68|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|HoK2fSXq3kAcPSVtTllkmDNwTDAK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.02|225.1|0.6729999999999999|15.43|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|HoS2oA1iC1iK66Nv_j-o9LS8OKh3|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|102.0|0.6|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|HooIwA_IoyN_HhMob1VkgTlRySnb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|189.5|0.741|14.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|HoybDyZw_It7d9XU6FTQpURDKvBW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|140.0|0.6|8.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta08019d|HpAu7behhhJE5x0n5SaFtmsuAuCt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.0|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|HpEYH_j6YQ2heWOBO4-eXdMR0YoG|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|208.2|0.659|11.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2017.12.076|HpOVnODtD4moGi_GUnvU0C_S6Qef|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|227.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|HpVUpMoU6TEC-t8GwXBoMtCnEDiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|217.0|0.67|13.58|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']|['P3CT']|['PFPDI']|bulk|https://doi.org/10.1039/c9nr03030a|HpYBhOpVzxcAa4_G2itI2BjKXCeD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.46|['SLG', 'Au-np; Graphene; TFSA', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.9b02336|HpZOBJ1SVczhliH0CJHsAmK9WcAO|a perovskite solar cell with the following device stack: ['SLG', 'Au-np; Graphene; TFSA', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|235.0|0.629|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.092|Hq5cM8FKtkpCU-3xIoyIbNifRL9j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H507I279N193Pb100|Pb100C100N193H507I279Br21|FA0.93MA0.07PbBr0.21I2.79||1.13|241.1|0.7879999999999999|21.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np', 'BSO-mp']|bulk|https://doi.org/10.1016/j.joule.2019.05.018|HqCiL4JhlC_3n_d6JaSiOAe2zOUC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.07PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|152.0|0.77|10.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acsami.6b02169|HqJ5vUNEEPpb2E09ccWbdJQfr4Y8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag2BiI5|Ag2BiI5|Ag2BiI5|2.2200002367211344|0.63|44.2|0.5760000000000001|1.6|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802051|HqLZuvr9MObcwYV3UCgqsN-DF3fU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Ag2BiI5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/srep30759|HqNWwRcs4wXf968AeQqlQfVOHw54|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|244.0|0.784|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|HqO4nR3bcA-IDYlWRtAB2dN1xJKT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|161.20000000000002|0.6|6.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|Hq_btmKvlHdj7ZCckFMT7K3aMgiG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -I3PbRb|RbPbI3|RbPbI3|1.98000021112966|0.62|35.0|0.47|1.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.07.011|Hqp87uJOetNj_roicWgJLjXCjAir|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is RbPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.9|0.76|16.67|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|HqwKqXvQPsJ1SwEuBikLXzQkb-wj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|216.0|0.6759999999999999|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-th-ZnPc', 'Au']|['ZnPc-th-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|Hr0kcj-EHNQ1JqqtCFR1hNXo9oFF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-th-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.701|35.0|0.6|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b11584|Hr1IYW5nI1fekJYZ7j1ZKz_RdKnS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.47|10.2|0.33|0.16||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|Hr1QwI9glQtHlw7-V54Tx8h7N2-V|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.0|211.5|0.524|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2019.05.015|Hr3ProtlJVq8nCqU5vgW1pkcTqXE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|100.0|0.7|4.0|['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanospheres']|bulk|https://doi.org/10.5229/JECST.2018.9.2.118|HrCBuprFUhlSSpB3OJTrmrrG8Y96|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|1.04|188.0|0.66|13.0|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuI']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/ente.201700422|HrHF_xcho_3b6IIaLMSu7pgP0Zru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|HrLMfYIUgK1g8Edc3rdkhiD460Vl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.0|232.0|0.8|18.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|HrRWM0JVunwJiHyolLELB-6Wiyin|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.07|231.8|0.752|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|Hrj6CKhXCixqdrxZhfLZvtoD82hW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.7509999999999999|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.05.011|Hs2GF-qGpxZQgAzuDEUrskAgWyqI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|Hs5KBm8vQvtZLeKdYe1OsT0J11X3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|199.0|0.55|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta10871k|HsE6QIZ-QGukRYuEvDgBaDbaDP8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|194.0|0.627|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|HsHF0vUqrZCW6k9lge2ZIORH0Wgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|173.0|0.612|9.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|HsVv2CWP2OCenDajJlRtp_IoWV7z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|184.0|0.599|11.6|['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|Hsfdy9IyejyMKvIQJDT6rBMmDkp1|a perovskite solar cell with the following device stack: ['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|212.8|0.465|7.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|HsgmpSmmw3mlLxbOyXWRMTTRGUVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|35.0|0.48|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|HstYKq2ZInxJ-c3B09HQyrkq541p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.17|143.9|0.6579999999999999|11.03|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/advs.201801117|Hsxm_0AKtKBT1N-7SX4MSLhO-MTc|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.036|214.4|0.619|16.34|['SLG', 'FTO', 'CeOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CeOx']|bulk|https://doi.org/10.1039/c6ta07541j|Ht050545tCVbnlANGWPEw862K3AK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CeOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|136.8|0.52|6.62|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'Bphen', 'Ag']|['Graphene oxide']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra08680f|Ht0aN-FPwxz0NUaRNVvCEddh8nfz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|227.5|0.769|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|Ht7Z4saE96C_P2HXgEGhuz-7BqY4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|202.0|0.74|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14559|Ht7eiznEgp7vZMljCumkNIXV7uID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||15.19|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|HtCWeyqqVZSpwTpJXGObZwfZIdel|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.1|0.728|16.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201700169|HtEpoXLKjc0uFLzHPfstWGWZoz7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|198.6|0.748|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|HtLoIv7IOnrLQ3Mdb8bwIPEnM0vb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-MeOTAD)', 'Au']|['TPB(2-MeOTAD)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|HtNnadQS8hu77XAifOElUYsSBiZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-MeOTAD)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.7|0.68|12.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c5ta02265g|HtOdQ1r0KrwRwNNMptJ7S-mlD-sg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|188.0|0.57|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02388b|HtYT8to29Arg77DIHPCL0S_64fL_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|172.8|0.5|7.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09925|HtYZYBEoMf9ru_twMuPFDUt1GUib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.98|198.0|0.7|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|HtZk68jnG8WCKyjWbEmFJRc9jKxk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|174.1|0.6559999999999999|13.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|HtbxLj69edRAeqmqXkKyOPduxtp6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.8|232.1|0.69|12.81|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|HteAtryQieRxLWSinbaPcGxtIh_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CsI6RbSn2|CsRbSn2I6|Cs0.5Rb0.5SnI3||0.54|22.200000000000003|0.58|0.7|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|Htsy8FLjUiANhn_axWKC0_UUEB9W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.5Rb0.5SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.65|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|HtzTDJxd0Fo_jAxg_0cwzygcsQI8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.5|0.78|17.55|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8nr10125f|Hu5TuMWTTYLbJyJg85n9SOeDGdVT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|235.0|0.76|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|HuFvc7Wsx8755l64PcJlsxVGt6jj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|158.80999999999997|0.77|14.98|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|HuMV8Sf-Pr-T7iYb926Re3dwATmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|195.0|0.8|14.0|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|HuPO66N7rDan-Bg9fcZ9tJC0UXGR|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.0|210.1|0.7|15.01|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|HuRvCYP-0GmmHSjn-wdmMxlszLGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.0|0.759|17.08|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201900241|Hug07EtF5phOimbIGHMtbuIcejRI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8909999999999999|217.4|0.684|13.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2017.12.076|Hv98mOYws6UYfDG_WJI54hM--9hz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.1|0.597|11.15|['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['Al2O3; TiO2-c']|bulk|https://doi.org/10.1007/s00339-017-1326-2|HvAF5uCPnwkNUGNaBlhL11Nz94sb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|121.5|0.479|4.93|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|HvF2ngJ9wE7V73at_6KDI8dfqh0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|HvSbnQoVGDzjRYSjrw3CPHBoq3CV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|202.0|0.51|7.99|['SLG', 'ITO', 'ZnO', 'ZnO-nw', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.spmi.2016.12.012|Hvi5Kh06vyChqWIlGJqoA9uLuj-Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'ZnO-nw', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.224|150.95000000000002|0.7|13.0|['SLG', 'FTO', 'Mg0.05Zn0.95O-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['Mg0.05Zn0.95O-np']|bulk|https://doi.org/10.1002/aenm.201902708|HvmA0tHoVUEEDWsdSHKzyEoqELJo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Mg0.05Zn0.95O-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|132.0|0.512|6.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|Hvq5tbijkHezXHK93cxLKJilQji0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C85Cs15H442I240N153Pb100|Cs15Pb100C85N153H442I240Br60|Cs0.15FA0.68MA0.17PbBr0.6I2.4|1.6800001791403176|1.1|199.0|0.737|16.1||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|HvwQU6nurPPik4jJlFiVE_ur2WOs|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.68MA0.17PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|182.7|0.706|13.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226894|Hw2QXSqPFND5bSkXZmfOYZusAIEa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|216.0|0.6609999999999999|14.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Zn-ChL', 'H2-Chl', 'Ag']|['Zn-Chl', 'H2-Chl']|['SnO2-np']|bulk|https://doi.org/10.1039/c9qm00377k|Hw3wayarMQd6AyjciLuVepw22ohy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Zn-ChL', 'H2-Chl', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.38|219.9|0.46|3.83|['SLG', 'FTO', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['none']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|Hw6DR1SA6_eYNVmR1dwAxhLitiEq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.93|31.6|0.43|1.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smll.201700611|Hw6JnNozoOWPtwR0Ap2cy-5azwxh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|119.0|0.49|5.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1039/c5ra08102e|HwA6067b9W7cbJ7OiYM4MAYVKXFX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.6|0.73|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201604153|HwBIM_SNEeQj8bFwb3UQLneyGcqk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|183.7|0.66|11.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pssa.201700281|HwQDcYBY9UqqAuIQ9AoIFod1eAwO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3||1.07|220.0|0.76|17.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900474|HwSIr8bGYEOXySZ4KhbpCt4JQuWu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|162.7|0.736|11.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|HwWRubk6QCSleJzJ-Q9AT9V88rGv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.2|0.741|17.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta01143e|HwWS2bgVo9LBq-QOOvKcXfzgEW02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br20C95Cs5H486I280N179Pb100|Cs5Pb100C95N179H486I280Br20|Cs0.05FA0.84MA0.11PbBr0.2I2.8||1.18|233.1|0.7929999999999999|21.81|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c8ta04453h|HwXep85lX0o3UIcWrjcNHgnQGIdQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|230.0|0.54|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201900481|HwZkfY0O1EfsBzVmk4WU_1IPpI2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.0|0.7509999999999999|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7qi00685c|HwhaFR2EABLG2b6jvEn8UeUdJtPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.1|0.79|20.08|['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|Hwop1DXzryb-7VEJ-PSQGeOCQv4W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.4|0.72|14.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3791/55307|Hwsqgr_q9UmgAmNbsSqRS7SV6cEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|2.020000215394906|0.785|103.5|0.583|4.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4fd00128a|HwuQlLh8TpOt6z33VQEKZlWPU4H-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|168.0|0.69|10.2|['SLG', 'ITO', 'ZnO-np', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'PEI']|bulk|https://doi.org/10.1021/acsami.5b04695|HwwIgvNdt2_t_tJbbZxcjqyvP_4Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|191.0|0.765|16.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ra01501f|Hx-OhBGAgs8eDhWqnFz8edTbE3V0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|171.0|0.36|5.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|Hx1REdLJKrgmBWjX9dsfiND32pjk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|174.0|0.48|7.5|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|HxCiTR2BdilQM1G21QVcRXWUtjen|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.03|201.6|0.65|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|HxD2tcnK8FVQVOd4LypUQUg8IuoK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.7|0.67|14.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|HxLSBwk_IGmCefcYrqlV53l-hzvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|156.0|0.74|13.0|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adfm.201905163|HxXASOwJsvo-mjWdlcjifi86tZB9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.76|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|HxXvmkyCHpMSIXFOi7N2w2EkmkKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|150.6|0.495|6.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.206|Hxc9Huj_A9IXMKV4mQv1-tZCXVB4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H50I27N20Pb10|Pb10C10N20H50I27Br3|FAPbBr0.3I2.7||1.04|168.6|0.615|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|HxcCzfX6-m0CTqO_Ngfkqc0k5nKj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.9|0.73|17.74|['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol (15 mM)']|bulk|https://doi.org/10.1002/aenm.201702934|HxfIKFJ7E78JhZaVmnIMl13oSFQ9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|92.0|0.48|3.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2016.12.050|HxnGXyp-8cCTOd-lqjf7ytZWAlpQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|180.10000000000002|0.36|6.78|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-2S', 'PEIE', 'Ag']|['PTAA']|['2PDI-2S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|Hxpz65ZQL9JWeKNTq0z3_WQqH8GV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-2S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.2|0.79|19.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|Hxwe3DLIESj1mJsl0rlilUKw44vv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|Hy2lqV9wMYXfcjqYHdsER-nq5v8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.62|40.4|0.3829999999999999|0.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|Hy5Jvvz-F0keygavEIX4UHciavJk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.607000171356244|1.1|211.5|0.754|17.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b08026|Hy87MwOBlKM5B78IvN7mBnQviKK_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.15|207.5|0.58|13.93|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|Hy8SdNOVp--XiiisePWQvZqzCTMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.8|0.76|16.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|Hy9_4MKlFRJqXoPzJLuUhr4LvUCG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.1|222.8|0.711|17.44|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|HyWO9kyHPS-AGVpd6QDePlu28YjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|197.0|0.64|12.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|HyZPpEmBYHFe99pFoXht5ZElb3xg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|1.1|204.5|0.6809999999999999|15.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|HyeQuWWktppEtBciqzZCVhmOXXsY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|76.0|0.74|4.5|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1039/c5ee01169h|HyloQpI5BAlyAMyTgTDCjPZYyQz8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.718|97.0|0.66|4.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|HymylcjC-wDkuXADsWIKqBIKCB4P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|200.3|0.581|11.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|Hz4B2P2msUi6Y1V4SlAM_2uNn3Lr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.06|188.9|0.73|14.55|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|HzAbEy_ZxIeMnWGDudRC4Def2FOl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||1.06|190.0|0.65|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|HzAgvxFj1W6WV6NSHg7WcUO7NqCd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.7|0.73|16.36|['PET', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['CzPAF-TPA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|HzByNzfYV9RGBIDsxPWSEcZSsMRv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.019|9.9|0.629|12.11|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PCBM-60', 'Au']|['PTAA']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800240|HzOOUavWPiAmgkbzJqYHa7ftPWmg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|183.0|0.6|11.75|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|HzXjpUsjE51FgSLo43Wtra2YJBqu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|237.2|0.752|16.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00981|HzcztSaREeSM_dvM1UJQuIwRdB8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|201.0|0.6779999999999999|13.87|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.3866/PKU.WHXB201803131|HzjWIByof_enepeWBHCIQn5EmnG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|227.8|0.775|19.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700213|HzngHgPq5CGp0SNHRvrqQWCcI7OK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|85.3|0.6|6.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|I-5jCEzqyTBpozyijVH55i9yJsn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|199.2|0.523|9.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|I-DRqkjrHt144F5Ctc4aBIXDYUdi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.172|46.0|0.599|2.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|I-Gq92j-W30Fth88jBes1Aw_udvd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|235.8|0.644|15.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|I-HEbUTqNNTxhUse-4l2IFIpgud3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|160.0|0.55|7.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|I-JoR7hGZ93e1DtnUrTkuWlIA0Kt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|178.0|0.69|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b00793|I-K-nFNLfMt6cLE0Ywm90GfNgzjJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.06|196.9|0.69|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b11759|I-NBOyZvffx94IU6Br1RMiC50jDG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|125.0|0.51|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/7545914|I-NZFGQZVpBbe2fuhc-zzEHEUISe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|186.6|0.778|14.52|['SLG', 'ITO', 'PTPAANT', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTPAANT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.8b00919|I-cLZJnNW-TOEIjLkfuww0QOPpP_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPAANT', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.152|214.5|0.72|17.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|I-d79VnGYPEbVtq_NmmV_5--oGcm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|200.0|0.7|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']|['PEDOT:PSS']|['C70']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|I-qvw0K1EO6YSMCiVLjCfSBUxEFO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.41|27.0|0.562|2.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Th-PDI', 'Au']|['Th-PDI']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta04828a|I-xSCFWXUU_8VktcAIBZJOBtxitA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Th-PDI', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|220.0|0.64|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.35848/1347-4065/ab6866|I-z9lQsZd2ZAY9gEZZNSY9qM74T5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.1|0.77|19.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|I07ES8cfbVTvc5K_kytDXUxF4wiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.8|0.77|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|I09rLFOVX7UQlwBgGxNOuGEOMvVR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.95|210.8|0.6579999999999999|13.05|['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|I0EaI9JS-5PtGkqZtKbJoAmM6Yhz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.0|0.78|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|I0J1icx3pP_um5JnKz1AAroeLYiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|174.0|0.51|8.63|['SLG', 'ITO', 'TiO2-mp', 'Perovskite', '4-(5-(5-(5-(5-(5-hexylthiophen-2-yl) thiophen-2-yl) thiophene-2-yl) thiazolo[5,4-d]thiazol-2-yl) thiophene2-yl)-N,N-diphenyl-benzenamine', 'Au']|['4-(5-(5-(5-(5-(5-hexylthiophen-2-yl) thiophen-2-yl) thiophene-2-yl) thiazolo[5,4-d]thiazol-2-yl) thiophene2-yl)-N,N-diphenyl-benzenamine']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.07.016|I0MyiYUfxtYwyhEFgTD69j7odN1-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-mp', 'Perovskite', '4-(5-(5-(5-(5-(5-hexylthiophen-2-yl) thiophen-2-yl) thiophene-2-yl) thiazolo[5,4-d]thiazol-2-yl) thiophene2-yl)-N,N-diphenyl-benzenamine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|203.0|0.731|15.7|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|I0PDWTH2B5DO5ABK1oqgsZUI-zcf|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|219.5|0.757|18.3|['SLG', 'ITO', 'XY1', 'Perovskite', 'C60', 'BCP', 'Cu']|['XY1']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103946|I0QkvvQcNcJIVqpYbVoR1nELz_6k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'XY1', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.13|210.7|0.782|18.68|['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|I0RrXgaLsHHSsjIt-obs4iGpEADl|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|151.2|0.69|11.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|I0TqvUc0jteMModXu0yQmXQD8mG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.994|176.20000000000002|0.77|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b09160|I0V9b0JL_7f1bQnYAtPkKFos2-EY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|86.30000000000001|0.315|2.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']|['4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|I0_in_CZQb-cPQ--EMcm9iIO9NNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|222.0|0.67|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.060|I0huNH0khzePt4CwHAW-POUzMvOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.83|145.29999999999998|0.46|5.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Au']|['Graphene oxide']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02710a|I0iTn_K_TBkODPAG2C9fU7wzSCJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|217.0|0.71|16.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5087796|I0n-aP67i4zVsbhu86OiRo-a85_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|201.5|0.68|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700597|I0vQi2nmHnChPEwWGFt42Tg0tQtP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|1.07|0.723|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|I1-R_JTbsLT778yLf5WVFap6GVm1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.0|0.725|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|I109VVs9k-ep3Clc8KXazyLQGMaL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.099|211.2|0.728|13.91|['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|I10CJS8ozH7jvakcXEpAPp1fYqyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.0|0.74|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Poly-N-vinylcarbazole', 'SP-11', 'Au']|['Poly-N-vinylcarbazole', 'SP-11']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09314k|I14vspY1HU3sIjdsYKiIlPo6590M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Poly-N-vinylcarbazole', 'SP-11', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|170.79999999999998|0.59|8.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|I1JA3duggVcECPx0rcLid2GC604G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.0|0.7|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.013|I1O-I0Qq9mrwbKE8EPFkBQtI1qLM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.2|0.623|14.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|I1Vlniua9ochG5xs3MKqR4Op9o2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|80.9|0.535|3.63|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|I1jCNOy0fHf3HyAfDyI7Uc6XnGZe|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.21|152.0|0.7|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|I1pU3xHhQSnsHEp67L-SLhLGBpUV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||191.0|0.7170000000000001|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|I1tS9FuAZQYWcRGqwagJLlQFY3nR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|170.10000000000002|0.61|8.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.10.019|I1uQIuEoZtrOQGL-BePHBO4pO_ED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|131.0|0.68|9.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|I1yRb9-U1AfE7zwFs9Q46hSxw_Xd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|138.1|0.541|7.48|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|I2HttW6kXjcPjMqBdCvglfeXooOn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|200.0|0.74|13.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|I2Jd8YkB-Z_Itl5X6fgHvLYiXJcj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.79|178.4|0.487|6.86|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3OT', 'Ag']|['P3OT']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b10651|I2LNdYsc-DfKI9fChyUuP9mO8j1Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3OT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892||||13.24|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10773|I2RQS5e1xBB5OIKFC71hVPkvgCaa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|198.5|0.48|8.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|I2_isT0JqoXXS11JAVDv75Ep32LG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|210.1|0.62|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.102|I2cc2ZjYOLf1jdhKt31RzX0icEVG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|1.02|199.6|0.67|13.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.009|I2gREX-jVF_F_OOPamNwftZk-cg4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.799|171.0|0.623|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201700268|I2jVAlc8S9vJgadwVR7qUHmmyZ7Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|139.1|0.67|9.22|['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-nt']|bulk|https://doi.org/10.1021/acsnano.7b07559|I2klg69SgzyM8sYp_1Xh4HUX0qhL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|189.0|0.7290000000000001|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|I2qzpbG6WaBvNi95qJi11H6lU1iX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.41|24.0|0.55|0.54|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|I2wczLV9W79218r77YlxsmDfHaNB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.807|156.1|0.807|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|I2y-YQsz9s0wZVxKHraxFlbuxxEN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|206.0|0.61|10.78|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c6ta09174a|I30OfC6rO2ruv9uKNAvSuxgIHQm9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.2|0.742|16.34|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|I327eqSR1mDyet59BWlnLi5vN6yY|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.8|0.73|18.62|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|I34FRzBllm4FLZqLWKbUdUVzp-Yt|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|I36TE6gCVa8ZSWnVEHkyVDFLLwhq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|144.0|0.56|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|I39ORqJj-PPZ_E59qvRd0cgoBE1S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|204.0|0.66|13.1|['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cc04685d|I3D8QwgmtSqqqmHsBvM8lEbL-eL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.7|0.63|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPE-TPA-8A', 'MoO3', 'Ag']|['Ph-TPA-8A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|I3DVs6FHM6n7Ha6tupO-sesf_UJ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPE-TPA-8A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.04|225.0|0.675|15.79|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|I3Dg-N6shC-354HVVpQfPhRJH_Cm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -C5H30I15N5Pb4Sr|SrPb4C5N5H30I15|MAPb0.8Sr0.2I3|1.628000173595498|0.91|111.9|0.72|7.3|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.047|I3Ppc0HTNdumqy2ftWB6EVguw0xK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.8Sr0.2I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|232.0|0.43|9.5|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1117/12.2251885|I3VxaHknOFxihd8tyU4V4HPm754U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.0|0.775|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO2-np', 'Au']|['MoO2-np']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2016.10.110|I3qvkRfWaTevgKw0dBHfUW03Dx3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO2-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.122|216.1|0.745|18.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr07933h|I3smMochCk0cmX6oODGEEsg9Q3lb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|172.0|0.57|8.5|['SLG', 'ITO', 'H1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['H2']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.7b00208|I3v9_xe3PTmHFS9qcVsjhaSUCl1S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.87|164.8|0.539|7.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|I4NqgCXjCUYGQ-nBX57ygAcK0VmF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|211.1|0.74|17.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41565-018-0304-y|I4QgN7jwKa6k7bD1K4iW1GUvWBFQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|209.9|0.633|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|I4RcDMPZWEVcb8L0EOnljss6GIrS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||16.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|I4WZtc7gRHi8RLIqAV_rPBDLyVTC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|150.6|0.7090000000000001|11.86|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|I4YoJPkBUwqz6huUILsz2FkL2nNe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|217.0|0.73|17.0|['PET', 'ITO', 'SnO2-np', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'KCl']|bulk|https://doi.org/10.1021/acsaem.9b00391|I4aJFSp5ZYpsE4HwIImWJKG3Mo3J|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.1|153.6|0.77|12.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta08203k|I4xb8EsrKYBI7VSQ7vI6XbxTQRYf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|67.9|0.762|3.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:ON', 'Au']|['M:ON']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp91904f|I51k5eTgT04L8P4EnEJ-dlGVhR1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:ON', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|230.8|0.75|19.05|['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'P3CT', 'Au']|['P3CT']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta05048e|I54-sk00LDaGTTLU4blk_9_edZB1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'P3CT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.698|14.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuBuPc', 'Au']|['CuBuPc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.019|I5DRVxM2rTbdpNqBUtZFVl9tGW0-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|201.8|0.75|15.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.09.293|I5IDKzzQtrXDFLH3Czw9eo7jDTZi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.775|74.7|0.437|2.53|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2016.09.014|I5M5xGHNRrIzNFNuN4am8t-vHTLC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|172.7|0.596|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-015-0711-4|I5Q_09_OaO9sjeI93JkQCFUAn3RA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.9|0.67|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9RA01625B|I5UCaSUFcBxg4pu4Td_r64Yb758f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|199.0|0.54|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|I5alpTlOkpBb84c7iorEE-4FQcKW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.195|222.0|0.73|19.6|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03873|I5cFDMCJGf7Saij3AUvy6GxMIpuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7|1.5500001652782691|0.88|182.0|0.56|6.9|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|I5mE51BXE_qVajj51GIrqonMwA13|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||1.2|235.1|0.79|18.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900466|I5pq3J1bgcsa_G0KWQO7564R0taQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.09|228.9|0.733|18.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104673|I5qoY9KELHUuuExQacQMd2mbjzem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|152.0|0.536|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b00571|I5v-Y2VJCxQB64aZyLqfkJZ32-nx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br64C250H1275I186N475Pb250|Pb250C250N475H1275I186Br64|FA0.9MA0.1PbBr0.256I0.744|1.7000001812729404|1.131|171.4|0.6659999999999999|12.9|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|I61RTLsm5305_30ccy1twewhwv-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.87|103.0|0.552|4.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|I66izQ9UGbQR_1S3ZuBPl3NZ6ilk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.0|0.51|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700265|I6EbsMWy4bQY_rSEI0LGyl0yECsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.0|0.73|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14558|I6I3DXVdJfqManNOc-dDNikQXL9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.05|226.1|0.7340000000000001|17.43|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.8b02079|I6KdkarQo7APnaIGM966urLXVhp9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.16|206.0|0.74|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703057|I6NgDB3wIE7etnAvumK9t-42qeWu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.074|241.85|0.71|18.44|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|I6OkZuSMRd1C_GWBtvnU80sXd3_p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57|||||10.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|I6Xw-s7HJKF567JENcIomX2LZlvR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|169.85|0.7959999999999999|11.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2019.100341|I6bwlJS4WAHl4rJMm7Ofl359QAU2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.932|89.1|0.708|5.88|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41598-019-42962-9|I6eSas5RsCCaj5yG92YKAMFkU2sD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|149.0|0.7|10.6|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/cssc.201600940|I6hLFWXFwoIYx0Mp_-8Wfz79TEGG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|210.2|0.7609999999999999|12.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.049|I6iVJdDNQFlyhEciHd_mUn_tC6kb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|227.9|0.59|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|I6jFsCg2EPk-Ug3Cg3T7soFvwGyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.09|231.5|0.76|19.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR373', 'Au']|['KR374']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700974|I6k0c5Y5QlRsIVymkgyqVRItdFQl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR373', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|164.0|0.53|8.4|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|I6qjjPRoASdxqZzyk-rQ4A8_XRVY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.570000167410892|1.33|197.0|0.7040000000000001|15.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']|['PDPP-3T']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|I6uRuEyTuRLLWjGDQaDqGfbSmmkq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.09|250.0|0.58|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.062|I6vWA7ijEZpPkp0NwYKD_8IXZuf0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|84.0|0.82|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201403140|I73D5pvKb_PgYDX3xdZGd4FmHsY2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|208.0|0.73|15.56|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['IDT6CN', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|I73hqhPquhHLHSMqjJmA2qZdkmNy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.887|162.0|0.57|8.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.07.112|I7B_knwt-pW29etGc3ikDMU0nsc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.0|0.7|14.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|I7Ez4nO4CAK_zV4uY69LpN00nhOE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.0|0.78|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|I7RBzzVgA5KA-BK2uHqwaiMj63qU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.04|207.1|0.7|15.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.10.143|I7WT2otJwsBimuMoiBWOBsJ8W6zd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.5600001663445808||||13.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|I7YLuF-0g-wxMnP-rprdMhitwzLV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.6|0.78|17.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7SC00077D|I7elfy9lYr1YeTYnZzlyuySScCLA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|229.0|0.69|15.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201400355|I7hn7K432EPBEke6bVkSUY_rymd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.314|0.72|0.38|0.02|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|I7hnU5NET_o3QAyf3Bcg_gYQ9Abt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.605|133.1|0.513|4.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c1nr10867k|I7ircSM6JZMhjY7SL5tzDqWwhkDa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|234.2|0.75|20.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|I7jDvOut1k3fepyeeL65kY4uYSpY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|220.3|0.377|7.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|I7jfd15sa-3GfGAyaB3NYjJ05zNf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|198.5|0.78|16.45|['SLG', 'ITO', 'TiO2-c', 'PCBB-2CN-2C8', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBB-2CN-2C8']|bulk|https://doi.org/10.1021/jacs.5b10614|I7rT6kHBILknWjGFfmPpFaYHxinA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBB-2CN-2C8', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.7559999999999999|18.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']|['DR3T']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|I7xyrJMM8B6HOEbqfi01FnHGtSDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|217.2|0.77|15.76|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|I7ylnhJdy2b_aak5RjWbCn0r8kUc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|226.7|0.6|12.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|I86fnRrIAxgbD5EYD1OTupf5iJQf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5|1.6290001737021294|1.095|227.4|0.698|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|I88oFzqNA4Vxjlst7LZ-xOkuPpVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.24|36.0|0.61|2.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1016/j.matlet.2019.126619|I8BT0Wn_NhcC4T7BK88mtUK5wIjV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.64|218.3|0.7390000000000001|10.1|['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s11426-019-9653-8|I8Bxwi9oqAXZfOPlNReP1Ldf73iS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|204.3|0.66|12.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.057|I8CEvti6b1lVCPL4jkS-sUR0Vcl2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.995|182.8|0.534|9.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|I8Dnc_EF3dD0QcaVX3ER2uhxrT4W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.6859999999999999|143.0|0.27|2.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en9050376|I8EMAqYaCBhSmdAurc0SmGc6Av_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.17|115.0|0.591|7.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2018.08.005|I8OipTZLsX-EwU4wlYbDP0GABbLZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|193.3|0.639|11.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|I8QY7PpXRW8UyuYBi8VzpWuLIlRo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|181.4|0.496|8.19|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|I8XPl5pYUAnassY24FGTq6AW0-Ja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.6|0.736|17.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|I8XmzKBH_yJGuR1tSz3Wvjjj2Znt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|192.1|0.73|13.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|I8a999K9BEXstiC63TNKpRTRuw5P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|180.10000000000002|0.77|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|I8gEvS5ZCFxs2YfH9vKdWnaz6xnx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|187.7|0.439|8.36|['SLG', 'ITO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1016/j.solmat.2015.04.015|I8teBzuSpX4G866jkgxQ2JNl8xbP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.935|175.81|0.701|11.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||I90tfoHtme4TNOcVbUsSB8o_toJA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.0|0.745|16.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'FA-PDI2', 'TiO2-c', 'Ag']|['NiO-c']|['FA-PDI2', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2018.05.017|I95Pvj82yI_WpRQDXaHsleP0FMy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'FA-PDI2', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C51H301I150N51Pb50|Pb50C51N51H301I150|(Ace)0.02MA0.98PbI3||1.134|225.8|0.743|19.03|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|I99fdvSXh-flJtaa6fxpx5WnHkzg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.02MA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.3|0.7|16.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201802109|I9GW4gpDMHNj_3-cnNVmCnL1k24e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.3|0.74|15.4|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-Na']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|I9Kv6J_7_X8HAXWln_zUPWQY2SAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|204.2|0.635|12.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc01973d|I9N6bORmiognlcJ9C8ojCmh5Ick_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.4|0.71|17.17|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.05.019|I9aVTfRzoBM8dSEPJUE6JvJnJc3L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|191.4|0.7020000000000001|13.73|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|I9hTbwiPxC5Z69ByGavPqciY1Tsr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.09|217.0|0.65|15.3|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|I9iKQgkjD16m4ha_v05XA8KSYa9V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|163.0|0.784|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|I9jd6ouj2myZhyAj7BGwDXYNPTqz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|166.0|0.685|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-BDT', 'Au']|['OMETPA-BDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra18823k|I9n6BN77EqIqD3WwiXUzMhOwbQXE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-BDT', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I11N3|C3Bi2N3H18I11|MA3Bi2I11|1.8000001919360546|0.5539999999999999|10.5|0.41|0.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra07123j|I9s4uQHCe5nQUv2f3r3mZC0UeiZ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I11. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.6|0.62|13.58|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'Al']|['CuI']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta05286f|IA-Icz43Xpb0fXWsiCKMyXh6AMs8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs5H462I249N168Pb100|Cs5Pb100C90N168H462I249Br51|Cs0.05FA0.78MA0.12PbBr0.51I2.49||1.17|208.0|0.76|18.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|IA7DRjtK-xOO_RlGfxyeLpz6QzFc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.12PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC-tBu', 'Au']|['TSHBC-tBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|IAD0G8H3Mx0uhNbQgqmQ-0ZGuLkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TSHBC-tBu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|232.3|0.721|18.15|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|IAD6guR1w0XeLXWxWvJLezW79NgF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|189.4|0.574|8.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnBChl', 'Ag']|['ZnBChl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00018|IAFS4-nztp2BsFqe2K6gpVivPhTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnBChl', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.05|197.47|0.755|15.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||IAdST3SOYRVW1VgePiFpH4S2CFYh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.16|138.0|0.748|11.2|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201802509|IAgo6wO-AeOFapi_YVR5V3-nfPpw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|233.9|0.8190000000000001|20.85|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|IAnFFYYZyixZhJaZdb3jLP0Sd7u2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.0|0.74|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04563|IBCvOAUF4cdSbLiv6_OoIcNQh2c2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.79|167.5|0.66|8.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500113x|IBFAJLkdDaP9iI_J0Owjr33A00Df|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|210.1|0.79|18.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F33', 'Ag']|['F33']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201700973|IBJDoddfLgzemA9xXWNjKeeMU0WA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F33', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|213.3|0.66|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.087|IBQPB6xSRS9-g662ReYA3oeLqr50|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|188.7|0.5379999999999999|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|IBS7xeIh58D1d4C3TC7KmXUg5vbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -C47Cs3H235I150N94Pb50|Cs3Pb50C47N94H235I150|Cs0.06FA0.94PbI3||1.06|237.0|0.721|18.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|IBTAG194TR-nMFmmJBG3t8FnM-xg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.94PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|223.0|0.7|15.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|IBUJUxlfSQqxZ83DyKHi7eJtZuyC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.929|235.01|0.738|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|IBY2Kmmue0XqzSm6s9ArRefxVImK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.3|0.78|15.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604048|IBZQbZTuIAFGgkehso92cUKguTkv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.989|191.0|0.6970000000000001|7.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|IBde75RQIccBqSoFGIxBeDY5TNMK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|229.3|0.72|17.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|IBh3ZML8ruQWKCSlMIVKVTW3ZyI_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.095|225.2|0.76|18.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|IBkq-QTiTyaxaIXtqDVScgFK751o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|194.4|0.638|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|IByl5tdsBJMI0QJKpY9ZSX-xGYBJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|185.0|0.63|11.6|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|IC0kw4xgRP4pXBDgZbsgtaKgel9C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|178.0|0.72|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502009r|IC3uJ_9Nck94IrdNaEdRewSkPH0X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|205.6|0.677|14.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.0c06211|ICKUVmTaFV1RCUJJq9ghwXCy4n53|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.159|101.8|0.5|5.9|['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']|['none']|['TiO2-np', 'CsBr']|bulk|https://doi.org/10.1021/acsaem.9b00944|ICYggIP6XfmRkDaW9h0Q4EkvwTKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49||1.13|233.0|0.7829999999999999|20.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Alkoxy-PTEG', 'Au']|['Alkoxy-PTEG']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902662|ICdYSWxsOEyHpI81d7Kqc2l91XIV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Alkoxy-PTEG', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|198.0|0.736|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|ICdwd9yIFUGgkSjU1oezlD50eiey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.0|0.76|15.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|ICdzVkHbfpK4VDY6bswV-xXt9nk0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|68.0|0.5379999999999999|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|ICfWl8_l20x1ElbUP-FFqsXBVAxS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs97Na3Pb100|Cs97Na3Pb100Br300|Cs0.97Na0.03PbBr3|2.290000244185314|1.46|68.4|0.77|7.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|ICj-PKKRdkO0adttL3N3JbJLyEQs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.97Na0.03PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|231.1|0.762|20.24|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201902543|ICjR7OpKbu6oV9_pGxaIptljTIfY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|223.0|0.7759999999999999|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|IClK7C7kHw38ZxdHJxHr-z_7MtRV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.0|0.6859999999999999|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|ID5Ib5wvwtxtAsjzOqSFMxBtWHDD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C8H32I16N4Pb5|Pb5C8N4H32I16|(PEI)2MA4Pb5I16|1.8000001919360546|1.15|100.7|0.58|6.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|IDCeqPoptEg1NLQxzFGLi950j33T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|232.0|0.745|18.98|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|IDIRDtTjwhQKvMUI8aGCxyEa9BfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|235.0|0.746|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|IDIqbQK9D8zqevedtF54RG6VJZWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.0|0.75|18.4|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-04028-8|IDNhpqfbnsmyS1EBttRECRBt5ykz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|235.2|0.7190000000000001|17.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104671|IDYT84-cHieBO6Thy_uL6bMoFAFu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|214.6|0.6779999999999999|15.83|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603021|IDa9KBHZNxIkzhHeThkqfWVsdvHd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I55N39Pb20|Pb20C20N39H101I55Br3|FA0.95MA0.05PbBr0.15I2.75||1.09|227.5|0.69|17.23|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|IDfLPJZ6k1saqmMFNedD2q84ayfY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|224.0|0.8140000000000001|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901257|IDmy389VyGK84UMboXMr99ELrHvv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|221.1|0.584|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']|['N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|IDpy1074R50bupxw76p5quvhGIp_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|176.8|0.7|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|IE0N1HnWEgbgiIY-L3IjSysBeLo7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|99.7|0.46|3.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|IE2H6ZzVrtdZP1YkaPXD7yrZ0UCB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Ag3BiI6|Ag3BiI6|Ag3BiI6||0.63|107.0|0.64|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700980|IEJ6MJjh0d-Sn__syuP1y5O5iTbk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Ag3BiI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.6829999999999999|7.890000000000001|0.6|0.3229999999999999|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF11|IEL-VAAvCn4eMq2ECh0KeWWfjceA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|96.0|0.43|3.2|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/jp512101d|IERqc4rTtwSleVhVP7TL59ICiGzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|120.0|0.31|3.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|IEi32PP60cDt9-NGPJUiSJOGZ6Gd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|70.3|0.578|4.06|['SLG', 'ITO', 'ZnCsO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnCsO']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.013|IEptzNSjWOS8xPOoqY6U9o03bZMp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnCsO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|160.2|0.575|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|IEqNgfOF9URD3Hx5YuR7swAJ7Mnq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|146.2|0.625|9.87|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.11.047|IEvRXIPb8OBeRit9bodr6NwLHCF8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.1|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|IF4mD9fdrEjKQRV7SaPys0LlxHgY|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|125.89|0.68|8.67|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|IF8jq45T2YvZx5ZPZXuMF5XcEIRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|217.0|0.62|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|IFleVlW6334tGXQfqQY3gktuBqbE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.09|77.6|0.659|5.59|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|IG64HNbwhwbJDH-cpreBfcluyYsh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.95|200.0|0.64|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|IGDnP2QksxMuGsHDREqy7jyazokl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|213.5|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|IGITc3B-WUhqaRE0g7C7iAIGpIvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.782|165.79999999999998|0.516|6.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H-PheDOT', 'Au']|['H-PheDOT']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501423|IGmwhgPq792BW7H-AmKu_a9HP7nx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H-PheDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|220.0|0.799|18.98|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.02.020|IGxZK4sO7X20ExZ7aqVPh0fP4iwu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.7140000000000001|15.2|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|IHHBQLIZAXwYsWN-sDJKfi5U5dom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|195.3|0.614|11.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b11679|IHMqgg7CDqdxnP3jpHT1MdH56pQo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|0.85|196.6|0.39|6.52|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']|['P3HT']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsaem.9b00856|IHQzBUr_xXqnLbHi7Lxvz68-BY6V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.956|220.4|0.536|11.3|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1088/1674-1056/27/1/018401|IHRH9_uYI-RpuJEdpgZLkvaujtrE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.43|295.0|0.528|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|IHX3OrD85ea_iW5KPHk9mGFaOOca|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|223.3|0.73|17.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|IHXLLLGHjfn45A-sOiDYL9AYFnvu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|174.0|0.8390000000000001|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|IHXyMV4MrQt4kdlazuiOllIEusM4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|169.0|0.58|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD; X60', 'Au']|['Spiro-MeOTAD; X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|IHc326uDlkPBUELsIg2RjvUa5Gw4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD; X60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|111.0|0.789|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s13391-017-6239-x|IHg66rKu10nh7vEyp-nwNmJAo2Vb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.767|105.27|0.428|3.46|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4ee03664f|IHuU8Nb9YTxgG6OIZUZ4inXVI_MM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.0|230.5|0.73|16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon-nt']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|IIC7993f8XWYMnXvfL_XXUKJei1S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon-nt']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|173.2|0.64|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01090-w|IICwA5MqsSIXTZJkrZKBSlkwPAO_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|196.0|0.595|11.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|IICxHy0KnBDK-I_Bz5sTypaVoKtC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||17.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|IIPwhAegxZScZrtxXbBdFTtt2buR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.79|146.9|0.47|5.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc05694g|IIQzfbgrHK1B2DfAF_eK1V_YsH6Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|120.0|0.48|3.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|II_GQOMUA8hqikgE6hxZ-PGwLB3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.1|210.1|0.75|17.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b11759|IIjNoc4nx_5proictYMkd8cRNFJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.153|111.2|0.589|7.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900374|IIkWt7VgDlLKKAmGiEeH_62zcg_3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.3|0.76|18.09|['SLG', 'ITO', 'CuI; CuSCN', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuI; CuSCN']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/C8TA07332E|IJ-UEhqkyF_mtTDnw06G8h7E626Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI; CuSCN', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|179.5|0.684|12.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jiec.2018.05.013|IJ4bnZQ5bT-eEYLmovL_zkfMDWLW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.1|0.79|18.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7tc02822a|IJ8XAiyu7t1embNxZzZGB_pZBOi9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.2|185.0|0.68|14.5|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/adma.201604186|IJ9HvC6snlPfM3iPh_bLjLw72M54|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.02|171.0|0.65|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|IJCY47DW9W_L1Ve2q3oN98bbs-M3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.03|231.7|0.68|14.25|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsaem.8b00681|IJHcMLml2X3M04KltaG2ZOvR35fN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|187.0|0.42|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P3', 'Ag']|['PEDOT:PSS']|['P3']|bulk|https://doi.org/10.1021/acsami.7b10365|IJNiHCU-nt09xjZj19iYTh7H-_H_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.067|218.2|0.8059999999999999|18.8|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'TET', 'Au']|['TET']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201700175|IJPZoOEIdSiFWvWNhWCvi6-c5Juj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'TET', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.14|231.8|0.73|19.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Butylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|IJcNohivxBjb0M11qFwZwzq12U1C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.0|0.74|15.1|['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|IJq1R26jZUHzs6gtOOsZTsUR5-0B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|0.907|216.0|0.691|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|IJsPo5plu022cWQgpTon_aarKZnL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.1|0.75|14.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.orgel.2018.06.043|IJt9M2AcpcY2u4mpMZ0rKOuNdOeF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.0|0.7090000000000001|16.89|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|IJyzyNxNpGN0RzDOa-xhekbGx85G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|147.0|0.67|10.2|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.273|IK78zvN_T2IppUJ1LXP7HRmtr3Op|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|180.0|0.44|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|IKIUMiiMCVoyrCKHLz3uDypZFN1m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.2|0.67|13.26|['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|IKQPin7B2exTtnSrgDLblcinZ0VW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.7170000000000001|227.0|0.5529999999999999|12.0|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1002/admi.201801788|IKVvmUH4sKY4bLZ5ollVTjFrz5in|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.8|0.57|10.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|IKbqLdla1ynaYFKuHbGIxP13PKaJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.06|215.7|0.597|13.62|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|IKfc2StanCoy1hjdnvAGJDyqjtSw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.06|243.7|0.741|19.16|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|IKjv_MLwXWSTo7RFltEATGYl0Epe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|169.60000000000002|0.7170000000000001|11.99|['SLG', 'ITO', 'CA-Br', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|IKoS-YSnpDAGBB7W0bfK_cvERtDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.0|0.73|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|IKu9-KkLDL_qCmDUOuLloqXClezg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|206.2|0.618|10.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|IKuWEicDoGEks1n0ho1nrsn6TgDJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|183.9|0.67|11.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2016.03.028|IKvfi-k3jIo6Oj7jSbEUDeqSjUr0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.27|115.2|0.6920000000000001|10.16|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201900363|IKzOKq5_5cUSaL3dIJks8gUuW4ip|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|92.0|0.29|2.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|IL0OC8jznj772ftoLKPC8Q8Tfzpn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.1I2.9||1.041|213.9|0.705|15.69|['SLG', 'ITO', 'TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c7ta02937c|IL4U8m4FyCJGEpFMvq53R3IruJbu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.741|132.20000000000002|0.2239999999999999|2.8|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|ILG1i2CC_Sg5j0xH21J8mh6ih01B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H50I29N20Pb10|Pb10C10N20H50I29Br|FAPbBr0.1I2.9||0.958|202.9|0.593|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|ILIT5sZRL5J3e_mKVbAjKPqekJgI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.1I2.9. -Br900C1902Cs100H9835I5100N3479Pb2000|Cs100Pb2000C1902N3479H9835I5100Br900|Cs0.05FA0.7885MA0.1625PbBr0.45I2.55||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b00990|ILPRJucxxGzWWlvGa7G7Cf5GcNws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1625PbBr0.45I2.55. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.05|199.65|0.731|15.33|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||ILPYz8HJSJM7qivSNcSjXT9qmnre|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|162.89999999999998|0.57|8.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc01483b|ILQFneTa4qnJEpebmYFn77ieSX69|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.087|210.5|0.6829999999999999|15.62|['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cr2O3']|bulk|https://doi.org/10.1002/cssc.201701864|ILQJlceLrf6yE9dtHWl6wNIh4HUJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.3|0.75|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00894e|ILjVwphUmoHrRDmcBGFc1NpIkicw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|230.5|0.63|13.18|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|ILkXxgelAAsJEClOPJrTAG00FqqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.2|0.664|14.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|ILkpBCeSSR4HkkyVJQyWoYiOuE_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13||1.079|172.5|0.775|14.41|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/solr.201800357|ILo4mpKIZsCAs8EQka0QPsIeFgCX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.69|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/1347-4065/ab241c|ILw871EW1dJnSa2yuTyrRq2fRP9_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.0|0.78|16.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700612|ILyA1Yh7YdEeyKaz2qFVKEIKUcne|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.7|0.57|10.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|IM5BddrC1s4ztwt2cndsdGWGbvCv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|216.0|0.69|13.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|IM81UiCbQAqkLOZoA6Q6KxdfLsAv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.948|206.0|0.64|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']|['FU7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|IMIL4tlAu9cVW8qZpvaoyCUOzQ-d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|194.0|0.6559999999999999|12.0|['SLG', 'ITO', 'HTM-2 (bifluorenylidene-based)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['HTM-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.008|IMKhFVoNJaKnmRu1-DpKQqBemhYq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'HTM-2 (bifluorenylidene-based)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.01|193.3|0.7|13.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03990h|IMNeSl0ME4gMkdaZfWphuZ7QmW4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|IMTJUoZKC8sVKzyv20DrXHrz78tg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|211.3|0.674|12.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.009|IMVAQxAGACnqTBT1J5FZ1bcdB4X_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|0.79|174.0|0.69|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|IMWeYgdMWdG4R0HWGOHCg32Xusvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|175.0|0.7|11.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|IMdL0eHCXtqv-nvyusaKZWcETCVD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.7|0.546|8.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04444a|IMdbtfuno2fMR9RmG4kworvHUm0u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|45.8|0.524|1.82|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|IMiWatH2AvuYUxuZXf2-oMoZ7rZC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|159.60000000000002|0.475|7.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b09722|IMjNSatEakRe2QrsJCxkx96Psb_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs10H85I60N34Pb20|Cs10Pb20C17N34H85I60|Cs0.5FA0.85PbI3||0.95|227.0|0.7140000000000001|15.35|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'C60']|bulk|https://doi.org/10.1021/acsami.8b18807|IMmS0T9rfGe-DDrBN-CXg1a2DpP-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.5FA0.85PbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.13|225.2|0.653|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|IMsFq5SbGbIsshcuECajwAWAMXwK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.04|199.0|0.64|13.0|['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|IMvYZ2SIHkf5rszBXi3QW2gBXlX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|179.0|0.66|11.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta00407a|IMxR4CF0glRJFwLshKY5FYTjdW0b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.077|192.8|0.57|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|IMyH1Njin7C26pGG5kR12tWEXmX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.0|0.5379999999999999|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700484|IN7cULeOlBGakRrQcBEVjQloxd7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.0|0.7|12.5|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|INMFKUjJ50luBMh2BESJ6LIuZeQi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.1|0.76|16.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1016/j.orgel.2017.10.037|INN9HZFHLMhiyNvEp08D8iCqfZ1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.0|0.701|13.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|INNeCrc7DJK5SfVcc5FkXiQL0Skf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|42.3|0.36|1.54|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c5ta01200g|INOf0teIRJPB1MH2rgWRSoM9njTN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.6|0.6759999999999999|12.03|['SLG', 'Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2019.107630|INQjXk57XnGeBaktzWS2Wxme-6mg|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.462|73.2|0.7390000000000001|7.91|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|INdvEmJ_WDBfgq4lTiiVTYiIaQU-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.875|191.0|0.5479999999999999|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|INgr9MzaavHcepIe0lu6iZztbKAQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|166.0|0.59|3.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|INub-h5iFjKd-RGUmd9n0zv9WUut|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|217.7|0.36|6.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/app8020308|INxS9HD9I8pymlB99keJdyG1mUj3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.12|196.0|0.79|17.0|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|IO7KXnhPE8LPSDXBl1RzWLsC3dEz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.3|0.56|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b08981|IOCk7e7iZaxM5-LNdTcQv0fhbfFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.0|0.74|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|IOE9WdkhCYTdhZ0W7KWIqkdnS0HV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|172.0|0.49|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|IOFimAEovd1aFP986kaa22HeUW23|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|167.5|0.57|8.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|IOQFbhOVhLqq6WBjeIIgfEAw8OT6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3||0.06|35.0|0.25|0.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201401641|IOQwRjM5JPneshp2v45WJS9-3NSb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.1|0.72|14.7|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9qi00557a|IOVu8PyUwj-okbWjhJSYM6cl121e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.570000167410892|1.04|211.2|0.654|14.37|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.01.016|IOqHlTqe3YKOYV7JUD9smWbAaDDG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br19C120Cs80H600I181N240Pb200|Cs80Pb200C120N240H600I181Br19|Cs0.4FA0.6PbBr0.095I0.905|1.6100001716761378|1.058|177.8|0.705|13.26|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|IOsTmVPJb8VJetTRTzLws9_ws4DH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|113.9|0.72|7.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|IOvJYPn3ESlqzNn24j8mrBy8DFcf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|193.0|0.6|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1364/OE.24.0A1431|IP-dug01oH6LXdVqyFCCkFMDt5MU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53||1.11|229.0|0.6920000000000001|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201900830|IPGNxPOm6-l6Je4exDqa177Cl-Ua|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||200.0|0.684|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|IPPWpFMbENgDm6vZPLJdW02ODXLZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||0.939|201.4|0.685|12.86|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|IPhxrEsWo6F50IHHHlmeaXahedzY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.955|199.9|0.743|14.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09657g|IPjSeLR9DLDZeCJOGJNw_HtzvK6u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|192.0|0.78|16.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b16649|IPmF88fXoXXCNsCzo0WBiRWu2LnG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.4|0.748|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|IPpYH4T95pPFF5Q3D-IKucCG0PmL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|168.0|0.72|11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1039/c4ta03684k|IPpmewR8Lo-6Ir8TyGTGJ9w1ESbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|197.97|0.706|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.515|IPqPVpEyNRZaOfSkjb7mWGwevkJo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|168.79999999999998|0.76|12.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Alq3']|bulk|https://doi.org/10.1039/c8ra01633j|IQ-ctmlWa61fbFEsM04vocNR115c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|207.7|0.619|12.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b05146|IQ-gUpW9rJTmp8adk0h7K677L0O1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.1|0.738|18.85|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|IQ2byR1KGoLqNZ_hZ39JZAj4D72Q|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|190.0|0.5|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NaPTH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NaPTH']|bulk|https://doi.org/10.1039/c5ta05220c|IQCAJW22dOlyQj9edak8uH_SX4Nm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NaPTH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3|||||5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|IQGaJ_lUeI-AqqcsM5FIVJ1iUTaO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -CH6I300NPb99|Pb99CNH6I300|MA0.01Pb0.99I3||1.05|221.8|0.7|17.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|IQGwxnksTMbgQzMWjmCQ-YXrAXCh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA0.01Pb0.99I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.835|190.9|0.575|9.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4fd00128a|IQMLtOSL0dutURPhBxQ7IXp9drd6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|214.6|0.6990000000000001|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2019.03.024|IQOcyzqE6davhWLmYLV-_58ZaJas|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.0|0.75|16.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201600372|IQQShjUOgFfbjVBNfFTcENtfPr4s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|187.5|0.606|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|IQSOOhib2ancNcAwh8t1QvHCDnNM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|167.0|0.447|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|IQbwrhlormGpCRwbxR0cPvZDt-d9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.2|0.682|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|IQk1Z958UPgCmbIIke4QSXtXaPyh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC40H224I119N56Pb40|Pb40C40N56H224I119Br|FA0.4MA0.6PbBr0.025I2.975|1.6000001706098266|1.06|215.0|0.72|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700302|IQp60FtMAXV4fRVSH9Ndw0qHqVNy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|IQsnZa9zeHdKigZsWNh1EVNf0F4D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C80Cs30H120I91N20Pb40|Cs30Pb40C80N20H120I91Br39|BDACs3Pb4Br3.9I9.1|1.900000202599169|1.1|140.9|0.52|7.94|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.9b03414|IR46fsZTvOtQcPtgUDcfVjdc8JAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is BDACs3Pb4Br3.9I9.1. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5500001652782691|0.7|227.1|0.52|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|IRAEyZIVC7AVxdgkvXWfu4SQW5Zr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.54|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|IRHeyWCB5i6_Ek41SiKrrpo_HSvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H89I48N30Pb20|Cs3Pb20C17N30H89I48Br12|Cs0.15FA0.65MA0.20PbBr0.6I2.4|1.6800001791403176|1.17|212.0|0.7979999999999999|19.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.04.012|IRWmqkHzR9dBVggXcQcRYu0v-xDV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.65MA0.20PbBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|226.7|0.753|19.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|IRXBVP1AuBkNVIsrTwcZ-91Kw9ng|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.5|0.6779999999999999|15.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTT-TPA', 'Au']|['IDTT-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|IRZPQTE-17l-_Fp-oqUMSWu8Lk1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTT-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|IReu0Hku_kaAYqHX35dGjSYup8ws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.129|221.8|0.754|18.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|IRfdR6bE7FqpgbLSNRpU_Tlf_fkk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|60.0|0.48|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|IRx7lqnkxgasSobC1xY8UBPpApgf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|158.3|0.614|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1021/ja4132246|IS0vGr9rlPxwSZ6x15TiLm7JRi-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|214.0|0.461|8.62|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|IS5MYWJX3DBa3iQLzrLY_z3-dCw5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|ISBdbiObnX-fszujVfXzqSAiqY3l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|123.0|0.429|3.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTCBI', 'BCP', 'Al']|['PEDOT:PSS']|['PTCBI', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|ISHChLl_GgvRqyEkvDMXHaMd66S1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTCBI', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.22|138.0|0.65|10.94|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|ISMv91S4bO9wyduhGd2E2uZNL0eG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5800001684772036|1.17|231.2|0.7759999999999999|21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|ISUm14W00z_kq9UvEk1uQOMnCKyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903691|ISWWE5REBX3EVCHbWE0DAtX_eLcO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|ISYLmfUpZsTRg94OJncZR2KCTMun|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.74|18.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|IS_IGuBylZEYXem4Ac3m5hIUjtrK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.32|1.2|0.349|0.013|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|ISd0gFPCSgLNulxEJw4t4YE4Nf0j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -Br3CsPb|CsPbBr3|CsPbBr3||1.372|68.0|0.8|7.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'Carbon', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']|['Carbon-QDs']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1039/c8cc04271c|ISdfoCx56mRE1O5VX0mvPtZIdv2V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'Carbon', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.007|188.9|0.55|9.79|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|ISj30PN0Bmv9E1VvR8SEz84eF-6z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|149.5|0.367|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'MoO3', 'Al']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1039/c4ee04064c|ISjQMi5Z-cYVFiO4LwqHUfcARHAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|47.1|0.39|1.2|['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']|['CuO']|['PCBM-60']|bulk|https://doi.org/10.14456/jmmm.2018.13|ISkUZGclSrllHhZ9ALLt1TxKs246|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|219.2|0.736|16.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|ISpGDyR3GGQKXcabaUoxkADcaYCc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|119.0|0.41|3.6|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|ISrRyfLeNxNvRGgxD2wGJMoRNANU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br27C100H515I273N185Pb100|Pb100C100N185H515I273Br27|FA0.85MA0.15PbBr0.27I2.73||0.97|196.9|0.546|11.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5087098|ISrVCxInHY9sSfLYS_2KMy-ehK9H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.27I2.73. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.8|0.74|16.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01593c|ISx9UdSCzZDBZXsv7xXnf3aT9yT-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.82|165.0|0.55|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b11067|ISy6zdM40l4tdmu-RJ5mL0HjRuwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.6|0.648|13.28|['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np; Nb2O5']|bulk|https://doi.org/10.1039/c8ra01571f|IT1NquhQ4Fpn6Xc4o66fxdDGHALE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.0|0.79|20.0|['SLG', 'FTO', 'TiO2-c', 'Ba0.9Sr0.1SnO3-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Ba0.9Sr0.1SnO3-np']|bulk|https://doi.org/10.1039/c8ee03672a|IT76KSF_TlwUtCq640JKhxr40g9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ba0.9Sr0.1SnO3-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.818|53.98|0.461|2.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|ITC-aNooPM8kB4GoT3_yPUKZqely|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.09|205.6|0.76|16.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|ITG8-tr2EH0kdYzyp50_hUyBeeE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.4|0.78|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.6b05159|ITJDrs4lX222KgKK3DGzK8cZjo1B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|196.0|0.6759999999999999|14.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|ITKCBsd-un3W78Ur25L_lj4jXWJ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.45|74.7|0.777|8.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2', 'ZnS-QDs', 'Carbon']|['CuInS2', 'ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02522c|ITNTQJ6Xe8tBQ7wDzbMvmdm8Y4Dy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2', 'ZnS-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|99.8|0.37|3.04|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|ITRA4zCOrX4VADaz9tFdUlg7Xe5u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.4|0.62|14.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.036|ITW6vXEs-zkOKZmFlCx1jS8EUubu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489N176Pb100|Cs5Pb100C95N176H489Br45|Cs0.05FA0.81MA0.14PbBr0.45||1.14|216.4|0.71|17.96|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.066|ITbTtf2-l4VFB-x27MPLCuYcbAj9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.13|235.1|0.769|18.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|ITf1ha9Q3_kNrdrQukf2dWpEysbV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|154.9|0.55|7.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|ITpPwTmoVHgoqHeIGO6OCJSurFmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|180.9|0.6509999999999999|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|ITzUJ8qQFL_uEEPagVQRnOi20Usc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|34.0|0.64|2.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|IU7ir57lAWTbIF7NECxliCZowI9_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.3|['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'TIPD; ZnO-np', 'Ag']|['CuInS2', 'Al2O3-np']|['TIPD; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.04.007|IU86A1ksiqBbscJuWqj2kCeoDFtW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'TIPD; ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|221.0|0.768|19.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00888|IUNwn4uAj3yP8_7CMSZvxHZiOHfW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|226.4|0.716|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1021/acsami.7b02242|IUVLdWUFq4c49KnEePP6InFvQPEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|IUYTWpwYOmyh5HbP5nLVeK_5rJ7i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.2|0.76|19.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chloride', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|IUeAEvDy2uCU0ZgCD7wGWAQvuijC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|1.056|32.1|0.743|1.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|IUkra5SOEF-cxY7T2BnDRaKI12XQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.0|0.46|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|IUlX-g-gBKF1AHOX4nmTxaW5_Ua0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|169.0|0.38|5.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|IUyXL2Snj7se4ECL3aCZW11s-b7d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|212.2|0.633|14.74|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|IVDe6rd-mr2GG50_sA-xyrM6qZdD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|112.0|0.6|6.7|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201804886|IVFuuu1GQMZnBTpw6A6xVZb8lfwq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.03|229.0|0.759|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701935|IVTijr4DOMpx5MS5HVd5zgFcEUOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -Br250C100H517I50N183Pb100|Pb100C100N183H517I50Br250|FA0.83MA0.17PbBr2.5I0.5|2.113000225311602|0.878|88.43|0.425|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|IVkzORxp1ZF59ciM7tjO4V5lYgMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|176.0|0.64|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00077|IW6kb3mxrXLL7Fgvhjrne1oUzojY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.126|228.0|0.8|20.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|IWBqMWH96l6r-s-L07y4W3r0D6Pd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.7|0.71|14.76|['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CrOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.surfin.2017.12.006|IWDC4lPX4CLNFis7GxpjrNY_OzbU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|199.0|0.56|9.2|['SLG', 'FTO', '(RhCp*Cp)2', 'PTCBI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['(RhCp*Cp)2', 'PTCBI']|bulk|https://doi.org/10.1039/c8me00031j|IWEj1EtJA9sLVuN8D0ABQGGOre9Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '(RhCp*Cp)2', 'PTCBI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|165.39999999999998|0.564|8.76|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['MAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|IWGas2ALsqjaW15adYnhqBAoMNbP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25C48Cs2H248I125N88Pb50|Cs2Pb50C48N88H248I125Br25|Cs0.04FA0.80MA0.16PbBr0.50I2.50|1.6350001743419162|1.01|162.0|0.77|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|IWN611WERKfINfvhthN9NwM0AghE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.50I2.50. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.99|163.0|0.48|7.79|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.materresbull.2018.07.015|IWUtD0Cnem5gfB2CjSdVdbqvvSQK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|202.5|0.69|14.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.03.073|IWabb24hfBbk0UbUDjZpAYQgZgBX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|207.6|0.75|13.62|['PDMS', 'PET', 'Au-grid', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee01944h|IWdRKmtIdMogWyT54IzAv4VVnNke|a perovskite solar cell with the following device stack: ['PDMS', 'PET', 'Au-grid', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|169.0|0.72|10.7|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.06.018|IWpkEjDdFkZDI5UGPqVzzXf1NJdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||0.97|136.4|0.59|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|IX4vzqkZb_wyy0rWL7zsAncMCUQN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|196.0|0.6679999999999999|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b06171|IX7ymy1Zyp_62rvXcJacWDlbX-IP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.3|0.488|9.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|IXOYh25tHqtsnpDZr90LOcJkA9r_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.13|223.0|0.76|19.1|['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']|['NiO-c']|['ADAHCl', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03131f|IXP0SFDkf9Jk1flSGHWtOSYSOrog|a perovskite solar cell with the following device stack: ['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br12C25H135I63N40Pb10Sn15|Pb10Sn15C25N40H135I63Br12|FA0.6MA0.4Pb0.4Sn0.6Br0.48I2.52|1.3200001407531068|0.884|279.5|0.722|17.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|IXQDyvDbj3vX4DF7nSzWaYle-qCW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.48I2.52. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.11|150.6|0.71|11.97|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|IXWHLixDEGnWQtg6al2YW7wy5Wfh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|179.0|0.56|10.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Ni']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08812k|IXXghMgs8wXygnVOCR8k_aPd8jfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.0|0.6|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.028|IX_gY8KmYgxY3Nau3Hin7fcMPCbs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.001|205.3|0.7879999999999999|16.18|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b02612|IXz79wI7_hBl9FNfDTOsQrD4peUR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.11|235.0|0.775|20.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02112|IY72RTAzE8_z7145vwo71wQGLZmD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -C1000Co31H6000I3000N1000Pb969|Co31Pb969C1000N1000H6000I3000|MACo0.031Pb0.969I3|1.5600001663445808|1.08|175.0|0.7509999999999999|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|IY795HOolD-W7C1-dNMx7AzW_Ht9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.031Pb0.969I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|216.0|0.733|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|IYBRYoJuexlj_ucYmWKSO8l3ezIs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.973|211.5|0.5489999999999999|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|IYDpYMTeT8Ya_OI5LtVEvV3kFKqw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.3|0.742|17.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|IYF7ge8f7rKpgzmRM6DSCBGkQkmk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.07|229.0|0.68|16.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|IYMEZwP-kHZ4k0G5-oiqimu3njJ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.9|187.0|0.53|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b01033|IYS_tEl-QtmvyEZA3jZxZGncJhKH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|177.7|0.618|10.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.5b00046|IYSh0ddmWEnoGiIx7KJRtqcXiO1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|207.3|0.762|15.02|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|IYUTI1Dty4tWmAUOe_Kxt44EJeNY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|158.0|0.57|8.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|IYVF1S4xSL4MlQ5DH2NjIcNWnLGB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|170.6|0.693|12.06|['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01004|IYaybVf4iNLFn7Xoa04g1DcV9z8Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.152|222.8|0.7440000000000001|19.11|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|IYcqHVvhGO-N2s0jd27o3tzhtvVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|201.22|0.762|12.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2015.01.028|IYgTXMYnwsStBFiA1Tac8SO35ZTE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|191.0|0.58|9.3|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1007/s10854-016-5492-3|IYtL4yOHAIB5zWpSFHqj6hMgbuVD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|133.6|0.51|4.43|['SLG', 'ITO', 'MoS2; TiO2-np', 'Perovskite', 'Au']|['none']|['MoS2; TiO2-np']|bulk|https://doi.org/10.1088/2053-1591/3/4/045022|IYvVohlG6QDspiEhJkXF9Gw2xvHI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2; TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|133.8|0.54|6.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b01550|IYzfI5zo5kqEttD4MnONYVtMpkAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|176.70000000000002|0.675|12.21|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta04313a|IZ-yrzltvIhnqS6tGTRXyLXVQdLV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|191.5|0.615|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|IZ2n3hq6PYScO5L6QamdoNDjV7_7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br7C4ClCu2H24N4|Cu2C4N4H24Br7Cl|MA2CuBr3.5Cl0.5|1.8000001919360546|0.29|0.21|0.28|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.inorgchem.5b01896|IZ3xmU6R_BLbSxFgs6w0dzado9HZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2CuBr3.5Cl0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.99|169.0|0.59|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018810|IZ59HdG5jcgvaHFkHyJm9kpTV7bV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|188.2|0.693|14.56|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.027|IZCIdV9WHjmcpFkow_LyAEdCicV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.1|0.76|14.73|['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['ZnO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|IZCuYQ5xHx0JkxsuG7K2R0-WHXk1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|183.3|0.7240000000000001|14.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|IZHQDjesYrUjt7Bjmj8KraCMO_sy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.46|68.1|0.769|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|IZIHn8H7ON-lIYFJfJrbXsEDfYJI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|214.98|0.7340000000000001|16.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|IZKbOvMXqTZoGXKsGbWPkdnTy2Iv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br41C95Cs5H491I259N174Pb100|Cs5Pb100C95N174H491I259Br41|Cs0.05FA0.79MA0.16PbBr0.41I2.59||0.95|188.0|0.7290000000000001|13.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201801403|IZLPW5idxZOYIcRc3Q0oyRlh-zoi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.41I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|209.0|0.67|14.48|['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|IZSPNrvUVisBqvc9lTK6KbaDF-fn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.5|0.6|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|IZVo9Gun9gs3lJs6Byl4mzdyYqDC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C20Cs5H100I71N40Pb25|Cs5Pb25C20N40H100I71Br4|Cs0.2FA0.8PbBr0.16I2.84||1.073|219.0|0.742|17.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03255e|IZX1MTYR8HdlXMfBLma1LXFkDUGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.16I2.84. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.7|0.7|14.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc09452c|IZiXeYIoAX3ex3p1mt8k6J2GoQgm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.0|213.5|0.6859999999999999|14.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|I_5BciOiTbsh0EiO05uJz6FiJKrJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.613|191.63|0.609|7.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||I_7hwt3RTc0BsDOsDJLCysE8uorl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|217.8|0.81|18.89|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|I_BLR1ctjysKSFDhtglulZ0_PbYM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.5|0.77|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|I_HFF3RbtLHP3nCNT0tdYeqJA0Lg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|212.8|0.57|11.84|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|I_Hv3F8QhBArhZz_lid599HYDrt8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.4|0.755|15.9|['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']|['X1']|['PCBM-60', 'C3-CBL']|bulk|https://doi.org/10.1039/c8nr00898a|I_INVRY8BgPKgDSYf9Zwz7r0SUti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.8|0.77|17.23|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|I__1ckag4lDZDzI6lycEIRR-gTAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|1.04|199.0|0.69|14.3|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuI']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/ente.201700422|I__lsPdj3H8ZQV2exnhNb3y3Rpje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|26.200000000000003|0.48|1.16|['Ti-wire', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon-nw']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/0957-4484/27/20/20LT01|I_btkfqKE0QeOSXmLMWs5qpck5uz|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|103.0|0.667|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06338d|I_iK3gA255hMeihIDlWanYhfv7SK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|193.4|0.61|11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|I_iwogfnANsLvYp_E5-NiYTYbStQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|196.0|0.72|13.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp01936j|I_khcg_7IIBEc1TARRzZHMGTmw_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br11C19H98I51KN35Pb20|KPb20C19N35H98I51Br11|FA0.8K0.05MA0.15PbBr0.55I2.55|1.5900001695435149|1.06|229.5|0.7040000000000001|17.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|I_nIcNYSQek9dEjd94cGS7EiwZxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8K0.05MA0.15PbBr0.55I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.4|13.0|0.24|0.44|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz402706q|I_wR4JRWrae7lco35uPBXhfjBsR0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|127.4|0.44|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|I_zb0cL49uoM40hm_dKkXxY0TUte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|115.6|0.76|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|IaG7jSfSrj5Pp0vmLCXX1Y9CInZ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|96.5|0.71|7.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|IadmF20iOXT0R4sTPeIx5piZnozN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|210.6|0.68|13.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.061|Iai2SsmjeKGIoYCq4d7IIZkGQIAt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|224.0|0.7|18.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|IaogE9MDIMVmYOihldMp20h-hjwu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C93Cs7H468I276N183Pb100|Cs7Pb100C93N183H468I276Br24|Cs0.07FA0.9MA0.03PbBr0.24I2.76||1.071|243.8|0.778|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-10985-5|IbJW9y-JTsuIhtJmRMHyhP_PMgjx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.9MA0.03PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.1|220.0|0.75|18.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|IbK0CWefRQo-cjv6YZowXyAOTLHX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.8|0.75|13.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|IbRRlETAkpiWCbdQydBkYvCRUly4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|35.0|0.52|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|IbTymFKKbxLQuMQj6XRfn4HRdGEU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.34|94.1|0.36|4.57|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3389/fmats.2019.00330|IbW2aVf0hYX7wOxQp_GVU7XdUvi-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|227.59|0.69|16.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|IbYMtvVqprO_bDnGttESUd0qStIT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|183.1|0.79|12.68|['SLG', 'ITO', 'P3HT; PFN', 'Perovskite', 'PCBM-60', 'Al']|['P3HT; PFN']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|IbY_TOx0tbuwX43f7tUnmKJLGAK9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT; PFN', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|1.02|227.4|0.58|13.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|Ibcp6lNG6RKeWLmQ580Dk1mbCgER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|71.0|0.57|3.5|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.04.028|Ibd2EG5Vx2pbhdMM59TRqi3EBjwV|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|176.70000000000002|0.63|10.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|IbfFyfM4_u47-m3ZcM82yxlHbXnF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.0|0.72|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.01.018|IbiHqvVqxUD5l2b25QlWTD-3Y_Gd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|199.2|0.7709999999999999|14.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b03941|Ibki84H4rLWX2dcoN2lT09Ad5OjE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|167.0|0.5|7.9|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|IbmEPnqoC_KYa6-QZU031jOo0A4e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|137.89999999999998|0.57|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Ibsj1eTpw6MFY2utpAFplqQ79qlH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|237.0|0.7|15.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'VOx', 'Carbon']|['Vox']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05653|Ic39dizcZRAcLUQsUlfVNN0lou6_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'VOx', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.0|0.617|11.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.034|Ic3SakvkI6qq3KDMoAlJOfkkVune|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|112.0|0.4|4.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|Ic412LTtT9fXlQ8lspitcZnucBp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.08|202.0|0.73|16.0|['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/advs.201700463|Ic64T8Iyi9ql9bKzGogylO1ou6A6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.59|15.2|0.53|0.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|Ic8Zm9s4yk-U9mFqhnpe_Ikz1n1e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -C100H600I300N100Pb93Sb7|Pb93C100Sb7N100H600I300|MAPb0.93Sb0.07I3||0.6920000000000001|147.0|0.502|5.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|Ic9DcmeTU4ZSOehkQGM-QqUlkcvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.93Sb0.07I3. -C100H600I300N100Pb97Sb3|Pb97C100Sb3N100H600I300|MAPb0.97Sb0.03I3||0.843|192.0|0.56|9.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|IcB71cbQ3Jn4AFj-bcq5UwESeXwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.97Sb0.03I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|158.0|0.25|2.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403344|IcCQSRRjxpXZd4ngn6KlmrwXml6O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|171.70000000000002|0.66|10.31|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|IcF-psiajiouKr_vhp0rCHSq9Nh2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|149.0|0.78|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b01046|IcNRNMQ-GOQh9KH2cXmPf2nGgNa4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|25.3|0.27|0.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|IcPJW1cGDD3Wolbevz6i_WdqcXwu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|93.5|0.27|1.36|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|IcY2Wwj5NxjPjx5satBwOthiNZ23|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|173.5|0.41|6.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|Icdd5DccXYGiBxqCSB4aRiOvKy4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.4|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.10.076601|IcgcXIXNWsAJo20BwYhwyr9w8UG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||1.069|240.3|0.79|20.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaf8060|Icgl7tHtx7G4nEJIVgMxguU1gOV1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|179.0|0.6509999999999999|12.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|IciJfodw3CJW5ZucULo5apq_raHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|159.60000000000002|0.417|6.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963841|IcjMgjgiH28pBj5bhgjFvpvRe5co|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|188.2|0.71|12.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|IcjUDoHI4UGr2rqIJOG6AvsVg1op|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.8|0.58|13.87|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201600027|IcmLTKQcWCeqHT8gM5gdvkHuJwNo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|Id-7pKjKSEJdsmyk9d9Ir0NwptYn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.68|14.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta06172e|Id03mSfKGs655-u0KwI6Lsy07LMW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.7|0.7|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-029', 'Ag']|['Spiro-029']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21448g|Id5o5CqJLVY8XZxeM8cFcc_b4fJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-029', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.46|97.0|0.28|1.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201801824|IdCNcxTj23acZF0JEM7MtOqCWbGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.03|222.1|0.763|17.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|IdPBkta4fgSRo4jiXDsySkHHGfib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|144.0|0.69|7.8|['SLG', 'ITO', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1063/1.4889843|IdQLBo4ujWFXHRjgc__NfPC9zSi1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|IdWOAVkr8HPDLtnD9JB1Yxb_BTvD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|195.2|0.525|8.66|['SLG', 'ITO', 'TiO2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4tc01875c|IdcwEhDL6uM2dDxWM4ONbZaoh9Te|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|170.0|0.688|13.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|Ie96LPd8Bj6EYpqlxKvvlzVZGL7m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|200.0|0.68|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-hydroxypyridine', 'Spiro-MeOTAD', 'Au']|['3-hydroxypyridine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cc09492a|IeM-7EorseluGneEhajkaCvF2Cgg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-hydroxypyridine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.06|237.9|0.765|19.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|IeN3XPzEImFxOjMmocv8OpfpNZqn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.63|13.6|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.egypro.2017.03.300|If8TZItRO5hTDFNDAGUjJZ0Ua0_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.595|92.0|0.38|2.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H2', 'Au']|['Porphyrin-H2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800242|IfB1dtgDitzAThAS4HpmUq-4BS_c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.132|223.0|0.77|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|IfDwvpD48U-eq3xL81t-MxjAWx2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|65.3|0.64|3.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|IfLwD8JpHbLbMrGgVSvFxB8qZ7Y1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|150.2|0.395|5.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|IfPcNiLxry_xjfGqHqyKv2JZzsy4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|65.19999999999999|0.57|3.38|['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|IfVlxUgT50Jve5hKrRQGQa7-N5wY|a perovskite solar cell with the following device stack: ['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.84|36.0|0.4|1.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|IfZ7fnAbyE1bYNF5TnDmWpR0FzMX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|146.0|0.632|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|IfbQCXmwUFE15HnIqnPULwMBjy69|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.07|155.39999999999998|0.45|7.65|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|Iffo82ybugT2qrfgF4qLNeBwvryX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.03|94.5|0.672|6.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|Ig6tnZeH_nxOtCNFDl_17AsQB5Gq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.7|0.79|15.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsanm.8b01371|IgH3kLN4rezKHIrqOs_96bzfMrIg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.8|0.738|13.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|IgSKt3c0yUGHqlh7863PNHj82iAf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.13|243.1|0.7759999999999999|21.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|IgVF79Y6Gar6hfxstmd8UEmf2PNV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.04|218.0|0.77|17.64|['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|IgVO1ON-5EwlzDFooV3AyhbCuf9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.07|212.0|0.7509999999999999|17.0|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|IgnH1_BfPIng5ej8ItEN1B6m9bF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br120C95Cs5H491I180N174Pb100|Cs5Pb100C95N174H491I180Br120|Cs0.05FA0.79MA0.16PbBr1.2I1.8||1.23|190.7|0.74|17.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|IgyRrj11QwX5wDRfZqkQUNI-DbLb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.9|0.75|18.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Dispiro-OMeTAD', 'Au']|['Dispiro-OMeTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800048|Igzu_CmH9x_gAgfnkEOc49he9iuQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Dispiro-OMeTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|223.2|0.812|18.8|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|IhAKSRtkGWyacQvVlEKgxwrf-ZJr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC4H23I11N5Pb4|Pb4C4N5H23I11Br|FA0.25MA0.75PbBr0.25I2.75||0.3329999999999999|80.8|0.301|0.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|IhAX01yeSAjH54jJe0AYr9T864G2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.8|0.8|19.87|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|IhC-IoqmYPB31PnWQBP3T7zA19Da|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.86|175.0|0.421|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc-1', 'Au']|['H2Pc-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|IhCdca471oupN9-RxbOd_wfPulQK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc-1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|160.6|0.5920000000000001|8.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|IhNI1SaMnQPgbSTdMELehMU-tzuy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|183.0|0.73|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201600285|IhNMLw8bpjSxBfmC6E9axvNW99vc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|142.20000000000002|0.52|6.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsnano.6b01904|IhTMOKnPCfuKtyPAGeLI7QTz53BO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|192.2|0.632|11.25|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|IhX6mjj-9Ndtwommsi34AiM4kZtX|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.0|0.69|13.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1063/1.4941416|IhwHFPr-fXNF93h67cLXVmgxwTqZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.13|135.9|0.65|9.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/sciadv.1700841|Ii1EfHkjeWQgRSeZnc8iv8VsHTC7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.43|0.72|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|Ii2UMmTa66MyI5xQFxRuCiJAjacl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.96|196.5|0.56|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH1', 'Ag']|['PEDOT:PSS']|['NDI-BTH1']|bulk|https://doi.org/10.1021/acsami.9b13894|IiBYSaN0f-OXJXZL-qm1XOHepJ_B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.99|202.0|0.755|15.0|['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'Cu']|['P3HT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|IiKJdlhvROs8G3--HeEX6MrW_vDu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.9|0.73|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700304|IiSoayxY-cEBfKeAloRC_oSEPKRe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|158.4|0.7120000000000001|9.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b04396|IiU0V-L4vF8K8bXGyr8HvWJKMBWB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.12|220.4|0.778|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|IidE5PQTL1HNV96cC4RBqF4CIFcs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.777|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b17701|Iil-oZxQfs237qoKrwZUsHaHZ-mY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|143.8|0.55|7.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|IimERzREPxAkK_l63R__nJeIfF3z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|215.2|0.753|17.82|['SLG', 'ITO', 'XY1', 'Perovskite', 'C60', 'BCP', 'Cu']|['XY1']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103946|IimP59zU_KkYIUDfBMAmhHrEN3Wz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'XY1', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|146.0|0.64|9.72|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|IitN_QjHp7BE0tow9T3oS8fskiyh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.055|234.11|0.73|18.09|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|Ij3r32C1hlBAdnkEcCXLHMVoE6ih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|124.4|0.55|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|IjCGFDiEHZ3HflSf8SeYQPMtktOT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||0.87|179.20000000000002|0.598|9.31|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|IjFZxT1p1fOQpRC20cDOMS4hra2m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.687|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|IjMWKWFosjjO3o6kHSauq-5rEFCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|157.0|0.735|11.2|['SLG', 'ITO', 'MeO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['MeO-PPV', 'PFN-P2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|Ija74GCKnXWSO8qFTA8HpqLbEx55|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.500000159946712|1.14|244.0|0.76|21.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|Ijdssk1_hrF3NSeXPI57Z5PGwjTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.27|123.9|0.8|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|IjejSzM18mB0oPk9-xhV33yFccy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.350000143952041|0.73|237.6|0.8079999999999999|12.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201700880|IjgNke-T1Mdj0FgopNND1jYjg1j1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.693|119.0|0.59|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10971-019-04957-w|Ik1wJ2sBytfHoO9ICVyT5QLNY74O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|239.0|0.72|17.38|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|IkH2g3Oe_bKvT7eFPheOBZLdBx9a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|218.0|0.713|17.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|IkLDVm6O6AZhf1TAiCsUbUo3ixid|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.079|206.2|0.674|15.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|IkN5qZGT24gyLaaK3ZlxDBANLQrf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|206.7|0.68|10.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4994957|IkQOkVbfCxORXZi_2A4yQFob9h6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.8|0.6729999999999999|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|Iki-sgJRIyBgCWOrMKkDiGDF-C5W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.06|200.7|0.78|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01271|Il0FyEPICfYQ8SOvKIA8nFRgUOSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|201.4|0.5660000000000001|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|Il3jhXoh6MLCjD3RaE0-1ITpAB6z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.0|0.741|16.5|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Au', 'BCP']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201601128|Il5g2nJrcCBuHr53e4scHhI1aQTx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Au', 'BCP']? The composition of the perovskite layer is MAPbI3. -BrCGeH6I2N|GeCNH6I2Br|MAGeBrI2||0.514|19.8|0.5|0.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|IlSfzyn1pr8Lmu69OyMW5A2dSDqH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|150.0|0.736|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01714a|IlUI9gPxeg-2qxBnBgvVdATrfBEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.092|221.0|0.7440000000000001|17.95|['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|IlafsTYFR1F3E6SzQ7obsMe88Tqx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|IlcmnhemE8UhLRpV7K2asugLO8yU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||1.03|240.3|0.69|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']|['NaYF4:Yb:Tm-np', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9qm00311h|IlpDgux8WO2VIEHh0R59PxY_64rl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|213.0|0.64|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2017.06.032|IlqlDvL5D0_LPCrmz_g0D4hrtw7v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.0|0.71|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM13', 'Ag']|['SM13']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|IlqlG8U9GqP9DHgtr3n0zHchvFeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM13', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.055|223.8|0.65|15.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.169|IltTwZ_M5nDBQU49MCXhXHCfyaTZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.09|219.0|0.73|17.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.08.006|Im4VBwk2vsYqKuOEge-kSPhEoizj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|ImDmol13GTLz0LgIhT5lDEf5QnMB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.77|16.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900402|ImQrtYPhBDIPyo536ZHp3n6VN__y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.988|187.0|0.562|10.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|In-hFohbOTCyqDNtI7-oaA2qRDvV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|In3OO2LRtjHDl4FIE9tAKiUbx1vf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.0|0.6509999999999999|15.05|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.060|In4D9w1Yg0ljTmc4WOMbXOHLkiIy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.02|225.5|0.72|16.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900402|In9w-It3vWtL4CZYPjEBu6lXls1z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|1.9400002068644144|0.91|103.0|0.41|3.82|['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.032|InDW0ZPTQFu5_mQSDOkVPj3JZgw-|a perovskite solar cell with the following device stack: ['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -Br3CsPb|CsPbBr3|CsPbBr3||1.524|73.4|0.845|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|InTTexvfU3e5LzEGOKaYfghbA9xR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|1.11|133.0|0.72|10.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|InUpHdcM4sP8pF-U7JSZjEOUVqW9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.03|222.8|0.735|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b13206|InVIRXDH3GGumpst8pacKZPXbRp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|191.8|0.528|10.43|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matlet.2019.03.114|InXfDUogXE62oLcpQdcPe_rqHlu-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|203.8|0.75|16.18|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|InazEDuzsdImIarLmcUqHqXIGHJ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|IniGa4c0ODkSRY5pKUjN3_W0oq1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.29|240.6|0.34|2.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|InpoMcwhrj8b7XGOQItWXWdCU58o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I300MgNPb99|MgPb99CNH6I300|MA0.01Mg0.01Pb0.99I3||0.89|187.0|0.648|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|Inw6l_gtelRk3veKLb4GjaHczYnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA0.01Mg0.01Pb0.99I3. -C13H46I13N5Pb4|Pb4C13N5H46I13|MA3PA2Pb4I13|1.6300001738087604|0.83|190.6|0.55|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.joule.2018.11.026|Io36atd16ThT-52Q85wTj-aYfUPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3PA2Pb4I13. -Br49C95Cs5H487I251N178Pb100|Cs5Pb100C95N178H487I251Br49|Cs0.05FA0.83MA0.12PbBr0.49I2.51|1.6000001706098266|1.18|209.5|0.59|15.9|['SLG', 'FTO', 'TiO2-c', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZIF-8']|bulk|https://doi.org/10.1021/acsaem.9b02115|IoILTZlXS--Y5aokawy212qcpO2F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.49I2.51. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.081|186.2|0.699|14.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||IoIX8zV9f4HGAA_HueYiwQ-TTDQP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.68|10.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|IoTLk1Z01mE9S1KGQ7WpS8jM590y|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|167.5|0.7|12.21|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.09.039|IoTchtRlyua37-PoBC_2FKX2qWKY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|42.8|0.523|1.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201401872|IoZlrr3jEsEoDUxOpaSre555S5cp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.09|234.5|0.7809999999999999|19.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|IokSYnphS60Wh2k39CPCS5DP9rmj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|79.3|0.62|4.54|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4cp00298a|IopMgk3_7KAkoPnTqDX5uwFU1WLg|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|77.0|0.405|2.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ee02693a|IorRedV5h_4rG0On7QyuvIArXHRM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|152.0|0.58|7.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6641/ab2309|IorV0-UZZGmOZ1cHcALlyPNCQ6mr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.85|190.0|0.63|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|Iov6do4gcN5E-slhKDyMOcFXehD5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|159.2|0.737|12.55|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|Ip17L3Vk9sYKsk_A5v7y6Y1GqWqK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.06|208.6|0.701|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|IpMftMgMqS7as862V-4JBzi3Zhfl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|222.8|0.7659999999999999|18.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|IpMhavCcWmzncZ5x7VLngdJz21iS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|224.0|0.73|17.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|IpN24YLRiJglxo7jsmJdrHwesSnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.5|60.1|0.765|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110267|IpNrPnfT9IRLfMHSJ6nS6I0tgsTx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|136.0|0.69|9.4|['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZrO2-np']|bulk|https://doi.org/10.17586/2220-8054-2019-10-1-70-75|IpO0drMUnWoCH_xdi9dAjZsJ4W5v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.37|53.2|0.57|1.14|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|IpUbSN0XD-Z9II0mhNWnLruliGKk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -C170Cs30H969I600N221Pb200|Cs30Pb200C170N221H969I600|Cs0.15FA0.255MA0.595PbI3||1.039|211.0|0.743|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201804858|Ipd-vDv7oMawlXaSi-SYkNuspESv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.255MA0.595PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.88|151.0|0.465|6.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|IptaeWLudu2luLzBpe4N_F6l_-zM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.0|0.64|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|Iq3wXPAluMhs6WN3POh9coK_ot1n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|157.0|0.5|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|IqGL4Uz_RDJZGxXIpujaPQI-DzVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.12|196.5|0.76|16.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NMAT4014|IqKZgmoiLTRIC-vyU7jAHadtphkQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.16|226.1|0.774|20.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2-MP', 'Spiro-MeOTAD', 'Au']|['2-MP', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803573|IqYQ8xCs8OMbV0kd70N0kMWriKGX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2-MP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.2|0.48|10.27|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.cplett.2017.12.012|IqaBWjix7U6pOdovRUgjqWkYPsXN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|178.79999999999998|0.731|12.42|['PET', 'PEDOT:PSS', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEI']|bulk|https://doi.org/10.1039/c6ta10588b|IqhF7Ksyse3ihVBSrn5TRw0S-bLM|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|212.5|0.71|15.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AV-Carbon; MAI']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|IqpzAcRhN2jdFlWP4CxVF5MBILTb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|149.70000000000002|0.49|6.62|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|Iqq7fy6AQgnJ-u3VyTcJImqrNE3q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|126.0|0.42|4.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']|['DR3TBDTT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|IqqVEAYfuQ06076dLzg6xzVlSs0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.27|112.6|0.412|1.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|IqqahieQo66tuYz0H-Yd3nWB9h1S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|178.2|0.619|11.47|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|Ir0xYn7KwMY_y2G_Evayy2W0U27u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.4|0.72|16.28|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|IrJp6nl-ynazZwm7eRJxqtKXmRtd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|217.7|0.74|16.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|IrOtsopSQBcdkoXYsg1cRE_8xR7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.3|0.78|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta03710d|IrY6bIHq1hCGIMG8-orIiJIEDeb1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.138|120.88|||['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201902708|IrbxuR5HeyOKmK1v9RQg33F3QVLb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|5.8|0.28|0.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07968k|IrjvcUPEvW_mGJaZB2f7wrxdNuEU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|204.9|0.71|13.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra01303e|IrsvjV2nA84YsETLXQx8qPifzGwD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|152.0|0.547|7.3|['SLG', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|IrykZzh9qOa_PWc9fTpSkTSp44jJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br11C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br11|Cs0.05FA0.8MA0.15PbBr0.55I2.55|1.6100001716761378|1.12|227.7|0.755|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|IsC2M-lxQ7CTiRpKhe6zCJ0adCMj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.55I2.55. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.520000162079335|1.06|227.7|0.7809999999999999|18.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.8b10520|IsEKvdd1VSv4mTP-f0cyRtHvU9OR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|209.0|0.691|11.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b00923|IsFkSUVApug6-FSjBq4yzZP8VQXv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs4I15RbSn5|Cs4RbSn5I15|Cs0.8Rb0.2SnI3||0.5|67.1|0.61|2.05|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|IsKBuayxcsXLqdY7bCJ9jTSSBMoA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.8Rb0.2SnI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||0.9|199.3|0.65|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc09905g|IsPvptt83HERdSUymbmP73AJ7bEc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|205.0|0.754|16.84|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'N2200; PFN-Ox', 'bis-C60', 'Ag']|['NiO-c']|['N2200; PFN-Ox', 'bis-C60']|bulk|https://doi.org/10.1002/cssc.201600921|IsRCj57U96tBTXFDNXIX_MMlZwB3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'N2200; PFN-Ox', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.0|0.7040000000000001|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']|['YKP03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|IsXNp2_BWvt-O3382LjcI3asCADp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|191.2|0.62|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.045|IsZesjrJxJf5HFSeemb7nIdjw1ip|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.8|194.0|0.56|8.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Cu3SbS4-np', 'Au']|['Cu3SbS4-np']|['SnO2-np']|bulk|https://doi.org/10.1039/c8tc02133c|Is_kWj2bXlUt6M0OhFKfUAyfQNTj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Cu3SbS4-np', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|205.4|0.727|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|Isfwrkqb-1XUChz16ymLsTKuvhx_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.754|127.1|0.469|4.49|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Au']|['none']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.050|IsxSRFm6h7xKdLkLj6TYbSJgZic0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|189.4|0.69|12.1|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|Isysp63pErlYYvvbOmTcP13Zx0lg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C19CsH114I30N19Pb20|CsPb20C19N19H114I30Br30|Cs0.05MA0.95PbBr1.5I1.5||1.09|62.2|0.376|2.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201906681|It73H0U5hifVfLFUYo45YZRLbaGh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|128.5|0.49|6.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6cp04793a|It8o4u9mJAM6sygCVUjzq60yFAPj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.95|209.0|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07369c|ItJSriqx3Ra5AhETJlESY2n7Dnsh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|68.3|0.7|4.68|['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-nt']|bulk|https://doi.org/10.1021/acsnano.7b07559|ItSejirre-f_e9I4wo4jrnTBpfkJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|216.0|0.62|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03577E|ItVbCWhyGslJBtaoutUuUjMsjz_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.038|229.7|0.748|17.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YR3', 'Au']|['YR3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|ItaHq770yJEjkIZC9TuzJQDC9JiS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YR3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.5|0.738|16.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|ItdataZNtgdLq9clDKxr1SAbtgAA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.2|0.6629999999999999|13.39|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1063/1.5004627|ItrEzLgngAXIRCe4My3exMl0bPoy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|21.0|0.44|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.038|ItyU8LO6rWp5z_XgTa2uubVv8sVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|IuAgnpIVoUaW0a_PgCLHWs4_ZYvY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5|1.8000001919360546|1.12|151.0|0.58|9.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'SnZnO', 'Al']|['NiO-c']|['PCBM-60', 'SnO-c', 'SnZnO']|bulk|https://doi.org/10.1126/science.aaf9717|IuDu9_C0njlNaRE3ZYDrL_DQvjwL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'SnZnO', 'Al']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||16.16|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnS', 'Ag']|['NiO']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|IuEDBAUoH-2hD4651rbqiam6Et-8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|191.8|0.705|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|IuN2FL8gcQUfw75e4vEvCnGX9do6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.67|14.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra25160e|IuNDTUtPlz4BIwBKHxYYwDHH_mGN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|200.0|0.672|14.7|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800084|IuOq64bqYHOcdZl6gYgiWdEe5PwA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.889|175.7|0.5670000000000001|8.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|IuT5OxJ7garmW0Bu05QkqxNQ41iU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.7|0.42|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/182/1/012001|IuU4MgQUqvWTtuXmPG94RPwrUNVu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|214.79|0.726|16.61|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|Iuak6ONYY6Os0m9XA2nPN2BvFyBG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.66|278.0|0.6829999999999999|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|IuhC6L15WU1Tsw164zljIRdxp-6n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.04|224.0|0.7709999999999999|17.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|IurE11-Aicmc38H47GMpa-twDNVx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CsI3Pb|CsPbI3|CsPbI3||0.71|61.2|0.391|1.71|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|IusvcyNRKU51a9cLEB_GHqK3-wXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|195.4|0.765|15.87|['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']|['NPB; PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03120k|IvAwwb3LMmROobMmJbmps0MJqzHu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|194.0|0.7490000000000001|15.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|IvMNYjVaXRhR_4YoW1EBhERmLKMb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.8|0.619|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00539c|IvOElsVxQinhCL9E-ccfh4VX70gP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee01624f|IvOJO3QCXnfS2zYoKKDubg2CXHWC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|228.4|0.67|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|IvTm-frs9TPD3Z2jGnFh6yru82fR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|206.2|0.6609999999999999|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.081|IvVbHyoq-rESbwq3vKzcSDAGfFpJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|156.0|0.57|9.6|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|IvczZ7FbA5cxCGZeWWG8tUcJImX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|17.0|0.23|0.3|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.161163|IvgkKCuW_rNOlb25f-xcimptOE8I|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|161.6|0.547|7.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/36/7/074005|Ivnt17JQh-EFaYUtU5yg-tuQbBPX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.49|120.0|0.7090000000000001|4.2|['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['CuS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.tsf.2018.07.037|Iw-rJWC62rY3rd0QlnPD7w12untg|a perovskite solar cell with the following device stack: ['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.0|0.73|14.18|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|IwSP8wWLoXSVDX3qwi0N4q7CCJtK|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|219.0|0.731|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201801016|IwZRTQfernF_IfeNuBMR6KmUHccY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.074|237.6|0.812|20.72|['SLG', 'ITO', 'ATO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ATO', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00709|IwohJkLOQihbqEZK08RLy_5ut6eO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ATO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|185.1|0.6779999999999999|14.01|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.027|IwuC5UdMGb5QZfAgfjmmCuNocWv-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.23|12.5|0.31|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|IxDASR3yjZYulLQhgVRfj0QVQLaT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.4|0.731|16.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800230|IxES0dEA4TAFGeLavTJ_azVBiOZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.5|0.747|16.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2019.103932|IxODxjGH3V4rLDtSjesHZ130q2Oc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.09|222.3|0.74|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|IxPU6F8a4vtMmHuiakeaCj_Mi-3q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|180.10000000000002|0.742|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|IxWgtAgeXll_Y51UXx7QDUEzIfKo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|131.3|0.55|5.39|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804286|IxYW4vmkOzIQIyzF2BbmRxY9ejmZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|131.1|0.44|5.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2019/2878060|Ixn_8TfuiUFrogwi9Y7lx2ldwgYD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|154.8|0.772|11.72|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b10022|IxrJls7jMrRuKke9V9kLMIRVrG_M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|174.0|0.52|9.7|['SLG', 'ITO', 'Spiro-TBB', 'Spiro-TBB', 'Perovskite', 'C60', 'Ag']|['Spiro-TBB', 'Spiro-TBB']|['C60']|bulk|https://doi.org/10.1002/ente.201700002|Ixthh8ju8rhiiBrjKcr0rIWDgwg2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TBB', 'Spiro-TBB', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5860001691169905|1.06|221.2|0.7959999999999999|18.67|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|Iy3sIOBZuaknF_9LtgrFEEcxrESU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|231.2|0.74|17.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.07.107|Iy6pyNyJiX0vSVT1N7awvcMUuLVx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5800001684772036|1.0659999999999998|217.6|0.727|16.67|['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228320|IyBW21QL9fqvzPJ3DLaa50JYW8-S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|189.2|0.659|12.95|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|IyDGkO6IydvUHQJUW_lfKXgnAN7Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/advs.201700025|IyI1cuDc264o47YdeHMTcwRZDtWy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.09|244.5|0.764|20.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']|['TPFPB', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|IySz5nySwdJXVsSrI8l8QzyW7C6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|190.0|0.7|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|IyWUyZRK_rFGeGgr2ti6W-XvdIJx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.6|0.63|12.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|Iy_qT74h9G2dLdDgzwJRAVYIUNty|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.0|0.674|13.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|Iys_U-e3to_m6w1JT2kSI0358i3x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606398|IyvYSULw-rDvrRqzvb6WCz5PXUe7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|225.0||16.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|IyzpfrzqxqU8gF3I_Wzd4tnXSeqv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|150.8|0.53|7.99|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|Iz53z-vhIX_xQ-Ps64aZdWlX5F3q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.6|13.1|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|IzAtuof6u9F-8KGNcCJT9F39K3mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.0|0.773|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00801|IzAwCWHjMz1XEXELWz9tbfFgmCBG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.3|0.73|18.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801509|IzFXohjGsv2-lLEC-XnryW3hDP5Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|102.0|0.376|3.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']|['NiO-c']|['ZnO-np', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0113-2|IzO8JxAlS0KL2S4knO78DavuxuqY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.5900001695435149|1.149|230.0|0.755|19.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.08.012|IzSQdbMn6cC3kol4etmiD61XaC3n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|211.0|0.764|18.0|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.010|IzWZ1dhmYeAFJ5vBlqNWJbnOyLF3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.116|225.2|0.69|15.0|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.201900333|Izipe57YyP0mvyBIuMX0-gNWkKGb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|238.0|0.65|14.3|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/acsaem.8b00106|Izn86fjLbvUvxWcBPsVzxbRjusgV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.9|0.685|15.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2018.05.025|IzpADgaB83GEFTQWU6v4Uw9QGEy1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C6H24I7N3Pb2|Pb2C6N3H24I7|BAMA2Pb2I7||0.82|76.7|0.539|3.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.electacta.2017.04.067|IzpVh-qDI8C0VIZWGGZ379N2Qon9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAMA2Pb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|163.6|0.618|9.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.7.022002|J-2aYBO9xM9XyGekNewRfDLpEquq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|226.1|0.6990000000000001|16.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|J-HZcrMxiIqGjLyGRAWIwfvKXMB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|128.1|0.473|3.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.2919|J-KOM7ABObQnrVcy75RlIJPngou6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2700001354215498|0.595|178.0|0.298|3.2|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201604744|J-TFl1oo_Vv09KPy4pRJtojUAgkq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|169.3|0.48|7.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|J-VWPSobxP7w2lautulcwerHSItD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|131.9|0.55|7.08|['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ra25149h|J-YRXwpidapTNPOzP9JKsJbpPZ_R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|164.1|0.426|6.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|J-bqb3ElZNTr8j4hObOS_mZiJnwg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|174.0|0.75|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|J-dXOKKy5cC2KW0OsKeu9zrdcQrW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.633|201.0|0.33|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|J-hoGPsQMnE3ZQR1yGdoeSLfd1iu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|213.1|0.7909999999999999|18.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900529|J-tcAfEHPpq-dPZUH82nQXaOMq6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.0|0.72|17.19|['SLG', 'FTO', 'Cu0.67Cr0.33O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.67Cr0.33O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|J-v6AWmuV4NrDrXH0KvS1Jof0b4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu0.67Cr0.33O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.56|10.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601575|J00v_sKPvM5GZRHtQ4EH8yDi8GU1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|129.3|0.352|4.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|J05ReZ2IbzRn8wzT-Qg21L8VyH7m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|198.0|0.555|9.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|J0F7_njZiWFp-6a_EnZdyQm3knEk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|11.5|0.55|0.0579999999999999|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|J0JbRMrKDM3fXXwNgPvmWCoRonuh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.3|0.632|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|J0cTFVmTeN8bLrhy_2wWnSKNlblC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.075|129.8|0.67|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|J0d_3TqyFGzgsha8PdWG_ordH8dV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|221.0|0.72|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201801016|J0p_RvdkuW73ediLH21phLd1Pype|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H516I249N184Pb100|Pb100C100N184H516I249Br51|FA0.84MA0.16PbBr0.51I2.49|1.640000174875072|1.07|220.0|0.67|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|J0xFReubL1OJNvyuoA3Obs8AE7Vu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.51I2.49. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||||||['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|J10eQoxhkERuH-eGQQ5zYf0KjxUi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|J11NCEUU9WF9VurF5DT6XzfpL0qk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr3I. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.046|219.8|0.723|16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|J12a3PadenbzNPRFsHOTbzSc5pGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|204.0|0.653|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta02184g|J12nPkbyaDTdUdCRIVF-uqOKGCqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.103|228.1|0.75|18.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05484c|J14MIS2vacTNWEGQdRgbqYPWXENZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|176.5|0.73|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|J15o3xhkp8Vy1YOL1o_wNYy_gC1x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25Sn1.0I3||0.176|156.3|0.419|1.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19143|J1CsvKbb5RWK6WGpuHh3YJZLPBO-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Sn1.0I3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.901|225.4|0.569|11.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|J1EYbC1WLTDiS9iA2UGp5IJcauCR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br18C89Cs11H445I282N178Pb100|Cs11Pb100C89N178H445I282Br18|Cs0.11FA0.89PbBr0.18I2.82||1.096|247.1|0.7759999999999999|21.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|J1WGkpI7nAVragm4MI4zqaVWwG7K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.11FA0.89PbBr0.18I2.82. -Br45C99H528I255N165Pb100|Pb100C99N165H528I255Br45|FA0.66MA0.33PbBr0.45I2.55||1.06|246.9|0.711|18.59|['SLG', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.010|J1fMJ1GBQJ8F0xNST5aT2vDg9dEP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.66MA0.33PbBr0.45I2.55. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.04|215.9|0.78|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601451|J1qJnlRv5GbqivnQxmPdMfx5tsRi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.79|108.1|0.51|4.39|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1007/s11082-018-1652-4|J1sBpHj4ecWEqDFH-AE1VRVAfuHH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.518|10.8|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|J1tqOCQqZDbqK6UkIMQO7dGmZDr8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.96|213.9|0.631|13.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.121|J21fqneSFgObZb9_OHyQTPpYrY7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.09|148.1|0.62|10.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/ja5071398|J25k-_cL2gvEG9tK5vvvFq0A7TXv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|132.0|0.38|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|J26wp53yNLudDnEItyvgy2Yh9aOO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|231.4|0.773|19.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-05583-w|J27evptyljx3sWO8dtnglzi7BFX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|15.0|0.15|0.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Paper']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|J2Li4yr4tx_x6YS6rUY8Z2LFvqir|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Paper']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.1|235.9|0.767|19.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|J2OVlbZSyrqR8l740G0aIFb9MI7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.3|0.73|17.6|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1021/acsaem.8b00726|J2S43Q8ChxmUCUP1U7LbcfGK6fWD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.4|0.76|16.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc00331b|J2TuP9gS8-2JpR3TBKqMGVe8rYtS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.095|210.9|0.71|16.47|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|J2eV0WRyYaOJLAP96rEm99Iu3x-4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||0.92|110.2|0.56|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|J2f_9y1HGpwP42mLt7NDt06HO5z1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|158.0|0.76|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|J2hqcVQSwMEp9XyFISeWmjepQpwQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|170.7|0.639|9.03|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5nr06692a|J2jS1ltORGEpYF0e7_2C1aIk6FUk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|175.9|0.239|2.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201700007|J2l8WU8745aSGU6qBkvC_XfywJb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|215.0|0.77|15.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-np']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|J2m0v_pFG68i9Ul2qf07dzMCszwA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-np', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|189.4|0.705|13.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|J2uJ49js0ueY1hSYj8gSOLOtByE_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.8|0.74|15.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|J2wVBwN8H7AblaRWr8N973O8hwY9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.4|0.7829999999999999|19.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|J3-W_IO1NE4betcTv1rPim2gy8np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.6|0.624|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|J359M1QiN2IMa-3Mjl04-_C6tXrI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.1|218.3|0.77|18.37|['SLG', 'FTO', 'TiO2-c', 'CsAc', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsAc']|bulk|https://doi.org/10.1021/acsami.0c06315|J3Cool11Iw2tv1etQirGBcPCPiwB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsAc', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|37.1|0.21|0.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|J3GQshORgwsb2YkCzIF6234hVSGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|150.0|0.765|12.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/cssc.201600940|J3ROjfEVI2IMlqPGRq6_ar64-bVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.11|240.7|0.7829999999999999|20.92|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1002/adma.201905766|J3RWPiXbO39AE-4w_89rD5wGCNjC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|213.0|0.746|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|J3SKLWNxUF_FH7kE3sbauPto20ZC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.503|61.8|0.758|7.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.202000199|J3StysTXpiWgjhPCLhDgGqfoYB9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|170.7|0.67|10.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr06217a|J3VAy0-FXhx1HhSb7XU5wBU_9fcK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.981|153.0|0.74|11.1|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|J3VrBd3v7pTy5os8epUA5DOX0Ess|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|204.0|0.72|15.7|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|J3XXZjNQXvckm-3bw-kbsP37lDwD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.9200002047317917|1.13|98.9|0.52|5.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|J3_J7_mqyu_wkzYV2LfeGYJluSPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.07|119.3|0.6709999999999999|8.66|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|J3bt-4KMU-s1Aim-Jkari9ENe4M7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|234.2|0.752|19.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|J3lmjFgFSW1UUlz0GgeNiTAH_JqG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.81|18.8|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|J3qFW5h1fG0aayoVRpjKnb6VMTJy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.04|222.7|0.741|17.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|J3rOYD3_qmewcr5D7Jmrof-t0PVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|168.70999999999998|0.6990000000000001|10.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1002/aenm.201602610|J4Lv-HxnuWn1RKsmxsdKVZsit9CH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|166.6|0.563|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|J4N-rClfF4YX2ALU7ZGwXRFjLkiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|143.1|0.71|8.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b07559|J4NWRWKaoc6pJpEnnPhlqtot-7YU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|233.0|0.66|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.surfcoat.2018.12.069|J4Nc5J7SOMRQSgOSmNkNP7mGrRqn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|219.0|0.78|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c7ta06338e|J4iPGUK0GJ2fdwfsP65-pGu1FYOq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBr60C20H120N20Pb19|AgPb19C20N20H120Br60|MAAg0.05Pb0.95Br3|2.300000245251625|1.05|26.5|0.706|1.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|J4tx1wK1FTzbMzO4VvGP4kCc-ee8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.05Pb0.95Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|173.0|0.59|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.04.038|J4zla_hqWeB_MRlTvrAdhO6fNsq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|184.0|0.75|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|J50JgxqlWpzvOoAVbIMFECxj2Paz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.925|181.0|0.61|10.1|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.004|J558Erikre6XJt5EeN6bmY7CAQhK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|222.4|0.75|17.22|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.058|J56I9jC_mPzbJsYuO9zbJeuprlKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br27Cs10I3Pb10|Cs10Pb10I3Br27|CsPbBr2.7I0.3|2.320000247384248|1.12|51.7|0.47|2.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|J596sANQ6yj-qzHINGkx_c4SowRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2.7I0.3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.99|81.7|0.531|4.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1016/j.joule.2018.07.018|J5E0QkGwZosyFzseRL4ElmGhqY7p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|195.6|0.64|11.36|['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|J5HN-98jresg877eAvcLj-ePmO64|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.6890000000000001|11.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; ZrO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2016.07.003|J5fxhf1MeurgCH4pVtGIXysWlGzh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|234.6|0.76|20.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['P(VDF-TrFE)', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|J5jkM_5kg1GS_r-ZapkMrY5uXm9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|194.1|0.794|16.95|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|J5ml9Ug_9gxsGvif168g2xkm8Y-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C7Cs3H35N14Pb10|Cs3Pb10C7N14H35Br30|Cs0.3FA0.7PbBr3|2.28700024386542|1.341|71.10000000000001|0.77|7.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5087246|J5tJOfdcCL_0xEPrDgQ8lRexPs5i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|202.5|0.632|13.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|J6-Qv1Dcr93ge-70M_ObOXCykAaN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|235.8|0.62|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|J64lhYODj17Asc4BHiMiWE1dfWqf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Ag']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|J6Ey3Gykf1Jh_TTAWQi4zy3Rnybs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.025|221.7|0.73|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|J6_n7-efogTYWAgw8GaNfesl-rX8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.5|0.72|15.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta04851c|J6gvIt2v3EhdD27PIyvswwICmxFT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.624|10.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b00900|J6liDTi7_HeF6ahODtf7AtaMO-bq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|154.60000000000002|0.479|7.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|J6qPXYQaVT5Rf4eCYj0qkytbwhAE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.82|209.5|0.532|9.14|['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO-c', 'ZnO-nw']|bulk|https://doi.org/10.7567/JJAP.57.06KB03|J6sGSJQoZthCI2xOfBUq-bqyZ5Vy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|220.5|0.51|9.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|J6siydW9tTDP6xQxrhDzp5O4uOt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|J6uWIRYUk6hy52kOGiu7vIDh6o4h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|173.1|0.7|12.41|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'CzPF', 'Au']|['CzPF']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.12.031|J6vPxEEcVa3iuAc8SclZSTwhb9H-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'CzPF', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|195.7|0.8|16.1|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15031|J6zzwB0pRDyDv0RUKL4vWK55RPOg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.38|7.0|0.4|0.37|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz402706q|J72Xei5czIU38LARBvIpntbOWfCu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|156.2|0.56|8.8|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1896-5|J74IIr1jpQkRO_55PrpAevZu6uhB|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|186.4|0.6809999999999999|12.78|['SLG', 'FTO', 'ZnO-c', 'AZO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'AZO-np']|bulk|https://doi.org/10.1016/j.sse.2019.107714|J74_QQ-lWzMtX3iNdeUi8mCEhjR3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'AZO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.6|0.78|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|J76rUBeoH69mCRLshDZYS99V_hzU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.09|241.8|0.79|20.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|J7IPvvpe1gfhFFvdcFY6n2aFhKjM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|169.04|0.358|6.34|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|J7K_ss7ZjdJCggE5bcWoaiwfRBTt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.92|220.5|0.706|14.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']|['iDM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en13112897|J7PaA5a5uOCIQqCdbhxVVerIDVRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.8|0.71|16.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Butylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|J7ZZkUYyi-e36VN-Fx41XinW-noy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.162|155.65|0.7909999999999999|14.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|J7_1U_ni9UmfibMEDhzjXlHLbV9r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.3|0.746|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|J7fD_pFNYlo31afkat-X9VbC6Lvj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|144.0|0.426|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|J7gyp8QSFB0hViNi7MLQampHWv8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|217.8|0.76|17.42|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|J8AoH9pC9ZqltDQMCzryJwEwoGBk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb4Sn|Pb4SnC5N5H30I15|MAPb0.8Sn0.2I3|1.500000159946712|0.773|118.0|0.65|5.9|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201604744|J8F46c3lf-d2e7U-PcBF1e08Fwx9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.8Sn0.2I3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.099|206.2|0.76|17.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|J8JJqDt-sBvyRoy8TvVlW4VOtQ7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.97|236.6|0.64|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF1']|bulk|https://doi.org/10.1002/asia.201901452|J8LvR0AIwiN0sxZixihqN3OuiaTK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|170.0|0.52|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|J8UgDYilkC4TuvCP198sSiYzadwB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.905|191.07|0.7440000000000001|14.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|J8fXwR0LNLqm5F5QwwcL3eXG3aPX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.0|0.66|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-2', 'Au']|['PEH-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02014j|J8pBgGSR0fTwhRQkIsGEpLBW0gZT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|231.0|0.718|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|J8vo8UDuhxsLGxMJBDahsX-7lSdo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|177.2|0.63|10.2|['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PANI-PAMPSA']|['C60', 'BCP']|bulk|https://doi.org/10.1134/S1063785019090050|J8ydUn7XnyJvwrB_nwepXvduTXOn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.6|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02772f|J90ZMlwu_5nwFh876cLHgLmL3I4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.07|233.0|0.72|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|J95HHDiDiXoKrx6iBQCYj6lEWOd1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.8|25.07|0.693|1.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|J965zxbIzodyGjkU85cPQlmnTSZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.13|165.9|0.64|12.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|J9AuVDnGhvfqMbqt8f_9wS8aOQKH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|202.1|0.5|9.13|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|J9CltV_Dg2zajP3NavUr4pdF-dqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|220.0|0.63|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.35848/1347-4065/ab6866|J9K8qJpNJ_NKlzI0cxXFaUl4alHb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.1|232.6|0.7879999999999999|20.16|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|J9KpUMQeDCElZ70dnSqLWUc2vAn-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|225.3|0.769|18.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-018-9343-1|J9T3IitYI5Of4E4XEp_qPG4YJVdJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|215.3|0.72|16.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|J9mwuM0f_xoKvkfW5spchxyUp49L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|141.7|0.672|8.32|['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|JAA_WLcvsCFsDHju4dmnUhkeNNK5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||6.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|JABTF3YHHF6HS3c-nuipqC2UHg9e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.8|0.63|14.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|JAbSdLSUJdTlAQk_9DI2-Ax05FOr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|236.9|0.71|16.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Carbon']|bulk|https://doi.org/10.1039/c7cp02523h|JAorNmHiP_bGtbV4NlsQ0QiSwIrF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|220.3|0.82|19.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201804217|JAp4bMiKSE93PTCDEjqoPWjck_5P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|217.0|0.61|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'H:MoO3-nanobelts']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c8ta10892g|JAyVKrc8SCfbcipMvOp1UnjgbXYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'H:MoO3-nanobelts']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|117.0|0.49|2.5|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3nr01542d|JB2m9L2tewmON5bj6xMGh-xV1EsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.0|0.66|13.2|['SLG', 'ITO', 'M115', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['M115']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.052|JB6zEXzouvwUA7EIWcR0qYqy4OZk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'M115', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.02|182.8|0.73|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1021/nn505978r|JBGCsBmMvLC5MWW7qT7MderdVDex|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.3|0.6990000000000001|14.35|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.163|JBSWJZguQ42kxU2eVJPRNobQI2Zw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|172.60000000000002|0.72|12.65|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|JBZbmVVnqvcgKU6vOljD9MW79eXh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|JBb_iNdLbF7-UqphCBCB1YWv7xFC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.9|0.63|18.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00450a|JBsY5Aq6RlKz5QxVX8U8qGEWU4_O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.022|10.7|0.759|22.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NH4I']|bulk|https://doi.org/10.1021/acsami.7b12721|JBsdiQ59Z91GzbNHb6CI1KiMsbvf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.085|193.5|0.716|15.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|JBwJjecG7oT1DxQHlZXsytTOXL0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|195.0|0.65|13.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Cu']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|JBwq09-X4eDga5DVSfwHrJSUPiN8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95|1.6000001706098266|0.962|179.0|0.59|9.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.matdes.2017.04.010|JBxRO5f0gwCILow5TJUJH81HuEfH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|156.2|0.799|12.8|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|JC5dqLrsY1lgIeque4-o6GbKb_JV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.35|82.69999999999999|0.695|7.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|JC5nu1UoU_gC19KPH3p8p5aZobID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.7609999999999999|16.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PC61BEH', 'Al']|['PEDOT:PSS']|['PC61BEH']|bulk|https://doi.org/10.1039/c7nj04978a|JCHT-L_Us6OkwWTahKs5tHkwWCF0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PC61BEH', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|238.4|0.738|18.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|JCWx-qv0pgHqYFyVbGBVWaTdL-z1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.93|210.3|0.7|13.76|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|JC_z-n7WV7DULRYvBxvO_2Q00Q-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.14|241.0|0.69|18.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ee00056h|JCi18ritejLxx8c0D_NEKbGhu62a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.925|180.7|0.5660000000000001|9.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/am5077588|JCoQNdBnNEHXUNckvvc_gE9-nwfR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.952|206.4|0.488|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105734|JCpPXayDmuYEwZbaF7yX3ksx1bLp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|235.8|0.703|17.84|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|JCqrrV__RE4eMvqq3PR0zxNwcbiT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.9|162.0|0.607|8.84|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF1', 'Au']|['BTF1']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|JCwBZLycOs4sp0tkO4yeKUUFG6mx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|210.7|0.71|17.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1016/j.synthmet.2020.116412|JD8HtQLh9icDEC-IA6nGhbbRyuJz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.025|215.0|0.645|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|JDA7-OiPdOVPBotAoJn5q3n02VMv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.11|235.5|0.77|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|JDTQ1x7XdfD59Wt1ff5n0M1RNEWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|208.0|0.53|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00788|JDTdpQ4VAvpk2coSqSqFGS2qV6UD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.0|0.7759999999999999|17.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr02146e|JDbAlTtM_eBByXKa9UO9g8qQHqYS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.0|0.75|16.78|['SLG', 'FTO', 'TiO2-c', 'PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBDAN']|bulk|https://doi.org/10.1039/c6ta08992e|JDpt-Qnh4OtFJAfZsvaAkcILohkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|216.0|0.5720000000000001|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|JDrP5yp6K7fKZ21r2L8t9T5K6FSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.06|204.0|0.603|13.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b00830|JDsd4dXEXt1Oxlc7CSh4U_f5pqza|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|222.0|0.79|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-SCH3', 'Spiro-MeOTAD', 'Au']|['HS-Ph-SCH3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|JE-GoR3Yb1cXyiMcGQ7d9X2bXVGo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-SCH3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.3FA0.7PbI3||0.961|177.89999999999998|0.627|10.72|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|JE0KXunDBzGb5_fLHRyIe1hhorHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7PbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.1|141.7|0.7070000000000001|11.03|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|JE1uYF1dd6vVDrReSJI26lQ-Cr2m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.769|146.05|0.498|5.59|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4ee03664f|JE5-NcaLLByvOSv5LpXBxWES7uER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.2|0.76|18.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|JE5_Kkg-w4LlgQVGPvYUhZd2QleA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|180.9|0.82|15.13|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc02744k|JEEPbmxhnqjAFPJQXtdaW7TP9Yfh|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|201.0|0.77|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|JEKnEJG4jXo2N89U97oEnStf7wC3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.9|0.7240000000000001|17.36|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|JELhkXhUV1YcGmJyD5CKLxTroqcj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|168.4|0.58|10.79|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/advs.201700031|JEQuaCalZH5Ia7L1vMBbedkArliS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.05|124.1|0.73|9.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|JEUBbmsbmNoBBrAyUVCfwnZVM1R9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.06|204.8|0.687|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.scib.2019.04.009|JEXMrr1DhWOaw1l0XlDigCp7wIOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|226.0|0.74|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00059|JEbnyPylHvVsLXp8VIktxgLTpMCU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|232.1|0.78|21.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904347|JEfPGlnkq3EGjpSppdeYCPdYDzOg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.905|170.2|0.75|11.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|JEhPVvEltZDm3XqdUiB6r5WfMTuu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.09|212.0|0.73|16.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900789|JEotkIvjlK3F6LEpbcNZeKxpun0D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|59.0|0.248|1.3|['SLG', 'ITO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE']|bulk|https://doi.org/10.1039/c6ta08799j|JEpaVpHebd5FyElGs1JUzTwFmfFL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b03455|JF26CMh4HLOv4gmQLGuyaSdfvRUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.24|75.6|0.28|0.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.06.002|JFBIhtUxIQxlj1312HVMoXaA_iL7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|136.0|0.45|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'PANI', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.04.028|JFCnme8lwInOB12DH38cRnR3i1Sf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'PANI', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.3|0.73|16.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|JFCxwQwzY3TuZKuKsQZHBN46at5u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|220.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TC03077G|JFGirrt4AwJ3QAVDIbvi_vEyWNFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.898|171.5|0.4579999999999999|7.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|JFK5tMbdYtAHZVwiF8GlHp3ABntk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.11|243.0|0.768|20.71|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|JFNzORznxL51ahwYHy7vodcDEtL2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|224.8|0.759|18.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|JFT2gKCjwGaACGF8-1Qrx2-sEx_7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.331|234.2|0.536|4.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|JFTBS1Fi2rA-KUR4tO9FwH7EWW84|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CsI3Sn|CsSnI3|CsSnI3||0.2|37.6|0.45|0.38|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|JFbnCW_dIW74yZXx92yXZCjCNVBr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.2|0.75|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|JFrtXmD8ig_W2mXC-hzVoBmKGFuD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|205.3|0.65|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-FA', 'Au']|['OMeTPA-FA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|JFsYRgvIqKF5B-kiacrRjLY5G6Qm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-FA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||0.95|220.9|0.782|16.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|JG50ka_q_pz3urxE9njI5dV3Q8fd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|161.20000000000002|0.5|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDN', 'Au']|['BEDN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta05121j|JG8dnwwLoR6oIwHm78p5aV02SU8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C23Cs2H138I75N23Pb25|Cs2Pb25C23N23H138I75|Cs0.08MA0.92PbI3||1.0|202.0|0.774|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/solr.201900406|JG95gH-4_Pq305rg691w5M9QMxEd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.08MA0.92PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|165.0|0.586|8.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/2473152|JGDcwp_AH7xeDKwo_fUD3qQzuITY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.6|0.66|15.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.014|JGY4Z1RjqWj63RZfDOI8vKkMZ2SA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3|1.2400001322226155|0.74|267.0|0.71|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|JGh30LNL6YKoupTBXVEr_NHg13uv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|91.0|0.286|4.07|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['Unknown']|bulk|https://doi.org/10.3390/ma11091759|JGh9HAccO2beNR6pm5wIIe0EBj3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7700001887371206|1.05|225.0|0.8|18.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|JGmgd_FPzcgPvXMlyaKzHV1OxXZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.631|120.0|0.55|4.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2NiSn4-np', 'Au']|['Cu2NiSn4-np']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01001-z|JGnhuHx4kZZXdMGd-Ke1FrN7eFVz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2NiSn4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|172.5|0.531|8.61|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02562|JH-C_L_3JJ8xE21sq-fyC-1ABzH9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.53|184.0|0.45|4.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.035|JH3iltLGR9YXkWicG7AQq3STwWUX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.04|181.1|0.63|11.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|JH8h9mFL-aaHEyH8Umb0CssnovDy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.094|238.7|0.7929999999999999|20.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MBA-SAM']|bulk|https://doi.org/10.1021/acsami.9b18034|JHCOYFeIg5-9BOCRfrcfAQJFxzQA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|218.8|0.669|15.19|['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'Au@poly(4-styrenesulfonate)']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800061|JHQWo3Qpw6r7AUtO3VEC3x8iKJDU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|163.0|0.67|10.9|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|JHRKhBah_oil_ripMZjmvlkIPaLS|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4||0.92|190.0|0.644|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|JHhmBjVnXmAS-TloJCHKoDx2nDtq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5460001648517447|0.961|195.77|0.6829999999999999|12.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|JHkqObWyTaSBmWAmc6dLRg3Jw0J5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|198.0|0.659|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr03021a|JHwlz8l-dJ3rjySf976fKbnuk1D6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6INPb|PbCNH6IBr|MAPbBrI||1.06|186.3|0.77|15.18|['PET', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta10585e|JHzlt-XmewVNNvrO_gLzTGaf2uuk|a perovskite solar cell with the following device stack: ['PET', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.5|0.71|16.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201801496|JI30QRvETKsY8QCfnQPqVuO1n9Wi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.04|209.8|0.738|16.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.02.020|JI5ZJoxRHpoYaJWiFfH-i95Ye8M9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||1.02|223.6|0.74|16.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cp07461e|JI87tyTAHa-wNvv6fvaGv5S0SkLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|202.0|0.432|6.67|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|JISXDLUXNKC-kpw2cUsKzsAoZizV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.021|10.7|0.755|16.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NH4I']|bulk|https://doi.org/10.1021/acsami.7b12721|JIeSH6igT6K9UKadz2koI_ouQnBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.3|0.73|13.79|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|JIf43znUAnT1oAnJWUhHuny5qSTM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|171.0|0.43|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|JIqPUGkbcWc6lgaJXG-Ilfh2awQm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5800001684772036|1.07|232.5|0.73|18.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|10.1016/j.nanoen.2019.03.091|JIs3TXC4H2APgUYPf51EdvRkkK8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|181.4|0.532|8.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|JJ2RimIsYYVK-Ryt34AmMQqS9VnB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.0|0.73|17.4|['SLG', 'ITO', 'NiO-c', 'Sn2O3-QDs', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c', 'Sn2O3-qd']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226819|JJCI61VNXSkf3Fa6JByCa6e000-_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Sn2O3-QDs', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|230.9|0.7340000000000001|18.22|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6528/ab10f3|JJHU6OIm6IJ_AXyBIr77TaDKJDiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|160.5|0.66|9.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|JJYY9MH-5NzOaOSobDIGU4SRL7Tf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H20I12N8PbSn3|PbSn3C4N8H20I12|FAPb0.25Sn0.75I3|1.210000129023681|0.298|168.34|0.52|2.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|JJbSQcIVTTmuGwqcGzTNDRQ5gUjF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.07|186.0|0.731|14.5|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|JJbo8YbIoQaEc03RUuPPrVN-z9Tg|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|218.8|0.743|16.92|['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-np; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|JK23mBcxqoHnElaTCA5G0U6L5bY_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br19C140Cs60H720I181N260Pb200|Cs60Pb200C140N260H720I181Br19|Cs0.3FA0.6MA0.1PbBr0.095I0.905|1.6500001759413832|1.083|195.7|0.763|16.17|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|JK42vXLj38r8jvHBLc01c6BEEHth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.6MA0.1PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|95.3|0.821|7.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|JKNwbFCWoe4y2Y01MzSCdJ5eYELL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.935|183.9|0.606|10.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.028|JKXGNPCPcAZk3HhxDSs8G5Vd3sQ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|198.0|0.74|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|JKY1PVBlKJa8XbNcr6rj8agGP3mf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||0.976|231.1|0.797|17.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']|['SFXDAnCBZ']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c06318|JKYk2845HBc5DC9UgYGqtk-AThrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|158.0|0.7|11.8|['PES', 'PEDOT:PSS', 'Ag', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta06657g|JKuyWLunWlRNxXeeAZs0GVT19IS0|a perovskite solar cell with the following device stack: ['PES', 'PEDOT:PSS', 'Ag', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||0.98|156.4|0.66|12.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|JKyqpTqXOHnczg_TrLOof-9TMiYX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.52|37.0|0.41|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|JL-1E7-gq86-uN4xB9WtHbWXUMep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br13C100H550I287N150Pb100|Pb100C100N150H550I287Br13|FA0.5MA0.5PbBr0.13I2.87||1.13|238.0|0.8029999999999999|21.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b09300|JL29MHEGqTbLJPpQmpJ3sWL2HjXA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|JLIPQI0A-Q9JdhJJIcBX7BDdzVaf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.02|231.5|0.76|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsaem.8b00286|JLM0VnNzy7vn7Sd0hqJTy4h-KWiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|JLOZVgzix-gkhpcw6EVoEeZYDxB7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|198.0|0.721|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|JLVFxaxYVzLIGLmz-NGiMyEhzWvF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.893|208.0|0.421|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.09.020|JLW1TI3QAEeDybOEPkmK_GjUIJgd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.9|0.665|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00539c|JLWkuMCzVw-wOwnxTjezFqdw2OrL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.5|0.64|9.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|JLl8VSNLRx5UHQSsbgkhPGUR0NPC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.7|0.77|15.7|['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CuO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|JLnPFdue2JjbaWv_OqrMgpxzr4-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.947|222.8|0.652|13.75|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.electacta.2018.09.097|JLpYXI5SBMn7JZjnsH0XjJRXFyTv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|178.2|0.725|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|JLu_h4PgyLsosFupEHy0XgG9Pox2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.736|16.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|JLx6P8BxgX919fwcU_6r0E93v2yT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.99|223.1|0.68|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|JLy3WiXT4-62ZK4XsfUWgbmcTBLQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.1|0.63|11.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|JM2N-aZG-57udb7dtwFEkvNymgj_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|203.5|0.6579999999999999|13.93|['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|JM7k8v2nZmxDJqK_MQMY-6pxbFzt|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.12|217.0|0.713|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|JMJj1TKmLnKpe1C32N_j9Fik_Mgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.118|231.84|0.7609999999999999|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine', 'Au']|['N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806015|JMUjVLMGYUsB_Z74YFAlbD8P_G_z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.3|0.74|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:GSL', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS', 'PEDOT:GSL']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/admi.201600948|JMaBffbOKoc-YW9_dY4tvXsv9eD-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:GSL', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H464I249N166Pb100|Cs10Pb100C90N166H464I249Br51|Cs0.1FA0.76MA0.14PbBr0.51I2.49|1.6100001716761378|1.08|221.0|0.775|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee03513f|JMfsrZ0is5R89fjCgVGEzUeEhDxX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.51I2.49. -Br30C95Cs5H484I270N181Pb100|Cs5Pb100C95N181H484I270Br30|Cs0.05FA0.86MA0.09PbBr0.3I2.7||1.12|239.0|0.77|20.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13876|JMgn2kJtvpYqCeSJRRhzrurET-Nb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|209.2|0.73|14.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen', 'Cs2CO3']|bulk|https://doi.org/10.1021/acsami.7b06681|JMgwHQKfB05QCi-j_BgTdMLtk_Ey|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.64|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|JMoNHQEAibQ5l-XCGuEKnMUVMiqL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.065|218.8|0.795|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTSe-1', 'Au']|['BTSe-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801734|JMqgqxbVmFaoivmAKEcTJaNX0TDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTSe-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|165.0|0.71|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Ag']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201601186|JN-d6LdYHIDJY_TeTh7vs64ozskH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br35C93Cs8H477I265N174Pb100|Cs8Pb100C93N174H477I265Br35|Cs0.08FA0.81MA0.12PbBr0.35I2.65||1.045|233.7|0.787|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201903705|JN1Z-zJ8pJF4foUV9Df_mxjqyfhh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.81MA0.12PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|94.4|0.3|1.33|['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']|['OMeTP-SAM']|['CITP-SAM']|bulk|https://doi.org/10.1002/adfm.201805098|JN2MjmP0YtLQPKG14-TbKQbgtPfe|a perovskite solar cell with the following device stack: ['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.6|0.653|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SYN1', 'Au']|['SYN1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2017.07.037|JN3ywf4dsyNl42nxjyjBgH4jpI_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SYN1', 'Au']? The composition of the perovskite layer is MAPbI3. -LaS3Y|LaYS3|LaYS3|2.000000213262283|0.0|0.0||0.0|['Graphite', 'Perovskite', 'CdS', 'ITO']|['none']|['CdS']|bulk|https://doi.org/10.1021/acs.chemmater.9b00478|JN6eQn3elX73Ufh3Gx6y9ZLdF8-L|a perovskite solar cell with the following device stack: ['Graphite', 'Perovskite', 'CdS', 'ITO']? The composition of the perovskite layer is LaYS3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.4|0.721|18.03|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|JNDiSqB97swdH7jBLFYD9bTlh_7e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|167.0|0.66|9.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbSe', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PbSe']|bulk|https://doi.org/10.1002/adma.201800973|JNMxXzR8GzjxQiOLB3tKPvi81Skn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbSe', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.0|0.7040000000000001|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|JNRy9el6I5ukUThk3DXcDtaBxXTD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|201.0|0.69|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05667|JNT0gQP-80f--OKPZIQFp1cdcdEm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|212.0|0.71|13.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|JNUpeUpyzzh1oVyLCL2br5yq1MII|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|163.70000000000002|0.409|5.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/ab2a5c|JNeBqWx1G1JAqBTYl0_t7IDGDMB0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|224.3|0.747|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|JNiLQzvWYHpvglkEtpOflsigrT1C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|180.0|0.51|7.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|JNin5JkoZIg9WDHIaFqOOgE4ZI9U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|0.98|197.0|0.6859999999999999|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M4', 'Au']|['M4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03564|JO2rN6Zpi3p4gS2cTpaKPL826yVC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M4', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|123.1|0.54|6.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au', 'Pt']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.035|JO6SvMXisn9ZZMIIRwlwhewcrSvN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au', 'Pt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7190000000000001|169.89999999999998|0.5|6.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|JOB1fNmm0CVhEGD3Yw4-Dgdn3Yhh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|228.9|0.645|15.24|['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.08.083|JOIOncPS-a0p5E1TDRjqbIbr0jcB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|114.0|0.67|7.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-np']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|JOMXfMaNkeD2FZgEjNS4wsKX9vFp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|197.6|0.679|12.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b18530|JOU6URQnlYEA3mBxvA0hSqC7JN5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.08|214.4|0.7|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|JO_GVbdNlYuQjx8fCn4Hc8EQx2CY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.6|0.544|12.7|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|JOd4VKsUYkhBl28iCRvrOdKRbTvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|JOffl0jscElSJqhopPvI-L2I4jzU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|166.0|0.5329999999999999|7.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.09.011|JOhcR76gSBQOGpkpPERdF788UY17|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.8|0.698|15.71|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|JOuASK2x56KGz7y9r5_-fhbukMgw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.7340000000000001|271.3|0.706|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800256|JOy6PuI3jeXTiVQJMaQJG_bC_AoD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|225.9|0.73|17.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800130|JP6Ifi4cpp7z-cwWuTXavAoNBvQf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.939|193.1|0.6859999999999999|12.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-4981-8|JPABFAcyw0vBHb32isGLh-e8RA5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|199.9|0.69|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-1', 'Au']|['TbT-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|JPF3kiqNYUJLcOnj2O4ql14tnKZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|214.3|0.785|19.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc09002a|JPMo-l7aC-p4Rf94o3NH5t40Ff1l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|228.0|0.764|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909737|JPN5lqoTiOypsZi_WgT9s_zoA_IF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|233.0|0.78|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|JPQbJOdWxOh6ZZjG9gL6XwGYDFwf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.81|212.2|0.59|10.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|JPSnmLn81oN8xayxGPMp10CRb2uT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75|||||12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.161|JPWBc65evAVYf2EDja1kZvYRTT7R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|0.98|143.0|0.58|8.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/ja5071398|JPXn8y0fMLg0n6xU8U35gXuqVBx1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|46.1|0.46|2.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']|['HBZ-70']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|JPc07KjYHps156KSnOmWwfLnGoKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.0|0.73|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|JPdtfs4g9pYA7sztQGiX9hw-uqJE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.912|211.0|0.65|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02264f|JPjXpInSniu_7ll2u8mZ4ZRQ6mN_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.7|0.721|17.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|JPmIOMYVgfU5zI7vb5sSsOHRFBeO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|162.0|0.59|8.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.11.094|JPmNFF5v8yy11y7DY146nl6ppEe9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.0|0.7|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|JPvqoUgeLhwZHonbtGZSybrGv-zH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|150.0|||['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|JPyLPR73n-ZitO1u7eLysJKujvGP|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|238.0|0.57|11.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl500627x|JQBf9Y-Ry_RpWCTJgs7hzyROPf9e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|236.6|0.6729999999999999|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|JQCF3ZLEXLCebDyJyfqWcyRHwOO4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2|0.0|0.25|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02734|JQEbnDOLiUuEYmwHXTb-s1uPEYuC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|116.6|0.7390000000000001|6.72|['NOA88', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.9b00796|JQMbNO0XAbkbbMJ6WKXKHzJ433xK|a perovskite solar cell with the following device stack: ['NOA88', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|183.2|0.531|4.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|JQYRbTULyUZsdwtke16n7ZcSZVsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|215.0|0.7659999999999999|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|JQZyFzx5Ge8clf6jZuk3_S9SEVK3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.78|17.2|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|JQ_KXvObGz1xmXwqsWomLP0WDtIm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|200.0|0.746|15.67|['SLG', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['CzPAF-TPA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|JQeIGJk94SNTAbI8vPXEFgYWzB0z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.07|246.6|0.77|19.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|JQhL4F1fce8Xk-7wt8ho-gXrjouR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25|1.670000178074006|0.88|128.7|0.5|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|JQiIgK_3iOoVjETxdo4fbIHY_zTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.986|183.0|0.72|13.0|['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']|['KY7F22-np', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|JQnlZ-eto418qjX2AN3IB1ZQWflP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|187.0|0.57|11.9|['PET', 'ITO', 'ZnO-c', 'Urea', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Urea']|bulk|https://doi.org/10.1039/c6qm00248j|JR2K-lI1ZZ3988vFRBApep6VgiRD|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'Urea', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.7170000000000001|122.19|0.644|5.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|JR2g3n-sru1ZLUOjw4vyUWVtEuIE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|209.9|0.725|14.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|JR4PQe0YTzwGuAk3DN_iXsVmPeSE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|168.79999999999998|0.66|9.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01718a|JR8tS-KhUSsTF4iYyNNZn5yGfu9e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|211.0|0.58|13.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Al']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta05004f|JRF5cNVYqXK3xSt5KLfwFhBMHe8-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|173.0|0.753|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.9b00060|JRHM-0HtXNvgF51ZMWO3S23-1HLp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|168.2|0.73|14.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|JRLyo3VGgUEz2Y6ySkPRluKBWUoJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.03|234.0|0.75|17.69|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900331|JRQuWZNhcy2jD1gxr4sBkGlRtL4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|163.0|0.68|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']|['S197']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201400980|JRT9QZV2h2y_1E0gcNMgwPKcADLd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|165.0|0.56|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|JRcx26xxk_kpTPQiSzzY9FDi4fmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|104.0|0.747|6.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|JRewHG_CSeVW7xtKRZWy7PXBq7Qw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.042|209.8|0.71|15.16|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|JRgNWjL4-4WaQ2Vy5JVUZuIa-fYE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|157.0|0.57|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|JRvVhfMy3cVWg24H10NCgsz3OlfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.9|0.72|14.44|['SLG', 'FTO', 'ZnO-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'TiO2-np']|bulk|https://doi.org/10.1039/c8ra03162b|JS6D56pUi-wEUh62TQ3o247qVw-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.86|179.3|0.79|12.1|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|JSAhppePycFv_OiWZJdr2uJOMlaj|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|237.0|0.71|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.004|JSBEoTcW4RScIbtTrCEQxeojtiin|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.22|177.0|0.75|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|JSEUnEHlsR8cDsYLkaKFn-tstmqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.1I2.9||1.005|207.8|0.743|15.51|['SLG', 'ITO', 'TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c7ta02937c|JSEaWqQzza4KVDOlWlL8aVJaalFT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.1I2.9. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.0|149.60000000000002|0.492|8.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|JSKGdJivcWZvuSlw8YeO6P9jJ_6F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|JSNlMDWS6u2GduCF6YoRBm2ifO9H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604|1.1|224.0|0.685|16.61|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|JSiOdj-qM_niLCTah016VpEyTfCF|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|197.2|0.7829999999999999|13.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|JSmyrmb08rrv5MEXqsg0PnSioZ_7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.5|0.75|11.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|JSnQTwXIspNH-8z5y8MCG2fly6a6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|JStPHdrHxrDpjbS4sTFTRpQHA-yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.06|222.3|0.79|18.74|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15607|JStxpy9kB3cjZsEWIkwK-GhcjGTd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|0.851|29.6|0.445|1.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9014-9|JSvHMy7pWSTtlrAm08YxdjljAjS0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.0|0.75|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|JT3EbKu-53YXYa1rNPjtmDmykc6K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.3|10.8|0.4|0.56|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PDI', 'Au']|['PDI']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz400348q|JT675e-lJCzmiRP5Djqi00OhYP81|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PDI', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|243.0|0.49|9.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4967840|JTC-2RVZJ5PAFgP23ai1qfzhIAy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|173.2|0.621|8.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|JTGVcn5jHXoh6aBCKtv7R6HEGpka|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Methylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Methylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|JTOYe0ZhMfyJehKH5RbnzZ3S18cI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Methylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|218.0|0.74|15.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Perylene']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsnano.6b01904|JTSl9nzGELPklE3-xqn0oSPGvnna|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|217.0|0.76|18.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00050|JTULxcWMHh0te852a4zhaIpJbbwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|153.0|0.55|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|JTVOOudbxMVyuX2RCG_O0BpZud5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.72|243.0|0.826|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np', 'BCP']|bulk|https://doi.org/10.1039/c9ta10543c|JTbvLdmEGIDR-B3sK7onFDWYomFY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.8|0.7040000000000001|17.85|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|JTdAKQB476Cqc8DJjw7PL8Q0gLGp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.085|194.3|0.6709999999999999|14.15|['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'APTES-SAM']|bulk|https://doi.org/10.1039/c6ta08783c|JTfeaeZXe4Pn-bsx2omXbcwN8nPV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.0|0.769|18.4|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|JTkEojfEtzu-8AJmsU3evVaH_Dsl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||1.03|108.0|0.514|5.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|JTse7AFCirSQcsugmJTtuoYKmqXl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|223.11|0.695|15.37|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|JTu_SZbJgrSi2qeFGHRFpRk2RLbR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.3|0.6|12.74|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|JU8hNR92bWP0JsPGaA4a0X-omJgT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.113|213.0|0.7709999999999999|16.81|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.016|JUV-mLfb8jML2fkOuWlM9GYgXo9K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.0|0.62|12.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.3390/coatings9050320|JUXweTURGK4IsSZxjccCv19MeA-I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|217.2|0.71|15.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3762/bjnano.10.228|JU_Fbv52-buNrWQGX9cWHpUNH8aW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.0|0.733|15.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']|['NiO-c']|['TPA-3CN', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b15130|JUfx3UFrwUxMIh_N5FJU5Sw6SMJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|180.2|0.65|10.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|JUwVkBoPnZwLHJu_oswDbg4UrQbQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|0.99|65.9|0.64|4.17|['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS', 'AuAg@SiO2-np']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|JV0RRhdYgiH9fbBOU9Duz5f3fx4W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta00398c|JV5GGr0jsWa1jGt2gVK4zFBxXS4h|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|180.5|0.58|10.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|JV7HIWY4gGloSRcJ9vR4aBc3knqV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|117.0|0.43|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|JV8WFW3gzk6ukQrPau6fjjI7vIhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.14|132.3|0.804|12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|JVTa41Y8vlHGrhYmEf-4Gma_NY2O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|201.4|0.69|12.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b06681|JVdvIfNGVR2Bti8jWpZU1Uc_7HdZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.0|0.778|19.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.6b05862|JVjcg4wTJ8lJCZjFS1tpJkuBEEzV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|0.99|126.9|0.49|6.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|JVm1rtyfQKjOmNYJho3jJSiGnn-8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.04|234.0|0.74|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60(TFSI)2', 'Au']|['X60(TFSI)2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11426-017-9141-9|JVrmZgpo8UJV8WYnBBrDvsyKds30|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60(TFSI)2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|198.3|0.785|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|JVxyZmhSYrUnNiCsBGUZR2V2yBgF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|58.0|0.42|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|JWKwhGJ5ToKId7dzdew0KQN682Of|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|220.1|0.787|18.71|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|JW_334ikiOfPy3fZkrzlSx4VG6j7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C18H93I20N33Pb20|Pb20C18N33H93I20Br9|FA0.75MA0.15PbBr0.45I||1.0|207.0|0.61|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-Bu', 'Au']|['CuPc-Bu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803287|JWiIA79n1tmAr5AvMUvbmpFVEfzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-Bu', 'Au']? The composition of the perovskite layer is FA0.75MA0.15PbBr0.45I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|218.0|0.547|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03686k|JWjk3lOry1mHrUynpIaa46fBH0kr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|184.0|0.64|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07496|JWkjvptXMFIK1v9eNDWF2d9WE8CG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|229.3|0.715|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|JWpnjP9Feyta4T-7LVN6gZYa6mhy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|196.9|0.64|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b06606|JX0CliY2JfUgMN0DUfOdqkN_QU1r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|JXHCCiSUUrD-YPGsIo3Oh3qQ1vSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|193.6|0.57|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.077|JXMChpdGKKc4lnS9nw9-u5UF7ZCY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|126.0|0.565|5.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05104|JXQOfTY5dgUsyXdFQxmGgFDOxm0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.4|0.767|15.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1021/acsami.7b15195|JXfRNfktNwYTStxQ5nepGW-2Uybh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|71.10000000000001|0.233|1.44|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PV-PDI', 'Al']|['PEDOT:PSS']|['PV-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|JXgNUsZd5T7LtM54kkh1AeKFmQp6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PV-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.02|212.0|0.78|18.61|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP16', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-DPP16', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.002|JXkeUt8glk_gLh2gKm9CToge2onC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP16', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.0|0.772|16.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XMP', 'MoO3', 'Ag']|['XMP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|JXzf_uKIyr0bQY7RC8CG6X6NqkRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XMP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.97|199.0|0.68|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|JYLr9MmJcusf5FpeRV9TwadkLX-T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|207.0|0.71|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60SB:TBAI']|bulk|https://doi.org/10.1021/acsenergylett.7b00147|JYM-97dxp4OG_nmy_c_TucXoIEIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.16|226.1|0.76|20.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|JYM7E5eQyZh1ZVT-3hGvLeuSiYsm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|206.1|0.7829999999999999|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201503160|JYNIOKQlEym7KlQ-oxZGWmU_UIWd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi3CH6I10N|CBi3NH6I10|MABi3I10|1.780000189803432|0.47|34.0|0.411|0.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s12274-018-2151-4|JYV156cX1C9AnTTTW47E28TifMMT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MABi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|102.9|0.39|3.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|JYft7Zga4O3pY_oVecR_SUsbotOS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|121.0|0.53|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|JYhDagfnMjtdpd-pNPyBQ8_GmX7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|230.8|0.564|12.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b05775|JYlGrfl3M1IFS9xQQuqdXonv_uEp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|112.8|0.51|6.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']|['CoPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2016.07.013|JYnnQU4nmKs0ZuMG8DFB_bHTGzdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.0|0.72|15.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta02868k|JYpKvYqfnFcQva5L-qXz8WyZXVMc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|198.0|0.47|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|JYzniQcpi8wG3clCCcu42bp3Ew-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.125|225.0|0.73|18.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|JZ-zQOkuFjzxSBDmFbVQr0GUG8Ip|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.0|0.76|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201804005|JZ0yzHoXxlhUJi5KEORBAleXE7lQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.754|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.256|JZ1GnNQ-kZZ86rRZDGRHbTdFzKjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|227.6|0.722|16.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|JZ2xMU_IcoRmtT598O3BjDu26C96|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.778|303.0|0.7390000000000001|17.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|JZKtl39YIN2XyA-SzPb1Y9RcQ7B5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.4|0.61|9.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|JZgSyIhhT7lyxQJWke-vUGW4PNOL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.1|0.629|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|JZgjJ8YTXUq3Wp465qrA28-7du6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|206.6|0.72|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00718|JZjGYV10aRBnjkcDa3qOwYAEP0WI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.0|0.6759999999999999|14.3|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b01439|JZnkxcuujjnAr9_sJ9JcWC4bgz3X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|184.0|0.497|8.03|['PET', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|JZusGdgHJhTqE0MaLmzlHi4Hw3th|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|196.9|0.682|14.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9tc03941d|J_1Mc3jfRznNzt8v9l8SqDDa5v7G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.379|180.72|0.592|4.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||J_2uAvHU1fCx1OTYW9y3korSe_lu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.6|0.71|16.11|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|J_899cY--BN1CFY_RK2VAl5tv5TT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|220.8|0.743|17.88|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b00305|J_8rMMkT0l3zzK9M07nJwidP8qsv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.987|205.0|0.665|9.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201702235|J_AwuCJvYoE1qWB8PjiMuw0e4ANs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|116.7|0.4639999999999999|5.25|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|J_Ib2qQWCeE2OocrQwdcyP6Krv-y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|229.1|0.69|18.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103867|J_Lr3WHtb3DC9SWUnpO7SuwrwFtc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.214|127.98|0.626||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||J_kvLjY1KCdltRviumcrdWTDQi-8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.05|250.2|0.765|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01668c|Ja0QUIODLlCmOVM2z8cySYWt9BVw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.85|4.9|0.421|0.18|['SLG', 'FTO', 'AZO-np', 'Perovskite', 'PCE-10', 'MoO3', 'Al']|['PCE-10']|['AZO-np']|not processed|https://doi.org/10.1007/s13204-018-0744-6|Ja9iPNgvQzdavDrsPtfsjZlXh2mF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'AZO-np', 'Perovskite', 'PCE-10', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|174.60000000000002|0.54|9.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|JaA7j1ShnTaUsnMdeT0of1TiESzu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.93|191.0|0.49|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc-1', 'Au']|['H2Pc-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|JaG7VXOpG-2MgoOPjexKJRgM5p-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc-1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.03|226.8|0.7|16.35|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|JaHYGt0-hkUqKhroPwoZoCZxNYIU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|226.5|0.7140000000000001|16.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.06.149|JaOK8BfuR2NgnnXqL19fsccqMdPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.1700001247584355|0.584|206.4|0.603|7.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja5033259|JaZs2LHmwHYidqKxrtN1lbwkkMyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|208.3|0.43|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/app8020308|JaheRqXUyImK5HFe8Ol7tBUgDpMA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H117I57N23Pb20|Pb20C20N23H117I57Br3|FA0.15MA0.85PbBr0.15I2.85||1.118|226.8|0.7909999999999999|20.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.004|Jajb_-ud2Q0gpedyRr2NkGhYpJQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.2|0.7|11.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6tc02307j|JalWbYlE-7lS8iJiwqgprdYXY6sT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|159.70000000000002|0.687|12.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|JapjA4gUu-hVmOl86ojXqavTS1Wv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|239.2|0.584|13.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2020.17288|JavgcCJVR6avGqEvg-N0xIJrjZZH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H516I249N184Pb100|Pb100C100N184H516I249Br51|FA0.84MA0.16PbBr0.51I2.49|1.640000174875072|1.13|205.0|0.69|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|Jb14KUog3emIGOKkYkV_PuA7Wavh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|223.5|0.72|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904347|Jb60Ov35X1n9jRk6ndZvOzTm7vM5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.7|0.7|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5020840|Jb7AgWQH7tRm2sqw_UL99EWrif1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.07|221.1|0.73|19.0|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b19030|JbHLMAxof_cURxpFrN2kDWZI6hYZ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.5|0.5870000000000001|11.98|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1007/s12274-016-1407-0|JbNI0DfKXuEfWmsN9uEvjsWELr0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|195.0|0.53|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/jccs.201800173|JbPyHeS8V3QgCFJEmu1PyMKyBiPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.002|189.4|0.4629999999999999|8.76|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag-Nws']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.104|JbT2Ct7U2VZwWVqsE5uo0dsRR2RC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag-Nws']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|112.0|0.74|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b00447|JbUhS_KYi8BjyHmfoIxAR7Tnxp-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||1.079|213.7|0.7390000000000001|17.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|JbXIkUx7_LOFN6pG92WRNufmq7df|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|208.0|0.5820000000000001|12.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|JbZBFqiWaf7HmA-aUa46vosGinAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|139.5|0.54|6.86|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|JbiNNcDZqJX_yvsTEOAPReP1e2WH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.0|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|Jbj4V6jEkfp0ouAKQxtvv2Q0HcZm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H20I12N8PbSn3|PbSn3C4N8H20I12|FAPb0.25Sn0.75I3|1.570000167410892|0.78|211.3|0.7|11.53|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|JbndhNAPqRj5iTludIIVSE_itrgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|172.0|0.6920000000000001|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.15541/jim20160584|JbqTr25le0WjkAGD6k8QRDz1Zi-Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C95Cs5H491I260N174Pb100|Cs5Pb100C95N174H491I260Br120|Cs0.05FA0.79MA0.16PbBr1.2I2.6|1.710000182339252|1.1|160.0|||['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA-tran3', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700607|JbrAdBB42UTwvQBxylF3UMD8rN1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|207.0|0.68|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Cs2CO3']|bulk|https://doi.org/10.1039/c4ra08565e|Jbuyp0HPX-UDNsSAiSfdiqKfuCXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|180.8|0.867|13.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|JcVQqNwLBu2QNeOVF4g3gidSbwwv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|220.0|0.68|17.2|['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|JcajHKbfVEW32b-rlU-psl-yuvqW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||4.05|205.3|0.695|14.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.0c01297|Jco7ffsq-iYGNPHMagMxHdh36gnB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|203.4|0.688|12.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.048|JcqWlPthK4KhJyogHNv2y2SxuIVz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.3|0.71|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid']|bulk|https://doi.org/10.1002/admi.201700897|JcrToYHiI8CmXDyez2_qHUwXpvUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|211.7|0.7490000000000001|15.75|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b04060|JcvAt5ZYYw7bY4XHTJgrZnz9ED9h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.4|0.69|12.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01718a|Jd2xxL8cKjdpRsRuMpwf-dFRNMeC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C47Cs3H253I144N76Pb50|Cs3Pb50C47N76H253I144Br6|Cs0.06FA0.58MA0.36PbBr0.12I2.88||0.95|234.0|0.635|15.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|Jd8vqtFEF84fa3CyN-YoG0gQ2MwL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.58MA0.36PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.0|0.78|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|JdC3I2bL-PN8G6RPjRD3V0L3RSpZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.5|0.679|14.98|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|JdH6Vlf40pZbttwdXmgn6dZH4Anr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C17Cs3H85I36N34Pb20|Cs3Pb20C17N34H85I36Br24|Cs0.15FA0.85PbBr1.2I1.8|1.75200018681776|1.193|180.8|0.756|16.3||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|JdHGlaYt3z8YRSuObfuG3h6HmMaA|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr1.2I1.8. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.081|220.9|0.742|17.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3']|bulk|https://doi.org/10.1016/j.orgel.2019.105426|JdJBNfRyZZIb-EwoTRtT-e9uL-Hl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.0|0.7490000000000001|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|JdLrkrv0QHyvwiDuDStoXh5Ew7Lc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|33.0|0.3|0.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS(IIThThHEX)2', 'MoOx', 'Ag']|['DTS(IIThThHEX)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|JdRYiGk4-nnfZt5q4t7Ixv-F-1gs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS(IIThThHEX)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H532I300N133Pb100|Cs5Pb100C95N133H532I300|Cs0.05FA0.38MA0.57PbI3||0.9|160.0|0.67|9.73|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|Jd_2KQTC1UxcDV1GrWh2ADFASDtK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.38MA0.57PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|151.0|0.53|7.5|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/admi.201500790|Jd_XHtsOEQdg7a732nuW7pHpvAhh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.77|14.0|0.26|0.2|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine"", 'Au']"|"[""N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|JdaDG0niQtaemH-yySu4hg6wpASc|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -Br20Cs10I10Pb9Sn|Cs10Pb9SnI10Br20|CsPb0.9Sn0.1Br2I|1.7900001908697432|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b07949|JddmEvXTUjgL8vXK4RSnKSUX-Rvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.9Sn0.1Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.0|0.7|11.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.7567/JJAP.57.08RE06|JdtMF8WhIxYM1jRB5EWjAulfKiWr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.91|197.6|0.6|10.78|['SLG', 'ITO', 'PEDOT:PSS', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|Je2MMEtJibylsUFflTtJrpfdr6Cd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -Br3C40H240I117N40Pb40|Pb40C40N40H240I117Br3|MAPbBr0.075I2.925|1.6100001716761378|0.93|175.0|0.639|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2017.07.009|JeHH0I_JjaGJoD-2yl_BXW-1Dc1m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|207.0|0.7|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|JeK5TTimEmAvz1RxCwHjse-FQkqP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|175.5|0.7659999999999999|14.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|JeMSAS42SecUvYsyYFVZuJssEanf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|148.2|0.537|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2416913|JeXP_NcZLkq6xr7EfqhATXZgPErH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.01|218.5|0.682|15.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804856|Jejhl1fmv3hbtSzgU07g7bWqP96j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7440000000000001|138.4|0.29|2.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700546|JelnE62VHy1YWhk0xnDxrcOOkcLB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C97H552I300N127Pb100|Pb100C97N127H552I300|FA0.3MA0.67PbI3||0.866|187.0|0.66|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2015.11.058|JerW9r_bg2gyy4uKzS5ACb4KKVYr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.3MA0.67PbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.36|172.0|0.595|3.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee00956b|Jerr3ykner5257Mv_w8esDYmGHUJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -BiCH6I3N|CBiNH6I3|MABiI3||0.51|6.1|0.33|0.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b02843|Jf-A4TMaNhO8KMHKe4-bYiAJ4Cg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABiI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49||0.96|162.39999999999998|0.662|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jcis.2018.09.045|JfBwHbbkB3yv7mTst4Wo0xYnulSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.648|97.8|0.537|3.4|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|JfCEATEBduFbtgLTcibbNIWjoei-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|187.8|0.6709999999999999|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|JfEFhVVRC8-MjmdIia2BPOvTU_GJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.9|0.66|10.84|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|JfMKI8_93PHOAyhl1l_yGpd5bhRI|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|179.0|0.51|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cclet.2015.09.022|JfMyvVIIqIGv65piOF6ZH0-1wAeV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|212.2|0.738|17.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-018-9343-1|JfNx-m6O6a9GiXOUPQiXP1AxdiMM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|234.9|0.7509999999999999|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08488|JfdK01xTGpdrrdksewOPojHEZaxb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.28|153.0|0.79|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|JfdZHIAGwvrAZlTOn4EWlBHzyhFZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.621|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15434|JftAnkLkXrK6Xm9Kd4gW5aOVUZeB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs10H491I249N174Pb100|Cs10Pb100C95N174H491I249Br51|Cs0.1FA0.79MA0.16PbBr0.51I2.49||1.04|199.0|0.6809999999999999|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00222|Jg4LDpj2VezXRr50o9Fojo6Tmz-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.79MA0.16PbBr0.51I2.49. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.85|188.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|JgHEYCcUs1kUPr1QWlqCkD4faEo6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.0|0.75|16.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|JgIJOCVJoudqyTk0nZ_Rc5cFO1z0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.138|209.2|0.762|18.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|JgV_frXsqVuNKA-GruU6ypjSO5KT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.5|0.728|14.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']|['DR3T']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|JgvOhAoxNaYhbutiiKwydlYajfUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.95|26.1|0.421|1.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|Jh1qEP4O2UH-hYW2Au8NEMLQTo8C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|225.1|0.62|16.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|JhFbCWxe-FGSIzL0RlKflVkasX80|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.02|214.7|0.75|16.42|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|JhMF4opmww221BOIauX9QwwRIJSb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|218.5|0.65|13.95|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|Jha3CgjVxPSjqn-Cce47lPYKQtnE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|85.0|0.462|3.53|['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']|['TPB(2-TPTZ)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|JhaI0wzRoY7MD8ktJCKinBrmxmAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.6|0.736|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|JhiTbQKknTRjRtnvCYbdAv3faat_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0590000000000002|204.0|0.6920000000000001|15.0|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|JiACx0nNe5bRED6jmRucgR3aKXFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|213.7|0.736|18.56|['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsPbCl3-QDs']|bulk|https://doi.org/10.1002/advs.201800474|JiGwlW1VZU-3knwSqFSJgFEeGrbU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|0.984|223.9|0.607|13.4|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|JiH4uDyNODOFqAKY5Vm_ptJjNeBE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPb1.0Br0.45I2.55|1.6000001706098266|1.02|204.2|0.66|13.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|JiJU9zjTHdGaDJ4-hNYvt7SmjHmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|185.0|0.47|9.4|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|JiM3GsgJsVjHRy6r2GtZEL4ZzXSl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|223.4|0.69|14.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|JiQ0x94QYn3AgUQE7MXi97ErLc7T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|209.5|0.6409999999999999|14.77|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|JiTS6rbjhKKlDs4WBxtRmxYv874q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.0|0.422|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cc09557d|JiUS-O8SbHIXYgUFcg_4k0xl6w6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.77|112.8|0.5770000000000001|5.01|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-ACD', 'MoO3', 'Ag']|['PPyra-ACD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|JizjyVBtO_KdUo3BFIFwaHsWwQzd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-ACD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|218.0|0.52|17.08|['SLG', 'ITO', 'PNP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PNP-BC']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|Jj-juo8DgFP0ss45flFwDebgSHx9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PNP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|0.94|8.5|0.345|0.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|Jj5Mt3tVCP3wRNdSfw_dXUdalo2u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -Br5C2H12IN2Pb2|Pb2C2N2H12IBr5|MAPbBr2.5I0.5|2.1610002304298965|1.074|30.32|1.067|3.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|Jj5zKQsJIEifo-bHYWYo9HNiItVq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|194.9|0.66|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr09972f|JjDHn73fWzFUlGsDH3eH3gDoVgfw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.2|0.69|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/38/1/014004|JjEx469smWJykSZoGxWcQqYgUmgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|158.9|0.52|6.48|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ra17316c|JjO7sHblKfIPlC88C01vOsX0lpCR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.97|135.1|0.476|6.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b06050|JjP34g4M9ZK4eOiKFWzt3O2dxuiv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.5|0.69|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra01430a|JjPTo7Vvrn4SmfZrPlxYGbp3uBJD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.61|12.0|0.48|0.35||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|Jj_NH9FmchztiZHUZcZyxUYY4bAj|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|144.60000000000002|0.3879999999999999|2.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1063/1.4960759|Jj_NKLKT2QTPRTqQi2jy9KcWJneG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|151.0|0.45|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|Jjw7rb1gmCjrt7GS6Eu314TOWRoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H565I294N135Pb100|Pb100C100N135H565I294Br13|FA0.35MA0.65PbBr0.13I2.94||0.94|205.0|0.67|12.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|Jk-_J7rQZYzxTOVhTKr8Z4py6cKs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.35MA0.65PbBr0.13I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.6|0.74|14.39|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|Jk70carjE334yMdvb6rRccLsBj38|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.2|0.7929999999999999|17.5|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201702248|JkC-ypjirZjtGF47IxuzWM1NWFUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55||1.0|247.0|0.6829999999999999|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2019.05.013|JkIEZ5RgwKPQQFdlvdg92YLVjg_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|174.4|0.679|11.68|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|JkIiC-Vgal982VzNKqNS48aBrQZ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.7|0.6609999999999999|13.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; TiO2-nw']|bulk|https://doi.org/10.1039/c5ta06727h|JkYJPDQYoY1ieVfEiOmGDpMA6fa4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.18|187.2|0.8|17.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|Jkqd8OBG9byI9rbvxwvlpOiWr-24|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|210.0|0.741|17.1|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['CuSCN']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|Jl-IjFGdYfHuNUOZuGlhnED2BzzS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br27C86Cs14H430I229N172Pb100|Cs14Pb100C86N172H430I229Br27|Cs0.14FA0.86PbBr0.27I2.29||1.062|243.0|0.7340000000000001|18.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|Jl-Jqznd25TvoRWp5Br4vyPtWxPP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.14FA0.86PbBr0.27I2.29. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.8|0.76|18.02|['SLG', 'FTO', 'NiCoO4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9tc00902g|Jl0Hz4gGumSE_eZIVERUqBZAxv_9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiCoO4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.6|0.74|15.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01593c|Jl1lsuJgXNFJJjywwhQiPSkI5g4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|222.0|0.63|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|Jl3cMqIpIJJ07LcmmtDIYMzMTgx5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|189.0|0.6729999999999999|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CO2CO3', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp', 'Cs2CO2']|bulk|https://doi.org/10.1002/pssr.201409320|Jl7tBhdSJ6Lv6xNpt93nzn_eYjgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CO2CO3', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.7|0.66|14.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|JlJxZDDd8tv01NAwpC8xX5h1qH4R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|228.8|0.7879999999999999|10.09|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']|['NiCo2O4']|['PS', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201904684|JlZ7vSw-ZjnZxeIy0RJMm95UT9Ub|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.73|15.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|Jm2cRbCm5AXIk0k9rV66gk7ZRo6P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|190.0|0.6|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.07.036|JmKYWHCohxADC6oOFH4XBmvORDdL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|10.8|0.34|0.032|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|JmPn8r4VBEL95dV4EMVvx9Ju-1Qh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.1|0.7909999999999999|15.58|['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']|['PEDOT:PSS', 'Black phosphorous QDs']|['PCBM-60', 'ZrAcac']|bulk|https://doi.org/10.1021/acs.jpclett.6b02843|JmRVAFWqTohm0jrZB5o8S8K4YtgW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6300001738087604|1.18|230.0|0.79|21.5|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'LiF', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'LiF', 'BCP']|bulk|https://doi.org/10.1002/admi.202000041|JmT0Hsdu0Ub5sXLma3frtLYM1cUd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'LiF', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br6033C1600Cs5900H2400I12067N200Pb6000|Cs5900Pb6000C1600N200H2400I12067Br6033|(PEA)2Cs59Pb60Br60.33I120.67||1.11|148.0|0.73|11.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|JmWXa-XziT007KWnIEBLGE_l9rEp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60Br60.33I120.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|233.6|0.63|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|Jmk7_CqV0fHP1XzxgrnPuZU536g_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|176.20000000000002|0.601|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201503832|JmnwEuAeGAFmZDKYnDeNRZcEjgjQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|154.70000000000002|0.457|7.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|JmxZ3Hdm8S_2SF5fV3CYpprol95J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C23Cs2H115N46Pb25|Cs2Pb25C23N46H115Br75|Cs0.08FA0.92PbBr3||1.515|66.0|0.8320000000000001|8.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|JnA0XIq2fVv5QWR_fWRCG9Y_e0sz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.08FA0.92PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.9|0.742|14.32|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|JnCmajNvui5p7kY7uvGzyotL3E4M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|88.5|0.51|3.31|['SLG', 'FTO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'Ag']|['none']|['CuInS2', 'Al2O3-np']|bulk|https://doi.org/10.1186/1556-276X-9-457|JnVGwURUnj7DvNuzObFbxgKorjuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|214.5|0.635|14.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC02', 'Ag']|['YC02']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|JnVUwRWYdmu3JCthPD74AuLoYF-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC02', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.26|59.6|0.7559999999999999|5.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|JnYADy4g4a2fEgEPGXfkVplW4orm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|144.0|0.4379999999999999|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|JnbEdypPvBlzY3J80jrgnBqmyjho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|214.0|0.691|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.11.046|JneGPxrKpqClD9ij7smH5I1ST1Hg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.04|215.0|0.71|15.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR378', 'Au']|['KR378']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700974|Jng_pqqGPQnHqvTYE3VYo2jEKy0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR378', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|188.0|0.63|13.03|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|JnmuOA0qEsGpD9HH5XgE9mCSimgz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.1|0.71|13.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|JnryoQohrGZZxnUm5EscLmMQaOSf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.037|213.6|0.73|16.27|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|JnxbHceY7SIXSK_c96CRabCuCebc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.394|147.09|0.404|2.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||Jnz3FR0j--u6E3oiTcBLEB-BvFR6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.14|232.0|0.8|21.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41560-018-0220-2|Jo55f4suE2xtVycf4V7ziVJkQOUM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.1|0.723|14.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|Jo8xsiMHnsoZrOdlCVSWxHWijF1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.106|195.8|0.66|14.79|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|JoFSNLp-xfeS6f7RBcFC0G-xtyfp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.33|11.2|0.45|0.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|JoFcmrsne_cNBP4HnrxQyQE_sT16|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.86|140.6|0.72|8.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.073|Jof-6iE-ABlatiLz3eEUxKRs13vO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|206.0|0.755|17.3|['SLG', 'ITO', 'MoOx', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoOx', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900734|JoiSUmzOjUFqMrbc0gmUe74Yqy3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.73|0.12|0.21|0.0|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|Jp2_fNn1vQfQguKkj-rGykpfHc8Z|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|137.5|0.42|5.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|Jp7_0vk8GvbUsrdo9Pm5rwOvxzM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.0|0.77|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|JpGsvz9pzMofSSXVoeUbKnxsFRCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.0|0.61|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|JpH0m93UXjv26LIZJGgrDvGN83o5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.202|213.7|0.777|19.67|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|JpH_B0RC-hiIMVaQhz6OicQv-AKh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|51.0|0.45|2.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|JpTGG07tMnYFdGS07Ws9-6KULsb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|208.0|0.65|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X22', 'Au']|['X22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701209|JpVUaWKsq6n497BezAsgZooydK02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X22', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|180.0|0.6|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|JpXw1rX1xtf5JPQR2dooX7IgPUOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|217.0|0.78|18.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Pyr', 'Au']|['3,6-Pyr']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|JpaeebwPoei6jLYLDwA_BJAGo8Ck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Pyr', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|135.29999999999998|0.469|5.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|JpjkwJzQ8F-6dN-etcIYFgZlmFlP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|199.0|0.626|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900627|JpybE-BahQPtVDlUOBbS4sdvzXz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.5|0.684|13.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.spmi.2017.12.015|Jq1UPQw1kNQdYynQYB7paPOF9OIP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.002|197.0|0.72|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|JqAuPKihS4Ogvxmw5ATCaPSM31y8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|214.6|0.77|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|JqAuSzewXA5XPL2ScoldnyDYd3gc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|137.0|0.37|3.42|['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1007/s11051-017-4081-6|JqE_gLDYNFdy1yc0edV5_CkhXpNd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|128.5|0.703|7.95|['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|JqF66fdZOIKWOH7rW-i_EG3VP4f_|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|222.3|0.8|19.29|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-4F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|JqGsIvj-zyGDtUCNuRNQFjdWxSDA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|128.1|0.54|4.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta03796d|JqLKowFcPB1A3RM1aLtMAXSzHX8S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|198.0|0.49|10.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|JqSmYgatis_9dm3IM419narsfLcu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.57|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep06752|JqSpDz6b2es7L3vTy-LKZMvwxUpF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|186.0|0.693|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4943019|JqdRLCrVcP1_WUSA6HbOWz-PZDWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|212.9|0.66|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|Jqe1Hus-QgbjTNqaWvj1K_Er4FhE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|JqzCU7JJ8EdvXYiqsjQGTaiiwR55|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3Cs2I3Pb2|Cs2Pb2I3Br3|CsPbBr1.5I1.5||1.0|113.5|0.7|7.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.solmat.2018.05.002|Jr-SoTNFiaH5v6T190G7pojH2bWf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.7|0.789|18.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|Jr357-3IuE6a-VzSGcFz3Dw0RpG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|222.0|0.541|10.8|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1117/1.JPE.6.022002|JrIxd_sjNtfOLDp2ovayEkBe0cBh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|JrKEn7f3btPXn99IUyiFJfi3r6L2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C12Cs8H60I39N24Pb20|Cs8Pb20C12N24H60I39Br21|Cs0.4FA0.6PbBr1.05I1.95|1.8000001919360546|1.21|165.0|0.77|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-12513-x|JrMUW1sEv6UXh-HYLgKWJp0RmG4N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.4FA0.6PbBr1.05I1.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|216.5|0.7929999999999999|16.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|JrYcPDIC_HbuJmqMC27FaeEHGrmg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|208.9|0.67|14.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.240|JrgAvxBY0OeXKwYqxssA35z4Db9Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|214.5|0.703|15.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02555a|JrkGmCeJM80qEXqtLpVhPe0U7DsK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|200.0|0.76|17.02|['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|Jro22QXy0s3SIUrwPRgcqWmT4frp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0139999999999999|7.3|0.603|6.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b00041|Jrxz6envWPgK_7f4zkepS1nvYXGj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|105.1|0.517|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cu']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19702g|Js613vzfIWu8b47cY6ZKZw2sKP62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|218.0|0.74|16.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.100305|Js6zp3__6HcGl1IAhWq6PK19AsSN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BC20F4H120I59N20Pb20|BPb20C20N20H120I59F4|MAPb(BF4)0.05I2.95|||||12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|JsA0p1Rz5dojQ0ffHVR_9Dh4UKXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)0.05I2.95. -Br51C75Cs25H375I249N150Pb100|Cs25Pb100C75N150H375I249Br51|Cs0.25FA0.75PbBr0.51I2.49|1.6300001738087604|1.021|209.0|0.58|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|JsD-zrL4GX9oeIG6ZEV7yxqkg9Oi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.1|0.76|18.9|['A.R.C.', 'SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02044|JsEB5zUjPCWcy_X963OyNbHD_I-3|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.95|215.2|0.53|10.92|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|JsUSFgoN8HMN_jBYvip0PnM89Get|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.0|0.54|9.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|JsVArEyfpktr6BdIdhI3zZNuhnCc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|202.0|0.688|14.52|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|JsXxSXcU1yqWsO4xbIqJyyGW_aJD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.902|192.5|0.75|13.03|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|Jt0B7ztmurlc2eQTN2zETekB3Gtk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|122.3|0.356|3.13|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|Jt3cGpYV1wYexIcc9dnn6xsrY2s7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|196.4|0.6|9.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|Jt4SDhYuSJLDwVd_L4JdpS1r3Rf-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|126.7|0.61|6.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PDPP3T; PCBM-60']|bulk|https://doi.org/10.1039/c4ta04482g|JtAmTJaHnosBVDGouTXbbZDxzP49|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.903|190.2|0.721|12.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|JtCHrSBdtMjG4UAn_hwHBApo9lve|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -C100H600I300N100Pb97Zn3|Zn3Pb97C100N100H600I300|MAPb0.97Zn0.03I3||1.09|220.4|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15310|JtKEmCAle8j5Lx9lJQh_92YsN-ef|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.97Zn0.03I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|186.2|0.67|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/C9RA05357C|JtVXgSYmHY_HxTWt5xIiH9UKgxNz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|200.0|0.75|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.083|Jtaq_tUCsV6ZG_BggWmplcSeOJ2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.75|290.0|0.59|13.8||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5126867|JtllxH5KezYE-ACBmFJIqeiykqFr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.15|214.0|0.71|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|Jtr7MKKUmk5Lz9S8A2Dyz8iRT051|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.5|0.7559999999999999|18.01|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|Jtv_zjAkko5UE_OuHk3sN8KJMz7W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.670000178074006|1.07|206.0|0.784|17.3|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|Ju7fY2LHfrocEziNx17SKGwkE3Cr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|JuCHv2V0Ag6jPNr7yoi0OxFtVEAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|202.0|0.7190000000000001|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.15541/jim20160584|JuEbHtsmn9UROZThrNlZLpCI4Qad|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8759999999999999|146.9|0.31|3.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q221', 'Au']|['Q221']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tet.2017.05.020|JuJ4cjWYbWUh2r-SrRIBZ5NBOfuE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q221', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|181.2|0.701|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|JuNjr80qZfVMO0bQx18r2dhBd8HA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.2|0.799|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|JuYlg-V2NdqVkGMpmaZZ48C-pa_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|204.0|0.504|8.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|Juqa1AoELFVY0Wy-DM_5z2AdX9FQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.2|71.3|0.25|0.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|JuwsWRK3g8jKqmv_jeUyqc4DNuyu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|209.3|0.64|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|JuyU4l_yuGtlJ6WfuZGMM4tQlSzx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|205.7|0.613|9.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|Jv-l267UMy3TdiZJqJxOiCOCYcJA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C55H258I121N41Pb40|Pb40C55N41H258I121|(PEA)2MA39Pb40I121||0.85|231.0|0.563|11.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b01196|Jv76pnIkRsWYkL-X38rRAT4gf8nM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA39Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|229.4|0.595|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.008|Jv8gsm-WZQM4ANPB5Ql65L9t2vJ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C6H18I6S2Sn|SnC6H18S2I6|((CH3)3S)2SnI6||0.4|105.0|0.42|1.77|['SLG', 'FTO', 'TiO2-mp', 'MK2', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'MK2']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|JvFj9phyCGBeFMezhUZt13uLGvwn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'MK2', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.4|0.72|16.59|['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c', 'SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|JvWcwdFmGpkzHhmpy2Ct2e4PEAFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|194.5|0.5379999999999999|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|JvZsJqkcByJ3O0YW8dLm9paZDVj4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.053|238.0|0.8009999999999999|20.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|JvjS5igpa5q3ZIWh0d2bvY0PHxG0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.08|226.6|0.688|16.84|['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|JvrlJq6TBB7dIkVoDkHCEvugxqpu|a perovskite solar cell with the following device stack: ['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.469|144.0|0.469|6.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|Jvub8PgFt992x0BMzhM82ZPt42ms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55||1.093|231.0|0.7609999999999999|19.22|['SLG', 'FTO', 'ETM', 'Perovskite', 'HTM', 'Metal']|['HTM']|['ETM']|bulk|https://doi.org/10.1021/acsenergylett.7b00981|Jw0oNOpSP3yu821bWOQVvBSvcqq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ETM', 'Perovskite', 'HTM', 'Metal']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.879|200.0|0.541|9.51|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Cu']|['P3HT', 'MoO3']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|JwO2Fh-1ngLNKNBeymS36K4On3V7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|156.7|0.67|8.92|['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['N-PDI']|bulk|https://doi.org/10.1039/c6ta03119f|JwY1x1gf1ODzk18ctuUH0XJfbKkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|200.7|0.49|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc02238c|JweKIlpKcvPP3PMn0uMGba663rc4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|179.20000000000002|0.695|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-3', 'Au']|['PEH-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|JwpomRqAZlyfglh4L8XJjTKG2rHK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.97|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|Jx3xs8eF7BCyZSMN0u57fmgrVKyv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.55|112.7|0.33|5.76|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1149/2.1131802jes|Jx5QrjJ9-tTS_FFQ9s732k4EZIma|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|196.5|0.6779999999999999|11.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c7ta00203c|JxDyXhhKdlDyqtwrXcqkoQqeGnDn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.05|234.5|0.758|18.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00112|JxIT8985cEzpbYGMqGEvhJcBe9xO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|1.18|221.3|0.8|20.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|JxJWOjqh-5x175Vq9xfMOZCUbf1b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -C95Cs5H477I300N192Pb100|Cs5Pb100C95N192H477I300|Cs0.05FA0.93GU0.02PbI3||1.126|243.6|0.784|21.5|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|not processed|https://doi.org/10.1002/adma.202000571|JxMNp27VoCM8vYrnMyuKqveRjIsw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.93GU0.02PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.4|0.7040000000000001|14.28|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-MPy', 'BCP', 'Ag']|['NiO-c']|['C60-MPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|JxP0vpcVcWDlsr6mS43cGjbkdn49|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-MPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.732|103.4|0.54|4.08|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Ag']|['none']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|JxTMvxyoz1Gg1pcaRbXCgftJKU3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.557|145.8|0.52|3.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.01.041|JxWjxefd7qpu_SJqnMPXEkbpQ9lm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br11C20H103I49N37Pb20|Pb20C20N37H103I49Br11|FA0.85MA0.15PbBr0.55I2.45||0.98|196.0|0.74|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b05353|Jx_UkaqEpYKGH63VL25y94UW48OP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.46|32.5|0.322|0.48|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-ACD', 'MoO3', 'Ag']|['PPyra-ACD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|JxfDKffEUHxIJLPgqN4J7E0ItzGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-ACD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|122.3|0.51|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc09859a|JxfwvPj_qsuIyNG3LGZjdiiXWS-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|171.6|0.644|10.61|['SLG', 'ITO', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|Jxg7oLE4t0rGGUA4StGdSWMnhIIJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.98|216.3|0.45|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.02.007|Jxj7eFonDlYaaI1KaZwwhHFktzG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|226.1|0.78|19.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|JxsbR65ZgbPmN60Wlwls6T5VxQxZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.5500001652782691|0.28|131.7|0.493|1.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpclett.0c01859|JxtNwPQ6ppjNcXiiBmDNtRnla4bu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.9|['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00183a|Jxw3g-fbaYVmjY_FbwTxgP14XdgY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|216.03000000000003|0.711|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|Jy6vOKw_mGHEXI7QRP8eVXzDDMPD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|147.0|0.722|8.93|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.06.037|JyGAbUnfN3so5Vy0DIJKktOMa1DO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.417|89.0|0.271|1.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2015.09.035|JyHQDUBcekBsrnAgOrgjwhU7UcEq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.52|159.0|0.57|4.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|JyIJFh--NgJFlEZzXLPtSLqncPDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.46|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|JyLVOO9OHcObEujCXI2yn8xcvO8P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|110.0|0.6|5.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|JyQsp2bmDTCHu8IxyX8aC1ha_XN3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|175.3|0.75|12.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|JyWQG8cEFF1APnFa_AiKb7EfjVvM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|194.7|0.69|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02822a|JyZADgQWkhWez25CaXT3AEsQSLhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|199.0|0.73|14.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.7567/JJAP.57.02CE07|Jyf4NxiSkcRv_927BUWOQmL8gBWS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.87|129.1|0.5|5.64|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|JyhBKeKC-yqBc0978oleCZbGbX3L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.11|211.2|0.65|15.16|['PET', 'ITO', 'SnO2-np', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'KCl']|bulk|https://doi.org/10.1021/acsaem.9b00391|JyiQTfnMyzn9W6KsJgXqnfBXLl7y|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.963|221.4|0.652|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|JylNtbmJG_N5dmTMO_F37MWugcLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|184.0|0.59|9.3|['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'NDI-H']|bulk|https://doi.org/10.1021/acs.chemmater.8b05237|Jz5rx0J03sSvNhhjYFiZwcBrVvtb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|154.60000000000002|0.61|8.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|JzCM6dvveIoxqU9Vn7TH4dsEspUD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|216.0|0.626|12.6|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|JzIAJ47Fq5xLi2zlmBPnJLcGSMOT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|190.0|0.6609999999999999|10.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|JzP-6Nu_vQmwyEZR1CLHXt26UYj2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.1|230.0|0.754|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b10039|JzSIe-iGxEeIgQ5eMIF9gOlZplHK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|182.4|0.62|10.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2015.08.021|Jz_Y-1FnyAchLU0IvBGggSiBAP2O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|190.0|0.58|11.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5TA01730K|Jzg8a3aBrhgYWlu2347lGbuAF63C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.1|157.20000000000002|0.738|13.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900831|Jzkh8aJR6rUtt188R_yNLubpM9eB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.0|0.746|17.1|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13375|Jzotag7BVe5m2_euRU1hyq2jsq9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.01|192.1|0.728|14.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PBDTP-DTDPP', 'Au']|['PBDTP-DTDPP']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra10009a|K-0DHZZL-ZrbNtdaduZCSjl2ovye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PBDTP-DTDPP', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.73|98.4|0.66|4.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.56.04CS11|K-5Lxqf06YIUFkKhLFDji0dNwKCA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|166.4|0.777|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|K-8IZQbhLIcwcMw2zfjog3GrrfkX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.013|227.8|0.58|13.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16341|K-8u_SETqwS28cJUwnOnDtJazTXl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|217.8|0.735|16.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@Ag-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@Ag']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|K-BfyeRyJh_J98t9ONSu0QOu0_yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@Ag-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.0|0.67|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00150|K-DmFnoZHZAuUyi3cqs0e7Hk4J5e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|147.89999999999998|0.585|7.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|K-I7Q1pNEC2UwtJ2hbUMkYrPcOy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17H66I30N10Sn10|Sn10C17N10H66I30|(PEA)0.1MA0.9SnI3||0.363|178.0|0.57|3.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|K-IBrSnav8aBkaPJiMfZfqbztWaW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1MA0.9SnI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2800002431190025|1.47|67.0|0.69|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701433|K-Nnr0LPFdbRTV1PEZQmCRy3a1so|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|205.0|0.7440000000000001|16.0|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|K-P2W81uhPam3FfYhRGimYvicw9U|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|159.0|0.5539999999999999|8.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|K-QIvlzCmmEmVIeNx2kB7UijIId-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.102|226.9|0.77|19.32|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|K-jMLqmSlIDX0acr4ZG5xKu1AeXC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|K-krB9vhmPJ0tZPhvtB3Dk5eZQUF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.946|149.0|0.8340000000000001|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|K-xIdRgXM87dm7CMig27mlVnKM9Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.35|42.5|0.61|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ces.2019.01.003|K06CApNwTFrvQJXDpO9hoBrkpgnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ITO']? The composition of the perovskite layer is MAPbBr3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.047|191.72|0.368|7.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|K086oe1CEwvDf_iuPqUCNO4So0Dv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8Pb1.0I3||1.11|187.6|0.736|15.37|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']|['NiO']|['PCBM-60', 'PN6']|bulk|https://doi.org/10.1039/c7tc00882a|K0J9pxoVxMX18raRtZDYUypZQijM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.8|0.73|15.24|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|K0JGmUdvBNXSSpYAi27toAgFls2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|222.0|0.74|17.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|K0KlE8Yjfcmt3bsnexh5Q0pHHpta|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|13.6|0.305|0.46|['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']|['P3HT']|['TiO2-mp', 'Pbs-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.081|K0OyEjW_68YeZ5Pn8FkEB9ZDeOD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']? The composition of the perovskite layer is MAPbI3. -C6H33I12N9Pb4|Pb4C6N9H33I12|FA0.75MA0.75PbI3||0.97|228.0|0.66|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9044-y|K0SQ57zTx7wGxkU1nGcZvPQ1gfsy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|216.5|0.595|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|K0XxM7XMxV_dvc5BZ3O2RGVb50yv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.662|134.60000000000002|0.4|3.45|['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['Fullerene-SAM']|bulk|https://doi.org/10.1002/aenm.201802085|K0hoddBq-MMaG8kkH-GrGURIFOfX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.542|202.5|0.6629999999999999|7.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|K0lMVySxAcGtt3hYPkJ2nM6gCnTm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|196.1|0.677|14.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|K191jcZ7Jyf8fc2hBcVMc7QNNUZA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.126|230.2|0.809|21.01|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|K1FukNdLWmn-nwVCjxIEM9-meO9J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||1.06|251.4|0.81|21.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']|['DCZ-OMeTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|K1N9ZFmUDch_F_rb1Kgxq1Vh-c9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|174.0|0.76|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2016.06.037|K1Ptm8hAcIuAV5T24nHfeApT2H7d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.0|0.759|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'PTPADCF3FSONa', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['PEDOT:PSS', 'PTPADCF3FSONa']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201502021|K1SX46dxcu2sHybq89hlgY08cp0o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPADCF3FSONa', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.9|0.767|18.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|K1f2oEz8PJZm4zWZBnd-1aQGioLr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.97|103.0|0.49|4.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']|['NiO-c']|['PCBM-70']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.100|K1hcwApVmoieMTSvopsgqV4PJC2_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.9|0.71|16.37|['SLG', 'ITO', 'TPA-TVT-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TPA-TVT-TPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700105|K1njwQFo-SA3Z7W-JosDR9CtoVsM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA-TVT-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.11|50.8|0.2|0.15|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4tc01875c|K1swEztC8j8oudBw8qg-ea5DgX1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.0|['SLG', 'AZO', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|K1xPKrk1D3rIZoD6CKoIC2yu2if9|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|188.1|0.7|12.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|K1xirmSZgDQHPp6f5-bXl5fShbx0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.6|0.57|10.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcrysgro.2018.03.030|K20CdyO3XygQbIbBwHBWvl9EAEu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|K21TQ0etDcXYqPpEUZqmz4jH_mFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.127|231.6|0.632|15.84|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|K2Dp4hW0f4VGKsjXDJQQU8VMBsgO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.812|186.8|0.58|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|K2G_yJ9FsVCQpXhAg1TCleMGeOq_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|86.19999999999999|0.63|6.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|K2Nc9Gv7oooZPDDyi-G4aXuIIcmJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.399|63.7|0.74|6.59|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|K2PlEsYh3kccpCddkgyz1-oSd-TB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|155.6|0.647|9.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|K2PmlfRfSJ4_jfxBQw3YTNgL5mIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.29|236.1|0.57|3.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1701293|K2m4RSGhJulyT3dTho4f9oCvZ7Hs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|160.7|0.621|8.54|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|K350LlIjZtNEmtncU3ZpqY2o-CXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.92|178.0|0.69|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b02411|K35cABP6mQDnn1_kUW0MVk7N8PRb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.14|237.0|0.78|21.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']|['PTAA']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|K35zMMh8IWR70_COeD7nR5cg0P8q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3||0.63|138.0|0.69|5.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|K36JBtkhLfBWL91FIvxAU8NX9Zkn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -BiC6H16I5N2|C6BiN2H16I5|HDABiI5|2.000000213262283|0.34|1.5||0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsaem.8b01809|K36gP2bzamGQ1va8AHLnX42KKbYy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HDABiI5. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95|1.570000167410892|0.738|155.0|0.486|5.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en9050376|K37XijuwU-zLL2bU7oIaqkDM7UnZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.05I2.95. -Cs5I15Pb3Sn2|Cs5Pb3Sn2I15|CsPb0.6Sn0.4I3|1.380000147150975|0.457|240.7|0.517|12.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-13908-6|K3ENONCg_kBC3oJqo_mQp54bJaLg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|44.0|0.59|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|K3ZH-9YWtkKcerIEvQtRPgw9kloJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.9|0.82|17.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr01717d|K3fGxzbonVa08qpm82FlTdZKfBlL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.04|196.9|0.65|13.18|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|K3ozM4ytYyxqam5YjKR3gUZNJOuu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -B57C20F228H120I3N20Pb20|B57Pb20C20N20H120I3F228|MAPb(BF4)2.85I0.15||0.982|116.0|0.74|8.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|K3qW1kRMf027dPYuAraSv769maZ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)2.85I0.15. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|155.5|0.665|11.37|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']|['Bifluo']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|K41donc2Ng5lXVvspgCCR7FhwD8T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.79|102.1|0.75|6.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|K453dmBgTChTkUH0Po3-ygDmVYYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|208.2|0.716|17.0|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|K45I36vXP5YHfIkQTZIqFI3yAiIF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|196.59|0.67|14.05|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|K4CBuX4byDlwVT1vneJOvTc3OOeX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|197.0|0.4|6.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|K4FOzLBEewZwafgVPdmiqrUirE5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.73|111.2|0.511|4.13|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|K4HiBRSB4iVA9Qk9IQ89Ad10RHrD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6679999999999999|0.31|0.65|20.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|K4JLhWsaH206Dy22IxYRcl74Dh3t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPb1.0I3|1.4800001578140891|0.85|169.3|0.475|6.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|K4Ry-HiscnUJCBygaoh0wxLOjNAu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.0|0.72|17.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|K4VYShCNHYqOFE50W4bFbOHTZIQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.74|194.0|0.583|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|K4jzWCX-ivvmBMjihXCROG_dLs-y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|209.6|0.732|13.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c7ta00203c|K4slZFMyb77bhI92sAyeviLNaTZ2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.2|0.685|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|K4t1KLgzbHb3jMm8lrr-HNzKKzGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.0|0.45|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|K55src0BFv-TiW2xmZo_bAgCtLC1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|140.6|0.7140000000000001|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|K5GfZ9jiCI2aeOwaynmaPqIwSNnH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|176.20000000000002|0.74|15.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|K5V7mZYnPFXt-V4BPLUsf8zTe142|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|206.3|0.69|13.69|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201504245|K5WzPeni6cNk6jrKn6KOrbVziuGE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.5920000000000001|12.7|0.5|0.37592|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b06278|K5iLM5AZZxlry6xGt84oeDPmVONv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|172.39999999999998|0.6|8.95|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']|['Cu2O']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.08.013|K5vMWd_j9kZIYJwF_0sYXysTpVMo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.7|0.56|11.02|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b09809|K5vvK_HmjW1KbDq_gnp4Us858rth|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.2|0.66|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900990|K62mDImM4tsO0hDxbLJGeVm6hbm_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|213.0|0.56|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09819c|K68lyBErQEgZ2rZlVwd5Cwqx0GLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|116.6|0.68|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|K6HJs3Jh8B5sGIHUzJwZe2fW1z1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -I9Rb3Sb2|Rb3Sb2I9|Rb3Sb2I9|2.240000238853757|0.52|16.599999999999998|0.5660000000000001|0.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03310|K6QfhGq0kIK39MRpuDjv710S66V-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is Rb3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.0|0.66|14.0|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201700029|K6XSYphaf7qhpbdhMC-AchyZfTyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.78|121.6|0.6|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11082-016-0819-0|K6mYoowp8MnthfdKd_hxCZByc9Sz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|243.3|0.69|16.57|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBBz', 'BCP', 'Ag']|['NiO']|['PC61BBz', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b09018|K6njrk3H8Ob3NFY4Yt-LCGVfVS4b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBBz', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.2|0.606|10.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.06.168|K6q5lkDAsPaNBRxAgjG6OksMVCqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|139.8|0.69|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']|['Yih-2']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|K6vR-c0Q9UurH0AjCwnVDnb3bkpn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.097|248.2|0.778|21.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|K79qUISY3ApFIqhq17UZqPoR0k4W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.14|220.0|0.8|20.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|K7Ajz9shl7PtZ4HEwQyMljUre8lX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C5H25I15N10PbSn4|PbSn4C5N10H25I15|FAPb0.2Sn0.8I3|1.2900001375541723|0.429|145.9|0.45|2.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|K7Rl9DisJSUS3pisT6X864B0hCs9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.2Sn0.8I3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.42|16.0|0.446|0.3|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|K7UrAQtH711qr7LiE7DZs6i8wwrm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|214.1|0.628|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|K7Vbx_RE05SKcO8ixRFEJcg2dpTR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|178.1|0.65|11.42|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804286|K7aynDj42PvBq-ldRjK8qT17Sx3W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.3|0.698|13.54|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|K7cPM13DYdQ37CxtkpLRBZ3VkEqS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|142.5|0.67|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|K7fvdC-WGnAPTr5a67AwKpho7Ohj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|192.0|0.65|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|K7guNCdXvc_YaZCoNQIamwGkhwG1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5300001631456466|1.09|222.6|0.69|16.87|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|K7nM6tJ9GmOaYGNhGiyvSWiMAYz9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|154.5|0.78|11.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.034|K7ohLZshD55N0dp9yUdSgWpAv2Pq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|0.853|171.0|0.73|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|K8QD--NpfICOEhniknRc2KpTBxCg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5379999999999999|199.9|0.677|7.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|K8caEEuHhbAK-05eoM_wP5T6f3Lx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.86|206.4|0.68|12.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|K8eB4q82d6QhBBT_8p-CBXneyYG-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|183.0|0.73|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|K8jjZQDE-qelziRUFte1I_9w7JTS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.17|196.0|0.8|18.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|K8k4DdP-zxbn6H31JqGmmtSV9gPw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|230.6|0.764|19.38|['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|K8kY3OHgpCCMEc44cNAeTnMfTtL3|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||7.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|K8s3vuxXmVqrsFW61s4btcZ-4I0D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.880000200466546|0.97|100.5|0.58|5.95|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152768|K8vsopdpPtPWjpOMq3_dyiYEqdY5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.4|0.728|17.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b02297|K99lPkeRNP-ZbHpluMLEh-cLcgqr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|229.0|0.61|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|K9H17dJoBjZlPDl3PE_RD96ovxq7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|169.0|0.764|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|K9HK1mYxoAtxj_b6f6Y4aPXwEwUZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.774|293.0|0.6809999999999999|15.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|K9KAk-yykJ0HeKjxc3Z6r1GVamGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.6|0.76|18.42|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804286|K9M7Jfoie8kA-K3p-fmVVQ-Sd6Md|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.4|0.76|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|K9VU-9FZHGDvH6K9yvFm491uCjB9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|193.0|0.68|13.9|['SLG', 'PEDOT:PSS', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201701569|K9abxqUfpGz5R_MKn6PDVvJBQy46|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.995|200.7|0.8|16.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2020.110553|K9hr6BCkuS9P8QlSkORMebfP9EdC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C18Cs2H104I17N22Pb20|Cs2Pb20C18N22H104I17Br3|Cs0.1FA0.2MA0.7PbBr0.15I0.85|1.6500001759413832|1.17|209.0|0.786|19.3||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41566-022-01033-8|K9i_Z6Ss00QG92hm-si9CoOEyYP8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbBr0.15I0.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|227.0|0.7490000000000001|19.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00925|K9p58rw4PI1ZsD8zzow9Du0ES0zQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|146.3|0.48|5.37|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|K9s7E0aRNyZ-l56zNM0YsI7FmCXJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.741|202.0|0.71|10.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr03507a|K9w7h-5ug3RtfjhpwwgfxmOOHh8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.635|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|KA4xOjDGJORpLNHxtoyknzQcoBn-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|239.0|0.8|20.6|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|KA60w-YhhVby6vH3o8wSlH_1bbSW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|202.0|0.76|16.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|KA86nejRRzCeUWarKGmn9Tfk_NGc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|226.9|0.76|18.97|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|KA9yPx33qPFqnPieAWr4Q1HfGyH1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|175.0|0.44|6.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jp500717w|KAAdORNSq-ME04bqiGuCmO_7CVZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|191.9|0.57|10.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b11596|KADM-GPCmgqgWWpaYXDAcZX4JjTc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|216.3|0.74|17.61|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06424|KADy_9gQv2lsC5kO_PHS_EGz3BdW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|KAESPlREQQt0tcUgt_vn0ajrqw8Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.1|205.7|0.718|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00243f|KAEag-8jY5m6rEJi4ZUqEWsuFS-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|KAFZIkT_5yuQY7vW36ytkOfNqe3Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|1.06|194.3|0.541|11.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|KAHC_VDR9H3MNqg20j2T3niuqnEY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|222.2|0.5870000000000001|10.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|KAceQg7fj_u47IbTlIz8KHaZ-m71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|166.70000000000002|0.7659999999999999|10.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|KB2StbRQoe0inpq1bIklfTgSZykP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|102.0|0.505|4.07|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|KB3mtXzhZSVZIUh1J-uUI1eT15zY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.828|142.5|0.49|5.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.07.112|KBCkLysaikj_RlmN8eWMSQ-S1EcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.4|0.71|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.024|KBTDl-ZDKu1LM9hnAacu1nsSZhPJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C23H123I60N23Pb20|Pb20C23N23H123I60|(Ace)0.15MA0.85PbI3||1.124|219.2|0.7120000000000001|17.53|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|KBg4IFYPAA-JUJo20oQ0n0WgG1uO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|179.7|0.48|6.64|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|KBilOWiaSr0mZtfpWBHtVeafTnj-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|111.0|1.177|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180384|KBk0f8qQKchZshtLLtQHzvl1FDHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|138.3|0.62|7.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|KBvcxaY1kqlAEomgAzUa_dmo3ZXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|137.3|0.667|8.79|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|KBwQNA_FwJ-0PpEyPYLCG68fVbvb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|216.0|0.682|11.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|KBy-wR8_XtMI4eMmrq5fr2pYk3ei|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9Cs5I6Pb5|Cs5Pb5I6Br9|CsPb1.0Br1.8I1.2||1.332|97.0|0.65|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802060|KC0iF5G7A2f1ygTdlnDRxhkkyjFu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPb1.0Br1.8I1.2. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5300001631456466|1.003|212.0|0.7|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201309361|KC5xR2j0Qsrb3RTj3wRgbAkGkfED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|204.0|0.78|17.59|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|KC6TtKidSku4TWqpxIjI_q-UjAEC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|200.8|0.6709999999999999|14.02|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1039/c8ra08940j|KC7ibYCbKe9wZ0dHB1nW9CUT4yIE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|223.1|0.7490000000000001|17.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|KCBuK6BUfYhnphtulBy8hmznx5Bz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.1|0.628|14.92|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|KCGEx-dCicIuZMrYNEVYND78E1ca|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.7|0.75|15.08|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-019-51273-y|KCMl56qnJZjqtAR3UnzrnFe-h28x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.495|0.0|0.26|0.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|KCNAZ-FK9ho8BnidjymG75xLZt9Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C5H27I15N8Sn3|Sn3C5N8H27I15|FA0.6MA0.4Sn0.6I3|1.2500001332889268|0.77|278.2|0.72|15.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201804427|KCWpCG6UQDy3qAtlGAPtlhYWmA-_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Sn0.6I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.06|225.0|0.7559999999999999|18.03|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF4', 'Au']|['BTF4']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|KCdYMF5ipFiBmuwKHlFCZFZfLyBx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF4', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.180000125824747|0.421|172.0|0.5|3.64|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|KCdjrmsxYikz8p1DRHp3N6MakkeF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|171.0|0.65|11.6|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.161163|KCekL3TXDSRNhnJ09_0k-Hl-rmQg|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C16H72I28N10Pb9|Pb9C16N10H72I28|BA2MA8Pb9I28||1.06|204.6|0.69|14.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|KCjf0yKq1s0eyZwo3mLqA3wsyBLT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA8Pb9I28. -Br260C475Cs25H2455I1240N870Pb374Sn126|Cs25Pb374Sn126C475N870H2455I1240Br260|Cs0.05FA0.79MA0.16Pb0.748Sn0.252Br0.52I2.48|1.380000147150975|0.76|252.0|0.74|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|KCmfsTA0R_hlYIFNa6jg68pfixuC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.748Sn0.252Br0.52I2.48. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.58|39.8|0.511|3.21|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|not processed|https://doi.org/10.1021/acsami.7b18902|KCplcI5O23tmg6iW9vUuwGRkymPj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|164.8|0.61|10.15|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr05974g|KCre2MxgxXOTtHecMsk4SZiT86os|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|233.5|0.743|19.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|KD6jwgicNWnHTQ1RayCikc_yyHHs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|237.0|0.7709999999999999|19.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']|['WO3', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201801386|KDA7UrRcDpUfNZEEeL-NRrAWBd2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|105.7|0.408|3.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|KDBRmQ0CxHGWQXi6NFLfxes7ooC4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|215.7|0.758|16.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2018.10.025|KDF0cf3m7BxajBvDu_t5mw6tkI3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|194.0|0.73|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1166/jnn.2020.17339|KDO5_ShMMr24nUGrgpoMvESbBPn5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.08|203.1|0.58|12.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-4DPA', 'Ag']|['TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07603c|KDV9dmUB6z2ds7DSTRHnqZkuJHeO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.1|0.76|17.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|KDeENeOPYVwOSsQEAIw6TEJniGwN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.09|143.5|0.7|11.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|KDfi1UTbasKsoSWVv1Cc-X8HaBFX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.093|231.7|0.755|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900838|KDkwx6fASOseHDJkIs_WRWYBAwRe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|0.73|168.0|0.7559999999999999|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.013|KDt1QzdsMNfYWfS-lVo2JloC6BT4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900089|KDzKwzqRZK7MPrIGG4sdhoYK36xF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.350000143952041|0.82|221.9|0.78|14.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|KE3T2NaXquboV7ffz9QCDsmQyACE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -C23Cs2H115I75N46Pb25|Cs2Pb25C23N46H115I75|Cs0.08FA0.92PbI3||1.05|234.0|0.721|17.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|KE4rclGfl8GeP-0aBidlOjuCniTK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.92PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.914|206.1|0.52|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|KEIE4qNBDKGlEaYxpGL_6BcENkLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|196.8|0.417|7.86|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500059v|KETEI4abSWx76cPyQHBuZwqHDIKA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|207.0|0.7020000000000001|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|KEZl0_a_P-1zmjKnDvAGiqpBGBSN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C77H415I147N124Pb50|Pb50C77N124H415I147Br3|FA0.94MA0.6PbBr0.06I2.94||1.153|241.9|0.73|20.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aay9698|KEn8DXj8QUV54iYu8S-JTfzy_Z93|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.94MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|KEsVNN5GQY0Mea3WBzOc0IC-u9de|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.0|0.44|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02921f|KF3OAN7SOEa4HuY9zaBkOpm7IUQk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|164.0|0.54|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-8901-y|KFCXBXA9l4CvCgtY7-x2Id-nHQbN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|165.0|0.67|9.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Candle soot', 'FTO']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|KFEb5d8tbP73q0QvfjPacCVvDSZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Candle soot', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.5|0.78|16.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1063/1.4941416|KFFh5c-vxOtr3YRJ-JqVZg8-K5oV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.748|204.5|0.5710000000000001|8.74|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|KFH3qNq9qkRBzgg8QWB09YpwbFR5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|194.7|0.7120000000000001|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2016.1176512|KFPbl6iOnMUsdigZM71I93RE8MyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|158.1|0.72|10.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|KF_wIgoya1zSTIdEvVg6jrKLHbgF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|196.0|0.68|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|KFdZ-LM1I3wSQncR3z2DDw8vEEJk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.065|208.4|0.662|14.69|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ta08783c|KFgtpunMjGI60LIsYTmZco9nDSHB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.71|120.6|0.67|5.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.56.04CS11|KFhD-irMn4EMmMM7fRi3EyjwM-bB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|171.5|0.57|8.6|['PET', 'MSA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|KFoB90gXxH5rv6Qx_zgNi1TTsfyF|a perovskite solar cell with the following device stack: ['PET', 'MSA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.09|235.2|0.715|16.46|['SLG', 'FTO', 'TiO2-c', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', '[EMIM]PF6-IL']|bulk|https://doi.org/10.1021/acsami.6b12683|KFpL_vwZGFiIL7ZfS47fLr6ucXJ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|152.20000000000002|0.5|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|KFtHHh2MCM_zBfeeeLzfxs5gFpyv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cp04479g|KG170bO8i89GGowesz_z_A91Dzsc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|233.6|0.679|16.54|['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Graphene-QDs']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|KGIxRLD1Z7tVMYaUCy50_3MxIr9r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|150.0|0.6|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']|['DR3TBDTT; PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|KGM98M9-s9N8221rTw9dDPi25c05|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|KGTtZdzgNQDb2i_dDTl205IcQvIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.983|206.1|0.6579999999999999|13.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TC01781A|KGo7LBmn3I3o9jhPfiMEyHulVDKw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|162.7|0.551|7.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|KGq43lPANWxMLI_Dp49u7u6XbRO0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.657|14.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.029|KH2VF6f9xZe7FgdHgDzIwx7wZpGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|131.0|0.3829999999999999|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201900885|KH3oN_g8dUY1Ty2Qoon0OexTuJlb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|66.10000000000001|0.41|2.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']|['HBZ-70']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|KH9UxeXABrTyY9dqVeWqRD3ibOgn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|219.5|0.82|19.64|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['none']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.0c02837|KHBVRPFcvdIVBbnYXpBvF474OMRC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|161.0|0.5820000000000001|10.5|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201700222|KHCZU7QXdyJ64DPI03BgYBTeQeic|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.89|100.0|0.61|5.43|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|KHCvoLRQIziaQ0-yAGJNwb-WTwr7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.14|180.3|0.24|0.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00400|KHJ3EpWCMMfeqbsa8XoGvxqz2vlQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.0|0.573|9.5|['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Ag:CuO-nanofibers', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pc.25527|KHKWSgjHfqSY6FVGxo1Pd-t1xM4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|205.8|0.675|11.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|KHaqkldkIBBDAhtrgsNHQ6nPnAVX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.03|170.2|0.77|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|KHeEer53-BvG9q7sojieBBkUsQr2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.2|0.75|16.55|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b15975|KIQv2S_O9m6m0zwOBXj43nuQ5UbR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C15Cs5H75I54N30Pb20|Cs5Pb20C15N30H75I54Br6|Cs0.25FA0.75PbBr0.3I2.7|1.570000167410892|1.132|222.3|0.8|19.95|['SLG', 'FTO', 'NiO-c', 'CuGaO2-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201805660|KISaac0cqWWjh13lP5Cr9E9nsw7L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuGaO2-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|182.4|0.542|6.99|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1016/j.jechem.2015.08.002|KISprpzOIAwz5mbZgjB1VfH08VVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.98|125.5|0.69|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801050|KIVoKO3tLwLwIsGd2or0dEpCUtZf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|207.0|0.7909999999999999|17.4|['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['F6-TCNNQ', 'TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/c8se00218e|KIW4dZHGnSoh3X5CqCV1OjBYKizU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|191.0|0.5760000000000001|11.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201900434|KIWWdgrBkKBrtfAtSQDciyglnwWu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|188.5|0.68|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b04760|KIeZmT3XDUJ5_8J672mWHVrB9JcY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|122.0|0.286|2.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F8T2e', 'Au']|['F8T2e']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|KIojjn31AuLaC2XvsRxK_vxlocE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F8T2e', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|122.5|0.72|9.15|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuO']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|KIpAE5SAZi8-zOSdrNItKwo8gQ02|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I3N5Pb5|Pb5C5N5H30I3Br2|MAPbBr0.4I0.6|1.810000193002366|1.12|142.0|0.748|11.9||['P-TPD']|['PCBM-60']|not processed|https://doi.org/10.1002/smll.201907226|KIq3zgQstDy5VwIYyVpo1XJYvF2R|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|173.9|0.47|7.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|KIrJ1UQ9fkPlWvCTcm8ngE0duOzM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|155.39999999999998|0.6890000000000001|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra09976a|KIssQJqVNowbR_uB7q0ssEV7ATvc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.35|66.7|0.483|4.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|KIwIq7hcQwrE43_40RLAOs4y1r9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.073|213.82|0.7340000000000001|16.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|KJ0suWi4-DrzZzNCjJ_DXHV2h7hW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|183.1|0.74|13.93|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b05588|KJ2c341xShAzcpSoWGpmRlTZ8i-y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.1|0.72|14.59|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|KJ36U2kbm_TgP7PDeYqy-eXuCna2|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.65||0.48|4.7|['SLG', 'ITO', 'MoOx', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.7567/JJAP.57.102303|KJ3oqAG1kbf7wQ7X5c9pUzAcTpNC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49|1.6000001706098266|0.97|203.0|0.79|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'SnZnO', 'ITO']|['NiO-c']|['PCBM-60', 'SnO-c', 'SnZnO']|bulk|https://doi.org/10.1126/science.aaf9717|KJG_-tFTpRzA7p_ViVqs3Gg72SqX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'SnZnO', 'ITO']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|120.3|0.29|2.89|['PET', 'ITO', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Graphene']|bulk|https://doi.org/10.1021/acs.jpcc.5b00933|KJL6PVUcCXfxP8laTikLIHrGAcC_|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.87|198.8|0.68|11.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mseb.2017.01.004|KJRxknJz3UYNTkEaQec1bPWgEno7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br198CsI102Pb99|CsPb99I102Br198|Cs0.01Pb0.99Br1.98I1.02||0.92|130.7|0.55|6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800504|KJZJxA1juIpk5_0cYX-GkyUAKLt7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.01Pb0.99Br1.98I1.02. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|160.95|0.45|5.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.189|KJifihwRNoxfGcIcIKPoVRb8Yrgb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|239.7|0.75|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|KJmRDIQ4Cn9axvbz0Qg7ENHPSL4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|223.0|0.7|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta03782e|KJuGaCM3UVGU2pO7WZBeEr3uq5_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.87|164.59|0.806|11.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||KJuwsAEN31tI6y7M4LunJUCeaX8w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7140001827657765|1.189|191.9|0.762|17.38||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|KKFCPf1nDxPRMOBsespnJxTl4vXL|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.16|228.8|0.81|21.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901242|KKN1dApN9X7Bohz_Z925LPIZaFb9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|189.1|0.68|10.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201505241|KKS8e29LH-A1UJvAKKW25RG1YfS5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|132.10000000000002|0.544|6.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|KKUEmXRiL8unqOdAV3WK3x5QYVee|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.17|211.1|0.79|18.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|KKY5ckpGki6XWO2oaFM_tNTGTtwn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|197.2|0.5670000000000001|10.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|KKZzfxfy_LGs0FUiMxWS9_KhPgoB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|43.0|0.526|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/cnma.201800375|KKk4Fp_Ot5H9oyA2tad1uonevnN4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.7|0.69|12.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|KKqw7zgTUJsMv2BVLJq8J2rRPkD4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.727|113.3|0.267|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|KKs9Gw47X_vhxH3zMdW2jMNUIq8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.98|152.0||10.1|['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']|['Cu:Ni acetate']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|KLEi_6EvODimq-rzfsDk0QKNIWuw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.87|119.0|0.41|4.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/ph5000067|KLPjZBimTCY7HY5NAKZkwCONI4ou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|230.2|0.7959999999999999|19.39|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|KL_CKs_tfwVTv1Z2dGCVzmD5n8SS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C100H517I180N183Pb100|Pb100C100N183H517I180Br120|FA0.83MA0.17PbBr1.2I1.8|1.7200001834055632|1.15|194.0|0.77|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']|['PTAA']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|KLafhjzGsyfUzGIw3lxzP5Vk_pem|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.83MA0.17PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.04|232.0|0.75|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|KLbpb3i5IsRYPMr4hAdXmZkPhLXb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|230.7|0.794|19.79|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['2-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|KLdNCTZCdUgyfZFH8FVVVAo_Zp_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|227.6|0.773|19.17|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801433|KLjsSrzwHiD8egA8TOWG-Z8hEbcr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.05|235.0|0.763|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b00356|KLp5HIdDU6nPugYYSr5Q-4Q-A93G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|161.0|0.754|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01714a|KLt4hHUeb2njlSB91Y23cFl10fUc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701722|KLvtexAnbJd5dq8qy8cHWMRqjpyN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|200.0|0.6|13.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606656|KM9bbYxdrncsm381MCgwiZjdjE2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|155.6|0.77|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|KMB2xIk8DHhKbt4XDZ_o7R_ti8_Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|145.2|0.7809999999999999|12.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|KMBh-69ex03_x92O26BkqZBoT4OK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|188.0|0.64|12.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1155/2019/4360816|KMV5AFwjI9EyaB6BnRg7IKyN4NRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18Cs2H108I60N18Pb5Sn15|Cs2Pb5Sn15C18N18H108I60|Cs0.1MA0.9Pb0.25Sn0.75I3|1.280000136487861|0.48|218.4|0.609|6.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|KMfwrOwrrsp-Tfml_0E78pMsPhFA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|KMnki2uBo4cqiihJ8zYP9C5jdxLg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.757|155.1|0.444|5.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/12/128801|KMo_TJOGBhc2GKQozNEZiuhe0UI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|215.1|0.75|18.72|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900092|KMs2Y5cLvuhse-cJeMTbnZnfy654|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.8|0.76|15.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600493|KMy2o7gVcyQJVcl2ejeITOsAEjYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|227.0|0.72|14.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|KN0rophQPBxSTOyLts0a-rZu79H_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.0|0.67|13.0|['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cs2CO3']|bulk|https://doi.org/10.1021/nn5029828|KN743ry111xchqSeHKjBprkSQbOT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.08|232.3|0.74|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|KN8a7t5TGxmqu9tTdEpFzpCzjPAb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6559999999999999|11.9|0.295|0.23|['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1063/1.4926363|KNCxWqm8St6JMvMehLp-Sz-2YR8b|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|83.10000000000001|0.66|6.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|KNOTUFkMPL9gC95gFKdNgLBxUsRs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.67|36.3|0.368|0.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|KNOux6JQDo8rcFJbO2V9Efwlzdor|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.3|0.693|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|KNRBthzx80TrScYArbnwZTXAtGOU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|232.0|0.81|20.7|['SLG', 'FTO', 'TiO2-c', 'Ba0.8Sr0.2SnO3-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Ba0.8Sr0.2SnO3-np']|bulk|https://doi.org/10.1039/c8ee03672a|KNTGmj7heBQF5fF5G3EWX0FC7D8q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ba0.8Sr0.2SnO3-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.12|219.0|0.7340000000000001|18.0|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|KNVQmmytPBYcJ-geIcvpm1feRg34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|KNVan9sX58ZSV0OFrMALJEyl1Ld_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.95|59.0|0.725|4.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|KNZYVgKRYkc0-D_dS4TcTcEigIV2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br21C50H293I129N57Pb50|Pb50C50N57H293I129Br21|FA0.14MA0.86PbBr0.42I2.58||1.07|217.8|0.732|17.1|['SLG', 'ITO', '2,7-PCzTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['2,7-PCzTPA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.9b00372|KNc-HTMCr5uqBStPKevQqenXdAZ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2,7-PCzTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.14MA0.86PbBr0.42I2.58. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.07|215.0|0.76|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902653|KNwnw2k9bYqSnNRgEgQXgWb_baUz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.240000238853757|0.203|15.9|0.33|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.034|KOAQ1HUtxeVfLMfM_HjFSK1_icvT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|175.0|0.76|12.0|['PET', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Au']|['PEDOT:PSS']|['PCTDI']|bulk|https://doi.org/10.1038/NMAT4388|KOcGorj22HGRX2BivzvijwcSeqkl|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.99|142.0|0.55|7.73|['PI', 'PEDOT:PSS', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201701569|KOiXnT6vJJI3HS6BKpBc6CNsQS_S|a perovskite solar cell with the following device stack: ['PI', 'PEDOT:PSS', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|229.0|0.8|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|KOjzyp52KNkn9ZhXWLI3OpVs1qnC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|206.5|0.732|16.5|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|KOo62c43Qu0nSK2-n_5F1g9Yophf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.9|0.72|13.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|KOyRvFv7XAIIi6YH9_-B1uahpnRn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|123.0|0.53|3.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.09.062|KP-5xfz0SJMyzZrErJW4RtQx2nce|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br24C17Cs3H85I36N34Pb20|Cs3Pb20C17N34H85I36Br24|Cs0.15FA0.85PbBr1.2I1.8|1.75200018681776|1.204|180.2|0.775|16.81||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|KP5bP4XDMBvs299hyv92VIGuUAv_|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|210.0|0.396|4.65|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'NiO', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s40843-017-9028-y|KP6XGiSe_WrPcPXXJw-0kD_xLO0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.02|151.0|0.65|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|KP8yu5HoCXGkbPBxZdVQQ0kAoBiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|156.2|0.638|9.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06700b|KPK3L9e3DIbSWC2nIOsQ4kog47PF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|165.0|0.639|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta07008b|KPPZbEASb-cu-m6BDpKRt4S19A5Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.3|0.51|8.01|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|KP_mKNEtmfd7zs8I47Ta72oDcqz_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|207.4|0.718|14.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.053|KPhScrNtTselBzM4gGsl5JWqrYmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.564|21.0|0.32|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|KPpfaYAb4RFaGVcEscq-EjXbbIMH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2a', 'Ag']|['PEDOT:PSS']|['Fullerene-2a']|bulk|https://doi.org/10.3390/ma12081314|KPqsKVhC-tEXyL1yLeX6NetQBFwi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2a', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7040000000000001|140.0|0.41|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|KPsG-ACkrgcEmhPVzE3x381fDrrj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|222.2|0.601|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201901257|KPvhnHlvlYBk8uuAwUdo2EaPHRXX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.3|0.72|13.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7203-0|KPy_vHvP3QvYYJ2qVgtONSlefi31|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|244.0|0.784|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|KQ0ZSEhLKaPRSSV_Uvt-vP7IOLst|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|127.0|0.56|6.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|KQ1agbhT7NRVEc7pFo2KanvRwtX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|28.700000000000003|0.53|1.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.10.077|KQ6hxb9Xn1-MHF-Us6QFFMRwqgK-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.0|0.58|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|KQ8yBpFNTpt43DmIuUP1xHrGigqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|125.0|0.6|6.1|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c4ta05819d|KQ9LAviaB5X0kff1icXdFT6-du67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.065|228.6|0.711|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|KQC8A6Mmo5fiVttuA41QB61PbIRo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.863|166.9|0.49|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q198', 'Carbon']|['Q198']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra25606f|KQClnEcpNq9kPBt02WqaQ9RtD-KC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q198', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|206.9|0.62|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE01|KQTZeadEGgEKOG6NdSG9nKu_YnUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7750001892702758|0.847|117.6|0.574|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201404427|KQUc8VUcK5ZPxbIntm0jH4y5FFjY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.065|243.0|0.53|13.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra06645g|KQ_hledfWpitfFlNpQ44tD6Ycf-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.732|141.0|0.452|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|KQcNwi325KgJnGQipT8qXuUtIBGO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.0|0.62|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|KQdo8stc_6LekfP3Qqc6goH89cXI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|185.0|0.5489999999999999|10.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5087796|KQfHJRKQ7JMt4T4ve0Pzw5_IB30O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|170.0|0.738|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|KQpn78wtzqKN2x6AVsO78fKF5PtD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.82|126.7|0.526|5.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504175x|KQqGXLbPVnheSeYgrMvRjOXlnkFA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.021|10.7|0.759|17.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NH4I']|bulk|https://doi.org/10.1021/acsami.7b12721|KQvwTP9DtFrOCjCC2B1FQX6agUcF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.957|198.6|0.71|13.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|KRDAlulrCqAR3SlKMy-9oh8kqf79|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9Cs20I51Pb20|Cs20Pb20I51Br9|CsPbBr0.45I2.55|1.8400001962013004|1.12|163.6|0.769|15.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05948b|KRDqxYtTewHx1AJtzE1ecYRPfOYe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.9|0.78|18.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.orgel.2018.09.027|KRacC4xYvD_L79bxTNPAKqSuQvuR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|136.0|0.65|5.2|['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanospheres']|bulk|https://doi.org/10.5229/JECST.2018.9.2.118|KRecCgi6jBdB5FlPuR2_lwJPIDK-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|215.7|0.75|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b02434|KRpSm_HFXiRaLnQxxV-SDAAMRGB2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|123.6|0.66|8.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|KS51ufT_5L1STXZrPgLRtKBieXhS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br54C20H120I6N20Pb15Sn5|Pb15Sn5C20N20H120I6Br54|MAPb0.75Sn0.25Br2.7I0.3|1.990000212195972|0.91|44.7|0.62|2.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|KS758e0hyXuL5O6ZWpSccjjjUIfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br2.7I0.3. -C20GeH105I60N35Sn19|Sn19GeC20N35H105I60|FA0.75MA0.25Ge0.05Sn0.95I3|1.400000149283598|0.42|195.0|0.55|4.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b00275|KS9qqdqtMFfBgHHNVuIvL89rmUMg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Ge0.05Sn0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|71.5|0.28|1.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Candle soot', 'FTO']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|KSGbBI7-DBj1d_A-7pRsxQj6ItcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Candle soot', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|205.6|0.68|14.3|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1002/advs.201700018|KSSDlEgk8-X1aY1MQuK8qZjhyiAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.454|71.0|0.8370000000000001|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|KSYVSx8UebpYGAqeK_UvZZ2j8nvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.5|0.74|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b04924|KSbibmsMBwL4R8PrDuRwDDFTigmL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.71|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14567|KScXW8YPlu87oGZyL3ErcXQVqgHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|217.7|0.7140000000000001|14.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta08565b|KShSU4YhMrNhPp477V474hYx6-s4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|208.8|0.62|12.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-TPA', 'Au']|['OMeTPA-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|KShVCGtOqKAGBLnHAQB7HRC-HAZm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.999|184.7|0.762|14.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|KSjSP3MDeqQLyOUfiyvW9EbMZ_MR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.85|178.0|0.63|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acssuschemeng.9b04772|KSrfMmv2zJfxapDzHSPnWj1yaurU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|226.8|0.745|18.43|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|KTJxaqTSP9BG5FtV6wZvax_DpCuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|201.3|0.76|16.49|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|KTKPpOIV49D5LGQFUhGdbZq6dMpe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|143.9|0.745|10.86|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|KTKsBS7Qks1dgJQAIukFL9OgXIpk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.09|223.0|0.7879999999999999|19.16|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901242|KTLl_OwUKH9VIfb1Rbtkebtxqnxo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.6|0.72|15.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|KTURgI47WebhU0kRdCKHgLwfwbVM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|115.5|0.56|4.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.04.082|KTWtDyrfDyGlNQ3bIsYy7REy49qr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C15Cs5H78I42N27Pb20|Cs5Pb20C15N27H78I42Br18|Cs0.25FA0.6MA0.15PbBr0.9I2.1|1.760000187670809|1.17|167.0|0.696|13.6||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|KT_yPb03v0bCug9Mp1kfrlZdWii2|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.6MA0.15PbBr0.9I2.1. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|175.0|0.7|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|KThSHQDsnIwJpUf1ftCc2qjv18Tl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|102.0|0.47|4.5|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|KTrWSeaztLFOUyptwzpNX5eFyE83|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|223.1|0.74|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|KTs8dhAaBXQWCbfy1TqQ92IoBuJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|113.9|0.6|7.02|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1021/acsami.8b05560|KU023Ay8MfmBb8PDt0WeBg-3g848|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|224.3|0.55|9.97|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|KUGf6s8odFeKENOg3GF1OMuyi4Y4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.05|215.0|0.773|17.6|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']|['IDF-SFXPh', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|KUKbNXUCAJ1YyB5qzHxE8Z_hdiB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|169.0|0.5|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|KUS21DgPAekLaSkDtuhogZSG57EB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.17|226.5|0.765|19.81|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900092|KUWf2aO6G5ig0fO8zNgsNAtQe7EV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.5|0.77|19.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|KUXgHO2Rj5Hp8-loprqZ56Ed06BP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|206.7|0.79|16.99|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|KUhU3Uaso9SCxPwuPoA7Z_HRADAS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.038|190.3|0.66|12.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|KUiwgg_1Yarexlq9A5GJwq5QnvHc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.114|223.2|0.778|19.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|KUosjrMz2VYJJdl6z8drJiZios-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.14|227.0|0.74|19.0|['SLG', 'FTO', 'SrSnO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrSnO3']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.059|KUsotAUTAmmtGsB2lwv5O7wza1WU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrSnO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|183.4|0.52|7.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|KV0AZTS5Q4ZNMehqesqu8w6GWl9o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.126|235.0|0.7659999999999999|20.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|KV0ZBXy7r64q6t39MSNv_e6DAgp7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||0.44|3.7|0.49|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|KV0e_OKzbelrh2dj6fJ9n8Ro4kJ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|195.8|0.6970000000000001|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|KVCLa7XyBrOzYfetuHSpa3KjEqny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.8|0.65|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|KVHSL4WqKyl60J7Kz9gve5Rhi02j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H538I290N162Pb100|Pb100C100N162H538I290Br13|FA0.62MA0.38PbBr0.13I2.90||1.07|220.0|0.75|17.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|KVQQGBjVvKiFoNNTxBpC1HfTOKRc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.62MA0.38PbBr0.13I2.90. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|200.4|0.652|12.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00314|KVXwYBGX1JpSxovNpZLI7KXCd2et|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|164.0|0.65|10.5|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']"|"[""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01220h|KVrRukWasc4Ia7DtuFxpYvB3d2z6|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.57|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1896-5|KVsZV8uuiH8s-wnaLy1rpFOa_3t9|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|105.7|0.62|5.95|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.15541/jim20160041|KW8SPiIx73p-tk-nyOUQLGAI7ws3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|159.70000000000002|0.62|10.2|['PET', 'PEDOT:PSS', 'Ag-nw', 'SnO2-np', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60-SAM']|bulk|https://doi.org/10.1063/1.5042299|KW8w2HFm2uQLqJ47y1j06YTowkSq|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Ag-nw', 'SnO2-np', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|216.0|0.768|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|KWFmjOAxZTdTmLx7NanOzfZ3kYHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|231.0|0.664|15.46|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|KWMUJo7yIZrXNJEX4IQlAdZEbv2e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.6|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|KWVH4-GD-pT4Sf7CmD9aEKA4ZSjL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8|187.5|0.69|11.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/cphc.201601245|KWbEcyr7i6ypG1ni45jjhWil2Vuv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.361|177.0|0.627|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee00956b|KWeDKXfR2nhYa4EI-jKCwuzc9Meg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.92|0.2|0.24|0.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PTAA', 'FTO', 'SLG']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201900157|KWiWRwNO6bZsVMXWZFdZI3jA97Pt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PTAA', 'FTO', 'SLG']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|158.7|0.7559999999999999|11.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|KWntNLc9DxpOfd8VnyTbKqcL2LXD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|214.2|0.61|12.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|KWoehhQA_FHnGkcKVGbdABdPDjgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|198.8|0.7390000000000001|16.16|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|KWt-vQlMu_Vp2u5_6cKQ-2GpAWB3|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.71|119.8|0.67|5.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsomega.7b00814|KWxQ0B5XcGS7diHAPQxGmhpws67L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|164.8|0.685|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|KX3Oovfe_S1GkgCqQiOmXNT1ZtQ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|172.0|0.6459999999999999|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201403478|KX86G4XyIMnzbLXFMycIkvKmc0VT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|172.89999999999998|0.51|7.24|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2018.10.034|KXJ2b83oMZO7cH-ELmdo7BLYVgat|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.33|69.6|0.705|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|KXOKyHW8YvdO3cxriRMEW0mDFDMH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.3|0.73|16.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.10.019|KXQbYRK3AHmQP8hK4Mj9qFkrIt9o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|9.6|0.794|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.3390/molecules21040542|KXZj5iu5vWn5DBdg-ZTMLmLY9Ug0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.789|220.85|0.6729999999999999|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|KX_fIpaNKqQoqIBdRQmwpA8jfwf1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|142.4|0.522|6.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|KXaTGYiA_Pwvg-Zythh83f5EGrzv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.998|192.5|0.6759999999999999|12.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6tc01781a|KXcA-6w9e_QPXZuae3hECSZcbPI6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|172.60000000000002|0.68|10.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|KXltiRxfugLzxcgSNHyWrTHWuOfj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|213.0|0.69|13.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|KXuixXtG8muAjF2B-YFiKqjD1zsM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|222.3|0.7070000000000001|16.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|KXxkXhK8KscyahL5lG0K6A_PU4GI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|209.4|0.77|16.68|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|KY3SG2TDlX4GcaoLVGGnGLrICvIf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|146.0|0.452|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|KYO1Hy0wddSRjnHD2e5eS7d4-x1G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06689b|KYOMCAGrHqz4o27TWVlTROqthfeE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.2|0.62|13.07|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'IPFB', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz502703p|KYSF_MPSDqxw3KuPfjOAnWlg-CzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'IPFB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.81|121.7|0.57|5.54|['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']|['PANI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.ijleo.2020.164505|KYY1W8KulzLMRfGLP9Cjpy-66WGM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|24.0|0.5489999999999999|2.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|KYjZfD_YBtMPUIzODgJR2WrxNJnc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|215.5|0.708|13.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|KYkYW-YbM90o_9kp7TUPcjiWho5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H20I12N8Pb3Sn|Pb3SnC4N8H20I12|FAPb0.75Sn0.25I3|1.3100001396867953|0.75|180.8|0.54|7.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|KYsodZ_vf0D1I4Lr4IeS17J5QqQS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|102.3|0.6970000000000001|5.45|['SLG', 'ITO', 'PN-P', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PN-P']|bulk|https://doi.org/10.1039/c9cc06345e|KZFsoff217ZuPAAV_43sU1EGNCha|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PN-P', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|180.0|0.62|10.35|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/C4NR04383A|KZUJWBlLSY7Vq5gRLiJPfoVXhOMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C23Cs2H115I75N46Pb25|Cs2Pb25C23N46H115I75|Cs0.08FA0.92PbI3|1.5100001610130236|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-021-00831-8|KZX7Iva7pzpxliumDegHjsKJdGpr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.92PbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.12|162.10000000000002|0.56|10.17|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|KZXFZuZNKJmPaK5oDRGiezjj4C13|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.628|222.5|0.742|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.0c00923|KZ_3E4KMDQBQv0ZBB9Vu82U8XUXZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|268.1|0.547|13.64|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|KZq3APwM6jx8jnUeV1rJak8u08Df|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.01|28.0|0.186|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|KZrEEo8YpZV2PJ5UPI6170jzk_ul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.0|0.649|12.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00490|KZup2wmMtyxejXKRPCYNy2fJWQpm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|207.6|0.75|16.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-019-1174-3|KZyWmH9kxgYDtVYJJOI2j9UbfMW6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.1|0.6829999999999999|15.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.097|K_BGRLiV9s5jmTAGLYJoMhmORlQI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.98|225.0|0.76|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|K_F2hTdNZzhXrGKUSeRFwWYbWWPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.63|14.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.036|K_JEIq8PZ7Li3JimT0owWKXZ6ESe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|182.0|0.483|6.13|['SLG', 'FTO', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['none']|bulk|https://doi.org/10.1016/j.jallcom.2019.152742|K_Oa_-G_ajRPvJUSdj4USJjWMZc1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.0|0.62|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra01149g|K_S1jq5L_hOgWcH88MJw9pF7Si_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|212.0|0.7070000000000001|16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|K_WdtoUgA3wno1YHFk93S30Xy2YH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||1.094|227.0|0.773|19.2|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'DTPC8-ThDTPA', 'Au']|['DTPC8-ThDTPA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9tc03111a|K_cbcl_JYDpMcAVvxGLg5UaM0iSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'DTPC8-ThDTPA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -C4H12I2N4PbS2|PbC4N4H12S2I2|MA2Pb(SCN)2I2|2.100000223925397|0.401|10.6|0.493|0.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.poly.2018.01.034|K_i6y1FYXOjwMumfDi8vGWhqRxgn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2Pb(SCN)2I2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.8|0.748|11.13|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b08135|K_jqL9IYTAFKIhZxAw4BQEacjeFZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.5|0.76|15.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b01282|K_upAUImfnyNEaENzXjYkcoe229q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|194.2|0.63|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-FA', 'Au']|['OMeTPA-FA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|K_yImlHRVYTve1gFHK_mqtgAqpCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-FA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|46.4|0.52|2.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.10.077|Ka6tzZzTuXDzm2E6LepKw1YRK6Lp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.4|0.606|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|Ka9D2pIIq5TODcZeKM2eHwh5isnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.84|34.6|0.64|1.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.003|KaArMWk8CoLQt9otKKfNcvXQRNPk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.4|0.74|16.12|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|KaHirDAS9OutRqkzDP_z3sKvd8uI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|181.8|0.452|7.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|KaPITlr0XJBMCpWEjrTnpInwnVMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.98|175.3|0.5710000000000001|9.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|KaVi8_vVv79ica4hb1cJAl0ZlJk7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C95Cs5H491I300N174Pb100|Cs5Pb100C95N174H491I300|Cs0.05FA0.79MA0.16PbI3|1.6100001716761378|0.99|253.9|0.72|18.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|KaYS13H4vTGVXoEaloDbqhoAXzbO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.1|222.4|0.715|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b18082|Kabj_QdoE_HjrS7ue2838cMRPL-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701203|Kaq9PWffQU4_KKJ1R7aDJTIwLSqd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|213.2|0.684|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|KaqmN1YvlW04kf9PYy3YZ1BLC60r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|141.8|0.604|7.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s11664-018-6614-x|KaryPvMtLKrMKr8Dge2eLcj5LNQ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|127.7|0.59|7.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|Kat5kPCOVNth3LtMtHXkPjf4Jpxr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.27|81.0|0.66|6.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|KauPQdu0Htek-F_5zsJtWp2qnMrC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.1|0.72|17.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|Kb4Et4L4oPsbCh6hyZoCMD9UUaoN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|145.0|0.33|4.93|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201600027|KbDLdGp72krZasJXOeFO2zsb9g77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|128.0|0.7959999999999999|9.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05308k|KbHJCDCXeb2BlPA1hRUwrvhpiOAR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.1|0.65|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|KbLSrTXJOab6HQ54vE8YTNKHQJUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.4|0.8009999999999999|19.56|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|Kb_b7Ew4Of0m9bQ_-xHoYD9lipRK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.139|95.4|0.4579999999999999|0.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|KbgK1rI2iBVNFinGlk3SapITo95G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.0|140.0|0.56|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|KboZNsYtJOprBDw-22CCSfPbdR-G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|206.7|0.76|16.92|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|KbzqP6oF-REvA7DbOiP-1OXToUrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.085|240.3|0.7190000000000001|18.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi01020j|Kc8-SPUVaW4Gh4zoISlKYKFOJchU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.97|127.9|0.55|6.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smll.201700611|KcHr-zC-kK0SPSw8hX0dmdaKFmFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -BrC5H26I4N9Pb5|Pb5C5N9H26I4Br|FA0.8MA0.2PbBr0.2I0.8||1.1|229.0|0.792|20.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905951|KcNrkZt8RUBSQ8LGTwS6qbJW2Rjy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I0.8. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.99|216.9|0.5870000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|KcTLBJqDOs9N3GVEj43VDyMmUFJ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br54C100H519I246N181Pb100|Pb100C100N181H519I246Br54|FA0.81MA0.19PbBr0.54I2.46|1.6200001727424491|1.16|191.0|0.62|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|KcYNOfhvQZin9faMT5ma7flroKXr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.54I2.46. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.723|120.73|0.591|5.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|KcYRbS9g1wN72RhdSoEZYeIVf-C-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.62|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703879|Kc_I3VCeAYNZnvhus4Voa-yw8Ng3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|157.6|0.382|5.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151723|Kcc3VYy-F8zGQ--dw_pDXIFWB2zG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.7|0.662|12.6|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|Kcfu-0-QazMkYiepuocT1UaD9ZN_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|218.0|0.5|11.4|['SLG', 'ITO', 'C60', 'Perovskite', 'H2', 'Au']|['H2']|['C60']|bulk|https://doi.org/10.1021/acsaem.7b00208|KcmJtpcn5ZHVHBDmVK8W8axBLUoP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'H2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|202.6|0.55|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr07347b|KczMN8MHx9zuEElVQmANyzrjGBB9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|170.6|0.4|5.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanosphere', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.170942|Kd-ZqRZA76PYOa7b3SsPH9ZokQTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.05|203.6|0.64|13.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08504|Kd6EFJ4I8n1ubVhHJNoF57LUHCXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.5|0.74|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|KdAjPBpOSDabQeJ6cKGG7mt2yDDC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.7|0.71|14.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|KdCgu10aTArgo9W5WzQqcJ5gyz_z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.948|160.0|0.69|10.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am502131t|KdI7F9Cbf51WUoXtBYY4dk_X9ilT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|0.69|14.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']|['NiO-c']|['TPA-3CN', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b15130|KdQxwulm26Zvq2qzEO2CvaL8LnVA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58|||||17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|KdT2VC2Q5jB0kteT1LKTm3w5EZeO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|25.8|0.6|1.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|KdWgDLtG4QR_O7JQ3bxZJBKVxE67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H39I15N8Pb5|Pb5C19N8H39I15|(PEA)0.4FA0.6PbI3||1.04|220.8|0.77|17.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|2D|https://doi.org/10.1002/aenm.201601307|KdYCmWAuqCnMRSMLTYeBzerFguI1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is (PEA)0.4FA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|246.8|0.723|16.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTBDT', 'Ag']|['BTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0se00549e|KdbtzaQ5DBPXVCyOTXX0DMDyThDm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTBDT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|212.3|0.7|16.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700597|Kdj9dQfYBeUqJEvslFsjFAwIC5Iw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.6|0.25|5.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b06933|KeCUMbMmV72mI8U3QOKIE1UVRUGg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|49.0|0.35|1.5|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|KeFZc63mn7jdpBByKT48O-oySjn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C95Cs5H494I300N171Pb100|Cs5Pb100C95N171H494I300|Cs0.05FA0.76MA0.19PbI3||0.846|175.0|0.6|8.96|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|KeK4_U8A-X1DPYQTTBi_b-pymzqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|199.0|0.52|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|KeQz5eb9CY4rfaa0SZbwfJDXHJ2b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C83Cs17H415I300N166Pb80Sn20|Cs17Pb80Sn20C83N166H415I300|Cs0.17FA0.83Pb0.8Sn0.2I3|1.3400001428857296|0.71|111.0|0.5479999999999999|5.8|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|KeRiOW20c4j6nNMg4OvnPKcBxmNc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.8Sn0.2I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|201.3|0.79|16.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y4', 'Au']|['Y4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01223|KebGuIZ7rC-F5xdzLttYVKs2c6cQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y4', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|1.0|62.400000000000006|0.61|3.83|['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS', 'AuAg@SiO2-np']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|KebfIg5rf7H61zWsk3Pt0bhqhaMb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|156.0|0.72|10.2|['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'Graphene oxide; TiO2-c', 'Al']|['Graphene oxide']|['Graphene oxide; TiO2-c']|bulk|https://doi.org/10.1039/c6cc09876b|KedZ2UADl2yjYgwabaEL7bPwPwbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'Graphene oxide; TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|222.1|0.54|9.88|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201800669|KeojlLm6adWlEdiQtITGgzv3B9v5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C1000H6000I3000N1000Pb999Sb|Pb999C1000SbN1000H6000I3000|MAPb0.999Sb0.001I3||0.89|167.10000000000002|0.586|8.71|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|Kes7AM94BXgBS228rmgNIgkV8Nio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.999Sb0.001I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|196.8|0.76|14.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|KesDMXj6x_Y5gmHprbKjRTjahe1_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.89|140.0|0.75|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|KetDvCygotd-u9T6SnyDRO6fgCeA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|210.9|0.662|13.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']|['MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|KeuVnAxy-MYyMJMRE-OW8bu5EFYS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|128.0|0.63|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|Kewikrw-Se1TcUfdX_LbI6vLgLjB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|112.0|0.737|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|Kf0I_GhTnLGWMQlVf5cZDIpJn_LR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|154.0|0.56|7.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07307-2|Kf0s2CoW28tvCIU7Amak3t-ONd3D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.605|183.0|0.64|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC17|Kf4DUBZXFX_HlRG2E0DGm3D6sc9C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H27I9N8Pb5|Pb5C5N8H27I9Br6|FA0.6MA0.4PbBr1.2I1.8||0.9|176.29999999999998|0.529|9.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano6100183|KfC4a0ikuB4CkZxxLnXqqlRPqgRN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.97|183.4|0.73|12.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|KfIAC_r9oygUVzc50smAG4XPFjDv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|225.8|0.7390000000000001|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800276|KfQdkNX-3PEQzL7ncvWLvCM1Yp0V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|229.0|0.63|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|KfSBMGy2_YJvo5bMBBB8NYl-Z6SN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.698|221.0|0.33|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|KfUEZh9eKtTbuucOePPS025FqBQG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C20Cl7H100I29N40Pb20|Pb20C20N40H100I29Br25Cl7|FAPbBr1.25Cl0.35I1.45||0.797|69.4|0.516|2.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|KfXfJI41KOOma3BrT3Fy5ee2RT3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr1.25Cl0.35I1.45. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1||1.08|234.0|0.74|19.59|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta12561a|KfvnYnCDqWSxo4hOse9-GMEgaLfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|KfztegcFOCLugozrYaIJGiHPwr1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|121.0|0.72|9.75|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.6b00327|KgDpaPVyIHgghY-Poz1aWjjlXC3q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|231.0|0.753|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600957|KgHi2D_9SYKJlbJqHOIihuaXD_jS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|65.0|0.28|1.51|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuI']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|KgMA4ZuexahkE9pep1cd2OcfxijT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.2|0.66|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.024|KgNTH4Bk-Mc9Jm4QRN2R6jKpwSXL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|201.8|0.68|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'PN4N', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1016/j.orgel.2015.08.023|KgQxqCuKu08Moadu6i_HMH6QfShV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'PN4N', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.036|216.0|0.71|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|KgapNvjy6s5iRKZ3SjR5MYM6D8a9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|220.9|0.83|17.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr08344d|KgazDMXFVp29skDYbIVO3HZEltWe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|135.6|0.624|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18667|Kgb4yfWPXAynb55032OD_OM97cUk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.98|219.0|0.67|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.12.013|Kgd-hkIn-QfA8hdnlIDsrCAxJCGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.04|245.1|0.755|19.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|KgjGayNi-JDTe_QjeTiC5OKCJW-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|199.4|0.71|15.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01701|Kgk5Ax-INoYPV6UfNTbWYm8TpuMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N13Pb10|Pb10C10N13H60I30|GU0.15MA0.85PbI3||1.07|223.4|0.795|18.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|KgqYhNEyVtLzaVo_tM859zmJn9aw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.15MA0.85PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.27|129.0|0.631|10.34|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1002/adma.201705393|Kh3105i3f-LTQ0OJIqHR7sJw5qrQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|204.0|0.73|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|Kh41aUQ4085LHWDHEam_y6K3fJP3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.7490000000000001|16.5|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta08799j|Kh6cgaWXGQG0OtAB2Fow64AKfHzh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.085|196.09000000000003|0.757|16.11|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.204|KhJZHK8UMCQw2sNFzssOxjxuGpzU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|125.0|0.638|8.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|KhNDBBrDdhG2v5ELl1OU8EpUNHRA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.012|219.7|0.6679999999999999|14.86|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M113', 'Au']|['M113']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b09482|KhO7VFYKVSAhfHfOvp78t1Fmxoq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M113', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4||0.83|148.0|0.747|9.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|KhidCwi0CiuFmPpwetJijocJoM-t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|28.0|0.73|1.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3866/PKU.WHXB201412241|KhjEGVkWzaBaXdoq6Wmx0ILVVUqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI|1.690000180206629|1.107|180.9|0.741|14.6|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|KhoW3ke7oRC-4wGQgP9YDO4Q5nKk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrI. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|212.6|0.71|16.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.074|KhtPDrR9YLVzDC80zkdVQ9539oZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||0.97|224.0|0.601|13.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|KhxV88GItdYyoR2iid6C8F8vwlla|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.0|0.605|13.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b22206|Ki7NrpYbmF92Z4nizubbbBCj9MkL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|239.3|0.39|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|KiCGJTFEcziDlLKT_j8dY2Cm0wQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|KiCxYunzN2_MYLNitshAEC9_ihqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|207.0|0.66|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6nr03359h|KiE0UABAz3_enihN90L__kj9LYzX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|156.0|0.7|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'PEDOT:PSS']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|KiHRf-dhKJrHlyVs-9gj6J9GQCrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|132.0|0.45|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.1243982|KiLtPMmdpv57JlLjHhOWZskFRLTB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|131.0|0.63|7.09|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|KiNbqWl4i8Zzf0JNDFkbcapatQhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|160.0|0.66|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b17824|KiNe34--jgXE9TEIfq5nx95rQUe1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|216.0|0.78|16.9|['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|KiZACbTh1JFiv7zooQi5Rx0vZeTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -C24H126I61N20O2Pb20|Pb20C24N20H126O2I61|(AVA)0.05MA0.95PbI3||0.91|218.5|0.679|13.3|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00158|KifcUaUe_GHubSSCGqby25egN6Om|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']? The composition of the perovskite layer is (AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|198.4|0.67|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|KigBvSB3NvMNktH3883hM2GRW9oY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br57C20H120I3N20Pb20|Pb20C20N20H120I3Br57|MAPbBr2.85I0.15|2.2300002377874453|0.8320000000000001|23.8|0.498|1.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|KigmcbqkFX6neKqyxV9NzQ2mDeUM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2.85I0.15. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.8|0.754|17.32|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|KimUjw0t8wA3mhA-I0XbSAC4CDtp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.7|0.73|18.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|KjHXHCZ5_3h9Q3x_eChxI3y10oXM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.23|225.2|0.488|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00687|KjTR5v9t-dOKqORw0Cq1KDdPvY-l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.16|246.4|0.7959999999999999|22.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|KjVqwJLXCn3Rgv5o823q-oQfLX40|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|196.0|0.715|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|KjX4tWoWMFCLAQGRU5oFDxH7hqfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|0.95|199.2|0.36|6.15|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-SC6-TiOPc', 'Au']|['P-SC6-TiOPc']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b09490|KjolOXoyRyoDHpLQkhAynVuVHOJq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-SC6-TiOPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.4|0.49|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|Kjwap-86-huFdDkOAvQyRA772a7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|187.0|0.502|7.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']|['NiO-c']|['PbS', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800012|KkAvZM9oPlYUg3pF4CnHO2zenReU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|120.0|0.55|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.014|KkEck_8ZZM7CRWV37zBLON8-svNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.0|0.73|16.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|KkFLW2sZ6uGslmn06uQ7h30NVL17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|170.6|0.5670000000000001|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.chempr.2018.03.005|KkHu_fpqtes-RPmyCf95XZFUwDgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb3Sn2|Pb3Sn2C5N5H30I13Br2|MAPb0.6Sn0.4Br0.4I2.6|1.2600001343552385|0.8|233.8|0.716|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2018.05.047|KkMdwc6CKeoJFiygQctu7_bZBuvO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.6Sn0.4Br0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.897|192.5|0.7|12.13|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|KkNhh5BUQZFFVmKsjn-WESf82LgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|226.0|0.579|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-015-1020-2|KkRkVtpzW5uBC7XPDs6-Vd8G9fzi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.092|216.8|0.685|16.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|KkX8nVGEInoEHN7vSrk_I7Y0apTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.39|10.3|0.22|0.09|['SLG', 'FTO', 'Perovskite', 'BCP', 'Au']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|KkaoMNzuWPkvoyvauJgLjGbKSiPN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.036|192.34000000000003|0.721|14.36|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||Kkcms242ZMNu7aezinNS1J1pws4N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.0|186.0|0.626|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp412655p|Kkg5VrwRZ8JLhG4UN1NcXb-OwGHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|189.4|0.65|13.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b09572|Kkn_zAek4fGxBYTU0NzQ37rpr-4r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|229.6|0.745|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.085|KkoKJhx51cZc2KD49u8nXqPSeyZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.082|213.6|0.7170000000000001|16.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|KkuByTrNM-Xl8p7GeMBoPJa17_du|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|209.7|0.794|14.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|KlB5fjTPY0x5kx47i9deBXUHtzJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|259.8|0.46|8.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|KlSCyLc7cZViH9svejQZ7hJmrbc-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.975|214.9|0.621|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.04.099|KlUdN7_cyH0Qzl-tuRvX8phhEp2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.938|110.0|0.488|5.01|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF11|Kle5eP8Qq5QzZFx_H_3l9jW_TSAs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.06.013|Kljgo1nb6bz42H2rUdK49Q9iNQ-1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.0|0.7040000000000001|13.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|KlozbHfwGKUgM2dSkub3dT2XUThf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|81.41|0.282|2.33|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|KltiJ2h9hqtkbhGj3DPZJkZRdrW7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|190.0|0.62|10.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b01160|KlvT-TpBLhoNBpw1w-hVfgXo7xht|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|209.4|0.78|17.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-OBu', 'Au']|['ATT-OBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601674|KmDOTUDvT3drtNmPzhwHNTgdtsbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-OBu', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5230001623992282|1.04|220.7|0.6829999999999999|15.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|KmMKSegvj8oY4kPFE9wgU0a7x0TS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.9|0.564|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|KmP6Lk7f_foRViXK0EyRdTscQJ2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|187.1|0.4|4.43|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Graphene']|['none']|['ZnO-c', 'ZnO-nw', 'Au-np']|bulk|https://doi.org/10.1021/acsaem.9b01675|KmQ0sjPxyVh4A_UmRM1xntdZGBAM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|32.0|0.3829999999999999|0.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']|['4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|Kml9sB7KH7hR1VWOlt5rbZsWwU8a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.53|223.1|0.7909999999999999|20.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|KmlqeJ9uc9ub1IkwI2LY4c6jnt7H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.7759999999999999|46.4|0.7609999999999999|2.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2019.04.113|KmmggCkjNxb0kTZI_q4QVnlg2SaK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|125.8|0.728|8.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra08584a|KmzEclJckoCqh4r4bFhluomPEApo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I30MnNPb9|MnPb9CNH6I30|MA0.1Mn0.1Pb0.9I3||1.3|8.8|0.3|0.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc00650g|KnYpQwnAb8-F36_kazeadiQ3r0z3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MA0.1Mn0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|26.7|0.25|0.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'Ag']|['Unknown']|['BCP']|bulk|https://doi.org/10.1021/acsnano.7b08561|KnmJgthuPdcpiNmVwY2lckKD6aon|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|211.0|0.555|11.85|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|KnpnQyuAboJ9KepJpE6yZ_seNURJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.137|223.0|0.8220000000000001|20.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201908298|Knu1WQc40RfSvyPNjBNeI0K1ucO3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||4.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|KnuC5yJwSvlJ4HWqIDHlst8ZZtyI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|167.39999999999998|0.371|5.63|['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70']|bulk|https://doi.org/10.1039/c7ta10366b|Ko4aAgDfVPR2IBKdDBnKX8Jej0xX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|13.0|0.49|0.52|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|Ko4e0quFzGADlAvEaBXYAmOfykky|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|184.1|0.672|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201503099|Ko5WnbnC8vysuJwSkPGHRoos-HM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|221.0|0.585|12.9|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.11.025|Ko7Q-e9jMSdoF-7IAlstRejYMICJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|180.0|0.69|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8081|KoFdKO0Juky24ul0FwOlEKNZ_mpl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.0|0.59|13.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra07176c|KoNXieZwCiKtP4DfSu-vOFmxw0ar|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|175.3|0.736|11.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.05.012|KoVgnCkZLnkdKmEQh65tOzuMz4nt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|121.0|0.39|0.4|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|KoaG7PNjfony78GNvkYW0k6AuJW6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.9|0.7440000000000001|14.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|KofHnNCQC30Tm2CekAkElA9LHuc2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H515I249N185Pb100|Pb100C100N185H515I249Br51|FA0.85MA0.15PbBr0.51I2.49||1.1|234.0|0.8270000000000001|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801668|Kp9SVAqF4vXPafnh8JAupbd3Spcr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.51I2.49. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.13|235.1|0.737|18.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s40820-020-00517-y|KpPYl894DNlsv4H8Au9JI0h_LtzI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.07|176.0|0.7190000000000001|13.54|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|KpQYroQOh-kq-9cBoKpziu1DfzgA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|177.89999999999998|0.73|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|KpWpPdUc2Bp_S1pbZWQecS6JUAji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.6|0.72|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01136|KplcIcyvR98JA91KcD4HemLf_tJF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5850001690103592|1.11|220.0|0.71|17.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'OMe-TATPyr', 'Au']|['OMe-TATPyr']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201806392|Kplg1T8IygjrNXJHEBXW-1MGOZ8m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'OMe-TATPyr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|101.0|0.68|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|Kpz3XTDyJo9Ixk1sQJWFkK6rmWmA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.0|0.7909999999999999|18.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PM', 'Al']|['PEDOT:PSS']|['NDI-PM']|bulk|https://doi.org/10.1039/c7ta06900f|Kpzz1FtISgrmYKaOtyimrA6FNMDx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PM', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.73|11.0|0.4|0.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|Kq6XYXKCGHi1aL0mqS9dZBfX0hQ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.2|0.662|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.6b03089|KqPKqYpDKO7LT4YFqjZrYL7XPgG0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|126.9|0.47|5.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.01.006|KqSfEQRSVvY02WoaCMPBaK9hPsjH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.0|0.75|16.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|KqV_6NfmTSdSIK7gEg7zvwf-P3lq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.015|213.8|0.723|14.74|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|KqWJKA8HHOne9bRXBr6mQ6Net-n0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.69|14.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112141|Kqn05Su0LE2aN6tbIOW6AIfeRWbD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201702934|Kqu1SFtV4hM1WRuHsqZTRfPmhI6p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.999|156.8|0.42|6.56|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.3390/polym10111227|KqvGsbFBkuJxeYBj8WwAzSp-1Sjs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|55.2|0.336|1.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|Kr4cmH5XsPXZ4S0Ujb6y-eRV5Gg0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.95|210.1|0.66|14.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|KrCO-hwPsX2jrtiAhN8AfhKKDxQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|140.0|0.65|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature12340|KrD_awNXZ-cjLhc71k6r_HBAjvD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.15|138.7|0.64|10.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.075|KrEUFIiniGwVfRW2CCWfFE1kHyBp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4.0I13|1.6300001738087604|1.0|149.2|0.741|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-018-04430-2|KrPGLTIdtFLR3p87JyHA8vcsLw1E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is BA2MA3Pb4.0I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|226.8|0.76|19.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.074|Kr_eMyVmE-p97S1JaB6KbSYhReyX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br6C19CsH102I54N31Pb20|CsPb20C19N31H102I54Br6|Cs0.05FA0.6MA0.35PbBr0.3I2.7||1.15|240.5|0.76|21.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-09093-1|KraoBLh905BzS6Zx1bvyV0RmVllY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.6MA0.35PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|255.0|0.679|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.3390/nano9030326|KrcBmE03PkEmvmADLeZCmnLAZMCt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.09|85.0|0.79|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201403140|Ks2WLZ0fkkO9LIo7ujbzLPqWVhQj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7|1.5800001684772036|1.129|225.4|0.801|20.39||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|Ks9xYZ-rkRPJLjfKxtUSq05J1-B8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|KsCHG3muAh68yIvcM5JXxwrFCxfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C1679Cs5H9995I250N1758Pb100|Cs5Pb100C1679N1758H9995I250Br50|Cs0.05FA0.79MA016PbBr0.5I2.5||1.08|227.0|0.779|19.1|['SLG', 'FTO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110289|KsKwa4xCZmKRM8FMgdMmlkAwrtxm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA016PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.2|0.64|13.22|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)"", 'Au']"|"[""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|Ks_aJWJjG-6tf_GSYs2CSM_nBPsa|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|202.5|0.61|12.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|KsbskWfIQjPHKN7fK-i02-_ScE6K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.019|186.1|0.604|11.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|Ksk09uxxUYjoCdxAKSACchlpdSyJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|130.0|0.524|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']|['TPD', 'HAT-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|KslMq-nWRmE84oXf2TqCxBweA1gP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.9|0.716|16.79|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.06.168|Ksy_z_S2-HzP8_nD10HHcxazaWzE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.9|0.62|12.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|Kt1PKul1RI1W-_7vXobk_cknssjw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.0|0.746|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.09.031|Kt7fBP-WNhDrPFeppoWhahHUaSBL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.6|0.8|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|KtLtBaIxPKR3MSC1idryypvYsCun|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.7|10.0|['SLG', 'FTO', 'TiO2-c', 'ZrO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZrO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.6b12509|KtQYNWlfGkbCkP0akbZRbltrHqGw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|191.0|0.66|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|KtU1ND9RHn2PwrTHXoE3ZBvKHh0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.34|3.9|0.43|0.06|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.ijleo.2017.02.101|Kt_6_BrMF_xMUbg_r0Hu-2E6V10a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.971|130.2|0.55|7.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|KtbSpDbIBXP6ZmrozEECqI0ekRvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|196.0|0.7|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|KtsDC0uXOsrfQhVyRk7MDaCFtzsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.1|0.75|14.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|KtsFTnXqr3okJbVJn23JN44FjtTF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.042|192.3|0.679|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DBT(QT-TPA)2', 'Au', 'Ag']|['DBT(QT-TPA)2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.06.016|Ku4YDVtsUbs4EaQEAc7wwltl5me_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DBT(QT-TPA)2', 'Au', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2800002431190025|1.23|55.8|0.615|4.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.6b00517|Ku7qRRe4MvSLrIQttTf8wSh_nSbp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H490I249N175Pb100|Cs5Pb100C95N175H490I249Br51|Cs0.05FA0.80MA0.15PbBr0.51I2.49||0.8|13.0|0.4|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scriptamat.2018.04.049|Ku7z4HJlwl55hEV8uYsSDhDy4SkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.68|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00080d|KuGKHiPlrHCTVrAIFiyXkXNc8GYq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|204.7|0.56|11.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|KuIo1UgpCcMKD7Hm_1X9YW4by-1E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||198.4||12.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|KuK_LRnPJtHM3auawu2kDBg-9iJK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|183.9|0.63|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|KuPhlQ8-Thv8tbYMyprI74ve3JLx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|201.9|0.733|15.3|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['F6-TCNNQ; TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/C6EE02100J|Kua13RHGQT88ZUQnNfqFj5DDYqvE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||0.99|88.0|0.7|6.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201601143|KuiHDHwUYLdywTEdy6U3IWXb4Ugr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|89.39999999999999|0.437|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|KuqndvIPeA-wmVxU7rhblOLZI-gV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.04|197.7|0.754|15.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|Kut1n0OUqkFWh9eOzr7fEKtNOpWH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|208.0|0.772|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|KuupOJizicQpc8Mcru9NQ32C1OYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.79|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|Kv4VVuhIwGSdDV5KzwoPg9negIDG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.125|233.3|0.742|19.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|KvCOCpU0_Nh7YvscBj3_zhPPpPWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|148.9|0.65|10.77|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|KvEFLeeUu2zDLBNljGkmTsdmJZVu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|67.1|0.563|3.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|KvG9F1QFx2LLm9KeFX9zSVHj5843|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|KvS6Llmh-CkKjwrfGfBqSB8cPDXN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.917|202.7|0.584|10.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6tc01781a|Kv_8YKVx6MtdA5Lmqpu8Y5ZiH27b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|Kva_Ezyf0pf6BgP-9jVtS5-W6JA1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.117|205.6|0.67|15.41|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|Kvu6IiyFmGKuiljbvalJswumwXRs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.82|['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS; PEI', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|Kvv-v00Noma9-eqozqmeQtOCvzKO|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.236|65.9|0.75|6.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Perovskite', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc04271c|Kvw2Q-FcnNpRa3mYoGEz2LNTh_vo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Perovskite', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4||0.5|77.0|0.276|1.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|Kw4Fh6P6SxQalsKwWemK6KGUlA9x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|124.0|0.52|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|KwA9x0I8vxgdPqto0opa4-6XIaGk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|KwE-9oZwh5tUX1SaydMWlbbx80fe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.702|206.59|0.516|7.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||KwHHitiVq-p--LhLgIAOqJr4Fuiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.639|117.0|0.6|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|KwJAh9AkFlv4WsYFSByDVXMZEoq9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.7|0.561|11.01|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Py-C', 'Au']|['Py-C']|['SnO2-c']|bulk|https://doi.org/10.1039/c9cc06155j|KwLptPR-LHpSnNVv8aBU8nCmF98w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Py-C', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|135.8|0.64|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']|['MEH-PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|KwPpUphxNI06JTnbH4tCo7pk_qjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']? The composition of the perovskite layer is MAPbI3. -C6H15I4NPb|PbC6NH15I4|HAPbI4|2.05000021859384|0.64|11.0|0.39|0.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acs.chemmater.6b03054|KwSqPRD6yIBZkS-U62oMbaywOQOG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is HAPbI4. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.1700002313895768|0.69|50.4|0.63|2.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10739|KwTTAM_kVAK4qNhBnsz3wy1SCRAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|211.5|0.755|17.42|['SLG', 'ITO', 'NiO-c', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY4']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|KwUb4pHfRMJGlazeRAaO2CuOMMsY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|198.29|0.7759999999999999|16.23|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|KwdiJGjSUiE4d4j8WLuInLEV23ou|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.888|184.7|0.63|10.4|['SLG', 'FTO', 'TiO2-nanobundles', 'Perovskite', 'CF-BTz-ThR', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c7nr06424a|Kwjfgxr7tqK5Jq7zNbH3v0wILYEN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanobundles', 'Perovskite', 'CF-BTz-ThR', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.141|230.5|0.77|20.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']|['NiO-c']|['ADAHCl', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03131f|KwkfBR6KZHBSPp22r4M1MHEX1Hlz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C2H12I4N2Pb|PbC2N2H12I4|MA2PbI4|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|KxCYGYKuG0eiAG-vb8rV72GEsnjA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PbI4. -CsI3Pb|CsPbI3|CsPbI3||0.81|69.4|0.62|3.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|KxCoaMWL0dEGPU5HaUGDixtJWJic|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|0.92|215.3|0.67|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS03', 'Au']|['CS03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|KxK2CqZu3bV0ExCJUlTZd3ypaqOi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS03', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -Br19C180Cs20H960I181N300Pb200|Cs20Pb200C180N300H960I181Br19|Cs0.1FA0.6MA0.3PbBr0.095I0.905|1.640000174875072|1.094|212.2|0.812|18.83|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|KxQiCbdftMWNLO1XZ4kJd4nybjjA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.6MA0.3PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.925|209.2|0.609|11.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/am5077588|KxRlxvmy8K-7CSakFmQdtSXLvSb-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.94|154.4|0.66|9.56|['PEN', 'ITO', 'CdSe', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|KxT2xF5FOfuK6ftXaF76VKmqIkAB|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'CdSe', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|210.3|0.753|17.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701117|KxXVLQrjSHDV1g9iSA_Oo26Zon5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.12|231.0|0.833|21.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|Kx_S8fnBdmp9vOyDdr-Z97sxnL_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.04|232.0|0.67|16.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|Kxbg8RlM5Ikw6wPybM3ekxt7M3yX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.069|224.7|0.809|19.43|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c8ta05282d|Kxo8r3CEBK6Bmn9xbftiwcZe9wKb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.5|0.7509999999999999|17.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|KyBou8Cm7KH2-TkGMa_6lDbyO2e_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C96Cs4H496I85N176Pb100|Cs4Pb100C96N176H496I85Br15|Cs0.04FA0.8MA0.16PbBr0.15I0.85||1.01|210.0|0.7|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO', 'C60']|bulk|https://doi.org/10.1021/jacs.7b13229|KyCCSpOmSGoa-mT1_KKvwlrKFsHu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.15I0.85. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|0.96|215.0|0.63|12.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|KyGFkUilcn32DGywUpTIv2qbafBt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|238.0|0.532|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2019.07.010|KyvDrudmMTnvkacX3kNMs0NKd7gX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|210.0|0.67|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41565-018-0304-y|Kz4RzTfSeFl-1HD3zzmPPAfzK13m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.118|224.99|0.7829999999999999|19.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|Kz6r2n_T3-N5fjcdY1RcWATgp2uH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|Kz989UxLBVKWTBmHtHy_wYLqoxpo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|224.0|0.7|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|KzC2NQfHXUJvj-mWTFceLIqJiwFG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||17.86|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ta01617h|KzCJqIclzyZgXfSkVT57aYpS7lMm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|185.7|0.526|7.93|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2600341|KzM5OgXQIviDvcu1D4-bCVZvufjh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|213.9|0.7|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|KzOU7Wa1bd3bqqpM8AxAoGeqzanj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|154.5|0.629|9.92|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|KzUmoILJDkehuWxyxdgYG9dVYC69|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|187.0|0.64|10.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Carbon-nt; PEI', 'Ag']|['NiO-c']|['PCBM-60', 'Carbon-nt; PEI']|bulk|https://doi.org/10.1021/acsami.8b10253|Kzv7SaM3lp-V815n2MQ_Rf63fYIi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Carbon-nt; PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||0.78|90.0|0.62|4.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|L-1MCqFBL1gqEOa_tbBVMe2FZJMX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -C211Cs9H735I280N142Pb48Sn36|Cs9Pb48Sn36C211N142H735I280|BA2Cs0.45FA2.55Pb2.4Sn1.8I14|1.2400001322226155|0.7|242.0|0.61|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|L-21UbkAyanWx38KBpl7acNBmHd1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.45FA2.55Pb2.4Sn1.8I14. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.205|94.7|0.36|0.71|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['NiO-c', 'NiO-mp']|['Ethyl acetate; I2; LiI; TBP; Urea']|bulk|https://doi.org/10.1021/am5025963|L-H24o0APKF2auznU6vnHQUkLW6r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b11465|L-HmCIPXrtAHYiJy1XsUs5WwBL5s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|221.2|0.79|20.01|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-mp', 'ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|L-I7hbXbpR_iyxK22UE-u1FzE80J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-mp', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.58|263.29999999999995|0.45|6.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|L-Ibv20fxYKUbwenHhfYs5pY-t9n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|223.0|0.795|18.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|L-LTiGGfP0_XfACkjM2weFdex4oT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|156.5|0.35|11.0|['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PVP']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|L-RCojLhOUgQEOZM5O7q0AJ-tUgn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.1|0.7859999999999999|16.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jcis.2019.09.087|L-TIIlwPf91huzT2aSBmetpIPE5f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C100H543I296N157Pb100|Pb100C100N157H543I296Br4|FA0.57MA0.43PbBr0.04I2.96||1.105|234.6|0.794|20.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.09.024|L-YTNxeua4O_v2HXQcSHPAkNKF8m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|35.0|0.489|1.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.04.015|L-bHrBClsq1IfmRqq0P2jKdXnD9c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|179.60000000000002|0.606|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|L-dUejrjinnBNoikbswBl3yVG5Ed|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|230.0|0.71|17.2|['SLG', 'ITO', 'SnO2-c', 'C60-5g', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-5g']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|L-o3wPmd91iY54D0c70NG0FlmGbC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-5g', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|194.0|0.57|9.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/C7TA09193A|L-uWTdPwltYpFviB6i7jHLW5dVyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.028|L06tnT9FyKwFZ0zytkzVGtTDTCEW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.432|67.8|0.81|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1002/cssc.201800060|L09Gg4jps2Y5OBZtmPxFBhHkGJjc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.0|0.7509999999999999|13.1|['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra02556h|L0DO6jioJPEc7zwx2rSGxH9CEJa4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.2|0.8|14.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|L0hQZv9lRkZkXZ_rWv5Oqd7x6fB_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.0|0.61|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-OMeTPA', 'Au']|['EDOT-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03046c|L1EQwmSOgBdwxNhL8N3SjmcljuoD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C100H519I246N181Pb100|Pb100C100N181H519I246Br54|FA0.81MA0.19PbBr0.54I2.46|1.6200001727424491|1.2|176.0|0.66|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|L1EUZ5xCJE__mzOwySeGJE45vGqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3||0.915|151.2|0.78|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA2', 'Ag']|['HA2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5sc03569d|L1RbuyvFFmXG8xix30DvtUhKo--V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25C40Cs10H207I125N73Pb25Sn25|Cs10Pb25Sn25C40N73H207I125Br25|Cs0.2FA0.66MA0.14Pb0.5Sn0.5Br0.5I2.5|1.3100001396867953|0.75|220.7|0.61|9.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|L1SaeNisIVwYGX2FiCWmdkfAbkiM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14Pb0.5Sn0.5Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.4|0.755|15.99|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'LiF', 'AgAl']|['NiO-c']|['PCBM-60', 'AgAl-np', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|L1X2JsMClEylwoAcARog9sAR6KP5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'LiF', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.1|0.7829999999999999|19.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|L1Yb31mqX2-MXa87ZxnrnGDHVCLJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.0|0.8190000000000001|12.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702369|L1bDSWaDEhpmB0LXAJOcWYZqkEme|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|112.0|0.66|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.043|L1gZxSpx8dWhm-OjNF6J76V3YiH6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|197.6|0.66|11.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|L1hqqoRtohSyx96CW8uYYxxU44YL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|199.7|0.53|9.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/ma12081237|L1iPdEquCzL4aj8Y24oJc7kpVuVq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|221.2|0.6890000000000001|15.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|L1kx2PgoGY75AAWFWD7UMlLSGDEX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|222.4|0.614|14.05|['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|L1m88-0RRBmBv3LPH0A_HnT0YfcC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.8240000000000001|298.8|0.718|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00880|L2AZydV5TRRn9dBl0iYjowg2KY02|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|153.5|0.39|3.83|['SLG', 'ITO', 'SFX-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']|['SFX-TPA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8nj01082j|L2JJGke6CogNNRvEGPE3hmE6iOv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SFX-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|196.6|0.735|14.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|L2K_MEjJPSZLPDpZIC-vsZ_WOHvz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.411|85.19999999999999|0.499|1.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ni']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|L2LtogTeI_JSCDFGbuLvOHFKgEM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||14.43|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|L2O-Uynx6IYZc64a0A6hRcVQPEeU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.4|0.72|14.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pm-TPE-4DPA', 'Ag']|['pm-TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|L2cTfKJU_XnVcBr34EWAfZHEWIJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pm-TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.61|78.0|0.84|10.6|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']|['CsSnBr3-QDs']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|L2mnvpV9my0Z9WzX0mtYp--ioO26|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|135.0|0.36|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']|['DR3TBDTT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|L2p42JEbXbe6oQcGtrFkEyeDnaRh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||2.15|10.2|0.57|1.26|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ra08022d|L2tA1clMKZ9gBH03thdeZcPWvloN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|98.0|0.51|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.03.045|L2uoBD1ZQyhS7QN6ScQce5v7GALo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|160.10000000000002|0.6|9.91|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']|['PCDTBT']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|L39h5_BSQycwB3wNL0Il2VpGA9jU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.3|0.6|12.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|L3CM3EkLWF_J30TZaK2u1mw5e5Mv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|200.9|0.335|4.8|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|L3NYtNbW0lnD5XaRz-GP9KJW6HrS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.25|2.9|0.31|0.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Al']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|L3Rd8YPDDCmuds-S9JwCeW19E1pK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|193.4|0.735|15.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|L3VSCG50CoIAcUhFqIhLsoeCA7f5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.9|0.737|14.48|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|L3X8TGEAvwE-lSQAw-ynCYKdvCIz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||1.0|194.2|0.669|12.99|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|L3cHHjHkeF7wtqPX5GhbHnvuaxlX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.9|0.75|14.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|L3wvHW3jXnxJTC0ny0tZBn9sh4RT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.6|0.604|11.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|L3yu1vifC5EcoLxaSL_H7H3TYk0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.7759999999999999|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900877|L4Bxw59w0lnK1sRjIBG_ixBpon8M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|190.2|0.53|9.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ce00724e|L4CnkOGqIUexf1iepDegL9ApeOK4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.0|0.341|4.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00614k|L4DjtaAVEQd-u3YQkj3Gel-jRgAI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.05|35.0|0.05|0.00875|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|L4SEJecXLoSSBjUZF4NqMWKCjK42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|179.8|0.65|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.03.017|L4SNP7SQQxNUX8R5W-jDOnkulFjt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.7|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|L4UXxIHcxW9xaHrIpy8Avt7ZyTyG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.041|232.7|0.706|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801717|L4XeQU9Dl1MAVtmnnzYgfk1tuPtp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|205.0|0.6779999999999999|14.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|L4ZMuOCqzIpFZkKNW6uQDAgWynxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|84.0|0.63|4.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b16394|L4hj4M-ZHy1yXYjO4vGQx5ns7iD6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.15|151.2|0.6990000000000001|12.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01859|L4xe9cqPFL8sMJQCblu02BRB5hws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|120.0|0.73|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.7b01067|L4y74FBbfcihBleDSJ1grhpP6LAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|203.9|0.72|13.86|['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|L560AMTzWi2w3c3xGQW16gtVkZvm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|222.1|0.75|17.32|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|L59BIKyrUs1S7GSBYOHcdIPLh6Aw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7000001812729404|0.964|187.3|0.728|13.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02248|L5EDZWf4KBShLBuikYUEA1CauKJF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056||||7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800060|L5JSjOdS3W4-kDc7FGq0RBYcsFCd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|85.0|0.79|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|L5KKmjpQehcge-_db2RlYqgfmxQV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.0|0.62|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1882-0786/ab4aa2|L5MHWIDo6w1zgiY6sk80RMURfDcg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|142.20000000000002|0.58|7.21|['SLG', 'ITO', 'TiO2-c', 'PNP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PNP']|bulk|https://doi.org/10.1016/j.solmat.2018.01.006|L5RnlNArzjGc0IcJfIoSIpuH8BGG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PNP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||10.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|L5ZNws9yiXkGk5EI3zwCuRvdxAGF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.21|61.1|0.74|5.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00968|L5azyzqTIx2OR0srWNqcmxdCBO-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.14|235.0|0.8|21.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|L5pq4AlBk-I6dKH8sDWHQpKonEF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.0|0.644|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3866/PKU.WHXB201607272|L5rNRzwJ9wY458VTxFWcFgIIhIXF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs4H489I257N176Pb100|Cs4Pb100C95N176H489I257Br43|Cs0.04FA0.81MA0.14PbBr0.43I2.57||1.12|216.8|0.75|18.42|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b04281|L5yUGH2FyLhxQ-u5ZMhML4bz8DsT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|175.10000000000002|0.664|11.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aad311|L61YeCH4wcAUutaXZ3o2ARfre6JN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H600I297N100Pb100|Pb100C100N100H600I297Br3|MAPbBr0.03I2.97||0.96|218.2|0.77|16.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601175|L643uz6vNOBFboGhXpESZ0amN4vT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.03I2.97. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.07|232.0|0.78|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00293|L64jnuZXUief9xzj_0OknMJ2gApR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|127.2|0.43|1.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.031|L67PMCz55d6wlbAsZiswHuVopUs-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.670000178074006|1.05|207.0|0.73|15.9|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|L6JTjJAG3WI_TnMGd5zw8BZvJoG5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.4I2.6. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|0.97|187.0|0.52|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|L6NJDx2QOMB-IZV01wyLGAu7M-5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.007|205.0|0.72|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|L6OeehERmbfhX97NW6g8qVfFxaHP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|229.0|0.7490000000000001|16.0|['SLG', 'ITO', 'PVBT-TMA', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-TMA']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|L6_J_PoZ3MdOd1EdWlRKuEdgUniu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-TMA', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.0|0.625|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta90054f|L6hCIsL0ykWC19uSzbjH-rvNe-4P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|82.5|0.43|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.09.112|L6iLqIQW1xY7jIuABifqc7pKhfW2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb3|Pb3CNH6I3|MAPb3I3||0.93|205.4|0.68|12.99|['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'Fullerenol']|bulk|https://doi.org/10.1021/acsami.6b04895|L6vxXrkPhbERTv4VEZlrxMRcbRql|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb3I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.1|230.9|0.665|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(CH3)3SPbI3', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b02117|L7E81eCM4fGB8akXgSx16XBgCls4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(CH3)3SPbI3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|218.7|0.68|12.47|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|L7GSefqbSoHeVyMvtxlUeSeBcd02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.34|196.5|0.28|1.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiS', 'Cr', 'Pt', 'FTO', 'SLG']|['NiS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.03.161|L7aEkHYv98Fq4PnCFwBZWjfI-Bh9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiS', 'Cr', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|216.8|0.7090000000000001|16.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|L7d8KdLZPtIcZTZSXIakKMurSD5y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.0|0.79|18.95|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8nr10125f|L8-ojgnvJlFA_tnYqvqDeeR_K6vj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|212.4|0.6609999999999999|14.41|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|L84T1i7vW0B7SR1_YejIVkTE-Uly|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.081|218.2|0.74|17.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.07.106|L8EbbpyxAjkRQg4NAtS8lPlaUSkf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|185.0|0.63|12.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.011|L8ICzOf9mpBaVBa4829JFZpH4nJJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.01|211.9|0.67|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1361-6528/aa75ab|L8OElgrOUGjRQibsCTTMoNmAh07H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.13|247.2|0.768|21.45|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|L8PPsPrmoFJNUNbYhvPAEUmHa9Ia|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|111.0|0.28|2.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/jccs.201800173|L8Y9rrr5GVojLzBBEU2QnvGD13VE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|4.0|0.11|0.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.055|L8aYswChcAZnRrqTorOM8Q90utjC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|183.2|0.632|10.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|L8si3zj09HwP4SDMrtx1l1fuoPMI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -C9H30I6N3Pb2|Pb2C9N3H30I6|BA2MAPb2I6||0.81|8.6|0.46|0.320436|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|L95cc0-5nAa3DQ3OsLYG-GP_aH2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MAPb2I6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.7|0.754|17.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227420|L9PBdTB4dGMGJbMTGaN6miLCvgan|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7709999999999999|86.4|0.188|1.25|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'ITO', 'Ni', 'Al']|['NiO-np']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201801254|L9QMowkljLze2CXVtX6gMhTXy-rs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'ITO', 'Ni', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|230.5|0.475|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|L9fyTj_SFnqkWpEEatUS1CfPR5Re|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|168.29999999999998|0.6990000000000001|12.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|L9twVM2CJ-NApt2u3kJHBuUg61wO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|211.5|0.573|10.23|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.046|LA0GgYVzQZ62c-gurK3kNUjiR5Tq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.0|0.61|14.0|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|LA6rP7oYqRKVjlMLJzPbpUqAIZNM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|223.0|0.679|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1742-6596/864/1/012008|LABcpUmFVit3Zgj5Qfg0SZfZCP8h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|200.0|0.72|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C4EE03907F|LAFOUsjZ8y65EjvKjoIhQTMCKxSG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.115|251.0|0.745|20.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z3', 'Au']|['Z3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b13189|LAH7WntkxSiujget5jOKO_EzBAyM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|190.0|0.65|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bis-amide-TTF', 'Au']|['Bis-amide-TTF']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.078|LASpVRMiRU8X9fEw3rtxtesJXIZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bis-amide-TTF', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|194.0|0.735|14.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|LAW-Pfaah8ecBsgCQuirq9sAIf8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.0|142.0|0.73|10.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2017.07.017|LAgcBdnm3cN69ylXnGNR7131BH2i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.8|0.69|14.64|['SLG', 'FTO', 'Cu0.5Cr0.5O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.5Cr0.5O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|LApMDLYN-PYMt9l8eN4qZPumhK5p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu0.5Cr0.5O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|185.6|0.828|15.46|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.matlet.2018.04.040|LAqafNrV4XkWcqpz207eTYvmLKqe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|207.0|0.731|15.73|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201601165|LB3B1RP58WWSO6F-IAQyO7J2I5Or|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.9|165.0|0.727|10.51|['SLG', 'ITO', 'BTF2', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF2']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|LB3iFgY2U_t2ouvsk_rFmNdNBWgm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF2', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|65.0|0.406|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|LB5wmWy9vHsvEMvY_8j2WhSLkfz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.04|200.1|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|LBQ7WRH_HDEjbcC5cyOVHSZTd9mB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|83.0|0.23|1.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3OFHT', 'MoO3', 'Ag']|['P3OFHT']|['ZnO-np']|bulk|https://doi.org/10.1139/cjc-2018-0414|LBl7dy5Dj8V0UxedajKy7SL-tgfm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3OFHT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.2|0.76|17.43|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuO']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|LBpklFctzRsahG1kFaXkA6a7fLVU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br366C901Cs19F240H4139I2074N1448Pb800|Cs19Pb800C901N1448H4139I2074Br366F240|(TFEA)2Cs0.475FA15.675MA2.85Pb20Br9.15I51.85|1.7010001813795717|1.086|201.6|0.748|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/solr.201700125|LBqekKkeCH9mzxuj-M8sF61O143I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TFEA)2Cs0.475FA15.675MA2.85Pb20Br9.15I51.85. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||10.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|LBy2xvLl9Bp89pIizSBJuHHJczDf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|199.0|0.76|16.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'CeOx', 'Ag']|['NiO-np']|['CeOx']|bulk|https://doi.org/10.1039/c7cc08657a|LC1WAfl7Kq3ywGLdFH0PXpWwJSYr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'CeOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6629999999999999|142.0|0.191|1.83|['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEBS']|bulk|https://doi.org/10.1021/acsami.7b00576|LC2gQ0d1cTVykDK1ybWC8_IgoFIE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||190.0||12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|LCBT8LVxHaiACHTlIKZiw3nCs5Af|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|LCRAwdHiZogdRfHgx9719tkkG9De|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.56|81.5|0.39|1.8|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']"|"[""(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201801824|LCRUQY0tATs9AMogausZePENa5h3|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.3|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|LC_d9EL8MebdHKx9DCQ91L-U51p7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.08|232.0|0.7709999999999999|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|LCaV-Gf2i10meZpaFGeJeDIESviM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.0|0.63|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504451|LCbUWcKJ_wqwCDZliVSjQLpK5XOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.6|0.67|16.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|LCcLQ3JcrOgQYnCS7gRpb7RRgCW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|201.0|0.7|13.4|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['none']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta05350e|LClfxccnUZuwxiADrsPMjmXdUQ0B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.459|73.5|0.745|7.99|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|LCqextmJfi_FMhBvk3Pr6TWFom2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7000001812729404|1.135|197.5|0.7659999999999999|16.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02248|LCto0eZVfPE_t5I8ZKzCo4mayZA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.4|0.74|15.86|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900207|LD203pcQ_iVdr0nD8E2Zr_3e2hdq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.3000001386204838|0.23|72.6|0.34|0.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|LD293HjGH4fLhf15-1eQXQahsrYV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|214.55|0.79|18.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Li-TFSI']|bulk|https://doi.org/10.1002/cssc.201601070|LD40XKBNYEluqWS83mMDCZwpnIyJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.8|0.7290000000000001|14.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|LD8uBbhzXwPHqX2tmrMmXN4KYn6r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.048|22.0|0.17|0.02|['PET', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|LDDM0gggFvYqD9HR_TFyGjSk7Qry|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.0|0.7|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600817|LDH6CdG4YXoqt9IET_9KnNlakogm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||1.16|232.8|0.78|19.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201900466|LDKE0o38WKGzs-tq7AHgEVtTiRnq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|199.8|0.69|13.13|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['IDTCN', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|LDMzTDa2r-pticgB6LPMSkHnToUE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|220.7|0.772|17.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|LDOJrIFotENjXl278HfO33DK_oEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10CoH60I30N10Pb9|CoPb9C10N10H60I30|MACo0.1Pb0.9I3||1.065|235.0|0.805|20.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|LDPPDlhbMx7me4H8uaW1j_jsIWWA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MACo0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PFN; PTPD']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1002/adma.201606363|LDZ27PUfy3YwbtC2NMLwRdCF2fub|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|91.0|0.39|3.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|LDZhH80cEV5u2Eah0Ou2lcaWWogH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.051|196.4|0.55|12.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.006|LDgD50yk5RYffPXJmdrxuRyLHWo6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|216.0|0.62|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/celc.201900532|LDkSyklTHH1jZmif2fvvJSfv4xUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|150.0|0.41|2.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|LDqda7sXn56hCe49v3dBiKazcvHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|221.5|0.52|10.93|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|LDqvlFfhSU1sLHyp1chC_rpq07Uq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.0|0.807|17.79|['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']|['NPB; PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03120k|LE2sXFaFygEfRAixIphUT6ImSVNb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.0|0.78|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|LE34y13RBfIZYBy-QL1G0ibJdUY4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.09|78.2|0.31|0.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|LE4uYtXwIoz-FA_CSp4Mm7Qy1i2N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.11|219.5|0.7759999999999999|18.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|LEKH4b42UIiZQSorPwspQC_0lRs-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|213.2|0.743|17.71|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|LESP3XG4iX9O7QCE2P0LDOolRh2P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|160.0|0.654|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|LEawxJSzLpt6uJycU8P4Nj85K4AC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/science.aag2700|LEbmSZcRRCUqIP1fHETIzd7xvWeO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|155.0|0.61|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|LEefaaWQXHz7EzREeKKw18dErIo9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.04|202.6|0.65|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|LEgKlVhaI4aTTWFlrEFnZFzKDZXE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||13.89|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|LFHKUqfRNy-Y5D3rCccWkqw0eJqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|225.0|0.7829999999999999|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ee03182j|LFbWP8Rl9JmPJrb_dw_P_xgH1mbF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.46|222.5|0.6970000000000001|6.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|LFn4tX6JmLg8_0QfpAjXXYwoIqUW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.89|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|LGD101qX-_TrFAwa9jv44ymbzVE4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.4|0.78|17.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|LGFi-W3vs9TatdJtoX7o8Zz4QWFy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br249C83Cs17H415I51N166Pb100|Cs17Pb100C83N166H415I51Br249|Cs0.17FA0.83PbBr2.49I0.51||0.97|203.0|0.79|15.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|LGKHXQitT3ZAaqbGMCEGNX30IqrZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr2.49I0.51. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.036|214.2|0.69|16.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|LGUrDJ6F9EKlV9Zgm1rbL5jm7h6q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|181.8|0.518|8.76|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c6ta00614k|LGmQCPMRMVT1gkPStr6neQlkZkAj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.3|0.385|8.25|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|LHG7T9olbn6fzvlXJ1kOeU0bv_Ag|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.6|222.2||7.41|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|LHI4EizAhoNcO1e-aUU9FoV6n-mi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C8H12I2NPb|PbC8NH12I2|(PEA)2Pb2I4|2.2800002431190025|0.376|19.3|0.287|0.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|2D|https://doi.org/10.1002/aenm.201902529|LHIEdoOL7Na4SM7Y93JbSvFibPn5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is (PEA)2Pb2I4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|226.0|0.74|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|LHIg0EQCnP7lZ7OTrX4VDDwMq9kJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|196.0|0.58|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1358045|LHNnjWYfyT03CxsBxCP2dgPoG9Pt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.119|51.0|0.56|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|LHZzUYVuquCM1rc6qc9QY8OKuaiE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|82.6|0.225|1.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16219|LHc4nlavZTdVy68g9QLgR0Fw6umf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.0|0.66|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800052|LHoMLJafAKJcivBOR5RaZ1pgqImB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb5Sn15|Cs2Pb5Sn15C18N33H93I50Br10|Cs0.1FA0.75MA0.15Pb0.25Sn0.75Br0.5I2.5|1.2900001375541723|0.68|201.9|0.66|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|LHrEweNEnPEBIMQU_j5qyfooQlPE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Pb0.25Sn0.75Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.2|0.7|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|LI3a0XdIxYvYwB5n8SXKTKzT7SLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.68|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b02145|LI44hu3txiU1j435g-7FC8_cMEr7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.0|0.5539999999999999|7.66|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-BiSe', 'Ag']|['NiO-np']|['NDI-BiSe']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|LIC5s9vz4lHexB5KQeOzr7f6V7v2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-BiSe', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|LICp0nqAdVSFs2W9BynjnAtXOa07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H30I13N5Pb4|Pb4C11N5H30I13|(BDA)MA3Pb4I13|1.6000001706098266|1.08|60.2|0.62|5.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta11744j|LIFzXLKB3nsegv7aFCwwL7IWcnVI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|215.0|0.63|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01864|LIGxBjKvHYdptXGJ-TDHs3GdjlLH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|146.5|0.636|8.94|['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoO3', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|LINY8fomeWo68_YHQNBl2wlFvuF1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|226.0|0.529|10.91|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|LIYwrxNm5G8NPlScnyzo9b38wdZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.151|128.6|0.71|10.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']|['Co3O4']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800315|LIceLKB8RCPbvPsfq368dCRGgPIS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|LIpovKIIri7u0OSvqbYsSjpesWBF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.7|98.6|0.57|3.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-6228-0|LJ0Guu8pFD3u69CVomJFW41JH8De|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CsI3Sn|CsSnI3|CsSnI3||0.31|98.4|0.46|1.37|['SLG', 'ITO', 'Perovskite', 'C60', 'Al']|['none']|['C60']|bulk|https://doi.org/10.1039/c8qm00159f|LJ3KX6Z8NJEHtYvymAKsSbwUvz9M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is CsSnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|229.9|0.76|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b11229|LJ4LfcE1M3gAQDrvyW9AQguF99By|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|231.8|0.68|12.77|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1364/OME.6.003651|LJ8B12BBegexn3YcE7zHCui0dNhg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.05|229.0|0.56|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']|['Al2O3', 'CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|LJE1QB5hfhpcmyMU9iEfs89Bs9fH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|130.0|0.34|0.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab334f|LJH1-FJQwuf4yZ-B1hZ7zUBrMi6h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|88.0|0.63|6.72|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|LJOqjREAb0YlfL77xQkm9hN8EBoV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|147.79999999999998|0.61|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|LJQYTwoWEVvWjzJve-m-NCzbqbwp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|199.0|0.62|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jacs.7b09526|LJYkY2lOK70HbGNcq9ZH-Ito_X3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|222.3|0.77|17.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|LJdu54CPrLDyzFE3SiKiNYwNajNZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|226.5|0.738|16.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s11426-018-9386-5|LJeWiaGgNuYsS92hzKyMuSaqNr8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br6C15Cs5H75I54N30Pb20|Cs5Pb20C15N30H75I54Br6|Cs0.25FA0.75PbBr0.3I2.7|1.570000167410892|1.081|221.7|0.725|16.72|['SLG', 'FTO', 'NiO-c', 'CuGaO2-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201805660|LJghWhlYc0pl4VUsUQ4FPTCENk2z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuGaO2-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.3|0.624|12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.03.028|LJkvx1ecrRGguzFZ9iI-CMY6CrVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||1.13|239.5|0.74|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|LJvvLjmbJmz7Nv6XXIt3-eXnOZpg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|155.39999999999998|0.636|11.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|LK2N-DDCDGayjQ-DjTnA2-wK4BUn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.26|207.0|0.8009999999999999|20.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01906|LKMZJbgcfYn9jVXMlpgq1jOxX-qd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.2100002356548227|0.86|30.2|0.55|1.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06816f|LKMl70uTu9_tI7VSNvz4mkCcoP92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CsI3Pb|CsPbI3|CsPbI3||1.0|145.2|0.54|7.98|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.201901787|LKRw0sLl9rBOFD34PHq2uuWnhZjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|125.0|0.57|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|LKaLtvtfRIQMKw1uegeopSJmauzL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|158.0|0.35|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|LKdGbDU52l6uhLGczuYXUOxAmUXA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.85|157.0|0.74|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|LKjWr7RFo5AwQdS5Aih94TdM0grL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.2|0.7979999999999999|15.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'TBAI']|bulk|https://doi.org/10.1039/c7tc03733c|LKk826GPMbiVNBy7ESIpwXnMJxD6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|223.0|0.76|18.2|['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10994|LKoJbxwH_zbPK4d29zJ4vnH6C9C2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|LKtD0_hmSH5QhLG3CutDEqTZXzXn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|206.0|0.81|17.7|['SLG', 'ITO', 'C60', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60', 'C60']|bulk|https://doi.org/10.1039/c9ta09838k|LL37-mCbDAZzQpcYGcLgdFnwI7w3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|40.0|0.28|0.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602600|LLGr7Vd1iNES4ApKnDuLCGFr3JuE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|LLOuYYi5gxEGn__bdZOVoZvn_UCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|164.4|0.701|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01714a|LLT2y2fGeC4PeK8UF9qZ0BcQAZAZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.713|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7qi00685c|LLaLZ2iai10KxIvo03jBUkCZP1Fa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.6509999999999999|13.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4998630|LLjBw45NzOxhy0Sqczh4lzlWelzu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|128.0|0.67|8.5|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|LLoqRvgS107tjlPp_Cj78eTRO6Rh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|196.5|0.5579999999999999|11.0|['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|LLxTwNmJAvD9H_HyDqPUWlWkayXs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|221.0|0.56|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|LM0sjotJS9q7Xdo8GB7yARng4wE0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.5|0.703|15.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|LM6FA5oW9emwcxMuqXo28EYCW8p0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|LMJArCDgjP_hlu0WMDKNlPbLpq85|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.025|207.1|0.792|16.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'AZO-c', 'Ag']|['NiO-c']|['PCBM-60', 'BCP', 'AZO-c']|bulk|https://doi.org/10.1002/adma.201801010|LMfUu79GdrV80p4JBFeSvQZp3E4w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'AZO-c', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|205.0|0.609|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']|['CuInS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|LMhCkWFzlYY1NlSGZhGrGAKBtnTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|237.0|0.7709999999999999|19.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']|['WO3', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201801386|LMkboobpDVgA1YBSPsDRBIK7NGQl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|155.0|0.55|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|LMxdGr4QyGRyQjTjLDlB_eCuqfh9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|219.4|0.72|16.4|['SLG', 'ITO', 'TP-FTzF-TP', 'Perovskite', 'PCBM-60', 'Au']|['TP-FTzF-TP']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.016|LNIryXETf02cJmMXchrtDKVi_w4a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TP-FTzF-TP', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||1.085|224.9|0.713|17.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag@SnO2-nw', 'Spiro-MeOTAD', 'Au']|['Au@SiO2-nw', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700151|LNOpgxadp4WY3lERyytOyDfn_7LA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag@SnO2-nw', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.0|0.7709999999999999|17.77|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/C6TA05095F|LNPGRExni6ZyhQteYY8g-9FJ7bja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.138|213.5|0.757|18.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|LNQbYT1XdClk-MHIcTxe2FJwSNmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|224.2|0.7070000000000001|16.87|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.190|LNkEYQ4FHzSeatLQz1P7TXjVSSND|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.6|0.6679999999999999|15.26|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|LNteJRBvcEQ1oEiFg5ZtG7O6r3l9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|164.1|0.65|9.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|LNvkoDQKm2V4GpxRWU2a8YaDC2Kh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.1|229.0|0.8029999999999999|20.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|LO2nJtoCIgw_n4GkmmYZKVxmn6nC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.0|0.6759999999999999|13.1|['SLG', 'ITO', 'PEDOT:MNSF', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:MNSF']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601499|LOEWch3y68HbA1E-CoDQwFJw3yWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:MNSF', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|184.4|0.508|8.81|['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Graphene; ZnO-np']|bulk|https://doi.org/10.1039/c7ra02036h|LOFEA1KxhqH9lmP6ZJ89zt1wIqBf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.105|179.20000000000002|0.54|10.72|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600762|LOMgaQ1LEQJEczpGVRJHuX4Ri7qH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|168.79999999999998|0.705|11.69|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.006|LOXD3Pcr1fCFmNoZv9oWEUP5V-b9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.03|237.4|0.78|19.22|['SLG', 'ITO', 'NiO-np', 'ME2', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'ME2']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|LOhM3LP5bYwwl-G8F0rqAnl8yK7H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'ME2', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|206.7|0.49|6.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01889d|LOjT5CsK5Zi9oTESH2HaL_6TjH9O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.11|210.9|0.7070000000000001|16.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|LOkfJxBFfLaB-zz7pbeOTMTRBjuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.02|174.1|0.64|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|LOy9T86g43q15b_qH_OvtYyDZqEx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|230.0|0.67|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|LOzNr65_JLkYSbhQLM1Yep51lWGG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7190000000000001|44.8|0.31|1.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/2953592|LOzYd-CJoTJzJEUN2Lu982fuPjkz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.6|0.71|16.37|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|LPIL7oG_-fcc8HXvmCnd_If2c5E6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|146.4|0.52|7.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/479/1/012046|LPVBQ2OLqOIAe1VMjFT3UkC2GCg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.280000136487861|0.6|215.2|0.654|8.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|LPeVZHd9dQKlbgGGirGLqknLWruD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.04|226.0|0.69|16.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PDPPT-TT', 'Ag']|['PDPPT-TT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8se00233a|LQVbioWRnmLq8TQtZATJEkEVRKD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PDPPT-TT', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.1|0.76|17.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|LQcoB2r3J9HJkMM44vTuGyNw_HB2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|228.6|0.753|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|LQuFKOQBu_f1xI1p2HlYJJxXEAjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|238.0|0.66|17.0|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD']|['SWCNTs', 'Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|LQwWR4oLksh2qybwuwRviIMoL-S-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|192.0|0.75|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cs2CO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Cs2CO3']|bulk|https://doi.org/10.1002/pssr.201900103|LQx9LnYow4npBWf0WPS3GDAGTAZ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cs2CO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|243.0|0.67|14.3|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['Ag-nw; PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|LQxJZqGxeeJMJ58fOr4b_mznWurx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6450001754082275|1.162|210.5|0.6970000000000001|17.05|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|LR1QYWY3WtZM4vvAqguay_QR3kZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|217.0|0.728|18.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|LRG0bBnTwKbAlBmxXvoge1LuwvwC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.0|0.74|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'BCP', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|LRLPJmJcd3EbfQpOQnPBVhCeT6E6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C15H48I13N5Pb4|Pb4C15N5H48I13|HA2MA3Pb4I13|1.7300001844718749|0.73|80.39999999999999|0.657|3.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|LRgz877axNkMkaRp0Q2IwU12l1fX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|211.0|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1126/science.1254763|LRiqpahsry3sKlEI8yzERYUVHA0F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|216.0|0.605|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06338d|LRjvuvgehsOTkSX7JN6q8-bvIm1Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|229.4|0.76|18.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr05687g|LRyC3APD0uCC_SgLjbp4PwbOs6Wp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|179.0|0.604|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|LRyge_pCMeGziz6_aDJ1P1tD6_Il|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8059999999999999|168.0|0.39|5.28|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|LS7cVRaf9-Ec0iZeiHGuAwjHLFYQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br510C893Cs100H4618I2490N1633Pb1000|Cs100Pb1000C893N1633H4618I2490Br510|Cs0.1FA0.74MA0.1530PbBr0.51I2.49|1.6100001716761378|1.11|228.4|0.79|17.55|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900413|LSAA0hpqt0X3h-5hu15i9gdkmFfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.74MA0.1530PbBr0.51I2.49. -Br3C10H58I29N12Pb10|Pb10C10N12H58I29Br3|FA0.2MA0.8PbBr0.3I2.9|1.5900001695435149|1.011|192.7|0.677|13.18|['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104036|LSBA5vxm7G8MsHQJemWmrrUzD19u|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.3I2.9. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||1.03|152.3|0.75|11.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|LSCDN1NL9s03g5alutKfpK_PAdL3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.56|120.0|0.53|3.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Ethyl acetate; I2; LiI; NMBI; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; NMBI; Urea']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ta12240a|LSCilhH3vzR8diSrOpMsjfkcYcNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Ethyl acetate; I2; LiI; NMBI; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4980001597334498|0.95|177.0|0.65|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra23359c|LSE5Ue_vaupDdWA5o7gM4uvtmUMW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.3|0.71|13.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|LSJ411AX5qtn_YeZZAflKD3kWNei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']|['FBA3']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|LSKbJen4SsDpa9kbW_dtEeSpAJbu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.08|91.0|0.54|5.2|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|LSLysXNqgncOg_oTPaR-VBA15FMv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CsI3Pb|CsPbI3|CsPbI3||1.106|191.5|0.7559999999999999|15.9|['N-Graphene-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12519h|LSNO1VBX7fYmziqJMmg6jD-S5dgu|a perovskite solar cell with the following device stack: ['N-Graphene-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br99C95Cs5H491I201N174Pb100|Cs5Pb100C95N174H491I201Br99|Cs0.05FA0.79MA0.16PbBr0.99I2.01|1.7200001834055632|1.31|196.0|0.771|19.8||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2021.106537|LSNicDPi2wba8wHeCy5ipAUd7Xya|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.99I2.01. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|172.0|0.589|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.011|LSNmEDEEmSB14MT3qJpW-5ZJKbCG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.75|278.0|0.73|15.8||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|LSacB3dVqYncE6reTXapp8nYJArk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.95|182.7|0.73|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.09.004|LSg4c_u5eFT42UBQHQJH545prW8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|78.8|0.33|1.72|['Polyester-satin textile', 'Polyurethane', 'Carbon-nt; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Carbon-nt; PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.038|LSnQa8HwSzXmtEKe2bbOsszRakRB|a perovskite solar cell with the following device stack: ['Polyester-satin textile', 'Polyurethane', 'Carbon-nt; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.3|0.79|18.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']|['SGT-405']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|LSnsj3YTVk1LbPq9ylEZWPUyJDqc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.114|224.93|0.782|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|LSpK7lDxgMq-a9EfTMJrsHmuHO0Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|152.89999999999998|0.51|8.86|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|LT-e2q3v2kBHilTKyM2eMD83DbWf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.18|225.5|0.78|20.76|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|LTFcRinpTvo-KNKqFcm3mvIbgSwC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.1|0.75|18.32|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|LTXpOkUDI8hmLQgBdlMEc5yVSTm1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.25|35.0|0.26|0.2|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|LT_6YhhYqIZ1u-ob0-A03ZRLNtbO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58|||||19.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|LTsjuUycERZRlQtrNUD-65ztjKcJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.015|205.4|0.6579999999999999|13.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|LTwm5AzGCwT01kO36knJiceiFGoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.175|220.0|0.703|18.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.037|LU6Mo_h21xqfz17oxg5F8uPANPM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C11H61I30N11Pb10|Pb10C11N11H61I30|(Ace)0.1MA0.9PbI3||1.132|222.2|0.721|18.16|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|LUARB3Vv3ri7Qz_0pu-VTti6SAAo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|177.0|0.7240000000000001|12.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|LUCuQK5yyGYziU8YnWn2Lm4sr36n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|133.0|0.56|6.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cphc.201900856|LUUN4vLDuQ6Lal5WAaT5Fw75JtOk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C100H517I270N183Pb100|Pb100C100N183H517I270Br30|FA0.83MA0.17PbBr0.3I2.7||0.996|206.3|0.6729999999999999|13.25|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ta10857a|LUa0852-ymBoLeOkEZV81RkBCHRN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.4|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703068|LUfiHNqTgmapqsqujPPgZaF7JpdK|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.05|118.6|0.679|8.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|LUgiCY2gVuWU9vol-IdG9HaDa7P1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|161.5|0.7240000000000001|10.44|['PET', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|LUn9KcbEDiGZOmC7cEp3qh7GPMZW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.2|0.685|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C8TC02754D|LUvIOFULzjjNG5ehJnraUAjGRFr7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.865|204.9|0.528|9.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|LUwYAUcg1EtF700ukvJ2M047zqfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C3H10I3NPb|PbC3NH10I3|MA0.5PA0.5PbI3|1.5500001652782691|0.93|244.2|0.498|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.041|LVC_J-Nm3WZ-8_ICMhLhLb99JoT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is MA0.5PA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|LVDP5Ys_fCvRknChMun9n9vqWcnI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.141|229.1|0.77|20.07|['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ImAcHcl']|bulk|https://doi.org/10.1002/adma.201902902|LVtW3u61BdkFNYOBRRagMDynctxt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.1300002271243312|0.6|14.0|0.29|0.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|LVvGxlOApEm7Ec3HaBxK-Q5dO9wC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.4|0.61|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|LW6dQddUfBcRnBGyVAT0aAilLLtT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|236.0|0.6579999999999999|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Spiro-MeOTAD', 'Au']|['Graphene', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04616a|LW9Me23P-zVge_0JOvUdSsy0Btua|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|101.0|0.69|5.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|LWERGF_CQoRgxg-6BWXePJ1R-Zox|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.0|0.687|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|LWUTY-l6Z_WLM6fWzlLE5uxDc_UW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.965|193.3|0.682|12.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.070|LWevQDYsmx3o78EvCQRVYHFgwAye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.68|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/admi.201901748|LWikUBoOdQESxOmy8n__dHOSr0Qs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|207.0|0.78|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|LWk_C8SJm_1Lz44BB3LIOk0zRkKF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C41H207I100N84Sn50|Sn50C41N84H207I100Br50|EDA0.01GA0.06FA0.74SnBrI2|1.6200001727424491|0.6|171.5|0.7|7.19||['C60', 'BCP']|['PEDOT:PSS']|bulk|https://doi.org/10.1016/j.jpowsour.2021.230848|LWlK96qZSdtRCY268OoJ0desRN8j|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is EDA0.01GA0.06FA0.74SnBrI2. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.08|196.0|0.7340000000000001|15.54|['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']|['PTAA']|['PCBC6', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|LWp7kuBXoinZ9x1uFhiQJgj1FFxG|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50||1.05|201.7|0.723|15.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|LWqUeRdQYrk6Kpi8OZR07tnCCK5Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.5589999999999999|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|LWuRCLfYlNG52RgJDn_dF4OU0Xbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CCs3H5I12N2Pb4|Cs3Pb4CN2H5I12|Cs0.75FA0.25PbI3|1.710000182339252|1.15|165.0|0.56|11.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|LXFMbTCgcs8O2ca9vomXDRpWr1aT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.75FA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|193.0|0.596|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphite', 'Cu-tape']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.043|LXVr3C53WeHZz4iMEWRD13XoYWBo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphite', 'Cu-tape']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.764|13.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solener.2016.09.048|LXYGo0QTQbvu9p9JSrUA-hEXymSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|133.8|0.622|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|LXZBghOtq-38keCyfB96ZQ11Lc00|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|85.0|0.535|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2185997|LXkFNQHz98LiQpGXIse9zlbV8j33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|234.0|0.41|6.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|LXnzE6utvawnOh5sLeyt4aWTOgz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|218.8|0.77|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.058|LXpbGXAO5wa5UUY-vPlIDylvpyFW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|222.3|0.732|16.8|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7nr07001b|LY4LcbqGOt1Rz2hfJVv3G84fx03I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|126.8|0.57|5.49|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.vacuum.2019.109077|LYBj0yrJN4ZGSv79T3urFgwfxvHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.71|15.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2017.06.126|LYDHrip-NpTopE6FkSaT2QYAG0CF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.094|241.0|0.7140000000000001|18.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C8', 'Au']|['BTTI-C8']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17386|LYEy02fBNldyBARXXgCGcYzus9pJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C8', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.752|149.0|0.65|6.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|LYJtaqUPx005Otlj7NxR-V67Xkbq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.0|0.76|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.017|LYNAHF_XQeo4s5JF4DX7-qziwHjP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|186.3|0.39|5.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aaa230|LY_GKV_r3HeH2TT0po7YHEf8aJWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|138.5|0.5479999999999999|6.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|LYhCTV9px93s1YPbY8gemG7J9deQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.1|0.79|19.03|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|LYqt-bzScDDE_w8tjrY_lOSFbNrE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|184.3|0.68|11.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|LYt2O8_MIktvE-MwpusIlbHJf6g2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|179.4|0.59|11.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4916345|LZ-LZC15OWet82MJggXbus43Pr7Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|191.6|0.703|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Li-GO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'GO-Li']|bulk|https://doi.org/10.1002/adfm.201504949|LZ4M0pkCVMNcfBUEAEiSDaLN6zI4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Li-GO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.7|0.72|16.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Aminocaproic acid']|bulk|https://doi.org/10.1002/admi.201700897|LZ85DylsKi4G9XwyW25CS_XeCr60|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.0|0.708|14.2|['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ra16865e|LZ86eN2CULw5qv-I8J1mljIk3Dzp|a perovskite solar cell with the following device stack: ['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.1|203.0|0.799|17.3|['ZnSe-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.11.021|LZQWL7MalTk0IQIzLr-rxj1oHFjd|a perovskite solar cell with the following device stack: ['ZnSe-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|190.0|0.69|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1742-6596/864/1/012008|LZVNHncjyca5e14MefwZu3TvW5pP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.6|0.6809999999999999|10.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5tc00909j|LZ_l4kdt-2j5LYuB99TN1aWEsryO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|228.6|0.6990000000000001|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|L_0i1AU6OhUxC-3qoIwH4A8x7704|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.8|0.47|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.11.015|L_1YgJMN_RcsOntkXFV1v1YhjBBZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|108.0|0.53|5.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.5b03265|L_3_lUbRaIxCs3Bw0uRmCM2PDV-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.05|159.0|0.591|9.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.9b02366|L_5i74OyZ02PuCA_iPmO4LgxEyuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -C33H78I13N9Pb4|Pb4C33N9H78I13|(DPA)2MA3PAPAPb4I13||0.53|175.10000000000002|0.552|5.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acs.nanolett.9b01652|L_Bxze71V1vZCElTS89RDjJmyi4R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (DPA)2MA3PAPAPb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|53.1|0.4|1.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|L_EMFTWg97ESUVtpNEGdL49XAQLr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.935|169.20000000000002|0.7390000000000001|11.68|['b-CNF', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201902878|L_EYrPpKac77l8ySA7NLFSF0FrhJ|a perovskite solar cell with the following device stack: ['b-CNF', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.08|240.1|0.76|19.61|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|L_HcvPpjyI5M_ckTLsC7WXCV9aOk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.6|0.65|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b08384|L_KFpwkgMdt59t3yN368kv1GYUUX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|139.1|0.73|8.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|L_O0xtlaYdV1pVBchl3MupaEKCOX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|229.7|0.639|15.41|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|L_TA95OM47TBfUZc0bqoLaU9elAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.74|15.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|L_eHsGVNqkX12aGVFBqquti52ZIK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|209.5|0.69|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|L_k6KcQZoB4VHCNBSppqjoHrwJVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.0400002175275285|0.77|35.6|0.52|1.44|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.9b02958|L_pXn0PuBI4dpAxfpoak_gwZIM8N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|206.0|0.7440000000000001|16.0|['SLG', 'ITO', 'TTA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['TTA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2017.08.007|L_q1p3sLtY8CuDQfWjQA9STAycJG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TTA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.01|125.5|0.653|8.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-020-2675-2|L_s2FLiz2ihZJ3-_vrSgfUGgOkQ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|0.71|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.038|L_u0ve26gSM7udviQmhIMmD54WTn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|101.1|0.42|3.41|['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|L_wQayb1XVr9e_AJuznrgPR9zmUH|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|94.0|0.58|2.62|['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']|['CuI']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s11082-018-1376-5|L_xrl_sJRomgDoNkwqKiWUrTWYqu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|194.4|0.5329999999999999|9.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|La3Qwlh45xPZl8hFOACLe9pK37Om|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC4H24I3N4Pb4|Pb4C4N4H24I3Br|MAPbBr0.25I0.75|1.7300001844718749|1.22|201.5|0.788|19.36||['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1007/s11426-021-1306-4|La4_RjySEzIoypQADSED1YUpXHD1|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.25I0.75. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.91|202.0|0.53|10.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|LaDEhHCgE5bAAl1yBAP_ghvzr9oY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.43|133.0|0.58|3.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|LaFt9qCvziXxa48sW99XioRlbq24|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2400001322226155|0.851|284.20000000000005|0.7020000000000001|16.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|LaR9DchJvFWW4x9awHBUM4nPIjAF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|150.5|0.67|8.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'FTO', 'SLG']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.12.003|LaSU2JIs9gIE1AnAyT21py3Jzxs0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.640000174875072|1.06|233.2|0.73|17.3|['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO4-c', 'ZnSO4-mp']|bulk|https://doi.org/10.1039/c9cc07398a|LaUumV9Eot-GQTyceBbtRy7M0qP3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.0|0.746|14.9|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08799j|LaZmDEz9I0_2UwwW4yFsYUK3lxNf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.4|0.667|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['Boron subphthalocyanine chloride', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOT.2016.2608619|Laaiy69gd4rPwj0oiFsh2lfPcmAo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.31|115.0|0.63|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|LacI_Glk9UMHT8ieUxflON_EKteY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.012|LalEhcw8Y5wIx45V0X7ru8NEdRvq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|194.1|0.69|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'RCP-BTT', 'Au']|['RCP-BTT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|LapAaGt8fCf_XhAiFXTsDwsiG9AH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'RCP-BTT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|194.3|0.615|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03773a|Laqm6bJmFUwlNNni08LdMGnAXYRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.153|230.6|0.79|20.7|['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ImAcHcl']|bulk|https://doi.org/10.1002/adma.201902902|LawjgkQ68CSwFdF3keB78y56nAk2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.1|242.0|0.77|20.3|['SLG', 'FTO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-np']|bulk|https://doi.org/10.1002/solr.201900331|LayuVkmjfw3XpnXmjmyhHkCczXkh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|145.0|0.7090000000000001|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00480|Lb1dfQBulF_5MtGH8Va6DCystOPU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.61|87.8|0.32|1.86|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']"|"[""(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201801824|Lb3umoSr6GGlEZr1cSYHelF3mAr1|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|153.0|0.45|5.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|Lb6tbxK0pv0-PrdqsEMga-9ekIrH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|Lb9yXsxLo6roKZh5H-fJhY1-b_4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|152.89999999999998|0.71|10.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10022|LbCBLKU-3Q0BuMthFBN_vqWr60qQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|231.3|0.767|19.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s12274-018-2263-x|LbGDi7j1g_LTn-QnKE8I5qwXk7Gw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|191.27|0.625|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-411', 'Au']|['SGT-411']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04662|LbJCifOiPns3FvwhXP-s_g1LLdmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-411', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.9|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|LbNPHkTCsXJ_uCsI2SCcRVcgRMTs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|164.0|0.63|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|LbTRfynu0Zqafg8fVWGz0lGShgJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.60I2.40|1.7000001812729404|1.166|172.0|0.726|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b17241|LbhkOn4XtNo4lcRe5QG1Xlm2O474|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.60I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|190.0|0.54|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201400355|Lbr-ZmsqWgFFMtsGihlX5cmpP4CZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.23|176.0|0.76|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|LbzsSC4BRuQErtJGZbLHnIrHk4Uu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -C2ClH10I5N4Pb2|Pb2C2N4H10I5Cl|FAPbCl0.5I2.5||0.778|59.1|0.386|1.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|LcBTpU6uuIABzYKRjh6nuozjJP3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbCl0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.037|185.0|0.66|12.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|LcD5wp0r4Jj0vCUC3n2BaBI7KgMj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.380000147150975|0.62|109.4|0.65|4.41|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|LcLAcLnJ-5Oe9XeMKu-J0C93XpAa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|153.0|0.63|8.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q222', 'Au']|['Q222']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tet.2017.05.020|LcaUbmESO7Ux0bpLVjBGhZuAhM3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q222', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb13Sn7|Pb13Sn7C20N20H120I60|MAPb0.65Sn0.35I3|1.2500001332889268|0.75|210.3|0.6|9.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|LcgRznmeXLHobuNawz6kmDB9Hqwv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.65Sn0.35I3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.136|230.0|0.7879999999999999|20.59|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201900078|Lcw9mSYhgDeeyr9X9oEXYto-UkU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.009|230.78000000000003|0.69|16.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|LdJOlHOvrl5fRn3hsSSRZTAqfU5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|216.0|0.758|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|LdRq3gSAv1Clj7cnIaRN7AMZoWuW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|150.2|0.67|9.96|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr03181d|LdTMe6y35kVWRnk8frbGUpumgo_e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.07|166.1|0.528|9.45|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|LdW2Trvd3XmqOsy1OzHj0AQBqih5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.0|0.46|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PIF8-TAA', 'Au']|['PIF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00762j|Ldbd5XZplOOFgAaLRgqiVHP2Go6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PIF8-TAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.08|212.5|0.68|15.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800177|Ldd6pqclvCoEGVcGNcjnkRAyp6P3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|230.0|0.7559999999999999|17.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b03941|LdgkXhdpJiJSt9d6TfHb1XGFdkBq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.11|219.7|0.71|17.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.050|LdiTeLzKhK5KZn7Y8E3AK1cz-KNZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|185.4|0.613|12.27|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|LdjdQ4CZuvN-iRaD317k_P-1o4X2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|220.3|0.69|17.13|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|Le3ABvpo-XPPwSgdU1uNEyOU7sdx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|136.0|0.46|5.19|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|Le7pfKXSVQx6v4POMQtgo_Ey7n0U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|189.0|0.698|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7se00536a|LeGNaGS2mCJzbyqJrxf_YIfKgLLG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.01|75.0|0.6679999999999999|5.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1364/PRJ.393647|LeHTE93ZbQqJ6K-peVCnrkGHGkPE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.9|0.716|15.25|['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np; Nb2O5']|bulk|https://doi.org/10.1039/c8ra01571f|LeIfrvVchrYBpqYyAUf8xf9fHHvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|160.0|0.59|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|LeOKzEMeEyE9KgUyAa4piG03kGlW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.055|216.4|0.765|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra16839f|LeUp3mnnMuACkcnsQw59p9NJNQNs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.42|78.0|0.75|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-QDs', 'Spiro-MeOTAD', 'Ag']|['Si-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227065|LeWUKCAxxFZ49pmcC6E_oJeZLqiG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-QDs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.5|0.48|10.18|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|LeaLeiC6jWdO-Xleq3TE6x4R_Bcl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.75|221.2|0.64|10.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|LedF8EM8bxyBs9IC65KbBOddbB_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|211.9|0.562|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-019-45756-1|LeeLbfDwgZsGYPavlFdu9wrJgLmR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|182.0|0.73|14.1|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|LeiOF_65PFnBEubwdjBQBf377nxa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|209.5|0.66|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|LelXHFI5sEHQJgVctikBeZ_qpN12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|220.6|0.73|13.68|['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['V2O5', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra01303e|LesvJPOnZuJBNkC3bP9HzGDsaO9b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.4|0.612|15.2|['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1002/adma.201706975|LetLN7yTZV72DC3XYx26d9t5BCAp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C40H240I117N40Pb40|Pb40C40N40H240I117Br3|MAPbBr0.075I2.925||0.77|148.0|0.39|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05470b|Lf4B7vKD0zxTIfGfPbDUHGmYcrQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.928|188.2|0.4429999999999999|7.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105734|Lf6qlsP1fmxGQ4gZG6Y2XW3v_hjU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br300Cs91Pb100Rb9|Cs91Rb9Pb100Br300|Cs0.91Rb0.09PbBr3|2.3100002463179368|1.5|81.8|0.8|10.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|Lf7bMuVzvIwOCtyzXKCaWSZ_qkmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is Cs0.91Rb0.09PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.0|0.72|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp01936j|LfL9ld1F3Gmswg0UwlCrJFK8kkrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|98.0|0.56|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA07972E|LfMemFrOehAq5ZFpnv3LVUAEvHOD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.73|18.39|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|LfO08OjQsUu0li992-8DxrYnvf8D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|170.0|0.67|10.8|['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'CuInS2-QDs']|bulk|https://doi.org/10.1016/j.jcis.2017.11.066|Lfn3UrE07JoDyHOYL6A35Gy30hBM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.6550001764745392|1.056|143.7|0.754|11.44|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/nature18306|LfrDwxeOC-ns2tv_q-cXGWsFsObb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.155|214.0|0.715|17.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|LfsFCgHnFSH1jLezY_-ypicMp8mq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.75|18.4|['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01987k|LfxXx3O0Ad7RBAkTXgBFIOMpPSC-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|156.0|0.59|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|LfzPwPthPV5En4UUhlnOTWg_WhWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NPb|PbCNH6Cl3|MAPbCl3|3.04000032415867|1.11|6.1|0.35|0.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Alq3']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.06.004|Lg1WjSAM9aeSzvCit3ARjBtxIfXM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Alq3']? The composition of the perovskite layer is MAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|43.8|0.21|1.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|Lg9FmSpHsRqi_rQAreItJoVFJ5rv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|211.6|0.58|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.077|LgAJtztwjCxJTgdfgFczN11JbFbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F101', 'Au']|['F101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201503099|LgQNOx78Xkj5bDT6QcoLBCm78szf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F101', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.09|241.2|0.738|19.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']|['TPFPB', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|LgRjjS4_HWOk4HAgCnsrDzaIG0nL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.2600001343552385|0.8|210.3|0.67|11.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|Lg_fgIJvEm3t4FfMWXk9yFRRxhuj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -Br51C90Cs10H464I249N166Pb100|Cs10Pb100C90N166H464I249Br51|Cs0.1FA0.76MA0.14PbBr0.51I2.49|1.6100001716761378|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee03513f|LgdUEJIO6_GWIZTThH1MabhNx54q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|194.1|0.7490000000000001|14.65|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|Lgm-Zveo1UrS6aArFRCPr7CWw2Kz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|130.0|0.69|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'PCPDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCPDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|LgqBIxK0VvKnfPqCzme2xNyPHvU1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCPDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.500000159946712|1.08|182.8|0.774|15.34|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152887|Lgrd8Ypebb_kDg9XCNzopPdG50Sj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|215.5|0.67|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|LgvX_sdpV8_DMVxb0EfFYeDBoMwA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|229.5|0.725|17.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|LgyNRp20qCN4cdSvLhPD9OebOkiJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3C20H101I55N39Pb20|Pb20C20N39H101I55Br3|FA0.95MA0.05PbBr0.15I2.75||1.14|234.0|0.76|20.28|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|Lh-EoiOiozQlIpO11m9M9TIruqh9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.75. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|203.0|0.49|9.43|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra02637h|Lh-tKe0frFE8FxO9i48J-49cne8z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.462|75.0|0.81|8.92|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|Lh1aXZjbV8aP280ciadiX8TNHr-4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.400000149283598|0.55|166.0|0.41|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm404006p|LhDgVKhiQlTxUXNNOKPC7x_ZPhdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||1.01|173.29999999999998|0.62|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|LhMUNFTKMAEIKZ-TV4Oc2fm8k27W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.6|0.6659999999999999|15.06|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|LhSrrchA5ACqmqR6dd31T2wJ0Dtl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.1|235.1|0.757|19.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104673|Lhdbe07Bb2AUhxv-6hl7jwOzsAnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|210.5|0.61|12.19|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|LheS-Tu-d67j7bnnNh_RKLe11lvi|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|151.0|0.682|8.75|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|LhjoYc2ieTWQu5uujgGPIXGgzlFs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.0|0.69|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06177f|LhwCkVZgMEldvZM74SCqSY6ar7YC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.362|79.2|0.7929999999999999|7.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|Li0QQKvYsfLV_ddba8RstUEFeEBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|155.2|0.7829999999999999|11.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|Li0lXiz7aPTZKXwl1A_blEnrtHdM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.823|190.0|0.3389999999999999|5.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|Li4O5va62UJjsQ4lZfuaXR27BsBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.973|219.6|0.669|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|Li5CArlFe-Szehm5oBq7D3Um6_Ch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|217.8|0.7559999999999999|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|Li6e-Ko8PYy72QkSBQsnrrlgvRMd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169||||9.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b03742|Li9AbWVWm1f5b7iel5aio5YX1ygF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.02|214.9|0.594|13.01|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.380354|LiDstFt9VARWyUCVcVjywDdI4fH7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.2|0.573|9.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|LiHis0kO4S2NfayCNnUeVPxodkCF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.5|0.67|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|LiMFF_QB_4Uwss7Ncyh175Ss7VIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|0.77|111.4|0.502|4.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsomega.8b01589|LiPnwx8O0Rgu61w0pzZ9PzBkLqGl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|LiQuy9PWx3liG324eY_NI9MfIO_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|225.0|0.6709999999999999|15.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|LiX-N4g2KWmNR_WR560Ixw7lVvVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|LiYFkNZqa9n4J6P5MPPLLM2Y-_hy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.79|232.1|0.455|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|LicwQoF_Fn1TQVuhWjsgo0rd4P1s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.078|224.0|0.718|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr06278e|Lih_ecaM9kTqj7aPofxcg4AMUHIl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.7200001834055632|1.06|127.3|0.68|9.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1002/advs.201900548|LihvbjHFez94WCi_VO3lqNf1mSe2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.5600001663445808|1.02|134.0|0.612|8.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']|['PTAA']|['ITIC-Th', 'BCP']|2D|https://doi.org/10.1016/j.orgel.2018.07.029|Lil5kLDr1-Ba38QLe93Jk-UNFrS4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|212.0|0.64|14.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|LimFRVT73wcB7b9uXgLKZyfBVLnY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.99|184.3|0.752|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.jpclett.9b00276|LirsljmAva_E5ndkAvKFe67ajo-X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|157.0|0.6829999999999999|10.1|['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.02.011|LixpM83RoIFsYL7umkFxU7HAWhtz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|153.1|0.7040000000000001|10.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01933|Liysk_rl91LVYqcCUVxbNer5VR-5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|62.7|0.32|2.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|Lj1qsxligVdFkt0XmwwnORw7fUEl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.17|219.0|0.7140000000000001|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|Lj7MRCcfYvxH5ls7dezPxXu0f5G9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|86.89999999999999|0.379|1.73|['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|not processed|https://doi.org/10.1039/c5ta10155g|Lj8txqz0v3d2qtBp622-DKUAYRYZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|30.5|0.7|14.81|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b02362|Lj9ZH97rpK3Kjh1Jp960o0aDsN-Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.1|0.5920000000000001|12.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc01973d|LjBwhw2_8800QcCn6_QVgv1aielN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.5|0.7509999999999999|15.95|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/ente.201700561|LjGIVP_qfdrdTUbcsj6_fy7rvXyw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||1.009|146.0|0.63|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|LjQ-eB2kdFQLmYoRQpe9OuFqJBQw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.1|0.76|15.58|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|LjdfQajzjSTxUKvWmYcQAZydHFt3|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|166.0|0.5|7.9|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|Lje1GQFY4B_DyNthMIg8QM0qdSsC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|209.7|0.67|14.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137495|LjhtrhI47GPNIfh8GW7BQLvGkWnj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|172.10000000000002|0.63|9.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.077|LkIcQeXkzwR1jdIpt7hNoEJDQMRL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.02|232.8|0.735|17.44|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|LkJl8rZz6VKZId4lTlbxozs2nRaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.046|143.4|0.53|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'NbS2']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25449-x|LkPqnDstQYg4CKL9-tdVGxDyXf7W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'NbS2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|172.2|0.75|13.43|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201700184|LkWdkTPx_1DtxWqfWi7rpQPuDpME|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|204.7|0.275|6.42|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|LkZvyw5wzRmSO2PPuUx94GE6t81g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.935|77.8|0.555|4.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6tc01781a|Lk_auDogDa2BTTvQTZqSmlPuNqLu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N3Pb2|Pb2C2N3H12I6|GU0.25MA0.75PbI3||1.107|208.5|0.79|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|LkbDMgSJPIsg8fH_ON62yNhXo6Qy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|168.70000000000002|0.528|8.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|LkyIx4Ol9ogF2kZE9h4Suig6we2L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.520000162079335|1.12|231.5|0.816|20.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTQ10', 'PTAA', 'Ag']|['PTQ10', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.8b10520|Ll7Ssn1791rQ2_MhTsJKfIMVdkI0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTQ10', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.0659999999999998|223.4|0.731|17.42|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|LlAxf6N-kcZwmEbPoVGxcUmt0SRN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|193.8|0.71|12.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|LlB3kQeoGrSCz6zf2fRtGnJJ7dWX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.04|238.0|0.72|17.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|LlISlbExplgvvbJpMD6Sz1Kxa6px|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|180.9|0.6779999999999999|12.77|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta04313a|LlLbJuM4n6co3q7CI5gOqxvuFayH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|LlMuCwgxarKPh2uzhR2Lg3UlbL9R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.63|10.71|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5nr02874d|LlOPXSx_bljxhCblIvOsSDU31NbO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.11|164.5|0.79|14.35|['SLG', 'FTO', 'ZnO@SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO@SnO2-np']|bulk|https://doi.org/10.1021/jacs.9b06796|LlPp7s4Pyx__A1L3SIxcrpEBdGex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO@SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|231.1|0.74|18.48|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105384|LlaH-x486DaijWTof96IvEKltaTr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.0|0.7509999999999999|18.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.spmi.2017.12.015|LliBBEpgFeS0QoThLemAwKmKBQzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1033C1600Cs900H2400I2067N200Pb1000|Cs900Pb1000C1600N200H2400I2067Br1033|(PEA)2Cs9Pb10Br10.33I20.67||1.12|132.0|0.64|9.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|LlpZRTccN3JpjMGJIblirAejJmsG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs9Pb10Br10.33I20.67. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5|||||20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201802985|Lm0eWM_DuHNWlPXIYJ1wTKGJoh8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.42|73.0|0.775|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PPy', 'Carbon']|['Ppy']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|LmLKNWM0xt069PVNrrouHZilRLXV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PPy', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.08|208.0|0.818|16.42|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'TRUX-E-T', 'Au']|['TRUX-E-T']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c7ta08053k|LmMnqta8qGHuNi9kC8veR9eP1Cf9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'TRUX-E-T', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.72|215.3|0.607|9.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au-np; P3HT', 'Au']|['Au-np; P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b08157|LmPV11Vqskl9NBqGQAP_rtTjpk9H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au-np; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.6|0.7859999999999999|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|LmPv1uyXDoiGOmo1QcrdXjHvh9Cm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.0|0.7|15.13|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b08075|LmShdGKx1t0JGP6OKFKs7bkW1tQX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|1.11|219.0|0.76|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|LmVxxv6WDFQKxjn8r20mcUXqKReI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.01|193.3|0.7|13.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03990h|LmX2KgNrY5IE45v9mhaD49g-E9aD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|197.7|0.66|14.21|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.011|LmYIy-WvSs9lvNWc7b1uZvK7oh2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.111|191.4|0.743|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|LmrFdfknn9BezEWHrhthAEMw7lxw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.07|218.8|0.7190000000000001|16.83|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s40820-020-0379-5|Lmsa44gqC-HIhDwmuTVpWqiL9NaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.684|15.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|LmsmTJGZ4lH8hMAVjXvZMWCtfQ9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|220.5|0.81|17.25|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201900198|LmwyESrTXvnkYxtbTLVLwlSi7FeQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|172.0|0.65|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|Ln3W7TQjElEuLd7ABfrJwkqFCHEm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|174.0|0.54|6.8|['SLG', 'FTO', 'PTCBI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PTCBI']|bulk|https://doi.org/10.1039/c8me00031j|Ln84tiABP3WF7mdfhTuP0Xr82Bzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTCBI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|185.71|0.667|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|LnSsUGKHyDWlj75e_d8EtoipIjxR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|176.4|0.406|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|Lnc012Rgy8jyaRL8BU4EAWXMlhT8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.141|225.9|0.7759999999999999|20.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']|['Spiro-MeOTAD', 'PDPP4T']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|LnuwlZ8dEOfddTjWqIL9R89Nd1bd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.84|38.54|0.565|1.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|Lnz13_dnjOysJCoZggrpT21WtVpO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.9|0.66|13.58|['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DA-PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|Lo-hg_TBPgaalzTg_QyaS600VIm5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|206.2|0.7120000000000001|16.01|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|Lo91Qqq22h4C26iWWrmJ0m6N92eR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|235.1|0.83|19.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|Lo93xHkdrXDXnr0AQXK3xqUJ9lSa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01730k|LoPllvN1NIDg-8EroT1ypvdJCr1l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.171|116.5|0.64|8.73|['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|LoRscDPvBbC_WQ0VNSPMdfBwiuD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|210.0|0.8|18.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|LoUhmOAWVSSUdR0cGQBNMC-K4Cb1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.684|14.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|LoUq9DdYWE2TBTZXl0GtP9b0SPlR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.02|232.0|0.711|16.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|Lol8pLrwjzH67aQz61XxKcF17nHV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.904|204.0|0.63|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.044|LonK1xUPlGLc1GPCf0Jjaizh4s-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|202.0|0.7659999999999999|16.77|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|Loo3a7qy_2FKawGyx8XoOlsQlPzG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.73|15.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|Loqq6nfGTSrAv6bqMuu6TxwBaUnC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.22|103.0|0.45|0.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700224|Lp0h5EbPniYsiWqwHzAX_2UJEX-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|193.0|0.41|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|Lp2Q2871U7jHxwohprjseducimx8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.04|200.9|0.72|14.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|Lp5UHnJXfpSylbCup8dhD202RGd5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|157.10000000000002|0.521|7.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|Lp6OISS1Ctcx5oi9JsirANvcBgLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|239.7|0.6940000000000001|17.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Nb2O5']|bulk|https://doi.org/10.1016/j.electacta.2019.135281|LpKLHb_-dba4pW-nMnSDopdXWxBc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|190.6|0.68|13.16|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']|['PdMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|LpY9quTbV6HwMgS5RcDqiGfnMDUz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7190000000000001|18.8|0.266|0.36|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1246/cl.150246|LpbWlWUeyVnkpmCl53HYVsmwltOs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.969|219.0|0.56|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.02.106|Lpea2GSEAymLP_QhnfFGH-LXOHgP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.13|237.5|0.7979999999999999|21.42|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02112|LpesU-S-LRdC28bHrJhb1na_PEe-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|156.2|0.7120000000000001|10.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|LpgQ8oydsYZuh1GPmVR4tm4vwekV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.967|219.0|0.61|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|LpgvTrt-QD57hgmfKSggW9DnXdkO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.99|227.71|0.61|13.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|Lpl2RsHxmXJ7FNczUToEvK7BcfE5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.0|0.778|17.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.073|LpxVg4YpDf9iZexhsMGI1x4KYrVt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.4|0.565|10.84|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|Lpxv05gvTh4XsCSpP6iVib2Qd-_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.995|195.0|0.68|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|Lq1Hvy0juaaonwkJz8Okb_1KbxRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|214.8|0.7340000000000001|17.16|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2752-z|LqA99SzWuNwQrZbOM_qkSAG88TjU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|138.9|0.722|9.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.028|LqDuuvHrXv24AKxZMFqiCSV-7NcS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|187.0|0.6|6.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|LqM2QIr8Ru8GNmthMpd-SkSeLbC1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.045|137.20000000000002|0.71|10.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|LqVNTv8nude_UEbofoUAY7sniqzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|195.0|0.71|13.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.11.094|Lqa-1ur5bGE94ebrvjS0Vt1wfE7P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.7|0.72|17.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.053|Lqfqp-WqCZFzRPXnqXLgrYoOmzvG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.516|73.2|0.7509999999999999|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1Z2', 'Carbon']|['P1Z2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01151j|LqtS9FDOH3P8zEzo9j8YT95XGz1Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1Z2', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|131.8|0.524|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.01.031|LrCuW4FHjaKUF2BjZgBKoN8i8lEh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs20I59Sn|Cs20SnI59|CsSn0.05I2.95||0.43|193.0|0.55|4.6|['SLG', 'FTO', 'TiO2-nw', 'N719', 'Perovskite', 'Pt-np', 'Au']|['Pt-np']|['TiO2-nw', 'N719']|bulk|https://doi.org/10.1016/j.jcis.2018.12.100|LrDpYBX23ImnzMV65fFoDlW-Uhra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'N719', 'Perovskite', 'Pt-np', 'Au']? The composition of the perovskite layer is CsSn0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.3|0.775|15.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.043|LrRqBjIqrbHYfRHfLI4Ty4OHLXvm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.04|235.9|0.68|16.76|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|LrcjfFQkfBB3cBGwNQ81GPJUScws|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|167.10000000000002|0.52|7.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|Lrqn8u04aIPFpOCnXQBe-nKXp2rU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|75.0|0.34|1.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|LrvY7odxMnhtyM-m8EtyRFIfk4ZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.768|191.0|0.557|8.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|LsIeYNeYjpLOqkXbDhvH42yMT-N7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.164|150.29999999999998|0.5870000000000001|10.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9486-0|LsPdF3qKQyxd0kEj-fn8LBoMSqfl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C24CsH120I75N48Pb25|CsPb25C24N48H120I75|Cs0.04FA0.96PbI3||1.07|235.0|0.721|18.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|LsW8qhgdFVrNmChJB-p3U6CUDERx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.96PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.961|228.0|0.713|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsPbI3-QD', 'Spiro-MeOTAD', 'Au']|['CsPbI3-QD', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9se01205b|LsX28MzqWb-syK1FNNvAeMooZzbT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsPbI3-QD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.50I2.5|1.6300001738087604|1.02|204.0|0.71|14.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901372|LsZVKU6RL4bdwrI2dfCclLFm9UQS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.50I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|172.0|0.7020000000000001|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'IZO']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.12.020|Ls_TnCQsHeigG3MKbSWW72bVf_T9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|154.3|0.7090000000000001|9.35|['SLG', 'Ag-nw', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9020193|Lsks3ayFG3IeDyDzK10sbZrU4b4_|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.0|0.76|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|LslHNC6pUgTvw4MtrsvwlX1UFq6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|100.4|0.34|2.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/ma12081237|LslWxcP4f480Dtj7OxSrKfTHLQfa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C125Co2H750I375N125Pb123|Co2Pb123C125N125H750I375|MACo0.016Pb0.984I3|1.5600001663445808|1.03|192.0|0.762|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|Lsmt2VNldHVjL4Ci3fd8FYtnHAkU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.016Pb0.984I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.0|0.74|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600999|Lsn8pBwHT-eFWS8u3gnG-KSGmZtF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|243.8|0.6559999999999999|17.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5099280|LsnJJw3HzyRJCjQ90JgjMPR80fnk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|206.0|0.759|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|Lt6blZqToUqQpp8SSdq0p0Nx8hRV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|149.70000000000002|0.703|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b08489|LtMu4f0Wx8_v2GZgkyhmy5WhRRSw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|177.2|0.629|10.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ee02693a|LtOde8tJjUQYQXS51AZB-1jzpPgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.61|13.1|0.41|0.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|LtQAJW6uBCBI90hCMFhdDZnRRcCQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|215.2|0.6859999999999999|15.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08741h|LtRQW2El6fvuqXru_lzJ523v2fro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|152.0|0.59|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963760|LtRYcUcAICzrCr_6gqrKps1ZEUJP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.4|66.0|0.44|4.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b01187|LtX6MewMCXq3I4-BswMhN71njSkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.4|0.72|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.031|LthDMln7st7522dSBRxCGihYpKXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|183.3|0.649|11.72|['SLG', 'ITO', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|LtmP2WFKCXA_D5lj-fg6NtvBHVyz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH104I60N29Pb10Sn10|CsPb10Sn10C19N29H104I60|Cs0.05FA0.5MA0.45Pb0.5Sn0.5I3|1.2200001300899923|0.83|297.0|0.78|19.4|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-12513-x|LtsYHwQL68pKJC4gAPyEeWnONg-n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45Pb0.5Sn0.5I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.26|151.4|0.795|14.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|LtzmlrvE5VbWn1YKbEvPJbOreV-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|191.0|0.68|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Cs2CO3']|bulk|https://doi.org/10.1039/c4ra08565e|Lu196-xpJKnlm8qd3eMH1GDPRbMR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00980|LuBjGIhAYf8JcdU5vTPXW_GEbAps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.7859999999999999|17.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsami.6b11757|LuN4i6nFL7f_dcqEIf8YrX8bsMic|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.73|171.8|0.65|8.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|LuQ__rRuEYK4Y5zRx86TbH7yMKQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.3|0.76|16.78|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|LuWYTCSgYqZlEa3ecELXJOoPSXte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C6H18I4S2Sn|SnC6H18S2I4Br2|((CH3)3S)2SnBr2I4||0.49|63.6|0.53|1.64|['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'Z907']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|LufW6f2bnW8tie6MoIcgkM8c1YDj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnBr2I4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8759999999999999|217.0|0.7340000000000001|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|Luz8tbkrWLUn3BulGzqI1t8WG9Xw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|15.1|0.38|0.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|LvBCWeeINzbUY-ub0u_gvBnXuk7T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|184.9|0.56|6.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|LvEPjx0yY02kxp3lm2Sq4ZPVpkl1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.5540001657047935|1.12|214.0|0.6970000000000001|16.59|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|LvVrmdNrUwFoaUW5CNM3H7FIUua5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.5|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|LvbFsEdA1lQRrUQ1W6evz4e_uTbD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|109.0|0.61|5.72|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|LvlwhRacRGL79-wEFiBpOGKRwRQS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.9|119.5|0.64|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.5772/62435|Lvxw7PrNU_kqKkeCSh5DdvUquhBJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||1.04|217.8|0.78|17.69|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201902629|Lw2j5-L2ScBIdyouhxLa0B7Q5Dmi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.095|230.2|0.76|18.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|Lw2oqaEYpDfnrEIX2DD3Dgunan0k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.079|195.0|0.6|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|Lw3e0CTmjNV-vFR9BFhcsZ-NISuM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.554|72.1|0.8170000000000001|9.1|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|Lw46XqAlA0uplSsuTDDW6x5HFWIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.6|0.68|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-029', 'Ag']|['Spiro-029']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21448g|LwFq3K8ZtxIXA-IPySUllHdkQISx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-029', 'Ag']? The composition of the perovskite layer is MAPbI3. -C569H969I300N133Pb100|Pb100C569N133H969I300|(PMA)0.67FA0.33PbI3||0.6|4.8|0.36|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1063/1.5045277|LwUhxGrd592cxgKFQ6DzYvDx_8Rh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PMA)0.67FA0.33PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|126.0|0.45|5.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900922|LwXJ9TLA6p3MXxP_wGOqIG6HkzM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|110.6|0.55|5.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|Lw_7RZ3qARCA7LIVMByTwDQAQFe6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.089|120.5|0.72|9.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|Lwh81WvURFueJlQ1fIs_q2FCc_Ii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']? The composition of the perovskite layer is MAPbBr3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6380001746618096|1.05|220.6|0.675|15.61|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|Lx9sihnUBul8cqBStpcHXJVLfiev|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|200.4|0.67|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|LxIMgbQd5Pa0a5F1nWDCXJrPtvtL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.1|231.0|0.762|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ10', 'Au']|['POZ10']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b12678|LxMIZQFw_fbLXOSjW21lSgyMi8GI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ10', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|199.7|0.68|12.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F16CuPc', 'Bphen', 'Al']|['PEDOT:PSS']|['F16CuPc', 'Bphen']|bulk|https://doi.org/10.1016/j.solmat.2016.07.037|LxSH1RiKOZLpZXzJgOyohOPNSt8T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F16CuPc', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.168|94.5|0.701|7.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|LxTe1BQl9fcI90F8BNjeCB4Q06cq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.7509999999999999|64.9|0.54|2.63|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|Lx_t8K6AEA8fEf4XQuf8bWX7aSlY|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|69.6|0.69|6.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201506292|Lxcm8H7fhPLSezFT8Jl_o4q45ZBo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']|['DCZ-OMeTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|LxdaO0FFOnQGpQlSJnCoTPGTXxgM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|0.91|8.299999999999999|0.457|0.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|LxgKQnbteqjab7w4tEhTrXy3Oq_1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.0|0.76|17.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.11.031|LxkxSJjH88oq6PjvqTBRm1bmiiBy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|242.0|0.76|20.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc01058k|LxxmxXedPpCpt1nm1jjR1smGK1Cd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|90.2|0.71|5.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|LxzGiRJ3EEsCZkNzU-AmjG3Rz_7Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|139.8|0.39|3.51|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['none']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|Ly6_gzY-QrkcZSKL_w7zPkSxMG6K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|128.2|0.42|4.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPM', 'Au']|['Ph-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|LyLldN47K3UCZB9qu4eUkMuDYUzg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.9|0.637|15.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|LyPlTMFiG4QeR9KIIe1mCrLlx2EI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.755|200.0|0.47|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b02443|LyWCeKvan4fMv5AOCIPEKyWl2f77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.3|0.732|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|Lygwb2mm_wYKBfvEU0euXz1dCbl4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|179.5|0.65|13.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['ITIC; PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|Lynj0NPo3uNyVUxGxeEpidsWvu2l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|197.9|0.7|13.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|LyqMacuURd4KWI-NYB3PfHpx3E04|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|225.0|0.77|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703659|LyrpFg5yaW-8O99zWWJF_HGDwIhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|191.0|0.77|15.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|LywRh0j1UUzc3rzdcm5_94GAf5LQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C34H129I60N23Sn20|Sn20C34N23H129I60|(PEA)0.1FA0.15MA0.75SnI3||0.45|184.0|0.61|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|Lz6DaPKYgHc1Jnr03q97YkOzSh65|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.9|0.73|17.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|LzOEmOQMv-4ncV9KnejKlHQ73W_9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NSn|SnCNH6I2Br|MASnBrI2||0.77|144.0|0.5|5.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nphoton.2014.82|LzPDRgLCYcrEk_1_cY9QFAiv6EMV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBrI2. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.670000178074006|1.06|207.0|0.76|16.5|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|LzPs2KfTf-NuaYvqmnEhPyL33eu7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.4I2.6. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.08|75.0|0.5920000000000001|4.8|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|LzVWFvpGxZx4I1mhywKe_uCSD5b3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|126.4|0.74|8.98|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|LzaE7QCfTAGsD_AMY612MroFvYgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.09|234.6|0.772|19.77|['SLG', 'FTO', 'SnO2-np', 'PFN-Br', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PFN-Br']|bulk|https://doi.org/10.1002/solr.201900482|Lzwq7wApVKjVhPlcuZuNNqQbb0Qr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PFN-Br', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.22|105.0|0.41|0.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|LzznRwjujkr8A6dm0bH8qvkGrdOT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|222.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|M-172zMaVI_3-FYqKneY3jGBZb1y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.83|127.0|0.51|5.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3938/jkps.69.406|M-4Bt5ntnIwgtKIduUsyY2H0p481|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.88|184.1|0.654|10.6|['b-CNF', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201902878|M-6a5WJGcfX7Pw2i1q1hBtTMa_Mm|a perovskite solar cell with the following device stack: ['b-CNF', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br50C33H165I250N66Pb100|Pb100C33N66H165I250Br50|FA0.33PbBr0.5I2.5|1.6710001781806374|0.913|186.9|0.643|10.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|M-6u6CzyxnzRxcYpr8U9PN-zBWuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|222.0|0.76|16.1|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|M-9SFPZhCgfB9y8qg41d-3fkoPCm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|13.1|0.48|0.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|M-BonDqftfV-PsYnkmcsjdPna6pG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.09|56.56|0.62|3.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.07.009|M-H8idTVsP2aMs1i81t6AMx-hoNf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.0|0.63|12.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.5796/electrochemistry.85.231|M-L_lSNmh94rVTJx3GMv8RMgQQI9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.098|222.1|0.785|18.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b05469|M-MlMDCwRE91IzuaV_fniaIEg8BX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|200.0|0.67|14.69|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|M-_zc8jc61sEUqb3sJJr7Tpk8W7M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.1|0.25|5.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.12.011|M-aMVHKfMsytCEaFtgwUCduIwtK9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|220.5|0.7759999999999999|16.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PC61BEH', 'Al']|['PEDOT:PSS']|['PC61BEH']|bulk|https://doi.org/10.1039/c7nj04978a|M-c8dtEvUOMM5ySuceYFrY-gdmmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PC61BEH', 'Al']? The composition of the perovskite layer is MAPbI3. -C9H26I13N5Pb4|Pb4C9N5H26I13|(3AMP)MA3Pb4I13||0.99|94.1|0.708|6.62|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|M-hyndc1VpZZlKcuZh-pE8gWdOcd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA3Pb4I13. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.5600001663445808|1.01|126.0|0.586|7.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']|['PTAA']|['ITIC-Th', 'BCP']|2D|https://doi.org/10.1016/j.orgel.2018.07.029|M-uLfPObknBlz4KA3ixr84wOrK3l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.8|0.71|14.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|M-zTu_gBo6dXHu2w-g66sL1gyozb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.045|8.4|0.261|0.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|M0-5Xif_IWSfuEAlEb0s_pb0eG0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.04|207.6|0.701|14.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|M02cLZmWXWsfDjwy7Kp4_DYu5YLk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5640001667711054|0.86|132.4|0.5870000000000001|6.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b10418|M0Hg6EfNsBiYEKdlHvEUF8pChmpX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.115|41.5|0.524|2.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|M0IRgrWNtNHNtafYMsXM3Unw8nt_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.121|228.5|0.785|20.1|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.048|M0M-0uVucuKPFg3FIBk8qNGp0Bl5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|154.3|0.56|8.91|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2019.104285|M0OKkfSX6-CfxWFau7HGFTMr0Qvg|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|206.8|0.6920000000000001|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag-nw', 'PDMS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705409|M0Q5gW2ovk24_vY3gJWUVXclFITl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag-nw', 'PDMS']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.9|0.73|15.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900235|M0TQHsRNY6kpA1xZjvjTK7hVzkow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|M0_Rkbpd7AcdiqnuprrtZyv6ga76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.7|0.6|12.22|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1039/c9ta00118b|M0nJKddUoaUzK4fGd2Ud7MpPJcgg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.6|0.74|18.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|M0vuz8eKLopEskUxPWntpjq7qmzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|222.0|0.7490000000000001|14.4|['SLG', 'ITO', 'PEDOT:PSS', '5,6,11,12-Tetraphenylnaphthacene', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', '5,6,11,12-Tetraphenylnaphthacene']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra02496g|M0zx3DCv8OJV18rr401WoiwTxJoW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', '5,6,11,12-Tetraphenylnaphthacene', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.883|191.22|0.495|8.36|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||M10DVyrQ9dy_EO2EFbR8HipPOncK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.031|218.1|0.659|14.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|M13Cv5JivsoA6SfFITcR4RgFYDlb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.29|0.66|0.405|0.02|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|M16RUYZNocfXYLFK_Stheh5rlmFJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|190.0|0.59|9.98|['SLG', 'TCO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.10.090|M17PVb7r50RW-L03czhxJ_pYN4P9|a perovskite solar cell with the following device stack: ['SLG', 'TCO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6300001738087604|1.11|235.0|0.76|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10049|M1BYJVx4ZbJX-J9bGRwWfVYDtROf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C40H95I32N13Pb10|Pb10C40N13H95I32|(PEA)2FA0.5MA3.5Pb5I16||1.14|153.4|0.69|12.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta03022k|M1DuDhim8bf96H-ml7sa-wQQMpKi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2FA0.5MA3.5Pb5I16. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||15.86|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'X25', 'Au']|['X25']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|M1GesiBdBDsjspk9aaopW2VxLM0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'X25', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.996|214.7|0.61|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtchem.2016.12.003|M1Gu86N0L_-5ESSt0ZfXCxBv_fsH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.4|0.7390000000000001|13.99|['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']|['TBASBP']|['PCBM-60']|bulk|https://doi.org/10.3390/molecules24102027|M1I4c1Op0eDfAeG3Imgo-M_k6Cgd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.5|0.738|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|M1cOuCWjinOIJYX6RhjyaItTg5Nc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|162.5|0.56|9.92|['SLG', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ITO']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7nr04069e|M1eHFCxhkjJM-3O6nkEjGeHQTjlH|a perovskite solar cell with the following device stack: ['SLG', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'SnO2-c', 'TiO2-c', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|79.1|0.447|3.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|M1eiOV4Vp9cNRLYyUsE7nXCzf4ZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|182.2|0.75|11.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|M1i3mFQhAAm5Vty_bluhyqlj92Ga|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.09|227.5|0.68|16.86|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|M24oBVjekna8j40doSxxS92PEjGM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|194.2|0.54|6.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|M2HUifJX8vuB5h31MdQ2ANwCWTUV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.775|151.7|0.632|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b08038|M2JoRxf4mNw0EXS69-2Hkfuk-bGd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|174.3|0.501|5.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|M2LyZMEzWd90upBWJLFoPA1DbEx7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.416|40.0|0.3829999999999999|0.6|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|M2U4k35dRCLOs23tSIYW39uGZbHs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.0|0.624|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|M2UIdzMw7kKNVRvem4SdaM5aOiHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|M2_jCSk1x4t5hwLrg4oxgcrm84m-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.0|0.752|16.0|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|M2aen9HUoiG-SiQGVjzz77cWoIgG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|173.9|0.62|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|M2b-8HT391ILXp1-5IZ7C-Jzc2xg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|216.0|0.71|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00054|M2sjQmtJUlwFPt7XAWC5r6P95hrf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|163.1|0.7609999999999999|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|M2wJ_R2yQASYpsvODwe017B0Mjo1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|205.0|0.7809999999999999|17.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|M328exm5SrZTxLs77wQSkyd26P0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|194.8|0.672|12.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|M3LRp6TQq2j13-XOWgCk7Y7DiVCu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -BaC10H60I30N10Pb9|BaPb9C10N10H60I30|MABa0.1Pb0.9I3||0.51|31.0|0.34|0.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|M3P-SiSXGQsg-EeBfttlIfjl38q1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.5|0.77|15.04|['SLG', 'ITO', 'PEDOT:PSS', 'PTMA-BP', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PTMA-BP']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07732g|M3U1_LEXvOctGvPDSKGRcLSbsXwR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTMA-BP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.725|5.8|0.38|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|M3WjrcChRkVP_sQWJ0Q0jgt2fkg2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|77.8|0.4|2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|M3cIvGHmRTog_FrjKZE945TMq9Mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.4|0.7609999999999999|12.74|['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|M3nlCzMgLslALpF9Lg_ctOx4FhN2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.0|0.75|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09689a|M45MUiujGuV9v2aWdnyoHH-t5t-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|60.0|0.35|1.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1155/2016/2953592|M4E1O-rtZh_7dCm23RvJo2Jz4vo2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.936|213.0|0.63|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201501460|M4bqDysGh_UKRsMP6OgVtMmCdEPt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|202.4|0.609|10.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.062|M4ddbtNm-dXy7NlFzEQ83tza5rQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||16.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']|['PTAA']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|M4jFShVGacHwSB7PIxrd63dN_T_0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.02|238.0|0.62|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|M4r6GACMhHtJVVjZvbPwJNl0EGIO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CsI3Pb|CsPbI3|CsPbI3||0.77|113.0|0.47|4.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.56.04CS11|M5-oFLtbi-Ji0c3rZT0f8b9sQJi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|309.9|0.39|10.3|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|M51Pj8V_p5dwQ-Ho5g-OmGT2zQYQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.62|48.8|0.5|1.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|M56uLYWfDGpQyodhSUYMSG5pTPJt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.0|0.748|16.3|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr01927g|M58ncZts2u6VxucSvHXT2kuPsv8p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|197.32|0.7240000000000001|13.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|M5Dee_iD8qXjK8ah6twf0ih89a4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|M5DzKn65vC43kD2Jm0VG1NX4ErMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.09|160.0|0.584|10.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|M5FdJtJU9kS6_O4HHqhdFfTDMfEz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|193.4|0.63|13.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|M5G-AJvvFpRnw1YBO4910quEC-AE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.0|0.72|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43707h|M5KM7GzvDTuUqwZvnsWXmBhdn1IN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.085|230.3|0.775|19.37|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|M5KtYNSO8xLnh-FvJeuFySlVfDNZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|146.0|0.605|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|M5PU6GcpSqxaHSn9jxi5q1zb_Y1G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|140.0|0.53|6.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|M5Xvfzq28qbXIyZm5T0bNRqCdkOP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|196.2|0.62|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Pd']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2020.106463|M5jfMCgv6IW5CUqRTm2u-cuNglG8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Pd']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|148.4|0.72|10.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|M5jz_khBdl2yHf4Yk-dy1Hv6Z8KE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|207.0|0.74|16.2|['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|M5lXoO7Kq1cpec1LytM8iKSkdZEp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|146.0|0.6679999999999999|9.8|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.068|M5p_LdEiIzYWjfLMs_ug3MqKyBjD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|186.3|0.57|10.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|M5t5_XVfw9sQiJQzrhS0CUqNL8Jl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.8|0.71|16.71|['PEN', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|M5tPt5Tw35mFeTPC7CDR7yDpNPmi|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.4|0.718|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|M63AQ5o7uzVizRPtyf4Qg-nKHflY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.8|15.9|0.32|0.39|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201800346|M63vQsniBRN9otDb9kKWZ4MUHORE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|198.8|0.68|14.23|['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|M69qmextZjNATE_7qxVvck21cvMv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|217.0|0.648|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|M6C8TaHgrpxB2LGsxwtA3WnGSw6W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.15|133.6|0.764|11.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|M6DzbqOUiAB91NMsyapupT_c4M9y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5970001702899328|0.97|203.0|0.73|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|M6FavgVY31bgDxB8FUWeSgCfDsI9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||0.94|84.0|0.41|3.22|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/ente.201700361|M6S8AozuYphbf3QdTWMl5kp69u0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|M6VDJNjiOD-YG6IfpzN61S78hUj5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|219.5|0.6629999999999999|13.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']|['CMO']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc03683c|M6Xt3SMowPoZkJeLFyo2SqhN_4n7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|20.0|0.25|0.15|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|M6iL4Xqal-bhkwgKEKBDJ6QoEibt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|139.0|0.64|9.1|['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']|['DFTAB']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|M6s0wmKCyg4bfX9Uey3_bvH0Um-3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.0|0.6729999999999999|13.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'ZnS']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502466|M6tnCT4jaSnx7mGHqFxQ_0zrmwzm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'ZnS']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.25|54.2|0.568|3.82|['SLG', 'FTO', '[EMIM]PF6-IL', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['[EMIM]PF6-IL', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|M6yT5PsWFVycSbTmDu_DA1gMMt9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '[EMIM]PF6-IL', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C83Cs17H415I300N166Pb70Sn30|Cs17Pb70Sn30C83N166H415I300|Cs0.17FA0.83Pb0.7Sn0.3I3|1.3200001407531068|0.77|280.0|0.7609999999999999|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|M7GblmLsA9zzWXfFeMeEstJmDBFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.5|0.69|16.21|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|M7WdxKPcoTQVcYjJP3BR_b--RcaP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|225.0|0.72|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta03782e|M7dzdy7YTSF_R0MSWTovSWMBz6eE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.14|239.9|0.802|21.92|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1002/adma.201905766|M7i1FVRYzzhwX4-JE5JBQC_dH_cJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.5|0.677|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10470c|M7kGgZszV2rW33srbyRETkmUE_4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.8440000000000001|61.46|0.491|2.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|M88I1Ko4n-iy4XeewxOfLhEpcIn5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|166.9|0.637|10.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226699|M8CQlwgqeWJAw_bcNX_nhyVJY_D8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C39CsH215I120N58Pb20Sn20|CsPb20Sn20C39N58H215I120|Cs0.025FA0.475MA0.5Pb0.5Sn0.5I3|1.2700001354215498|0.78|315.7|0.77|18.92|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01237|M8FuQT9PfgEr_yeg4lnxKEioSrR5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.025FA0.475MA0.5Pb0.5Sn0.5I3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.07|239.0|0.763|19.45|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|M8XAbZL048wK7yJy_XOWdcwRsU76|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.5|0.6|14.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|M8dEnxGE_F3PouI94gcrtRwYNXtu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCClCsH5IN2Pb|CsPbCN2H5IBrCl|CsFAPbBrClI|1.7700001887371206|1.131|161.8|0.746|13.0|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|M8uF1brLkZBOgSjAgiEmG9Ar6MGc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.8|0.67|15.48|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|M9FpifP-IpyKHiGasA21zOQOSCXY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.998|228.1|0.619|14.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|M9IeFdTiXCe1uI-51UzizuQ6Vk7k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|150.7|0.602|10.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b02102|M9KPboR1OHY9bLa5RqHq_It4YTvw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|130.0|0.53|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|M9KpCVhF1FsWZoabp9pAn2L17JPz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.773|131.9|0.605|6.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|M9tb8zr_2JBsMmi7LoqDULtUm06G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.4|0.7170000000000001|15.14|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.045|M9u3uoUPB5-jTvydbLO1X7mJ6g9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||1.02|193.0|0.69|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|M9uLXy9FEVEehq25yup1m9PBigzF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|225.4|0.541|9.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|MA-QjtTEwSD_GtYpLDYX91k97zjQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|200.1|0.659|12.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151723|MA4vIKXWO6dT8W-KMQoE03K_BGix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.17|240.0|0.7829999999999999|21.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|MAACx5lLm7OvtG_idQuSYXtIvv9V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.0|0.745|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b05173|MAD52SzAsrtrky63-NLHf-CIXoM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.085|241.1|0.7170000000000001|18.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi01020j|MADIHnCGJDW7HAyQdtZeTPVqmIdx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|236.8|0.5|12.11|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1896-5|MADVfRkLTEYy3zz-j6RIIePKK1bI|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|1.02|27.0|0.631|1.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|MAEDrgYK24vWoZDm8mOzw4jVkCYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.0|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|MAI1jgCRtkhJEC4lXpFt_fpoIPVD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C20CsH105I15N35Pb20Rb|CsRbPb20C20N35H105I15Br5|Cs0.05FA0.75MA0.25Rb0.05PbBr0.25I0.75|1.6800001791403176|1.207|209.8|0.794|20.11||['NiO']|['BCP', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.202200431|MALNWzKDieJ1xpqB3H9ZWRzAnM8E|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.75MA0.25Rb0.05PbBr0.25I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.3|0.67|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03826|MAV2Tsd3Jwj9Xji6PwOSryj1djmX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|122.0|0.575|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.01.023|MAbqXjxr5EoagoUalJM2bj4gZ1G0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.936|173.0|0.64|10.4|['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']|['KY7F22-np', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|MAcRvnO4P0U1eNpp4OzyXF8YhR6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|191.0|0.747|14.8|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06020|MAildUDQw93lvoavG0APPAtC3hHu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.491|70.1|0.5|1.73|['SLG', 'ITO', 'CuI', 'Perovskite', 'ICBA', 'BCP', 'Ag']|['CuI']|['ICBA', 'BCP']|bulk|https://doi.org/10.1039/C5TA02950C|MAlVY1MnFe0yEmXiH3tEnnp8GPmC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|100.0|0.69|5.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cap.2017.01.015|MAsk4oJZim8PvRXsaKaR-Xu0M0eD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||1.07|222.0|0.6579999999999999|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DTP', 'Au']|['TTPA-DTP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11314e|MAxBCi_1JIk1KyTLp5-O_s2U-bWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DTP', 'Au']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|132.5|0.57|7.02|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-np']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|MBIta0hoDO7UqtwnOyUC3fA3Eoz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|169.5|0.722|10.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|MBLjpvCP61FuZC6xFGHELFl6GeDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.0590000000000002|220.0|0.78|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|MBQS7IWCi3sH9QazIbH4k3yDNdI7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|193.0|0.59|9.9|['SLG', 'resist', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1063/1.4918751|MBRJgpjqvuxJrhwKFEGSJLy8UR88|a perovskite solar cell with the following device stack: ['SLG', 'resist', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|219.4|0.6759999999999999|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|MBXs5Qa5UeoYXRAEGSPJK-R4eo1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100C83Cs17H415I200N166Pb100|Cs17Pb100C83N166H415I200Br100|Cs0.17FA0.83PbBrI2|1.670000178074006|1.19|195.6|0.77|16.89|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201801562|MBxyrCpP0zMaaKsd5-wJSkI3Zijj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|155.1|0.6|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/26/1/018401|MBzC1mnDl2H39Ocr_qnG5coqpWID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||1.13|224.6|0.772|18.2|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9tc03111a|MC5xIfdc2rImR3Zag0j6IITjwZVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.232|221.0|0.77|20.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01041|MCEhpMEAa7IrMte0zodA8jRg3gUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|101.0|0.76|13.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|MCGjbB6aqBeh9tjZJObnq0HCJpo0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|147.0|0.631|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.15541/jim20160584|MCV3Wo3EGgvyjTgX5QDiFxEJ_GDh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|||||19.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|MCaCqP1xIrUT7B69-Zvwcg3cPTiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.0|0.675|16.16|['SLG', 'ITO', 'BCP', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BCP', 'C60']|bulk|https://doi.org/10.1039/c6ee01037g|MCdQNoXt9ZeCaFgAJWlBlNCPvfHJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BCP', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.1|0.75|16.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|MCdiXpl-9BvruuZqilZT6MN39EfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C95Cs5H491I200N174Pb100|Cs5Pb100C95N174H491I200Br100|Cs0.05FA0.79MA0.16PbBrI2|1.6100001716761378|0.98|195.0|0.73|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.202001551|MCfyf1ppAXNuCMAYuuriCq6TXVy9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBrI2. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.04|229.0|0.6709999999999999|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41563-019-0478-1|MCjEO6vXNweB8d3zHAVhfN9Z9_pP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||0.87|81.7|0.69|4.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|MCm5XeP9OJwEi2RThNmX7YYYlVvP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|26.0|0.32|0.6|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|MCmpTZAjAqcteAwuvD1UHbwvgcAZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.3|0.745|15.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|MCqwNMlexvEAbz0uIcKhel8zDBdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|208.0|0.74|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|MCuKqbP6p9k0vQCIx1rqIMXIixlm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3|||||13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|MCxFwMLYghiNby9kRpVrNVns9KBV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3|1.5500001652782691|0.98|212.0|0.76|16.1|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|MD8vr7mePOpBUQh6bm6dwB3IB_p2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -Br6C15Cs5H78I54N27Pb20|Cs5Pb20C15N27H78I54Br6|Cs0.25FA0.6MA0.15PbBr0.3I2.7|1.640000174875072|1.07|199.0|0.805|17.1||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|MDK4vzxpq3RQ6llD37aCTQX3iVXk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.6MA0.15PbBr0.3I2.7. -Br3C19CsH96I57N37Pb20|CsPb20C19N37H96I57Br3|Cs0.05FA0.90MA0.05PbBr0.15I2.85||1.15|244.0|0.82|23.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201903368|MDOYnbI0TpVwOYgvnuQKXSGKfsqA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.90MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.2|0.804|18.52|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15607|MDT7c3PlEPB7OpewpVTgxDBuMzRG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.037|218.0|0.73|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.02.106|MDVA8sCCGsq6QW2m48P_fdv3yUiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.0|0.73|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|MDVPkLjMQCeScGbW64Zs96KSdQDp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.0|0.67|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.128|MDXndH-qRqtaqnjcbwrMuMIUWr3T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7879999999999999|124.0|0.32|3.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23845e|MDXpPZA_66zR0JwfEX6j_nYDt0eX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']|['Spiro-MeOTAD', 'PDPP4T']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|MD_TgauvvtzRbnTDVBy6d8kgX7x2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.13|226.0|0.76|19.35|['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', '3-(1-pyridinio)-1-propanesulfonate']|bulk|https://doi.org/10.1039/c8ee02242a|MDc7Y5KL-7fc6MduI7H86zXUcEhV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|212.7|0.718|15.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|MDmX5Gzi1AItCV2iCQW9FyaKVkE0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb99Zn|ZnPb99C100N100H600I300|MAPb0.99Zn0.01I3||1.08|215.0|0.7140000000000001|16.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.047|MDnNHP-J6a5PeFm_keQPt6iAqWRW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.99Zn0.01I3. -CH6I3NSn|SnCNH6I3|MASnI3|1.400000149283598|0.429|242.8|0.637|6.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|MDuCZi4iFM_1Z-dRkPLSSXj3XuPp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -BrC4H22I11N6Pb4|Pb4C4N6H22I11Br|FA0.5MA0.5PbBr0.25I2.75||0.705|79.80000000000001|0.325|1.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|MDzssyLAjZTSzLI0V52s5LFoRYfd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.25I2.75. -C10H44I22N6Pb7|Pb7C10N6H44I22|(PEI)2MA6Pb7I22|1.7000001812729404||||9.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|MEI1WVh3EOXeY1-57_LTuMhCEflY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA6Pb7I22. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|175.0|0.63|11.7|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|MEIdeH7eNVkR7b9H8pZlh4m9UM-6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|60.0|0.64|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02808k|MEPfhXK7-Ctsg0Rwr_0SW423M7P1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|195.8|0.57|10.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta06152d|METop1dz7VyS9GN0UISUfoPOYkj8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|179.0|0.411|6.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ee02693a|MEnXXrM42Jjkg0Svo76PRw4qpUmj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.72|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6se00077k|MF0gfYDrbKmEmKwVTN80sS8EPCCC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|189.9|0.57|8.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|MF0iB9tSg9VUAx4vxu7ZVt9NA_38|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.4|0.583|10.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|MF1SEOg1PSfF7k93maszPcm5-Gya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C18Cs2H93I30N33Pb20|Cs2Pb20C18N33H93I30Br30|Cs0.1FA0.75MA0.15PbBr1.5I1.5||1.074|109.8|0.503|5.93|['SLG', 'ITO', 'L-F', 'Perovskite', 'C60', 'BCP', 'Ag']|['L-f']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105524|MF5PnRSX_u-AiNNcxWwlfsO-R69u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'L-F', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.108|220.7|0.775|18.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b13423|MFInlvQGGVrW-hKkYBl6Fc720PWQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6940000000000001|1.06|0.7020000000000001|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|MFK0bIPktBvUbZPEcHGxfCO3RLZT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|138.5|0.62|6.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|MFMzCwwS0Wp8kamKYxSW4hb56szX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.0|0.7|15.7|['SLG', 'ITO', 'M117', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['M117']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.052|MFPjvTooKb2GLOZK4rT2dIqg0BUl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'M117', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|165.0|0.66|11.26|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|MFRqmS3ejM4FCRC1dvlbgfz2WRND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.86|95.31|0.6679999999999999|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|MFdqWX_UMu233cA79Zx5ngsZQKvT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|238.9|0.71|19.47|['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-c', 'NiO-np']|bulk|https://doi.org/10.1039/c8tc04475a|MFuUUCLai4IAK5Oxrlxk2ztdM57t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|230.0|0.63|13.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|MFvGSFoFeDVshy069iuOHjodqKyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|154.0|0.75|11.4|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|MG7fvnO58kYw6iGqll8P-bIw54N-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.7b01851|MG7pHnXm-Xu4b_hm9QRu8TgPbbcs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.767|152.20000000000002|0.433|5.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2015.09.035|MGNDDKfm13pWyQE-Gg5ESEbmjiv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.14|229.1|0.77|20.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|MGNO9F4OrDk5KegZH3prjYxfVNFw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|182.4|0.66|11.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6tc02307j|MGOJ26yBSpF_X43EIWXJzzkbYCvN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C50H251I147N99Pb50|Pb50C50N99H251I147Br3|FA0.98MA0.02PbBr0.06I2.94||1.02|220.6|0.75|16.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201601378|MGVAKWWYGgRtJLlI1IxVfB-E8VJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.98MA0.02PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|209.4|0.8|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.11.031|MG_mlcnQHg8iuj88cKpcjwA1nzEf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|204.0|0.5|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.190210|MGdLGgqT5yJNHprjyN9wRS4pQ3hM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.180000125824747|0.32|198.8|0.37|2.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5002117|MGfaZPJDmjJnt6CHo63unaPl0bn7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|160.0|0.65|9.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|MGfhltz1r90JmUvS0Cm6Nk9TJD46|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|133.2|0.58|7.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1039/c5ta08015k|MGgDJ9SiNOrHDU0yxJ_orkBuGNpu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.02|86.4|0.6559999999999999|5.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|MGul7G9HlsiImXBar9Ih2Y1yWjDm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.76|182.8|0.57|7.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b02784|MH3e1hY0ayORS9UYNUeCyRJcBxoK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|||4.0|0.37|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|MH6ORM1IMTzv6S9Aq6YkEeyZ8adx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|160.5|0.752|11.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|MH6zmdmcUlQdkW7geETMJIMJr3bv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.86|158.9|0.49|6.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M105', 'Ag']|['M105']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|MH94W8t3X4xZ4UgW3oh79jbTfiqb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M105', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|227.1|0.754|19.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7nr05416e|MHBeRxo0YlKDTWIkOCQG08I2ji3C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901||0.802|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|MHDeBJcgeumsVlbdDqbsU1lsTuwR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb49Sb|Pb49C50SbN50H300I150|MAPb0.98Sb0.02I3||0.792|169.0|0.518|6.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|MHU0pKypheh9jgUvlCk_2w102YgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.98Sb0.02I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|34.0|0.71|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|MHd7vE9gzBi8qkMDNtM-7wL-TxYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|110.9|0.644|6.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01714a|MHrL2E0faaQus2TwqLCsb17mwI1U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3||1.0|220.0|0.6|14.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0535-7|MHv44ixvDcdrYYySfA6uIVUG-4hR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.3|0.6629999999999999|13.33|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta07876a|MI4L97pmGNE8q2lnSp-lrQBCvF4A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|219.0|0.67|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|MI77A8HF-RXzXKKXw4atEOO5kcWm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.7|0.77|18.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b03081|MI8nLntDiyU7Uu4wsTzJ48eCmEHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|195.6|0.473|9.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|MIk1NnNI3HCUJQ_kwZEmZ_fBZrEX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|156.0|0.47|7.19|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|MIkCvc6fJI_V12i7ozCbYSYyRkbk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|234.3|0.4|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|MIlOR4cnr_jWSR1J7XH7sFWbaeKt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|124.0|0.325|3.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|MIyEHXja2ICazlEXNV6aLdSth_AH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.0|67.5|0.74|4.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00968|MJ-Piz_5M0XmkBXmysC7MRXtVIg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|202.9|0.648|13.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.7567/APEX.11.105501|MJ16CdExhfBj7_VOZkbMGREGt5EX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.95|238.0|0.65|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201404007|MJ22L7GBoCCjaKq2sdUkPGlEGk_A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|198.8|0.76|15.72|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|MJ7PcejP6CSmprFjv427y5Fj1ej6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|170.6|0.67|11.75|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.01.090|MJ9h1DiNnrTxxD1vRp9N8QSHwJ0n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.88|192.0|0.7170000000000001|12.1|['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|MJ9qbulpvlEpnaqkSPo49Jhc7Pvs|a perovskite solar cell with the following device stack: ['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|1.044|27.9|0.671|1.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|MJAw82wZudbEzYzHXj3Mcf7Vl8gg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.918|181.1|0.611|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|MJHGqNcIiwHknxSlm8ib5wQvJyHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892||||7.9|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|MJNz6RJLnz4cU-WnBdVs0ASxSMG1|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.13|221.0|0.8029999999999999|20.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b15166|MJOnq-jS1lvFN3jHDvjbh1HwDAtp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.871|131.1|0.5479999999999999|6.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|MJPL1NLYlOQHrn-hqzx35iYIbuHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|159.5|0.5489999999999999|8.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO', 'MoO3', 'Ag']|['IEICO', 'MoO3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr07933h|MJiv6lQzKJ8N8Ao7VR05CDgPER_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.0|0.725|17.77|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201800475|MJmCkrLmTUJbcuItISAPza8K3nVK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.9|0.79|17.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|MJtk_UPYdgVypq8MKKVRCuc84RFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C80Cs20H414I250N146Pb75Sn25|Cs20Pb75Sn25C80N146H414I250Br50|Cs0.2FA0.66MA0.14Pb0.75Sn0.25Br0.5I2.5|1.380000147150975|0.78|175.0|0.69|9.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|MJvRGfXUMzvhhy5S3jw8CC0apk4y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14Pb0.75Sn0.25Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.06|236.0|0.7070000000000001|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|MKEQAJS1zl1sKzcaMYppv8tW40xg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.117|231.5|0.778|20.13|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|MKK2zqphaE10sgSADCMUoOoOQdsk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.073|160.10000000000002|0.764|13.11|['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']|['CuO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.012|MKcJXmF9GX4UzUGDPM3xgY8p_9XX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.8|182.5|0.7240000000000001|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF2']|bulk|https://doi.org/10.1002/asia.201901452|MKcghtrkNS0KxWLaUV4En2xsFiCQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.7000001812729404|1.07|228.6|0.701|17.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226767|MKhaZpJKeGTCHbvr87N0Ky-gaA4-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C90Cs10H513I300N117Pb100|Cs10Pb100C90N117H513I300|Cs0.1FA0.27MA0.63PbI3||1.04|217.1|0.7190000000000001|16.22|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|MKt84nWTi0twmOPMUCY94oXrKmba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.27MA0.63PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|147.10000000000002|0.65|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|MKvTRchzT30O3lE5ypi7iAjeGGR-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|217.0|0.68|13.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|MKxN_T6DrYYwm2axX-8p0l5pwlH9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|176.4|0.586|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.04.012|ML2UlNh-ltwpL9EiAJdQCKKLYR1F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|192.8|0.723|12.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|ML3Zwp1mQ6FSc6aNAyt4G1sjqRpN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|180.0|0.7340000000000001|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC']|bulk|https://doi.org/10.1002/adfm.201504041|ML6aDS1PGZHfvLBC_Nt0GMnGiM-R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|196.0|0.74|15.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|ML9T9fpQNkIWkeLKYw52VYoxLLhm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|MLAodjTuWbvD-5tsg-MLOQYP1uZt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C100H517I298N183Pb100|Pb100C100N183H517I298Br2|FA0.83MA0.17PbBr0.02I2.98||1.07|231.0|0.655|16.2|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PDCBT', 'Ta:WOx', 'Au']|['PDCBT', 'Ta:WOx']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.03.003|MLBRe_nLgE87nJOsi_sYk7VbxFpO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PDCBT', 'Ta:WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.02I2.98. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|153.0|0.75|12.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|MLJ9PmSbvzU3FnNMW7eg8yr9eRWO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|186.9|0.5589999999999999|8.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N-Graphene']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00086g|MLOwrC6KVg6YHbFP8nTDjnkGaXUF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N-Graphene']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||0.92|198.0|0.63|11.6|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|MLXAtihWYMRlXOAMx9ShaX6mDnVm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|237.0|0.78|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|MLb-6JI3cW5-JyS_GEzcjYlCGtTr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5000C4623Cs350H23688I10000N8673Pb5000|Cs350Pb5000C4623N8673H23688I10000Br5000|Cs0.07FA0.81MA0.1146PbBrI2|||||14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|MLkZ6ci9OLsdvmkiWuFkrz1a7rnF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.1146PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|220.8|0.779|17.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC04', 'Ag']|['YC04']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|MLrjAD597G6za4TcCl1LQd287Rnp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC04', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.113|228.2|0.7509999999999999|19.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|MLu0KII5IHQepUSWiPft8l1X9hlD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.4|0.55|9.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'PDI-C4', 'BCP', 'Al']|['PEDOT:PSS']|['t-BPTI', 'PDI-C4', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|MM1q73s4TroWFwiSWFxPfh66U04L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'PDI-C4', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.048|227.6|0.639|15.36|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|MM6uXQHrBaaAJowG-ltWxkKt4DOo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.97|200.4|0.39|7.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07603c|MM9x6Xgn99dRjG0LFYJ2sSaLKqqo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|123.8|0.6|6.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1117/12.2023774|MMSLHxsHOL4hjNrqFwdx7oHFNQsm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|126.4|0.69|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|MMSPBW1qqRXBu1ttQ-TcJBQkPoOF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|189.0|0.616|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm5041997|MMfUF6KJ-JM5-xJOWa5zaSKVqTE8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|130.0|0.78|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KTM3', 'Au']|['KTM3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00486h|MMfcaQDy9bDl5ZGXQLDUNqt9pWE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KTM3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|220.0|0.32|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.07.025|MMhva9GjoE1Q_5U6vnd3VO6UpRrr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|153.0|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']|['Cu:NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|MMrwC-pVuY1B5x_HLDeHCts6cIFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|225.2|0.7140000000000001|16.51|['SLG', 'FTO', 'ZnO', 'Au-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', 'Au-nw']|bulk|https://doi.org/10.1039/c8ta06970k|MMuSjPAN5jasiwqBX_IV1lA1uQVv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO', 'Au-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|81.8|0.53|3.62|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1039/c4cp00298a|MN5io5oGM-lZsmfagFIDMBr3zSt0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|180.0|0.674|11.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(4-Phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-tolyl)-phenylamine', 'Au']|['4-(4-Phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-tolyl)-phenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc02211d|MNBDrj-esrpGnzKaQrKXrbRqNf9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(4-Phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-tolyl)-phenylamine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|228.0|0.7390000000000001|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|MNBLRLjAHrI3UQ6FjDxnH2POM8F7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|207.0|0.63|13.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|MNC4dGDD0UTKnjBPryZ22z_fOVLe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.017|8.85|0.539|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|MNJdrtuK-0w8zpTgBUwwE1BkHne9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5|1.6380001746618096|1.143|237.13|0.7609999999999999|20.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|MNM9DiPjT-eTGgNvqYvwrRuAvoVF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|153.7|0.529|8.3|['PEN', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|MNY2d5WwVLaahIr9O8npfxqqNbVH|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|185.4|0.584|11.79|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|MNatrAOpH3vvPTDEjkWwKdDCXBWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|167.0|0.79|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|MNmCsI0Y9AsK3HG-1sX-AGc_rrO4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|229.1|0.7340000000000001|16.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']|['N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|MNmzDyvKdCu_MhPrmmuCyY4cBp5W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.2|0.563|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201701221|MNrgI7wkwQ3c2zYwrZ7CK_-3Db-Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.0|87.69999999999999|0.65|5.71|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|MO-A82F2pqTBKetkT4EX5npWc2R9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBr2I. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.81|91.0|0.46|3.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|MO30ErJvoFbPGlPxiSWbVlOajw3d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.0|0.5|0.26|0.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900285|MOBOIsCpD29Ubi5CIGTRSLwMvsLJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|183.0|0.59|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701378|MOE6sOTLyFE-mbobms0uPDrUyiU1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.84|170.79999999999998|0.56|7.9|['SLG', 'ITO', 'Rubrene', 'Perovskite', 'PCBM-60', 'Ag']|['Rubrene']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp07592d|MOMQBuoyOZ-NlDiGjQD-8MraQNAw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Rubrene', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.7|13.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|MOMWN0N9EiJiwsD0xrUr74P517UW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5890001694368836|0.92|215.1|0.65|12.86|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.037|MOes4I5fmBeolNMbsAGYXwLPmjD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.4|0.55|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900199|MOlMdBi_dpDck5G87lHdAjQH2LnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -B59C20F236H120IN20Pb20|B59Pb20C20N20H120IF236|MAPb(BF4)2.95I0.05||0.962|171.29999999999998|0.74|12.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|MOmMsFCX1to-RTwt8BxbyQDd2daR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)2.95I0.05. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.0|0.721|17.07|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-np']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201604695|MOsaFtZo7etif8o-o-XMEGbQRmYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||0.98|189.4|0.612|11.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']|['NiCo2O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|MOzISuYPqhS74fwHYZrklAB4dy3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|82.30000000000001|0.42|2.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.07.004|MP1krr1aqUaPQMBz7xpGLAgLJdFV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|40.0|0.33|0.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3OEGT', 'Ag']|['P3OFHT']|['ZnO-np']|bulk|https://doi.org/10.1139/cjc-2018-0414|MP4IkVPPb5dTdgtuRJKlRipremwa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3OEGT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|155.0|0.76|9.6|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|MP922_n23v9gJJpzTGOH4oCfmdPs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.504|148.1|0.457|3.41|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw', 'TiO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|MPIIHsKDmM_ChTjPZAuTGveP8n5E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|MPOcI-9ER04B9e8G5tYP4VrdtP_K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.8|0.73|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|MPQn4gHejjohHRNlJKvQdzlKPQPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|174.0|0.68|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']|['S197']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201400980|MPRhQmusKdUJZknCwdWCeGVQ2EQk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.6|0.75|16.74|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|MPZ9M92aYKvkaVcGv-LEgJvVLEPZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H85I51N34Pb20|Cs3Pb20C17N34H85I51Br9|Cs0.15FA0.85PbBr0.45I2.55|1.5900001695435149||226.0|0.644|15.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2020.05.041|MPjpMki1aseo2IBUplA2WLWLfTs6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|206.9|0.71|16.56|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.067|MPnVUlmb7QFj10S8gtPgoupFs_xo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.12|134.0|0.738|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-12678-5|MPtm9DE1tilF8X2xQVZVSqSv8GD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.557|228.41000000000005|0.55|6.99|['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.orgel.2017.07.047|MPvXUjQ3XMwagfM5z77jXMbwBBiA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|191.2|0.61|9.33|['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdSO']|bulk|https://doi.org/10.1117/1.JPE.8.045501|MQ0pO8AE7rbrpjSn18jWY6BRAO0q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.3FA0.7PbI3|1.5230001623992282|0.99|134.0|0.66|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra23359c|MQ7jWyXhFcPSASOrBQOEWa1X7ACx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.1|235.3|0.7|18.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|MQBLsJ-J6nxmmB5Tv6OMnt7-lzCI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|116.0|0.65|5.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|MQBWtx3SBcWah_xN_EE2_7ON80au|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.6|0.578|9.3|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1088/1361-6528/ab4f2a|MQBcoYMssH-XjvLLmWgjUZIgqI4l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|177.0|0.588|11.55|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|MQJHztpNFS8UtZ7Fo_7FlkMddbqr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.760000187670809|0.46|47.5|0.6920000000000001|1.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|2D|https://doi.org/10.1007/s12274-018-2151-4|MQTErOCDhD9_IMkeivEim4OjHBIi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|173.4|0.598|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b01980|MQTbFrJkAzuVC93pwVlP9_OP_wfl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|217.1|0.63|12.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.2716|MQZmkBXrGnlC2TCDVC0MyY20-7JU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.569000167304261|1.05|232.7|0.74|16.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|MQf31U6MKjE_bOevO3cV4djy1EiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.08|139.70000000000002|0.65|9.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/sciadv.1700841|MQgF01FyyZgEbRgNaQ0csC4mnpuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|157.0|0.688|11.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.027|MRCY7rlR87WmQlLIih7grzdk-OBn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.0590000000000002|203.5|0.628|13.54|['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cr2O3']|bulk|https://doi.org/10.1002/cssc.201701864|MRG316deUfi8V1ealhwbcrEanWCX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3|1.7500001866044976|1.06|150.0|0.41|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.7b02948|MRH2f0vNsvT0GVcFtCgq4IRU-PyR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.3|0.64|12.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF003', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|MRRXoNw1ab0PKhlKcWOpFbImevdy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF003', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.895|196.0|0.6609999999999999|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra07579k|MRSwoY16awa2rLROFAfOakeF7uno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|104.0|0.625|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201700953|MRUCdb_AWIEcAznPmPvkS3g797f7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|137.0|0.494|5.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.5b04695|MRZ5KtvIsJoD_wx881fv_lqbC_dK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.7|0.73|15.8|['PET', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|MRdRaM9FbOmIoGsfSPTaFIxjuNZS|a perovskite solar cell with the following device stack: ['PET', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|232.5|0.65|13.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|MRe5u2xsaOMLgZ0d5cvvT6iBfc5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.95|223.6|0.53|11.45|['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Alq3']|bulk|https://doi.org/10.1039/c7ra06645g|MReL8Vf7CYrWXvYVr5LYMiMfO1cB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|94.9|0.34|1.56|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|MRhl1CjJJDsQg_WcHdJcKt_8AZxW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|210.9|0.481|8.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|MRpPEH8wxzV7rtNXc8LMdchiXeYd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C122Cs5H640I291N214Pb100|Cs5Pb100C122N214H640I291Br9|Cs0.05FA0.92MA0.3PbBr0.09I2.91||1.11|194.5|0.74|19.45|['SLG', 'ITO', 'SnO2-np', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-mp']|bulk|https://doi.org/10.1002/admi.201901866|MRqFbTPMlknGVlDVw5FEJRq8U6Sj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.92MA0.3PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.1|0.75|15.76|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|MRzqofI-Rm150ksUsXkERJKKee3Y|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|172.3|0.7|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl504701y|MSOI6gFD1Ixp0XVlpE6QRhqoKArO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.1|0.645|14.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|MSSBlZMUYzzYYgcQCvLtwGjYhWwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|201.0|0.6|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|MSSvv7ebV5SUgYFtpyYfcq56mXyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|167.0|0.6|8.1|['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'NDI-H']|bulk|https://doi.org/10.1021/acs.chemmater.8b05237|MS_LNsoQ_ZnGTE9r4IU_XLwVyagS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.0|0.73|15.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-np']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|MS__NeFMWK5wpzsUgHLGx0XWeKwL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|131.9|0.7559999999999999|8.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PC(70)BM', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1063/1.4991030|MScEl_n2Mtgs7m0-zQo6O-hmqxwM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PC(70)BM', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8PbI3|1.500000159946712|1.07|184.1|0.688|13.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.10.028|MSlNbZAJF_qaeMFfc9xZ7chD3qbB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.18|152.10000000000002|0.742|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2019.104130|MSnaczT2rdRj9Rvtsm6tsl4cn2eD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.092|216.07|0.753|17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00271-z|MT5c3QNMzXSMdUnYHykfQCrqInqT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|158.3|0.637|8.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.08.027|MTJVQMGk9XZP655KvWQROKAqnvyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br53C100H518I247N182Pb100|Pb100C100N182H518I247Br53|FA0.82MA0.18PbBr0.53I2.47|1.640000174875072|1.11|159.0|0.61|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|MTKwQAqEFRn0rKWPJDcQgR0RUUGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.82MA0.18PbBr0.53I2.47. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|1.07|51.7|0.6|3.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|MTMnozxEf1bZfJ7EbzZPkxPN2-VX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|229.0|0.743|17.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/smll.201904422|MTR1yqcb3s3CteXloQl-W3M_uFPi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7509999999999999|153.1|0.48|5.55|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|MTeQkb41WNMK-iJGmK7FnY5-0IFL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||0.66|192.9|0.581|7.4|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201900198|MU6FWCOHNCeQjEWt_71BAPyELyPg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.858|121.0|0.52|5.4|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|MUA2_N2mLlegIc6n9ImL0VoOtx9-|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|166.5|0.628|9.67|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|MUDdILtlCBohe6awspMuEfaDbcEY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.0|0.61|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|MUO78YAxxm0OPdjZR6Ozz-ZREiSk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|226.0|0.753|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909737|MUhYz8E6SSP3Em3oyR8f6KcOFJPd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|211.0|0.5579999999999999|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|MUhsYX_d_vZ3ifYefJh8Gdb0GTMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.0|0.73|15.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1002/admi.201500762|MUnM75jU95qRjbJuxsCJbf5mb_2d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|195.0|0.71|14.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|MV2vvMsOfGSxpmJliJg7EUMuBVdo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7959999999999999|144.07999999999998|0.67|7.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P(BDTT-ttPPD)', 'Au']|['P(BDTT-ttPPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.04.026|MVD97rMTwiz8oUPRm-jhdjnNeyE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P(BDTT-ttPPD)', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.179|252.0|0.784|23.32|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|MVDjoJKQ8xcgbSbU_0v6ROjRF73g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|198.7|0.78|17.16|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b13621|MVQP7wzzTPb-XEEVpocRYqeO7lLy|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|0.754|15.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|MVVR6lmg9r2vAe3OsnDGuff19_VP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|218.8|0.74|18.11|['SLG', 'ITO', 'SnO2-c', 'BA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'BA-SAM']|bulk|https://doi.org/10.1021/acs.nanolett.6b04015|MVZNc5tNuAAcPArPmRs3kGEtFTrl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'BA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.935|36.3|0.568|2.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137567|MVgXJHdNj0-kSGkRtEpDzmBJwErZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|156.3|0.7440000000000001|13.32|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.9b07182|MVlHgWJ7Nfqu2wleiSz5V8WuOgaY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.01|206.0|0.7659999999999999|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-019-57015-4|MVlm05hOw3G1jYhAPggCdZAgQQIr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.11|235.1|0.77|21.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202001788|MVmylGLxZ-zMJFAzktkDZK8wLJlq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|91.9|0.52|4.9|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07549e|MVrsy5ChntM1DN9kh7AeA3vpnmlL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|71.2|0.45|2.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1080/10667857.2019.1651504|MVwsJaxVEdFMwsOVzcmpl0b_EYA9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|219.0|0.72|16.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee01136b|MW6pD8cfqz8gQQfW4HLbQv5ZO3x5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.737|17.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|MWAEaHafetFZZeH_eDP5HPc5wOvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|202.5|0.785|17.01|['SLG', 'ITO', 'NiO-c', 'UiO-66', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'UiO-66']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801715|MWS-OajTuH1ow8al7ghXY4mSf4iP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'UiO-66', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|158.0|0.62|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|MWW1e-567iRizI14B0G0F8ToVU2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|187.4|0.495|7.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.04.012|MWf-A1n5y_1zaERROAt3o7BZsU3H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.0|0.66|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|MWgufbUBHFq2lsqwAdbpvncVp2UJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.074|214.1|0.73|16.57|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|MWhtgYUIII3gRQECGHmdDe55F_jh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C170Cs30H969I600N221Pb200|Cs30Pb200C170N221H969I600|Cs0.15FA0.255MA0.595PbI3||0.956|210.0|0.6|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|MWjJd2qnxxxvdbVsn1WiLAyDBdqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.15FA0.255MA0.595PbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.68|69.0|0.32|1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|MWrsI_F1YDmAD7e3jf6ZLOX21ahg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|163.2|0.675|10.69|['PET', 'Graphene; TETA', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene; TETA', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|MWxMzR5I7XnqxyMqD9Syu2yagTsM|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene; TETA', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|184.2|0.65|11.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|MWzMyuMa_cm80rkp4Kzk4k63GXyq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.018|172.7|0.58|10.86|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|MX1fqusWtQ1q1pE3w-oKRsxI17fx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.01|202.9|0.71|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|MXBC2kZUiA3yUPyycjwkzCgrDvbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|188.3|0.486|7.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|MXCCVLgq0e-fiBJD7YwOQtozA_Vj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|216.8|0.64|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1126/science.1254763|MXCpFAtJ9bTvj72JJqtrKXUgbA1Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.792|191.53|0.46|7.01|['SLG', 'FTO', 'TiO2-c', '3-OMe-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', '3-OMe-SAM']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.189|MXGTyywh9-h0ZJQ6P4HcYZ0s3vW9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '3-OMe-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.73|137.0|0.57|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|MXMfR8xEr4OlDs5yK10yn9GWuDHK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.426|70.19999999999999|0.8079999999999999|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|MXOZjv216SWuIIeOzrgcJhE2BRHm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|36.0|0.54|1.84|['SLG', 'FTO', 'TiO2-c', 'CeO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Ce2O-mp']|bulk|https://doi.org/10.1002/pssa.201700089|MXP_GQOpGKUdtJgJX63kMBDoGUlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CeO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.01|19.0||14.01|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Graphene', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; Graphene', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.07.030|MXb7RloCemdd5Flfmyh2Gu_6gbK6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Graphene', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|231.1|0.52|11.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuMePc', 'Au']|['CuMePc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.067|MXfHUt_sI71_bv56f5bbuPfCHOgU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuMePc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7809999999999999|43.2|0.46|1.57|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|MXqS61YwHtniE-MOhvyX7f11F9AA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|164.0|0.66|11.45|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c4ta03087g|MXy7nQ_Z8DkmRTVQJfgyYf3Tjweq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|223.6|0.62|13.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-PT-OMeTAD', 'Au']|['Spiro-PT-OMeTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.11.015|MYBwt2RowbrchSSaNKyLUxgjlG2F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-PT-OMeTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.067|180.0|0.68|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc01103e|MYSvY2zwJ5Mze2ZBtYAnML0DRum4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|23.9|0.31|0.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FTO']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|MYTnrHUZ7MegC3QzSYq5-ajtlfug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|142.89999999999998|0.57|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|MYZNvuXhq0R8btBIxVtWTxgRoCLT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.83|187.0|0.599|8.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|MYeJ900Rn8vm1Y3sa818zNFKR80Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.646|193.25|0.636|7.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||MYkglbXiqfsDzTrJ2lhocIdKrGw7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|234.7|0.53|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|MYnEOVwE6zZy3HU8K9fXRy2We1_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|169.7|0.5660000000000001|8.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Decaphenylcyclopentasilane', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings8120461|MYqidKMGcRgsZDWptnrf2vAubbF-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Decaphenylcyclopentasilane', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.104|173.0|0.8190000000000001|14.6|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b01217|MYrNCzY_reRESzLcQI5c3O105PAP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.1|227.8|0.69|19.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|MZ2yHNlejh5ZEiTeS7TZx8wz3gxs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.894|97.9|0.52|4.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|MZ3K0F3oaqFaPP3nVxazORif1K6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']? The composition of the perovskite layer is MAPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|46.7|0.5|3.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1016/j.matlet.2019.126619|MZBrnmBjplckm7Vv60oLh6izXkG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.640000174875072|0.91|79.6|0.544|3.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|MZKs4M5kQgNHDgI5eL9fqqaQlzQm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.5|0.78|17.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b06788|MZUh3-JTsLFRcqzTZSuCdJ9zsAcA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.87|0.04|0.55|1.9|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/pssa.201800894|MZmBPTqyuPp9Ff_aGQs1aDTatWhv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.0|0.73|18.06|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|MZwtSlhDpdV6n5E5W9XzKxLWwa6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|197.4|0.57|10.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['t-BPTI', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|M_7lF3AhJsMajGwXDZW4AZT4A1Dr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.064|224.0|0.7390000000000001|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|M_C3Y5BB2T5-UKFUfDy9j0mmbQBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.7|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|M_Darz_hOTjqJYWk-_gslhasASsC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H30I14N5Pb5|Pb5C5N5H30I14Br|MAPbBr0.2I2.8|1.5970001702899328|1.065|229.5|0.7|17.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep44603|M_E3jDJAEoZRI5HBbFnunlX473Ew|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.3|0.8|19.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|M_IdkQ8PnadNXY5JBqbM5VgB0JcG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|198.0|0.7559999999999999|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|M_Rc8Iy8582A9pte4533xMtFT-lT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|118.7|0.764|8.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|M_iHYY-fb3HI95g-XLbfI2MlKadk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.05|235.0|0.763|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b00356|M_jZx2ZChilvL-2hWUDojxqYlnhE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|207.0|0.79|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|M_pFmG0WRxX-M-qURDRe29KXpXdp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.11|224.57|0.778|19.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|M_qee5HARo-XyMNK7u-Fyqt1Jtnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|44.0|0.63|6.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|M_s9e7aVhcVbrdJC6u9rsCOHZ9Qr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.60000000000002|0.742|12.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|M_t37rlLzSlsSBl_HyeYVsUqqPXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.7|0.752|16.23|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|Ma4rEOc0O8jirgtqyUb8H4p9q95D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.8|0.799|16.52|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|Ma5AUhDY5KWAmDdyHUK78jFNc30g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|226.0|0.64|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.078|MaH42i80l0BmoVyfRjxXUgp8-cgO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|56.0|0.482|2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/am.2017.91|MaMkcq__WG6q5YqXDP_utj-SRJUW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|198.0|0.6|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|MaQRAGi9hvVvniarN0NgeQeTOo09|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.87|205.1|0.7440000000000001|13.33|['SLG', 'ITO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Al']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06403|MaYJNvw6jaCNsayg4tMreMgwEtEE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||16.72|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanowells', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanowells']|bulk|https://doi.org/10.1007/s00339-018-2251-8|MaaJWLncIWs4VMHsbSCgiqs_2f9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanowells', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|148.0|0.58|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|Mac03Br51rSFdEF4jNk6tdOjIIVk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N21Pb20|Pb20C20N21H120I60|GU0.025MA0.975PbI3||1.058|219.9|0.75|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|Mae7tXbnEPGHvXp-HlJpTjjIRtgw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.025MA0.975PbI3. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.06|227.7|0.75|19.43|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|MaobdK6J6QPJDaTSuc5drMi7FugG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|MazImfOJYnyz9exyXT__AeY55PYJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|163.0|0.608|7.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|MbHDlba6GhgVqTzA46isWL4SxIXV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.0|0.67|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|MbNPqJftr4prBXYYzmUUgjR-PU_t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|222.0|0.7809999999999999|18.71|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|MbOglhTZnPhdLCBCY4Pd2MZbpo2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|231.0|0.748|18.88|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab55a1|MbPrpoohacKiGplv8QWgSJv1GEPY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.4|0.73|17.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.048|MbQfGvNP4qWR-JeqCbXuriHGZJXC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.9|108.4|0.6|5.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|MbffE60849XHJQyEfLMZHcSY9rDt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|80.60000000000001|0.52|3.37|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2019.05.055|Mbfp4WjJYYzJR9o-GyRqVvMjcYV1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.73|0.768|17.56|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|Mbua_JfZrwYoRny_5_s04QRNcVgS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C20H120I24N20Pb15Sn5|Pb15Sn5C20N20H120I24Br36|MAPb0.75Sn0.25Br1.8I1.2|1.7300001844718749|1.04|155.2|0.78|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|MbvaRnBMEa8NmRoCFt1npz-Mozj8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.779|33.5|0.68|1.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201304022|McHVxzQEGW2SJb7YPqr_dorgZZuc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|227.0|0.71|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201600767|McOoxAAu2hmtQyFjyj_KlaH6pZbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|232.0|0.8|20.1|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|McYuQdhjNz1HRIkJKVaOhCiNVnyP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.055|212.0|0.6970000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|McgeIwJoUVRMkEVxGRIrfb7pFwWP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.1|32.0|0.68|2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.3389/fenrg.2020.00100|McoCI3PbVgRIttyXOPf-b2Om-XqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.1|0.73|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|MctoHfmyhCaNr3lXFdwwlehK9gMw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|169.0|0.57|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|McwnrALQOCVMgG7RXoqHH3ZJ-0dF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.13|217.0|0.75|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.08.006|Md9UogwsLck5w2tjATUwiufWIhqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49|||||14.5|['SLG', 'AZO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b01101|MdAioN8-2DptI_JgnCmiTvnFKTGT|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|175.6|0.562|8.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP)3-C8', 'Au']|['BTT(DPP)3-C8']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.034|Me-3GR_JftxRjGFntBRaRVw7TQll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP)3-C8', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.1|231.0|0.67|17.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|MeO4e3qGf_I9hOsi2zUbutrWaQsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.7|0.74|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.037|MeUZQoIB-qom4OCKTcomlcoLzDc2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br25C50H258I75N92Pb50|Pb50C50N92H258I75Br25|FA0.84MA0.16PbBr0.5I1.5|1.830000195134989|1.01|186.7|0.69|10.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.3059|MeUiKSOSJOxBMYVIDvLv7RZEAnjR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|237.0|0.76|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|Meu5gizwNpAKSt0B5JtRKa9eZFyL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|97.0|0.6|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|MfCECxGW0LmpKyJCDwQVpSaRylk7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.02|185.3|0.619|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|MfSEAO_Owt0pQWkmipElzCZQX1bF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|223.9|0.682|15.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|MfXgOv-h1iev8hs0CBUgGfkwv-uX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|229.0|0.8009999999999999|20.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|MfbbMgcuWSjHU_z3A6SoBxMUcwW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|67.0|0.32|2.0|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|MfgJ9-XKauXovH6x-fCwRpGMfd1W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.4|0.713|16.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201700139|MfpC1KIvvpd1Jb7rcvOlnGfMhSps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.3|0.35|7.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|MfzLpHY_XF3s-qsz6nAim3UKUOdT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.069|205.0|0.72|15.8|['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/advs.201700463|Mg05wrcEF4T26k0D3rLVyonMdGHw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.03|75.5|0.5|3.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|Mg9eK4JNRfdFIu0gv5_1KkAcUbj3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.8|0.7390000000000001|15.56|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|MgMR4tcQtA6zJR4uVeIHvysJXVhV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|135.0|0.584|7.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/am.2017.91|MgMZF6feyiYLuTPBFknPKqSCPPkA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20F2H46I16N6Pb5|Pb5C20N6H46I16F2|(4FPEA)2MA4Pb5I16||1.14|186.5|0.8079999999999999|17.25|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|2D|https://doi.org/10.1002/adma.201901673|MgOjiKu2jJMVzwKlPM_i98rg4m-s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is (4FPEA)2MA4Pb5I16. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.97|79.1|0.486|3.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|MgQSUPXxSPx65kEsgL2I2ItiyYyO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||1.03|237.0|0.665|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|MgQhLBB7zlB1_Ur8zWdET4D3AhPb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.0|0.664|14.7|['SLG', 'ITO', 'Au-np; TiO2-np', 'C-PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np; TiO2-np', 'C-PCBSD']|bulk|https://doi.org/10.1021/acsami.7b11795|MgZERZTUxfNKlXkBj721qGmwFE4t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np; TiO2-np', 'C-PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|16.5|0.37|0.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|MgaVeZxUG53E9W1nTyLbDk-moHEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|135.0|0.55|6.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta08019d|MgbDW5ch2N3w4YGEFYPksWFiydnT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|100.4|0.53|5.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'TPADPP-1', 'Au']|['TPADPP-1']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2017.08.007|Mge1bhAa12M-LDVMlZ0x8bBD79mt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'TPADPP-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|114.0|0.56|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1049/mnl.2017.0876|MgewVTVNOP6Fvbuwp6Gnjwdp0bhl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|11.3|0.72|0.072|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|MgtI-5P0EWd_czk7VAAjjxSUnXAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs5H497I249N175Pb100|Cs5Pb100C96N175H497I249Br51|Cs0.05FA0.79MA0.17PbBr0.51I2.49||1.09|228.0|0.75|18.65|['SLG', 'ITO', 'PTAA', 'Car-ETTA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'Car-ETTA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta02956d|MgxtMtyPhswPfJzD8jbHfwRsChZf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Car-ETTA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.045|195.4|0.624|12.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|Mh1-FtOzQ6MW5mESoZakLihF6-fZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.97|206.5|0.62|12.53|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|Mh9DTEWZyQTKk_fyPEaFuLP3F07v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|220.7|0.7240000000000001|16.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|MhDR-6vgt1eF90f5UNXswPmlj6gU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|223.7|0.7440000000000001|16.07|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1039/c9ta04043a|MhYEw8nG4lmGn0z9JLNrNEkJv2iC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.06.018|Mhc1jDPG6M0pbKYXv_7X7UwuSsa9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.4700001567477778|0.79|164.0|0.612|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.05.122|MheQv5_2ro9nURL4G6XxV3HVpxam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|208.0|0.7709999999999999|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|MhejTNQzlM2I6PoM3Rjpur5GDaS3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|190.6|0.6|9.98|['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|Mhf0BwO_YGA6Q5qxNel4N_ccFQ4m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|229.8|0.76|18.68|['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['Si-OMeTPA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09716f|MhmCiOaCiLVRY2Ykh1_eWIx96Lya|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|217.3|0.614|13.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|MhogRXGre72Uo2axckTK6jCyK68X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.09|237.0|0.78|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00293|MhuFptdEvYBz8WuGosGQbd2AKBmg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.06|226.9|0.72|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.03.031|MhyvT1vXzsaac6JlJ-wxopD08lAu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.96|220.6|0.6940000000000001|14.38|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b20933|MhzNWG-9a4GQoJYgpMQXlARSYNda|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|182.4|0.47|8.33|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.09.070|Mi1IhrBAkE28uRyLqXTdApV5JQD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.653|144.60000000000002|0.371|3.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|MiF0IXhLSCDCx72zybDFPwZf05yW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H299I150N51Pb50|Pb50C50N51H299I150|FA0.02MA0.98PbI3|1.5100001610130236|0.99|181.8|0.728|13.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/2/024208|MiKSPJS2LX8ZuAvooHo47kseJQrn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.02MA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|164.0|0.65|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|MiMlR1HC4_K1DTvRSXff-2TmSvFv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.3019999999999998|77.69999999999999|0.8029999999999999|8.12|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|MibW1Y5SLl7rT1waXvlbtodu9ARr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|170.3|0.62|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600229|MibYS9CjTrj0Eb5sQRri_OlzgH8q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.0|0.742|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|MicOCkeJLcA0ZgXUdx2fOY2GKmfD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.1700002313895768|0.7|47.400000000000006|0.59|1.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10739|Midb2ARarEQeZRZ-71S0-VCZ4-8k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Sb2I9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|168.0|0.74|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b09160|Mj2KI000PVbYEMCc4Wdd64C42YRZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.4|0.71|13.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|MjY3gX6ilKzyyj9B1XpMLrkJqrHm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2000001279573695|0.35|276.0|0.59|5.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/c8qm00620b|MjjW1LLsNYBk4hcUKBXlylQZWMnH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br3CsPb|CsPbBr3|CsPbBr3||1.426|70.3|0.736|7.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.202000199|Mjs6HMibkA9EZbhnN07zUK0o9teC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.4|0.76|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|Mk0MTq4BtbzviWZrEPL0-np7lak8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.06|184.4|0.73|14.86|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|Mk15kU8F33z6o8AcrKh2uja3tRTO|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|62.0|0.44|2.6|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/C4TA05819D|MkBUdbHJT9SHI9f33Ejs2VUjjyD3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.0|0.7|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900138|MkQcf6uCb8MLYs5sx9eh46UYLnxp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5500001652782691|0.833|207.0|0.519|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.05.050|MkRF2IA3v5U2K4E8DFuuxxphWzSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|1.071|221.0|0.71|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|Mkf0XcOwwYBI_SEszMi0SRIn28st|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C37H491I272N108Pb88|Pb88C37N108H491I272Br9|(NH4)3.4FA0.15MA1.7Pb4.4Br0.45I13.6||0.99|182.7|0.6629999999999999|12.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|MkzVOoSbAD5KJY48GiwvIu_9YbY2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)3.4FA0.15MA1.7Pb4.4Br0.45I13.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|213.8|0.732|16.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|Ml33gYim94gKg6SuhUptYDQjjGef|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|208.6|0.631|14.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00948a|Ml3HQTAwTsvIMX8NSNH_DQa8KAnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|210.0|0.62|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|Ml65f3rZ0nye199WM3C3x7m4OCWA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.928|240.7|0.733|16.37|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|MlBA3IwohCwO8aaSHTZXe-CjdZYf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|143.0|0.47|7.0|['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c3ee43619e|MlEISgOJ6s-Od8yq2jBPe4x9NGQN|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.65|11.56|0.5820000000000001|0.439|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|MlQzZaNXFKIitkLHXJxwZJcsBc0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|108.4|0.607|5.0|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|Mlba45oQlxFQGpHImPaKuOso7fgJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|175.9|0.81|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ra03485c|MldqW6ZHn9Yk47LfBVQXVwo0bC9-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.31|81.0|0.45|1.2|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['CuSCN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-33987-7|MlekmCy4xUk-kfRFUA-5vLKtY5cG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.29|70.7|0.59|5.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|MlkPW0qO3eCrEQKabgYE4kBOgK0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|192.1|0.52|13.42|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|Mm-bVugZLddqoUsWSAIqx6bssAa-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.98|198.3|0.648|12.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2019.04.022|Mm2jaIQJRQrYEbYC2YoVaU4LB_zA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|208.0|0.716|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta09992g|Mm3DqRtGs0XoVARlhxZh79ki3ONP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|Mm79mTpUqsPNC-Tx2uCpU8CIJjB9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|207.1|0.58|13.17|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.solmat.2018.01.017|MmD9_PyUUgtNELRg6anxlFjI-YhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H12I4N2Pb|PbC8N2H12I4|(BdA)PbI4|2.3700002527158053|0.87|28.94|0.43|1.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c6ta05055g|MmNCl_vZSyLDKhkHxce5y7uCn7oe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (BdA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.602|102.0|0.24|1.46|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|MmT_KXnVfgYsGu_ugZJcjrEOfrG3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|171.29999999999998|0.67|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th101', 'Au']|['TTh101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.022|MmYUjiFmnzyDmzPYrfuqR5n5Zu4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.0|0.74|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|MmZZVGCwPvFsY8vUZYCbv7iQK1ma|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.1|241.0|0.725|19.21|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1002/adma.201905766|MmqeQ4pquVAl523pkc-vhkFnQT4p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.156|241.2|0.7440000000000001|20.82|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|MmuUN_0KzQjAEUHRz3PQkH767uAA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.6|0.6920000000000001|13.44|['SLG', 'ITO', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['C60']|bulk|https://doi.org/10.1039/c7ta10366b|Mmyw6GTYJjEcWciyqJk1s87Zx96D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.0|0.733|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b08489|MnQXwXUG-gRUB1wdco7PfUVypwJJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|191.0|0.75|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01939g|MnWYjbGStFUOtW1hEUGwsdTmlBnp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.0|0.68|12.8|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|MneyMScezUgfUsSeepFo7aUU0YrE|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600555|MnhQsXKiD-d40HVjeToVMWwmkIy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|230.1|0.56|12.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.17222/mit.2017.178|MnimbRAQ_MbgyO3xmq6H3VCGSUK6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|223.9|0.606|14.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|MnpwmQKEcplefJEhFVt33eGg9kA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|169.1|0.945|12.31|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1002/solr.201900499|MnswG-3fDEJNeqJR1ddPUgYLKfRd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|Mntlqva3fVdbvioPaQFwZWG2D4u6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|144.0|0.4|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8081|Mnw-TRVTdznv3LkPlBQtOWacTjvf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|193.7|0.642|12.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602822|Mo0F7PkrfLhCTWpa90P2UiDD7Qjd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.8|0.77|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00303c|Mo2Zm4c1hsU3yoUOEwX3yyfufWlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.71|128.0|0.574|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|Mo8PaK3b7MLF12VdYN83B643XFJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|206.2|0.8|16.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08995k|Mo9eTv0CdLtPZecJ1WcTRqED0JKx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5790001683705723|0.8|155.0|0.596|7.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.033|MoBITbOzuimpCbXs1uxZv6rqmKSb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.07|213.9|0.78|17.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|MoC6H5o-ikvThcPF99JO_phAjiPS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.51|2.3000000000000003|0.4|0.047|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.513|MoCxKDtalCy35CIrqUOhAbfd_bKR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|221.0|0.76|15.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|MoOuGrWETp8ZEFxOqezxL_5kSqrh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|114.1|0.4029999999999999|3.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|MoWlCbFMmV7QmC8IpNqv7GE2Nc4l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.0|215.5|0.747|16.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700797|Mo_rvM4-S6Ll09QKSZY_PGdvxiKk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.09|203.0|0.71|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|MoaiK0emJp2hEE9bbUUiM1EouD7M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|171.5|0.705|12.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|MobjYC4UJ0F1EZNeqi7OniIYqB_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|116.0|0.73|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b00050|MocVfj6q3EeYbT9NCiqbJKxS3Vne|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|212.3|0.76|18.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNDI-2T', 'PEIE', 'Au']|['PEDOT:PSS']|['PNDI-2T', 'PEIE']|bulk|https://doi.org/10.1039/c6ta08526a|MosGop3d75UUonO4cgRkbc7UilGQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNDI-2T', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.129|180.6|0.619|12.62|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|Mp00gfig6Jo-GdYzGaQPHO4woZFB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|122.7|0.65|6.29|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2015.07.028|Mp7_MOro6cXn9jVecbrJPEJhd9TW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|186.52|0.6559999999999999|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|MpMRSUpJW3zhNfxhgrdbxsHVvqfX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|204.5|0.72|13.14|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.106|MpMSinZqXKBwur6uoJDf0EfYEyyW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|149.0|0.71|11.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|MpZGDlLi-sfprlLPP677lN74ullO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|189.6|0.6890000000000001|13.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|MpqGHx80iVTFxVmt8E71bAfy-ynU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.1|226.5|0.79|19.68|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|MpslzBshzAV44Kz-mjmB8XG_zWmZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|88.9|0.5529999999999999|4.32|['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']|['TPB(2-TPTZ)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|Mq1NpwZTdTnjwjcf22UNRJPSQwz6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-TPTZ)', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.15|244.2|0.769|21.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s40820-020-00517-y|MqBU6oNvlgVk09oO-QDvndQBJjsl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|174.0|0.6409999999999999|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|MqCTl77HlZgpfrBW0-Xv7tTSRHMZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.952|233.7|0.79|17.56|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|MqEwHkOi7-TrMyfAS1eJMGekY3NJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.03|224.6|0.741|17.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']|['Spiro-MeOTAD', 'Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25975-8|MqISrS3QaIuXZNy9s3gVbtOeVPXE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.01|216.9|0.78|17.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|MqMDsinsEyTRP4TnWG6AvZsR8d9b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|105.4|0.59|5.32|['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|MqV-Po9E9-Tksf8rYTYJWsk3N3fl|a perovskite solar cell with the following device stack: ['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I10N18Pb10|CsPb10C9N18H45I10|Cs0.1FA0.9PbI|1.5400001642119578|0.9|15.6|0.616|10.92|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|MqVJt9_Ko8SGjjYbYVmqO9fK2mg-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.3|0.718|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2017.14278|MqY299yJIOmeiAfw2vvUO-HGmo7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||0.976|229.0|0.775|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5098336|MqZ32ZIBXBHNCTMEqljUjX3Q4wGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|194.9|0.77|15.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800103|MqfFe3dTwS7dc4t-dKnpqENqHO5N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|181.1|0.81|16.0|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc00812h|Mqh0gduuRrN6uQToQMGwBmH-mBnJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|174.3|0.61|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BL08', 'Au']|['BL08']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.008|MqiVC0WryIfaIKIxB7lNgtxczLtB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BL08', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.2|0.721|17.32|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|MqlBdRv778DNCGRd8GxCc233w48v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|183.4|0.5760000000000001|9.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|MqmNN0PYjpdmbPM-aaNzNrhwPYJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|125.0|0.64|8.0|['SLG', 'ITO', 'PTAA', 'Perovsktie', 'ZnO-np', 'Al']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra00248g|MqnCJFGckO-4SbjC81Qw3alIWc-R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovsktie', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.874|167.68|0.661|9.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||Mqo12QuByn5EiOG2nvXdpnEe9Yca|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br204C380Cs20H1957I996N703Pb400|Cs20Pb400C380N703H1957I996Br204|Cs0.05FA0.8075MA0.1425PbBr0.51I2.49||1.08|228.4|0.757|18.83|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']|['Co-Porphyrin']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.9b13278|MqvXsBAJkdVjyY0f94Qu_EmHF1CV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|176.0|0.611|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|Mqwy6chEWSspMSifz_xli6M1g45I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.0|0.58|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|MqyGC-Tf2driHgAOynWxilllodHU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|118.3|0.56|4.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2014.11.003|Mr0F1x1HG1feyVuvOI0qw3EmWltU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|112.2|0.487|4.54|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']|['MoS2']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.012|MrCR2i2AlZ-v2xGRGDGe_KNY-r_Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C4CsH20N8Pb5|CsPb5C4N8H20Br5|Cs0.2FA0.8PbBr|2.2800002431190025||||12.5||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|MrOPzjVPopz8oTrdYYW20lDx0laD|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.810000193002366|0.96|121.2|0.588|6.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|MrPr8z1bFiFONQutY3zh-GhOg0sB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.094|159.60000000000002|0.733|12.79|['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']|['CuO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.012|MrQIJMRuvdv2GntylhlVMDrMKbL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|186.9|0.5760000000000001|10.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HPDI', 'Au']|['HPDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra06876b|MritYm6psR9a71TETc3mGRm74B_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HPDI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|0.892|206.0|0.58|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|Mrm2wPp2ki926Zx008xI6w_pdhDw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.06|83.9|0.64|5.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|Mrp4G7AXmtUeUqiOEAvScnB3HDja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.145|220.0|0.732|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|MrpLaObMP_ztxkeqeUfu3NR2MA3c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|205.0|0.752|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|Ms2kEZ--lWK852VrC9zi40As5_pa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|181.9|0.6970000000000001|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PS-b-PEO', 'Ag']|['PEDOT:PSS']|['PCBM-60; PS-b-PEO']|bulk|https://doi.org/10.1021/acsami.6b07690|MsAxw0swo7V0TpDTg1xDnScE9-Lu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PS-b-PEO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.946|206.0|0.5429999999999999|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|MsGOJJGeATc8OuliWTwzTQfIOoTV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|173.70000000000002|0.617|11.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|MsJGwreta5RH_Q228svpA_FvzysJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.81|97.7|0.51|4.11|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.10.041|MsN5tyYn6OPiGW4p5Dz9ssRf6-Ep|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.05|175.5|0.619|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|MsNNg4RuRZYn1g2jkKKltpsmuOSj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|20.0|0.3|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.7b03243|MsQ7lYHpWJXWPEOdcnTdhcKra11u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.0|0.7759999999999999|13.6|['SLG', 'PEDOT:PSS', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|MsQBEQ8B9fdi7Nx8KU5gRu9lyw7o|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.92|217.5|0.68|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|MsbyR52Jz5-UTy4gv2Kg01wmfYtx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.79|203.0|0.696|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10854-017-8094-9|MsedRw-SnWWk7vCabSBtH0Ylrrdu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|227.0|0.63|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|MseeQiFk_zKqaryfBG1_bf1iNogi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.0|0.57|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cphc.201601168|Msi2JjfaDSxpkDYLqNXZXOVzzu3Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.079|228.0|0.733|18.0|['SLG', 'FTO', 'TiO2-c', 'CuI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CuI']|bulk|https://doi.org/10.1002/aenm.201702235|MslrJGcuTvclJvT3jZy0iiMNlJIq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CuI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.1|140.0|0.71|10.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|MssvP3b4_xWFDLT4GhN8ZFZvaMre|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|101.0|0.68|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|MsuiQnXQ9orFi_D7yYCeAPZiUROe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|193.0|0.71|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.9b09182|Mt2Oh8PXKjgKC9IN9xAsqF3uxSg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.12|141.7|0.6629999999999999|10.51|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/advs.201801117|Mt8eM6pedsG-f4GpVQAFi64gTok1|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.2|0.81|17.41|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c9tc03684a|MtTS_lpQ2ii-plVSemFHdfJKm8T8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|192.0|0.742|14.44|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|MtVRzfS_oy9uFPZ8VB15qDOOtytc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.79999999999998|0.706|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee02465f|MtaZognZwbCEQwFlTqmpVP3aH0LX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H542I246N123Pb100|Cs5Pb100C95N123H542I246Br54|Cs0.05FA0.28MA0.67PbBr0.54I2.46||1.0|179.1|0.777|14.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|MtgOBHImIbXCxWWOK0oZDIA2IAYM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|167.60000000000002|0.53|7.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp509753p|MtkpNXQPIPbcZx812hG9uj5XbzzV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.3|0.727|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.108|MtvAuXGlkClQxzELwkZXAt_jj-QB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|226.6|0.8|16.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|MuDQWgQm62XK5opbKF2RiOFJGXjw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|164.0|0.741|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800324|MuHmOtbcq3SdogkB9_-OVZa4A3A0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|171.1|0.7|11.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|MuSpuMgjMlXKCIxdVl0M06kZSqNd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|99.6|0.3279999999999999|2.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.08.031|MuV9dQW864bEMZ0RXpi_lPXheXs-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.3|0.618|13.91|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.6b05862|MuWAY66i48-ucBE2GBcw7_f77pQm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|231.4|0.79|19.63|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c8ta11651b|MuXxGA9w6EYVplnQqkhonafVlV-B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.6|0.645|14.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|MubmYbG27oVY7wN4bxJ22D4NZiuy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.55|57.0|0.72|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,Si‐heteropentacene', 'Au']|['S,Si‐heteropentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201800680|MukA5fq_7n1dPMlYWBHbMhcx2cab|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,Si‐heteropentacene', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.5|0.72|14.4|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|Mum34MkNPzQgfNpVDz47V7U-Iy9l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.17|41.5|0.491|2.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C8TC02754D|MumdVi8lZ5T7KDRv0MCmoyBxV_Yf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|210.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|Muryj8uV8CTViOTJhUZTba-veqnj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.9|120.0|0.7|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|Mut0lqjyOgcq7_OiRJ6qOyPKOcl1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.3|0.73|17.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.7b02160|Muwl5ZwI7h9WDWWAUliRNZY5Th4k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|182.8|0.59|12.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-4', 'Ag']|['ZnChl-4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.11.005|Mv7lw2pPOyJwv8TGZRObIeWeyAuP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.3|82.0|0.42|1.2|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-33987-7|MvA9Dc5VCXRxhnvoWpN94nC9k6E5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -C100H519I233N181Pb57|Pb57C100N181H519I233|FA0.81MA0.19Pb0.57I2.33||1.02|202.6|0.63|13.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02717|MvAHKqVFEO5r89qcO5hD06iLvIfp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19Pb0.57I2.33. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|188.0|0.65|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1364/OE.24.0A1431|MvMJU3I1u8GLS74tRUs5nBUSbh_s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|MvOegBxwUFefmgU_WNFLMrH3blGd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|120.0|0.52|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2018.08.005|MvYh3dDsoDKO8MkFTTYWTXN2wiJT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|229.8|0.731|17.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.028|MvfY50A0c7871Mz3r6WTDrPgLOIc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.0|0.802|17.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1063/1.4901510|Mvgf7z37GdhkXZSf6_-t5KeW0Q4w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|180.0|0.67|12.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|MvjiNbEviywFWY8vYMdj8zmul_NA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|||||3.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'OCA', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['OCA', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b17535|MvrKVjbuZneVvnWC8PSxSRgzrlb0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'OCA', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|215.6|0.6|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|Mw4EQV77H3DD51vexx_ldxYqGE2W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.7|0.72|14.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|MwDGCnpmdn9ctlVAicUNhl_3z614|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.39|222.5|0.61|5.29|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|MwKoeoUctSr9Siu3G9l3vhbLDeN2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|139.0|0.6|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/7545914|MwLDemoaPhjQmUZsNGowqMP5fmBG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.9|0.695||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|MwYfJnlUN1Dzhdk6LlUCBL_kSVF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|72.6|0.475|4.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|Mwnzy2rBIZCrnqz2_I1AgFHXuFfm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|236.3|0.727|17.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|MwvMmfghO7TqOllBfmMxgc70vhMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.0|0.777|17.2|['MgF2', 'Quartz', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np', 'PEI']|bulk|https://doi.org/10.1002/adfm.201901476|MwzUUCD7N959I8BsEcdlvPOhLtYG|a perovskite solar cell with the following device stack: ['MgF2', 'Quartz', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|117.4|0.527|5.76|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDQT', 'Au']|['PDQT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|Mx-YPBmvyxJBz1e4H0lMYfCPw5SP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDQT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|175.0|0.547|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B74', 'Au']|['B74']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7691-y|Mx1hbktR2iR-1Sp_8VCVZVc9-3Ss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B74', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.91|186.0|0.6679999999999999|12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|MxMH3tGcv6O5ASzzKTH4SDvZJf2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|66.9|0.5|2.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1111/jace.16284|MxNce6TA8zbs4zB2gJUrw6LCcuD5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br21C40Cs100H200I129N80Pb50|Cs100Pb50C40N80H200I129Br21|Cs02FA0.8PbBr0.42I2.58|1.5900001695435149|1.057|213.0|0.75|16.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5123400|MxOZYkKBn42iPr1MPBu2MY8nSK-8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs02FA0.8PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.0|0.69|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/cm5037869|MxTTLBLz5bb5hp66tQBCvzyH6FKv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5650001668777365|1.04|228.3|0.73|18.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|MxhWrJREwjLfqZR3CJ47hYQiD8Le|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|230.1|0.6679999999999999|16.35|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|Mxr6_37yDzpdp1MpgqSaoNriteeR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|179.0|0.657|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|My-PVld7FCxirynksXWfWFFI-E-T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.956|5.0|0.42|0.2|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|MyEc1_CwHCZHoASifIPPoJ3vXieG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.01|205.9|0.618|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|MyKsdEFL5GL8Bp10HT81wC-OlBiq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|229.8|0.61|10.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|MyVbssecIBy5ycQRWgJW2TCTXnTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.108|226.43|0.7120000000000001|17.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14619|MyZN6RtMI1p99tesv_xvxqEpgtWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.0|0.65|12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ee02048a|Myb2fMCmbCF7YE9MrUH_w14wb4I-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.043|219.6|0.81|18.58|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-PDI4', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-PDI4', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06081a|MyfzK08mo2qTzCsTmD61qW8_VCVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-PDI4', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|227.0|0.6659999999999999|14.4|['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-nw; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au@SiO2-nw; TiO2-mp']|bulk|https://doi.org/10.1063/1.4966893|MygBKiF9Card_9mtlCk3pFkPfYol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-nw; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|196.0|0.62|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.123|Myrk3_zstGQTlamy85IrYnAaAx8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.97|215.7|0.619|12.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|Myyl8JUczLCB-z8gbXlu7dQqBhfi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.885|181.5|0.72|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.09.004|Mz-Ejj8l2pomcXCCkIFy53sJh1H5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br27C180Cs20H900I573N360Pb200|Cs20Pb200C180N360H900I573Br27|Cs0.1FA0.9PbBr0.135I2.865||1.085|194.0|0.701|14.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'ITO', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.3153|Mz8M3-xofxKU0mNtwmSTJj3ZNMOi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.135I2.865. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|198.0|0.64|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|Mz9Pzsd7pcWYVmMxfk1BJtgGLgMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|130.0|0.703|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|MzBUQHq-1Yy6f0olDyVBKwIzVPxR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.3|0.74|15.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2019.122436|MzBcORAUcLzwQdNURV27V5JFcSv7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|177.0|0.57|8.2|['SLG', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acsami.7b10987|MzCNqZLptbbdLDz-28M0vU1PaWXh|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|91.0|0.54|4.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CeOx', 'Ag']|['NiO-c']|['CeOx']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.079|MzExWgH7FtJAUf-2nApSL7JP5AXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CeOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.14|223.0|0.79|20.08|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|MzKFO5tlyuvDPgyiWhxNmV-_TClD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C32Cs5H185I300N39Pb100|Cs5Pb100C32N39H185I300|Cs0.05FA0.07MA0.25PbI3|1.5100001610130236|1.14|230.0|0.7709999999999999|21.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.202000995|MzL7ZCP1mBgDLOfYlcZrlODkEQSS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.07MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.0|0.68|15.2|['SLG', 'FTO', 'ZnO@rQD-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO@rQD-np']|bulk|https://doi.org/10.1002/admi.201500790|MzLCWiJ6mzwv_k2sq6K4i2_r1sRh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO@rQD-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|217.1|0.77|15.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta08970d|MzSMBsyld76_p3jBYTTbigvZzSZS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|153.7|0.826|10.15|['SLG', 'ITO', 'NO-Graphene-QDs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NO-Graphene-QDs']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.cej.2019.04.192|MzXS9mbgD5Ag7R2FOqAeBfRYHcN9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NO-Graphene-QDs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.03|223.0|0.6679999999999999|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41563-019-0478-1|MzccabQX-PD78SFdp4hjslqr5Wxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|189.0|0.68|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|Mzd6dra0dKMqdeKW3YPs5KSTIDmS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.69|267.0|0.669|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|MzfIJgVsYCABWSBvqQ3AVWjCS5XL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br267C100Cl33H500N200Pb100|Pb100C100N200H500Br267Cl33|FAPbBr2.67Cl0.33|2.300000245251625|1.49|75.1|0.73|8.22|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901683|Mzh6vd-eMU3QuuaeFSIpxLmRjrHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr2.67Cl0.33. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.12|83.9|0.63|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|MzvEq_wFSyeX467fGoRW_NJosD5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.0|0.53|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403344|Mzw8MjnDDCzFOp6Z4mlXA4TWZAHM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||0.92|226.0|0.82|11.0|['PET', 'Ag-nw; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700059|N-4_W8jQaGpo7WV8flvczX6V3zRk|a perovskite solar cell with the following device stack: ['PET', 'Ag-nw; PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|143.9|0.637|9.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|N-6YI7pyENWp4ZTG403aSgJ1nYgL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|232.5|0.76|18.21|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|N-6pKeKLvlAiJ-4_Y1XVVk1kjhkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|209.9|0.679|15.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201606156|N-AIMzkR5hQp9yiv2RIej1JWpqpD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|235.0|0.778|18.0|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|N-Ab-cb85bBzjzsap0KJDonqzFkH|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.07|228.2|0.738|18.03||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|N-Es3j1jI-ZGuqiox7UYVvu6DFdL|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.13|222.6|0.78|19.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta01755k|N-FqEN69CO9WsoX1TTJ0QB_2xAs7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.17|118.7|0.75|10.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|N-HJ4CTsUZdf08_zRdsvtAY6yuNr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|211.0|0.73|11.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|N-JucR3YutWrzP0A9qeP1FHCrvBA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|226.5|0.386|5.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpcs.2018.09.019|N-X16YrJQ-SfZalOlC5YzNghSsTm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.7000001812729404|0.92|162.0|0.57|8.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|N-cmMmTUBUgZ4HpouChi4LjePk5c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.9I2.1. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.07|162.10000000000002|0.71|12.33|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|N-nP5_02cp19Pt8O1Z52WddCQIld|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr0.5I2.5. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.19|164.0|0.753|14.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901980|N0BS6uzvYaFgJfEB_W20KeEVyLy7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|106.6|0.54|2.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.019|N0QNVqGw42qbNToL3proO3NbKH52|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|210.0|0.66|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2014.08.015|N0QdbaWvoMiONMv5ZyQudpVb5Rp1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.0|0.78|16.5|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|N0UOOfpuNErAK_SP3hgjGupq480r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|188.3|0.5|7.92|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/adfm.201500616|N0Ve_KuldLIdLantNUG1By6mjzU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.976|246.0|0.71|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QD', 'CsPbI3-QD', 'Spiro-MeOTAD', 'Au']|['CdSe-Qd', 'CsPbI3-QD', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9se01205b|N0WCKmjMJtGWb9dnDR5H1eRUV7gU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QD', 'CsPbI3-QD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C4H24I3N4Pb4|Pb4C4N4H24I3Br9|MAPbBr2.25I0.75|1.670000178074006|0.74|61.1|0.32|1.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|N0a8j_dMt2ul6almlFhT7-4pJiO_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2.25I0.75. -Br3CsPb|CsPbBr3|CsPbBr3||1.4269999999999998|59.8|0.7759999999999999|6.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.9b05631|N0aVzZ-r1aBYg4S9v3qNR74g8yRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|210.0|0.69|14.3|['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoS2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2020.04.021|N0j9ZIUcE9aQbDWs0VRRcbRNVPGr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|149.9|0.596|6.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06960f|N0lXAnx7epQGzIE1ShUmM3lZH7yO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604|1.13|224.7|0.7240000000000001|18.41|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|N0yxmOvvZdnuTGj-mKXf-5WcLEaK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2|146.5|0.76|13.36|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'YT3', 'MoO3', 'Ag']|['YT3']|['ZnO-np']|bulk|https://doi.org/10.1039/c9ta01452g|N14sq2lCUsHubaKhmZK3RBqaxG6o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'YT3', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||0.99|170.7|0.6709999999999999|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']|['NiCo2O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|N1A91paVBe-83Nw5-XST1FvK43gx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.73|12.6|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|N1IMXYPZ3Via7lN_cjLUXFn9ih1b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|233.4|0.773|20.1|['SLG', 'FTO', 'TiO2-c', 'Heparin-Na', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Heparin-Na']|bulk|https://doi.org/10.1002/adma.201706924|N1L6ZHvQAWOZPfp_tTl87F8jiGV2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Heparin-Na', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5400001642119578|1.07|221.6|0.745|17.66|['SLG', 'FTO', 'TiO2-c', 'rGO; TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'rGO:TiO2-nanofibrse']|bulk|https://doi.org/10.1016/j.energy.2019.116396|N1hMZjqniFO94AwXwKjHofX148Zo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'rGO; TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|219.5|0.7340000000000001|17.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|N1hxw3DGbsuFEno-akB96z2fUIkp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|187.0|0.693|14.0|['Flexible', 'IZO', 'PEIE', 'C60', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'LiF']|bulk|https://doi.org/10.1080/14686996.2019.1633952|N1jyMeaCHPGWXUHop_lnDZ8C_mGG|a perovskite solar cell with the following device stack: ['Flexible', 'IZO', 'PEIE', 'C60', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||1.03|243.6|0.61|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|N1npNIbj0uRh55pOn-TNyqICH25_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.2|0.73|15.9|['PET', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.joule.2019.06.011|N1oC1-eAkOd6bsb_VIWQwsgJ0mAr|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|216.0|0.6609999999999999|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-flu-ZnPc', 'Au']|['ZnPc-flu-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|N1s2LFWaksVVUtOgMhfAhb2rxaBZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-flu-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|210.0|0.716|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|N1zTZirSOSRdCWPAs125XVH2Rvr5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|155.0|0.67|10.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b04338|N2BwufnDXGKUsDmRIhvYzUNS89ov|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|52.1|0.57|1.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201301327|N2TOPAW9kbnF8p3JRi1MYDPJ3MmD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|193.3|0.785|13.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|N2V6Mhj_7AJ3g8leKvZuN7AII9re|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.08|231.1|0.6509999999999999|16.41|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|N2c_KGOdr56FlPpajIKPI33JcmaS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|84.0|0.638|5.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|not processed|https://doi.org/10.1016/j.nanoen.2019.104267|N2ccb3likuspmPbKBJj7rsSnkmHg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.8|0.77|17.3|['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2019.104245|N31MMJPJA5CEPlXAx6DKJ93DT0ln|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||199.4||11.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|N3FATznG5FMvdflLw9SqVDd5t3rj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||17.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|N3FoHyGTc-9E9WCbxnITGBOU2EmO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|178.4|0.496|9.11|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|N3HEZVV2OqjAlhxFP_DqjnRNyjI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5900001695435149|1.13|235.0|0.7879999999999999|20.94|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201703852|N3HNM38ru_ITJ-PrYwx2YCIAlOAi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.691|184.0|0.44|6.79|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|N3J_9T7mA479zlpXnxts6JapL0sC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378||191.0|0.7120000000000001|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|N3O0gWmk-DCoXZqJKF8hu-c774AP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|221.9|0.73|15.32|['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2Ox', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra04414c|N3QYa_nRiwjMoZvPZ-mjnR4NKeVl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.996|204.1|0.74|15.05|['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']|['MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201800476|N3_wiUKbGsFKahYV2-u8CtZ751dM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|9.13|0.7140000000000001|11.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|N3d_4GE7GyRsCKi6lRlkQMOrRAok|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.77|17.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201701440|N3npAxPKivrQCngjf-GdSAzVW-di|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6240001731689735|1.04|192.5|0.7140000000000001|14.36|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|N3wYPkhunPgZ4cDvMcVdf-cVoofk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.02|192.0|0.54|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.7b01556|N45JmyG5QcmwddCyq9rYddlPddJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|1.013|197.0|0.665|13.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|N46GxYb7zCFEUfNEr8ONftGwJZUT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.984|227.0|0.7|15.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700872|N46zqJpqDtgFdBB6LuNmQ0gxvJvF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.0|0.74|17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|N4CyfYFMuDUIz9u19xcwwsiROhOh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|208.9|0.838|18.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b11083|N4LR_QYX8RnqoZycokxPcUUJ8peX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||0.41|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1088/1757-899X/515/1/012089|N4MdVSu-KbEBXhoRyvxSYHtBOGfW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|86.4|0.34|1.97|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'MDMO-PPV', 'MoO3', 'Al']|['MDMO-PPV']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.proeng.2015.08.1126|N4PpRTbyL5xSXKt-mFcBCInH-Yi_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'MDMO-PPV', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.3|0.6|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5TA01730K|N4aIW4OGx_LC1jk01Z4iVtGqkpvc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.906|20.5|0.306|0.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aabedd|N4bJpMWFKYSVfPEy02Q5jN9UytIF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|89.0|0.54|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|N4hMKpF49G16AnzHqjT4mSEMxnAc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.05|207.9|0.68|14.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01427e|N4llUBzuiPaknpR0ZLElbYZJNxO6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.4|61.0|0.79|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PIF8-TAA', 'Au']|['PIF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00762j|N4nm0sOU8Us4i0F_o1PZgq2LP-ZH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PIF8-TAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|150.0|0.61|8.9|['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|N4qju48LpZfWKrkU_r5MqAQttNw8|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.2|0.606|13.61|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|N4zNFqgimQ4SxLl_5JpPI7IU2aYr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|N4zNgckSC-hXl-G6hr-AJ5hc0ZmO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|114.3|0.672|7.42|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.028|N50nu4Gj43UceUSrwjh2a8fImRze|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.05|211.8|0.6659999999999999|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|N53A_03FdTGChHVS_0cVlgP8fFzg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.47|223.6|0.655|6.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|N54doRb_feTPhnTYHvBkvLmkPi_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||0.84|185.0|0.45|7.04|['ITO', 'PEN', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['SnO2-np']|bulk|https://doi.org/10.1039/c8cc09905g|N5BqPubU9Ssx12f-d7SCtDp9GKnX|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CsI3Pb|CsPbI3|CsPbI3||0.8079999999999999|54.900000000000006|0.5539999999999999|2.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-018-9263-7|N5F04GMVLU3UiBLKubCW-EytuLnM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.0|179.89999999999998|0.58|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|N5GDm6TJ5XtMvS3J6PXUGrx9ZIzv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.797|112.0|0.6729999999999999|5.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110071|N5MGzgoAb8U8coUZhEMfLrvaID5C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.627000173488867|1.1|184.9|0.72|14.61|['SLG', 'FTO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Black P-QDs']|bulk|https://doi.org/10.1039/c8ta01408f|N5MfhLanR2-V_WCHu-YRgZNe2kLQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.4|73.7|0.755|7.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2', 'ZnS-QDs', 'Carbon']|['CuInS2', 'ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02522c|N5P5Iwu8YFJ_JNH7ERaHoEVs5hNJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2', 'ZnS-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8PbI3|1.500000159946712|1.03|203.4|0.733|15.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']|['PTAA']|['PDIN']|bulk|https://doi.org/10.1016/j.orgel.2017.10.028|N5W8K1DZfx9MqZlzp9T0NHYlQilb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|161.6|0.7809999999999999|13.88|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['IPH']|bulk|https://doi.org/10.1016/j.orgel.2016.07.019|N5hjQ9yz8EDUSMqJzQID_kr6PR5O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||0.9|170.5|0.757|11.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|N5wxqrU_V3Hr8peakSB7G30tShhJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.0|0.79|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|N6-abkNKnJN3ssn9-NJVVSRYH8kM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.6|0.43|8.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|N624s3KErJznlHFJk8T_YTqVUi_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.56|177.0|0.625|6.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800136|N654EeIWywdjqFPjGCUxUQXMD3b4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|168.0|0.53|9.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|N66x1F1lZKB4B-RyBc7IifuKnQ3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|226.3|0.703|16.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-020-00517-y|N6E1pM5roWcCh-LMDIu497KDJGrl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.102|216.0|0.765|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|N6EdPc0JYF08kGE8hUC1iqJhi4f3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']|['FBA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|N6J-i5XxTn1PULFtC2pJgkElCJZr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.15|55.3|0.292|0.28|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.04.071|N6LY7aj6OP65TlKacC-W8cDSZ-QJ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|224.4|0.763|18.59|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|N6TbLsqNfmKW_kVPNcVhojcnuLgl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|39.0|0.49|2.1|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|N6V2V37YAJ8XnnUIJwKcadTD47WN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.893|207.0|0.659|12.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2019.06.015|N6Xh5b2kJqU9u6hUEq-_9YvSiISs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.98|186.0|0.62|11.36|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr05235a|N6bBHg9ZbFM538zXEVBgXjar3wt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.3|0.54|10.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.12.193|N6fCu_YZx4Kh1gDi77EViYFFjb1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|249.0|0.772|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|N6fzR_ngbi4RDSfC66agxzbObIY2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|189.1|0.6579999999999999|12.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|N6iakbPxEwBp6pBvYYQ1E2q5Ptft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|237.2|0.726|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|N6s88w34lqc5b2ycetHlkrzOmSmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.9|0.5|10.91|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201900964|N6sfjduDmSUkfHqjSS1BiYpb0lSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.0|0.61|12.42|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.161|N6vYpaSZD6oGgQMkDHVD9Kgl_Cfn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|179.5|0.69|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|N6x6dnR0nBx_LRqmWis78z4Dn-Rw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|193.8|0.662|13.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-1', 'Ag']|['WY-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|N6xTvQqO64g_Ga0WZ4hRI1Iyhpgf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|194.8|0.63|7.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|N785nVnYedViSyaACsS-5By4QTEe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5100001610130236|1.02|235.0|0.67|16.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.037|N7AdhM79Cy4dGLtss6fgp6KCHRX6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5800001684772036|1.05|215.1|0.764|17.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']|['SM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900011|N7HtXkPRaa_hwVUrk2K8FtRdVcY0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|210.0|0.75|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr09819c|N7KlMPslWB9ow7IsdbHoY2SXrX49|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.085|113.3|0.253|0.24|['Mica', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b09166|N7U7Y1rddapmCKHYfDqKgJnqpUS-|a perovskite solar cell with the following device stack: ['Mica', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.0|0.69|15.35|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1149/07202.0275ecst|N7WCEc0KghflpYqnrrSAeelF9w_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|132.3|0.617|5.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.08.031|N7c3utBaRMaA9GTjBJ-5H_348X88|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.072|228.0|0.73|17.93|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|N7gcKO_PKTqxrQviypsmCznu5zLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|218.0|0.7609999999999999|16.9|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|N7uiaqWN_LBo_f5CyfjT_JINVDN8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|240.5|0.79|20.45|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|N8YKs8u8YkDAxAw5yqrl-UEtWjAQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|218.0|0.795|19.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|N8ZpYULuxYEcA2_gb4lyLsZ31pLk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||0.94|182.0|0.56|9.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201705545|N8rREg6USDcBwTK-MVY3QRcvQXYX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|82.6|0.76|8.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|N9ImPWnxk4nFVc-aSysnU603ih2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.038|165.0|0.7|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b09160|N9IvOYTg9OPPhNGgfJdr_a4H8mqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.0|0.578|13.1|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|N9SrCC8jZ99VECMDm95opImgYlUg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.5|8.2|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|N9a3mikQCiFePR5eD3NxsHxLFjyy|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.3|0.74|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|N9b-2GwDX3s_TOB7bUIDjO2HEKS9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.3300001418194185|0.58|246.6|0.69|9.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|N9esIHpYBxZX4__Yab6eWDKSOp1u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|125.8|0.37|2.71|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.008|N9ljRB_8qLjL3ywH8BZ_cjivwNtt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|212.1|0.727|16.49|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nw; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|N9llsdbwgk_T7LS0k9z8Y3CQzrmS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|205.0|0.5870000000000001|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-6928-0|N9piwmk3WTxt2ChiWYh5n8RoyS2G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.53|197.1|0.39|4.18|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|N9wJ_2CsuOolwOnvRDLxf-SPZ7zY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.417|11.0|0.645|0.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']|['NiO-c']|['ZnO-np', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0113-2|NA9KVWwPJ9YeXt95CR1oDRx0hNfK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|224.9|0.754|17.49|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'Ag']|['CuI']|['PCBM-60']|bulk|https://doi.org/10.1007/s11426-018-9386-5|NABQXLGmFWAIxOBFf1CYvAGUB9ph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|227.3|0.76|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.031|NAINSVwWxhpEoIBGPmd4Egw6L-Ub|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|219.89|0.66|15.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|NAKLuXBEjubgaQcqy0ZkAn-cISqN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.3|0.74|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702052|NASI-WppxwXo6KlLxlvTJOlB5YtQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.43|7.0|0.88|0.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']|['PEO; KI; I2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.01.035|NAV2W5OjXyyXaM3Uo5DiIoyoJcGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|124.0|0.61|6.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|NAqLd5ZVvyLOG-RoLPFHWLVjvZSD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.94|199.0|0.68|12.6|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|NAv7KYouPhAJGGRL72LvWnbFtkg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|139.0|0.677|9.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS:PSA']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201403939|NBDBPQsFpc-YX2REg5oP8Gph5cMK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS:PSA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|98.9|0.61|5.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|NBKCaTxaDfzT4km51H3sx2CYamFR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.069|117.2|0.68|8.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|NBK_HQqY6L5IZf6aSINT_j4q_Ha5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.09|219.6|0.69|16.36|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|NBXV1-CAOljo_btjAra3iNeVTJGN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|133.0|0.574|7.2|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07758c|NBkFHnO0N7aUymBfn9lWVIJF4xGE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|0.5|50.0|0.6|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.013|NBpejlTAfERYrjVQnx31zb_RGEct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.0|0.79|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr00180d|NBuuwqbBD0jTGS0T2Z48AiX3cf2P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|170.7|0.7|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|NCLr2YHZvtLq8Y6V_JWcv2kzz77d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.828|1441.0|0.5539999999999999|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201700268|NCR8YNWZZVNUF_8X3cmn8lQCkr9q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.0|0.684|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.085|NCjDphEZZymP3FSFnYzzU4Mwc6r3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.7|0.723|17.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.018|NCoQZQ6etPssFBS3eInC9T53BW5e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.056|224.5|0.71|16.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|NCv_vA1LV8SmxUW8-ElnepNEu-Rg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|215.0|0.78|16.5|['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|NCyY6pZb7hCBVK96sK_OWhY0VmV1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|168.79999999999998|0.53|8.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.07.004|NCyzOsFv67Ol9mKRomROCuNRZ8e8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|197.7|0.73|16.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsami.7b15229|ND-BwYMZnqx2l_j5emqBr7K6UOQr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|153.8|0.4579999999999999|7.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|NDA4tj3v53ZsIsc3d-uvmLA-fgVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.0|0.662|14.82|['SLG', 'FTO', '2H-TaS2', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['2H-TaS2']|bulk|https://doi.org/10.1016/j.jallcom.2019.152742|NDGb5FQhCgfDT13vVQk9kPu1Mr8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '2H-TaS2', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.3|0.71|15.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00769a|NDS-1x0Fu1VnyDQigaxWUIzW0mBz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|194.2|0.737|13.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|NDYgscTZFW7dRrzevNSIjA7asyuL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.430000259113674|0.4039999999999999|1.3|0.58|0.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b00676|NDZmAsGEq4Wp-0ulLIR5oxX62MrZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Sb2I9. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.17|227.0|0.723|19.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|NDnop9tEmdobQYBIznV2q4KC-Ww9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|150.7|0.682|8.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.116114|NDx-I0lXCOFcxMRE82aF6aQ0rnY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|167.2|0.599|8.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|NE7QlWla4kk6r_caDHyxkhKteR_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.9|198.7|0.76|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|NEAYiItgsr4m_JIiDf0HEy-3yjHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.054|224.4|0.7070000000000001|16.73|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']|['Ome-DPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|NELD-AzH1SRBouan_1Sya1qtXUx4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.83|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6qm00379f|NEMdGJnGbOBIgthYjKBrcE7tK4h6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|181.0|0.588|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|NEpB2YPkpRCCowsdyBpT2Nv483W-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.8640000000000001|65.19999999999999|0.617|3.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|NEpFoSlo6R_ZOCUrywOnQlXkRdur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|225.8|0.7390000000000001|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800276|NF1AQjANXD5xP0iPfQET4nwxhkr1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|155.6|0.6629999999999999|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '3-aminopropanoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp', '3-aminopropanoic acid-SAM']|bulk|https://doi.org/10.1007/s10854-018-0365-6|NF4-9-3OV4g48kval0jmVXm3M96B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '3-aminopropanoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|181.2|0.743|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07076k|NF8470iY-n4S2xhQZTITHm6n1uoG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|237.7|0.71|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|NF8BtsVz2ha2tecqaxG2ElFmblJd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|NFF0B4sgjdbW-oKrYHrokJapCcQX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.6|0.746|17.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.04.011|NFNPd0ouOfN8o8TPUOLZ_-4cEzjN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|175.39999999999998|0.53|8.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tet.2017.05.020|NFSa11EgCgAAorNkYE94Y1_OCnb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.031|NFc9FTXHMxvyO3UAy1vSuS2pC7Qy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3||1.065|216.9|0.762|17.44|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201803244|NFctXYxuiDRVv23li_EqXBDqPnQh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|208.9|0.6809999999999999|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|NFhALIhF77789qf4V0vgxwgjKmO-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C85Cs15H442I270N153Pb100|Cs15Pb100C85N153H442I270Br30|Cs0.15FA0.68MA0.17PbBr0.3I2.7|1.6300001738087604|1.06|212.0|0.722|16.2||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|NFsDvS9WcNVB3JwwycpAUjbST_yx|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.68MA0.17PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|186.5|0.38|5.52|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.cplett.2015.09.044|NFtH0Xe_WSYFBz8cVcHcxmNuRi3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|221.0|0.64|13.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-018-6531-z|NG-c-vyLt6GA7iBjw5Do16wpwQ2T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|155.9|0.61|8.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q222', 'Au']|['Q222']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tet.2017.05.020|NGDxXJK4IwrcTTy7U55Emb7G39Bv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q222', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.11|201.7|0.7759999999999999|17.43|['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|NGPxRWhc0yY6j0OvZS9Ux5pGNmpv|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.02|209.4|0.69|15.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|NGiWezwzoMGS9_7mMy1N1ZY3HavT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|221.9|0.6|14.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|NGn_ukx--rsZ_KJdoAA36DiPt7CC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|163.70000000000002|0.74|10.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b09012|NGrq7ugyCh_rp1SO1kh1--oDk-b6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|173.70000000000002|0.58|8.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.052301|NGxMYbzdk0L85boYD8g-mWFUZyWC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.228|135.0|0.4429999999999999|1.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.10.088|NGz7N1QFoM2JiyqRJVvoUWUPXrqf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.015|225.0|0.7609999999999999|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5098336|NGzblffyOm4B3nhrSEnJ2g-OgKsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|204.9|0.68|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|NHAZDuGC1XuANw-gt2QEY3qEZtKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|205.0|0.5|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|NHD3ey37bVt1oRdGaLr5zophKQXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|152.4|0.54|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ra02325d|NHFZ9hWyoReqs2viB4oj_0jzsMXX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|192.0|0.62|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.07.157|NHHAsyj4WFW7impY5WCDj3fyzKMk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.06|233.4|0.7759999999999999|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.024|NHK91UXAFC-3v9iAIsw046Yu7muw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|223.0|0.7120000000000001|17.61|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|NHMGd7kt-w8Ip0TML-y5WVJicrwy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.536|142.3|0.332|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|NHR-x25sUuy3RimuMjgJL2mpCnGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|201.0|0.7|14.4|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.11.031|NHR2mnp3Mr_DVwcfF6Cs8RYvInDZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|138.1|0.58|7.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|NHZf_s4HX1CcFhyy1JTgJurUpLft|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.78|25.14|0.682|1.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|NHgLgtd9TcrND9h3Nl6pkHaEW9Em|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.058|194.0|0.767|15.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09657g|NHxgY3Cbeigbzedyjfjy27shFiEU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.0|0.48|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|NIAAxNEFmXLaD6pzmgh35-IfRbo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|220.4|0.759|18.52|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Bi', 'Au']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-09167-0|NIIRRBnVea5sqyluWoiY4KXssITF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Bi', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|197.0|0.45|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.223|NIKaiX6StF9FNDal3yucg3OOr5Hh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.91|189.0|0.55|9.4|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|NINupMcco9Y9wrSq7c4KcsO9c5Du|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||1.054|184.0|0.74|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|NIQA8V8O8WcNm0wSoG-wFQhnTty0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.103|236.0|0.742|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'rGO', 'Au']|['Spiro-MeOTAD', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b02037|NIXfBqaXfn-mGBSr0Gj0RwTeGoih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'rGO', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.995|220.5|0.7390000000000001|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b13206|NIbt6uuaxLNfaL-23NCfbq9R8YuN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.1|0.77|17.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PCBDAN', 'Ag']|['NiO-c']|['PCBM-60', 'PCBDAN']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.048|NIbvPwCDTAt9XqO5lo5K7r4cz29q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PCBDAN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|205.0|0.696|14.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1038/nphoton.2013.342|NIq9l6r-MQiZTHzEry4mfMojr0Kn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|178.4|0.74|12.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|NIqJQ-uQQ5vN4kbkwcWHnbs_6HYQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.725|105.0|0.61|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10971-019-04957-w|NJ-VdhcP4o3PQ-a1t4OtHGJtsvdA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']? The composition of the perovskite layer is MAPbI3. -Br4C17Cs3H87I56N32Pb20|Cs3Pb20C17N32H87I56Br4|Cs0.15FA0.75MA0.1PbBr0.2I2.8||1.15|230.3|0.74|19.59|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|NJ9u6qivAvIieSWEzCRWlb-bhWxe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7909999999999999|180.0|0.555|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|NJCcl8Ar2PBz0UIo-_OaTK8P-ewW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.7340000000000001|125.39|0.6629999999999999|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|NJCphllfLfkhadRf9RYa3O_LN9vr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|72.0|0.44|2.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.007|NJG1gLQ7biXsCR_ebIFPZBhNTpzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.9|0.75|16.77|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|NJRr7aClC3dhy75E7Di5EN_9GBWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.1|210.0|0.69|14.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b03329|NJTumK8iY3C5eufaClPmzbQP9pKl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.884|169.0|0.73|10.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Al']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c5ta10696f|NJU5Xsm3yZZ97prQlcrQCJ-w9Ca0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|129.3|0.45|6.13|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|NJcDxxc9ap6SoH0XPBjk2x9bvybg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.591000169650146|1.03|157.4|0.353|5.73|['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']|['AgI-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b14023|NJcK1HyF6GrYw9O6_09YN97xbMlm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|195.5|0.61|10.94|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|NJgrCH5m5faAByFW4BZxzUUs6SSU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.8|0.833|20.27|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3389/fphy.2019.00166|NJiesZpBDiOETZaqGURI_nuXKgta|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.2|['PET', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta00816g|NJo7wc3-_N3nhH0S1sCBabJ9ROMG|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|0.97|69.3|0.66|4.45|['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS', 'AuAg@SiO2-np']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|NJwBt28TOZZpDwWZzzOZ75JM1Dbz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.12|236.2|0.74|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|NJzU4WECPYTQuWPalPHG1bvcLvGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CsI3Sn|CsSnI3|CsSnI3||0.038|340.0|0.12|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']|['PTAA; TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10734|NJzz37yQEXeVtrwyGzGrPVd19vnc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']? The composition of the perovskite layer is CsSnI3. -C6H15I4NPb|PbC6NH15I4|HAPbI4|2.05000021859384|0.34|19.4|0.34|0.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acs.chemmater.6b03054|NK6O5BEIJvACPPY0Rbx3v0ihLGPI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is HAPbI4. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6500001759413832|0.82|216.0|0.44|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05470b|NK8X75YJ-X5_JATCJ-KTqjcd-fwt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br4C17Cs3H87I56N32Pb20|Cs3Pb20C17N32H87I56Br4|Cs0.15FA0.75MA0.1PbBr0.2I2.8||1.15|230.3|0.74|19.59|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|NKAsOC_fE1rI4b9e4S4HLF47FeXF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.2I2.8. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.069|215.2|0.7979999999999999|18.37|['SLG', 'ITO', 'CuCrO2', 'C60; PCBM-60', 'Perovskite', 'Zr(acac)4', 'Ag']|['Zr(acac)4']|['CuCrO2', 'C60; PCBM-60']|bulk|https://doi.org/10.1002/adfm.201902600|NKYTu7B4ElF_gEAwif2jT2ck4Jle|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'C60; PCBM-60', 'Perovskite', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.0|0.66|13.5|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800268|NK_xK-BJ1WyW5nRPsTPHymyHjoz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3289999999999999|0.42|0.325|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|NKdMj8ge0VmP4U3vQD6QtPX49-wQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|140.5|0.645|7.76|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s10854-019-02199-8|NKrfP4dd1nxRN8-A-ssJa3yqK-gy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|219.3|0.77|17.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta10212c|NKzwEXjW-Ptcj9mbXLNwZYZc5WWU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|197.7|0.71|12.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra01303e|NL2MXwGj0M0fVYPeajupQp-ZxKlp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H54I29N16Pb10|Pb10C10N16H54I29Br|FA0.6MA0.4PbBr0.1I2.9||1.021|228.9|0.732|17.11|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3389/fmats.2019.00200|NL2h7LVgmxzcpgX2L9up9C7ThFek|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.1I2.9. -C21H54I19N7Pb6|Pb6C21N7H54I19|(PEA)2MA5Pb6I19|1.6000001706098266|0.99|133.8|0.7020000000000001|9.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2018.11.019|NL8SWm6sUaCPv_GkIArQbPcp7WTT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|140.0|0.426|5.37|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PSe-PDI', 'Al']|['PEDOT:PSS']|['PSe-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|NLE7m4_6kpLAiht-qdznnj3OVKHt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PSe-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|171.6|0.534|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b07690|NLEgQR90yzk95PFI09Ji0j3Ch_CV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|145.0|0.42|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/app8020308|NLHyBdvEC7GBjRApKR3ceIWQClwB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|190.7|0.67|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|NLLAGRZ3AWWe-3fVum-G5VuTTZp2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|204.18|0.83|18.39|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|NLMDRKNVjg-mKT5dFSmjUSTrmZpL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|236.9|0.65|15.52|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|NLNvJjrrZEaORdXPeVtOJle5rCpG|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.02|178.4|0.69|12.39|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7cc06183h|NLRgs54zKLA5Qu1NXb56ScvGHLXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|152.44000000000003|0.65|9.7|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|NLSLHwlGP6yNPZfMJ8u5Ny7xLewy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.085|207.0|0.6970000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M3', 'Au']|['M3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03564|NLd7nOkKrrbH7IAmg0-mxT9Cjsp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|NLj1Bt1e0ST_KbK0dTWqEC_ebXzt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|204.0|0.645|13.4|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']|['P3CT-Na']|['C60; PDI', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|NLmRLqGumZNO6kM8jSvpC2_RfByC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|232.7|0.67|17.21|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|NLp8Zlh-txMMlhjSLj14QlFiR3Tv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.5|0.727|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|NLs7sKMLCUwl05uHeoh4tnsIUmQA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.099|224.5|0.78|18.55|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-07099-9|NLzESCTqTLRfTUdPFn6SVF8uG3KP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.1|0.69|11.76|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|NM38nfSXO4V5fYPQJ6azvcykXAxj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|198.1|0.708|15.48|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|NMHGfMaFRWtLydN70TkxVzZjkMnM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8270000000000001|122.64|0.37|3.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.203|NMIkDYZnxWnRMHCXku4XIltuT4rW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.64|265.0|0.648|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|NMTXPCRuiJn48E-Qhv5zyPgNfCA6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br100C95Cs10H491I200N174Pb100|Cs10Pb100C95N174H491I200Br100|Cs0.1FA0.79MA0.16PbBrI2|1.7200001834055632|1.235|188.0|0.729|16.9||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d1ta05699a|NMabxKwZWUTOLB49OoiNOFBkM9IK|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.79MA0.16PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|171.0|0.64|10.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01598|NMdH1DyHuxHqFvgH6EPfbp1KvlDX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.815|146.7|0.59|7.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C70', 'BCP']|bulk|https://doi.org/10.1016/j.mssp.2019.104813|NMdaw-LmdvrXqcZ9OY1Y7o0sYFv0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|162.0|0.433|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|NMigzFMmPC1WYAXLF_w18TgL94Hs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|199.9|0.5670000000000001|10.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|NMk1uDHEpYsCv7wM2uzAPTpIf_YQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|189.0|0.66|11.47|['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|NMk73OOBF2oJndg7W--fovi0euyI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|146.7|0.623|8.6|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|NMqvSOMLT4uVkmYgdh5k7SdxPa7S|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.5|0.69|14.27|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuI']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/C8TA07332E|NMusWEKXzSGRXbzh1KIjKyOMroWh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.2|0.7|12.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|NN0EkfhE2JOljWr_efgpfaUQlJHw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||11.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|NN86uM-Mz0Nx6bZS9C-VwV3gnLTR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.09|167.0|0.58|10.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']|['NiO-c']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|NND9fiCXi-PVzAAvMbmUVk0RPwAu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.109|230.8|0.722|18.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|NNP-uQI1HaZ-chXoMqDK5hMfi-AC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.1|0.7170000000000001|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07076k|NNcuSdEAVdLwKt7mqFTkbawM2l8H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC9CsH54I29N9Pb10|CsPb10C9N9H54I29Br|Cs0.1MA0.9PbBr0.1I2.9||1.025|219.0|0.76|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1f4f|NNd4w91Nx7hqq6vQhwEBqbSREAhV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.5|0.7390000000000001|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Carbon-nt']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226765|NNevv6mbIuFQ5hhxxKtLdMrr-Hqi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.122|233.0|0.71|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V859', 'Au']|['V859']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03911h|NNgWLUQSX0GeUKPVgzz1bAxAIznZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V859', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|173.0|0.495|7.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|NNlu8HLIRisl-mwdxyz5AXm4HBqa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|185.8|0.62|10.14|['SLG', 'ITO', 'CuAlO2', 'Perovskite', 'PCBM-60', 'Ag']|['CuAlO2']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|NNpPgZSFni5OjndSgBJkTsK03EeX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||14.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|NNxB-v_o-Tbq6YNkyXYFw87IxSYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|233.8|0.65|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|NO9t4e9bfUm6uezNauDgbvsGveix|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||0.901|194.9|0.58|10.12|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V842', 'Au']|['V842']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600762|NOMlMlxzayMNitmtNS4gVZAX9aTr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V842', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.1|0.56|11.94|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|NOPRQhCQuE5DGsBzVlKCCgldBBCL|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|212.0|0.81|16.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTEG-1', 'Ag']|['PEDOT:PSS']|['PTEG-1']|bulk|https://doi.org/10.1002/aenm.201701305|NOTta8xTB-x6rYm19ePcaNH3NOwN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|162.0|0.47|7.3|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|NOTvAz4GNWxnMk8gBfS08FgI_o-7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H39I13N8Sn4|Sn4C11N8H39I13|BA2FA3Sn4I13|1.430000152482532|0.42|239.8|0.402|3.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.0c00286|NOUfpHO_I18UFRnP1JpDkPPlaczs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is BA2FA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.9|0.58|9.41|['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene; SrTiO3']|bulk|https://doi.org/10.1039/c5ra09001f|NOYqLhIY9A3Y74DCA2t-vQccn8W-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.083|223.5|0.74|17.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|NO_EV1ZYKReIDbNci003O3jUiB8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -Br3CsPb|CsPbBr3|CsPbBr3||0.82|47.0|0.73|2.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|NOdlGjp1vdXZQb63zIPHn4JPY_1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br9C20H116I51N24Pb20|Pb20C20N24H116I51Br9|FA0.2MA0.8PbBr0.45I2.55||0.96|193.3|0.731|13.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|NOfItVI5uuu5NeV61m0S9DJdN9pM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.45I2.55. -Cs2I6Sn|Cs2SnI6|Cs2SnI6|1.4800001578140891|0.47|25.6|0.432|0.54|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600166|NOgybnqF_SyWf1tpjEu0JJ-NsBV9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is Cs2SnI6. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.95|234.6|0.6659999999999999|14.83|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|NOqwuydlL29Od3ndICHhmBrn5fXO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.5460001648517447|1.005|241.6|0.785|19.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01978|NOway6jz0fXWv1Qztkv3Uca9vKe2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|212.4|0.71|14.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|NP-7YuaXgui89ONSd72JBKhhmTW6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|206.0|0.74|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst7090272|NP27HZp__fYkibFnOfMPh_xPl3yX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.861|45.8|0.71|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137567|NP5Kk6Ke2TdK8WxoRDyDcKThgEqy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.520000162079335|0.92|190.2|0.68|12.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|NPDk6qZ5KJcapcCJdLmiptBn27vC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.450000154615155|0.48|151.9|0.615|3.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|NPEDPjCgt1J5TbLE5XGw17OiB6Kp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.004|228.5|0.56|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|NPGUKqSTUKLhshx2ndBIsG4dpRvA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||0.78|101.9|0.68|5.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|NPjSPz76q8jh5xKUgagD-xSBlgs1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|169.0|0.49|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-8901-y|NPjXPOPX26r7WGSay2SktYX1sdlN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|181.0|0.6|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|NPyNiIdTjoptrtBczfqyzveiZDRy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|152.0|0.742|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM2', 'Au']|['HTM2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta12407a|NQ5Y2U34fUazixpwoNt2AMkZRB1M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|229.3|0.67|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta07030e|NQS68jA6UgVC8QrldmoBK1u4xj7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.5|0.6759999999999999|16.23|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.03.047|NQV19lAy4Ws38gfHB-jM3YBdgpzr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||1.04|211.0|0.7490000000000001|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|NQbyjrNwDFNWkq8191UuLySs8g1q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|209.0|0.784|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|NQdSGmysoT9GDkhmkCPs_OIlId40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|223.1|0.797|15.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|NQrEGzKVLEx2MSOW6Z5Yme795ZWS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|193.1|0.71|12.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBC', 'Au']|['TPBC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06493c|NQzYQru5AfKf0tULpWFOFRNMEX4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|234.8|0.795|20.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'OMe-TATPyr', 'Au']|['OMe-TATPyr']|['SnO2-c']|bulk|https://doi.org/10.1007/s11426-018-9331-y|NQzhTPGPy7B4Gf9VPJr8XEBFVPfu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'OMe-TATPyr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.759|263.28000000000003|0.728|14.56|['SLG', 'FTO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'Me4NBr', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['Me4NBr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900413|NRMlRofTT86mobHD0emb7lPEBF20|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'Me4NBr', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.98|214.3|0.65|13.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.materresbull.2018.07.015|NRNI5he9WGio_Bjr49Tj9i_k5vee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.51|110.9|0.2339999999999999|1.32|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|NRNLpsOs-_UeeMEbkReTa88D-yOD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|62.0|0.44|2.6|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c4ta05819d|NRR-yef9L9LWA-xelFuugiY033dd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3300001418194185|0.71|245.0|0.7|12.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|NRXpJ6wKw0aQb14kDhPPG1DmoK0g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.33|163.5|0.327|1.77|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/nl500399m|NRjRHpscFDCft8NF8UwW1dx2_oWr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.0|0.541|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|NRkyc9ok6x2Cy7K1156_OREnA8ys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5800001684772036|1.07|239.0|0.74|18.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|NRxJuRAV7dRZNYH1wmeFrnCNndRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|198.0|0.738|15.9|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HFB-OMeDPA', 'Au']|['HFB-OMeDPA']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.010|NS0w5WJw7ezH7Vafj9hncfGQuow_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HFB-OMeDPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.01|36.6|0.452|1.58|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|NS9X60Vp-jYoJ7jtuJB_Zsf4MFJy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6100001716761378|0.999|219.9|0.557|12.2|['MgF2', 'Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|NSAs-6GMCAxXf3SM_bfN-ij9PHQU|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|193.5|0.767|14.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|NSFlshf-I4C7k27ZpVdap2FYc1WG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|211.0|0.54|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|NSN6p_fmDNuWFYrWqK3AvpSA4cdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|139.0|0.6579999999999999|8.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|NSRItzSTAqdH6K8C5ZO5o16W02Iu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C166Cs34H830I600N332Pb199Sn|Cs34Pb199SnC166N332H830I600|Cs0.17FA0.83Pb0.995Sn0.005I3|1.5400001642119578|0.78|114.0|0.688|6.2|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|NSlaDXllTgPE1hU61AaThv1uhiJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.995Sn0.005I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.2|23.0|0.36|0.16|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'Acetyl acetate; I2; LiI', 'Pt', 'FTO', 'SLG']|['NiO-c', 'NiO-mp']|['Acetyl acetate; I2; LiI']|bulk|https://doi.org/10.1002/cssc.201402032|NSv3w1o-ecOymcYSLu0zR7YE3gsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'Acetyl acetate; I2; LiI', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.1|206.0|0.655|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|NSw50vmKveAi3uwJZMKSli5BpXIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.8|0.57|11.73|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|NT3MvEtAPsDiyeSaFjmaO-pUVfjS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C42H124I28N10Pb9|Pb9C42N10H124I28|MA2PA8Pb9I28||1.06|205.3|0.7|15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|NT737M4BDTeHWtTL9qYItOgwGGH0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA8Pb9I28. -C8Cs2H40I30N16Pb3Sn7|Cs2Pb3Sn7C8N16H40I30|Cs0.2FA0.8Pb0.3Sn0.7I3|1.350000143952041|0.76|251.0|0.76|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b04981|NTCaCzwuhHvec_Cx2GTVFSf3fNHP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8Pb0.3Sn0.7I3. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.165|230.9|0.76|20.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1039/c7ee01096f|NTEZnYE_DhqLSyJo6Q5OAbT3ram4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.008|213.0|0.5710000000000001|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|NTMN8TvLeoadR6wVLqaWn63uAgSk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|183.0|0.626|10.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.06.149|NTS7TG7Wxi4IxAwboZYdXzMUQ0__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.0|0.76|15.11|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|NTY1-3Doq44PLkFuayKEmStU6bFg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|178.4|0.66|8.12|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1007/s10854-018-0262-z|NTbZarXboOLsvlzOzyns9IZKcjuv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.8|0.67|13.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ra09824c|NTkGvEAORK6ADduGNVNTZ8aru9Bx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|NTkeKlCcIimtGX_ECglkt5EwEM1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|159.9|0.7709999999999999|12.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|NTqEc0yQHMeqU9TFTUZY8MGElKvw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|193.6|0.7390000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S0218625X18501378|NTriWlo694J2JFgitLz1YhEn9GPw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|278.29999999999995|0.568|14.7|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|NU44JYKrO2pTN8y20Ji-tYMFEDri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C90CsH464I255N166Pb100|CsPb100C90N166H464I255Br45|Cs0.01FA0.76MA0.14PbBr0.45I2.55||1.022|223.9|0.747|17.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1013', 'Ag']|['V1013']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c8tc06297h|NUJ2ovigC1fOfsuwaQfix8bQuVT6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1013', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.76MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|234.9|0.67|16.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|NUKwGi-Qe0TQAyyKO4eOuWOk2-Dp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb15Sn5|Cs2Pb15Sn5C18N33H93I50Br10|Cs0.1FA0.75MA0.15Pb0.75Sn0.25Br0.5I2.5|1.3600001450183523|0.83|223.9|0.73|13.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|NUUUyV_aQJJwB10TAEVjJFkeMnG0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Pb0.75Sn0.25Br0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.633000174128654|1.05|194.0|0.732|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|NUVWCEsCDwhE7b0Tl_qGEWH6TEj8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.936|180.0|0.5429999999999999|9.11|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['none']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2017.08.007|NUW6MIybdRhD4Wi_pRXU-PURIdlK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||0.96|186.0|0.652|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.10.012|NU_R0ug9MuItT78pgXPTfAwW-T7P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|145.0|0.55|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|NUhhtRXd6IaEB3h8QjcwWtit2Zoi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.994|199.9|0.722|14.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.0c00497|NUjCba1UYuoz8asfWAQbxZik8eaV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.0|0.54|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|NUkO5wzY2n2wIrSNW9GIpFMjGwCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7829999999999999|101.9|0.44|3.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700546|NUpD8StcxEQEl6o5mozT-nl4vvh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||1.08|254.2|0.627|17.2|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Tm-np']|bulk|https://doi.org/10.1039/c9qm00311h|NUrdNRzC_4ERqYwnh9_TODWbwRcl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|158.1|0.7|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Au']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201600285|NUsb9e8X7ETmIuEAZDgiorogOPDL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.87|190.4|0.63|10.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|NV0RduphV4XKJ2BId4YDw58agfGq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.0|0.75|17.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|NV5CrmAaWMiAa2etxmXnkxYGu24o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.8|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1063/1.5061821|NV5bK6lawqniDWjJH-MQcCwI8fTT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.772|195.0|0.57|8.6|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|NV61zInX4XJi_1sfHZfqh4q7rEoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|209.0|0.711|12.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|NV8iqM3k7YlwMqPnDZhkSueDIkAq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br87C100H600I213N100Pb100|Pb100C100N100H600I213Br87|MAPbBr0.87I2.13||0.92|135.39999999999998|0.368|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|NVMYlb72GyCchVv-7qG7vVEaHxCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.87I2.13. -Br51C65Cs5H341I249N114Pb100|Cs5Pb100C65N114H341I249Br51|Cs0.05FA0.49MA0.16PbBr0.51I2.49|1.7300001844718749|1.1|235.3|0.721|18.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDTT', 'MoO3', 'Ag']|['PBDTT']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903146|NVP30CVO_kMjfujpNaj5KXBHGEYf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDTT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.49MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|227.0|0.72|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|NVjU4auweziHJuBENrRbswunWRv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.872|172.21|0.73|10.98|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|NVopIy89w_PYmqk1cEk4OZ6aGNMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|67.2|0.435|2.63|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|NVxnp6EPL5GYbxZt9xgyNLJ_cuSV|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|179.0|0.685|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|NW0FV6guOzXW9CAxhfpKVrR9zk4y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|227.7|0.73|18.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X59', 'Au']|['X59']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.020|NW17HTKgs3CrVwMdqw7OZRIziIQV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X59', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55||1.05|229.0|0.7020000000000001|16.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'C202', 'Ag']|['C202']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta04166d|NW3SGnXUzEeDPyslGP5yMy2Tdl30|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'C202', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||1.06|203.4|0.777|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Spiro-MeOTAD', 'Au']|['NiCo2O4-np', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|NWAYKp3rPW9tgd_KGq0jh4PtIQmS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|1.6500001759413832|1.1|167.39999999999998|0.77|13.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/anie.201902959|NWJHKfCfwTVS3gtmr2KCrSULSJV0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|173.0|0.77|12.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/cm502864s|NWNNKZkiYuzXwRsoaVr7zi8wCWSS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|225.0|0.69|11.95|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|NWTozS8Po8kqV0QFelf74ycdvWnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.055|173.37|0.561|10.3|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|NWTzzkyaxXw47BLV_15ZAXU1EpJj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.92|224.9|0.49|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.099|NWcP44cUVHT2Sp_GhNm0uHcG9MZR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.71|16.8|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|NWoM9rknjnnu0KEMe6LBIoNhMAIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|210.7|0.713|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPEDOT-B[BMPDP]2', 'Au']|['DPEDOT-B[BMPDP]2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05814g|NWoVY4UHauUEU0DIEvCO1Zqm92OO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPEDOT-B[BMPDP]2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|227.9|0.722|18.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135197|NX4kzpA3_vdysALC0x8Gy-m1X-0j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.0|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|NXQjIwIBIKs9YVHsP2-UsCvYzfId|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C50Cs50H260I249N90Pb100|Cs50Pb100C50N90H260I249Br51|Cs0.5FA0.4MA0.1PbBr0.51I2.49|1.7000001812729404|1.022|158.0|0.58|9.4|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1002/aenm.201703506|NXRRx3BgPhl5kewm5U_hnrHfIoTU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is Cs0.5FA0.4MA0.1PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|177.23|0.701|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|NXTfKwJ47Z9wOVzHQTeya6RhgnLZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.7|0.75|16.54|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.041|NXXJUZG-CH_iJxSosBoFN36e441n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||0.97|246.9|0.6970000000000001|16.68|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|NXjqHQqGWsiNGKEGlSHm7gKakLrJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|227.8|0.735|18.85|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|NXkwkoA5CQ2eYIVv0cLX0qti2d8V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|167.0|0.738|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|NY4M7qSpYz-pzFLvg4pb_Z_WXZls|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br11C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br11|Cs0.05FA0.8MA0.15PbBr0.55I2.55|1.6100001716761378|1.16|230.2|0.752|20.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|NY5zCIgAbsceMrWt7sWo25HYkDwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.55I2.55. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.07|187.9|0.76|15.21|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|NYDbdhsxvpvm6EEfm0TAr37PPXGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|2.05000021859384|1.11|91.2|0.67|6.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|NYJEMf6_u8C1DWwF_N9ShKc6KlH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|209.8|0.79|15.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2b', 'Ag']|['PEDOT:PSS']|['Fullerene-2b']|bulk|https://doi.org/10.3390/ma12081314|NYWsxmbCRccRW7VTjS-kpwWxjVkm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2b', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.410000150349909|0.3|76.2|0.53|1.21|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/jacs.7b01815|NYaZ9Hlc4ntsOiLKNfgT7NGIjNpJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FASnI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||0.98|244.8|0.6809999999999999|16.39|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|NYcLM39D3r2xKZWGvL8tSRr0lJge|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.93|130.6|0.65|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.5772/62435|NYdv9IqJJW_CgGoi_5XEybRe9uO3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|215.2|0.715|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.005|NYfbDHaH6tKfLC6IMJNirds94fCp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9060002032389556|0.95|113.9|0.5429999999999999|5.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|NYjSwtdCGoSXRnLLplw90k2SOBKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|231.5|0.795|21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|NYv-4F-x61GKiPClY0qExySaEUxx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|233.2|0.759|19.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.025|NYv_kBctBjv63pAENHK86ZAyYf1r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.05|199.17|0.746|15.59|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||NYxPnsOdBz2oqjBuhXaxMZ0sWWNa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPb1.0Br0.3I2.7|1.5800001684772036|1.02|206.2|0.7|14.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|NZ3tPMJ6WPNUYGZpbpeyzDP298JT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|174.0|0.61|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|NZ9o5CQACep99J2s_tFZEd6YJ_zY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8959999999999999|152.89999999999998|0.621|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BPZTPA', 'Au']|['BPZTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.03.021|NZFlMZvVSINf0KZGitEO1jA-S-F3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BPZTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|136.8|0.579|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|NZPSX8YsT2nKjcOG5dlokVorJBGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|29.6|0.22|0.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']|['MEH-PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|NZPef6-SA9Fx-FLSI-Ndv9-0F0g1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|192.41|0.652|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|NZRGb6owI3hU7-MKjVCClU6KiwfO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H78I31N11Pb10|Pb10C25N11H78I31|(PEA)2MA9Pb10I31||1.16|186.6|0.644|13.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|NZSUhV2uVrzRDtAEX8gN7SpmBJ71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA9Pb10I31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|NZThrgoREubOJ_3OB-Cf-h9lQrD0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.331|40.2|0.38|0.53|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|NZU_hTrAhIuJheEPnaInfzx5AqSV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C98Cs2H493I291N193Pb100|Cs2Pb100C98N193H493I291Br9|Cs0.02FA0.95MA0.03PbBr0.09I2.91||1.04|238.0|0.75|18.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800296|NZXvbDQ_0M2amgcOtacXMiwJB7C5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.95MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.1|0.7|13.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.03.031|NZbDtEjKJAbOPrJK3KoLNHtnOGEf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.9|0.757|18.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|NZdBLdU5joWM6q1PX7lfT8C739k-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|155.9|0.738|12.84|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014003|NZvyAeb6FPjl3mLO7CxvoabvROzy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H513I300N152Pb100|Cs5Pb100C95N152H513I300|Cs0.05FA0.57MA0.38PbI3||0.852|172.3|0.62|9.23|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|NZzn-Msjs1txqyY8mfgnAqKtdlnb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.57MA0.38PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|223.9|0.7959999999999999|19.6|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|N_-Tn1_a6TYkj4CXYLPvLzXuaO_v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8759999999999999|183.9|0.5870000000000001|9.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/6/068803|N_3WDHBJ4ARXFFAY_FttKP4XuKVA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.2500002399200683|0.73|14.0|0.48|0.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.9b02958|N_Lgk847G4PFgk0gsdMolTMAu6NI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.13|193.0|0.779|17.0||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|N_LhaTB33Qnvs_q_slaDE6F1dHZT|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|213.0|0.65|15.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|N_Rhqm4N0xGkdrtwxqb0OvSPxjwh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C6H15I4NPb|PbC6NH15I4|HAPbI4|2.05000021859384|0.65|8.299999999999999|0.36|0.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acs.chemmater.6b03054|N_btZqsj8r23rO3xQ731jUFh4x0L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is HAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|195.0|0.58|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|N_vltN6Wg-wi1hTrQYmDlEvVpdOZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C8Cs2H40I15N16Pb10|Cs2Pb10C8N16H40I15Br15|Cs0.2FA0.8PbBr1.5I1.5|1.8200001940686776|1.19|137.6|0.752|12.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|N_yRKmn7f-5OyLbb60-C3e_eqxfT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|132.4|0.657|8.22|['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|Na0NOdISUQyK4xxs5Vn3rGx4CVxS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|135.9|0.583|8.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01652|Na5pR6utELhzjd6LHmZertrhdgTd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|197.0|0.64|11.53|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5ta09067a|Na9Yny-691b0mBQ0fkOf2suAgFGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8200001940686776|0.738|140.39999999999998|0.745|7.72|['SLG', 'FTO', 'TiO2-mp', 'N719', 'Perovskite', 'Dye', 'I2; KI; Propylene carbonate; Polyethylene glycol', 'Pt', 'FTO']|['I2; KI; Propylene carbonate; Polyethylene glycol']|['TiO2-mp', 'N719']|not processed|https://doi.org/10.1016/j.electacta.2018.06.078|NaAvNg0PIpEMDv5A1-aMD26bXg6k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'N719', 'Perovskite', 'Dye', 'I2; KI; Propylene carbonate; Polyethylene glycol', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.85|0.733|13.8|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|NagVsx1mvnGjdsWoQdIoU_kPyI_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.0|0.73|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06771f|Namf_KSlHhn5OfsREMRWcGnbIfHI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|202.5|0.532|9.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|Napeyi4gCGd1RgqtA_PeTqTKHhdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|202.5|0.61|11.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|Nb6Q0dYGrKgAMvqZJQpt7OTyuST3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.516|94.5|0.283|1.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|Nb9MYLGh8y0bPJ9p3nYsOZ8XhU-z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|198.0|0.64|11.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-020-03664-5|Nb9mZVMrZ59-xPQEh6ZKSF-6cVxz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|1.12|158.1|0.752|13.32|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201900605|NbNcTEJaCb980NnYjNZh9ND8Sd8_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|177.60000000000002|0.552|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c7ta90054f|NbQGudAdd996wJe6jO8Z3Gnb0Xj5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|215.0|0.69|14.53|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|NbXuoN3ym94-DxXfpCBNlkTT8XWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.14|147.20000000000002|0.6759999999999999|11.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201803269|NbZR8FmiYeAn2kixGpW1VflkD4jq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|211.7|0.745|16.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|NbkKlH136k-h2RyVuRMjsZOUhqvM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|1.05|108.0|0.6|5.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|Nblg_gTWF4ru8V3BPtccM6buTiUM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|218.1|0.8029999999999999|18.17|['SLG', 'ITO', 'NiO-c', '1bb', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', '1bb']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|Nbm1wWq9kyB4ByC_cBzv5ml3Jr3n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', '1bb', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|171.4|0.8|14.36|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc00812h|NbtbALX3xMfMzlV1jBMwBBPg1tl1|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|205.0|0.48|7.3|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.joule.2018.02.013|Nc4QxGWjvdXuX3ryTgkixEQUSIiU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|205.7|0.77|16.33|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']|['NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsaem.9b01200|NcCJuUfEoJ7Ibme3nofu6sZkqedB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.8|0.5670000000000001|12.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc03259b|NcJfO18B-7BH1RvFE9Z_eJPOX8V2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|181.0|0.746|12.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.202000393|NcOFK2EJYJanj4Z9jLekVSSCbxBC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.32|153.2|0.833|16.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909972|NcQ4GWFhIccEunV5gqh3yC3NxtJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.03|222.4|0.7|16.04|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|NcRxSj_J2VY8i-Ji7_3Q1cmyts1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||220.0|0.774|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2DT-TTCN)', 'BCP', 'Ag']|['PEDOT:PSS']|['P(NDI2DT-TTCN)', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702872|Nc_IoNJUFm9zj-r2mHJdJVx8h96m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2DT-TTCN)', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.08|233.2|0.71|17.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201800521|Nc_YBOilJpAoCbuYvaAv2L8KFzZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|219.7|0.7340000000000001|18.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|NchdmCmI1qivaKoKs1mWBnQ3e0Tn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C39CsH215I60N58Pb20|CsPb20C39N58H215I60|Cs0.05FA0.95MAPbI3||1.02|225.9|0.738|17.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b11010|NckyL4iUSTFOlbGRyopDcx1XPzr1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.2|0.7290000000000001|17.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|NcvotBRBDITUV9G6c36Qmroy7Gao|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|225.0|0.775|19.05|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|NczJRIUhnmmuvJl-PDBbVunGuL3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.847|76.9|0.519|3.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|Nd5VHoH-yyojCbeQpUHNeWDUAA4g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|158.0|0.56|8.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0se00460j|Nd7TeCHrzhci8PwK3E2kJGhaU5w5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.315|74.80000000000001|0.741|6.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|Nd8ogW7ELtvcgYcXmaXZIbkzOQsP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|130.5|0.8|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B74', 'Au']|['B74']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|NdALHs2LrpSEmGbHRdAFn1gMnZcF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B74', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|136.3|0.4479999999999999|5.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; TiO2-nw']|bulk|https://doi.org/10.1039/c5ta06727h|NdExloQkTcNvGIH0cuXH9bHugGwe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.4|0.6859999999999999|15.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|NdMEsN5w7x5TTEvZcLwPwYKP0HnD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C1900Cs100H9823I6000N3477Pb2000|Cs100Pb2000C1900N3477H9823I6000|Cs0.05FA0.7885MA0.1615PbI3||1.11|208.0|0.66|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8me00023a|NdMjBIUMlpPC9o8lQWHFUBAAQuZv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.520000162079335|0.76|112.6|0.36|3.11|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|NdTViT7OcZqhktIYTiULFXNDUFfx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|227.2|0.53|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|NdbLBqX9wHa8zcJ7IJqCvETJb45t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.8|0.737|14.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701779|NdblMXhnMGaEDMnOQMj9_KPdycQB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C3H14N2Pb2|Pb2C3N2H14Br6|EA0.5MA0.5PbBr3|2.3800002537821165|1.52|44.3|0.7|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702005|NddS6BiO3iJQXyQZYlE1SgprfBe1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA0.5MA0.5PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|192.5|0.72|14.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanoflowers']|bulk|https://doi.org/10.1039/c7ta02822a|Ndfh1yTe-Myr_DQSn_WJ2fKJ46HA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.105|229.8|0.72|18.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|NdlCLbTm7MtuHtG1Mvet1PTPcBvz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.4|0.769|18.73|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|NdlK5PYtXLnLwOi1Vzf5jGysfBEc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.87|82.0|0.55|3.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|NdmfjsABPLnrZfTjp3ViO-si6RP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.8|0.59|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s10854-020-02913-x|NdoNj76yUfrfo-L206rMsKQQMHo6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.1|0.72|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08622a|NdttQyNRwtJ1yzdLCGn1rOMryXbK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|200.0|0.57|11.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01744e|Ndwvuqyf2UOALR7vR5SFrGTrPOsd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5||1.08|233.3|0.762|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201802985|Ne0sS45EIiKXeytvkOFiOV-ulIij|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -Br120C95Cs5H491I180N174Pb100|Cs5Pb100C95N174H491I180Br120|Cs0.05FA0.79MA0.16PbBr1.2I1.8||1.24|191.4|0.75|17.78|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|Ne5Vp7B5E-KBuIC-SfneYDtqH6Yb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.11|228.7|0.789|19.54|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta11744j|Ne7x6qeVojrZ4ohmMNwuc7qdq0sj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.106|214.7|0.753|17.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|Ne8vB-qQqS2N9NRjavgKaEzNUK45|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|201.7|0.6990000000000001|14.09|['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|NeAaTyyGU8C9k_FyrGdG7eNn-V1M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I259N183Pb100|Pb100C100N183H517I259Br51|FA0.83MA0.17PbBr0.51I2.59|1.6000001706098266|1.0|212.0|0.69|14.5|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'WOx', 'Au']|['P3HT', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|NeGiTXUJ0Oo6KQ_exKzU8gB4gQKv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|227.0|0.76|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PBDTTT-CT', 'Spiro-MeOTAD', 'Au']|['PBDTTT-CT', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|NeYcMQP87omvbgVpZtGCOxQupOA6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PBDTTT-CT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.0|0.645|11.1|['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|NelD68U5bKxcngLX6OlGiZp2UMAN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|203.0|0.71|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00600|NenpdJE4ueczp3lRskzu0qum53rc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.09|243.8|0.65|17.2|['SLG', 'FTO', 'SnO2-c', 'PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'PMMA']|bulk|https://doi.org/10.1126/science.aat3583|NeqGGYGA4QO3CPqjzJ9vpVgW3Uv7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|164.1|0.6559999999999999|11.12|['PEN', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|NeuoMLyMTlJDZkLNi1mEbLzs_xlc|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.9|0.75|18.62|['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol (5 mM)']|bulk|https://doi.org/10.1002/aenm.201702934|Nf7ekWPJuiWzwr4iYBXGDTrNq3PE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|225.8|0.7390000000000001|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800276|Nf8gFDqOcJCpVUYHjo0oS9s4QWcs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.0|0.7070000000000001|17.1|['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'n-Butylamine']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|NfKLVbG7oBBcKZI-wekzAigzPbLa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.09|205.4|0.612|15.23|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|NfMV-nDSUwmUSq4Ach591QEoOton|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|165.0|0.64|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|NfNNcZJ6qqIzcpLuTINrH6JeMb8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C9CsH45I21N18Pb10|CsPb10C9N18H45I21Br9|Cs0.1FA0.9PbBr0.9I2.1|1.678000178927055|1.193|203.8|0.791|19.23||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|Nfd84hyesOaA3sFyqJ2DPVeJZnYn|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|153.0|0.56|7.12|['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Au-np']|bulk|https://doi.org/10.1002/aenm.201500038|Nfg2f6UAbDUyVgUbMz-2l38W05TM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|160.0|0.624|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|Nft1SQBtuVYEVS32iGO4zz7kGnUa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.0|0.7909999999999999|19.0|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au', 'A.R.C.']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.10.020|NfvfptwdvieSZ1deCCFLiUeb95gR|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au', 'A.R.C.']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.99|180.7|0.73|13.06|['SLG', 'ITO', 'PEDOT:PSS', 'X-QUPD', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'X-QUPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01479d|NfzAoWcruTZlA4IKvXMGnaX85QOq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'X-QUPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -C24CsH144I75N24Pb25|CsPb25C24N24H144I75|Cs0.04MA0.96PbI3||0.99|211.0|0.7929999999999999|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/solr.201900406|Ng3z3VgxXSOmvqy5TPbFxBxDeBN9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.04MA0.96PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.0|21.0|0.59|1.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P', 'Au']|['P']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|NgCqZY9-HqpUZKZaunxOHlFQXwLu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.107|211.8|0.726|17.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|NgKzD7cG0jwv3kAwrF82CwU3Qn5-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|215.0|0.667|14.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700374|NgOMCiRi_QmAOt0pFh9_EoLKlk-W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.68|184.0|0.65|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c8ta03054e|NggvJ9BZgHW4mR8G9tOC9tuWlhZ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.07|199.2|0.6890000000000001|14.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|NgkKexZDjMAu-Q5miLrekyGGjq9z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.5|0.68|11.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|NgqNmOlgjVwRE4juHQ44zJoISTXG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.17|176.9|0.7290000000000001|15.1|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|NguMSmtJYbg433GD1EUNgt1GQxzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|226.0|0.742|18.89|['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|NgwVkC-R6GuscjaWiVF7Q3cf_RJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|200.6|0.63|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.171|NgwyIfOkPWqds8ijRlrnPgF8Ugtv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.08|227.1|0.78|19.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|Nh-kLGw_4K9USA7EYDZO5y-TIaKJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.08|228.6|0.75|18.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b18230|Nh1CrLJiy_CZXfQ5uwn2N5j9kG2M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|168.0|0.51|9.94|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta01839d|NhJntKbbevLtxOWSs8tw0Zn1CaEm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H116I57N24Pb20|Pb20C20N24H116I57Br3|FA0.2MA0.8PbBr0.15I2.85||0.97|205.1|0.764|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|NhJyupUGqN84aUeekHQo_2w1KODF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.15I2.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.097|36.3|0.408|1.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aabedd|NhQtbWSO8O9dAtduhQ-bxAp78Msp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|186.1|0.76|15.0|['SLG', 'ITO', 'pBDT-BODIPY', 'PFN', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['pBDT-BODIPY', 'PFN']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1021/acsami.8b05956|NhT2IMbWhQJB40wjKcKSzAUtiwDr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'pBDT-BODIPY', 'PFN', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.3|0.44|6.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1016/j.orgel.2019.03.022|NhVt5ZXI5gGohbPGAjsIQHFplbpy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|145.6|0.623|9.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|NhWVOSdHcy3HgFfKvl3IOjRjFSjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368||||11.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|NhiQn9pk6cmsNYu0QZg0xkGweuHT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.1|0.66|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '5-aminovaleric acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201604305|NhqmxoiHl3ciC9TSdv9iUoiT_A0Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '5-aminovaleric acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.057|203.7|0.74|15.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.06.016|NhsYjHuhXlkUm5TEfv3mhNuFOUHc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||0.98|192.3|0.629|13.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|NhtVle0YBlMCXytu49pcyCnqq9Wx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|229.0|0.77|19.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'COTT-1', 'COTT-2', 'Au']|['COTT-1', 'COTT-2']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01658|Ni9pB6OGDB0d6QKCf4Q_QK-Pigpu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'COTT-1', 'COTT-2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.09|234.3|0.8|20.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|NiGBUWlLRZOq-crSdqM3LcZjLwS7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.0|0.68|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn5036476|NiNkF_8YoZkCty5dl-5PmqfOm4Pq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|203.0|0.66|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|NiSuhvJrPuHBMTZ5PJnZT6AIb7Uk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.3|0.69|15.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.03.004|NiVL5xXgYUpculv8b5z6iVQOwhMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|186.7|0.6779999999999999|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'IPA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|NikPhwLebklMzLnYBA4Nj0KEH2w0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'IPA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.93|188.8|0.69|12.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|NirRlfjGBVmuk1WU_SCJASlOBJDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|179.0|0.3829999999999999|5.05|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|Nj2FeGkFYOhI5UfPgrgkJHjrH5bT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|143.0|0.46|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04132b|NjE2iktNoGqSvTHsj0MEFQktRlNL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|189.0|0.705|13.83|['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']|['NPB; PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03120k|NjHsAN9ktO1MGm9MIfEnNNvbDHKX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|199.0|0.73|13.6|['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']|['Polythiophene']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-015-0755-5|NjI7tEmJh7j8590dd2gAsktTUajp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|153.3|0.58|8.86|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|NjM-0KbWxZwSrFjlfl13qBD16kLn|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.097|219.6|0.78|18.76|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|NjbkhxwyqtAQpdiYjOkgz-zWMVbl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.895|47.400000000000006|0.563|2.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|NjfcjAakRAFWS96ODP5NhEVvFHt1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.39999999999998|0.654|10.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201600702|NjguVBd505ALaAoGEWLTM9W6mpiA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|171.29999999999998|0.63|9.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.06.020|NjmYTAoDADecqPVB4VDhaPu0POnm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.84|92.0|0.41|3.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|NjpPGF_pii8GMPP3BG1Z4MbEtU1g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.23|139.9|0.415|1.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.10.088|NjpwyZU_GZpYH4T6BG9MRSLIu2HU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.76|52.8|0.73|2.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112218|Njs6reoxu-oK74XI10W7Bz17QpS7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|204.1|0.68|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MAI']|bulk|https://doi.org/10.1186/s11671-016-1540-4|NjwkMMVkyvizNnUh0SkPSCkXg_Aj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.074|203.8|0.563|12.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Nk7yWdhvIU8Rtz1ykR7jZx4TkuQe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|172.0|0.71|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/cssc.201400081|NkHDOG4WJ5Yp-YUlnSeQOeaCUjd-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|201.0|0.71|12.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07515g|NkHozo_08l9k-Y010OVG_LxCro21|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.598|210.9|0.7190000000000001|9.15|['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s11426-019-9653-8|NkRtTe7zAUaOiKAofmhenfzT5B0Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.16|219.1|0.685|17.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|NkVgXs6Yv6AYJ1bVYVZ--3p5qB2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|123.3|0.59|5.09|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|NkbQ9TTwG3aPtEJoryZ_jI6EZfMt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|168.79999999999998|0.48|6.33|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|Nkddw7YnkSDTNI3Irm28kqB7Hu3T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.78|114.3|0.551|4.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504175x|NkgLE_0xzqvOvx4-j8PW0dBvhj39|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br150C100H533I150N167Pb100|Pb100C100N167H533I150Br150|FA0.67MA0.33PbBr1.5I1.5|1.8480001970543491|1.114|153.29000000000002|0.687|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|NkmMdE2mCVSoQ8JvjtM0fH4YD-W1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.7|0.68|14.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|Nkp1n_cYOLlBrX9fyQJytLtrkw4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|211.0|0.69|15.56|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|NksEm47kW3akHk125-82XVYBqPz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|Nkts0mwPq5CrfF0nWNg0IeQ3At1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|219.0|0.7559999999999999|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.019|NlAfkAt7wdO7Tk0gh4xDPGeZnmaO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.71|15.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1166/jnn.2020.17339|NlCgk9TlwyrE0IkuQU_AYEHnfvjI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.0|0.67|11.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201500669|NlUyRscI67ikCGPXzherygEg4bQg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|180.9|0.6829999999999999|11.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2015.05.027|Nl_0d96-VcZeDQxFOPNecikGZKTH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|211.7|0.725|15.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|NlcuhS7gOjB9AOdW-cBrvbN9BXok|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|189.0|0.72|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900223|Nldb1JGvWbBecmXH5nF_PtmMUvfO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|191.5|0.5760000000000001|10.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|Nlg0Gisus5HWJp_hxRkEbNrReQxb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|187.9|0.67|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|NlhgmD7ixxKs8HO97LRBOiHR0yfC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|187.1|0.65|10.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01718a|NlmeMPEegwYB1J-1mOYM4YTDfR3E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.1|||13.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000001|Nltgi24TKQX53gBHbO4JCJytCjD7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.104|203.3|0.706|15.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|NmFC4fAI_hglQynF15TA3mZ7zoq_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|187.6|0.6659999999999999|12.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|NmX70B8hy4e8zQ13AJngDXcPvVqv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.999|181.3|0.69|12.49|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']|['rGO-4FPH', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10773|NmXW2msaKnFuAvP5QI2S6Bgdl8ko|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|210.0|0.67|13.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201801541|NmYF5l3uV_aZqF8AAfoUFNnQ64cI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|150.0|0.62|9.31|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|NmZ5gh3n7FuMwNVVxWncYdxHNAQa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.14|220.0|0.67|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|NmfBEimXmk3q86ChAiFCy9BNkfQ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|191.7|0.6890000000000001|12.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|NmiyfESGtWAaG9vvsTL7-e6EaqGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|235.7|0.782|20.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11835c|NmnSgBz9jaG-_EFy-6mkRrRlWykC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.8|0.578|11.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800297|NmvL6BxNWBqR8m0wrTwXBY1vDHIM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|186.0|0.597|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|Nn07oMJP_w-pZftacIv7H5smD7JE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|168.0|0.523|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|Nn2Qy2I2mzqklIxnGdg1gjJooOtG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|222.0|0.7|15.4|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/smll.201602808|NnB-qmYSd_CrnVe97GD0xwngCSDm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.05|1.0|0.3|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|NnBaCgeAAy0h83St5kR_PYdA0OWu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.61|13.25|['SLG', 'ITO', 'BCP', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BCP', 'C60']|bulk|https://doi.org/10.1039/c6ee01037g|NnDAkcTjoaEbgN1GVoLAIyeZaOoV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BCP', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|135.0|0.69|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|NnOBdWlEOzOfI7DwFB0wbvBKljPx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.773|161.0|0.491|6.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|NnXyiE2uO21a5PPj8cKtYJc4p9v8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.097|195.6|0.721|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|NnbUsfvoSfM2kBFlers0_R774sFt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.11|224.04|0.768|19.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|NnhAPaC3YIntYF88VFJcTtvqoxXG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|193.84|0.725|13.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|Nnsvj9ep54aRwdQze4gfp-JWA0og|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|180.4|0.72|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1021/acsami.6b03724|NntyKWBxq5NMQlzJ9w4efj4v1dSS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|186.9|0.65|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|NoBDbymqmZjEtJwi15q7Mso9rE2D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.1|0.716|14.39|['SLG', 'ITO', 'NiO-c', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|NoNRZitdGO6bSBp-m1Clv68P9DFY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.97|211.8|0.628|11.87|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']|['FDT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7cp03551a|NojVe2pZJ0fe8kDuvJB4tWNw4YiO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|NolNXoQTM4oQ512SGgYpFGnCA9pP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.483|6.21|0.374|0.11|['SLG', 'FTO', 'BiFeO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BiFeO3']|bulk|https://doi.org/10.2109/jcersj2.15322|NosWB7FojCw5FooWPSByTmB07Lc6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BiFeO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|204.0|0.76|17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|Nox_pIPfhVtYCc2MvWNqFh8IZMZF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|147.0|0.35|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra14321c|Np3hUrofFAbbA7M1WrTxubCaVkwO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.14|226.0|0.75|19.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|NpF2sdgi9boFFWSMAvjMIAiod0EG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|167.0|0.693|11.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|NpFfeq3oZG7lNlUEPY_1DRzZAvIB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|181.9|0.57|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b00940|NpKhENBYtGNzTLPKbcKLEEpYQ8EX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.6|50.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|NpNifsatM5yTXxSDpaDuJ6t_gryu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.0|0.69|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|NpROIhRkuvpE71FUbhq8L6S2HHC3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|1.08|229.1|0.72|16.7|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|NpSaKXlWI33pU7Wplqsr2YMgZ67T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8740000000000001|201.6|0.7440000000000001|13.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|Npcix8Tt-A5nb5qwNhgTd0PSDAM8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|111.2|0.49|4.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th101', 'Au']|['Th101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.022|NpeDenPpbRAIYAG-3lX4yaeka8nO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th101', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.6|273.0|0.57|9.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|Npot9kZus1qD5euMm1F1KUBbTfkc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br39C95Cs5H491I261N184Pb100|Cs5Pb100C95N184H491I261Br39|Cs0.05FA0.79GU0.05MA0.11PbBr0.39I2.61||1.104|210.6|0.645|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|NpsnMjWJsgbQGIKsrLmnMfoZh1Gy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79GU0.05MA0.11PbBr0.39I2.61. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.15|241.0|0.778|21.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.10.062301|NpwcjBHCV7O33_edMAXPvpqK1uFt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5970001702899328|0.97|201.0|0.74|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|Nq6vkGYa3VkOE1nE-gRt5m_ZSG7v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|226.0|0.77|17.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ta08204e|NqWd9G6Ltfvx1S_WOsgdrGOohZrc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|227.0|0.73|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.07.043|Nr41cjjAPlSoyzYAT7T5oSCGyguQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPb1.0Br1.5I1.5|1.7200001834055632|0.75|96.0|0.35|2.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5023407|NrChB0jvTWgznZXUJYRtn1ZXijXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0Br1.5I1.5. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|163.2|0.622|9.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta09080f|NrG_9ulkRPHs32_g0kk0cp2sYvMl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|70.9|0.72|4.69|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|NrI-LjN18rzXwvEyInmrSJgD-eqf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|203.1|0.758|14.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.6b03089|NrJI_0ZYWHaXBs8C2pwHLBlg1uKz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|225.0|0.799|19.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Cu']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|NrJgeJDZOBSPCCjFfoq1Bt_Y2E8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.01|64.2|0.62|4.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.154902|NrYwXhTDssch51GYLxGhGhRSqfNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|NrZdA1LmRnwGjLMHcUMmWhozGF0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.152|228.0|0.784|20.59|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|Nra98uLIFQqAnykJHUSZjAp9YW18|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.05|225.0|0.68|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|NraN5jFTuqeozWexpv8HnxCil0_H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|217.4|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b08714|Nrj4MtEgxIFJeNmrtg16JEokfwuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.0|0.76|12.8|['SLG', 'SWCNTs', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|Ns3XXpmIlHe2-hcizvRFHNzkDjtw|a perovskite solar cell with the following device stack: ['SLG', 'SWCNTs', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|219.0|0.69|14.05|['SLG', 'ITO', 'PEDOT:PSS', 'Porphyrin', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'Porphyrin']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b10342|Ns3cKaYMZS1XBHf7evo09npiOqQO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Porphyrin', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.0|0.754|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.256|Ns3mjZbBa2GFlQjUj8UxmPQnOOYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|201.1|0.654|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|NsQTGjCAekRa8kOn26mwobo8Uo86|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|197.0|0.7140000000000001|14.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|NsR3R61TZSVKf7n9TdZjYq_zmlTq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|216.0|0.7879999999999999|19.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|NsRUmWFJ2H1yfWeuDQk-fhg0JbuU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C60Cs40H300I75N120Pb100|Cs40Pb100C60N120H300I75Br24|Cs0.4FA0.6PbBr0.24I0.75|1.8000001919360546||||17.1||['NiO nanocrystals', 'VNPB']|['BCP', 'C60']|bulk|https://doi.org/10.1002/adma.202110356|NsT0gkhYgCqd9CHaxiF5oL99Tbj4|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.24I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|189.0|0.67|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|NsWQZOgO-ncohwdxv-upPJKbjEAB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.92|58.0|0.653|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|NsaZkYSmLc3vbx7d1oeMcsQFnMe7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.16|151.0||10.38|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|NscJjUlb_ploPkUedVFSB5S3Sm_N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|219.0|0.7829999999999999|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|NsfUCUU2ONXFjyOpKRHSdPIGqQdc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|192.0|0.715|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03443d|NsgLj0K8oZ3eEtqJJWm6vKrVu4Uw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|197.3|0.61|10.23|['SLG', 'ITO', 'JW6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['JW6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra08946a|Nsnu2JtP4cjJ9H51kaDDgmhyhmjR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'JW6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|130.7|0.48|4.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|NsulpgiWeO1ytbEKgxLoMFoRPGOA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.627000173488867|1.14|210.8|0.745|17.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta01408f|NsvSY-ojYYY1qXIBf1uk0yVxQBr7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.264|63.3|0.675|5.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|NsyPQyayMTde1WHYREgmIDMVRa79|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|179.0|0.73|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|NsyoN3enHfVdOYd1un2rrY5DWQgK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.07|165.7|0.7509999999999999|13.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|NtE3wQEWuaVF1BYCBvB0LpXZMxdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -BrC4H24I3N4Pb4|Pb4C4N4H24I3Br|MAPbBr0.25I0.75|1.7300001844718749|1.22|201.5|0.788|19.36||['Spiro-MeOTAD']|['CPTA', 'BACl']|not processed|https://doi.org/10.1007/s11426-021-1306-4|NtIDi36gf8_Wq0PeQFIkparVpZLA|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.25I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|208.3|0.67|13.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07347b|NtKQhqMckB5ruhd0C7ABq_tEgCDZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|209.6|0.76|16.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|NtVEwJeQdBMqSMROfzkyFfBZMJcW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|NtVhNK-Jtri0Ew2skKsYulvMC3rL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.8959999999999999|144.5|0.625|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1c', 'Au']|['1c @ triphenylamine modified azobenzene dyes']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.10.018|NtbIFdUTrCoqKzguz_WyRmLMrYmy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|176.29999999999998|0.49|7.17|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|NtlgOINpt_VrZY4UYJgUnm3djo-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|214.0|0.759|17.1|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']|['P3CT-Na']|['C60; PDI', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|NtlkkJ2GYXSdfV4d11eMwRLmFjLZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.3|0.662|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|NttuKHDyCVh4Qb7OQ9I1pLMvdKxt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.07|193.0|0.753|15.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06020|Nty0b8Ip99TsOTLA8zLPN9u_2Ko2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|172.0|0.7090000000000001|13.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800324|NuCPl274837J1TO2OAP-9zXBl_oX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.75|179.4|0.64|8.61|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|NuHeZPveNeVnaErVOkGzcSFkjdPG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.484|238.03|0.47|5.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||NuSmaLRJwNZHQek6Vt2ERaxGju_i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|228.9|0.76|19.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|NuUE8fLO4g5guyI2WBgYz0k55tlB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.487|107.0|0.332|1.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF01|NuZnbTjrbDJSDzBAFuENzlS6WGgt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C17Cs3H85I57N34Pb20|Cs3Pb20C17N34H85I57Br3|Cs0.15FA0.85PbBr0.15I2.85||1.11|223.1|0.7909999999999999|19.6|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b03323|NugefJcPXJy2PfblbqnnXGZH3vB5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|48.1|0.601|1.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc', 'Au']|['H2Pc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974797|NumB8WMjAsR5J__qTGlgjYmCP8jW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|150.0|0.521|7.67|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201601974|Nup-1x1q58hvFVl2XgeBg_7NwGT4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.061|215.9|0.608|13.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|Nupmwybn8OWtZfWMScOENq1aOYnW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3||0.903|86.89999999999999|0.527|4.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|NuyWATYAQUqOWUSeWuYKwAW5vqHa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|201.7|0.7140000000000001|14.98|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|Nv5UwO2KJBSiuLT2TqE8GPEObYHP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.05|152.7|0.71|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|Nv7sn-ery6sskvZMnrcTSrt1Q2M6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CsI3Pb|CsPbI3|CsPbI3||0.93|120.3|0.591|6.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|NvSeWUgTChjn6A6XnDAxjkh1G8fO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|214.4|0.762|16.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(BMPA-EDOT)3-TPA', 'Ag']|['(BMPA-EDOT)3-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|NvSpsnOuWsWUMVO9uGncbnxJr_Kt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(BMPA-EDOT)3-TPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|197.9|0.74|14.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|Nvocvy8sF42YvlePayL4VuGIv4ek|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|110.0|0.48|2.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2016.07.182|NvwITulpsGmea0hSp5bqlguILzgz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -C27H134I60N21O4Pb20|Pb20C27N21H134O4I60|(GABA)0.05MA0.95PbI3||1.1|218.4|0.7090000000000001|17.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|Nvx_VvjEeu8Itme_W6Osj60s891B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|219.7|0.51|10.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201700878|NvxzqsCf9D3SNyTzyV9Eynd1naNO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|89.5|0.598|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']|['rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.027|Nvy3NVtQ4PItzYiK52e_dKff5Wis|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||0.8959999999999999|180.6|0.392|6.35|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|Nw0i1bclgm5A3O5eEhSafHVXivYv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.08|158.0|0.512|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.9b02366|Nw72KgKUIWd9e1ELIgtnEUBct1Fe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.912|203.2|0.54|16.34|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta07541j|Nw8JdzqgykO5h8RI3L96SypFlawu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.87|75.5|0.57|3.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|Nw8SAvaxYbZwjP0SrWle7x8R1Zf7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6859999999999999|27.5|0.36|0.65|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|NwRWVtRqfWs6ywMQi4n0OQYcxKxI|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H107I60N33Pb20|Pb20C20N33H107I60|FA0.65MA0.35PbI3|1.520000162079335|0.98|194.3|0.58|11.04|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|NwmZ27qWCKLA8M_cE_WSgMuJJeBx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.65MA0.35PbI3. -Br9C40H220I51N60Pb20|Pb20C40N60H220I51Br9|FAMAPbBr0.45I2.55|1.6500001759413832|1.03|215.73|0.691|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b00144|NwqG32FGKIVwT7E-VgW_YZsX-jhr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.9|0.6|13.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-6A', 'MoO3', 'Ag']|['Ph-TPA-6A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|NwsWUyROkP-6I0vjx9aHNFAZqtf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-6A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|11.5|0.63|0.065|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|NwvLXZ3jz-pFIDM5-iltl52X1ni-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.61|29.3|0.67|1.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|Nx-QsiT9g8Ad_xB4wob6tye-D68m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|195.6|0.69|13.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|Nx2ReqYGgEZLi1qOgjTVsUYjPPzv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.0|0.698|10.12|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|Nx48QcUStGeozZxLj6PzI6O0-O99|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.0|0.5660000000000001|11.96|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solmat.2018.11.006|NxCo-BPyg3NrWxgXudAhUR6wm9mm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155|0.77|203.0|0.5670000000000001|8.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6NR00301J|NxJ5SmzxYVSClv493IpuPHt5ZKkq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.05|242.0|0.79|20.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|NxLeMFrW9JQUSF8vO8pnHCe42QEK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.4|0.7390000000000001|16.2|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|NxO-fjfosrtjHsd7PGaCtJqdO79d|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|257.0||15.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|NxPySLFQNgbFr3goPKpDlr8hVFaV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||1.06|249.9|0.75|20.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|NxY07b0dR6vXvcVfJumYC5rodN6u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.09|209.3|0.6759999999999999|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|Nxp56ZR5XZqhKzLzky63k7kPcMQz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.132|221.6|0.732|18.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|NxqaMjtFDQMPae5vfkaJnWJIgK5Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.21|235.8|0.725|19.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|Ny2m0i4T2rErdTkhCTjh1CMLkLyN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.02|227.1|0.8009999999999999|18.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|Ny6TQDP6KJZ-fHG58-1DNxA2XAD8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|223.1|0.7609999999999999|18.05|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nanobipyramide; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|Ny7GDjY8aGVUmQpkaSo-HteZnzp0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6170001724225558|1.06|229.8|0.769|18.75|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|NyBwNJUHVpcLF4CXnzUXK4GNUhIk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|202.0|0.62|11.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.11.025|NyZp16A8ABBZT-0GmPmi3Mb4GbnA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|145.39999999999998|0.612|7.05|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'Al']|['PEDOT:PSS']|['F8BT']|bulk|https://doi.org/10.1117/12.2061405|NyibV10whs6-gECv4cRJ-Co4Pmq9|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.0|0.76|16.65|['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DA-PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|NytDr0wqTeHpWLMqpVab1n76I3Aj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|231.9|0.7929999999999999|20.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|NyvetZfdi7zWZbAvUvifbj5LUQGW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.1|0.73|14.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b03774|Nyvh06_98SxxaR11PQVunEze6Cc5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|213.8|0.76|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|NyxTpj81S9QKwb9DZ0i93lmuFzi5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53||1.11|234.0|0.7170000000000001|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201900830|Nz41RduuEH4lEh_o0vA-UzD2el-n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||158.0|0.65|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|NzOT-3EeoY-acha7LdQbJgMJGrhd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|153.0|0.55|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201302090|NzTirpfFdFJFqGy280X7lYgkscmq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.0|0.62|13.4|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|NzUHfCH7W4eG3IFXRsqSd5D1YH91|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|123.5|0.483|4.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|Nzdl3q0r-a78kpk7ErEjfZQTsxSY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.11|188.0|0.714|14.9||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|Nzegkx7UigyKBHiNAfEdfsZLHo2v|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.5|0.75|18.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta12597c|NzfGK7LuVVaX20maRfsuvGfqMsPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|161.0|0.7|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700476|NzghGHU2CqoQyqXQaPRQ87bqEQLb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)', 'Au']|['ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05254a|Nzr8JsvpPpzHaPYd285N1CCfTL-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|206.0|0.78|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc01076a|Nzt7jWQC9hvycO8uCWc5Ja9rE0oL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7559999999999999|45.3|0.58|2.03|['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06011c|O-6cKc-6CgGeagV7Swl4cuP79PO9|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.2|0.73|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.181|O-PqCiLEQJ07cu8uIMPwFnO0luZo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|246.9|0.67|17.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|O-_OohKmxeSpqmhvZvXCWIHii1TK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.0|0.62|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01924|O-hHjppFUy3xMsPdCYLuu1ut-PX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||13.95|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M110', 'Au']|['M110']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|O-mxXJc_ZHJPH8bAFA8wP-1G_9UP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M110', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|229.9|0.76|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b11229|O-oI_sNhaoQtyiGPUk0ywpEdwEH-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|201.7|0.78|17.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'CMB-vTA', 'AZO', 'Ag']|['PTAA']|['PCBM-60', 'CMB-vTA', 'AZO']|bulk|https://doi.org/10.1021/jacs.9b03639|O08Z8_RRmjZ1F9p2Ujk6qDtorBQL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'CMB-vTA', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|230.9|0.6809999999999999|17.21|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HAB1', 'Au']|['HAB1']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.orglett.9b00988|O0AH_PTaWGGUEklwOB35jroTF9EQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HAB1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.96|207.0|0.59|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21775c|O0Ajnr8nVxmpD-avOm9bNdpRnryy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.02|209.5|0.63|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr08432k|O0ArpzyQ4QeBGTzplehLWaYdvaPx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -Br9C100H600I291N100Pb100|Pb100C100N100H600I291Br9|MAPbBr0.09I2.91|1.6100001716761378|0.97|189.6|0.603|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|O0Sj2fmJgatuiCRXOqXh6z6Dwcmh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.09I2.91. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.4579999999999999|225.0|0.58|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702019|O0TP0pFthDhraILcbTrhPSk8lQiI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FASnI3. -C100H600I300N100Pb99Sb|Pb99C100SbN100H600I300|MAPb0.99Sb0.01I3||0.985|218.2|0.6920000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|O0UX69E5sixIA4GEx-5c9504RtpI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.99Sb0.01I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|182.0|0.7070000000000001|13.0|['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'FrGO', 'MoO3', 'Ag']|['PEDOT:PSS', 'FrGO']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1039/c7nr03963h|O0cbGIT9uQXtyMb0Hhs7ExQ8477A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'FrGO', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|225.0|0.42|8.22|['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2019.116232|O0pHtBBnvEAOpA4l4gocs_7iJX0O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.883|210.6|0.3229999999999999|6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|O0zIBuP9wvq5RrvjFC2bdPgsXI4O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.13|73.0|0.6|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|O10cfPuphyrkSxDW9f8ms9skx5hQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.73|15.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|O11FRwSNhSy8UcmHAVK6OASpwMWQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.1|0.695|14.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.08.027|O1HLh51mwUK6Io7gQq9MhhwaGuID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.4|0.617|14.36|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|O1Mayr0qnGIm3Y9q7NrFHuSfpr_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|O1Xejrq14_SvhGMCCYlyg3Cavx3_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.1|0.764|17.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902021|O1YNxNO8faQ_flU7NVvz5ZwUsVzE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.74|263.0|0.71|14.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|O1ZRcAiXroAgdgPu0soOqdSUzHxB|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.3|0.621|13.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|O1_jRcn9M5j0q76qF3bHqM4yTEnj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.73|23.2|0.381|0.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|O1a9OuD-xO2a4W2QcruGSo1OliH8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.057|155.29999999999998|0.718|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|O1iIJfqYv0SHNicjJyxT90iFQDF2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|230.0|0.65|14.8|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsami.8b11049|O1jFsqzAxiNAQAB6JsORd97VrG-A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|166.20000000000002|0.8|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr08375g|O1uo-MyJ-VdUUoxFpQra3Y2NXK24|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.03|159.2|0.65|10.36|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|O1vQhUIZ6Cpv1R7HNaf8WFy7ZXAY|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||0.95|198.8|0.72|13.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|O2-T6eXB6s5XtiBo99C-2S4pVR0Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.5|0.6|12.29|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|O25OdHeGanrP716JtbcgSDP3OW6-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|144.0|0.615|9.05|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201500543|O26S15Sg5Wi3NQAMN3J_l5gqyWkl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|218.0|0.784|17.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1021/acsnano.5b07043|O2GmFEYRNhxaAeRLyAtBOeTuRnIq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.05|219.6|0.731|16.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06305|O2Icb-i-ov3T2oZoCgwcUl4lBEoi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NSn|SnCNH6I3|MASnI3||0.02|117.0|0.085|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']|['PTAA; TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10734|O2_TnvsRiN9G1clObwtp7oiF_Ydf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']? The composition of the perovskite layer is MASnI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|175.0|0.72|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|O2j-zNXuTslq9aymPzyo57kA_0YJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.88|195.0|0.56|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MTA', 'Au']|['MTA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pi.5545|O2lDEJq9t2YAzCUilqbXM87UvqwR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MTA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.846|199.1|0.56|9.4|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|O2uPzcBccwtFHt5LAbxQGNRBtFeJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|O2x3tHU-PWqDx5dpRU1yl4Fr7PuH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr3I. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.77|185.5|0.66|9.43|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|O2xRmF39aU-R3BZfY2JVSZM1NH07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|209.7|0.71|14.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep15889|O2xjQlLYDnOUUPd0dFOSGMmeSR7A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|195.0|0.72|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b00793|O2yHkZu7Bmt5iVES14RchKzP9pBq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C95Cs5H482I276N183Pb100|Cs5Pb100C95N183H482I276Br24|Cs0.05FA0.88MA0.07PbBr0.24I2.76||1.17|241.0|0.816|22.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-019-0538-4|O2z4LbDZwKkNf6JaPORflwQKS4a7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.88MA0.07PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|180.0|0.52|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab334f|O34KkdHk9wbIoxa4fAvrdykC2jc-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|107.0|0.5660000000000001|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0042-1|O36c8R699lnF6OB0BfMVJ4tiG_Ox|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C99Cs10H519I249N174Pb100|Cs10Pb100C99N174H519I249Br51|Cs0.1FA0.75MA0.24PbBr0.51I2.49|1.6100001716761378|0.978|177.7|0.627|10.82|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-019-01294-0|O36fh6iMeZqsmXYDufo_Vs2uSwrc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.24PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|224.1|0.73|17.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|O3A5YfU80_9OjeuYVD_KXBuFUTns|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br14Cs5IPb5|Cs5Pb5IBr14|CsPbBr2.8I0.2||0.67|18.0|0.31|0.38|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00103|O3DZDkPk3fLU_5stFd8IKvjeRh_e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is CsPbBr2.8I0.2. -Br3C95Cs5H491I297N174Pb100|Cs5Pb100C95N174H491I297Br3|Cs0.05FA0.79MA0.16PbBr0.03I2.97||1.03|164.4|0.596|10.11|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900204|O3E4PkKYGyL9Donjvb4iIl0OxnKJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.03I2.97. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.94|227.2|0.53|11.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|O3Kl5Km0s3p8NfW6dC-M_IETa5HU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C20F2H46I15N6Pb4|Pb4C20N6H46I15F2|(oF1PEA)2MA4Pb4I13|2.5000002665778536|0.598|13.0|0.432|0.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|O3MhU43fXUVRpkVrHKXoPbSvBi2c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (oF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|151.0|0.73|11.6|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c9se00438f|O3NAa2n8b_-mWtzgw6ze0k4MQr_L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|||||['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'BCP', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201902353|O3NQtEiJUvlHKXk4R3JNTaT2_SEa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.016|192.0|0.722|14.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|O3eAofBTQKHuHI_72dPxYOrNGyf9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br6C4CsH20I9N8Pb5|CsPb5C4N8H20I9Br6|Cs0.2FA0.8PbBr1.2I1.8|1.8200001940686776|1.26|156.0|0.775|15.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|O3g82y3TM317ZCl8ASR3Ab9VCmd3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|188.9|0.685|12.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|O3haQVqCD5Ie_0yKsOeE_sR_Pu-Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.0|0.56|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00582|O3mDmZqmK3Hx77PHgYBvKGbFhZiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|214.4|0.73|15.77|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|O3sw2nJDceze4oQj-FoGEaxpcSzu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.66|15.0|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1117/1.JPE.6.022002|O3vB4eYVvd_N38Oaskd6NNRJfOQt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.29|66.0|0.7|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee00762j|O3zQaH_cKJg3atzeVFZmS280B5ia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|182.1|0.7609999999999999|14.28|['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['rGO', 'CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.07.022|O48WC2eMSOqZNJIAHAbcaqDj-y8a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.1|0.78|16.42|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|O48_GVTYmeu7S_wiCENaonVDMLdw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|216.0|0.76|17.19|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PPNBr']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|O49_UqDpSApWOHmGnaAYbtebhPF5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.0|0.738|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4943019|O4I8iFuxBaCzgyP4mEz7NTkLcPZk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.612|172.25|0.448|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||O4Jj8TA37g_DW3YxWWFNAk1M1IeK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.44|66.6|0.615|5.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']|['BTPA-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|O4azN3NmJp1uc7AlDPSZ-6idtJKH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']? The composition of the perovskite layer is MAPbBr3. -CsI3Pb|CsPbI3|CsPbI3||0.88|99.5|0.57|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|O4l62WHFFZejb_iUSdAbsvs8Ij6y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.92|209.1|0.726|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03658a|O4npiLRrsYou37yJU8KOmR_mkLNo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.018|205.6|0.6559999999999999|13.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|O4qhaz-lkpazxHv8Rdc9SKDoneA7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCH6I3N|CBiNH6I3|MABiI3||0.4|1.1|0.361|0.016|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-46199-4|O4r3P9hkfj5sc6MU7Y0lXL6fp0ld|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABiI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|109.4|0.7|6.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|O4sKSenF6srl5iqXd79hsKRnV_Hr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.9|175.0|0.77|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|O5HSUeJcm5_r2UaZLfTS57-kPi-p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.19|95.0|0.53|6.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Ag']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1002/ente.201700361|O5SQHLmfWBfe5M7VFaNyLkLkF7lC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|231.0|0.72|18.08|['SLG', 'ITO', 'VOx', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'FPI', 'Ag']|['VOx', 'X-DVTPD']|['PCBM-60', 'FPI']|bulk|https://doi.org/10.1021/acsami.8b04396|O5X9ozIM7WZUZc4MPk6_YBuqUWCD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'FPI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H40I24N16Pb5Sn3|Pb5Sn3C8N16H40I24|FAPb0.625Sn0.375I3|1.2400001322226155|0.679|118.13|0.738|6.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|O5_L5M2cOoLbyun1lWZWqYmfm9Id|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.625Sn0.375I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.9|['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'TIPD; ZnO-np', 'Ag']|['CuInS2', 'Al2O3-np']|['PCBM-60', 'TIPD; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.04.007|O5_fJ5WljpOa3IoWta-XOCd6E0I6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'TIPD; ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|||0.35|['PS', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.057|O5e4Yx5WgZd4eTdW5mkdXc8jlply|a perovskite solar cell with the following device stack: ['PS', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|227.3|0.642|14.62|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|O5kgSwtmMts9zSA4kCNanYB8Ccyn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9747I4980N3553Pb2000|Cs100Pb2000C1900N3553H9747I4980Br1020|Cs0.05FA0.8265MA0.1235PbBr0.51I2.49||0.84|215.2|0.55|9.94|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02391g|O5sy2zd73jz_TUaTBRfUjtl5g5QS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.51|103.0|0.65|3.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800136|O6ECi3Yc_u-Pl-0hKVuBc1VNrqnZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4169999999999998|79.1|0.6859999999999999|7.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|O6Uotgyxxb12qs8LX5ZSnCwtMJaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|198.0|0.64|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2014.08.015|O6aNx13Dmpo6B40xH9YWWuZwJ6yH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.0|0.76|17.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|O6bWSSBejkZo0FA_hlc7tKXLBAsB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|O6kteWiq6eFAyvEVfO25V5FnCB8L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|123.0|0.6|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600210|O75VB0WQbiDgfIYZTWZcfFmMmWfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|201.2|0.526|9.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|O7CkrrV30jPL8sCUb1xFocRvcnXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.8|0.75|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|O7HS8yvL7cK__uH8kq1LMB1jjSBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|239.0|0.584|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153076|O7NN3acM567kEdJwP_MyRa4tseNd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|10.1|0.24|0.29|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|O7NeJyh_3NeO1egZGSA4QFtARNoO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.6|0.7609999999999999|17.77|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900164|O7h_NQZHoC-5MoxKs29vffmUEkqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9H31I16N5Pb5S|Pb5C9N5H31SI16|(ThMA)MA4Pb5I16|||98.3|0.62|5.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.0c03363|O7oA0V6308cGYWJUalV4RQekDWXq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|177.8|0.63|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|O83AO8tE1RKOUNgys5Gh5oRsuTvO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra09691j|O8AINU-B54lp2mqx9DfEc4OOq4it|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|61.8|0.33|0.93|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']|['none']|['ZnO-nw']|bulk|https://doi.org/10.1007/s10854-016-4640-0|O8BuIRFSDqOhKcjG-4cej0pvkk2r|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.70000000000002|0.63|9.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Liq', 'Al']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1039/c8nj04131h|O8DybjeZTHGAeUOALFqVuundKjmO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Liq', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.4|0.59|12.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|O8G5DuSbJjhhnBk1WsFrD_HAnIc8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.8|0.72|16.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta00973a|O8StNhKkWSJC1BY9-dwLsAS2XLba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|132.4|0.69|9.51|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep04756|O8W7hlaxs-R8BHudQboqvlY2xjsG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.986|212.0|0.64|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02264f|O8g82aMVrsE_P1cV2fxYxSinpb4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.3|0.8109999999999999|16.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jiec.2019.08.004|O8giyOxEmDd1ew1YRxhctNWi3LLJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|176.4|0.57|8.8|['SLG', 'MSA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|O8pINSxNurjwNluugwTc8H2hx7nb|a perovskite solar cell with the following device stack: ['SLG', 'MSA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.7|0.542|9.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.018|O917Yj0Q00GJktzpOUmciJ6TxL0S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|177.0|0.66|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|O97S8cedgSXl6r2L-hlo3W3mgt8X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.31|59.6|0.62|4.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06177f|O9MtIbOKxCJh4iNprCPl9bPGg-ig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.6|0.601|11.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1098/rsos.170980|O9NRGARjf2adhAMf8IYtDFIJ1b0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.6|0.76|18.61|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|O9ZNuvskWOCOKzFgKRLDi_gXszIC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|156.2|0.77|14.38|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|O9igTatZ3b2Pf1Vaj3U0b5VlVm7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.2600001343552385|0.73|198.3|0.56|8.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|O9ou8yXnvb1sWOdCt5cF0W-R7j4p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.926|169.20000000000002|0.449|7.03|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|O9tD8Dnc1F0hpHgnDEtejcTph3_9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.41|47.400000000000006|0.37|0.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|OAM6TsrQr0LQvcFOFDWQbpTT41Xh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.1|215.0||18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02020a|OAT2UjK-Ula5TWf_PAIBfbodfPEn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.0|0.736|17.2|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.039|OAhutiCZWC0Pe4UWjgAkj7Uj0FvG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.43|55.0|0.72|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H1', 'Au']|"[""4,4'-(1,3,4-Oxadiazole-2,5-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501665|OApW9xcKuw9mnAu-5pyLK8gPqgtc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H1', 'Au']? The composition of the perovskite layer is MAPbBr3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.005|150.79000000000002|0.7090000000000001|10.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|OAtGQG-g0J9vEAEJF10uMXWKo2Db|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.07|128.8|0.732|10.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|OAvuNT7FiUuT-rgaY81-rdU7njTK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|154.5|0.7240000000000001|12.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|OAyW_R0Bd6sjJlKIzhR1Ujjfl6Sw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|43.0|0.49|2.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|OBBaGOMB-yA1iawZLfikbi4itsDC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,4-spiro', 'Au']|['2,4-spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.10.014|OBCXhc9f1vD58gO9utTn2rMuuW4Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,4-spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.069|168.9|0.62|11.22|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.3390/polym10111227|OBL8ZpgPnw6gX545v7jLwXKixQSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.63|212.0|0.72|9.9|['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s11426-019-9653-8|OBRwMe64D1ya6NSDZeQGLp3BGaqI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|194.9|0.66|11.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pssa.201700281|OBZ-VDjvjiKKsD1itFkjpE781W8O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.03|188.0|0.722|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.02.052|OBpTwox8lw_DEzHV89TlMm_SwVNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|OBt99fZTdCOyPEARZdFtr7fG4awu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|79.0|0.49|3.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/aenm.201500569|OBwV5lR3Ho_xBeKGZ2nqcLm1gRy4|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|163.79999999999998|0.645|10.64|['SLG', 'ITO', 'YC-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['YC-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pip.3205|OC88tXNduB4vfbHw9G95d_CUlk57|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'YC-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.12|233.0|0.71|18.53|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|OCDgy1DUikYwvNGS8X1CpVpeXYV0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6240001731689735|1.05|189.6|0.715|14.24|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|OCKQ1N_7PKaFJgv0iDfupdDao4MM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|226.0|0.49|8.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-9382-8|OCOUlhslY30J05DPqU1rxHpy9NDL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|217.0|0.682|14.9|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|OCRSdCxxMn7ilcEURm_PfIydKaXv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|194.0|0.723|12.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|OCZcWzfQzezL1xEEud8eErRCbyWs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.005|190.8|0.69|14.96|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|OCfG_Ip-9UwGYrN_QJJyZehyRKX_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0400002175275285|1.273|109.1|0.66|8.25|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.07.006|OCi9lY3UAftlducp5QQzBRu8lRfz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.09|229.8|0.6709999999999999|16.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.182|OCnP_iDEF_R5rRPyK4wBPVAucYXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|213.0|0.72|16.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|OCtS-xZ1__-gc_wDaNwPFMftc-ty|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|124.0|0.56|6.1|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1088/1361-6528/aae9b6|OD8vNA8agbgi_rX-HoU14NR9awre|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5750001679440475|1.08|217.9|0.69|15.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|ODGcEYbvDJt6iYkMoI03EYGI3qag|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.7|14.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|ODa2QSQAWpeg67YB1WCA3W3Zt0zo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|97.9|0.51|4.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|ODciZriUYuC48fvuZbKWNhMhXmMU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.7120000000000001|122.63|0.652|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|ODfg8BiWug1tMwMPP87I8pETVZzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.04|150.0|0.59|9.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']|['NiO-c']|['PCBM-70']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.100|ODgtSy8ppcPfnm0mGuxJr-rd3ijb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C5H28I12N7Pb5|Pb5C5N7H28I12Br3|FA0.4MA0.6PbBr0.6I2.4|1.6800001791403176|1.07|174.0|0.7|13.1|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|ODqyfxf496XPS8_DK05rwf1J-hP8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.6I2.4. -C79CsH435I240N118Pb40Sn40|CsPb40Sn40C79N118H435I240|Cs0.0125FA0.4875MA0.5Pb0.5Sn0.5I3||0.76|319.3|0.76|18.45|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01237|ODsUb13357mTbc9jfVl9KWBfasH-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.0125FA0.4875MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.4|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1896-5|ODvLabNqBY9c8XeJjQTns4g-nBo7|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.0|11.4|0.41|0.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDI', 'Au']|['PDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz400348q|ODwK-1SGYYJjXA_3lEWxrKfsD-_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDI', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|OE-KJmuC3xLmckMghmZ88TUk30k4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|212.0|0.73|17.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02242e|OE9dXnf4goOrxBmbWBfDHYLhlCgw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|175.0|0.662|11.03|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07758c|OEE8vMj8JskibWSHAWUcpHBD6KhI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|68.0|0.53|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|OELZLVKVdi5j8wyrzoGD9hSmsgky|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.0|0.67|11.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|OEL_QyaT5LvdNOiGHCmZk0cGVDU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.9|134.9|0.66|8.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11082-016-0819-0|OEM5IK9jZOR30M23PKjkSlackF-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.82|99.2|0.613|5.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|OEM9TaRK7L3I8qr1IaxsHPjthyvT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.8|0.67|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-np']|bulk|https://doi.org/10.1016/j.vacuum.2019.05.025|OEYfU9bonYBXBL2a8Wnr10vsMTTC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|237.0|0.59|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12132037|OEfBcHW_AN8vUVLbvKajpEKz9c_a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|97.0|0.55|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|OEhHjkLdwEJQFg-lwPqWP7DYnnDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||0.9|162.89999999999998|0.53|7.8|['SLG', 'ITO', 'NiCo2O4-np', 'Perovskite', 'PCBM-70', 'Al']|['NiCo2O4-np']|['PCBM-70']|bulk|https://doi.org/10.1002/advs.201701029|OEjCJpIZfyn39K3vUI4zXoM903wp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4-np', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr0.05I2.95. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|234.0|0.765|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Au']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01499c|OEk3Qvh08UnCeEWnYAlu_5ryGZM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.6|0.58|11.62|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.008|OEl4h1agJEu5XauO4Tc8O1_D653c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6100001716761378|1.08|228.6|0.72|17.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|OEnfuVLakKDu5chlygQ7bumEKVQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.145|213.1|0.779|19.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|OEv0pNdFECywgWwo439vLgS7J2oW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|31.6|0.408|0.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|OEvn4ioFCgKjs0DdMR2UC7cwc1Ay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|177.0|0.53|9.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00545|OF-2Pz7Wkxry3QWezUfpDVZMiL8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.147|218.0|0.69|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|OF24cgfOJauTm15_JXarr7OkUJFn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br90C186Cs14H959I510N343Pb200|Cs14Pb200C186N343H959I510Br90|Cs0.07FA0.785MA0.145PbBr0.45I2.55||1.17|236.6|0.75|20.6|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.017|OFBf13PXcNuLe53CQNmBClBt1NGm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.07FA0.785MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.0|0.65|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|OFE7PdSeKOZ5xvyOuI9kB6bPML07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|193.8|0.696|14.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|OFExO3Udf9ZE38p73ghy12Vk22WE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.09|204.0|0.74|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.7b00523|OFSTliCCKlOWVfUJNM8R4hy7dxsA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|208.0|0.6|12.5|['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'MoOx', 'Au']|['PDCBT']|['C60-SAM']|bulk|https://doi.org/10.1126/science.aao5561|OFSVIBwf6XhrKZwvR8OjAtDBORTA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.98|209.7|0.69|14.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|OFUSb9Ijln6gus_vWndrwXzan7_q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|232.0|0.71|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|OFV29exSrlOv22eb_5RhMwV2yWdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|226.03000000000003|0.66|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|OFXgqzAsTV9lMyxdOzE_QSzkL28x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C85Cs15H459I300N136Pb100|Cs15Pb100C85N136H459I300|Cs0.15FA0.51MA0.34PbI3||1.091|230.0|0.78|19.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b01054|OFcJqmvbXO7aXy5HvME9LX1EN3uF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.51MA0.34PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|119.0|0.39|4.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502206|OGAIQn04LAgcjptbu6vkdV239z6E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.7|0.58|11.11|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.048|OGIVDb8s1CD02Frh9J_Hj6tezUas|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I10N10Pb10|Pb10C10N10H60I10Br9|MAPbBr0.9I|1.7200001834055632|1.06|198.5|0.73|15.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/C6NR06670D|OGSHbRrTJDY_rzanJEM0k2smNdGH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr0.9I. -Br9C98Cs2H493I291N193Pb100|Cs2Pb100C98N193H493I291Br9|Cs0.02FA0.95MA0.03PbBr0.09I2.91||1.12|241.0|0.8|21.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800296|OGZxl_F0iGlRtPzOhvnCAivfwByF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.95MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|153.4|0.5579999999999999|7.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|OGlnzYmknFDrzLveLjHABcV2ujEB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.667|191.2|0.51|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|OGuCIQekSE1k4OJyJGTXfd2j3XMI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.945|207.5|0.71|13.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|OGw1o71obuKK2MqPGWXeUCySC9Aa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.058|215.8|0.742|16.68|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|OH-RMhWtVghjnHmHGUndogrXnGTn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.8|0.654|14.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|OH6Wcs5a4NlhqM6yBfJSlQprR5cS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|OHDj76b-SIMTvXcy_uGfCCn3moJP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.636|158.0|0.423|4.25|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCA-2', 'Au']|['PCA-2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801248|OHVayxm4VftmIuICGjzcspV2zNZN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCA-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.79|18.2|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|OHY2RxNyiwzVd04SmSpjjtMoh4kR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|OHahsDwMQi4xMar3S2aQTDWf7YYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|145.2|0.61|8.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS; rGO', 'Au']|['CZTS; rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801459|OHbwjOsGUyWsNjwTYpwYpQr5s1TG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS; rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.2|0.758|16.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|OHcyCIJOsNhGTWJLBuwl54Ouo-9W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.09|220.0|0.77|18.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900474|OHhcLGzMnTy3EOEgHxL6R0ImzhCW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.2|227.0|0.7290000000000001|19.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/aenm.201801208|OI3sqF9Br2eKbxb97U6R2_i4P35C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|107.3|0.52|6.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03622|OI6Uv8uFqYaXRCyH5scXJ2LKtAP8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0||16.41|['SLG', 'ITO', 'ZnO-c', 'PO-TAZ', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PO-TAZ', 'ZnO-c']|bulk|https://doi.org/10.1039/c6ee00292g|OI7dAXez_ZVQKNcBTggw9IWocjoi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PO-TAZ', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|197.1|0.49|7.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|OIFPP4tbvbYpPHFJ4ZV97aWn14DS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|58.8|0.36|1.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.116179|OIRtev4Omm3IHFU2Ls_-ntHQcrsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|202.0|0.648|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602822|OIkp8SP3gX2ny081r4ONPDQLEnpP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.5|0.7559999999999999|18.01|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|OIlWzZ3OK9i1ciPhr-stCfpTaNkc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|96.3|0.61|4.72|['PET', 'ITO', 'Ti', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti']|bulk|https://doi.org/10.1039/C4DT03920C|OIoomUrNi6FfV8wgoI7Ynz8rRKdR|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Ti', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|227.6|0.77|18.58|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['3-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|OJ1pNydhyjRtJof3Nnb2tgJiE8CZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.634|158.9|0.23|2.35|['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEBS']|bulk|https://doi.org/10.1021/acsami.7b00576|OJ4_aF0dyFB0-frshPll4jbgJ7To|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.3|0.7070000000000001|16.27|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|OJ7Eac9nlP66yXfOsdxPjkOylNeD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.07|211.0|0.73|16.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|OJGzBFokjs7SqEoWMPEpxD2CWjAn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|225.1|0.8029999999999999|21.0|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|OJJD8eMo5CEwTqw7iFYd5ZrVf4qH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|153.0|0.75|12.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|OJLCIcRo1KE9ePzq6HxiC2eu_39t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|130.0|0.6|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|OJMIfQU49D9kEUTzuBeIaS4XzIsu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|146.6|0.6409999999999999|8.98|['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoO3', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|OJOFcYL-Wuq2dmGBVa149_1KHrhT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.0|0.63|12.21|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|OJTtQdvo5h5lUp6YH8KmHm1Ybek2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|234.5|0.69|17.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105681|OJ_oFhxK7-yoQDqB0f6N_BBi4T3R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|161.29999999999998|0.48|6.68|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|OJf1lOkoJOtXf9x6-k38NTQC1nym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|215.0|0.72|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta09992g|OJhLozUhQkz-f7LIkDuUqCgCBvbN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.22|77.8|0.725|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000008|OJtSDncCmnUIprjLK_lXL2TdN4N2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|179.0|0.7|10.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00902|OJu1rS9lxqWkQ_pTVFtOrAQ0wO9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|197.1|0.59|12.03|['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|OJut4DI6eAQVjqOmdebDuIF_tjQl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.88|159.8|0.73|10.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/ab28d0|OJwnrxbG7cL24O0Fp2yemOR4f1Ai|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.3|0.72|14.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b19330|OK72bfe0YH1es4IjtiK7eQUA5vUI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.7|0.77|18.49|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|OKENTpRmveElAy3fwUMZKfR4g0eX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.923|228.1|0.613|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|OKUxY1iIVZz4SFvDlSUHocbaAOrm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C97Cs3H501I250N178Pb100|Cs3Pb100C97N178H501I250Br50|Cs0.03FA0.81MA0.16PbBr0.50I2.50|1.6300001738087604|1.04|151.0|0.72|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|OKVAoynNEq49Myc1Ewnysp83dBfE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.81MA0.16PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|1.06|214.2|0.7120000000000001|16.22|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|OKZzUO0O6aFF3E_S5p43G1IKiTQD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|150.7|0.593|9.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|OK_YMdzxFouOP_ur34rNDsGP_JnQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|1.0|8.9|0.476|0.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|OKjyNqJhO-tv-bqiHioboptVukc7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.87|117.0|0.55|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|OKnN-oIvQESU7akcmtf5w8IQ_iUf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|1.02|13.3|0.348|0.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|OKwHJhD2OhHt7FVK9ZuL9pwWbEU-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|175.0|0.74|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|OKxSH4SnWJZmyUMtBP_aTzOMN7-m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|158.0|0.7|11.0|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|OL2QQuv38I55tfbFWW8AeEuVVoNm|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.072|237.5|0.807|20.53|['SLG', 'ITO', 'CuCrO2', 'C60; PCBM-60', 'Perovskite', 'Zr(acac)4', 'Ag']|['Zr(acac)4']|['CuCrO2', 'C60; PCBM-60']|bulk|https://doi.org/10.1002/adfm.201902600|OL5iox-3aLqO1ZH7oNFKp3hgLfyv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'C60; PCBM-60', 'Perovskite', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.431|68.4|0.78|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8dt03296c|OL7SG22i2p4HMakB-g2hKmaA2Th-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; MWCNTs']? The composition of the perovskite layer is CsPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.93|111.0|0.62|6.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|OLGabvMSTjGsl3lD3H1A2x_AILZY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|178.0|0.6459999999999999|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|OLI_gbbmNSHgjNR_NqjR4KinJVfJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.012|194.0|0.69|13.59|['Y2O3:Eu3', 'Au-np', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-07218-4|OLJ3nhhEeegGE-ymfVPjRm7npYIz|a perovskite solar cell with the following device stack: ['Y2O3:Eu3', 'Au-np', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.40||1.05|296.0|0.77|15.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'ITO', 'Ag-grid']|['PTAA']|['C60', 'SnO2']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|OLQuNBvhvLofUHeDY0VjgDWpohq5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'ITO', 'Ag-grid']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.40. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|228.0|0.75|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|OLaN6nooUdv1O6rjclt0h2ChOCRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|188.0|0.78|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta11128b|OLdc-_hBWFZK-Dd8xd6F_yjljY-F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.09|199.43|0.722|15.71|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||OLopVxJqi-VfFr8tDO7O_Yv5Ua97|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.0|0.74|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02014j|OLpDC6jP-7YM8DW6tvgmuA-9EpZD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.098|222.6|0.715|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|OLqR5Mf0Z9_HPEwigXL0elA6Bnho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|175.0|0.55|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr09819c|OM-s0OmrMqoDXRqdAxguRqyYnP6B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|177.89999999999998|0.75|11.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN; ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN; ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|OMPF0K-6NXtHckuUE-inrEyP7el9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN; ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|170.79999999999998|0.6659999999999999|11.23|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|OMPPCC6DHNsjVicJxDd4z-IjNDEe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|167.7|0.6729999999999999|11.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|OMn-d2lU6JbPMVolpNV_oipWPcdz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.0|0.66|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2920727|OMoW14h8PJioZjMpb4oj_htktfTV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|209.9|0.7759999999999999|16.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|OMsGerIrKOAljgvH0Dz0cJb5Mgnj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.7|0.62|14.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|ON6rN4nt6TtX7kRboHc-ze5WH13_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||0.91|171.70000000000002|0.59|9.2|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|ON804IpqqlvOLEVtTRjOcOWwxRWO|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.52|15.0|0.4|0.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3TI', 'Au']|['P3TI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|ONGLCBUI4XhH54tJmoeaz-eVogCL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3TI', 'Au']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|169.60000000000002|0.6609999999999999|11.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PVP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PVP']|bulk|https://doi.org/10.1021/acsami.7b12135|ONO03539SBk1JpOa43AB_s1TL4Jr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PVP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5539999999999999|5.5|0.573|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.11.046|ONQxNHPaFx8mP3fvE52qm5kBnlaM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.89|88.9|0.7|5.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|ON_1hiG1lJMnLbCevzp83ivu9YyA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|175.0|0.69|11.41|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|ON_NnuXsO-ie6acbMX4isAj3QmyT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.3|0.76|17.02|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-np']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800004|ON_R6GwJDHxNegWaQ8cveQ5R-9q9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.64|20.0|0.39|0.5||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|ONa3WUBHb1JQeZrMO5nTwNSbACzF|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.04|198.0|0.76|15.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|ONxUUi_tozRfDVlrQaezkNnYPYix|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.747|109.7|0.5429999999999999|4.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01843|OO89OwrneteJGqeyqA2WG8F5JHMU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|190.5|0.7140000000000001|12.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1039/c4ta03684k|OOGkUT3C7ARdjeUG_QAq8kZOQuNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|214.0|0.77|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Au']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc06290c|OOPbcDy46cDG_lXvZpJyLMx1YxOP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.1FA0.36MA0.54PbBr0.2I2.8|1.5900001695435149|0.018|9.03|0.66|10.57|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|OOWjxUITs5xhZrFFgLFXhKospriY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.36MA0.54PbBr0.2I2.8. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.440000260179985|0.48|3.5|0.53|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10739|OOb4NkbG5IpJYmGgmBMpe_M_mM4e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|183.7|0.68|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta02822a|OOduT_9rJmDjuS-AZ1cGkyQUW_80|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5300001631456466|0.97|220.0|0.6629999999999999|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.05.050|OOhK3JscubJYlm3T5lORg9mCg-6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|140.0|0.45|6.1|['SLG', 'ITO', 'CONs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['CON-16', 'PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c7nr08797g|OOhelTYlupKgXbMfg9akHv2c4EY6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CONs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.068|209.3|0.6759999999999999|15.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|OOyr1WVFW7fm8C4uPMy_wBf2JqiO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.97|216.0|0.75|15.9|['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|OP2ULrr8TNiEjBTRh-HH3UtBgVAR|a perovskite solar cell with the following device stack: ['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.04|240.7|0.78|19.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|OPISALhZzgvG-PcIhM3V-Z36Q4v8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.22|239.0|0.754|21.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|OPSoeJykuVwwlmMVIiwcMXzrGbeg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|140.0|0.6|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.038|OPUmjYV8PPqZwLFuHuA0ktltgYiy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.05|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|OPY0gzDablx3Fa86uTH0_ICZE_iF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.96|170.5|0.748|12.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|OPYkyE5MjxXgW57jzqQsqs6UlH6Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2000001279573695|0.84|330.0|0.8|22.2||['PEDOT:PSS']|['C60', 'BCP']|not processed|https://www.nature.com/articles/s41586-021-04372-8/tables/1|OP_wTK8S_16JThQ4peoLvQnan-2G|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|158.1|0.7|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1002/aenm.201600285|OPd4F9ofim29CcITBxyQe8nuhjaI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|231.0|0.75|16.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b01545|OPeHRG7AD_PWvseS-b7VkAwYXKGm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.07|206.0|0.73|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180719|OPk7kcJrVzoIoiYDKgr8kjmcvY5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|178.0|0.63|10.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1126/science.1228604|OPoCkkw5x14YitHWuEN53K3zmC5K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.07|215.8|0.74|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|OPoDLtEuurh9kZH-PF0HeoMTJ25Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|216.7|0.774|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|OPpN1kGPHNxleoxD5JKcUQFn18_U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.1|0.664|13.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01820j|OPphnpXiTc_GtV6X-0cFnBtW6d8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|195.0|0.731|16.39|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|OPquRJPeb1nRan7DDVIgBWfDaLV0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.15|213.0|0.7|17.07|['SLG', 'FTO', 'SnO2-c', 'Cs2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Cs4SnO4']|bulk|https://doi.org/10.1039/c8ta09382b|OPrZ3MGpn8ix6_x1tlznehBF4Shx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Cs2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.308|197.2|0.5329999999999999|3.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'TPFB', 'Au']|['PTAA', 'TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00866|OPtNLk7oa-TxTro6OCz2b6v8sjwn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'TPFB', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|153.92|0.56|7.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MoS2']|bulk|https://doi.org/10.1039/c7ta11295e|OPvHQuXGuD6eJhHd3mSgQc1b9BgS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|222.3|0.7|16.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|OPyMirLpKWbfsxxQklHQ6pdV31JG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|245.3|0.622|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|OQ3W0KghTro98MZUIPIOtj3u77lT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.01|206.1|0.7|14.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00286|OQ4DXAE340orBGIUZecE_1cUUJ7K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.6|61.4|0.69|2.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|OQ83Cjc7Td6QfWa-FHvHUXf1bEOw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.6300001738087604|0.87|81.4|0.479|3.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|OQLJPQbO-R-ApJ-TPuq6KD3dtEOk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.017|183.1|0.629|11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|OQpnPKsvjUwI9IddzGx4uT-pXU1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|69.0|0.3289999999999999|1.43|['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5ta01532d|OR-7FUiamrYIEz9sHN3u1gvvmTIh|a perovskite solar cell with the following device stack: ['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -BrC10H54I29N16Pb10|Pb10C10N16H54I29Br|FA0.6MA0.4PbBr0.1I2.9||1.064|234.1|0.772|19.23|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3389/fmats.2019.00200|OR97DAoZqJax1K6Gbo6XG0EO3ZDs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.1I2.9. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|0.98|86.0|0.47|4.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|ORDYJ953aSvBx89lJIuiEX40EfDk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.07|10.4|0.41|0.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta08203k|ORGlNn2cmRDi4ZaAcYjVjtRHCL9v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.1|212.6|0.718|16.7|['SLG', 'FTO', 'Au-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np; SnO2-np']|bulk|https://doi.org/10.1002/aenm.201900720|ORJum2xREAb13w8Fq-LA1u-EyMUH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53|1.5900001695435149|1.08|202.0|0.665|14.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2020.110517|ORPREEkhtszDnxjQpFdcvpNlYwVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|228.8|0.29|4.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600132|ORTACqc4uYuQ1-EhBFG3SNoZ5tyw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||0.98|243.0|0.733|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1088424619500457|ORUxNqEJtizt-LhAUCAKthzeBcFy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.4|0.706||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|ORZxGnVVYQ3e6N_HCnf7zIDnuKik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.06|234.6|0.725|18.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137495|OR_ZRH-Oq_6CA07sCFvPvWnfv-LB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.4|0.52|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09925|ORaaZGLsTpzxk-TPVndsckpeRpUN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|194.4|0.687|13.3|['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'F6-TCNNQ; TaTm', 'Ag']|['F6-TCNNQ; TaTm']|['C60; PhIm', 'C60']|bulk|https://doi.org/10.1039/c6ee02100j|ORdXy9uNCX1pXANWpd_aI9NUQ1Uj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|164.0|0.4|5.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|ORjYve1J27rV7QKW94x-u5DIhzEZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|182.9|0.69|11.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.orgel.2018.06.043|ORqc3JsSVilK5MOREhRU1WHiEeJ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|OS1OqgFdN0KwamvbrQRWSj2_5FTP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|145.7|0.6|8.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZnO-mp']|bulk|https://doi.org/10.1038/s41598-018-20296-2|OS2zn05uAExif236c4k3FJzqF2jz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.72|16.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|OS9I5jDmyhbS3fGFYH7ZgjpcUW2Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.452|221.0|0.495|4.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||OSE19Lmhp5CGOk8ScSMXd5St45eR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.65|13.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cap.2017.11.010|OSXfO98KEqspAoR7Hb_DrcrhtJrb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|173.0|0.752|13.9|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.008|OSdCURQwdaW5-Y0xF12n9Atz1FVf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||0.99|228.0|0.637|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|OSjSM0nEiIexgAPuEiq-GL8BRoKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|90.0|0.65|3.2|['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanospheres']|bulk|https://doi.org/10.5229/JECST.2018.9.2.118|OSrSwzRikke7Ths36-x11R5_W4sB|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|1.03|224.3|0.715|16.48|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|OSrUraxtQd5pBIMYxz_EtC-Bnn7v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|164.3|0.57|5.79|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1088/1674-4926/37/3/033002|OSxcnONXcV56RK1fHdl67SjyAW2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.31|87.69999999999999|0.62|7.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc02447a|OSxjE6GlpBx9723BK9djfmKZiNdO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.7|112.0|0.59|4.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|OT5MEbLO121j_93WIaXmVqcRTaAb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.28|68.0|0.56|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|OTFuRU4QXUKhgcRX4QHQ821yvq2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|176.0|0.5820000000000001|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|OTGmn0nCY1UTKOSOj2B2wdWBnJFr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5800001684772036|1.12|240.2|0.7809999999999999|21.09|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201703852|OTJJ8gVVtoLYPicrZ_V3Hn_9LXsi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|150.0|0.43|6.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700089|OTJPE8ZVlZ-qJwg0xnlgLnAGaW7j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|194.2|0.667|14.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|OTKonN1FhxoUL8rmBSbLQoXJn2Xx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|223.0|0.76|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226987|OTOjqc8fkYcTnwB3U4Etc2uRAzvM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.04|212.2|0.71|15.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|OTP17Y028HXsJKHQJsAAysvWAAnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|73.8|0.3929999999999999|2.55|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|OTPxT6RS4bi4GZsUX3O8fwcSes7K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|106.0|0.696|7.5|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|OTQmY82fihm_ScA3m6ix4NxWIToA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.13|228.1|0.73|18.36|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|OTWZ4-bdDoQm1xEqSKrE_QduYdLo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.73|78.0|0.21|1.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|OTY1NWKp6i8KCTMFGWzWr52XIKUA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|220.0|0.7|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01744e|OTdocsc-BPfBt6tptMi5bFk8WdSQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.96|221.0|0.637|13.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|OTfONnz5lNPH4Tl32bpy38jyZP6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|195.8|0.5|7.73|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.07.057|OTqLa27IsAvMhlPgqCzV9re0Zes3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2C20H101I58N39Pb20|Pb20C20N39H101I58Br2|FA0.95MA0.05PbBr0.1I2.9||1.06|225.9|0.736|17.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b19121|OU-57uFJZWp2UgilfHcDBYfH0iA6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|192.6|0.58|10.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Pd']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2020.106463|OU6s0pe5v8I1p31bSLozjuGWyJMo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Pd']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.98|207.0|0.54|10.95|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.380354|OUCqnx9ybIvw1mKuLXUJHMWlTeGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br6C7H10NSb|C7SbNH10Br6|(N-EtPy)SbBr6|1.6500001759413832|0.998|47.0|0.55|2.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI', 'Ag']|['PEDOT:PSS']|['PDI', 'PDI']|bulk|https://doi.org/10.1002/aenm.201701140|OUN97yTmXsnRIgUchkNhQE9Y5mf4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI', 'Ag']? The composition of the perovskite layer is (N-EtPy)SbBr6. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.13|226.0|0.73|18.7|['SLG', 'FTO', 'TiO2-c', 'C60-BCT-Au-NP', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'C60-BCT-Au-NP']|bulk|https://doi.org/10.1002/admi.202001144|OUT6pfcRqJ1BhIDCTAWiXOHMMtVO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-BCT-Au-NP', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.48|194.0|0.62|5.8|['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s11426-019-9653-8|OU_S5UhYjDgWioShXcypBDkAUkua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|215.9|0.513|10.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4956436|OUg1F8dwFKi5EsWC8K-wNAnSVWFH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.0|0.769|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07346|OUgSjKLCzOeKkVWNw7Q0dCkCifz7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|184.0|0.725|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|OUjDFQWBLbwy3xn72V8p-58CQ65J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.7|0.732|14.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ta06752f|OUpGspWL0tw_Mc-F9S6HiZyABHp_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|197.9|0.589|9.97|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c6ra12126h|OUsGlMrYMJ4wyfc5R8Qbpq5ZNdgZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.116|214.3|0.662|15.84|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|OUsMK07wDE7b5ynSPMsgxkbVbK7H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C50H285I126N65Pb50|Pb50C50N65H285I126Br24|FA0.3MA0.7PbBr0.48I2.52||0.97|192.0|0.831|14.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|OV-Ss9wNQ0nPOWNGmj3B4nD9RFch|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.48I2.52. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||0.98|219.3|0.7|14.97|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Bp-OMe', 'Au']|['Bp-OMe']|['SnO2-np']|bulk|https://doi.org/10.1021/acsomega.8b01817|OVEm4HIsRaU8QimcJ-kIgWu2Qb63|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Bp-OMe', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|205.8|0.481|9.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01118|OVNrV9u45Kge84aH9111wy2PxaJF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|182.8|0.603|10.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|OVTIPDII2ou95FbyKo3XbiQi7Id1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.07|226.1|0.738|18.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|OVVRs3IrcsYGsKxKv_gExdWnjtRo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.0|0.61|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['t-BPTI', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|OVgd_qy6no4Iuqk6wlkKN7LgDC4c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 't-BPTI', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|180.16|0.6|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1088/1361-6463/aa9df8|OVq6bKwMJGQvJ77Bay5PeqeeGNyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|175.79999999999998|0.44|7.81|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|OW2CT9PalrT03kIeKuBaZUcJtAZp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.028|220.7|0.7070000000000001|16.03|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|OW4ZsTH7YrkA4T4X7PkixhW3-NRB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|188.5|0.69|12.55|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|OW5nVxLID933B-dnrguyIpefZnNF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.04|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|OW8z6AYQ6TSVqCVulklMj_fNVJcN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.546|109.4|0.633|3.76|['SLG', 'FTO', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c5cp01534k|OWNOPyTVhGuTYWNRUI7tbv1Mu-3g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.633000174128654||||12.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|OWZpaEhORNAjiUmtDhI6Oq4Pl3V3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.0|0.768|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|OWtw3aryBtACIJSAtcCQoDz0hgTO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.0|0.602|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|OX3hDMihYvIHrNWg_tw4JHeO8tyl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.95|16.0|0.67|13.7|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|OX5IIx0SGF-q69XEcC_vSjmDvic6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.0|0.687|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|OXEmvgfhP0RczLohWb35TQKDB9zi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.114|228.9|0.74|18.97|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201902902|OXQqXW8DY2y6em4q-dgHVT8-FJCE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8140000000000001|238.0|0.599|11.6|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.08.001|OXQyh70147N4NhE6PIcWKvvbtIEK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.6|0.74|17.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02031|OXSXTQh8afDFZCADvVpUivjli7ua|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|OXak1zkookI_sK5u8jZ-EtIY6XX_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.903|213.0|0.688|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|OXl2vx_V4BL4bxFRoIRlUBi77x4p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|217.0|0.7|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-CN', 'Au']|['TPA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606555|OXlC1NqpTcqhjB5eAFhFhzMRk773|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-CN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.802|104.0|0.5|4.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c3ra47870j|OY5-VZ6hyd7EjIlKT8Yngdqptu1a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.4|0.7440000000000001|18.29|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|OYDeCl3xNdtXhVW1Y-35xxv2rrn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N43Sn20|Sn20C20N43H103I60|FA0.85GU0.15SnI3||0.5|215.0|0.6940000000000001|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|OYHb4_5b3PyIlfFCAB2npgdqq1X6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85GU0.15SnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.02|206.0|0.78|16.3|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|OYIeyga1JSQYIoO6DgkI15qfYzpQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.07|192.0|0.7240000000000001|15.28|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF3', 'Au']|['BTF3']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|OYLiapGx1kh4XAzMKAQJ4untWR9p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.913|210.0|0.7509999999999999|14.4|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201803200|OYMo7qT-1FvkSBfzoYBTypu0aQUP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.3|0.787|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12050726|OZ3MEPyu2spj5BxSCBVGUyWaQdfX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|153.0|0.57|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|OZ3ftHLIlJWbzoeuVPPW1LEMLpii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|176.0|0.742|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3866/PKU.WHXB201607272|OZ7pNr3yndBqx64kwLQ54zjv_XDd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|238.7|0.7|17.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.7b11795|OZEbYf8RRe4RLXkvy8xw8j1lDkSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|197.1|0.654|12.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|OZbZWOJeahZ4MSBzoqNp1SVKkG4e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.1|228.0|0.75|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800232|OZhvtVJe78xgTWRs5u8WRbZw_f8s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|104.0|0.67|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|OZm0tnvSi2mmEcR2wRAhgY8hCYC6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3000001386204838|0.716|151.8|0.501|5.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja5033259|OZqwxnl9qA41M9iq2HkoUu9Ef_NE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -BrC20H100I59N40Pb20|Pb20C20N40H100I59Br|FAPbBr0.05I2.95||0.942|206.9|0.552|10.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|O_-HTuq5zwlZms_3myFHkU1RxJ_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.05I2.95. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.30FA0.70PbI3||1.04|194.6|0.73|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b04107|O_0_VBE0eD2okbdMkFr01_jbwgmJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.30FA0.70PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|159.0|0.531|7.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.04.015|O_GFAxO1kUwVWeoygtDlh3dRXPGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|||||19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta01192c|O_NafrQH_711ji9p4gZFFMYiful9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C81H376I181N61Pb60|Pb60C81N61H376I181|(NMA)2MA59Pb60I181|1.6100001716761378|1.03|209.0|0.782|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/s41598-019-57015-4|O_TsQz2g7cQyz2Y7YLd-qP1nKklm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NMA)2MA59Pb60I181. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|0.998|224.3|0.7|15.68|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900340|O_XRkz5rBKQiAOF-Kh7te_R3l6Jy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.7|0.7140000000000001|16.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|O_Xz0rkWnaboE6JePrgYQadFMY4g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|206.0|0.757|15.06|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|O_ah0plugh0r95CnsjWnCtC2agAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5|1.8700001994002349|1.206|105.0|0.7909999999999999|10.0|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b01217|O_aoHw4a31kXI3QKd7c25DYnNcHd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbBr1.5I1.5. -BrCsI2Pb|CsPbI2Br|CsPb1.0BrI2|1.91000020366548|0.68|76.3|0.282|1.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14039|O_faC47SMJupZqs9MP1HcQBN5rg6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.12|234.3|0.7609999999999999|19.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|O_xD0NpLk864d7952hefKAB-DGlY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.97|219.0|0.7659999999999999|16.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nj06146g|O_ywQmJyNUnQUIfbt4oLZE3quPm6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|186.2|0.614|11.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.053|Oa-jlt2C-agEXx-ZwVcUKw39hazj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|143.8|0.65|8.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|Oa8nc-r0VEBbA7mUimKM0me8-Pyd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br22C100H517I278N183Pb100|Pb100C100N183H517I278Br22|FA0.83MA0.17PbBr0.22I2.78||1.06|234.0|0.73|18.1|['SLG', 'ITO', 'SnO2-c', 'PCBM-60-np', 'Perovskite', 'PDCBT', 'Ta-Wox', 'Au']|['PDCBT', 'Ta-Wox']|['SnO2-c', 'PCBM-60-np']|bulk|https://doi.org/10.1002/adma.201806516|Oa9QnY5F8s81Edgc15nILoxFVB67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60-np', 'Perovskite', 'PDCBT', 'Ta-Wox', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.22I2.78. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|160.10000000000002|0.657|11.68|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.11.047|OaGh2_qcehLmU-zkH2zmubSz-6Dc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br4C64H312I180N121Pb61|Pb61C64N121H312I180Br4|BAFA60Pb61Br4I180||1.06|237.0|0.731|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|OaJCTMqyhGSCLLRQu4nxVd_nETGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAFA60Pb61Br4I180. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|Oa_72yF-94cDerUEMY4e9uW1EewP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|170.79999999999998|0.52|8.83|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|OabIk4LxrEcJFCDzebXdzU_g7nFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.101|220.0|0.628|15.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16963|OacDwSpxVBvduQzvC3f2Z9bwZVXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|176.1|0.66|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201500616|OadDEVBKj6uYUnfbhjAdmRF4Q_dC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|218.8|0.7170000000000001|17.04|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|OanCuz8qjQw7u3Z1L4nn4AMwhjMx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|147.0|0.371|3.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|Ob0FtOLmlcV1EEyFBODRk8vUeReI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.074|216.12|0.7140000000000001|17.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03931j|ObHpjVy8lMi5E59WXlnGIVIwcEBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|ObIt3OnKRYgZibvUi6V6e1yk1WEZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C500H2987I1500N513Pb500|Pb500C500N513H2987I1500|FA0.026MA0.974PbI3|1.5160001616528105|1.047|245.1|0.805|19.93|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|ObN-eoorB0YEv8HIiz_mOZbrfgKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.026MA0.974PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3100002463179368|1.49|68.89999999999999|0.79|7.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.10.017|ObUyyzFy8OiXG8899TlmKC3d9Zax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.4|0.49|9.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703254|ObXSUHD4k2wTslbVB4CprhSKMYYH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|231.0|0.762|19.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|ObXZPa38c_h_M039e5dcFv0fEwpo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|215.3|0.66|14.15|['Ag-nw; GFRHybrimer; ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/am.2016.85|ObXflp_I9RfMf4x9BPCxk3U_JwGw|a perovskite solar cell with the following device stack: ['Ag-nw; GFRHybrimer; ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.33|33.9|0.266|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|Ob_qzTjT5XT2LVv_qo7TF9zlPgnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7|93.0|0.51|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.cplett.2016.08.067|ObiWWrWP3UQdb_ALT8xNakdjKfOg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.06|221.0|0.74|17.3|['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|Obink4zcl7gVKm4FNy26-3BowT45|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|ObjHWEs4WDlPoFHVuZ0KvCaXlvuJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.83|182.0|0.68|10.27|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1039/c8ce01337c|ObjtxnpF5h71Xkk10MAYwrwJ8FVp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.996|191.6|0.7170000000000001|13.69|['SLG', 'ITO', 'P3CT', 'Perovskite', 'C60', 'Al']|['P3CT']|['C60']|bulk|https://doi.org/10.1039/c8tc01955j|ObnE4rDY0M5M-WUA8hrjRVWZXyhZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.0|0.57|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|Oc3420GucdzkIK5ezh9NVIYDY-fy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPb1.0Br0.3I2.7|1.5800001684772036|1.02|206.7|0.67|14.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|Oc7xt6hYyt_zSWLYNNUN46ct0pQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.3I2.7. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.78|143.6|0.7|7.89|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'PTAA', 'Graphite']|['HfO2', 'PTAA']|['TiO2-mp']|bulk|https://doi.org/10.1007/s10904-016-0410-y|OcHDDWUXZJe6iIrRIywpEswloNZS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'PTAA', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.8|0.6920000000000001|14.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801888|OcJ3Wz5_sYDmf7rMwyigIS4vZSSv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|223.9|0.75|15.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|OcPcti33Yr0rKiXs0Ao3WmnbR7kY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|233.4|0.735|17.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|Oc_iVrZtV3-fVOml21Ks2DIF4QGU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.2|0.698|16.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.06.069|Ocb_2pwoE3fFdVwpu90ds7VDeJJl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|187.3|0.61|10.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-017-2401-5|OclV5qoiSRIUuXaE7yooNQiismYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3000001386204838|0.26|198.0|0.41|1.98|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|OcnI39Pv5LGcuH1gAaiABhJ__s35|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|173.0|0.74|12.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|Od5GuACVU5Hf7BYmikLo09ukCqJU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|0.964|220.3|0.75|15.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|Od7qComhkrv2_MfGBko5yeKj-HJc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|191.4|0.5670000000000001|12.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|OdASh_RZLGCz4wselP-aEs3oQpjv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|200.0|0.647|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|OdBEgKzyvGVK9bn437cHXl-ZATc7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.08|226.8|0.6759999999999999|16.51|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|OdM0_jrA_xwfZSIB5Vg80HZKxMqA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.88|214.0|0.57|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.178|OdOKDGrtQhhAtmNH8oURnsZZ8vQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|198.0|0.67|12.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201400355|OdRPAKEuA4nqAZmlbl-xct5RkxN2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.441|199.7|0.507|4.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|Od_aw7xQatLFWjE-aWcq8DNsr2kl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|75.0|0.6|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2016.272|OddAbdr3GyYmB9MojcFnsn5tLpHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.03|234.2|0.746|17.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|Odvd-AORuldH959OjeSLhKdlfQ6S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br3C10H50I27N20Pb10|Pb10C10N20H50I27Br3|FAPbBr0.3I2.7||1.04|168.6|0.615|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|Oe-Tdl4W9CHC3sVLV9RzyVWHpude|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.83|147.4|0.7140000000000001|8.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12023|Oe7MNzH2tBkGppdVoSIgNibW_-KA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.012|219.8|0.7070000000000001|15.72|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|Oe7QVnYraLHqWBy_qJ91SbT8XknZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C2H11I6N3Pb2Sn2|Pb2Sn2C2N3H11I6|FA0.5MA0.5PbSnI3||0.71|284.7|0.75|15.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903013|Oe9AOUEswzsXizWQ-8THHq3NvIUW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbSnI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.84|69.7|0.39|2.29|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|OeCzw9WUaKGcT2P6ZbkagmXLYZhv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.2100002356548227|0.95|35.4|0.62|2.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06816f|OeHovAQ6wmPWSlH09-lGna_ZczDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.925|162.60000000000002|0.71|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Oe_FbGw-k_U47DgFGkA_Rp_31gIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.388|68.60000000000001|0.6759999999999999|6.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|OecvsFX-7oZAWv4bJDrsrqMXG3gG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.152|235.8|0.7879999999999999|21.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|OedIzbBpF0sJpJXFUMUVL22sT8nk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.2|39.0|0.74|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|OeeFvMHIKNbwEEBD5m33966qDi-_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.03|215.2|0.68|15.14|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']|['PTAA']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|OefvP_NKoY4oYZ9KtcWfndtCfXEj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br18C57H1424I935N335Pb312|Pb312C57N335H1424I935Br18|(NH4)6.8FA0.15MA1.275Pb7.8Br0.45I23.375||1.03|193.2|0.6940000000000001|13.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|OezB35kLQefH6F84rQP_-mUXut6X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.275Pb7.8Br0.45I23.375. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.097|222.6|0.75|17.37|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|Of4IWPF6lz-82IHoMuUsyd1UcB50|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||1.01|214.0|0.65|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPs-TIPS', 'Carbon']|['CuPs-TIPS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04569g|OfAyMP1ouFFYKcQVsmeHp1Oo45wc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPs-TIPS', 'Carbon']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|190.0|0.609|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|OfDMPLJfCjtuWe_1dpApWT1P66Kc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|103.4|0.37|3.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|OfF-Hb0X_QNmPPqBu_vIanH6ZoDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8700001994002349|0.96|127.6|0.638|7.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|OfN-otf-w0e5tb1MyBoHr-Y0oCjp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.0|0.753|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms6784|OfXGUTMDzEc7b0MtSCWN0jwAVS-A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|OfaiVKuS8RHx0S85CL1QJxnt-NeQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.59|14.0|0.46|0.36|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.109941|Ofn1fJ4CT-9BQBvmLeSO6njsXNJl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Bi2I9. -Ag3BiI6|Ag3BiI6|Ag3BiI6|1.8600001983339236|0.59|3.5|0.588|0.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|OfriGB5I2yfTw-SrG2BjivG_sPmj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag3BiI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.408|212.16000000000005|0.539|4.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||OfuQQCz-iCyFN7xwl7Z6vlYyE3Pc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.74|16.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14926|Og1pYuW7S0bCw0_7IIsbZuptB0Ok|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.75|17.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/C8SE00368H|Og3orTo2o2aiPLKf5-l5XF3eUQgI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|1.04|23.3|0.65|1.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|Og6ffOnTQv_TXMTooEc8oSTgXJp-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|93.4|0.488|3.87|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|Og8Uip3AOx_L367Q54E5OyzyrLEt|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|188.0|0.68|12.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|OgFBe4lhpAaZp3HGSV6YhQ5UBJmm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|203.0|0.732|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.019|OgUw_inc82De_KKtpI16iid1g48s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC50H300I149N50Pb50|Pb50C50N50H300I149Br|MAPbBr0.02I2.98|1.6000001706098266|0.1|90.0|0.49|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc04830g|OgaVeaO2ZzgdPucS4DUDYMPk54Qq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.02I2.98. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.2|0.73|17.28|['PEN', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|OgaywmM07nn8dW7SeFOTX2RKhjuM|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C100H517I253N183Pb100|Pb100C100N183H517I253Br47|FA0.83MA0.17PbBr0.47I2.53|1.6100001716761378|1.1|224.3|0.71|17.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3']|bulk|https://doi.org/10.1021/acsami.8b16358|Ogh64tUUDX1XAyiWhxOQRiztV91h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|219.0|0.659|14.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8cc09557d|OghyhALG6rRwrqvr4fkPyYweF4_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.8|0.733|17.21|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|Ogw5g9Whm9a5FNwdZRpha0jCIEbg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|149.0|0.65|8.9|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.jcis.2017.11.066|OgyJ6jKIahKqI3rrvd6bX_TJgCHD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|234.6|0.8140000000000001|20.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-3N-3I', 'PCBM-60', 'Al']|['PTAA']|['PCBB-3N-3I', 'PCBM-60']|bulk|https://doi.org/10.1038/s41467-019-12613-8|Ogz2uAVU4CN32wLDZlP2DgGOALJR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-3N-3I', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.74|13.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|Oh07mawcHZsVa0Gj49Ayw47EtCwz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.6|0.594|10.22|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|Oh3U5unJeFPkyhyGspA5iDrYPZz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.0|0.71|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT1', 'MoO3', 'Ag']|['CT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|Oh3oG-YZY2u9S5pv3o-UF23rbZZ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.116|224.29|0.769|19.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|Oh79bQw0uqiRABSGbdALEAtZwQYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.38|700.6999999999999|0.613|5.98|['SLG', 'FTO', 'TiO2-c', '[BMIM]BF4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', '[BMIM]BF4']|bulk|https://doi.org/10.1016/j.jechem.2017.09.017|Oh9OQD4DlaIp7OXQjqLQlYqv0Uvc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '[BMIM]BF4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CsI3Pb|CsPbI3|CsPbI3||0.92|64.9|0.72|4.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|OhUvZB6PaH5Y-S1hf3cYk82GL9r0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.0|0.77|18.2|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ee02373h|OhalJytFFGiQgXNFRazzudCqX0JS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|161.26999999999998|0.685|11.73|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|OhaqUYkDhOWgiYOrfF8mRMkYTzVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|209.4|0.67|13.25|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/adfm.201500616|Ohj7fnEcUYb3X-3u_3_N23lef8ut|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|||||12.13|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|Ohl8QA7dI__tA3yO5pLPxikTSZN4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|168.0|0.56|9.41|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|OhnQnnwnJCMECmVIO5ozyd3x0_Rc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.7|0.72|15.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|Ohxavu4UWbQd1O62UPZ_RixLGkSH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2ClH10I5N4Pb2|Pb2C2N4H10I5Cl|FAPbCl0.5I2.5||0.75|58.1|0.38|1.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|OiNhkDUP4w3Z-c0iMjf4gJbjCuI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbCl0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|166.0|0.5720000000000001|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|OiPf_bta6ZjTD3FT0Ag14D17L7cD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368|1.05|112.3|0.6779999999999999|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|OiSWykI44c4wZbKtbNQNQsSvAqlh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.1|0.74|17.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|OiSXY2CYrgj77pnoLFGpJVhqMHSU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.0|0.7|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08658b|OiVe0npiOFMfzOu3WpE6YkGnBD4I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|165.0|0.496|6.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|OiakanBMpATbCPx3M1dzX-S5VSxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.74|51.6|0.332|1.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5127275|Oijq4MXHtzWe0sr-pF1uD7RSNP-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br99C95Cs5H491I201N174Pb100|Cs5Pb100C95N174H491I201Br99|Cs0.05FA0.79MA0.16PbBr0.99I2.01|1.7200001834055632|1.3|195.2|0.776|19.7||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2021.106537|OikFUoGNIt5gb6G5FNX3iXnFQCXv|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.99I2.01. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|146.5|0.43|5.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|Oimai4BXTu0dF2r_K9mEpvqKhsEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.04|213.0|0.61|13.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|OionB0XZY7FZTWAaDQgM3p4VzVtV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.3|0.6659999999999999|12.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|Ois8gE8g5APXu2yvQhJ5N6MFDZby|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C91Cs3H455I300N182Pb100Rb5|Cs3Rb5Pb100C91N182H455I300|Cs0.03FA0.91Rb0.05PbI3||1.05|244.5|0.6|15.37|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|Oj8rbq0OAXFGbofFY5DRLWZRZhNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.91Rb0.05PbI3. -C8Cs2H48I30N8Pb5Sn5|Cs2Pb5Sn5C8N8H48I30|Cs0.2MA0.8Pb0.5Sn0.5I3|1.3000001386204838|0.6|205.8|0.607|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|OjCbZKY-qx9BWWRLK6VfEwEeZxUK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.2MA0.8Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|179.7|0.63|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.03.152|OjLLsyZWm1mnqZvtKPZLuUOzrdJM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.07|185.0|0.7759999999999999|15.2|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|Oj_iA_t1HQg47ZOWVNsoBLLIhugf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.3|0.71|14.43|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|OjacuZ1OP2Z1XuigD5kFaOunDFBI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.07|235.5|0.77|19.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|OjlHCnJZUMTJgIio6goTlzAf0KVQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|247.5|0.68|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|OjmP8h89CDIXRZD3tAOgNvpY3uWZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|225.0|0.7709999999999999|19.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05975f|OjvbYH72mSOGDB7zZfFP860NlWlm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.109|217.0|0.82|19.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|OkCpheimvkPaRAaMGQ_eo8_kprz_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|241.2|0.746|17.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201700007|OkLdyJ3ZAdCfV9VbhYLkANIBCoJC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.145|213.6|0.784|19.17|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|OkNNtAczEBjpTEWIZuV7z6Qx2FhC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.77|168.4|0.6|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05149a|OkTcrWqZd0DG7pJ9ECch0kAzuMlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|186.0|0.72|12.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms8747|Oke7mK3I5gJLi4RS-skTTEzyukbD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.106|225.71|0.7090000000000001|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14619|OkflaQTtpVPYvpqpkcR7LBMLsOln|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.992|192.1|0.574|10.94|['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|OkgKicDU0kVVu8Cbmt8Bdw-L09J0|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.994|177.0|0.69|12.0|['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']|['KY7F22-np', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|OkiFL-lr4WtK7hJ3d2nWKFJXSHQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|198.5|0.603|12.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|OkoKrmQrESuA2XO3-rXNPm4mwJ_Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.88|220.0|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|Ol5YZYVlo0xuogAy-WmnPaWSxac8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.7|0.65|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|Ol5sN_vmoem0gVGXK76iKcgKgb9b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|201.7|0.7709999999999999|16.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|OlBuXp3pdd0uno0Oa5wz5yCaXKkL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.362|67.5|0.78|6.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.solener.2018.06.041|OlG7SjhgO9VSeQ_Altj6zQo2zNR4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.85|205.5|0.5|9.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|OlJWHErTqLnN-ZQ7sNcmL1m3SM8c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.87|43.7|0.49|1.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05613b|OlLCC2kj-BUnIsqtYeN_NMGiOb4n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|201.5|0.7|14.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|OlQs3mqDscwV3A7qweqpFJnrYj4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|160.0|0.48|8.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|Olb2T7NTxz-Sofg44D7Pz0Zj4RQ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.0|205.9|0.62|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|Olbb1YqrqyZ9cLgl9fmo9SnQuvtw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.0|0.6559999999999999|9.49|['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta03263j|OlccyLi-mWYGUwZrA8IdKMfj0c9B|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|2.430000259113674|1.06|47.3|0.351|1.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|Old6d3vMyGszpfl25A5-hOP_ywcp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.068|215.3|0.695|15.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105453|Om4qkQ2w_x97wDcLJgdAKqJJE59q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00980|OmA1KpSpxy_e7Hf2_giuMH9HGe6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|172.3|0.7|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn506651m|OmGV8W5nkBOJXe_tl_9eeZ81ERF3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|87.8|0.52|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|OmP6BMQ7zT-upsy1MZd5-blbILjx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|231.1|0.768|19.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201702960|OmQAMFWHP0EGVDjFdYRlpU4eM6Iw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.1|0.705|17.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Bacteriorhodopsin', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Bacteriorhodopsin']|bulk|https://doi.org/10.1021/acsami.9b06372|OmWC6ZgPzmU8SdQ9c4q5Slim2X8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Bacteriorhodopsin', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.649|33.2|0.4629999999999999|1.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|OmjSYanbxpFjlV9oo-Vc9Elk3n9x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6990000000000001|190.9|0.427|5.69|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600315|OmkYVayApRF6XXyaFk0PkaxLK640|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|174.0|0.5660000000000001|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|OmmZeFCyjOk7cfCcOH6AxMHkNTRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.1|0.6890000000000001|11.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-017-0159-z|OmpDnpu2kAnCq0ESBG0oGETFyw5r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.8|0.685|15.43|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|OmqY4E4DhpMoGQESWBx7FsvSJQds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|160.0|0.508|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201409320|OmuPC8xm3YkTRNz0htDUaZxsW5tY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH52I8N11Pb10|CsPb10C9N11H52I8Br2|Cs0.1FA0.2MA0.7PbBr0.2I0.8|1.690000180206629|1.25|202.0|0.818|20.7||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41566-022-01033-8|OmvaBF0zCWZS9rVry_B27E3MT64Z|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbBr0.2I0.8. -Br24C17Cs3H85I36N34Pb20|Cs3Pb20C17N34H85I36Br24|Cs0.15FA0.85PbBr1.2I1.8|1.75200018681776|1.201|179.89999999999998|0.792|17.1||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|On4migEO_PmALAlREAlzATNLc0oj|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|165.0|0.733|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5796/electrochemistry.85.276|On5DxwnseLUUn-4qTXG2XhNVK4FZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|204.0|0.63|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2017.06.032|On6vqBAXq6HgJXk2YV8S0MQ3jWEx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|198.0|0.75|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|OnAx2igOVCAxb3F7q7J3MxRssPlE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.042|212.1|0.736|16.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|OnD7EMGMOJXcynY6Md2Ixu4GqxlE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.0|0.65|11.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|OnDp22riizxXgc7NKQQ0c6NCdcyr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C83Cs17H415I255N166Pb100|Cs17Pb100C83N166H415I255Br45|Cs0.17FA0.83PbBr0.45I2.55||0.983|210.0|0.72|14.6|"['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', ""N4,N4'-(4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine-2,8-diyl)bis(N4,N4',N4'-tris(4-methoxyphenyl)-[1,1'-biphenyl]-4,4'-diamine)"", 'Ag']"|"[""N 4 ,N 4'-(4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine-2,8-diyl)bis(N 4 ,N 4' ,N 4' - tris(4-methoxyphenyl)-[1,1'-biphenyl]-4,4'-diamine)""]"|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpcc.6b11880|OnIJKtXwmeSmHIcY3yzuph8Jtwhi|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', ""N4,N4'-(4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine-2,8-diyl)bis(N4,N4',N4'-tris(4-methoxyphenyl)-[1,1'-biphenyl]-4,4'-diamine)"", 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.45I2.55." -Br3C10Cs10H50I27N20Pb10|Cs10Pb10C10N20H50I27Br3|CsFAPbBr0.3I2.7|1.5600001663445808|1.09|220.9|0.632|15.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227484|OnNSmZSw4N7vPo2ex7zYbOWIrkcN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsFAPbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.979|228.0|0.5820000000000001|13.0|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1002/admi.201801788|OnPJVHnULGMQL_KlYNqDtLGnGS8R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.0|161.0|0.67|10.01|['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']|['Cu:Ni acetate']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|OnR6NlLbCnMBMq5QieOegCpdv8Dd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.69|14.7|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/adfm.201806779|OnRCYL0M2pFqKPEJJFf-saCLsqLR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|116.8|0.706|5.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|Ons6PnSDKMzf2aDiikj_vNsDjyfr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C29H121I60N37Sn20|Sn20C29N37H121I60|BA0.15FA0.85SnI3||0.44|180.0|0.6940000000000001|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee00956b|Oo1G6HzlwAITpWT0nNxtMx35Lzdc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA0.15FA0.85SnI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|1.22|41.2|0.703|3.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|OoA2omQ0i17UE6CkvH5I51sFAQEf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|171.0|0.5489999999999999|8.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra12348h|OoEsBB9ADal75KoqZxLzZ4hsxH4R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|219.7|0.73|18.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|OoH19JG3LCDCIaEaWGvxQ9LnZqMy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|165.79999999999998|0.56|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1358045|OoH5Y_W73a0C9UWbS3rJtgeJMzPm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.02|214.7|0.75|16.42|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|OoHEciND6zPZFqnzvWpoH55el8Il|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.97|164.0|0.59|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|OoKbo1L66MSvDS8vx_m0lBdz3gsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.047|OoM4wh4Jfq8I7GGlT6P2_DKBsjvg|a perovskite solar cell with the following device stack: ['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.9|0.718|17.03|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|OoNCKbfdWO2is-2yZrtsPl3bWu9u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|229.0|0.74|17.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|OodtAJj100L6E9FEGvAZO4jBKpvD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|195.0|0.56|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03577E|OojzzKc2yVoDkoFyWrn3LxK1t73t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C100H600I300N100Pb99Sb|Pb99C100SbN100H600I300|MAPb0.99Sb0.01I3||0.789|160.0|0.534|6.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|OolyicXqvQA6m_6SYvOJzUqNYrPc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.99Sb0.01I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.4|0.6809999999999999|11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.3390/ma11071073|Oot-FtOlKCew-sxNwlSPuHsUnqQy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.6|0.72|15.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|Op3L9R2S1cFt9NBEbt2rHYIjR3Oq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.9|0.72|13.75|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc05328f|Op4_8xCrqkH7S51TxA9vqwWadq36|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|91.0|0.54|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502367k|Op9MMLPmArmb3lwjZMYcLu9Bee5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|200.4|0.6779999999999999|12.57|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|Op9cBdsJVeuidbXZs6xhFjDtHl1P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|198.9|0.726|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00843|OpA1039lZgPMgfS8Blmtq_6Kt_CS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.0|0.73|14.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602807|OpGyOV5k5fuZ6ep0_UiTLvuyX71v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.06|219.8|0.711|16.61|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|OpMSgLILY4x9-rF2XyAswP-LMXLA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Hexylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Hexylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|OpMj7KfmhrbYOxL7J46eDoTKHjXT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Hexylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|202.0|0.6|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Al2O3-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03881g|OpYHAEXatw-5ftTrwHDguluPU0Is|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C100H517I253N183Pb100|Pb100C100N183H517I253Br47|FA0.83MA0.17PbBr0.47I2.53|1.6100001716761378|1.06|218.8|0.693|16.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16358|OpYXAf0S0sm7_gydNA2FUNrQaDde|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.003|194.9|0.7709999999999999|15.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|Opb5TVT6gJ75_ML3hp2u8NThRMzC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|190.0|0.78|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'MPMIC60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['MPMIC60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b06164|OpeY8OzKhvrMkiPX-iYzlxuKMIvJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'MPMIC60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5500001652782691|1.07|237.0|0.75|19.4|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41467-018-04029-7|Opgppt9gHbyX--zxOdGpeHIdykvI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.1|0.73|16.09|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|OpmoNX9cw-CDwt3kB3In1_e0HQOl|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58||1.101|233.0|0.778|19.73|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|OpqXeR6C0HNjD2wY_D76UrKzBppK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.18|155.7|0.746|13.69|['SLG', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801117|OpxGJ8iTyVX9ADJ4JXKrPTg2C8-7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3||1.11|183.1|0.78|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|OqPnLc7UcPA1da6FeBrC-61yodYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|202.0|0.7509999999999999|14.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|OqZWE3RVCb9NifoqCsTWDiq9W0NO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6890000000000001|167.0|0.413|4.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4913551|OqlMT9Ma3r6ZunRQOxoDUyrwBt-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|200.5|0.79|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|OqmnvU6U6wALZEkwNyFT2crhM7bk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H42I16N6Pb5S2|Pb5C10N6H42S2I16|(MTEA)2MA4Pb5I16|1.5800001684772036|1.08|214.33000000000004|0.768|17.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41566-019-0572-6|Oqn2rnU0-HpmWvHvrHvoQlse9_Fe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']? The composition of the perovskite layer is (MTEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|234.6|0.535|11.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|OqsBVIlnGok5Lw4k1ZGROzodX8-l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.66|16.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|Oqsegz49ZRZvNwg_YTWmNvNXl-xx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|140.7|0.535|6.04|['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanocones']|bulk|https://doi.org/10.1039/c5ta08375c|Or0vQ6ha1k3E-k1ryPTppXHDOQZJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.874|204.1|0.44|7.81|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|Or5kp5PHqs0wAvWcQ1FDiYE70CFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|211.0|0.75|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTZ2', 'Au']|['PTZ2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00054|Or6HKy3flIrhus35lhofNgCVXamr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTZ2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C9H26I13N5Pb4|Pb4C9N5H26I13|(3AMPY)MA3Pb4I13||1.07|140.5|0.58|8.82|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.9b06398|Or7fWJOlqMBiujXBS9dRVjSlZ8h3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMPY)MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.0|0.57|12.1|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|OrBXTiyUQtN_yLmjLBbASRDGov56|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|168.0|0.62|9.73|['PET', 'ITO', 'Graphene', 'ZnO-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Graphene', 'ZnO-QDs']|bulk|https://doi.org/10.1021/acs.jpcc.5b00933|OrDCSDUkhOYCIgQic7j8_8_8wp6j|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Graphene', 'ZnO-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|184.6|0.48|7.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|OrHfBkcBYcl8i6wWRcBEVBWN2-KZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.7|0.69|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|OrI3SwoMWoO-j2fUHdQB-vqpzTsB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.0|0.63|12.57|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|OrM-xxm2xG0BDk9MUjQ-jVR6xgYc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|141.0|0.58|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|OrNXz6jTx0jSlSvuejMfcvTWdKZ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|201.4|0.787|16.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201703061|OrOHGnpnE1v-ZqLwPKJemGe-8ebX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.973|199.0|0.792|15.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|OrTDDiFXprwk-uORnaC6n5H_-VgJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|196.71|0.6609999999999999|14.07|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|OrXmiSYYN1Squmn5TSuIp943eqAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.027|211.4|0.763|16.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|OrZkIx0Ill5n2gSPX5ArlsuC2cAq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|217.0|0.7|14.8|['SLG', 'FTO', 'Nb2O5', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'PCBM-60']|bulk|https://doi.org/10.1002/ente.201900878|OrZwsYn_yp6_K9bDhSWnYIOMK1d0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|174.0|0.74|10.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acsami.6b02169|OraNlD1KaYg4TdcYlED2xctpN8sR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.6|0.76|17.13|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|Ord9b4_UHGWBP7iMMgQ-V1GXtFKQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10CoH60I30N10Pb9|CoPb9C10N10H60I30|MACo0.1Pb0.9I3||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|OriMfP5M94iMLTKLMGPFOlgUXngR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MACo0.1Pb0.9I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|OrjmnC0WMsrsM1TZwlzDqMdCihOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|163.70000000000002|0.75|10.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.073|OrlJJHuOPBTQi4CJkxsIGFNEew8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17H74I30N11O4Pb10|Pb10C17N11H74O4I30|(GABA)0.1MA0.9PbI3|1.5400001642119578|1.1|220.9|0.754|18.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|Orq-NuMxOJ7F3POWOi9gs7gIx6o1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.0|0.746|17.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900041|OrrfFU__ueMrqQBvyTG1j6r8w2Xf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|0.8|228.4|0.48|8.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|OrvmMqK4J7QauDOqpTJzSOH1K4iD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.135|219.0|0.685|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|OsA867D5DuzeZxr-mOfAg5Oz2cDl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|219.0|0.602|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/celc.201900532|OsAsBgRqKSlO9MRa_xe0SWJ5SNIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.12|224.2|0.76|16.23|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|OsJR8RFfPlQoUL-xGiLp-XTnE76N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -Br3C8Cs2H12I7N2Pb3|Cs2Pb3C8N2H12I7Br3|BDACs2Pb3Br3I7|1.91000020366548|1.11|128.3|0.49|4.09|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.9b03414|OsLvLMrBonkpP7AA-MoLcJBg9Wyl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is BDACs2Pb3Br3I7. -C95H258I65N42Pb5|Pb5C95N42H258I65|BA2FA2.4MA0.6PMAPbI13|1.5800001684772036|1.02|172.3|0.69|12.19|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|OsNEusfJ-0-iOGI8U51myqV8-gyQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2.4MA0.6PMAPbI13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|200.2|0.705|11.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|OsTQFoOxVYXhUr5nd_qjNrTf5Iwy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|234.2|0.813|20.91|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|OsVP_IVd5X1DZ0Uq3_1BOk3xZB8_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.9|0.612|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|Ose374pqHwjNxH7Q8PJ9nuqQ_VOk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7|1.830000195134989||||||['Unknown']|['Unknown']|bulk|https://doi.org/10.3390/en14248401|OseHRJvFqniENFLYu5tYyPp2i6Ek|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.06|218.5|0.759|14.67|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|OshatOUokEvYB-RNaSMXRrnI_Zt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.3|0.7290000000000001|16.46|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|OshyAN7_YcdTPeZKJq3wAsn7KSqi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.26|108.0|0.77|11.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|OslLLK-9fsJ6uwgRM4kWJILjzGE9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|57.0|0.43|1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01924|Osu2kcESOFinMqjIPXwjz2faYmCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C27H152I75N27Pb25|Pb25C27N27H152I75|(Ace)0.08MA0.92PbI3||1.136|226.8|0.732|18.86|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|OsyIG6BTHpcZD_Ltbjn8gLZ_6qpq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.08MA0.92PbI3. -Br27Cs10I3Pb10|Cs10Pb10I3Br27|CsPbBr2.7I0.3|2.320000247384248|1.0|47.8|0.41|2.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|Ot2zH748wQVZi9IqIIDa8UgNfCbS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2.7I0.3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10||0.85|36.7|0.436|1.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1111/jace.16284|OtbnWIGEEvqN4Tw0CxLr3CPqqbsd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|124.7|0.622|7.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.043|OthEXIoiDb7x_s15DwIwyDOtOzVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.0|0.74|15.1|['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|Otn0RTdTDDRu2-1hLSy05pu_gReF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|187.3|0.73|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s12200-018-0847-4|Ou79dQWUxdiUDD2vofR05uJyL-QJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.94|67.5|0.7040000000000001|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.050|OuHfsiC2e8C2VgXK3JPuN76UGgVw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|167.0|0.44|5.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra18729c|OuHh3qBNlyygfg0dvq-Z4N4TIcPx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5Cs5H25I14N10Pb5|Cs5Pb5C5N10H25I14Br|CsFAPbBr0.2I2.8|1.5300001631456466|1.005|216.9|0.607|13.2|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|OuN5R3kztHvff05rzaSCqKMTf3l5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|196.2|0.5489999999999999|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00981|OuNcShkvT5x3Ls-PN9OPQ6AgqItG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.7|0.695|15.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201800475|OuRiVEX0sz4d938TjGaNnXnOSa71|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.7|0.745|15.51|['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|Ou_2ITkthbW5j7J3PPY6IdbSaUpM|a perovskite solar cell with the following device stack: ['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|211.5|0.7759999999999999|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|OubWlM6YUMgA64xE1Fc8Y8r22eAq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.064|216.0|0.77|17.5|['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|OumQ5KhXMzpPpzwk9jnChc_O38wG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.5|0.76|19.1|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|OuowkoXFKipCx_VXh3EVCL15Gljm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|201.5|0.721|15.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|OuwzfIvqd-ETK2MXWJxNXalKUFOw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||1.06|223.9|0.81|19.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['EVA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201902629|Ov6kb4_N5HyW5nNG8DLMvT4Bn_B5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6080001714628755|0.99|185.0|0.635|11.6|['SLG', 'ITO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1039/c7ta00183e|OvDixA8PrTpddjns47U3Fl01xCMQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C32Cs3H130I54N19Pb20|Cs3Pb20C32N19H130I54Br6|Cs0.15EA0.75FA0.1PbBr0.3I2.7||1.09|215.0|0.76|17.72|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903221|OvEej_Hst4J29xA-jEvRHZIUFvu7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15EA0.75FA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.84|182.6|0.58|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1002/adfm.201806506|OvSekW24qWrNKlS2qGtxSjiGd1VQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.083|170.0|0.65|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|OvcxjDP38eGKapKT-jdk8V2SDo7o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|90.0|0.442|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|OvhQ_qU3nQBk4heHtzIzVqO8m42W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|204.5|0.616|11.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.09.011|OvkkaO4SpGJsRPO7N6ASL4pWBin5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.052|206.3|0.792|16.95|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['B2F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|OvoI2kSTTPW_qlApXFIO_YBlzfyv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|OvoflOaRe8Xkive7EBEliWjOfyYp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.0|0.7609999999999999|18.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.070|Ovr2iAZPAAa7zrVrfemwytxnczUw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|158.1|0.56|8.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|OvtcG32Y4vSKFwqS8iq6X-Cf-FSB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|213.2|0.76|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9qm00309f|OvzjopGRH90HeTvi9MZt0BYS2paP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.15|190.2|0.79|17.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|Ow0VqzEqX7HCXEWP4rKuDGUhakiU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|236.2|0.75|18.31|['SLG', 'FTO', 'SnO2-nanosheets', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nanosheets', 'C60']|bulk|https://doi.org/10.1002/solr.201700117|Ow4C1h6e-q1ZgGZFt73kSAt5Yx3B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nanosheets', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|108.0|0.69|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|Ow6jGa9nmjqyprjP1LiYxu8PrO4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.36|191.1|0.544|3.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|OwAxPlX_WCldTHUm8Z_UgQFIEyxn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.78|18.9|['SLG', 'FTO', 'TiO2-c', 'BaSnO3-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'BaSnO3-np']|bulk|https://doi.org/10.1039/c8ee03672a|OwFg3aj_LwzrZzqFxuqIRqmnM3jd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'BaSnO3-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.0|0.8|17.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'a-DMEC70', 'Al']|['PEDOT:PSS']|['a-DMEC70']|bulk|https://doi.org/10.1039/c7ta06338e|OwH0NQStJJVlrWnBb5rQlSH1tIcH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'a-DMEC70', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.09|209.1|0.54|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|OwWKGH1e3Yzq4tmk-knfi90_kX6B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|217.1|0.67|13.81|['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTCA']|bulk|https://doi.org/10.1002/solr.201800205|Ow_R27h4TrD1ZIDNDnduBwgEmhBJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.583000168797097|0.713|175.0|0.601|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|Owb1Jx9JFhoXVtY7imbtegPb6-PN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.0|0.7140000000000001|16.0|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|OwkMawwq_RZm-mZnS2dnDY7cIyMB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.843|136.14||7.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/LED.2018.2828501|Ownlz_FpTpPWKp3d2ynTomZRMkkn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|233.6|0.731|17.25|['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|OwtboHq2RI65fctwII7yT2xv8qCF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|213.8|0.695|14.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.8b04861|Owy70_U6g7_Uf0OTjxJTt9eU4u61|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|158.6|0.66|11.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5cc05879a|OwykbldPEGcwfBqeWbjXFVpTCUXV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|90.0|0.52|4.9|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|OxBBnOB2cnnD1_VmGBqxSGHTYoze|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|161.1|0.65|10.1|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acsami.5b12336|OxGDWQdoLpIVVjF6LUEmLNR_710t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|OxJc0yzoKGYQQw7uHE8ysDPa5eto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|199.9|0.727|14.48|['SLG', 'ZrO2', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|OxPaRyXYY8xx46dAmYVgrWvgtmQK|a perovskite solar cell with the following device stack: ['SLG', 'ZrO2', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.13|222.7|0.701|17.6|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|Oxe7NCU3ssW_N3-gZqyix3VH23Yu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|178.0|0.8|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|OxicnAQ8P_w-CAxBvhY3TsL_bTgb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|233.2|0.737|19.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Oxs1Nb39OXVYJFu9ooWH6CEC8ltG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|204.0|0.599|11.68|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|OxvV80NVViMsQm0WK6IY9Lt16--r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.12|217.2|0.726|17.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|Oy-WVOD9vZkceBvhQbsTZ5Vdsy9r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.695|28.5|0.38|0.74|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|Oy6XMpvBCnmi9rw4tl4RR016wwxB|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.952|210.0|0.61|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA02306H|OyI2d0FzaFgK7ZrdoEzAZ9ILBO0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|163.4|0.72|13.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|OyINDW0VDtn6hMRvGwr0EBjqVB6O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|115.0|0.423|4.5|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|OyLJszciFaEMKjpPDeTbK_aVDSV5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.740000185538186|1.2|156.8|0.64|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201903448|OySBkoreOxv7qLy_edpMJmaoYUSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|163.5|0.7|11.58|['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Ta:Wox-np', 'Carbon']|['P3HT', 'Ta:Wox-np']|['Fullerene-SAM']|bulk|https://doi.org/10.1002/aenm.201802085|OyeHm2HDao5kmRiWN9cWGOepl9-_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Ta:Wox-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.762|14.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|OymKqpFeturDz5hcFoq2qTJiW9LZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|226.1|0.733|17.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1038/s41467-019-12613-8|OyqFWygEk3hNv8I9sNWtcTZ8afSi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|251.0|0.765|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|OywLcrKv0-WkauDNVDeJG2ukX9JN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.96|175.0|0.65|10.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|OyyJ7yJDBdZtBjY-8Na9woB7rbEi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|205.1|0.6|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137627|Oz49KtkagVxhjuFkCVT0aM8b5CDZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.7|0.75|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-410', 'Au']|['SGT-410']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|Oz6ivfZyKC_Cs-IjFOzj3aRWWeyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-410', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||1.0|140.1|0.725|10.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|OzBixYfMlYMEvopq5iKPPWLV_7FP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.0|0.65|12.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201804465|OzEokjppm0lyPNUau7S8FfYUQUzP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|196.0|0.7140000000000001|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201504379|OzIUtbYSlJAE3k4N6IJyDjCHNTxw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|166.94000000000003|0.484|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|OzSxwNihqVT33a-mpgA9lQWla3HY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|210.3|0.55|9.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793604718500807|OzX6dWjqcKB8u7eZjzWaIYZNgRZH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.4|0.7|18.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06084g|OzdmSSlZywXO3oWJw7MdBcdzINGq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|164.1|0.7|10.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|Ozr9vVO-HSo4sMtFZp6HGQ6G0Z4S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.042|108.6|0.63|7.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|OzzYdLxdkyMtCB3OQekoq66dYWGv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|216.2|0.7509999999999999|15.95|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|P--kAAt9xb6sn7ztCoGWdWsJgUpN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.4|0.74|17.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|P-9L6V5mnQUhvzZezF7DjmzbcZ3k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.3390/molecules21040542|P-AVQOIkIn_3KEP-CmYAwsFY-By9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.7509999999999999|178.0|0.64|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|P-ED-R6GQwsUGOrdKYVtILmp_pQu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.75|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|P-EkZmNVRIVBKt5e94aqEBi5jP99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.53|73.0|0.71|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b03455|P-GWrBSHCDBrQv5awH55x0JneTCJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|198.3|0.467|7.04|['SLG', 'ITO', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|P-OSR3-NBGK67QLLUJflVgrZQr0O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|1.11|150.1|0.67|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|P-SQW6lwlm_ttzNvRXJYmUIFH9LS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.18|224.0|0.745|20.8|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|P-SXYsgobcjNbH59E_Pc0YWB3fUz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.11|212.5|0.792|18.68|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|P-V1V_hILh5oQkDhEPznj9RBIq9p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.352|69.4|0.745|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|P-YEPq2fKUPklxqMQDMbe1zbKgjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.5|0.596|12.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s10854-020-02913-x|P-cAEIJ_FcPkbKJkPCih-diIQRS0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.81|138.0|0.52|5.62|['SLG', 'ITO', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['none']|bulk|https://doi.org/10.1021/acsami.5b10555|P-dwmdTb3HxxhrI2fMQr02GCqv1P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.69|55.8|0.33|1.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/bkcs.12092|P-jCrO8feyMZM3xHzOCByZ3rDwGM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|233.0|0.74|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.05.005|P-nOEuVtz76X-C9ZF7jgPTLitGvi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|160.0|0.706|8.23|['SLG', 'FTO', 'ZnO-c', 'AZO-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'AZO-mp']|bulk|https://doi.org/10.1007/s10854-018-9054-8|P0534HjgaGS4kfs_QhrlLyXzai_m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'AZO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|P07SetJJDCP7AB3XXcsYmnvaq7jN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.2|106.4|0.81|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/sciadv.aao4204|P0D5toDfa6x4vceYmIzcBTA4j4jU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.107|231.9|0.742|19.11|['SLG', 'FTO', 'SnO2-np', 'OTES:APTES-SAM', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'OTES:APTES-SAM']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227161|P0NthILHesbcC7MheTD2Win7Jhei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'OTES:APTES-SAM', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|198.0|0.78|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.8b01683|P0PI1SY802EJvJRNdEFL4T2iyE_c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|130.39999999999998|0.57|5.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.09.020|P0PRPmAUtFP3y-gv3ci0rMq3oWv-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.0|0.73|16.6|['SLG', 'FTO', 'Nb2O5', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00094|P0SyXIlkYDDKEhzJJA9rdd8ejiDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.05|202.0|0.669|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|P0XxOhSqw1pHi93Ozj30gWwaib1O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.6|0.73|15.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|P0ob6xldsXB9nE7kJC-ga6kIQg5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|201.0|0.7|14.77|['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DA-PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|P1-f2aTGdRWaRC3qLZHQtK6bcMB7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.084|226.6|0.821|20.0|['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene; NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|P1JXUcRar9sB30KHuuHLAp-DyVhV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|209.6|0.7440000000000001|14.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta00362e|P1YyvD7YLsoyo7O6_pf5vPFiODAc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20F2H46I15N6Pb4|Pb4C20N6H46I15F2|(oF1PEA)2MA4Pb4I13|2.5000002665778536|0.474|60.7|0.4529999999999999|0.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|P1_ARwXbj6MIU2zTVmv0YNZTqbDw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (oF1PEA)2MA4Pb4I13. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.137|242.0|0.807|21.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|P1gAf4PaUD-FihkYbLmrcpLvplkm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|220.0|0.772|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|P1juZM_W9iKzTyG5u-LEZ69NzNLn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.02|182.0|0.728|13.5|['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['KY7F22-np']|bulk|https://doi.org/10.1021/acsaem.8b00518|P1kAha2KA9gYzF5519DmnIkfbztY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|142.3|0.515|6.8|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PQT-12', 'Au']|['PQT-12']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|P29KSnFJT6dKYovHYTmEVznq_r61|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PQT-12', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|170.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|P2ANZ_OqKTaj9UMLMDxlU4Dn7Yrv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.7|0.6940000000000001|13.54|['SLG', 'ITO', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['C60']|bulk|https://doi.org/10.1039/c7ta10366b|P2RkEV0tEr-87urtH3QbzqWRZzQy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|179.0|0.4379999999999999|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|P2_Bigfxib58ONRgYM3m-Ng9NuNU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|207.1|0.439|8.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S2', 'MoO3', 'Ag']|['S2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|P2gw-7_Fxg8MbScrXokREcqdsRsp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|1.03|215.0||14.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|P2h2yBiNeMlskoJCcnUT0fq7fjZD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|217.9|0.73|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201801496|P2kYZTwUPSDfXZxJJaztSyvNZtYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.0590000000000002|189.5|0.75|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|P2q1a2CHJl7rA3V-IHMmcCQhRkuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.75|229.2|0.71|12.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900219|P319pLe0NKDf1EwqvvO2ZjsZbcBv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|230.0|0.62|6.65|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanofibers']|bulk|https://doi.org/10.1016/j.surfcoat.2018.08.039|P34njvTxiePOC2GcuJ-1YcUrbhTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|193.0|0.62|11.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201700029|P3AoVpfSPi6Haf4C1CQOGJ4KW0yz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3Cs2H18I15N3Pb5|Cs2Pb5C3N3H18I15|Cs0.4MA0.6PbI3||0.82|126.4|0.55|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|P3GwgCyyNNXiT2W8bayivhUDvM4K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.4MA0.6PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|227.6|0.569|13.93|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|P3L4lelNhlmlNsPbE4dLo9QvFuPg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1007/s10118-017-1891-z|P3T_uzaxJ008oF1WnsxXtf_EXcbL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.05|125.0|0.3|0.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|P3oRS4hFkp1E0kFANBUIur6XMxlY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|97.0|0.62|6.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|P3s4hPDpyfa7L0CdNNc8Ug3xcyd5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|211.0|0.73|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501358|P3uez1de4BWsZjSrG8ch4TpXMrvM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.084|181.6|0.6659999999999999|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|P3ujfl1x957bYRn10Lt2nvq7Ya2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|192.0|0.75|15.31|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.7b17781|P445nXYpDfUMRvPIK3KBUOgQlFEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.7|155.7|0.6|6.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|P48ExcX7-W_-aLGK-vtbtvBQeLqZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0590000000000002|229.0|0.693|16.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|P4Beg4Oii0zSEGGEblXjB4MAGe57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|156.1|0.6990000000000001|11.99|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsphotonics.8b00783|P4F89YHHJAWax0JOScLidApTg0iU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|129.3|0.352|4.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|P4K6zwgxMEaHq1yvXPeJRtddv1cC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|227.1|0.55|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.042|P4KLa_j5ex8FOUWFNkE2ATST1aMZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|217.8|0.76|17.02|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|P4OTic9-yQ2rDpWhy_RcnzK1qkwv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|229.4|0.78|20.15|['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SDBS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227584|P4Om09yw4wc5D0Gh3HHOYhzs9_5A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|197.0|0.78|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1039/c6ta07004c|P4WapswP6X_BSNELgF2mAcGHardK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.89|185.0|0.77|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|P4ZOYLBdfqyyigev5pax72mUs3W9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|234.7|0.775|18.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chlorde', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|P4d1TyNdDP7C6wQLm9PB3UxU0hCp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br81C100H600I219N100Pb100|Pb100C100N100H600I219Br81|MAPbBr0.81I2.19|1.710000182339252|1.17|164.60000000000002|0.78|15.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.8b04439|P4i8T5uHTQR9nZTS3YAAeBCi4tOP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.0|0.706|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800499|P4krsdx8j9NtFDw0peLlNd_1KroO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|0.58|27.7|0.6609999999999999|1.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']|['DMF; I2; PVA; TBAI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1362889|P4rK7iJYmQqjIIFppf9Xck_ghApX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|202.0|0.585|10.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|P4u6iCTauomu7hGfKYC5l8PEsrgl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|155.0|0.66|9.9|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|P4wA0obrBuf7a29dMmHhsWExf2iS|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.001|199.6|0.703|14.01|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|P51JUaWKM_9U3sXBJ9LBBO9sN4Yf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|194.0|0.8|14.0|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|P54a6ZwFPuhMwoznqVntL6YkRduQ|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|1.15|188.0|0.7|14.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.135|P55xl6BT9VedwIYFA9zuWs93j37X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.49|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|P57IizfXwtl0GkZizk-SgQXHvI82|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.936|67.69999999999999|0.542|3.43|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|P5Ehu3aiDX178xxj3JtedHgA3bA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|188.0|0.721|14.5|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|P5GwZrZGh2eRLLaiET12hquNmYoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.5|0.75|13.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|P5KgsqQL9RrVX4bKekLUZTaeK1t2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|113.0|0.6|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|P5OyKjfl_-sbQ0XqoClB37qVn1iR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|211.9|0.568|10.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|P5a9L-BvQ8a0CJYptCya-lRwsehm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|133.6|0.512|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2919|P5hh8u56oyVqugDcTYOZDMchb1Zb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I4N6Pb|PbC2N6H12I4|GU2PbI4|2.520000268710477|0.642|12.8|0.55|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.7567/JJAP.56.08MC05|P5jiNnwWDou2Vinq-sPFgIHKY5PM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.8|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|P5m227_AgMjunxOHW0YWm5Ii1_fZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C95Cs5H491I225N174Pb100|Cs5Pb100C95N174H491I225Br75|Cs0.05FA0.79MA0.16PbBr0.75I2.25||1.18|218.6|0.76|19.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|P5mrvqH2UQmvCxZrdgYZFFOmhCHB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|108.8|0.727|7.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|P5q7gxsShi73VRUROAW999Ci4UhQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.042|210.9|0.695|15.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|P5r6paFJmpNSWCJjN_IlATJF7oYc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.071|219.0|0.7190000000000001|16.9|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|P5rVYdWti4lG0UCPRSxeRMYpRYyH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.921|194.4|0.57|10.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ3', 'Au']|['H-Z3']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|P61MCUm1aG7t0mlJ3Nv6fESvLFvm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|207.1|0.7659999999999999|16.67|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adma.201503729|P68YSOgZvhKUbhgxtCVZysfDycno|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.0|0.64|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|P68ztpEofSpiSKmDQjYVxYVYeiX-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.07|223.1|0.757|18.08|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|P694sAYcHudjgkj4DzzVV9L5LnCG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|234.0|0.741|18.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|P6BM95st2ROfDi-x5pRB4zlw4_Sf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|P6Q2d_83PDN6zqy90CDizvqld49a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|133.3|0.631|7.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aa6e47|P6QpAgqJFU4CPkHSVG4vVW0M8aJe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.0|0.69|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|P6Tmu7EJu2l3mbuz1NXRBglRPenj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|223.2|0.79|18.62|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|P6Vhn86AeEUxhdQwRawuq7MRmq5z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.031|232.0|0.7|16.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.202000782|P6W8tPqP5IfPLmH3_MzFvtKwRtTa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.108|211.7|0.748|16.71|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|P6aQo5sRg3j6_7WQYawVdqfrUV8D|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.87|107.4|0.537|5.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.molstruc.2018.01.037|P6qfLrXsPi5BEXIVOQbV75wrbKT-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|128.0|0.695|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|P6rNAva-x6_BOIbpsY4rXDBjxniS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.03|161.20000000000002|0.47|14.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/anie.201905690|P6rmhPeRpOJdmJ6ZLQIoMFRf6wNf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|205.9|0.742|15.91|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|P6w_iaNBOzC0M3VjdHzUSOkjISqJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.9|0.7879999999999999|19.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|P6wmX3Ni0tujsTdLu2fGVfuEHgvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.83|191.6|0.53|8.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'COTT-1', 'Au']|['COTT-1']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01658|P72EYoAiT37qZ8EtDwrZvwNONyJU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'COTT-1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.67|15.22|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|P74e42wlBGzxAx8CjatD1Wct4RPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|171.0|0.594|9.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|P78lswrb2ySASVTl-nops6GPbOuF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.0|0.657|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.058|P7IAsp9EwjwdhFr9nBzZw-2LOieW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|183.08|0.736|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2015.01.028|P7KGid0PmKyZlNOA_GOQWuhdkZvm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|228.6|0.71|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5020840|P7P_sDH6ocACUh02sYJeZgAti9dF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al2O3', 'Ag']|['Spiro-MeOTAD', 'Al2O3']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06128d|P7_03vqLShwZd00mMGB7zzbZCKXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al2O3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|166.0|0.64|9.9|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151970|P7b8Qh1Mhq8zyU1gNkMO6I3cSpAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.5|0.705|15.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTT-TPA', 'Au']|['IDTT-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|P7dYNS0R3YXAYvFlC8p6laAvAyeD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTT-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.928|145.0|0.618|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(n-BuO)4ZnPc', 'Au']|['(n-BuO)4ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/2473152|P7jD0cUoSMscHu7MMhgkDvPG5PIg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(n-BuO)4ZnPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|232.0|0.79|18.2|['SLG', 'ITO', 'Trux-OMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Trux-OMeTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.6b00039|P7uwt4cxs1UpZiBmVcRP4ToeoeuS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Trux-OMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|158.0|0.7040000000000001|9.07|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/pssr.201600395|P7vgV7GJQlOJ8-EhpeOe0zV4FTha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|217.5|0.787|18.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|P80tBCQF_VkQ8oYrX4uN-tHjNfBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.2|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']|['SGT-405']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|P8C1W1omKNTyFJzQvUTJjlTvhURM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.01|181.0|0.68|12.4|['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; TiO2-np']|bulk|https://doi.org/10.1002/hlca.202000044|P8IzV1zBpBhWXm0yZKwK8YdyRjg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|207.0|0.65|13.8|['SLG', 'FTO', 'TiO2-c', 'PEO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta00407a|P8SAov5NDLBGSLerjP8h-tOgDNe1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PEO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|213.9|0.73|17.01|['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SDBS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227584|P8bnZBEdQZBcKf0IIa0ShzjAZ6Qc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.9|0.7|15.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|P8dCax1uiQa3btfiFvzCLxnGSITW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|225.1|0.512|12.22|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|P8eXSTy1fy0OgnA9VV0IGoehO9qF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|225.6|0.64|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137627|P8egQjqZK8eOIeGKyEm8RnistoZg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|221.6|0.67|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.087|P8fDJobuXR788eIaI3kfFuh_J75i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.09|214.0|0.67|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|P8mZwJY2Hed3taCC9B9Vqj4FCGPT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br19C200H1080I181N320Pb200|Pb200C200N320H1080I181Br19|FA0.6MA0.4PbBr0.095I0.905|1.640000174875072|1.099|217.6|0.738|17.67|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|P8mnZhgyQ7FHc5PoyqpW4rE5bryY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.095I0.905. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||15.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|P8ssSMBYK96ye5HTDSbT1IYSuSz1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.0|0.7|16.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b09537|P95235lXoPI-EgfRNn7TMnCc20zV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||0.98|158.2|0.573|8.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|P98PjT4gsWtp8MPn_AAxOkKSmoSI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.0|0.5|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|P9HJcdrUsI9oJrrYjuRA8h56HK4E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.08|229.0|0.74|18.3|['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|P9NXu5GJMvb63q7oRl627rnJRwU3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.02|164.7|0.72|12.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/anie.201902959|P9R4Xw4bwjnfov2yzmMus9zukpYR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.08|171.0|0.623|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.9b02366|P9SWGBOfOdZL_lBCCl-9lNWTP9OZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|P9nOns4Ux7KoIqGUFOikE_5QVB6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.8|0.703|13.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2775162|P9p5gTbjL2oDNZe6xvzF6LmeqzNo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|160.0|0.55|8.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201500477|P9qrkS-5wJQA4_yhTtwidJmNd6ye|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|PA-rJmo1iTHD0OhwVbLJgSSA5gz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.orgel.2018.09.027|PA1cflR7N5ci-zb-YgCgKp7FR_Rd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|189.8|0.546|10.47|['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.136|PA3w51dJzndPjrz8dWy6-ASwl4QD|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|209.1|0.757|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|PAFsBiD4M5u4jdCWZ761xTeD-bpx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.41|73.89999999999999|0.759|7.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|PATYMfVUxNl8CahzFlslCeSy2ihB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|162.2|0.66|9.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|PAVyTLPLwxkKw1cKSV1f-PwBYCXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|214.6|0.762|18.15|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|PAm4CSPhZbb-2K7yEoa31jTjyFMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|206.0|0.63|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601433|PAuhnaQ_nVE2SBByd7Y9M3QgCgCZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|219.1|0.8|18.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700147|PAwsPu0MLmd1wloPL8Dt6mzkMWca|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||0.87|201.0|0.66|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/ma9090747|PAyPPIKmfRDLbq1A_lcO00uPQqqu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|188.0|0.7809999999999999|15.4|['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'PCDTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b07837|PB44ZfPfMAKkwyAJpMqjlfsjBzOC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|195.8|0.591|11.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01038|PB6pLWissEaH2zxmcoX_W0nC2omL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.99|231.0|0.7290000000000001|17.8|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|PB9cNDzvRAvHUJHIiZxx_9r0d-_0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2700001354215498|0.745|312.0|0.65|15.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5126867|PBBYx78tTOm_gB2dsFJduckC2tlM|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|173.29999999999998|0.627|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-MeOPh', 'Au']|['TPA-MeOPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04179h|PBBbouixVRpNM6Mv0lcrFYhaxigS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-MeOPh', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|PBCQRWfntmwGIHvwDrUQBXunad5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.7|0.733|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']|['CuP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.inoche.2019.107701|PBFt8r-6myhUXxV9Nv2ytGfUCIiS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|193.5|0.603|10.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|PBH7zxRsorNxbCqlnXZ-zY7oo1Ox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|142.0|0.36|3.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7se00536a|PBINnJDmSb_nvVZxBlK2hTGP1d3e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.108|232.8|0.7040000000000001|18.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H16', 'Au']|['H16']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta01773e|PBOv4U8sjKwczb3beXjFp80vf-L3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H16', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br50C93Cs7H481I250N170Pb100|Cs7Pb100C93N170H481I250Br50|Cs0.07FA0.77MA0.16PbBr0.50I2.50|1.6390001747684408|1.07|191.0|0.77|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|PBeZerdteLhM6AgYLU_l4rUPpCEw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.77MA0.16PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|140.7|0.56|6.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|PBl_cvOH3foX_VFvZjL8yAHm7sAI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.17|156.0|0.78|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|PBm5SwZvefwVCZYKLapWAQCGMGWz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|171.0|0.57|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-020-03664-5|PByVRvyOrSdWyjCGkGYMItXkbjqx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|217.5|0.79|15.06|['SLG', 'ITO', 'PEDOT:PSS', 'Propionic acid', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Propionic acid']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11936k|PC3T7VCzJEs-ecGADupZpb2ERd2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Propionic acid', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|87.0|0.62|6.58|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|PC9mEQlWkRuXxxBT1-JVd8ZOENSl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.72|16.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['NiO-c']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1002/adfm.201905810|PCEm1Qe7nrn3k7GNclDiub2umJD4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H28I12N7Pb5|Pb5C5N7H28I12Br3|FA0.4MA0.6PbBr0.6I2.4|1.6800001791403176|1.06|178.0|0.72|13.6|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|PCFAxQ0NLsKE2w7-59X_NhbSBXWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.6I2.4. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.19|112.5|0.73|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|PCGuEdJfT44o5YGHBFe9eVNmOrf3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|53.0|0.35|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|PCV-bmnLkdtuWJvVExlPbROW2QyT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.09|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|PCctcEdnibZCUAjzDhZYunSLQSej|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|165.10000000000002|0.61|11.03|['SLG', 'FTO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c']|bulk|https://doi.org/10.1002/advs.201700031|PCe3woZgpSHyEdKQhfVTC4hkWzA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.16|246.4|0.7959999999999999|22.75|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|PD0aDnfu0sGXo0N2kssXu2y7WcvF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.8640000000000001|198.0|0.61|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|PDCNP5pLeiEtlwa0xKd4ldmLoVz6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604||||17.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|PDGvAf7Ybn9_1r9q9vnOFMjtjRE9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.06|113.4|0.69|8.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite-IO', 'Carbon-QDs', 'Spiro-MeOTAD', 'Ag']|['Carbon-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703682|PDZxIGkb_FyvZvMGEW5YNzLWpof-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite-IO', 'Carbon-QDs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br18C15Cs5H75I42N30Pb20|Cs5Pb20C15N30H75I42Br18|Cs0.25FA0.75PbBr0.9I2.1|1.7300001844718749|1.08|177.0|0.71|11.7|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|PD_3cdAwbthU3XQVYkk_CKMUytNI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.3|0.75|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.040|PD_KNktju7PSV3A4XUnA3X37qhE0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|222.7|0.545|12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|PDmYjmk4tZ87-2fHgd1M5XYluVXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.388|75.4|0.6579999999999999|6.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|PDnZ-iCQpSvccgd52cN1Qv2wlVEk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.73|18.39|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|PDubqm5h-99s1mZkwHWiqF5AeHrc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.4|0.74|16.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|PDzxP2NdqkijqC3MeINgCTXTwmhC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C40H220I51N60Pb20|Pb20C40N60H220I51Br9|FAMAPbBr0.45I2.55|2.2300002377874453|1.3|75.0|0.4|4.2|['SLG', 'FTO', 'C3N5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C3N5']|bulk|https://doi.org/10.1021/jacs.9b00144|PE2wwwA_HPDm6ccvjuIfSlla-9oI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C3N5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.139|115.0|0.672|8.8|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|PEQYjsNcrtyroxViXMV_nnzoiHmk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.061|231.1|0.7859999999999999|19.32|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900511|PEeEj4ARc61eeUn_pv6y6FokMd6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.97|184.6|0.604|10.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|PEo8Y7DHlpgnjYVPUWKIdQDmmxzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.016|189.0|0.596|11.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|PEs2v1nfnMcQUoFo9su7Oqhp_UkN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|173.6|0.71|11.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b01545|PEvVRsYII7MHpttx4YWV-Wv-psHD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.31|77.69999999999999|0.292|0.69|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.04.071|PEwN2tecy4ntkb_8BDrMelGSBe40|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.684|13.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|PF1bykq5vuBhhPsVw3gVWxKk1IMb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||0.911|116.62|0.721|7.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|PF64eW4ltPhBId4l6xgfXfCOe1FG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|183.8|0.59|11.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|PFGZ3u03JSE_fxIV54OkxR-FClna|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.1|0.677|12.81|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Carbon']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.092|PFH4BtLhDxjiWQivPlvvcRuHvIk_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.9|0.74|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|PFYw_nes--8h5uvbvhPlAIeGxE2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149||||15.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/solr.201800147|PFcMT_2y7ytsbx1J_wUwapDPmaRn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.69|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|PFcrsGJDWgYr1tYVRtAoGHDoqynU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|167.2|0.2|2.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|PFjQvt60-1nxCtw1Hja5GGaorhxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.15|61.6|0.527|3.73|['SLG', 'ITO:ATO', 'TiO2-c', 'Perovskite', 'Perylene', 'Au']|['Perylene']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4895039|PFn7FpIewyQ872SEjOu8-59IuI_i|a perovskite solar cell with the following device stack: ['SLG', 'ITO:ATO', 'TiO2-c', 'Perovskite', 'Perylene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|137.0|0.67|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|PFubL1AgbrQV-VXKe4KDvTPRMJN2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4|1.6100001716761378|1.14|227.0|0.8|19.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.135|PG4xtyunRz-V-xASzHkIMxTC5jWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|188.0|0.546|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06189j|PG9L1zOV9qvQDrPpzkx3Y2cubnRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.748|184.69|0.484|6.69|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4ee03664f|PGHbumAmn5EVdFXsHMSKCP65sZSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|174.0|0.545|9.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|PGMyjDqVch1FK_Ggv0zZ6Mu_vrqt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.995|200.7|0.8|16.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2020.110553|PGN_IWYcZ9xNJ_BTQRA4Qi22hJIY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|PGVbMIeWnrPEbIYKA1tvpIEG6NtW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|185.8|0.644|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|PGacAcxSRsfREeWyuEZh95M-u0YY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.8|40.0|0.718|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'D149']|bulk|https://doi.org/10.1246/bcsj.20170423|PGck6_jBrsTLb1ZnCc2SMgrut82M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.0|0.78|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1039/c6ta07004c|PGjTZ4cG1fKgO6J-dKCvEac06j8n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0490000000000002|221.2|0.696|16.15|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|PGrXnbRh13_Z7_bJ4Jq9HvJ9qezB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|184.7|0.46|5.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|PGxJR9-fG5tc97WIFKyJRYvf505_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.1|0.69|15.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b11329|PGzIE_cxTbe_vHT0pYvDMt3fbwaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|159.0|0.703|9.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|PGz_u60zVIWADrb04DAWCqiLiMot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.771|189.16|0.71|10.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||PGzzzq_UY6SiO3O5SBC2Fh53SAb2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|232.0|0.775|19.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|PH7-leRk2vmxzM9px2paHQF2MEEI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|214.1|0.7929999999999999|16.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|PHCNa-7oG5_6ppRi3EsyMzy9C_iL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.93|224.9|0.55|11.52|['Perovskite', 'C60', 'BCP', 'Au']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-13998-2|PHKV037U-mcwIuFHlSoDacQVinrW|a perovskite solar cell with the following device stack: ['Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|1.570000167410892|1.07|238.6|0.73|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|PHTlFRLfkQL5TeJ5e4e4MTyCY0mD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CsI3Pb|CsPbI3|CsPbI3||1.232|132.3|0.733|11.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|PHU1G7Yb185ma1aYzeA2gvzmJMhi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||1.1|202.0|0.7170000000000001|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|PHY8Z9U0F4H0vpykm0bR0eWo4JQV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.045|192.7|0.731|14.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']|['SDTCz2F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|PHn6yRnlfqKB9Xj14RjFbucyD0wX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|85.7|0.425|3.6|['SLG', 'ITO', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']|['Carbon-nt']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226765|PHqlqw9KON-YNARAmU8mGD8yOBmg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-nt', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.0|0.637|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-tris-(N,N-di-p-methoxyphenylamine)pyrene', 'Au']|['1,3,6-tris-(N,N-di-p-methoxyphenylamine)pyrene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja410659k|PHthL_2z65M6BjaQwpP_xM3EU_a8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-tris-(N,N-di-p-methoxyphenylamine)pyrene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.836|212.8|0.56|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|PHxfrc_N7V4wIDkVydiIqBxarhPk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10CuH60I30N10Pb9|CuPb9C10N10H60I30|MACu0.1Pb0.9I3||0.74|143.0|0.478|5.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta12736d|PI0D9NYYSU5QwDwt_GQn73iX6r0c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MACu0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|192.8|0.68|12.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms9103|PI5iuNXdl6sKK_P4sDsquGP8BvMl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C98Cs2H504I295N182Pb100|Cs2Pb100C98N182H504I295Br5|Cs0.02FA0.84MA0.14PbBr0.05I2.95||1.001|205.4|0.675|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphene', 'Au']|['CuSCN', 'Graphene']|['TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2019.10.101|PIAE4BikNb-P2dOQotby7YrTLVzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphene', 'Au']? The composition of the perovskite layer is Cs0.02FA0.84MA0.14PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.0|0.731|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|PIE_S1EFVN3rIkIju8GTo6ancnn1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.975|207.5|0.715|14.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|PIGMcK3Ytok32AJwG-pqPA64b_57|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|215.8|0.74|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|PIHa8tYB1yaoH-dfHSDAs1EAkfuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5980001703965645|0.88|164.0|0.71|10.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE05|PIPipGssV4SKqzvr7alMQgP3zOvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|237.0|0.76|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11139d|PIcWrNl3uXQspM5KcnUHKt1_YihZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.740000185538186|1.21|189.5|0.761|17.49||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.jcis.2021.07.147|PIfVS7cp_nkjbTq5TloNyQj8Sdud|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||0.9|225.0|0.623|12.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|PIq4n-SSkqyJ349_LQhP0UdTWD1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|128.0|0.46|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|PIuuvXbSrC6sATbTIaUnWB_YUPlp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.0|0.78|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|PIxdhJMeQ7Tw6BVxEF5dpn-0zgdA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.9|0.7|14.28|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe2Pc', 'Au']|['CuMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|PJ2ecT-Le0FqKmfX2Gaqycxf7NDP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br150Cs49LiPb50|Cs49LiPb50Br150|Cs0.98Li0.02PbBr3|2.290000244185314|1.454|69.5|0.779|7.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|PJ8LOFY0ORzzBZBQxZWiQW8aX3IX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.98Li0.02PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.0|0.75|16.3|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|PJDahZAOqvVnVAWty2iAo7XS4MOi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.09|197.4|0.77|16.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|PJEMFm4C_j2CrZxiCYaWhst1MSZI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|201.0|0.632|11.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06041a|PJMYzNI8wfKSx3ZPDXxB04-vTYym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.77|171.70000000000002|0.51|6.28|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|PJWDGRWDkjuawaibrtsmYor01_4E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.06|227.1|0.74|17.88|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|PJXN9otgpbP8PZ9XvD16yyQoc2AB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.3|0.73|17.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|PJ_BSIRTD3yaQ3-xppak-MI8xzrH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.858|156.2|0.44|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|PJhH3yFZ4xrzo0jc8xVjk47RMmIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.012|187.0|0.6459999999999999|12.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|PJla9zdkhKF0K-TFo4MvKlPyRMjQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|200.9|0.773|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2018.08.030|PJlaAuILIW5G98OAA49om6mZ4i9p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|228.0|0.629|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(DTYM-NDI-DTYA)2', 'BCP', 'Ag']|['PEDOT:PSS']|['(DTYM-NDI-DTYA)2', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.06.049|PJncpB2bW8relYcbtKO7qxeRulRX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(DTYM-NDI-DTYA)2', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|231.1|0.78|18.56|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|PJqvJykwbiuM9q1F2c0WA3ZUebQP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.152|214.8|1.152|21.48|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|PK3V_Zq0qkU8OfIZX8wOspxZGbC_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|228.0|0.72|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05667|PK3fUyre5Byj2WGgE7X_6YQinSbW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.0|0.746|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'PTPAFSONa', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['PEDOT:PSS', 'PTPAFSONa']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201502021|PKK_y40WzjrhJ5SGsheKrMzs03h1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPAFSONa', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.23|142.89999999999998|0.716|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|PKKfmmP7--04WQdE9svb8_J2cdye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.244|134.83|0.647||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||PKPl1yd4n26Q8Sqf7SvotWKWnHzk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.1|231.0|0.67|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|PKWOBfu8SCAd67Pxv4sooUt18Mg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.04|213.2|0.691|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|PKkcZ5kuAKgBAwUm7HCfe5ySEmch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.053|206.0|0.69|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|PKlCSKiDATltKWD_Yt5FGmUhie0x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|165.0|0.77|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO', 'MgF2']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/adma.201505279|PKo94P3LX0dItovHZ_hyl5QEQ18p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO', 'MgF2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700476|PKq6PeuSQM_WNr-hl4zf8MeNQofP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|60.0|0.4|1.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2016.07.182|PKuXQ4N8vwHVCVy6GsanLShH3k2P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|178.0|0.477|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.021|PKwB8uNgn-tILnbNYwJbUotxiig6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|224.2|0.741|17.62|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02094b|PKz0ooIhoFhLzNTJD_fynYTk7fsF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|220.6|0.688|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504190|PL-KRKpQ1T264zXhMugNxgkiQoyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|201.91|0.763|16.37|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|PL-ZwLNVoTjlbjOReZrIakHCZ07Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|228.3|0.76|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.11.030|PL0tcNTntTt7yyV7mtIYPYsBw-eq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|200.7|0.69|14.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']|['NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsaem.9b01200|PL11wSiYn-L-KcXkGpmrGvs1CkJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-020-1306-0|PL4pe643YiEpRavMl43Rnj-OD3e4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.96|||11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|PL9Krw6_J9JFKg5aeUsVjvZzma3m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5300001631456466|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900220|PL9X3eJr51IkRArPQ5byoDb16T3G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|222.3|0.7440000000000001|18.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DBQT', 'Au']|['TTPA-DBQT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04003|PLKZjZ6mb3YOXjpWriiAt8ENsRYX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DBQT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|218.0|0.7709999999999999|17.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PolyTPD']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9qm00112c|PLKuYnLDiiUL3c_n-k2Dm71so1Il|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|210.0|0.65|10.78|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c6ta09174a|PLOY7O56fPymkVW4Bs009Fugh_t0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|174.89999999999998|0.52|8.0|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151970|PLPApBzSoYR-EZJuH871VdDGP6M_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.3|0.66|13.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b08384|PLpA8b7KyWXWqycqPuUsLWebKkgZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|196.0|0.63|13.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|PLpqRrBwRtnRAoyZVBgOIEK24N7I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|134.8|0.342|3.82|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|PLsNDo8boyNMIT0ncNSlwY_16C6L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|220.5|0.8|19.05|['PET', 'ITO', 'LiCoO2', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['LiCoO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|PLxC6DXd8Llq0HMsdhsAjCyiEGtA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'LiCoO2', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||15.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|PMIq14hTsczCIbHx-Z0cWwREgkIG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0|218.7|0.732|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']|['4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|PMKJp5CadJrgfSEECHE3uFed8Jru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|53.2|0.77|5.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b01264|PMMTr9T5-KGw6FHETN5S1KnWsuoJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.097|127.8|0.6609999999999999|9.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800315|PMRt_QSfr_7yJR7EnIRwR8XDf3ob|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -C10H60HgI30N10Pb9|HgPb9C10N10H60I30|MAHg0.1Pb0.9I3||0.91|177.0|0.7190000000000001|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|PMUCDVw86Vy4ZfVv_j0yrTjWlc0_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|213.7|0.72|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta08970d|PMVyrOVLgJbyv-dAJ4RmUwXQETI3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.7000001812729404|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|PMZaPnOBkWg_bhjAiojf1Q5CRQ0i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|165.3|0.65|11.66|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201405372|PN-I72yG-tuCETr8b_Zng9mWfwN2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|84.7|0.6759999999999999|5.19|['SLG', 'Ni', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2019.03.002|PN7E4Jd2D8YsyQ9p_zwuIG7GUt3K|a perovskite solar cell with the following device stack: ['SLG', 'Ni', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.1|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00059j|PNBT1_vg_ZCYOd0QCDnxhTS7IOST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|184.8|0.73|13.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800222|PNNLgc9O3vN9CEljvE7gdGo5KWIi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|219.2|0.75|18.41|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|PNPcQVB9q1R000GsTfCrlQ3zqXHm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|193.0|0.67|10.6|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|PNW6j49ggJCj5AKeXKmCtMJLh9mT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.0|210.0|0.77|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta05350e|PNe_2Uy37Q2XpL6iPI6WsNFcOC52|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.93|147.6|0.35|4.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|PNis3nrK5FIrPTuHiYnwzELuCqrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|87.0|0.606|4.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|PNpCZ2SVUGOys6uIV86Nr2vzhZoI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.04|194.2|0.7020000000000001|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|PNze1KsaU-y7HZLZkn4yErcCuMFZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|214.4|0.52|9.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|PO7TZZ5MGWipuVEtZoqymsSTNcOW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.1|0.72|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901964|POCWUq1nVW_k_-yXeoPpq4kIMzNb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|222.5|0.78|18.29|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|PODOtYt0XttHC5CDKaOAcIkVFf71|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.745|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|PONZHbS3qp5BotHW_XSX4403WEVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|257.5|0.7559999999999999|20.58|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|PORn-vzpymAIaUxK9F6_pi4eIExD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|230.0|0.75|18.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|POUxztJ8FJg4A_aoE8H8ZCj1Z06Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|160.0|0.61|8.39|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|POapwxlbuJs8emPvMudZC_vxPoUR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.3|0.62|12.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|POdecNiYUdjS5eH0CDYQcz9gbuSr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|139.84000000000003|0.318|4.0|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|POlJiWHBz-7zv4p1uSk12nlvsJco|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|144.70000000000002|0.52|6.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra25160e|PP8zuzjYD7QVbmI1zLz4ZJXUndAO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.97|197.0|0.544|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5CC09873D|PPHhGXpE2m0FQiwWzGvoxpq0MbIa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.77|183.0|0.48|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|PPHhMmWzQ2JDdWs3_6tX9rQpaTaQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.3|0.72|17.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Hexylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Hexylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|PPNC8Z_4L3cmEFDifJOmYs_PmU6s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Hexylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|230.2|0.664|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800174|PPR0JTPAEW704gFrcp7kk0oq5y61|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.12|212.4|0.7190000000000001|17.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.044|PPbD8jNYvI4ukSbbizy5-9IE7TWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|165.39999999999998|0.56|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|PPf6tpZIciZ4zdeZ2IcC5YKrQpBb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.98|174.0|0.687|11.8|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|PPgYZOWVOfVelCG6Tt31vv1M28XF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|188.0|0.63|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|PPkbU-CQzXWz-HsIHnzegl_R59ys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.30I2.70||1.094|231.4|0.759|18.02|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.063|PPmCkL1VSw7dbQWkIghpAONDmYGz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.30I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|214.3|0.643|13.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.06.015|PPqPvb_yYfbQhTU3ONLSKvlcNfv9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.615|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst8010044|PQGHERVDmWQFvt-c03rPfTrZzJZc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|160.10000000000002|0.53|8.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR355', 'Au']|['KR355']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01718a|PQJRcai9ss9I0RkLNt9Nn-HZjwsk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR355', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.065|121.1|0.659|8.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/C9TA05556H|PQLI-eoymy0lzApsn6NjqnVwvzH6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|218.1|0.657|14.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|PQMO3GSNWIMND-JffQLi8xbz618u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.04|216.2|0.7240000000000001|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.spmi.2018.03.051|PQN6XJHsf-KvlCTEZGwHCTadS6Rh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0590000000000002|223.5|0.737|17.43|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|PQhsKpeFsSEop3bkTg2P9M9uhv7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Ag4Bi9I31|Ag4Bi9I31|Ag4Bi9I31||0.59|24.8|0.37|0.56|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|PQsm2dquh0pumk64COHxqgMcdpVw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag4Bi9I31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|206.0|0.6|11.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|PQy6ps1AD6QXB47THglcNF-8sUhr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.41|71.0|0.34|1.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|PQyyDveDimZWlhtgOPESSdzXTnzJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.073|223.1|0.69|16.61|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|PR0Uoj7e7Zl-bcfXi-E5MBSXpKV8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.3|0.594|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|PR24w8evM-ARMISHoiM8ORzHk-cN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.06|206.8|0.77|16.93|['SLG', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|PR2UJihKPpBesEwXNGt7Z0-Z6sEM|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|125.1|0.46|5.12|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|PR9n1nqXTYE_INTetOyEw6iKyauA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.670000178074006|0.981|229.0|0.648|14.57|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|PRGP6vhVvsRr1Okzq5oC-aXnc5sM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -C33H78I13N9Pb4|Pb4C33N9H78I13|(DPA)2MA3PAPAPb4I13|||||4.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acs.nanolett.9b01652|PRPfzlY-Of3eq_xLLqImGigC27jE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (DPA)2MA3PAPAPb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|33.8|0.5|0.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|PRT6UzSO6utkHbkA_uTIt494eNYk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|233.0|0.755|17.0|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|PRUWrgPfqU8K_XM9bqKgvat0_Dwz|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|115.4|0.36|2.8|['SLG', 'FTO', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['none']|bulk|https://doi.org/10.1186/s11671-016-1670-8|PRfiLOZzdzip12gFs6v5c9XzpDSD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||13.77|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|PRgbp8yg71FJtDJQiNs4O5Vaz5h0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|133.0|0.44|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|PRhCoW9fJlRy5f2sv_XyOo7TWJjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.01|7.0|0.06|0.00042|['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cc02589g|PRi_0OIiwbwgi5JnNXKpOuofoLJ_|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|212.9|0.8|19.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b16649|PRoInKXSrpf_OdHqKgxmBl0q73ZY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.01|1.9|0.21|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']|['m-MTDATA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401991|PRrFrpPjuFqGJMIH1TpcGTHIsHZ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|130.0|0.53|5.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3ODDT', 'Ag']|['P3OFHT']|['ZnO-np']|bulk|https://doi.org/10.1139/cjc-2018-0414|PRv0HywTkoL76FGZcEVBOSbQrS3D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3ODDT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|173.79999999999998|0.628|10.18|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/c5ra01540e|PSISrj4AsEVXY5x7R8Yf7QSFpfwm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|55.7|0.396|2.18|['PET', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c3cc46534a|PSJe6vwHBBfiiiRvswS7eED2IFPp|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C47Cs3H243I150N86Pb50|Cs3Pb50C47N86H243I150|Cs0.06FA0.78MA0.16PbI3||1.11|225.6|0.816|19.6|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|PSYiEnxuneQynBWNrGcP10bIpwEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|165.5|0.731|11.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2017.07.013|PSYyYDWHxqOahDquL0cFZxUXK3sT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C40Cs20H60I56N10Pb25|Cs20Pb25C40N10H60I56Br24|BDACs4Pb5Br4.8I11.2|1.900000202599169|0.96|145.1|0.51|7.35|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.9b03414|PSZs81UZF3xsJ0Ng49XbXHkSE7Dd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is BDACs4Pb5Br4.8I11.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|PSw4yicRlVV2qaB11dne18thuj70|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.01|152.0|0.7|8.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2017.07.017|PT01n022MbxI4BtZqoGzUquXrp5X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.132|219.4|0.6729999999999999|16.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|PT0gk3V7h3x8eOCY2FexPzn4tmx0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|205.0|0.609|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']|['CuInS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|PT46dkvtGOIt0CXIBSBUYVEihL6o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.929|240.0|0.7170000000000001|15.98|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|PT8kXntIeq98biSBgtQ40RGVG77B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|128.9|0.752|8.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8tc06043f|PTO6bO99rgOtR5dTczS6JuiEJnBA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C85Cs50H435I249N160Pb100|Cs50Pb100C85N160H435I249Br51|Cs0.5FA0.75MA0.1PbBr0.51I2.49|1.6300001738087604|1.06|211.0|0.75|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|PTO8FwxdWPOe9SFaxvUh16G9DJ_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.5FA0.75MA0.1PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|184.5|0.72|12.5|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.3389/fchem.2019.00050|PTRZ6dLOZ00zQm3pAhSf1Z0oNDwi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.023|11.13|0.764|19.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806015|PTRZMl0Qd0U-H2uZW1KApcZgB4zs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|128.1|0.62|6.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-TPA', 'Au', 'Ag']|['BTT-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ajoc.201800490|PTWcTcdr1ESUyZ8UIxqeh1Obprw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-TPA', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5900001695435149|1.14|226.0|0.7909999999999999|20.3|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201807604|PTbhN0a3yPfoBF59V0tKh6XPUx1d|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.95|213.0|0.67|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X54', 'Au']|['X54']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2017.03.011|PTdimP-sjBB-mH9yWc3QsmaFxn-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X54', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|143.0|0.4|4.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|PTiUyulPzXNi5-2qrb9qPgm6zxea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.83|39.36|0.562|1.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|PTkYv2aPAghnbj124ezzFvDQ4tQd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.63|168.2|0.522|5.53|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|PTklLjLkVpXZWPd21aTB4-HhlGSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.0|0.47|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.028|PTp6cFLXRdIN8jw08iZNxDi8k202|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49|||226.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.10.062301|PTrD9UYqUzhtUw0zW-LUqMveUTBa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.7|0.688|16.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|PTwoz5OyIa0UkK5kRkbWjPiqW1J5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.26|65.1|0.62|5.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.075|PTxIK1YFtFd2ThGrlt3ZzWNbrHGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||1.411|68.8|0.775|7.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc05517c|PTxnPivsPAqNsRkya5HQ6aMUawAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C22H68I16N6Pb5|Pb5C22N6H68I16|MA2PA4Pb5I16||1.02|179.60000000000002|0.65|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|PU-725M0nxUO3p-4oNEBuROhyRrv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA4Pb5I16. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||0.87|24.0|0.54|1.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.09.062|PUBlbpvG2u8P1LkXEKx5KXG8R9aZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.9|0.6940000000000001|13.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|PUDxv7HE1UPDjuqZ8k6h-BHQl5Tj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|214.0|0.63|12.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ee02048a|PUNcefpUa0ivfxT3Nk-brvBFo2zg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|41.8|0.287|0.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|PUOoo9dbKtwjCdTUr1RmzulHl8on|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.075|206.3|0.754|16.38|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|PUT8MKwcxa5rmT5slpoDAS7xv7Jv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|125.6|0.55|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Graphene']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b01177|PUZRYQ5sAqEesjEvUrCogRrTj6eu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|183.5|0.6759999999999999|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.146|PUpWpyQWyUEEOMyRj8aWtNunUXmv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.7559999999999999|18.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|PUqYYtWmfMPgnTTUEpsgZUIaz2AS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.13|225.0|0.74|18.8|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|PUu4xyS6HCUHPdRCA8U9CzgXP3-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|PV-P0Ca6M2qUzmIatqsjBYiFhiIZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.019|210.2|0.6509999999999999|13.96|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|PV1uZ23kOazHEwawo49VyqqhCP3_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|195.0|0.75|15.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06394e|PV7pSQl5r5x-rU1P3ZINTGRZsrjh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.6|0.77|16.08|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|PVMBYZd5ftv2tp0-oeo1iHfZivJ5|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|231.4|0.759|19.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|PVP0siaSHpWSBtF9_ZgoWb-FDlOg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|138.0|0.65|7.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|PVYwHOhEdXiP8SLg8VYSEiBCkh4F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|193.4|0.62|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|PVaWCzOOudB4GpmQgQlJI5FbV2gI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.936|210.0|0.691|13.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4890245|PVhRAiSZQqEZX2JX68dMeF1Ah_zh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.8|0.71|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|PViK9N-jYUQa83lDzNa6QDp5E9Yz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.0|0.62|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.041|PVpBz2sqnUT34N0LmduePVPnImE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.91|145.0|0.45|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiF', 'Al']|['PEDOT:PSS']|['LiF']|bulk|https://doi.org/10.1039/c6ta05350e|PVtmcm3WS-gLcf-S8L10qpzN6j2j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C1085Cs15H4053I1300N542Pb400|Cs15Pb400C1085N542H4053I1300|BA2Cs0.15FA0.57MA2.28Pb4I13|1.5900001695435149|||||['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|PVwEMXNRA8cyPYV4M5u3DeQW0MS8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15FA0.57MA2.28Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|144.0|0.56|5.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|PVxweOQxCacU3wuOq-cQjPzUN6XQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.02|212.0|0.7759999999999999|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja502824c|PVy8cFjRs4kkIPZNPq85Ut6tBfWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H64I28N10Pb9|Pb9C12N10H64I28|EA2MA8Pb9I28||1.05|217.7|0.7|16.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|PW0WfAiJLKgBvXAG4uwO9Vo1YDqB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA2MA8Pb9I28. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|227.0|0.59|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1039/c6cp07733a|PW4FtfPO2wviEWWCYzy8sqB5OsxU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.0|0.7|14.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|PW6AjqbcDQzgNAmtanrcXZi_oHin|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|108.0|0.49|3.8|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['none']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15147|PWIX0GeHKnC_O1f2hLwRMGhHA147|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C219H4019I2414N914Pb780|Pb780C219N914H4019I2414Br45|(NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14||1.09|228.5|0.7340000000000001|18.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|PWJa_Pj3M5WhvlLCbqI7DGs16cDY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14. -Br3C80H440I148N120Pb50|Pb50C80N120H440I148Br3|FA0.8MA0.8PbBr0.06I2.96||1.072|208.4|0.753|16.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900491|PWMMmrL3BYgInbB9wJPV3-GfcZ9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.8PbBr0.06I2.96. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|233.8|0.752|19.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|PWNhdn9RUkXxElLWvkJcpb_Yye43|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.0|0.53|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|PWw-7ZEw6tlTj3Wkh13RXf6ol0Ny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.03|173.0|0.62|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'NaYF4-np', 'Au']|['Spiro-MeOTAD', 'NaYF4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr08432k|PWykbRIkkjjuaznVV3ao83vJAxUR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'NaYF4-np', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.05|177.0|0.62|11.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201901966|PXBJHjYguQlcKYUTWhgBnKYTRpBA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3CsPb|CsPbBr3|CsPbBr3||0.5|5.2|0.44|0.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|PXPHrUV2LdU4f8D_GwmNoLzF5STa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|PXPxvI1gj0ZCovI2MOmdQwKXNTdl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.6409999999999999|14.7|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.11.025|PXRcnAikrSK7ZVw9Bp-Agx1ucsvH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|94.1|0.612|4.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-016-5196-8|PXWmehHaF17RaWz4MJZJlBBiluZB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|212.3|0.62|11.81|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|PXaVbKD2A5D4fOpB9KVBoDecshSJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.99|193.3|0.51|9.73|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|PXci7fi0l6HQAb8UU1bQI6gar4N5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3300001418194185|0.52|227.0|0.627|7.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01588|PY2ZmixSkmxpbnp5NNAzc3ZLKgj9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.6|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|PY3iueCWNLPDGVdQQtBUwkzFUKCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.76|179.5|0.43|5.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/ab28d0|PYZRAkhDPQPFu5dxibAFz_X1rvn2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|165.0|0.77|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO', 'MgF2']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/adma.201505279|PYibTuMOlegPfUHuaYcFutcZFRNM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO', 'MgF2']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.477|71.2|0.7290000000000001|7.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Carbon']|['ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01151j|PYkZWBO93gAG8a1bF0Wba73tXH38|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|173.0|0.44|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PAH 2', 'Au']|['PAH 2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7qm00473g|PYu-KpL2iMJbMli4f2mk-k9AXQzo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PAH 2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.831|162.5|0.635|10.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/cnma.201900097|PYwZ3YvsOt4KxZlhTbKEt2swzNl4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.974|174.8|0.672|13.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|PZ-jPbY3mk8lVP0xKhwh72lvhuPo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|72.5|0.486|3.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1038/srep08704|PZ5ob3ehQ7ebYJrtKfNjTmP_dA8N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.95|191.0|0.688|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc00268d|PZGoZaIZgcocMBKP_WvF0kA1Rxws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|182.2|0.75|11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|PZKF6aCcLftY64RxYLyawH62ceDc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.911|182.5|0.69|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.10.018|PZQFq8_6z6WMnffleNGfuvLfKb92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00413j|PZSK3EAoTWOn3GJeNQauPALmxqaq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.07|213.9|0.78|17.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|PZUsq66bcHvs2X4V9ZAF85CYNTSF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.5|0.607|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.01.010|PZZ8RbEIWCTdt93UOGFx22FJQ_xZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|211.3|0.742|15.1|['SLG', 'FTO', 'TiZnO12-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiZnO12-c']|bulk|https://doi.org/10.1021/acsami.6b09326|PZlmYyl-kPxDp0BYaSGlIwZhRRPU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiZnO12-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|160.0|0.5|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02734|P_6X0ODly3q2ebWvjWGNkkN6h1Rc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|218.16|0.67|15.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|P_AlfHwZaqFzFs6Vx9rZqBpZ73RY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.2|0.75|15.79|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800125|P_BQwG38KyQe2KVESuufGeHPUwkG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|P_GuEHmcLQvkULX6TS-ecc6l68cn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.09|77.0|0.645|5.4|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|P_SPjyV4KkqMit4VgpTMPZPFE6v1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.0|0.59|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|P_TjBOzI9enrQKFLCsQgdIVjkZf7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|158.1|0.68|10.66|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'SiO2', 'ZnS', 'Ag', 'ZnS']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-017-1880-0|P_fpmnQOrVwpLSBiFcP8spDmH8L7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'SiO2', 'ZnS', 'Ag', 'ZnS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.835|214.1|0.52|9.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|P_icAleZaEtGJukAaBbgAggHnSEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|222.0|0.605|14.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|P_kMHBZl9Ob-zqGc3mf6C-DwBsLM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|190.2|0.613|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst8010044|Pa9TDwfFQAqzvyK-IBNdOw1ZELMW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.27|106.9|0.71|9.89|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta03336j|PaB4WqQtiBGlqA3tPTsJU4byD_KI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|192.1|0.738|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssa.201900087|PaKv7u8wxv5s6PewBvai54GNANjV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|115.1|0.97|10.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|PaP4naXCfzTsXw5sLYtsK8tqhyjY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.5|0.755|17.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|PavI6OUPf7vqjAiMQFdfn4dpWEQj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|155.0|0.57|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08658b|PayvwMMGEKdzwa8A-wz7vZL45KJX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||0.818|156.0|0.34|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|Pb-xtbIynVFhPLWfgWclhYZeQAmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.3|0.69|11.68|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PEDOT:PSS']|bulk|https://doi.org/10.1021/acsami.7b03126|Pb1xesJ9r1a2X4ygU3648wgqc8Ij|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|163.29999999999998|0.45|5.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.03.017|Pb3mKgPM09qS9RYhC7Vo8CbNOS6U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||1.13|231.2|0.7440000000000001|19.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaf8060|Pb4Q19lXq7l34xINM21nGYpJQ2A-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|121.7|0.25|3.16|['SLG', 'ITO', 'SFT-TPAM', 'Perovskite', 'C60', 'BCP', 'Ag']|['SFT-TPAM']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8nj01082j|Pb8RVdhWPAV4JwIx94OlJUr9PQqo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SFT-TPAM', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|175.0|0.71|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|PbGjNAMo38_JKkuuJT0nFRaRmD11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|228.9|0.768|19.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cplu.201700471|PbLixBiRBaeXoRuRj8yPpZI0w3yy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|177.5|0.61|10.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|PbSFG_HtKjqxtyLhE_DYjfpdvWnf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.7759999999999999|19.2|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|PbTTBHE-6rzb9Z2OUPEGt9GUyG_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|0.96|207.0|0.66|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|PbUrfHF_n7jHwXyIIk0Y4D0iP9QK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|176.8|0.63|10.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-018-6531-z|Pba6UriHDx70ZTvkRc6KT67PjqJs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.95|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|PbaO1IdcPCVr5RVxXPw98X91opPt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0590000000000002|215.92|0.718|16.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SbI3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SbI3']|bulk|https://doi.org/10.1021/acsami.8b10062|PblbbfOlW8QO8iRSn9BtIzGd298a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SbI3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|95.0|0.54|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|PbpY58r6uZDRPRr4-F4UWq5EJbmy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.91|130.0|0.48|9.0|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr04179a|Pc408pQqV6c-30gWmDInAHUIlE3-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|171.5|0.72|12.1|['SLG', 'ITO', 'Rubrene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Rubrene', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp07592d|Pc6eKyPo_xaC7xgU1DYtbYshLlpI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Rubrene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|165.3|0.715|10.99|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|PcNYKQX-B2Ab2JK3IERCH3Dm4-P3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|220.7|0.66|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'D1', 'Au']|['D1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.05.024|PcNhKi-UQ0Lh-NiwyCmQijCOQgnX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'D1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.0|0.71|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201601186|PcSYWFKfu3Mg5EertCNnoXWygwkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|210.0|0.76|18.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|PcVGpXmd_qklH-kgOe_po_XqSbst|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|194.9|0.63|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2015.08.021|Pcb1QX0PRQ4Vn5uFB_9R8al62FZ8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.93|175.0|0.57|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|PcehCSc71FHJgclmmjGeW3srb61i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|196.0|0.8170000000000001|16.9|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00218e|PciiKWiMFYYVlDRlYvFFMQiMHh_5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5800001684772036|1.02|212.9|0.7|15.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']|['SM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900011|PcqJzZn8zIWK_Htp2ThF-fgyVyLs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|215.0|0.76|18.53|['PET', 'ITO', 'SnO2-np', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'KCl']|bulk|https://doi.org/10.1021/acsaem.9b00391|PctIOasRsm8yrx3jDX8fa5R9uWr7|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|190.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|PcwBC8RE8Pb1cMuO_HXQmFdcqm78|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.828|126.0|0.71|7.4|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|Pd-otb13SRFmm9gnxSQfqSXHGqd-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|235.2|0.76|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|Pd1u5GCsm6Wpuc6zv3KS-x4z5JVp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C100H513I250N187Pb100|Pb100C100N187H513I250Br50|FA0.87MA0.13PbBr0.5I2.5|||||16.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.05.016|Pd299CHcGX93hEnEmjUy8kaZgzfd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.0|0.648|12.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4998630|Pd4LlfoQwZJKUdZS2FHlIgU1RD3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|141.7|0.69|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|PdLa5MIIwtmVNMCWA8A3_Mexz9sM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.58|253.7|0.53|7.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PbS-QDs', 'MoO3', 'Au', 'Ag']|['PbS-QDs']|['ZnO-np']|2D|https://doi.org/10.1021/acsami.8b15469|PdMDbLXBFJg42gPE3oi6B8--iZWT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'PbS-QDs', 'MoO3', 'Au', 'Ag']? The composition of the perovskite layer is BA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.4|0.7|13.54|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|PdSIwwkSy-O5fsx90Pik1oGR6Pl_|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb24Sb|Pb24C25SbN25H150I75|MAPb0.96Sb0.04I3||0.968|205.0|0.6|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|PddNJ88fuNCMz7QgyTDN6hI2hpZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.96Sb0.04I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|209.9|0.5710000000000001|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|PdinWuZYBPXSvMaoWc6seuk9y9g6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5500001652782691|1.08|222.6|0.772|18.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201707583|Pds0jmUn98tAXvqRRPdab3fHpDcT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.7509999999999999|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17338|Pdt66uVH67Ny4DhMxOUhG2KWLJUd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C37H1035I680N244Pb224|Pb224C37N244H1035I680Br9|(NH4)10.2FA0.15MA1.7Pb11.2Br0.45I34||1.08|223.5|0.759|18.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|Pe9lSJl6gkpasqL3ipC6RLoVQrdM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)10.2FA0.15MA1.7Pb11.2Br0.45I34. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.6|0.708|16.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cplu.201600415|PeA_4ErtX62koj7etzqPd4eO9jWv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|184.0|0.695|12.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1038/nphoton.2013.342|PeIJDed3IHt9eP1g9CwJSke4U1BA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|170.0|0.7140000000000001|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|PeIJc7qbOnLLCfV8KfYat1DDJRFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.992|188.9|0.7290000000000001|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|PeSwMthpkranHGg0xw5r25v4ILxO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.93|218.5|0.63|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|PehRM1v4vI_fvevkKCMgKpyGhcfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|165.0|0.59|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|PeiIcpIOY_lQvdz1bVPHgQI4RZnE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|117.8|0.66|6.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3866/PKU.WHXB201412241|PekIioIH-c2uchT_SVnuXZHNglcK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|148.0|0.72|8.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|PekhR204kMC7Iumn5x04vdVZ283X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.4800001578140891|1.005|242.1|0.722|17.56|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04190|PeqDfpQXMXPgymsBzn2GW5hoUyJ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|168.5|0.66|10.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|Pev13wD7Vc7giFWoszgbsOFqopC5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|||||['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|Pf-NQFbgEInKOgfusDKiXCxRq3Au|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|216.2|0.69|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|Pf0s-f0Vu7wzcvvydgof3FfmQ2R4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.09|228.5|0.736|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|Pf5EG97Qewewk5sxW7-MCOwQbWSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.1|187.0|0.7240000000000001|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc09873d|PfBdEOJHcaaVMzGyWoV_QCiNtFUw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.162|163.29999999999998|0.7759999999999999|14.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|PfEezkxSazk4FQhINngeMZW5sdF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3||0.998|189.3|0.763|12.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|PfInaxxQaRDogfL9rexPjQ87usIv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|207.3|0.8270000000000001|18.9|['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTM', 'F6-TCNNQ; TaTm']|['C60; PhIm', 'C60']|bulk|https://doi.org/10.1039/c6ee02100j|PfQhUslMHzZgFbTGRH64XSJGeWq0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|40.0|0.23|0.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|PfoxrUTU0KbC7gXX8SvHIg7SUxYQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.0|0.45|8.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|PfqBule5PSPVmMBAlmJ1eetuo-9B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||1.11|237.3|0.73|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|Pg1DtHEE5dmNIpLFyukX-rEljfmB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|193.0|0.68|13.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b17798|Pg2ASQE-uF2YuJaJdcD3hxYna7n1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.7|0.67|12.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5ta02730f|PgC8rZEaOs-8xiEv1G_CCNS4Bg4E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.96|178.0|0.66|11.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|PgDZvbTblZ0twcm3ekiMOb1d0ulW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.259|21.76|0.5|0.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|Pgc3_Kkrj1UvYx3oRVhdubvJJt4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.23|150.0|0.7879999999999999|14.1|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201802509|PgkMyW6hlSPXUk4VBsLm4UD09Wjn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|188.0|0.759|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110316|Pgwv67mt1KIKUZKvgWYxE4oVivR3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|137.5|0.66|9.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|Ph6NFaCDzMfcv2Abz_Uum0AyIkfq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|166.0|0.73|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|PhAaD8dkufqZIHHo6UVKmGvWY2oN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br250C475Cs25H2456I1250N869Pb500|Cs25Pb500C475N869H2456I1250Br250|Cs0.05FA0.788MA0.162PbBr0.5I2.5||0.73|184.0|0.62|8.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.011|PhJrwAuRmmZWKAllJg_sZfAerZqR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.788MA0.162PbBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|196.0|0.78|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|PhXSI8vyiNNHrTW5b7wgurcSuuUX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|167.0|0.69|11.55|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'LGC-D013', 'MoO3', 'Ag']|['LGC-D013']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2018.09.021|PhicWgn4nA9zFUpsCbdl-ySF5kNH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'LGC-D013', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|133.8|0.42|4.29|['PEN', 'ITO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/jp512101d|Pi1o3AevfgzxYSH643FJ5aDpsKas|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.89|222.0|0.48|8.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|PiG9HG6wtJZfpWpWhlWBqouc18RF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|214.0|0.83|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|PiIYfmPm98KjS6xqNwcYd2WGsz4B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.996|165.0|0.55|9.1|['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03240g|PiT1l3A8rrjw9r0vvfFu9LfkzZmq|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPb1.0I3. -Br6C15Cs5H75I54N30Pb20|Cs5Pb20C15N30H75I54Br6|Cs0.25FA0.75PbBr0.3I2.7|1.570000167410892|1.023|221.6|0.725|16.41|['SLG', 'FTO', 'CuGaO2-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuGaO2-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201805660|Pid2ZEbzSVbGQ4i4HT6Fa3ly-s1x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuGaO2-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.2|0.85|16.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b01364|PiivYUh1mBsZqawKyNyzcQzaNhI4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C100CaH600I300N100Pb99|CaPb99C100N100H600I300|MACa0.01Pb0.99I3||0.98|191.0|0.684|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|PijGtJWF4B6tS_qaayNEo_ynS08r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.01Pb0.99I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|207.7|0.6779999999999999|15.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201606156|PisKSJgUyYXCb3JsKc4bt0M-6h0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.902|216.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.044|PitFo4gkiRJFRYqTyElpctm4StNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br50C80Cs20H414I250N146Pb25Sn75|Cs20Pb25Sn75C80N146H414I250Br50|Cs0.2FA0.66MA0.14Pb0.25Sn0.75Br0.5I2.5|1.280000136487861||||11.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|Pj41WPcBnw62BeV6M-YgNESSKhKM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14Pb0.25Sn0.75Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|233.1|0.81|18.42|['SLG', 'ITO', 'NiO-np', 'TPI-6MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'TPI-6MEO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|Pj8GHUJizd-BjD1XxgdPJeRHvEG8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'TPI-6MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|161.70000000000002|0.68|7.44|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|Pj8hdPVehKXezJ4BrcXcCChR8leq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|PjKMhHqZXWSpmxVUZqwLDccszY5s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|83.0|0.54|5.0|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|PjYPwOJKCp7znPAM4ULIaayt3sFL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-F', 'Al']|['PEDOT:PSS']|['PCBM-60', 'EFGnPs-F']|bulk|https://doi.org/10.1021/acs.nanolett.7b03225|PjitwSMU-iKPeHqZLCDlnKX3lBD6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-F', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|161.20000000000002|0.71|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1038/NPHOTON.2013.341|PjmmPY0TTtIfpPei2QLN9DZwkizY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|236.7|0.758|19.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|PjxmO9xoKUXzJvljyq-FMaB1s6pu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|218.0|0.774|17.49|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|PjyEMbBzponn6HHzyLxmWLioy88U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.8|0.76|16.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']|['JY6']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|Pk09D6_8MukhOdKqUQJ5lusvnHNF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb10|Cs3Pb10C7N14H35I30|Cs0.3FA0.7PbI3|1.5230001623992282|0.99|134.0|0.66|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5RA23359C|Pk0Wddod1d1t4_zApjBeW1aIouCU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.127|223.85|0.7070000000000001|17.82|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00042|Pk3Q4bmdOYF8q6YJwnQuvDf96JUg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|232.7|0.625|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.08.083|PkEbM7YuMQzJWe5e83V9lpAR5xvR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|209.0|0.69|10.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|PkHWMXP1Xd75mJVN5BY70b8rqO2y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.8540000000000001|159.4|0.631|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra13611k|PkIA2QM47136X3SNXeC31exf2Oqu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|0.955|206.0|0.67|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|PkNUv2EnXjx91HVt-zgfbbHcAwxJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|191.4|0.58|9.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07395b|PkOoOjOu37NOns9bAI-n6yFGK_QY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.9400002068644144|1.13|189.0|0.59|12.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|2D|https://doi.org/10.1038/s41467-019-08958-9|PkOxD5EuzozmhPkcpDg16E-QYMUY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|217.0|0.77|17.29|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00328|PkRbhc2pxWCs29LUC8K_Fz8-sUi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.02|217.4|0.6859999999999999|15.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|PkSt_BSLV6V1H9YB-y4uz3zlmR8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.986|204.0|0.753|15.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|PkXe3A8t0DyP7cIoLcaTvWe6zjSC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|74.0|0.64|4.02|['SLG', 'TiO2-mp', 'Ti:TiO2', 'ZrO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-mp', 'Ti:TiO2', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00760|PkYoxmCSKDVOLzD20rcq4iWNfWiq|a perovskite solar cell with the following device stack: ['SLG', 'TiO2-mp', 'Ti:TiO2', 'ZrO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|144.4|0.64|8.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.09.018|PklYg_VGREe5EHuO4J5ykoUWElQu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.91|150.0|||['Cu', 'CuI', 'Perovskite', 'ZnO-np', 'Ag-nw']|['CuI']|['ZnO-np']|bulk|https://doi.org/10.1039/c6cc07573h|PkskzVDzjrxLEvSR8GUFzH6EsPIG|a perovskite solar cell with the following device stack: ['Cu', 'CuI', 'Perovskite', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.6|11.1|['PEN', 'ITO', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|PkxsM3ZNSsAD856JszhAp2JAJOnI|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|202.9|0.6829999999999999|14.67|['SLG', 'FTO', 'TiO2-c', 'Ag@TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Ag@TiO2-nw']|bulk|https://doi.org/10.1039/c5ta10040b|Pl0EY-KS3bAZGSWmLo2b9-SMjUbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag@TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|208.1|0.8|15.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1007/s11426-016-0085-y|Pl3QJrEzcZbsM6WDVPmCt1ZtDOI-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CsISn|CsSnI|CsSnI|1.2700001354215498|1.0|188.8|0.823|15.55||['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1088/1361-6463/ac1e4c|Pl5NzhgB9pGEKhKAlwuvf0aklgnk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsSnI. -CsI3Sn|CsSnI3|CsSnI3||0.21|30.6|0.43|0.3|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|PlBpi0imeGnHQ4PD5WEhQCbakvFK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.11|213.0|0.731|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|PlDIfZHwzS5u1sCEQ77HNum6kjtr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|217.7|0.76|17.11|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|PlF7dNHh8GuofOQNaxipgBiiHjqV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||175.5|0.63|12.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b09572|PlFHvvmw5VP0SHoPEGqcMRz_nLHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.115|216.89|0.722|17.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|PlM78ULXaeHoUuhdZGYKQ3fObnXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.5400001642119578|1.045|237.0|0.77|19.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b01054|PlOkzwlinsTzzfsIzEyzfmBYJAS-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|136.3|0.622|7.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b02810|PlXNinGBNf-XxZfjE27lWXqGEXw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.69|50.1|0.496|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|PlYbEsVoTfGl0hwg9bOEmjgk5eV-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|233.9|0.6409999999999999|15.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c @ {101} facet']|bulk|https://doi.org/10.1021/acsami.6b14040|Plcbrxc0UqzTnurygaeOvjComOkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.831|203.0|0.732|12.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|PloC8NoGlQtVqYcIvkrDwKmzHh3N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.0|0.75|16.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsaem.8b00094|Pm-PzsG3KP6Waaqi4IJWtbSQ2GH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|146.7|0.731|10.9|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|PmAAM5eUC47U9urulimSWveJNsAc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.12|1.5|0.372|0.01|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|PmBlj4Fpct9xePGDXIhLEy76Uq4B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.04|221.1|0.755|16.5|['SLG', 'ITO', 'SnO2-nw; Zn2SnO4-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-nw; Zn2SnO4-np']|bulk|https://doi.org/10.1039/c6ta08565b|PmCc634EXihnDUdr1BqUO56nTZRQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-nw; Zn2SnO4-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.01|206.0|0.6759999999999999|14.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|PmD6gD67db3FqY19IC5QpR8BW7D7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|134.70000000000002|0.7120000000000001|10.16|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/solr.201900091|PmEs-7TiFtUzA01KJcupy9iUgcwA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|131.0|0.59|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']|['TPD', 'HAT-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|PmMCYJJGs_zRSMvYaEjei8fJ0RgG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|201.5|0.7|15.58|['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1002/aenm.201701144|PmOXJfm52WVnRVSfUoVkle3eMP1D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.0|0.563|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|PmO_ZdhACcco5VD-qRFb-vRmF_Rx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|152.5|0.51|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|PmU4etraoH42EPcfrV0DyVv40yER|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|119.0|0.517|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|Pm_yf_-JewuRqfVIfGFxaCmEs4s8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49||0.945|170.0|0.644|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201802899|PmecbCEyMSLZQcYxFjmFwwxrA1e-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|214.1|0.762|17.28|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/C6TA05095F|PmiDFNxs5d0PqYVoOXYakWqPhGyD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|203.28|0.466|8.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201900681|Pmo6RyJ1Cl3XO6uukCOcuwXEAkbF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|219.9|0.726|16.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'FAD', 'PCBM-70', 'AgAl']|['NiO-c']|['FDA', 'PCBM-70']|bulk|https://doi.org/10.1039/c7nr08750k|PmqZ-mLYNic0wjXtaMHP8hUzFoL0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'FAD', 'PCBM-70', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|178.2|0.69|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|Pn81THuy2G13n8RkQxsv-RXSum-e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|0.41|6.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01598|PnEy0tcDe-6H_PYZRQYhujL_pjO3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.3|0.61|10.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|PnHwTNjnBcbUl6635m7ou1x3stPK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902||0.745|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|PnMCenVHfs_lrIYxNZzZBawXsllw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|180.6|0.644|9.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|PnPO6Fpcsm7bEgKs3QoPeGwO-0b0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|155.2|0.68|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|PnPgTPh5fjL9oUkDIE3FHYoAynI9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0800002217927744|1.25|111.9|0.65|8.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b21331|PnSLP3fgYf_pXm5b8lxtgKo83rOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -C5H30I15N5Pb3Sn2|Pb3Sn2C5N5H30I15|MAPb0.6Sn0.4I3|1.3900001482172863|0.745|178.0|0.616|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201604744|PnSxJQhwsaBICQFtTGNNz745lTbn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|194.5|0.72|14.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|PnUDrWAF8f4kx2KMkyIuhhW4dfVX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.02|144.70000000000002|0.43|6.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|PnXiehQIyGnUSKml1ZPs_Xd8fKGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|221.1|0.76|16.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|PnudfX8C2iA0w3N7NnKrLL7WP4vr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.487|5.2|0.49|0.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21291j|PnvTwhqmiWL3dlkvamCPT4aSsubD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MASnBr3. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|1.05|199.2|0.7340000000000001|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902529|Po-iEG4gJUp4jDhBBUE3kdvZxuu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.78|150.0|0.691|8.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601055|Po55E7-SzTZrR7g4V2ltDCLI8sq4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|209.3|0.612|13.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.01.010|Po9GKj0brdcHYWGkhxq2QLyO8G0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.088|175.24|0.746|14.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad7de|PoKK8RQBvoR-5GGwyRZdMwVc10VE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.97|226.9|0.77|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|PoTZUeS3NCAv93m3TJiaedBCGd97|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|74.0|0.67|3.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|PoV2U5M2oSoAf7_QaLsD53YO2nLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.0|0.612|14.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc03259b|PoX2sj9ol1eoP9cR4c9-ohAFFs4V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH95I57N38Pb20|CsPb20C19N38H95I57Br3|Cs0.05FA0.95PbBr0.15I2.85|1.5500001652782691|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aau5701|PoaeJUQgqJILfxw5JP4iSDBD_jYu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|30.1|0.72|2.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501024|PoawcS5pVv6tKCEdA99Ly4lT8nVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.8|0.826|18.68|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08314f|PoeuilXWARq1sd1kJknBvvZg4E1Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['PEI', 'ICBA']|bulk|https://doi.org/10.1002/aenm.201700226|PomyG_9Yu0MAtWEqmZYr0GpYvBf7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.974|195.41|0.719|13.69|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||Poo7sZ7VsY7qom4pdznFgKf0RqIJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|154.2|0.488|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|Pows9zk_6fovdzU9KGl_7oS5DVHe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.1|0.78|19.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|Pp-urt_zVaf4Jz7abN-jEFJrQBCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|39.7|0.44|1.0|['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']|['CuO']|['PCBM-60']|bulk|https://doi.org/10.14456/jmmm.2018.13|Pp09_qgVtjwYYrWomSDzwgs3PFvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -AuBr3CH6N|AuCNH6Br3|MA2Au2Br6|1.380000147150975|0.33|0.52|0.41|0.0069999999999999|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.0c00345|Pp66K4s4C_wXHzEHd84gfXEto4aS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MA2Au2Br6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.3|0.5920000000000001|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|PpE3qW6NjTCHYlvb2cdnrARRlOaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||18.3|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|PpHF1mnb380t05gj6rmetpDVRVRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|PpKkOomIxuXonVoYtbWqMSx_hHL-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||89.5|0.63|5.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|PpYflc4e6bhPHRRf6nwFsvhoiAGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.693|227.0|0.31|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|PpZw2ROTGA5VLkCSKds5QoUl9xOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|172.0|0.43|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|PplBSKoF_oX7wOAkP9uhWGjtgCak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|220.4|0.708|15.48|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|Ppx0QjDnQV67UHrW19iG7PhIJM4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|234.0|0.412|8.02|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|Pq2HZAR_E0e_1ecczp9GTKmnT7CF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466|0.98|215.7|0.75|15.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b02126|Pq4Zhin0mRkv6w-YK5ZP9KohZgXs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|229.4|0.58|13.12|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|Pq8E9sRQ2D_1zffKUG4wzNvCvQwi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|217.8|0.75|18.01|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|PqAb5VhF118HTbL4LicQc6uueBb3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.11|211.4|0.7340000000000001|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00243f|PqDOUXK7yShym2iTeajjJhDxnGr9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.9|0.731|17.0|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|PqM0tDNuEFTYT_axGOujaJ56fH5u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3400001428857296|0.77|259.3|0.74|14.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEIA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201807024|PqOfOYPJ6c1DJzMJLMcatZiXKsbU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.01|168.0|0.78|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|PqQX6Pe1QFJWFal3Tja6y4KlVg7m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|125.0|0.62|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02868|PqSteGtN1YGd_CYdqyZHUkBP2xZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.972|235.3|0.7909999999999999|18.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-2', 'Au']|['dly-2']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc08985f|PqYxy3THPn0Gq8sWJuWBrI_Xv5B0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-2', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.17|196.0|0.66|16.44|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c5ee02608c|PqfxOmzhX_9z0aXpZeTzSpzkkRYE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|181.1|0.731|12.3|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|Pqg7raISmK7UeprdiIqEi2gqHUF6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C217Cs30H822I260N97Pb80|Cs30Pb80C217N97H822I260|BA2Cs1.5MA2.85Pb4I13|1.6300001738087604|||||['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|PqkwTrZU0WJ2kK0A9K6SbwCG2jyh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs1.5MA2.85Pb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.98|193.1|0.62|11.7|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|Pqq80UuqZClQTecF5aHAN--ahUd9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|230.0|0.7509999999999999|18.68|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OBuTAD', 'Au']|['Spiro-OBuTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|PqqXrYAlkjwYvq6aN1Q1H3UKv021|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OBuTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.5|0.616|14.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu12Sb4S13', 'Au']|['Cu12Sb4S13']|['TiO2-c']|bulk|https://doi.org/10.1039/c9se00003h|Pqt8wvM8CzM5YumZ__Tw5MwZpqmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu12Sb4S13', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|195.0|0.68|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ta06458a|Pqz6j2WOPZeJpY4MY_zd3-gKTHYq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.043|148.0|0.75|11.6|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|PqzKdn1BK_2skIPvmrzmPSLdRvX7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.503|178.0|0.39|3.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|Pr1vlaVCgWeKjrA4lpKb2ezWmI6V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|41.0|0.65|3.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00889|PrEvB0185llPeXtfaKB7a6qfCvWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|180.0|0.77|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201801667|PrHiHeuC9BxJafX9TcvQwJopL3rZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|125.6|0.58|6.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01526j|PrQfESpwRszAQfZ06MkDfGaiqdi4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H519I233N181Pb57|Pb57C100N181H519I233|FA0.81MA0.19Pb0.57I2.33||1.05|207.4|0.63|13.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02717|PrfCekySBPTcQT5FxQgkYdXFJnCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19Pb0.57I2.33. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.520000162079335|0.94|192.6|0.7|12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|Prn4C1W8gyi0AEvADuwVgVvcvrwJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|200.0|0.478|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|PrnZ1VqjNMx-B-QLonMV9fiUdYvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|210.0|0.75|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b14073|PruBYKfUFncTEHkDJ3GbrAdvxPg3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49|1.6300001738087604|1.0590000000000002|205.0|0.71|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|PrxLPaopj5qPliAe4gWsONt6KTwS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.03|225.0||17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201606831|PsAKY_phxJpfJFHzz-ADqVobnt2m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|223.0|0.76|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|PsGMz4ih8Qtge7bEj9s6PlAz9QVk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|216.5|0.513|10.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.2716|PsWDgoGQ3ZqRfSbs_ZgZ2SS2qweN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.13|156.2|0.732|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-020-2675-2|PsZu8mJGGJ21XbhRhXpt4uzI5NsD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.0|0.634|14.24|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.088|Psg_-ALLczzYP2NTUMC0GOknzVxq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.5|0.6509999999999999|12.88|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.06.011|Psquaqi25ckcyAnxsUQpsAh3ksv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|189.0|0.706|12.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|PsxhgOyBdZIks5Lv1UMKy_GK-_RD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|223.0|0.821|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|PsyHZphViOebq8zV4xoSivzNufnJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|191.1|0.61|9.9|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|Pt1eoYRD7lDKzgqEpcEfiQ9y564I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|209.8|0.7290000000000001|15.78|['SLG', 'ITO', 'YC-1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['YC-1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pip.3205|Pt2Eu9Q7POq9Km3FW5rI-RKrqHc3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'YC-1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|143.0|0.67|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2015.11.058|PtHco2UYIjH6STHRdqycf0IpXWf7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I12N5Pb4|Pb4C11N5H42I12|BA2MA3Pb4I12||0.81|35.6|0.42|1.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|PtLW-X7VVC5q8zAJVH-0UqYozxwW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I12. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|PtZi02-Qe2uANHHMOVXWSHhGg4Qu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||0.938|172.5|0.588|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaf8060|PtdDcFHlMtKvvhATkn3_lJgz2cyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|226.0|0.64|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee03224a|PtldKMNP5Pevji5vWncr7wAQwgoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|18.0|0.51|0.7|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|Pu4S4pmFIKH3xHyuh4SXxFWkeAHx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C16Cs9H24I31N2Pb10|Cs9Pb10C16N2H24I31|(PEA)2Cs9Pb10I31||1.031|178.1|0.657|12.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|2D|https://doi.org/10.1002/aenm.201902529|PuAclh4LKM11i7CLp2gJOBdMxzLw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is (PEA)2Cs9Pb10I31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|142.0|0.55|5.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl5006838|PuIdAt9KdlowfEnu9LYeLUbjVVVU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50Cs50F11I89Pb50|Cs50Pb50I89Br50F11|CsPbBrF0.22I1.78|1.850000197267612|0.97|146.5|0.6509999999999999|9.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|PuXFJfrSTMeMSQnkMw1W6bJlWTEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrF0.22I1.78. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201702934|PuaQOzqnDppx8sA6odV-kyi9MhXj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|102.4|0.68|5.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201803801|PukuibOhbXNmnb5aHbn9OubIzeDV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.83|107.6|0.32|2.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|PuuA9F3mAgnvEcM0UJPDn0yeCn94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|196.3|0.58|9.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE01|PuydctWozhWUTpMW9BSlpDQBcC5J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.9|0.5|10.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600848|PvDXzSnLb4Au7BEODzJU51FCybaK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.245|127.26|0.629||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||PvHFju8IerYLu4E6oAF4AC2EZFNP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br3CH6NSn|SnCNH6Br3|MASnBr3|2.150000229256954|0.88|82.6|0.59|4.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2014.82|PvfiYH1N0TWG4kaL8LqXZyWs6I-6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|168.0|0.5379999999999999|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|Pvxn6tXdurF1Du1GYH9QqHKawocN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|220.5|0.8|17.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|Pvxy5BetCKGuWo5QfdsCkjSlQP3F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Sn3|Sn3C5N8H27I15|FA0.6MA0.4Sn0.6I3|1.2500001332889268|0.86|279.20000000000005|0.7509999999999999|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'PBDB‐T; ITIC', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS', 'PBDB-T:ITIC']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201804427|Pvzqd3YkKq4iQyN5YmY3G5p-0FCp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PBDB‐T; ITIC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|191.6|0.6609999999999999|12.1|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|Pw2IgcI2cqsBFah99age-AVMYbh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C93Cs7H468I276N183Pb100|Cs7Pb100C93N183H468I276Br24|Cs0.07FA0.9MA0.03PbBr0.24I2.76||1.123|243.6|0.804|21.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-10985-5|Pw9XogKOFOtqYzMJLzPgFIK50dfo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.9MA0.03PbBr0.24I2.76. -Br151C100H505I285N195Pb100|Pb100C100N195H505I285Br151|FA0.95MA0.05PbBr01.51I2.85||1.05|232.0|0.777|18.9|['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.018|PwIj06mR0T3YcY2d7KngB5REGx6_|a perovskite solar cell with the following device stack: ['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr01.51I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|186.0|0.77|14.91|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2017.08.007|PwJ-lGMIP6NhGb4xv1GYeHHNzobe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|224.5|0.73|19.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|PwO7He7qyis2imEtazzBxWSI0gCh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|156.0|0.6629999999999999|10.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|PweYQp4vYxqfjAh6ntLQjQghRFFy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|PwoQDKlBgAh3t7JvP7RLzshDqCZY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.1|215.0|0.74|17.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c06315|Pwr00FmYLLntYA1NhPpJDElf8RkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|208.7|0.76|14.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|Pwr3N7j_p0J4Bh4fviq0NzGcuEMA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.933|176.0|0.73|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc04830g|Px84gbW0oK9fvxZ77JXjNY7laCfI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|207.9|0.746|16.73|['SLG', 'ITO', 'NiO-c', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|Px8RVqMlztfGGP5R6BuQcpFo8L0x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.65|157.79999999999998|0.5|5.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|PxCMJkL5oYHe1-Q1S6kDaMavy_bm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|PxIUxS6y9yXrkU91n-S6oabXYJaT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|158.0|0.7440000000000001|12.27|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|PxUwVJikdKCWB3_7hGC5j3Jgh_vJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.03|230.2|0.79|18.73|['SLG', 'ITO', 'NiO-np', 'ME3', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'ME3']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|PxXIOk58hhKzLOsbexR35CWfGAzm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'ME3', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.2|0.705|13.27|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|Pxedb7WMYOe7T9DFd5ql0N08UEWi|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|208.8|0.81|18.43|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|PxfeuCPXS6N2jQFi6phzhqF2RYLN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.89|185.0|0.54|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']|['PEDOT:PSS']|['pBTT']|bulk|https://doi.org/10.1002/smll.201803339|PxpRaf0WxxcK8DcGIjMf7C23a0u7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.77|171.8|0.56|7.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9TA08177A|Pxu8mhi231UrE2_RMpVU9K_KQy_m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|192.1|0.61|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|PxuWCFXLYhPO9fi2mIe3WLvjse6t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.03|245.9|0.7140000000000001|19.0|['SLG', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800399|PxxbodntvJbJU7-_69PMQXm7lcdl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.65|145.0|0.42|3.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.08.022|Py29LbSXeXyacZ3s8KbaR-UxijkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|222.0|0.7709999999999999|19.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.38|Py65rfyZP-gDLmhr8jE2pM7pwtSx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.971|178.0|0.742|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ2', 'Ag']|['POZ2']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00001|Py6tbiC_Zh3bn9KyulVMnJTvoLib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|206.0|0.733|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08701|Py7zvxdxksqlcnUWBmPSz3B2dZSa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.4800001578140891|1.06|240.7|0.741|18.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900265|PyNuQQsYc98KoZIrd7Q2e8sb_13O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.04|207.3|0.794|17.12|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|PyOZ-z3JsvRBrP-Cq3JSPu8ChbSY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.109|184.0|0.716|14.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|PyQVyY5IOR2PiKjo4F8PgPREYieN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|204.0|0.61|11.89|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'SAF‐OMe', 'Ag']|['SAF‐OMe']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201504245|PyUwP2tp4Hxc--BmC2wNNRlarz1k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'SAF‐OMe', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.087|118.8|0.7240000000000001|9.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02277|PycyFbiBii-reph8-vGVA1DeV7T_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C4H24I6N4Pb|PbC4N4H24I6|MA4PbI6||0.91|28.8|0.46|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b01426|PydKTKZcMJVjDsuI-1mffC-2MaQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA4PbI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|224.6|0.742|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700749|PyiCTcyzG9ACh9SZlomqangYKKVF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.721|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|PykDfzqTZ8k6zj7wb4-eA5QqJiOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|239.0|0.606|14.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'TTB-TTQ', 'Au']|['TTB-TTQ']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201500471|Pynsc5GFl8j-Ahc9tGiw6_rlgLMT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'TTB-TTQ', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7190000000000001|57.5|0.525|2.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941221|PytRGEnL24DvwXCU3uuMQr_kqry9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55|1.6800001791403176|0.934|197.2|0.455|8.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.03.236|PyxqwetVYnnoDplae8lYNMzGB8Jg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.135|205.0|0.76|17.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|PyzXeoFho8kUFQ2qDyr0v01mmMVd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.92|94.5|0.422|3.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5127275|Pz4Qu7blIQ_IOyVa-Ivg3GxKqak4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|162.0|0.66|10.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|Pz5rJB5FKgAWHt32UB6kW5WNwjSX|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.992|180.0|0.66|11.8|['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['KY7F22-np']|bulk|https://doi.org/10.1021/acsaem.8b00518|PzJYkOFORUeLEeRLywjLyb_zgDp7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|246.0|0.53|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.11.119|PzML5LGFDblXK4f65jba97eSatof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.6|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|PzOTQbqGYz__sLc4VVUhHEQVbxwn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.5300001631456466|1.09|239.0|0.6970000000000001|15.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|PzPHUMi-3aZAT6eoYhnJSGLqMZ6-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.3|0.74|16.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|PzUp-jpiARh0VLfE7VuOUUG9ytyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.0|0.73|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|PzXEojJrb8xwqoBlJhQctlFKHkDL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br600CsPb199|CsPb199Br600|Cs0.005Pb0.995Br3|2.290000244185314|1.443|61.0|0.7929999999999999|6.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|Pzi5MbMgzGfF37PzQCsYTaMlkikZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.005Pb0.995Br3. -C50EuH300I150N50Pb49|EuPb49C50N50H300I150|MAEu0.02Pb0.98I3||1.02|209.0|0.731|15.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|PzxKj7Ys0KL2u-nj_GrC_boamF-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAEu0.02Pb0.98I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.056|164.5|0.71|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b09160|Q-4D_H-VnRsj2e-196k21zoiVty_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.93|140.0|0.59|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|Q-aSQAVuQ7iuZqPhLRLyoekuWqHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.16|217.0|0.72|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201600767|Q-bS-kNM9vsm4BdBJpX5guu_r70C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|227.0|0.57|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT-2,5-TPA', 'Au']|['TT-2,5-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201701790|Q-n0kvHI8mGAFs5H3TvKW5Ee0Rvz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT-2,5-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|205.0|0.66|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|Q-y2DiHiNWOgSWf37os07IRvBHSp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|44.0|0.5920000000000001|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|Q-yoxWuAca8xhxDR0Cdpxku1oBk4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.1|0.7020000000000001|11.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07079|Q0-ag_79EJFOlQgLeAuR0B7N9Umf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.319|183.6|0.519|3.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|Q0C-J7jnAwFIH_K--HEht-lu8Mgs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br51C100H513I249N187Pb100|Pb100C100N187H513I249Br51|FA0.87MA0.13PbBr0.51I2.49||1.14|227.0|0.69|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X19', 'Au']|['X19']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900196|Q0FICsJ49DWXmBqoeObfgoQB2BR2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X19', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|124.0|0.45|3.54|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2014.12.015|Q0FpoW6WM1FhI2BYQy27ilruRfB2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.5|0.774|19.88|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|Q0ImQfCQohadCpUDXup2gerOReZH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.5|0.72|18.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-tBuBED', 'MoO3', 'Ag']|['Spiro-tBuBED']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12274a|Q0R_pvC4-cbypEjEDtoXp8Kuswg_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-tBuBED', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.8000001919360546|0.68|22.0|0.44|0.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|Q0ZNFzCNvSCdhkqaiN5e1XeHYLKX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.02|162.39999999999998|0.556|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|Q0_QX65p3-Qdr7oXs--CJPdeNSK3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.1|212.0|0.71|14.4|['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|Q0hSZdklsiXi4cCsz6RJQ0lBoujO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br3CsPb|CsPbBr3|CsPbBr3||1.43|73.2|0.78|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|Q0k5y6hbeBWzwRVY5LYMD-LlAhT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.079|222.25|0.773|18.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|Q0lfbUg6NaniktTjD0toHIPfewpZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.4|0.649|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/4935265|Q0pn2M4oRlhzVjr9zHed0Y4320tj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25||1.14|194.0|0.7|15.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO2', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.043|Q0wdNwpmjNnw0juw8V1eRQa60VO_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO2', 'ITO']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.114|218.4|0.736|17.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|Q1-xHLC-MLsm0yeQoYPfGRh-4tyD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|Q1CIQvJQeTV7hBfFe2hcSbpenWy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.9|0.69|12.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|Q1G-RXS1um3mRHlhYv1EIZOnLDsJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|204.31|0.823|18.23|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|Q1GXNMk_yQOh9uX7itmurWC6tvyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|175.0|0.6759999999999999|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/cm5037919|Q1HW86Dii81ipkQZIbCmuqN_uWKQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.3300001418194185|0.74|265.5|0.77|15.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|Q1Hvo4MbUqwCQMIfMCtPS_ux-9rR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.541|198.9|0.68|7.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|Q1I5B8maI9inI32eqBDmUxnc00kD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.737|117.75|0.67|5.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|Q1JS_KBpdPCKEtaSlo8c8XYYC7d2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6300001738087604|1.1|217.0|0.77|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|Q1KLv-uiISVL2aiEBg6DtNrPJ5ds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.043|208.0|0.68|14.23|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|Q1L_UOH6qlAc5BFbLb3FaYtWaRi5|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.933|218.7|0.6|12.3|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|Q1NsrU_T103myHZ24XfacT4wEul1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|200.5|0.62|11.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|Q1Pi5agbA4wXT-IJx8y5ozuBAfq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|217.0|0.73|14.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|Q1W9rO882BORXfS8BsrN3S1GFWKW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2600001343552385|0.217|151.0|0.348|1.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b00118|Q1X9eotWp8Wkr4z9_m2JgR11h4Tb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.122|228.1|0.7240000000000001|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00055|Q1awHM7sZYlfIQ0niVyjPjumsSCq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|204.0|0.736|15.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/NENERGY.2015.16|Q1g15vX0lHpUTsfG9ceosQ5XTtbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|53.1|0.655|3.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|Q1jU_mRP_BhUn3mE6UnZr_4blT4P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.96|198.7|0.55|10.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H66', 'Au']|['H66']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.019|Q1yv7Fj0rv_YWJgasnSDbz1bcXqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H66', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.159|225.0|0.74|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|Q21O6pHvVyx5Qw7NSI8GoJYjID0j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.24|89.2|0.65|7.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|Q23kgs9rgY9BgaQ2wwo7lB5rldFQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.04|219.0|0.79|18.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01099|Q28fV0xN9S_XLPSwG5-z17AxWzLD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00080d|Q2FW6ra2uPVAqKHAaOiIpAAg-vT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|232.8|0.7240000000000001|15.45|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HAB1', 'Au']|['HAB1']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.orglett.9b00988|Q2HvrJU0RGFTld0xiMB8-fHXkQk5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HAB1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|225.0|0.75|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|Q2g3AUmHGvR5WjKSnOehRDcYcHa3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|234.9|0.72|18.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr07377a|Q2ggDNd_7av4HtnEvI3aDbiVrW-n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.987|177.17|0.522|9.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|Q2hawCbu4sUXXnTQPeH2vz0MYtPi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.0|0.765|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06718b|Q2iDh-Io7xz1TsuSKXaltev3Lhnt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.164|243.0|0.773|21.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ADAHI', 'Au']|['ADAHI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8EE02404A|Q2rTnyxWZzbhB1cjXuABpaV81tkj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ADAHI', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5600001663445808|1.05|240.0|0.7440000000000001|18.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227484|Q2vkYuMqYEH9UzrTnsxnmKU7ugOv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.027|212.6|0.7040000000000001|15.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']|['PEDOT:PSS']|['PTTI-1']|bulk|https://doi.org/10.1021/acsaem.9b00857|Q3-ZXXZbZQVChUqsafWlQfOb4B1R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br17C100Cs5H517I83N183Pb100Rb5|Cs5Rb5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17Rb0.05PbBr0.17I0.83|1.6300001738087604|1.18|225.6|0.818|21.76||['NiO']|['BCP', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.202200431|Q36KNRzS1o7D6W9DedfVTiSDgd6s|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.83MA0.17Rb0.05PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.1|0.75|16.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|Q36ZybGRn_dAfPT2wDYm_ziLcJRf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.05|238.0|0.73|17.9|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|Q3Fevtt6IcFnG76HKDQIqzHr2WAy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['Carbon-nt-fiber', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; SWCNTs', 'Ag-nw', 'PMMA']|['P3HT; SWCNTs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201501333|Q3SQXc4b8QdTDl1A-kVYaZC0HoH3|a perovskite solar cell with the following device stack: ['Carbon-nt-fiber', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; SWCNTs', 'Ag-nw', 'PMMA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|199.0|0.609|11.9|['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|Q3T3yWlhSb8yy4sJr20OcTG0Hlja|a perovskite solar cell with the following device stack: ['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|211.2|0.78|14.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|Q3UoUWSFkdNx-d-U1eM7yt3ecTbe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C40H109I19N32Pb9S20Sn11|Pb9Sn11C40N32H109S20I19|FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05|1.2400001322226155|0.54|114.0|0.386|2.4||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.1c03213|Q3W-QhCh-SG-hZWO9IY7K-9ylZNI|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|240.0|0.706|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|Q3ahYt_JWGjBhRH-XvsSejLwcC7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|83.0|0.45|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00121|Q3gnfI5hv6nV0WC4HSSxOqgGBLuc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|214.7|0.67|13.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|Q3hoKEIuGF4IaAg0O4ZGfzTtOuWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|152.20000000000002|0.5|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|Q3ik8xp0T4ZdFjdFv4s7f07kHSUs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.87|11.2|0.6|0.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|Q3r_zr7ntQXHqkX2vI0_yQ6URhZ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|116.6|0.7390000000000001|6.72|['NOA88', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00796|Q3rw5AoJjiCQfPbsr8shRbTkmPrG|a perovskite solar cell with the following device stack: ['NOA88', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.2|0.59|12.21|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|Q3x8pQKjnZuGL2_7czOrEGbJlQyE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.40|1.500000159946712|1.15|213.4|0.723|17.5|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'ZSO-np', 'Ag']|['NiO']|['PCBM-60', 'ZSO-np']|bulk|https://doi.org/10.1039/c6ta05745d|Q4-nTDsChy6u5E2i_E8xzK6x-2x6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'ZSO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|228.2|0.59|11.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dib.2016.02.021|Q41VznMCs1aki0-rkZ3ptGJ4jz4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|178.4|0.68|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.12.010|Q42n0wHJ3DAYQa7mS4iqwQDrwxYI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|Q4E7XuU8mV2g0girCRVxSmCoyUAq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|241.9|0.6809999999999999|17.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c @ {001} facet']|bulk|https://doi.org/10.1021/acsami.6b14040|Q4co8-OkT1DbjakO58izAz6q7v_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|212.0|0.76|15.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|Q4dsQ6cos8Z3QjsNInTszRii4eCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|161.25|0.613|10.46|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|Q4eMnOXKFe0BYghbEgwK1iruuVLy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||1.0|237.0|0.66|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|2D|https://doi.org/10.1021/acsaem.8b01964|Q4fr-z_-VT6kLtdwb1kqBZxzu6ll|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|142.3|0.721|9.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|Q4k4tMTaP6hIAkCoeFlabdI78gsT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.5|0.65|11.9|['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|Q4uOJXa7-IOiFZRoqgAK25VRBmbU|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|206.6|0.705|14.53|['PET', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1021/acsnano.5b07043|Q4vkqaqWmhzp8b9i8zajX6-HlCtP|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|76.0|0.31|2.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|Q4wGek0RjAQOVmh1TAZ3XIyqvflo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|183.76|0.3279999999999999|4.68|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|Q51K6vrx-p9Tdsk6Ypwqg54Yzcfa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|173.0|0.72|14.1|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aelm.201600470|Q56SS2W3yAzTd8ABSHtjCs6hm58W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|199.0|0.626|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.17162|Q580__A4vRxHGZMwBMpORyBiDKlk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.086|238.3|0.762|19.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b04930|Q5DSqnOmSoB-geL8NDafuqXARQKI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.0|0.69|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.027|Q5HDUBslc4HL40jJ_igiWBdOy3-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.0|0.667|15.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12254g|Q5NLMvdZOf5RISRfzWxp7sv5V5oP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.051|185.2|0.743|14.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|Q5Vyw7T4m0L0yGUqRRyM1Cp5t59v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.9|0.745|15.3|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201702248|Q5gr4DHxUOIzdVIuSygbn9Bx0g_n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|94.0|0.57|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|Q5lsevJK3bO1uPbRBHXjyySniy6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0759999999999998|212.4|0.617|14.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|Q61T3fXpQThJJ_rWje5DtNi5hUPZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|206.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|Q62nR4SFrMlqmNK2h7kP57ts75hm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.3|0.6759999999999999|13.24|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|Q6BJW3QfMitORjcBq149PWDsqOb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|181.6|0.68|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00660|Q6F1hqnFM66eUDkjjStb-qMChNEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C49CsH294I147N49Pb50|CsPb50C49N49H294I147Br3|Cs0.02MA0.98PbBr0.06I2.94|1.6000001706098266|1.13|228.1|0.79|20.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.070|Q6MGAqGmX4OcHG7ZrOIhMRLfHzsB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02MA0.98PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|225.0|0.8029999999999999|18.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|Q6Pm0KTXaCkAj1DyVvGW3zbrHGFZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|213.1|0.73|15.57|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|Q6T_oRfqdomvV_W6LnPmNk9ASpTW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.13|174.5|0.653|12.96|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|Q6VC8TxL6j-y6rofnWJuspJCjQAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.727|115.84|0.273|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|Q6alDrvSSrNrW91YFo4H7RzSLisS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||0.98|200.0|0.67|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|Q6dZPbTrgrJ4ClHS-F1fT3d6H8H5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|169.1|0.45|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|Q6ia_4IDdJGn7V2yecr0ABWyNmBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.5|0.735|16.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|Q6nrN1c6hRCHvPM5z7AN8MWDzg_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|232.4|0.653|16.84|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|Q6tf5tkhYPEHI6DVrFyofee4poK5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|198.7|0.79|14.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1007/s12274-017-1894-7|Q6uDHR3owQ8IYybFnAJkdbeeEa5r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.084|219.2|0.805|19.12|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-V', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|Q6uwIMZFkKYHKe42KSezAg2yUPr9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|126.1|0.28|3.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|Q77jso9xzLHW6poUhbPEkn3xwkkO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.9|0.708|14.86|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|Q7MVKEoyL1PyQ9KsdOjIqxXaB73p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|139.3|0.74|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02277|Q7Wm0LnmMxyjoXivIyIAR_YhQsGx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|203.2|0.72|15.78|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014001|Q7Y3f4LxC1544hPpNXDW_2yQuIeG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|177.5|0.61|11.26|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|Q7lRiV72KIwkWawYOCesQVPH6U5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|192.0|0.74|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02808k|Q7mLDWEL0PnyiKFnyVg7ZXgUuCAA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.81|225.5|0.527|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|Q7sjrg_r7hgR6_ytWQ2jgcIyIVi4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.71|153.0|0.515|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|Q7zYIlquC0bJdXnOEDlV8tySEqgE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|130.2|0.574|6.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s11664-018-6614-x|Q83_5j-NpjDXsV2ofmTXjDn0xJy3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.0|0.72|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01532e|Q83nCQOoLzkHJO_bBhNTU9T1Q6lZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.0|0.53|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|Q85jjRYqb48Tym0z7C6NTUOUBoG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8170000000000001|108.0|0.51|4.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|Q8EO8paeJd8Fik807i4c34nEJAoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.7900001908697432|1.161|164.8|0.686|13.15||['PFN-Br', 'PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/d1ee02650j|Q8_22zDLSJmgUBFYtGoFsgdVbfxg|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.06|140.5|0.6|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Q8h_cTfgk3kDRssWzzu7nGGou-C0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5|1.900000202599169|1.1|61.5|0.57|3.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01246|Q9FGVnVGGazUM4p0VyKTm5Ty-4Ma|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.7|0.474|9.5|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|Q9GpLf_mHRQxVl_O2pMRacGgaaZc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|209.5|0.58|10.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'CdS']|bulk|https://doi.org/10.1002/admi.201801976|Q9W3-9vrhZ4t_Oas_h4CXuTnzzqP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.1|222.0|0.7709999999999999|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ee02242a|Q9gGg8R_YI2OBoxY99src8z-Tnh6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.852|171.6|0.4629999999999999|6.76|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|Q9ha6ZbtDgRO0Iv-1sKuZH2lCJaE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|146.9|0.61|7.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cp05006a|Q9peblCJpxudwYG5J5vyOo9wgh6_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|189.0|0.69|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Diazo-OMeTPA', 'Au']|['Diazo-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|Q9poZ4VrHeT9cNusJuviS4UOqKf6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Diazo-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.095|240.3|0.748|19.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|Q9rayI97x6xtQ6d_iiw7fDUaxJ1M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.2|83.6|0.302|0.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|QA9hz5QkZrnLGemc5fLqwEeYMd70|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.877|201.0|0.6|10.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07153-2|QAJadNsNq-aPqoB70sKSipKALdAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.7|0.675|14.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b10332|QAR05-apLcacur4fUinAACNr05Gs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.8|0.5589999999999999|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|QAX0VSzvfrlK2CoIr92r7SVMZdOZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.0|0.66|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|QA_b3uFdZ4fI9ZUaDtqz-e_vGm6T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.68|47.2|0.61|1.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|QAnZaJd1up4g5DDVdy3WSTiOjMdz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|186.9|0.56|7.91|['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdS']|bulk|https://doi.org/10.1117/1.JPE.8.045501|QAudSXPNR-geYcouHxM7D2e9Hvzr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|163.0|0.4|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra14321c|QAyrLw_cB3Yrj1eW8r4QprUco4Bc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|121.4|0.624|5.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|QB7Vfc8Dqrpys4AbIt5TaGStV1Br|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|148.0|0.68|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|QBBW23ULjJ0PWycFCDWDJDQ6l0rW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br8C17Cs3H87I52N32Pb20|Cs3Pb20C17N32H87I52Br8|Cs0.15FA0.75MA0.1PbBr0.4I2.6||1.11|208.0|0.6890000000000001|15.94|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|QBCWC0zhq_zWAAep6UyzjOpAxwL9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|163.0|0.54|9.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|QBDxN_U_EY54c1VdNHtXerlsEZlG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.9|0.7879999999999999|19.35|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']|['PCDTBT1']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201801985|QBHRo3YFv4fFOgFdhsx6durm_66O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|231.1|0.746|19.05|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|QBcn2YQpEwZQHr2O-SMp-a8tLyn4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|209.9|0.7140000000000001|16.65|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|QBj-nrJBDWJGKoWqOMQlmXSvQ5d8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.984|36.1|0.599|2.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|QBlzRoiAE30qivD1x5Arkgi0r_is|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.0|0.647|13.5|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b00900|QBqPvsBt1uZf1sIblpS6K5b95xzD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.1|232.4|0.75|19.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-F', 'Au']|['Spiro-MeOTAD-F']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|QByyti-tfEXhwENFq-rqAadt_Ip6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-F', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.0490000000000002|214.0|0.75|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|QCIB6AOy3uX-j1AieIw5FzGDqA6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.0|0.7659999999999999|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14423|QCIt5whQtDeFLiuNw6oj2rCzawpt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|151.0|0.64|7.6|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1088/1755-1315/108/5/052005|QCL_Oituc9rc7OpfGkTSII0QrW6w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.6|0.71|14.17|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|QCVho9CtW7uEsRJVXbAluYUJqBO0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|139.8|0.58|6.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|QCYiheL4kH0V1EC2k06m9TNUDV5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.49|9.5|['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|QC_FJ3_XeDZuWnJAjIx82sspRhVG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|204.5|0.544|9.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|QCcrLuOfRSgyeTsVRlsVWhK0mWC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25||1.1|179.0|0.67|13.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b08075|QCfoHIVdFhwi3bwlmaPgTjUeQYQ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -Br40C95Cs5H489I260N176Pb100|Cs5Pb100C95N176H489I260Br40|Cs0.05FA0.81MA0.14PbBr0.4I2.6|1.6100001716761378|1.083|224.7|0.792|19.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800275|QCftJ2GgYE7OmGEdpfJKYtTZmxsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.0|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-EH', 'Au']|['Azu-EH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|QClI-7ZB_ufz0kDHGJKjmXDjOdpr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-EH', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.113|182.0|0.735|14.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|QClQDVS9p7JO4jFtsj9hCTNZZFl1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|227.2|0.731|19.26|['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NiCl2']|bulk|https://doi.org/10.1021/acsaem.9b01009|QCpE9umO0xPezHG-kDZ32xqInWK5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8Pb1.0I3||1.11|205.3|0.76|17.27|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']|['NiO']|['PCBM-60', 'PN6']|bulk|https://doi.org/10.1039/c7tc00882a|QCtGsnynYMP5xJH4L7pKdbU9FknG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|187.6|0.76|14.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|QDbVmZgGWu-GDLfwWox5jzQbY-3n|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.4|0.74|15.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b15513|QDjBnb6NAsmgx9ayINlj2ndCtdtN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.58|200.0|0.72|8.35|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|QDplzAUi4aY3TyF2cnQIOHBUgftk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.078|219.5|0.8|18.49|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-T', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|QE3adpXSIXjHCrOnYZbZMOHZ8wyH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.11|118.9|0.75|9.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502458|QE6o5YzYDyPSvrSE2L9zI7AR1j8d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.3|0.65|15.0|['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/admi.201600122|QEAbVNvrvZ_i9CQpnvcl5SjE7Z2E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|187.9|0.688|12.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2015.05.027|QEHsJKIjElsgHQPUDkDmpzHlZgC4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.94|51.5|0.6579999999999999|3.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201404427|QEJHrVPjdjeYbk65dKqwFvp9WpzL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.5500001652782691|0.99|233.5|0.75|17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b01501|QEK-mcQ8nCRZDfJRJ_Nz-cATiXiz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.1|227.9|0.755|18.67|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|QEe2a_6pLJyzq_xv4WxwJv5D6-9J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.0|0.754|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F4-TCNQ', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00577b|QEkwiSbfxTw80PcJmkbMUJV3n_Qz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F4-TCNQ', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|201.0|0.675|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00116|QEo28fyrhIAU3xkq5ipnzHnNYSG-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.78|59.5|0.415|2.94|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|QEtAyjXDv8NarHAQKqBbO_P_XkUr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.1|241.6|0.8|21.25|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|QF0TaxadB6P9oSZ1AnSM1pQijRyp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.570000167410892|1.169|228.0|0.7709999999999999|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|QF1WRIQr-J4SceAeqpQuppMrWeGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||0.99|115.0|0.705|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02594|QF2cscoGnn7gpuWTqBwlGs6-pWNi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.03|193.7|0.67|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|QF368_3G-Iq6nB-v2kWL9a7tdI4R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|156.0|0.677|10.3|['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01118|QF45TnY91kodlR3lpbtLdq1ELSC4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.0|0.79|19.39|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900468|QFA_IwCS0JAIYv8ETZ7bN8ZPi8Q5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.82|217.5|0.78|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra15210d|QFR7b1KoBxURoYoZNngbSwMhdygY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.2|0.816|18.4|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|QFXwnv58MJ7thQrShIHVTPLkzM8o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.95|184.0|0.62|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|QFaD-GsEL6Qcx3r_ei94Eud5srG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.33|55.5|0.8|5.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; ONC2']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09353a|QFaIs4-MKiWWqpewUGia9qJ6vgLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; ONC2']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|212.0|0.63|12.4|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs']|['none']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|QFaSUhk8VoDZb6jF6F0JIr-JACgI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|195.4|0.66|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|QFgP9Yg1ln2nv7ngTxfWPbC1ZY47|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|234.2|0.75|19.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|QFvA5aiXnKA2A-8PPtmH9iRquVBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|143.0|0.52|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00200a|QG-Yrvj3PsKGxu6WpWqXk05K6Itc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.62|19.3|0.61|0.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|QG38sOqVvxOLOyA9pZTyRLmeX5vA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -C20H50I13N6Pb4|Pb4C20N6H50I13|EA3MA2NEAPb4I13||0.58|||0.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901566|QGGr4iW5NgYaOs1hZDqXT69oebND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is EA3MA2NEAPb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|224.6|0.75|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|QGI_qYnaj4EJzhz1lQ30x38qu1bV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|219.3|0.73|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|QGMKEUqIzCKf_X7h4TCNdQpIU3bd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.3|0.75|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|QGMpTsh_OtT3WuyjoRfBr1KMQ2P9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.025|222.6|0.6890000000000001|15.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.07.044|QGYf-KTAih2i6hbRXpSd6s_284bV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|185.0|0.65|11.18|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsomega.8b01412|QGawXE-FAz0-VQRgNBbh2T_t4OI5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.4|0.7290000000000001|18.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801248|QGcfD8laxBV576sB8MZ_SyDbpr4J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.905|202.4|0.452|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|QGpkudMDLvNwAy9kC8j66wQYTh6H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.011|225.0|0.73|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06912f|QH0WSKwCzU_Uc0B-Ju8WWfPLsS3B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.07|224.8|0.69|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201800521|QHL0HDy3JD0uapUCHwKQorTUilp7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.07|225.0|0.733|17.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.10.008|QHXJhE3pGpN3Im6EG_G2oE8k9FQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|164.7|0.721|16.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b08135|QHe9U9wa5OrZFCPbRHnObShY7K6u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.9|0.7|15.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc; P3HT', 'Au']|['N-CuMe2Pc; P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800264|QHjN6-5KsTUGcz4NM_sVeJUqvyyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.30I2.70||1.031|182.3|0.629|11.82|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.063|QHl55H-lLpbxC1W29LJPN5056v9c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.30I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.7929999999999999|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aaa5333|QHsK9rcOvU-7d8PGbPIVVCxtPy60|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|207.6|0.81|18.66|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b13621|QHt9zQD-nlcfsv6di8MbOGIltY-O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.49|6.7|0.636|0.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|QI3AANsfVjRk3Y719Fh1MLFXRlQP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|243.0|0.73|18.0|['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; C70']|bulk|https://doi.org/10.1021/acsami.8b11049|QI5_-74Q6YcHIED4rL3NFaE6f9zG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.15|214.0|0.76|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|QI5gwRMlEvsX7mHsffUFCAOfmlh6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|169.0|0.62|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|QI6Ww0i5ndYwHjG7o-S053-ncZfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|163.0|0.72|9.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|QIL_ZweUs47XvKC1vnZ51mgb1a9_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.988|155.29999999999998|0.836|12.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|QISaCwGAWb67guij99xlvqYg91jv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|175.39999999999998|0.6859999999999999|10.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra07475a|QIaU-VypoaHh8A8v4Nobwi-VcY4o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C10H57I24N13Pb10|Pb10C10N13H57I24Br6|FA0.3MA0.7PbBr0.6I2.4||1.1|231.0|0.5820000000000001|14.71|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2780-8|QIdsUS9rp89qSCF7NtEDD60cDg8N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.5|0.58|9.13|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|QIh8QF6a5EwIptjOLhzjJn2OejVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.053|213.0|0.72|16.16|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801433|QIoOgZAaFlGAvG8KMpSPyiaSsU_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.8859999999999999|229.7|0.6990000000000001|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|QIslT50yRSGAyurNntSac7NE7qCg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.799|183.0|0.3|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04607f|QItZhI2JRawW6_ccrvwPMkV6a34c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.114|235.3|0.73|19.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z30', 'Au']|['Z30']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00395|QItgysfKLx8C0Hm-ep8z4ulHqe2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z30', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NSn|SnCNH6I3|MASnI3||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1080/15421406.2019.1648042|QJ17vMVPPOyF_MCUXbyRBwZbs6l2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|93.0|0.56|5.0|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|QJ2nuFQqzxUL84dBgbxOU7WvLuzT|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.659|193.6|0.532|6.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|QJ5u-x8ZGLABtGw7-SwvyXnOZvvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|193.0|0.72|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|QJ6XqH5KkUcUwWzyswMyBBn_YTNX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCs40I120Pb39|Cs40Pb39BiI120|CsBi0.025Pb0.975I3||0.87|158.4|0.636|8.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|QJ7X7lOVe2jOUun5GsImB1ykSb3s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsBi0.025Pb0.975I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|135.0|0.68|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02549|QJ9Y6ngYn4568ztXd5sIVHnvmOIz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50Cl3H300I147N50Pb50|Pb50C50N50H300I147Cl3|MAPbCl0.06I2.94||1.169|226.0|0.763|20.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|QJEmHfoJB1ykRMOF-ZZp55rdNuUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbCl0.06I2.94. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.95|127.4|0.54|6.54|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.11.047|QJPow5rj2K7I9dWQchj5lXwaJbIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.3|0.61|11.42|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|QJTZcXmLhuSSbfq1BctZq-EGSEr1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|1.13|153.9|0.7709999999999999|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|QJ_H4NFhV_jm96H6nBhA-t5CqZ_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.7829999999999999|271.2|0.742|15.8|['SLG', 'ITO', 'PFI-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800256|QJjYkopcAcmhN7LkAof0ktHT_EBV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFI-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.7|15.3|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|QJrLKEqqVmyfTTo-Tygq2Au0z2du|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|230.0|0.5|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|QJs5ZEwIHlC4GOcbD8qLk-xR7r7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|164.0|0.44|5.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.05.018|QJwTr3PtptlPCUq3QV84dX5S0_h0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|119.8|0.49|5.12|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.006|QKPUAXWg9NAHy9OSAZchfcOAyjuJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C99CsH495I300N198Pb100|CsPb100C99N198H495I300|Cs0.01FA0.99PbI3||0.82|235.0|0.37|7.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|QKUOIMRlYR7k-ctao3kHDXj6bgso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.01FA0.99PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.021|9.09|0.492|9.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|QKce3oLAGCOrxMZ_dxRNKa1qOwNy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.92|219.5|0.76|15.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|QKdVUqbVX4uGrfnRkFVufNFvdY9N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -Br256C866Cs133H4463I744N1599Pb1000|Cs133Pb1000C866N1599H4463I744Br256|Cs0.133FA0.733MA0.133PbBr0.256I0.744|1.710000182339252|1.124|184.6|0.7140000000000001|14.83|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|QKj6Igl42xvngIH-ziE6l4Gef1RL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.133FA0.733MA0.133PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|219.0|0.75|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']|['PEDOT:PSS']|['C70']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|QKl6A7GTuRq_HQ7nMzGrkQhMqtwe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|198.3|0.58|10.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.042|QKpFc1k-tsertibEwCR-lgf2pjoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.082|223.0|0.6829999999999999|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904072|QL0iJPp6Wz2MTIa3MbvlE2GUAAUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.0|0.7979999999999999|16.03|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|QL9R0_EEVUJVx3iUNLAe4s0CmXN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C1000Cs60H5170I249N1830Pb1000|Cs60Pb1000C1000N1830H5170I249Br510|Cs0.06FA0.83MA0.17PbBr0.51I0.249||1.12|228.0|0.728|18.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|QLFAMrrWiOcE4PXDOmT8OLJl6oZ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.3|10.0|0.2|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|QLHe7MhzJ06zxD0oV5K1kyxNZP1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.7|0.7559999999999999|15.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jcis.2019.09.087|QLXGQCTjoGEn8ek22eXiJ2O8JoqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|108.0|0.17|1.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.7567/JJAP.57.04FS07|QLZbtweO0M0AzFYpm7y0f-riFafU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|96.8|0.311|3.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|QL__R5nMVnwpZrsg6BwnmCRQd6b_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.1|228.1|0.77|19.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|QLgRYgJVOnMXfPp9svpKeerNxMhA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|98.1|0.35|2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|QLtAfMKi87uIUjrgaHxDGv_ijvyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|171.0|0.586|10.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1246/cl.150056|QMBHw3o1gqUMyz9UBuTqz0qCxwvG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.108|230.5|0.7140000000000001|17.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|QMP3i5g1ttbNUCJsc5ZUIeLh9HON|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.12|237.0|0.76|19.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703432|QMTiKJKzAqSjp8PMuB4AXAuVy34l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.7|0.72|16.84|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|QMWOxE7ZZSNX_ohkfseFwEQN927r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|202.0|0.643|13.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2018.10.020|QMZ7mMTQ2R_9neybCmllfFo_Ge8T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.08|228.0|0.7959999999999999|19.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PM', 'Al']|['PEDOT:PSS']|['NDI-PM']|bulk|https://doi.org/10.1039/c7ta06900f|QMmmRwIm2rl0xtfjBZlj80sh6fYW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PM', 'Al']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|102.7|0.609|5.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|QNDJa-ZwU87-OgEJPKRweJrJf9we|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|195.8|0.71|12.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|QNJDRujVb7odMzPBTvrtGFMi6DPj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag4Bi7I25|Ag4Bi7I25|Ag4Bi7I25||0.54|25.0|0.45|0.6|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|QNSDT5R63kVqSx9-tXJVljE8sMxy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag4Bi7I25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|QNYPZO9v8tuxhbK545MPRcXkkTGp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.0|0.731|16.4|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['CuSCN']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1016/j.electacta.2016.09.138|QNZ0xbmyXfGH_uQTmnC0rhoWYf8K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|191.4|0.69|12.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|QNh_064Cw51B3L15Z0gXDbtO8nf6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|193.4|0.611|11.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|QNq0oa4gDgdHbMDiOoZwexedktVq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|195.4|0.6809999999999999|13.59|['SLG', 'ITO', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|QNsLlIPgH_4pkJlkIBl59qT_S_lt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.0|0.78|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|QOlu2cJxZhhj7yEPyPYoaJD7ZwDq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|183.0|0.47|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701378|QP04dAhzJGaeHwNMp0pn_ewQl3ZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|110.0|0.68|6.2|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|QP8OvKwkPFND0MpFdzT_pfQO_vAX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb98Sn2|Cs17Pb98Sn2C83N166H415I300|Cs0.17FA0.83Pb0.98Sn0.02I3|1.5100001610130236|0.71|151.0|0.605|6.9|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|QPATZPbuCSFGzvStHQYgzmnovI6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.98Sn0.02I3. -Br60C8300Cs17H41500I24N16600Pb100|Cs17Pb100C8300N16600H41500I24Br60|Cs0.17FA083PbBr0.6I0.24||1.07|221.0|0.8|17.9|['SLG', 'FTO', 'PCBCB', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBCB']|bulk|https://doi.org/10.1002/adma.201607039|QPCU9ziBXwIIYrJ_rbpczojBUfHG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBCB', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA083PbBr0.6I0.24. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.072|211.8|0.718|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.chemphys.2018.09.032|QPCg9IMgvX6SZKDmSBH3tNLU3k4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|160.79999999999998|0.48|7.74|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|QPIlivvksdRfXNaNadUsx28hhtcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|200.0|0.574|6.71|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'NiO', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s40843-017-9028-y|QPOsKfOwoPom02mdiHZIYO_7JpFw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.04|238.3|0.79|19.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|QPU4ggQP8VH-is0EK-2e8vonSCA2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6000001706098266|1.09|227.6|0.68|17.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s10853-018-03258-x|QPbE2eUAmK10VhGF1vJfnqE3jvGy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|243.0|0.55|13.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|QPcVU8Zrrh2xj1ujOUNI2TdEjqdz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.4|0.736|16.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801888|QPd70lfPmRaTcguy-iw-_Ip3TQON|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.01|86.19999999999999|0.568|4.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|QQ1cPMXFhUN35zht1iQHjqGutm0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.11|232.0|0.7|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|QQAMmHGCqW_25HNdgW8Nek7ZJoTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|||||['PEN', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|QQB09DnVQ4HXJIaFhvs3SttYgeuE|a perovskite solar cell with the following device stack: ['PEN', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|189.0|0.65|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S101', 'Au']|['S101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01776b|QQDBatrYISaS47tdOnlWD6Gx_4Gn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|177.3|0.44|5.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|QQRzxBJBWl0IvsIzMWRV0nRvpVaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|237.8|0.63|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|QQh-pBS7ctAaIF7fYFpljbcgFP_Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.475|50.0|0.537|2.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|QQn_SiuTE_CrWi5YtCOD2LIAhfHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|130.0|0.65|6.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|QQp7xdBR2Jy3XegOtK1w8_Wy0Xr7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|0.97|155.29999999999998|0.51|7.68|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|QR4dSbKSy3clUXqr8H2ZXIKMbkhq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|QRDkyONiq65MUB1KuG7JUsxXyBeW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.6100001716761378|0.728|117.1|0.421|3.1|['PEN', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c8ta01408f|QRMUjPuWWery6NTjonPJR_fZ6pjf|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.5|0.76|15.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|QROg4ferG-RR-JqKVNlRMIYyQA_L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|0.92|222.4|0.68|13.91|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700118|QRQToZzKpfcG-a-M7HKAGznGVlYP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|QRQowHq077JEERfku1MfwYp--mQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.69|158.0|0.6|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201409330|QRVeuP27RmDfwqC4Mn56JCyWOI8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.077|225.5|0.772|18.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PhE', 'Al']|['PEDOT:PSS']|['NDI-PhE']|bulk|https://doi.org/10.1002/cssc.201802234|QRY385v8KuWUTqO7JPupds-80oIj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PhE', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|188.0|0.55|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|QRknwudwkIRC8Dk1pSGSBh5hCxTV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|200.0|0.53|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TC03077G|QRl9TTrnoBYKKEjOxlbM7sFyjcKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.8|120.0|0.3|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta06398a|QRvE6mH0QJGBinyqWOyezAIRdyIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|101.0|0.45|3.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|QRwFmd29qWzJVqd-Ptdk6p3myGxu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br3Cs2I3Pb2|Cs2Pb2I3Br3|CsPbBr1.5I1.5||1.0|106.1|0.68|7.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|QS-sOuYev5Pg8OHdUJdvIpMi3Nd-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|176.4|0.74|13.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.12.032|QS1Y2tM_KmWL6Wyuwc65LfPcphIo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H494I255N178Pb100|Cs4Pb100C96N178H494I255Br45|Cs0.04FA0.82MA0.14PbBr0.45I2.55||1.089|224.0|0.764|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']|['PBDB-T', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201706126|QS9dnt5UJDfWccMgMUrSEI2hcxkT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.3|0.7809999999999999|18.35|['PET', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc00479c|QSLpJGq0xWWjn1CqHYV3oXD4ympH|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.0|0.76|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|QSTfY147wXv5T-WppvUkSk3eTmkz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|219.0|0.81|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|QSl1XKWYEiiho2muoTjs4xiwoS7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|190.3|0.73|13.26|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1016/j.scriptamat.2019.02.032|QSoYoUjiQ3iS7JkfZKSQsMxO69dG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6200001727424491|1.078|229.7|0.698|17.3|['MgF2', 'Willow glass', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|QSt1e1ftxlL7uV2hyl5wxHZ6JaDH|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.5|0.5589999999999999|9.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|QSt2q65vzhprQsSDAeTLfcR03Vkq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.32|165.0|0.48|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|QSu612eQap2emwT1Skw972MBacQs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.017|147.5|0.68|10.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5099-1|QT1JJ-lYIvUu6l2ScuIr5zNgWkYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|207.3|0.828|18.9|['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTM', 'F6-TCNNQ; TaTm']|['C60; PhIm', 'C60']|bulk|https://doi.org/10.1039/c6ee02100j|QTFleMKLdGAubY9NuTGYgBsh12Lr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|207.0|0.7090000000000001|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|QTX7ec0QIzKILc74G4TDGmCeWAY_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|248.7|0.595|14.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.024|QTZ9yRom4oUy3Rfdm-bP1dwuBLgM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.157|191.3|0.652|14.43|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|QTdHZt2dNne-Txc66jGYAd3oOLew|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|210.7|0.6579999999999999|14.43|['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-np; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|QThXGiAtPsL7_PR0X6XfvcT188T7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51||1.14|199.9|0.71|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703057|QTlg2VgyuCD-IMkbU9fN1aIX3raD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.526|10.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|QTs6CQyZrXsLG9ix6QzdTTyrNjWa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|196.8|0.77|12.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|QTvzcCik1H-qAMeR1X2dpFSM02X8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.04|200.7|0.755|15.76|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|QU8L-fvTE0GIiGqzKUqtGbskkKJn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|218.0|0.74|16.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.002|QUBA7prcFJiZPdCG5f0rOpHlSmD9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|166.0|0.48|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|QUQDpNzewi3VZP0QtnxTyXDQ9zRG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||16.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.034|QUdqvcHMPAgVSD_mPIa5llTkoMxE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|213.7|0.741|16.5|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TAPC']|['PCBM-60', 'BCB']|bulk|https://doi.org/10.1039/c8ta10630d|QUeYrDfhrGZARwV0IsU-XkF-B_E8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.95|185.8|0.66|11.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|QUfbS8mwa0Gv0PqYoQkN5rtLZC57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|163.2|0.497|7.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201706104|QUoekOSZDzmoSUqK4z_oe5YbPrLT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|207.0|0.7|15.5|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|QUr_zI1ULVD-sfJMhhB1adxISDW5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|181.9|0.72|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2018.12.010|QUztJaJFH42ug5BpIfX_hMzWtX-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|176.0|0.35|5.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra21423a|QV3RqdzAVMIHSSBfxb6ga7XNb2FM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|220.4|0.7|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|QV4lBUxfLoDy1Aj9NTMHto9TZFV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|208.6|0.655|16.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|QVCS9XGkJbwZ1cbIQ2OGkNJ-R6iN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|182.0|0.7|9.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|QVEkiTd8CWUZFW-kfnc7vPT2OrDn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs|CsAgBiBr6|CsAgBiBr6|2.3900002548484283|0.99|20.6|0.55|1.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.202002342|QVQo2GlZOMOVw9i7Yj83jYlE8o3o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is CsAgBiBr6. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.06|220.2|0.731|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b00528|QVfxHF912kGq1onK1h50ex7JUa4O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|214.0|0.6859999999999999|16.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1109/JPHOMV.2018.2877002|QVgmFz3rYT-GNfwMuVj9iUCs87Yn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|183.0|0.6579999999999999|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08701|QVrPmVUmsxPbWIzLsrZ-TBM4Wy-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|231.4|0.65|13.45|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|QVwk0d7kmcv2Fs2ej1H51mjkpPxL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.38|70.0|0.75|7.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|QW1jq0ZG2krvtiQNEiOzu_gpndhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|212.0|0.61|10.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|QW7QfqLIT1tGwHuHOJv6gqVl0IOK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|192.8|0.623|13.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|QW9DbU0DedAmvKJX3q_cnry5DO6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.7|0.7|14.44|['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['N-PDI']|bulk|https://doi.org/10.1039/c6ta03119f|QWBVpSkP-ep-4YJugFAdliHm5DNe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'N-PDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||15.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|QWBZhIxVabryg0wvOz_cMwsbkwdU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|128.5|0.7040000000000001|7.97|['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|QWByp7VmTkPtnbTK80ZC-vt7UsE4|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|59.8|0.7|3.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4nr02065k|QWCy9y77SR1vKT4Vg7KR2XTH6VUB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|0.84|211.0|0.51|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EP02', 'Au']|['EP02']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|QWGwgKFUjZvWgrb9qbw83pXCB8iJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EP02', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|116.0|0.6829999999999999|6.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021931|QWKnyXwdpO3_UUdOkwuJ_OvdeePz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|QWMap7gRdw8hcFfXXQh7VP92qRkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|180.0|0.63|10.88|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanofibers']|bulk|https://doi.org/10.1016/j.surfcoat.2018.08.039|QWWibBf7FOxCOZC3uLUkfibTGghl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.2|0.665|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|QWjyclZTQGckkCm_p2UyrJDwPcN2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.878|216.0|0.6759999999999999|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|QX2qFv3qRSvAO41z8mS-g4ma1BGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.51|70.19999999999999|0.66|7.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.9b07594|QXItu1N2czorCd2J5gfWwTjNhEn9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.02|125.2|0.67|8.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|QXJxOe-I2JJk0uTxvwVnZw8cx4Jg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|154.9|0.45|6.76|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|QXTFt-qn0SLpeBMvHQ5Qhmv9SyAT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.37|64.80000000000001|0.75|6.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2', 'ZnS-QDs', 'Carbon']|['CuInS2', 'ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02522c|QXbij0ApA2l2mWG600yYwX9_l4s6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2', 'ZnS-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.09|240.2|0.8|21.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|QXuVZz0ZrKc5oVPU6VgjWYS5zrJ9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.012|201.0|0.667|13.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|QXvbqNAgsi3PXeU98eGlQWHs2hig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.13|220.0|0.74|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiN', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp', 'TiN']|bulk|https://doi.org/10.1021/acsami.9b18082|QXwjR8-3lWUxAQXtJ8LYQRbENkQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiN', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|193.4|0.611|11.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|QY29iFnSCTTLeGDfMlVFqvfvk-wc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.518|11.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|QYDETMFznunh1kbUgGp1CryrDmMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|12.7|0.511|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|QYJ860fy-DbIWRBlXYiuvpsYGR0w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|190.9|0.68|11.25|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|QYMCKTRJD7zgD_vAomZw0KaCC7XW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58|1.5800001684772036|1.1|218.5|0.75|18.14|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1039/c8ta09026b|QYf78gIqXRbldwF9DCE1wI6JvJti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.0|0.6|10.1|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|QYmBtTeI7A0nqqCdy3rUWsP25hqR|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.5|0.754|18.81|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|QYnrfY4_HXjpf9lWxi-y5TwBYA9q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|185.9|0.4479999999999999|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180384|QYr6G71VUQj9K9VCRo0adsio3OTf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.929|235.01|0.738|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|QYsFc8UWEUdB4gk_owks3hzDIrof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.12|243.0|0.8109999999999999|21.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201803095|QYt3wHIwNdcfpjj3f5tj1CzJX-oG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.087|228.0|0.7|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.040|QZGQVrj-LhPrGxJPSGitpH3K840f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.0|0.66|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/aenm.201601822|QZHffyR6i59YOZnNHfXd6jB56TUS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.9|0.772|16.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Lif', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2017.11.013|QZO1sShEExUUbSPsn15iAEdfmtFS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Lif', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|164.0|0.515|4.95|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|QZOHoKOtu2_dYZGGEiFrjBIykRWe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|176.0|0.7170000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanowalls', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanowalls']|bulk|https://doi.org/10.1039/c6nr01010e|QZpcbo3Eej6QWFpJA7NQ2fnYRV48|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanowalls', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.0|0.73|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.102|QZzOfNjtgByoCVQQUrPzTFVwGazB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|137.10000000000002|0.72|9.08|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.15541/jim20160218|Q_CxVgO7rp6U_8jd-JOThs34-Zph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.73|147.0|0.36|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292019501273|Q_KiHOH2bhS6mmI5JWLTTWFywG1a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|187.0|0.72|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|Q_M9RXKrANXlr8w2EIXQiGmrtm6K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.92|172.2|0.546|8.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP)3-EH', 'Au']|['BTT(DPP)3-EH']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.034|Q_W-fTaQBZq7CierT3ImH9Zfb8uB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BTT(DPP)3-EH', 'Au']? The composition of the perovskite layer is FAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.05|218.4|0.614|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|Q_WybAG_oYVbeBSVHEdo7bhDJGT7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|233.0|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1364/OME.7.002150|Q_a1E1Z8dKUoAMg7PkSyZIk0JxT8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C25H150I66N25Pb25|Pb25C25N25H150I66Br9|MAPbBr0.36I2.64|1.6200001727424491|0.89|138.9|0.653|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|Q_e0XiLvf-06uFLs75KZbv7Oi9LP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.36I2.64. -Br16C95Cs5H490I84N175Pb100|Cs5Pb100C95N175H490I84Br16|Cs0.05FA0.8MA0.15PbBr0.16I0.84||1.16|228.5|0.797|21.13||['Spiro-MeOTAD']|['TiO2']|not processed|https://doi.org/10.3390/ma15093185|Q_l51uqjk7NJZfnWIKogmiO1RFMa|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.16I0.84. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.9|137.4|0.34|4.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|Q_qgsuu0p0ZaTTosT9wNeUkBET-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -C5000Cu47H30000I15000N5000Pb4953|Cu47Pb4953C5000N5000H30000I15000|MACu0.0094Pb0.9906I3||0.8640000000000001|189.0|0.687|11.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE10|Q_sR7a5skmBDRiATy_gQnn4eN-tp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACu0.0094Pb0.9906I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|222.0|0.7020000000000001|16.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']|['RCP']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|Qa29Udj8Nm4h15JL3_7UFm3xgoCX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.31|0.9699999999999992|0.27|0.01|['SLG', 'FTO', 'MgO', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO']|bulk|https://doi.org/10.3390/coatings7030036|Qa2bq2QIj3LjzMftvfzc8bAyc_9U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3100002463179368|1.37|56.5|0.69|4.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.10.017|Qa6jpOHrDzJ0XY6SOI8MwkEhImXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|200.0|0.6609999999999999|13.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|QaK59rHxDBtE1WOkxS-R3kZJu5G0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|217.0|0.708|16.1|['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IDIC']|bulk|https://doi.org/10.1039/c7ta09543k|QaOeAYFnnCDKV0jlcvLDLCYI-YCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.96|193.0|0.6809999999999999|12.62|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b20933|QaQZ3Z0k-hoXISLeFFF3fO0j0jF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|194.0|0.61|10.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-020-03664-5|QaRTV_vWe0kRJhCfnFOM_TekEhRk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|107.7|0.5|4.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra09110a|Qacvvl8QdYem0DKTjbxaTJby9hQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.36|96.6|0.65|8.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']|['poly(DTSTPD-r-BThTPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|QalJG62LSIfL-GdHaj3j_ThfgjeL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.23|227.0|0.731|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201903368|QasI1Pmd_9BkdRP40nlC1Qa8zsTv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br39C96H493I261N179Pb100|Pb100C96N179H493I261Br39|FA0.83MA0.13PbBr0.39I2.61||1.1|232.0|0.782|20.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ee02172d|QayFonTr6sfP9fdhtQK183ILuab2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|147.0|0.67|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|QbCLVG0iGKbRpIRlf--S-5xdbMVV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.089|176.0|0.72|13.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|QbFTAFZjBkVoQ7B1OJoNWKw7sKVG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.2|0.769|16.06|['SLG', 'ITO', 'VOx', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Vox', 'X-DVTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b04396|QbNR7P4r8lCbWLz7slLSNqS9fCdw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|212.3|0.608|11.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|QbTuuDc9gLHtTGCSO-hZ1cimfxLB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.022|10.8|0.72|16.88|['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Al2O3-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505140|QbodsjovN-0HJdUGyeFKRIOOsrKu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br6C3H14N2Pb2|Pb2C3N2H14Br6|EA0.5MA0.5PbBr3|2.3800002537821165|1.46|19.1|0.47|1.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201702005|Qbq-KzSvWDMMxUpp5HhKsQfVaRtC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA0.5MA0.5PbBr3. -C69H126I32N13Pb10|Pb10C69N13H126I32|(PEA)0.8MA0.5PbI3.2||1.08|160.7|0.45|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.9b00972|QbrDg5_IzeJ774VSziVFVUhrWhg6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.8MA0.5PbI3.2. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||1.03|193.5|0.78|15.76|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b07149|Qc99NA52d9j2lOg5dMW5bkQFUH6k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|209.3|0.497|9.27|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600315|Qc9xHGFT0jpovNDZUcLG3hRXCUHz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|193.0|0.62|11.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02976c|QcCfA_HLueStd4hDW0LKiXrLKN3z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8009999999999999|187.7|0.3939999999999999|5.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|QcHj8vh6Dxgvu2YmSKqybsKNfh6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.02|220.4|0.727|16.28|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpcc.7b10018|QcJQmf0gIIRVKUDETWyru0F2P5B4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -C17H54I13N5Pb4|Pb4C17N5H54I13|MA2PA3Pb4I13||0.64|153.1|0.561|5.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acs.nanolett.9b01652|QcNLQYc69faTHo_v4Cmd9uPjoKfF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA2PA3Pb4I13. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.02|125.1|0.695|8.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|QcYPTmyAhJjizCbtf9PgZO3AhRjG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.3000001386204838|0.52|110.7|0.64|3.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|QcaeRksHeSqCHAZ4c83NXNoMTaLj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|225.7|0.763|18.09|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|QcikTkbJ1SthZ2Ui3Ke5ki3xgYjv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|130.39999999999998|0.77|10.24|['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['Au; NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201504621|Qd18S_5fSRV-yKx3i7Am9qkshvxU|a perovskite solar cell with the following device stack: ['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.95|200.0|0.75|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.07.022|Qd22EGBjWcYFTx63QUnpkhIEq2yt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|188.6|0.715|13.76|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|Qd4GNIz3WiO5Fxb2cBc0Y5WNDWcp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.014|212.4|0.659|14.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta00975e|Qd8Oa2OmanjGitLe2vpyGv6Ez83h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|95.2|0.3|1.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4913549|QdJHh0Kb6YN9hG5RnDKeXjefyDXM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.4|0.71|14.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.06.007|QdKOO0e_77XldqmiZs5adrfhN8i7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|202.1|0.56|9.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.3390/coatings9050320|QdPtA2S9U4Dw7uNpXS6OvWF0XlDv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.26|173.2|0.512|2.26|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201703800|Qdp04ncWBczjmgSrSQ87xOSZwCHX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.7|0.72|14.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1002/admi.201500762|Qds2y386XkHpORq5SAQ8GRnNkDO2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|94.6|0.69|5.03|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2015.07.028|Qdzmf11pZ6F_F3MDh6tYEOswATWa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.711|23.9|0.63|1.07|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|Qe2HmD8AxK50F09N_tWG3lnYGUNG|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|268.9|0.28|5.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600132|QeBXwJYkd2DOfJR8NROjAZMMQzxa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|229.9|0.421|5.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpcs.2018.09.019|QeC-ju8Pjw036PjEdUnMD8TfCq1s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.400000149283598|0.46|139.2|0.63|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|QeDNcrVyHScwmE2oS3U2yYgLbIga|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.039|223.4|0.596|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|QeGFbraC3ZxM8ALwbuTr0Pmj4ikC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.6|0.752|16.92|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.electacta.2018.08.117|QeJWVKRwdPfYda2l6qof8p83lYrO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|164.8|0.574|9.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|QeKdzYpwUKJmB0LelEQpxzjdZ1dw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|227.0|0.76|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5065|QeQolZv4rcySLsnisY23ue5o-gWU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||0.94|224.2|0.53|11.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|QeYCGN49iSSIOvDcQta5d7nCnC73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|187.1|0.64|11.49|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|QebXsVE9atUBOWkMQFXC6dB08-m4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|213.0|0.7120000000000001|15.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|QectPJwRP6svSuyqW2dEbUgb6yCm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.15|242.0|0.71|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H11', 'Au']|['H11']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601062|QegbBzccObgsG3RaNBMltOrXOBIX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H11', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.09|197.2|0.7|15.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|Qetz9_WF__ZKjx8_8XNjb1GSuv4y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.638|13.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'FA-PDI2', 'TiO2-c', 'Ag']|['NiO-c']|['FA-PDI2', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2018.05.017|QevbT3jRuUZAlXWKWKBUwnEQwqG7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'FA-PDI2', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N9Sn4|Sn4C4N9H21I12|FA0.75GU0.25SnI3||0.619|204.0|0.7290000000000001|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|Qf1zcDiwl0jCw7Yk0tQL2FSrh7ij|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75GU0.25SnI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.17|217.0|0.794|20.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|Qf3EOSDajGeP3zUs16ffazSOc-mK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.3|0.981|12.76|['SLG', 'ITO', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY4']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|Qf5R3fDY6ct3Tvj_EIansSwG9zgE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.1|0.631|15.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603021|Qf7ss7x5keH7kAsHH26bPoGJCu9i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.6|0.609|14.5|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']|['TPTPA', 'TPTPA; MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|QfEgaoJqOiQpcrrTYGRsgeIfIYds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|168.0|0.72|12.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|QfFc5maC-h1Lezrmc4VoZwDsRj7b|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.745|15.7|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|QfJ0FUuGxuvz3goNeWvqpCiCaKKn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.49|1.32|0.262|0.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra04924b|QfNugdQfb8Rvus7Ku_-P-tgDLDI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|235.7|0.732|19.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|QfOtNnyuhEb8Mu1h0tmizYzbcCEx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49|||||13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01101|QflS8PsVt5flrnnI9eCLaD_S0hM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|234.4|0.636|16.28|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|QfqEVaDb88Xu3z14K0QHdFkM7Gy9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|47.1|0.437|1.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|QfqLwfyTooMEYWRrBnE3Nh83K7JR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.27|152.0|0.784|15.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|QfqeohLHzKrRFyV1DjlGk1ggXpc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.094|238.0|0.77|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04246b|Qg5JT0v-NyxNzyw6ZKEVKEuODVkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|160.0|0.67|11.27|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta09431c|QgB01ESO-DFMrUERR6m7CqjJrz_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.981|182.0|0.547|9.75|['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60; PDI-DA']|bulk|https://doi.org/10.1021/acsaem.9b01154|QgMpDMFW4zjuuNpzvMdHEHuBn8tg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7909999999999999|141.0|0.56|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|QgY1AmjTRi1gy7-BLZWWOgItUk6I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.6970000000000001|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201502021|QgZkIJD6urqe8rA9U9o546Dul460|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|78.60000000000001|0.5489999999999999|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|QgjddRkxp0z1mlWSMHjlk32SD_OF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.1|0.6759999999999999|15.92|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|QgoGwv8qJfp41nci06uXsRBs5SWm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.62|21.1|0.46|0.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|Qgs594U-UhTdbSCZhVBjsMU1N5bh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|197.03|0.575|11.78|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|QhH2mq5tmWLZaRR-sExX6tNB9hJP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra05741e|QhJXF1kh-s2UNU6E9ukCRurVFKM8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.8|0.78|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|QhJpjewooerQZuMvggVLJPhVrByi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|163.6|0.51|6.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm402919x|QhL52sKXZ6s-mxkxgieIQ8WDqxac|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|157.79999999999998|0.45|7.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|QhXOrrTBk4N9OyuEWN3BJ3IitAdX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|156.6|0.5379999999999999|8.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b02810|Qhd5hB1powRbPDNrW8Kz_y35O_js|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|174.3|0.6|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|Qi-E6ubPLEPIxec2Id6GyxstW7eB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.0|0.74|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.02.010|Qi3wUoREt1DnkkXI8ORJhi4uflSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.5|0.7|13.72|['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEG-1']|bulk|https://doi.org/10.1016/j.jpowsour.2018.12.066|Qi7iqVcqv3wZva2sej6dEO2Gtnn_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br260C475Cs25H2455I1240N870Pb332Sn168|Cs25Pb332Sn168C475N870H2455I1240Br260|Cs0.05FA0.79MA0.16Pb0.664Sn0.336Br0.52I2.48|1.380000147150975|0.8|265.9|0.76|16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|Qi9SQ1kz3_m9IERILur9DHdiDvdC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.664Sn0.336Br0.52I2.48. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25|1.7500001866044976|1.13|174.0|0.74|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b01255|QiEAcr2KlwrpM7cWJ0Vy1XyqJt70|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|136.5|0.63|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|QiMbw5Pa9JNQKa8Htuu0XsBs6OaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|21.0|0.052|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|QiUGXZtazKx0bDESynQ8ZfT2xunF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.0|0.73|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|QiV-pTC94Sk20idsF-R97aHMdcxy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|108.0|0.63|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|QiVoq4jbPIk78kXp538DkN3U7Hed|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.0|213.0|0.67|11.1|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/smll.201602808|QiYHAi-B3E5478aECbdHG8-hNb1c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C86Cs14H433I249N169Pb100|Cs14Pb100C86N169H433I249Br51|Cs0.14FA0.83MA0.03PbBr0.51I2.49|1.6300001738087604|1.083|209.0|0.72|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|QifX3BsQ_JETy5XqaeRIuOfnzySl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.14FA0.83MA0.03PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|170.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|QivCjjsYqnrGBx0ThHkmqfZf00GQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|8.0|0.384|0.37|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Ag']|['NiO-np']|['none']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|Qiy1jNCMK4FuyPuNsxIjf6qBHjo9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1||1.0|199.0|0.706|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|Qj2OK3UXpRCPwnw_cqQBoE4fnZKW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|181.0|0.46|6.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9pp00071b|Qj54CgEihXB7PE7x1hL-lxdBeoXC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|209.9|0.633|13.93|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|Qj5aeon1Y8T3cA-v31W_k1JpOeuo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|142.10000000000002|0.61|6.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1080/15421406.2017.1338095|Qj6H_V0zEkhz7WX6wZKc-unVe1dj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.032|202.7|0.685|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|QjciIouwLBLrpGvgn-cXIXaYwHjH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|246.0|0.69|16.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.10.017|QjfDqbGsT4URjrxcPfFSgtaBuofb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|148.0|0.72|8.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn5014879|Qjg3f_198ocFDyPCM7iGp2rI6CuS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.3|0.711|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra18823k|QjutW0wvWgicTCsaGMZU9TSJO6PE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|52.1|0.6940000000000001|2.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|Qjy_hVYk_LT-gJRSDUQgca42j30l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.6|0.81|17.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr01717d|Qk3aAIHnLb09ezBu14_ue_oKmBW1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|142.0|0.56|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', '3TPYMB', 'Au']|['PEDOT:PSS', 'PolyTPD']|['3TPYMB']|bulk|https://doi.org/10.1002/aenm.201400345|Qk3dEV0VIAikQQLtWhyDym2CtC0J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', '3TPYMB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|203.9|0.69|13.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2017.06.126|Qk6hAhK_3ZrSUGTIT7eRv9c3gz6s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|224.0|0.77|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|QkBUSFloS0m0Hzs975RKx7Qdb62t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.23|185.1|0.778|17.68|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|QkBalGv8pi21AuZcQqlZz8o52eLQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.46|64.9|0.502|4.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|QkIZDprASzaPTEUUielRfW-UFVd8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.8|0.535|12.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|QkPwpcw2VJ1ctlVU-FudDZpEzFUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.0|0.72|17.0|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|Qk_KOriURq5WTg2UfHK1RHMSWIrt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.30I2.70|1.6500001759413832|0.82|172.7|0.61|8.57|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|QkcbVja5BkVyMzcVJbDWyuHgcHS6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.30I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.0|0.8|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|QkfA9Dwn3rFSi9ypq-RNUcBWhkKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|209.7|0.725|15.96|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|QklKtYSVxEDbdk7c3vjRqzDJn_1d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|174.0|0.775|14.8|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.026|QkmLc0qAKEtnDWKoir8L1FK6PbBo|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.104|223.11|0.73|17.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|QkoOCMjHBH9P4A9HP_a3jdMZ02aa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|223.0|0.77|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR216', 'Au']|['KR216']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201602545|Ql6i6kEL3avStGekKiSEMvDe7NH9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR216', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra05741e|QlBdFXUYVwb1yH9AIPkhbahuBPRC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|171.0|0.66|9.5|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1039/c5ee01169h|QlGsNzuUNablglnGUJkx1xpcPzZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C500H2987I1500N513Pb500|Pb500C500N513H2987I1500|FA0.026MA0.974PbI3|1.5160001616528105|1.039|241.6|0.754|18.95|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|QlNWQQtnM4b_rQNuDrMOoIi4BNFH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.026MA0.974PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|168.0|0.71|12.2|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|QlOc95GMy-w_ZRcgS7XNjyrDG0Th|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.72|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|QlPUlAnime__M_8T0IOTIoBo6WYH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.055|219.7|0.8|18.57|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|QlUv4xASKBM3ee245Vwk0Hvbzf4r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|123.0|0.46|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941226|QlXeYd8TAX5-pdCyHBuqOr4pctxH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.500000159946712|0.95|192.0|0.71|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b15503|QlbJCf-eH4KGcnx8hKEfdg7m3ueX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|234.0|0.7959999999999999|19.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01517h|Qlefa5YU4HoUWDZ5B540j2x0Fui0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5CoH30I15N5Pb4|CoPb4C5N5H30I15|MACo0.2Pb0.8I3||1.04|215.8|0.7829999999999999|17.57|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|Qllvgibvb6uN2wBRGKKD8Yg0SFWx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MACo0.2Pb0.8I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|216.0|0.37|6.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/C7TA09193A|Qlm26sdVLfnpibm9N_kC0kU6qN-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|202.0|0.64|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|QlsJwM9TeYsIHlwNdfw8aGu0ZStM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|138.5|0.59|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Qlxs2_KXlNeBQasy0vjHnDu0t7AV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.0|0.71|16.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|Qm11_gtyXMJmdfy7Lvtjpbfjq0zV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.500000159946712|1.13|236.0|0.75|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|QmHtgYZJMUn-Dbh80rb34QXkURBJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|216.4|0.7809999999999999|17.92|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|QmLbgBwX4Q6oCxBvwbpmaGevfe8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|198.4|0.73|15.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|QmPPRaWf6I5Li13uOI7PZT2Mpews|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|238.0|0.746|18.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|QmQMMGoQ4s48lgCBgr2CLvc0nLnQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|126.0|0.61|8.0|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1557/jmr.2017.264|QmggjO3yKWTUGxLueGsWPRno98BS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|202.1|0.75|15.61|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']|['rGO-4FPH', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10773|QmlDYNjlm4CtW6Jxt4h1G-rnofXU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'rGO-4FPH', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||0.995|158.4|0.763|11.98|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|QmzUp9cWUBq1APNLvmghwjxB5cJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -Br81C68Cs32H350I219N146Pb100|Cs32Pb100C68N146H350I219Br81|Cs0.32FA0.58GU0.1PbBr0.81I2.19|1.7500001866044976|1.24|165.0|0.6940000000000001|14.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'bis-C60', 'Ag']|['PTAA']|['ICBA', 'bis-C60']|bulk|https://doi.org/10.1021/acsenergylett.8b00576|QnNsljecSatA98w9HkWkbtLUqQwR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.32FA0.58GU0.1PbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|QnUTsOVlMHewppb7fsdjeqITi6DQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.136|234.81|0.764|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-019-0400-8|Qn_rznqH-Glt72uO0eMuoRwTf_Oe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|174.0|0.6|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.09.055|QnfIIPBSfNkbRpNzcByfXdDwR6DD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.08|215.8|0.72|17.02|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.7b07775|Qnn9DbJln1TkZ5Smn5Z552ZUjGaA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|210.2|0.758|17.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2019.122436|QnpKZ7kvyN2_Mef6OpTm7MIDNmMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.8|0.654|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06960f|QnvaUvIBgkkDtxnsEvwcSIPNxDeI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.03|216.5|0.747|16.68|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|Qo5gSQIv9EbIV7vPUXYUG-JH-gCw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|234.5|0.69|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|QoBANSpevXJBSsJYx8EO4uuJOZhB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|229.0|0.49|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4967840|QoBczoBTGAWFZeqJiPSCdgCDotVk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|226.3|0.732|18.44|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|QoHlOeagSwBdjq9epgiM0i517OX-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.02|209.0|0.209|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|QoHyFXI4YFtAG1QB-cpkCmZuyJ_b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.8|0.657|15.02|['SLG', 'ITO', 'XSln847', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['XSln847']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.11.055|QoKX36640hnLqXEVDFzpQ-6SMJaL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'XSln847', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|QoNOsZuVbcEJQBQ3syIZpbaI6r3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.991|212.8|0.6679999999999999|14.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|QoTQcTU8lWFa_TUyvnFSr1PHj_tg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.0|0.6990000000000001|14.33|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|QofBQcpHOQj88kc8lA9pADbYBf1C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|224.9|0.7040000000000001|14.79|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|QofyFlIVgQFdItxYyZHdDA8TkbEE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.5|0.71|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06128d|QogjGDI7Yx2NdWj5nfbBdPvgRYw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.2|0.73|15.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|QopuOdsTcBx8_imBtsbMXYtJwmom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.667|136.0|0.56|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|Qov9vcb0TGzVdiwQ-TPjNxAjLxwb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|10.6|0.7070000000000001|20.63|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00583d|Qp0ZyDxlcbaHS-6zox7vR4p2idMM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.72|104.8|0.7|4.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01855|QpEU64wgTdA2Iq9XjBQoW9yTmCna|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|228.4|0.66|14.8|['SLG', 'FTO', 'Fe2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-c']|bulk|https://doi.org/10.1002/adfm.201702090|QpG1HRxVFdo8i4EBczU2Ea3yeA_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||180.0|0.637|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|QpQ9BXlJ_zamD_LMf5Qjk2eQLfWs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H491I261N174Pb100|Cs5Pb100C95N174H491I261Br39|Cs0.05FA0.79MA0.16PbBr0.39I2.61|1.5900001695435149|0.96|164.0|0.63|9.9|['SLG', 'ITO', 'SnO2-np', 'BBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'BBA']|bulk|https://doi.org/10.1016/j.solener.2020.04.035|QpQB8y_6M0ViWttRqjkYXzidcM5j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'BBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.2|0.527|11.32|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|QpQZVmmdv_8cgdU_Xju8CSKZWhy_|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.0|0.7659999999999999|16.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|QpYVw3kh-ZIu13SN7a6wcSuPpTJQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.081|224.0|0.703|17.0|['Unknown']|['HTM']|['ETM']|bulk|https://doi.org/10.1021/acs.jpclett.8b01152|QpYYrwF9iPeF26zaHGZZuXkKkEiG|a perovskite solar cell with the following device stack: ['Unknown']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|203.4|0.69|13.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/cphc.201601245|QpcxW8XZLd-tk07ROhhu2IFuSXeF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.76|183.0|0.33|4.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']|['PEDOT:PSS']|['PTTI-2']|bulk|https://doi.org/10.1021/acsaem.9b00857|Qpgh4-SFaigwBaZsYO_hNdpt8LFs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.089|170.7|0.726|13.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00843|QpoX5aBuGSYTeQlnC12qRXQpBzqU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.095|218.6|0.6970000000000001|16.73|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9nr07876b|Qpp8SNtRqPjEGUChPGj1PCWfrR21|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C15Cs5H75I60N30Pb12Sn8|Cs5Pb12Sn8C15N30H75I60|Cs0.25FA0.75Pb0.6Sn0.4I3||0.7|302.2|0.731|15.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-019-0471-6|Qpw5qALZBB3Gdla_jzwvFbSE3UJw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|Qq3qe0SxW6L9rebiI6k65AQlPNs8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|186.3|0.51|7.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|Qq6gAhX6sZTC9sR3y12BQD2pQGt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|226.1|0.77|17.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Perylene']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsnano.6b01904|Qq7AiCox75l_tnT7HBUZEBzyVUW6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.082|231.8|0.755|18.94|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.8b02079|QqGA058n0Aqv-ezgW_7z3nvYnX-N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491||||13.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|QqPuBXoHiDsMvbxv7mRCY23i6ccN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|142.3|0.72|10.63|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|QqZLdfzZOaxSE4Gp3n9-VvY3L4lr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.733|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'di-TPA', 'Au']|['di-TPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6sc00876c|QqeWQL_gpSuxKFTcY046votLQv-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'di-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.4|0.66|14.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800282|QqnJqkizHCZoZ0sLgFwtGv23sOx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|QqqmkSJRW10pPj6WR1T1Yx5W6C7T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.08|177.7|0.8009999999999999|15.7|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|QqyuccvYcGeaaNsnQWy-2-W5mW1g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|176.0|0.75|14.78|['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|QrDCu5XhDa-lYK3vp_WxUw_OHNx5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.8|0.599|11.96|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201404598|QrDhF1-Y2A5n19AjL6z7pjDnFWen|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|131.0|0.28|2.74|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|QrGkRCq-JHhnZMWFnxfwgG15Y5eG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|147.0|0.56|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|QrVBMMixaWakzXrqUT3Ze0NLd0xz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|228.6|0.735|18.31|['SLG', 'FTO', 'ZnO-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|QrXq2iGAu84zSMCoX4VweqR1t2ch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|228.92|0.71|17.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|Qr_dIb-2qposThFJtPgT3nhUUviE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.39|148.4|0.4|2.32|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|QrcBFUhra_vJw9mVec8cCRXUvOj7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.0|0.75|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp02715j|QrfdzjFc9oS4h0bYXuGDP6H3jRf8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7200001834055632|1.14|197.0|0.747|16.7|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|Qrjh8KNbp-IAcd3gHTEIZ8jV22im|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CsI3Pb|CsPbI3|CsPbI3||0.951|186.0|0.7290000000000001|12.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|QrlM_bA0YEaDLhDrYsMcMd8t_I_v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.092|221.9|0.82|19.79|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-T', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|QroWWYuba1aqxqaqZC3kpJNILQR8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.964|212.26|0.7190000000000001|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'JK-217D', 'Ag']|['JK-217D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05697g|QrocaVHb24_PJytaOHWd11owK-ss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'JK-217D', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.0|0.53|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10055k|QrrumPuoRron4VluvJ7JJAZO_jSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|166.0|0.6559999999999999|10.14|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PV-PDI', 'Al']|['PEDOT:PSS']|['PV-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|Qs1iLg5kQB6xM5tIpMiCkOYR1LEu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PV-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|209.0|0.726|15.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.070|QsCtHepN1EKQ2G-NO_RxImL6ob7f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|226.1|0.7809999999999999|20.05|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227420|QsKaokiVVX7Xhr5qzmSxOUrFd0eG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|180.0|0.655|11.0|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|QsTDsFHqRUG8shVoDPvxrAEYvdJi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.08|175.3|0.5770000000000001|11.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|QshF1myjuXG7pFHs2dPZwX71h52b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|177.10000000000002|0.72|10.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp07592d|QstkyLLAYpkHfQ0vKA3R1xHwdVAw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|174.0|0.728|12.0|['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.02.011|QsuWSBG3taxT89lWe_bjA61Rec_s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|223.9|0.526|11.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.190233|QtGTPnE_RxGKSAuF-OCm1alPpf1D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.7|0.601|12.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|QtIyAWIhTRgCjOn4zLUJKC8dUvDQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|196.8|0.588|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2016.06.003|QtKuWb6zTX7ZWEoF8KiR5EU6dPkU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|QtMyLngy3h-LdkOL8tU2Gajdgtkt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5920000000000001|188.9|0.623|7.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b02216|QtT1-vpWgMJofcR77ByDCBHKwfvt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|110.0|0.3|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']|['4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|QtTpV8yLTkudxXSfy6yQLE00YfF3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149||||14.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|QtWcgdBdhKzUZRN50heUnnhjQkZ9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|186.5|0.649|11.15|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|QtXtqyvuS09xjawXaw-o1ZH1nTRe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.69|59.8|0.596|2.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'Perylene']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1016/j.nanoen.2017.12.051|Qtfb6f_kigvFkPRGSke7X4SfehzW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perylene', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|224.0|0.56|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12132037|QtjZBsIb7bRowWD7EugSlWC0NB9T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|199.08|0.741|15.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|QtpqCe-9JTiKXuz8hMcyzuxfpPXE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I70N166Pb100|Cs17Pb100C83N166H415I70Br30|Cs0.17FA0.83PbBr0.3I0.7|1.6800001791403176|1.191|187.1|0.789|17.57||['Spiro-MeOTAD']|['SnO2 Nanoparticle']|not processed|https://doi.org/10.1002/solr.202200252|QuO7ATarR_k5xlnkfJ6iLDKXjbpL|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I0.7. -Br42C91Cs9H469I258N168Pb100|Cs9Pb100C91N168H469I258Br42|Cs0.09FA0.77MA0.14PbBr0.42I2.58||1.09|219.1|0.736|17.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01692|QuO8i7cvAq3OA6A8lx_-duk-VFqP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.77MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|218.2|0.732|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b09595|QuRR0mKn9cDxvzvEOMzuhykIIeeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.500000159946712|1.1|234.0|0.711|18.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|Que9I6sZH2QL575tn4an9jGzxpQy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|138.3|0.63|10.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|Quj7PuQ5t_SMDLW5FJTqZxfKtA2H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.131|230.0|0.7909999999999999|20.59|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']|['PTAA']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|QulotDfH46imYAt9llW7-_khrPsm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|254.98|0.746|19.91|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|Quowr88p6IM-OG_eB8NfQvR0A6uV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.0|0.46|6.4|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b04695|Quv1JYCaGKqmIs73ieID0jciLTs2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|200.0|0.5670000000000001|10.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|QuzK1QhCMV4OQKWLh0DEsLsIN8A8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|142.0|0.7|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'AUH']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|QvcCTPHfJxz1Jk0DF69FyXQzvlJj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|170.0|0.5|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201802319|Qvl_5oNVpabxgvcjQ2fTyHJitTKG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5400001642119578|0.999|213.0|0.547|11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|Qvr7AC0o1Wyvp37dicOdwT8RZ0N1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.0|0.61|8.56|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ra01869j|QvsepFm2tpu2hYiSgmKSVn8Gl9Xo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I259N183Pb100|Pb100C100N183H517I259Br51|FA0.83MA0.17PbBr0.51I2.59|1.6000001706098266|1.16|225.0|0.68|17.6|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PffBT4T-2OD', 'WOx', 'Au']|['PffBT4T-2OD', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|QvvTJfsmnhXe1qi-a7GvqYhys9hH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PffBT4T-2OD', 'WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|96.4|0.3|1.63|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|QwU0NzLqGIkZsf2RcWxV7HJ1p18K|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.07|239.0|0.742|19.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|QwYT56DLObawHHM6oc2vgvz5S7Id|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.88|50.6|0.542|2.43|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|Qw_4R-rO8mn8-lxfUlYlCSf20KEV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.02|219.6|0.713|16.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|QwbvTKVpC0FMMolMOpmoL4ta8zQ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.25|150.1|0.7959999999999999|14.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909972|QwqI0csxElK74MCVpLgtQb63JuPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|140.0|0.45|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2016.272|QwtPnlqVLPjqX-pIwmbxnaQhmtDA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.711|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|Qww2V-SPfhFHXH-kmGvquYrOtpFE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.919|225.4|0.59|12.12|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|QxBusKSclKm7Nx3TWC2NBDvDOaJq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.131|229.0|0.8029999999999999|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|QxL92mxGUDSR5XjtKWE2OGv9k117|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.0|0.728|15.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']|['DERDTS-TBDT']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201504293|QxZSVezVLvqIbcuGKxCSa3daBo5K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.2|0.657|12.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b02848|QxgcIqLopeTDz1aqcH16BSzte6Bh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800554|Qxu2PJ4R7AWNmSWUeyiLur8iRxp1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.8|0.7909999999999999|19.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|Qxus01FTWIrXh-gdVrw3dnn-fdJF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cc09492a|Qxvby4FBt2Ze-5f-EoqsVGf9wFvl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|228.0|0.7559999999999999|18.1|['PET', 'ITO', 'PTAA', 'Perovskite', 'Teflon', 'C60', 'BCP', 'Al']|['PTAA']|['Teflon', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|QxwiShM3Hdx7XY-AVRlU7vKBkN1A|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Teflon', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|0.972|125.5|0.48|5.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|QxyKn91c8GDoNajUaBFeAMk79dVg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|221.3|0.684|15.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|Qy2_lfyX0WbQGq0UcHoqUc9VEzyj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|178.79999999999998|0.53|7.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-c', 'Ni']|['NiO-c']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b05477|Qy3kR5nZC17-Qm1Ed7DUXaiCnMot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-c', 'Ni']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|254.0|0.7709999999999999|20.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807850|Qy6oy6TJRPOvemmNdtp0wJzUw0ig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5500001652782691|1.03|230.0|0.77|17.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201600372|QyGackKYh6eT5zoOyoRx36E6cXeD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.1|110.1|0.515|6.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|QyL54dxJFI-EWDu5eGhXIxrMzB1k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.05|231.1|0.6809999999999999|16.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|QyY8y3kpMKIasrQgaTgBKrx3C1HE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.12|224.0|0.8059999999999999|19.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b15166|QyZDzl1uUk-Qd9yxZclaHQrhx2-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|192.0|0.7190000000000001|14.2|['SLG', 'ITO', 'CuCrO2-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2-np']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano9091311|Qyf2g5OQ3O96x-BfQU5r_Juua_64|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|168.2|0.614|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-8902-x|QyfwrIFcPgVgAF_FnVNLADSmD4Wx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.0|0.654|13.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|QyhKjFi4yJBX0lDsDnSzAcvnQrh-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|156.8|0.628|9.65|['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BaSnO3-np']|bulk|https://doi.org/10.1016/j.jallcom.2017.06.121|Qyu_l3drJ7Gjh6mSvQADunJlkE9Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|209.0|0.6|11.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc; P3HT', 'Au']|['N-CuMe2Pc; P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800264|Qz0zmlSsIseMkHYZ6DzNvQmfvGRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|||3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp00460d|Qz8poSm8JCJhgJ8vrEvfZ4wpZQ_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.941|228.9|0.614|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|Qz9tnF_SxdxfMO2x7SroLMydSoly|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|224.1|0.8|19.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|QzB1PQV150g88hDiwbF6dpD6ewSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.944|200.7|0.59|9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.04.099|QzGBXuoAQs-kvr2A3iGkgUXty6_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.7|0.42|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.194|QzNMI4Ybymy5RxHF0T37RPgTiCLO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|214.91|0.67|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|QzTy-Lzy53No88uZSLPOLENiiTWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.0|218.5|0.5|9.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2018.14385|QzZyBCgkzwPiUBRyO3diB9XcGhTX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.3|0.72|15.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|Qzbwe9cXRupoLdKKxumMeyov9Nwb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6200001727424491|1.07|232.0|0.76|18.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201905190|Qzm5xy6h9YZ4dvvN2niMMeE8WMHb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|121.0|0.67|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|R-6seuYJ04s0lwFgzcMlGnFG9iW5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|202.1|0.598|12.9|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1007/s10853-018-2752-z|R-ReX_oEVEL66tEwDofE25mBlRIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.01|213.9|0.68|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']|['PTAA']|['C60', 'ZnSe']|bulk|https://doi.org/10.1039/c8ta08306a|R-RmR8s7uX1oBcGStwMLs-2-82mn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.84|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|R-U-PnEPuCEpXSAF7-aHFZNz9S8A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.61|165.2|0.57|5.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|R-YOrGfnqWPhR7yQKyKdFy6bwcVC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.46|17.4|0.35|0.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|R-hD48rBWIPc8bAuQZb70GhVBToP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|208.26|0.649|14.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPcNO2-OPh', 'Au']|['ZnPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|R-phry8yYvWYLE5p0UOhZJoQ_bMl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPcNO2-OPh', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|216.0|0.66|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600868|R-z1Akcsq4kpTKVP8K0tpK_uBUZw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.24|110.5|0.78|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7-Th', 'MoO3', 'Ag']|['PTB7-Th']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|R0-eAg49ChJm9cD8Yq1KH3ciKuXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7-Th', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|40.7|0.617|2.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|R0AYLCssOlScMdtcMTChwcEMYbN3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|159.0|0.92|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09174a|R0B_EyfPBADGq_gYxfZfNrRo9NQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|214.1|0.74|19.01|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|R0D49YxiSFjggNUiicRQAlW5CnHd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.1|235.4|0.772|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104673|R0EEIzuFngeGJGwpjosH3aGoKoTi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||0.93|172.0|0.5|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04569g|R0EJCZpYfdpsBJ-JZCrZKl5Yu3UG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.500000159946712|0.49|115.8|0.56|2.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|R0eLwnXbhDXPfyhyFXMdco_mO0Q5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|169.0|0.6|10.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|R0eNPvOibFhQHvfKn3_OjPhrza4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|242.0|0.51|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|R0eVwlG1REr0xyflkFdyJsfZzi3j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|249.7|0.716|18.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|R0u78okXW3Sy5_w0feIOYOYCiW0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.77|193.0|0.555|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|R0wefOwPQPpYDVYnm4zvTITASnWN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|182.0||10.8|['SLG', 'ITO', 'Perovskite', 'Diketopyrrolopyrrole', 'MoO3', 'Ag']|['Diketopyrrolopyrrole']|['none']|bulk|https://doi.org/10.1021/acsami.5b10555|R1-bla507IhMmbwERPA06kQN8SHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Diketopyrrolopyrrole', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C75H378I181N61Pb60|Pb60C75N61H378I181|(PEA)2MA59Pb60I181||1.06|224.5|0.773|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|R1HLjNy72DM3BFSe-DyjtLXJo0dV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA59Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|170.0|0.77|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|R1KHMFKapLdxRLGxH9j89Pd8zYpn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.123|193.7|0.72|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|R1MLFb-3sn0De6h6nvvCXpCEOvnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.2|0.735|17.16|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|R1NyW9UVVj_QMS9SjsRHPd9gLw0p|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|111.0|0.599|5.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Me-QTPA', 'Au']|['Me-QTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.04.153|R1PR23A_eE9zl_Lcef-cHyOZ3tuD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Me-QTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|107.0|0.45|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|R1jG9shNzTdBcgNzWlQxEVwsguF4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|1.520000162079335|0.906|215.9|0.465|9.09|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c8ta05282d|R1umJXKyUPWKsQQtSsZISCBEuN-r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|233.0|0.8|21.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803428|R1xqZ2hfLO8E0wi85SxXByF9QLJO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|206.1|0.725|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1039/c4ta05352d|R1xvO05_Vfbpzm5wQRIuI3Eb-vhv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.70000000000002|0.728|11.44|['SU-8', 'Ca', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.OE.58.1.017103|R25-UGiM2h0UxmDL2w8Wq-Scp2i_|a perovskite solar cell with the following device stack: ['SU-8', 'Ca', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.82|228.8|0.58|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF1']|bulk|https://doi.org/10.1002/asia.201901452|R26jDYFnVNH_yA9YWe8f3JEwBKRH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|158.0|0.7|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|R29BlpLz504VxCL-RkaIeCoPF39y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr03610k|R2CWLrF4wn6OQQ0sn6TRovDRo-g-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|236.0|0.605|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2018.09.072|R2IeZ25j2z46paMbf424OjUUFe3K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.1|0.63|12.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2016.11.060|R2KGKS79JPGrPEJhA1NHTBGptC92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|247.0|0.67|13.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|R2Lw14LhcLFwZ2GvkuHSDJfC9yJT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.0|0.764|15.51|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|R2ihByjDBUBmDPj9Fir6fGY5opvh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|235.5|0.691|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|R2m-oopn3nG_uKxvAh8GdbkR14eo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|41.4|0.51|1.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Ag-np', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b02799|R2ok4g4TnAc0Blg8ntahkJr9YFSU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|R2xEkBF5jZIdXiUOfC9DH_viJrCh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.65|11.7|0.296|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|R38sFmgpB8AQaxMk7yDQZusakicp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06766f|R3D1vt59VNxAGH8NUmgoEgwukFmr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.11|206.1|0.746|17.06|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|R3PpCYZ3-n0ZyQY_P5KohAbhVwHL|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.068|180.16|0.781|15.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||R3To-TmBUSOMnBv_C2Fb6celY8pt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|207.3|0.69|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/aenm.201502027|R3W96t_hQS4DguuzQF_6tMwEXW7H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|224.8|0.77|20.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|R3buY8QkDSIBwCjcfgo_eKlhufFd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|213.4|0.763|15.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|R3tdVw-DkS0qpB1GHEOWOm5d1_li|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58||1.08|228.0|0.774|19.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|R4118KWGZwlqLMW2z2m0XvltB8Mw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|208.0|0.752|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b01108|R4I3SM3RavGhTcOBqHoiWSVCL2w_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.96|221.0|0.74|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.07.065|R4K2J9FEfkXRxEwBoqmm--1RkpxE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.09|231.8|0.654|16.55|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|R4YrhYa2mOGD-OLkqLO0cAgAqGKq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.5|0.745|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|R4ZrVOrLEDwEkJgd3pwg_frypRdg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|215.0|0.667|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']|['MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|R4dC66fpjRqf0_lYGMOQAnNWjcjz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.775|107.1|0.595|4.93|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01162|R4mobwXEOlgriH_HP68RM4hcqiJv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|209.2|0.7120000000000001|15.09|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|R56TxExpFhvv0qEVsKPSCl8kR8DG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|175.7|0.67|10.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-017-2401-5|R58cHLn12YiAMtodm9XtLd1tr_XC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.792|125.0|0.391|3.9|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/cphc.201301215|R5Hhx0UvxFyCWA41x4IGUOSJpxKC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.082|59.0|0.65|4.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI', 'Ag']|['PEDOT:PSS']|['PDI', 'PDI']|bulk|https://doi.org/10.1002/aenm.201701140|R5OLlHmvB9b5KxJ9Dar-6bL_pZTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.0|0.456|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp01259h|R5VhchOW-zEUiLdSydO02_pFZ9y5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|82.0|0.44|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|R5Wi4sq9DHWBdxFi7f8EsCBWfajb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.7979999999999999|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|R5Ys6QvU3KKAMhzQvFUYNdaWZ2sg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|139.5|0.54|6.86|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|R5Z_VSOtBw8nrmxQT3OOARYyc6lX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.04|169.8|0.672|11.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeOAc-Spiro-OMeTAD', 'Au']|['MeOAc-Spiro-OMeTAD']|['TiO2-c']|not processed|https://doi.org/10.1002/adfm.201900991|R5c7nQ4NJBYkKI96KuakTtF7BPZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeOAc-Spiro-OMeTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -BrC20CuH120I59N20Pb19|CuPb19C20N20H120I59Br|MACu0.05Pb0.95Br0.05I2.95||0.835|157.0|0.63|8.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021923|R5hiIsfuTw03hBkrvcXTONycDcNc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACu0.05Pb0.95Br0.05I2.95. -Br6C93Cs7H465I294N186Pb100|Cs7Pb100C93N186H465I294Br6|Cs0.07FA0.93PbBr0.06I2.94||1.082|246.6|0.7659999999999999|20.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|R5qgV6hUxA2eQQtShk0EKFehFHGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7929999999999999|88.3|0.34|2.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']|['HBZ-70']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|R5vRKbowZdBqsq4JMRuJWwqmWg23|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||||||['PET', 'ITO', 'Ag-nw', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|R6-1_4e97IOp1-vYBKkstR-zYCve|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Ag-nw', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -C47H258I121N41Pb40|Pb40C47N41H258I121|BA2MA39Pb40I121||0.9|227.0|0.578|11.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b01196|R6HU_6BBD7a6ZhAUCZC8jX5CHE-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA39Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|218.7|0.69|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|R6LBaLu3Css7joJlMAF8tIRvtJnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.06|115.4|0.647|7.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|R6M1a3uTOgIIg8uPGh9jftvemC2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.6|0.708|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|R6Ni0_gHEmRCEhAP52H1V7AoUco3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.9|0.76|17.54|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8nr10125f|R6XeApy19g33HP_5SnRRUb7zZKhR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|210.0|0.81|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7sc05095j|R6eVmiymH5Lb8fVHG6JiuNj4YC6p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.2000001279573695|0.04|117.3|0.2339999999999999|0.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|R6rSYtIgBj7L6SuIh81H54GPW3Xt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|175.3|0.575|8.47|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'NiO-c', 'ITO', 'SLG']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1155/2020/5039192|R6rtU65xd4qdUd07gyklIhRJxtEj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'NiO-c', 'ITO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.63|203.1|0.684|9.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2020.01.249|R6s-CDT6vaHsVWYHxAzq1kEJeBtu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.99|223.1|0.68|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|R71zHiNyJRI-lYEL9x6J7-yLGy1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.9|0.73|16.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']|['NiO-np']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1002/adma.201504168|R78Hg0r47wQwKW1-s1ZoTNxVbGpB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.14|83.5|0.58|5.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|R7N3qYdwLwUREmiaiiQAD7hS_xZy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|R7RECIEuJndwv8sbtg90I1U4lsoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br9C40H228I111N52Pb40|Pb40C40N52H228I111Br9|FA0.3MA0.7PbBr0.225I2.775||1.157|227.6|0.799|20.36|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']|['DTP-C6Th']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|R7VC1Kn8_cE2aEzfq-xTXA4IyNGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.8|0.75|15.41|['SLG', 'ITO', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsanm.8b01371|R7evmJlfknOvTO0BKv-UTUp8bwXK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|196.0|0.42|7.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|R7rHzURnF0Kxstl0PGiOzBfImlaE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.402|65.8|0.7490000000000001|6.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110317|R7uyO_uURjMajeXdT7tuuCUYeEX1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.0|0.67|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|R82nT6_JrVghiudTccqYBRo7l9J6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.159|225.2|0.77|20.22|['SLG', 'FTO', 'SnO2-c', 'BMIMBF4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'BMIMBF4']|bulk|https://doi.org/10.1002/aenm.201903231|R8FBzucdC39DdToTbfcjJzElufUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'BMIMBF4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|0.59|25.4|0.664|0.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']|['DMF; I2; PVA; TBAI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1362889|R8G6VasWAezXSTKSI4mcDL4bXbNl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|159.0|0.672|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|R8MZRigNW92CcnxQYmQkG3Z4P0Tc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.3|0.705|14.35|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|R8PmUi_HxeYm73mmgQLYObyh0BIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C95Cs10H491I200N174Pb100|Cs10Pb100C95N174H491I200Br100|Cs0.1FA0.79MA0.16PbBrI2|1.7200001834055632|1.272|188.0|0.772|18.4||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d1ta05699a|R8S4PQt2CG9zqr4EWibzIl1Cbxem|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.79MA0.16PbBrI2. -Br6C25H127I69N48Pb25|Pb25C25N48H127I69Br6|FA0.92MA0.08PbBr0.24I2.76|1.5600001663445808|1.1|240.0|0.785|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ee00751b|R8nSBBDzgOVyIlYtMPVsu0VSkMpJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|191.1|0.6809999999999999|13.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|R9-0LeyWax6hdoq1dz8wAjPXQ3BA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|50.0|0.36|1.19|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|R96oCPEDA51iOqpUa7WIeXlNC8qF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||0.99|234.0|0.73|16.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|R9DVmOUKRxYguCB_SEFQiAQSz89k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.867|121.3|0.29|3.04|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|R9UCIVi8sil2qERUvm6xgZyGcjuU|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.1|117.2|0.5920000000000001|7.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']|['Co3O4']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800315|R9b49Egzidtf-o4r5mLMyYbLlvaw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|61.2|0.64|2.91|['SLG', 'FTO', 'BaSnO3-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['BaSnO3-nw']|bulk|https://doi.org/10.1016/j.matlet.2018.02.055|R9f44PqkhdLHR5C2Jtjexpgj1NHW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|212.8|0.71|14.87|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|R9j4f0GrN_3ryvAPX2SSVFXVPjL3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|201.0|0.55|9.23|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|R9xY2gMc8XRiaHrCH8e29fuUySn4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.127|249.0|0.805|22.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|RABxi3yuC-EMCKFEaVcK0htUkPJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|190.5|0.736|13.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|RAFE9MNxCVJaOP-LWc1aRY_HgXvw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|155.0|0.4639999999999999|7.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|RALG38AYTJANwIK99sYa5E5lcVnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|160.0|0.79|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|RAZo5PizMVZ6ijBViPqqFeAQCu8u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|158.2|0.574|7.85|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|RAdjhtQoBnxLzcA-mzQJu7sWTNpG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|39.0|0.5|1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b02651|RAhDOCqPneq9KRZrB1H3kTU4-LqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.005|190.75|0.757|14.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']|['HTM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00271-z|RAvKH2sPoI_fQDfrVHABAWIR0c19|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.122|236.0|0.733|19.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|RAxlMdY9Zs699B-WTGpw7AvkT4-b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.031|242.6|0.6990000000000001|17.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C12', 'Au']|['BTTI-C12']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17386|RAzihqfcPWbcgmy4_4DdFOKvCdga|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C12', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|180.6|0.7809999999999999|13.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.006|RB0HvaLmuIyIEuirYCRthx9U97VQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|200.0|0.657|14.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201902235|RB0ud9ZbTVYZ445uOSglpoLYISND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.11|209.0|0.643|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|RBNNcOGP2y4ulbLSvrMohxJ1qKxw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|78.0|0.7|4.4|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|RBd3aL6aXLp8v2u8hwNdg_Ku5kC9|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|237.0|0.77|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.142|RBfWkDLX7cT5YrN_aTiaFGwXtPbd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|211.8|0.682|15.66|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014001|RBi0emAl--wynWT8_g2DP4I21f1A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.151|209.3|0.721|17.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|RBiD-BADDsLof15wVQSrRxDWgw46|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.8|0.7|15.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b02406|RBmbg_foUIm_coY-rXNH_zHoePHH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|228.7|0.757|19.7|['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/solr.201800338|RBnanQMCNNK7nk4lfI3ZPMrXD0Uj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625||||6.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.075|RBrOWv1DUAonti2cu_i-6iM24OO1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.9|0.6559999999999999|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|RBsXXzUWZLZ3-VNHlFBiiTV6oMWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.13|214.9|0.736|17.92|['SLG', 'FTO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.044|RBsypeb0evR8eg0qeILEVq9eSsBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.062|197.3|0.551|11.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|RBt1p9lAcq-ZAdM7GJmOBF-CImjC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.32|71.0|0.6|5.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|RByKRO8mxfcSYOTb2cjZZZ6BiNKa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.27|61.6|0.73|5.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00968|RC06Y6BbKwlatI_hbsiA-wDDyCGZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.7|0.6579999999999999|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|RC4_EbCJF4T05FSTwg0V8vQByGVw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.98|239.0|0.57|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|RCA1OtrwLbBbS8a0IttU72S_reEm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|181.1|0.731|12.3|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|RCNbrcwrYK9uQikwPHHu7F3DcWdw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.941|203.0|0.78|14.9|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|RCQ5xuwVeIhekF8DyUp_H0bQhO2e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|227.8|0.77|19.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|RCXHdlxJZBwCb-GF70gNYJYK-2Ax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.2|0.77|19.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', '[BMIM]BF4', 'Ag']|['NiO-c']|['PCBM-60', '[BMIM]BF4']|bulk|https://doi.org/10.1002/aenm.201801509|RCXZkJxHCqTH7IZ-poFhZJrNMv9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', '[BMIM]BF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6380001746618096|1.08|185.0|0.7|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|RCZnv4rIvN-QnthGGIreqjfUdpwe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.85|30.0|0.66|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06398a|RCnpAGISMw1T5M5L0_xCj_dDEde1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|158.6|0.69|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.08.029|RCrhkQMnEGzBU-UA_l0MzeqqtBGB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.2|0.799|19.01|['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']|['FBA3']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|RCtW4PkWhDwWW4RJXeFaWk-a7gWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.13|238.6|0.775|20.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|RCtb7q2DpN6EpNpeOuvxqbDvGJa-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|172.0|0.42|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941226|RCvL4wJ9S02SXdZvIFdXjQ5EjLij|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.95|198.1|0.665|12.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b00846|RD-8mxQ8zyE3AAO9u-3h5lVyWVoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|207.0|0.731|15.73|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201601165|RD26eG5W2moj5ECFB6gj_Tjzsgu2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|169.7|0.628|10.06|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5nr06692a|RDGH1u3KtHl_YW9u1VhOmFihvMBS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|189.3|0.7|12.7|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-Na']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|RDI_XIrlz_zoSqLHs2pVt4yobOUl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.04|223.4|0.7190000000000001|17.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|RDLe2awRFGo950bNxeRlNn5YX1im|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.0|0.7659999999999999|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.9b14423|RDSl1__yxNWGUqv3TzV25uPlWTIq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.925|223.0|0.507|10.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|RDcykQFmgfn-i3UlDkGmKuOONHsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.096|200.0|0.7120000000000001|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|RDeVWJ1NmwwnQ1uhSOwHJtoVIixv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.023|207.1|0.675|14.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|RDh8Y8tS5tzvoRoEqjjotM44JbvT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.061|209.0|0.7440000000000001|16.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|RDpQkgG8wWLINQLcQHEtcodbqTri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -Br5C4CsH20N8Pb5|CsPb5C4N8H20Br5|Cs0.2FA0.8PbBr|2.2800002431190025||||2.98||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|RDu4XDVv2mNJP4xrm--X6ks7wupG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|205.5|0.72|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-3', 'Au']|['THY-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900143|RDwt4eUXVA-sPFoaW5I49Q4gbzlb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58||1.06|220.0|0.765|18.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|RE1j2ykHf5G7J9HHsLh_YPxNiQEa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.89|220.0|0.62|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b01049|RE8MjlgyaMhZfwhEGrR_b5drZU0f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|184.0|0.7140000000000001|13.8|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['TAPC']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|REINrOOnwI6FowbGKILyLFuOG9GQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|126.8|0.64|8.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|REcMnv0niP2z6T6QDl3H_d7uTtiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|193.7|0.7040000000000001|14.08|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.01.025|REjYvKp7q7X2X2BWGzRiIH_U8xRu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|211.3|0.76|16.86|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|REqAKl8idtKW3HgtacVN7d0FBhmd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.721|198.7|0.385|5.52|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'IT-4F; PBDB-T-SF', 'MoO3', 'Ag']|['IT-4F; PBDB-T-SF']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b20857|REsF4Y3BFLBhWHU_s-fgQPhdhERo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'IT-4F; PBDB-T-SF', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|119.8|0.66|6.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,8-bis-\n(5-bromothiophene-2-yl)-benzo thiadiazole', 'Au']|['4,8-bis-(5-bromothiophene-2-yl)-benzo thiadiazole']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2014.11.003|REsmMbtvEkK__CUMBQ-YfMJiAkhT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,8-bis-\n(5-bromothiophene-2-yl)-benzo thiadiazole', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|206.0|0.71|14.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08565b|RF3E211IdA9e2Wz9vRjudeGHEIcp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.06|234.0|0.73|17.3|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|RF5442XlgGwkZoDfSr9hBkMIwo-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|151.5|0.75|12.42|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|RF7OP21mziv6NGp0jaFHCUBawXY-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.045|232.0|0.789|19.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2']|bulk|https://doi.org/10.1002/solr.201900224|RFAnOaKqUkOPkckD2IJ7AL863h6X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.86|199.0|0.644|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']|['TTF1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|RFL2NcpugJzoKIReDTYRD__gTDzZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|213.0|0.59|11.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|RFQ5WB5quWtvUppY4H7iK23wSFuO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|164.1|0.486|6.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.03.002|RF_WOtz4YPawKOTk8_XL2IFtmsL8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.35|6.72|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2017.02.003|RFkN_uVbwWKBcEBMVLaZ5E7AvZwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.8|0.792|18.41|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08314f|RFnBQofNrMVhq9hqRdwOYLeCxId0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.0|0.68|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.005|RFv4M_WJJyeKmCXjGiHGatw6zm1a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|149.0|0.54|6.32|['SLG', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b02490|RFxNgS0CqvJHlRQNJJQfcu4jBVCD|a perovskite solar cell with the following device stack: ['SLG', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|165.0|0.57|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.037|RG--p62CJfjqgU9aQvryKLttTOFl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.04|200.0|0.58|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|RGHCzISOK6Z2lJ1AjR4vnsGSglyE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||1.0|182.4|0.7559999999999999|13.7|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|RGNzI7FLG5fdqXLhkSzr7uML0eW0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -C16Cs7H24I25N2Pb8|Cs7Pb8C16N2H24I25|(PEA)2Cs7Pb8I25|1.760000187670809|0.958|169.7|0.613|9.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|2D|https://doi.org/10.1002/aenm.201902529|RGRrh1bBPDJnqb6x1YwlKw29gNWL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is (PEA)2Cs7Pb8I25. -Br3CsPb|CsPbBr3|CsPbBr3||1.25|69.0|0.637|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|RGSmPaAZAFuIUZOCZRESvtcSR60x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|199.2|0.685|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|RGUVq-pVwjTXYjvxaZU9UZFFqYEd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C9H24I5O3Pb|PbC9H24O3I5|(iPA)3PbI5|2.3500002505831827|0.629|2.2|0.516|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta05241k|RGUa6p8x1MjcwFKf7N2bF3JlY7zQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (iPA)3PbI5. -C20Cs5H114I75N26Pb25|Cs5Pb25C20N26H114I75|Cs0.2FA0.24MA0.56PbI3||1.089|223.2|0.7859999999999999|19.09|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|RGWpGZFiD6s6-2HeuGuBiLJGQ6_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.24MA0.56PbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.04|216.6|0.73|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.spmi.2018.03.051|RGutLB3Ewy5OT7gndQvvCvm3XRBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|27.0|0.37|0.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|RGxlHoqwm-HzPlnXH4vEpTeuzJ_S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsPb|CsPbBr|CsPbBr||1.357|71.6|0.73|7.09|['FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ra00288g|RH3bfMGe-MUbpwFuAFJVA_7MgAKx|a perovskite solar cell with the following device stack: ['FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|236.0|0.74|18.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201504144|RHK87rJRbO-bJTb_e480Bf8sHOnt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.5|0.637|15.02|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|RHKBmbCscEyGaPuJN-woslLv40NO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|187.6|0.617|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|RHMN8lk9aQ7Fy2zo4eE8TNpoauN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.0|0.68|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502206|RHMmknSnjhRMVFEOSNuP-TeASaV9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|211.5|0.755|17.42|['SLG', 'ITO', 'NiO-c', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY4']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|RHW2elE1QXoqOv1Y2a7AE4fXy_ck|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.09|235.0|0.73|17.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aat3583|RHX3hxe3G0GfPVjlPh0jgMIKwRxW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|124.6|0.321|3.66|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|RHZEPGp_Oc8K3nuHDJ_dI1Fle_ZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|161.8|0.42|6.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|RHci_If2-4mVEdg0tcJWkEfsNwt6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|194.8|0.6920000000000001|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226765|RHemtuaBxgMfaPvrYZlYGpSQsBKA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|205.6|0.752|15.05|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|RHhQzAWa9vU04uUwRnJLmu9EGmZ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.5|0.7120000000000001|16.01|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|RHiPK1P4TIXva84toCn_n3cZyBCj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|154.8|0.25|2.9|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|RHkAQmX3ABrLUN_wZ-OIgG2tDBB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7200001834055632|1.15|177.0|0.722|13.4|['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|RHtDBhYac5MwD37iIVZXIZGBvX1s|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|196.0|0.55|11.9|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|RI28-IbR0l6RjbSJVk-EltOkPJjY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|185.0|0.68|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b00793|RI2rsYmGkx3HvJWBLt9Ix6VC3pBo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|141.1|0.58|7.26|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|RI6q8FDTRzq1GXSjjCWTJr27RZMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.915|133.71|0.7070000000000001|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM3', 'Au']|['HTM3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00271-z|RIG7HwCwnIHid-7JoLfuHTvlxef_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.740000185538186|1.18|188.3|0.703|15.72||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.jcis.2021.07.147|RIUg8EEDY2oRNcuM7mIlw0ysuJS4|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.93|178.0|0.78|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b10334|RIVYjqiGlepIivN6JzmL86_9AJsh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|232.0|0.74|18.5|['SLG', 'ITO', 'SnO2-c', 'C60-5e', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-5d']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|RIYUKKQF9A7tXcfKkgdvwl9nLwVj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-5e', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|200.0|0.62|12.71|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|RIZNIpgciPj0biHetg4LTx_8F1TQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.2|0.622|13.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|RIZfeJYcfXDynlaj_1ycBwgoHNEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|192.0|0.465|9.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ethanl-hydroquinolatolithium', 'Ag']|['none']|['PCBM-60', 'Ethanl-hydroquinolatolithium']|bulk|https://doi.org/10.1002/solr.201800084|RIbebXUO9Ov1oS5qz-e-c14d6kX6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ethanl-hydroquinolatolithium', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.68|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'X51', 'Ag']|['X51']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201700973|RIiS8bSNeqDhmqPYLl2rhqTlyRnq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'X51', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|156.6|0.638|9.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|RJExzo5GbvoEMvlOQ9DfhpzLInCW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|208.2|0.78|17.0|['SLG', 'ITO', 'MoO3', 'TPA-2,7-FLTPA-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TPA-2,7-FLTPA-TPA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01681c|RJSZc7Z21wnv9FitdhzaO6IbUbSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPA-2,7-FLTPA-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|214.9|0.71|16.92|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|RJZJqznBrQfLU0TbaOgH3W38wXdi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.65|165.0|0.5|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuMePc', 'Au']|['CuMePc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.11.065|RJfLavw2O5KHN7JfBk9uiCAvmku8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuMePc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.4|0.738|17.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b01740|RJj-nWcU6CaWj3-2kY4VBPCdIxpB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.95|225.2|0.654|14.01|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|RK09BvoFYh9hsuORIFgBW75-Wu2J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|187.23|0.6990000000000001|12.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|RK0mVpas2ke7BywEZv924P1lhRsM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr600C200H1200N200Pb199|AgPb199C200N200H1200Br600|MAAg0.005Pb0.995Br3|2.300000245251625|1.14|36.2|0.741|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|RK1uiRuHKK7_4vRwDKwctHTbq3ci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.005Pb0.995Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|162.8|0.728|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|RK6TwSzUhhdyBlhVwXXjLZGCli33|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|222.0|0.62|11.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701456|RKC3z-BkRBAz3mc4jUSXfrqW9T5C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|185.0|0.506|8.69|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|RKKmBYc1jbO6qs0vvt1a9RHHV7lJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.3200001407531068|0.44|181.0|0.696|4.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|RKLCvf_o2_6TO76vPSllt9dqi_r-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.05|46.4|0.482|2.35|['SLG', 'FTO', 'Perovskite', 'Carbon']|['none']|['none']|bulk|https://doi.org/10.1002/smll.201704443|RKMM5XqtjMEp5nNkPFEXBg15y44n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|221.0|0.75|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00801|RKMkBGerYVJCdKli5ZosJjAoS_1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.7190000000000001|6.1|0.385|0.1689999999999999|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|RKP0uFUf7OqB3PICQYEHNA6GWbvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|RKP_GlHnftJsSPGXn6nOkmEatGCc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|227.3|0.73|18.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901171|RKPc3bDPe8MLv8WjmS3VUPhZ_J6I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.06|244.6|0.7609999999999999|19.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|RKRcr1okX7s_IYh1GxuDs1CR_cU-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|172.3|0.58|9.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|RKc9lBtOwdF-fXppEZ9kkKfCynSc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.73|146.0|0.316|3.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']|['PEDOT:PSS']|['PTTI-2']|bulk|https://doi.org/10.1021/acsaem.9b00857|RKdNos6grHCn5Kj_nc2ME8X-qGct|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|219.4|0.77|15.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1007/s12274-017-1894-7|RKjuRl5DI4xcF1Rp-Da5VTGVKnNY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|194.0|0.653|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|RKkcXHMtvuRYTi7bORvpeHPnx0z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|182.3|0.73|11.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|RKvjaPXUoPqIlbFNT8-Yx1r_BTLJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|0.856|181.0|0.494|7.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|RLCE9KgXsfpxtvmEJc-QlEUasjsQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.0|189.0|0.521|9.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.9b02366|RLOXh1U8i4FO90B0QZ1GH5C9bwxv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -C16Cs39H24I121N2Pb40|Cs39Pb40C16N2H24I121|(PEA)2Cs39Pb40I121|1.7300001844718749|1.07|162.5|0.65|11.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|RLRFlv7Vvt6kQL2gpY8kghnSQ3Ug|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs39Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.0|0.75|15.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800103|RLWQKbL7wKNOSnTcDrwMh5sjPL_W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.56|132.0|0.49|3.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|RL_7Tmku16b7eeAdHvDJvrALa1t0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.1|203.3|0.6990000000000001|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['NiO-mp', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.047|RLsbnPXm5J1SgfXDa3HsqIiTuvv4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|221.0|0.65|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|RLtzBsd_MGEynbPu_vY8QP5hNEfn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.17|92.2|0.78|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/sciadv.aao4204|RLy3sJZmr2DFyCrvNeVrDffvQZDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06689b|RM-dcvvCesSkOqXd7PglXw_U_ik6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|207.7|0.71|15.75|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']|['NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsaem.9b01200|RM3ffGPbkCWxYxamptn6tx_4u3E7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br18C44Cs6H220I127N88Pb50|Cs6Pb50C44N88H220I127Br18|Cs0.12FA0.88PbBr0.36I2.54||1.07|226.0|0.695|16.8|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1039/c9tc05439a|RM7xPhJ73z9ctiPm179n0zZ8_fjQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.54. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.1|216.1|0.728|17.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|RM90s1S3jdm5fUSIs0HKhttmkd2k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|169.7|0.613|9.05|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta11238b|RMCakhvp7WslWFlDSzHXWJAfdR1u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.0|0.78|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ta04007d|RMR4mP6eV9nsXpObgdGnpbpWha9D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|223.0|0.77|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-OCH3', 'Spiro-MeOTAD', 'Au']|['HS-Ph-OCH3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|RMRoVyr4n146nWmnHhv4ay6X4xY7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-OCH3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H105I51N35Pb20|Pb20C20N35H105I51Br9|FA0.75MA0.25PbBr0.45I2.55|1.6200001727424491|1.05|223.0|0.78|18.2|['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']|['TAPC']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03454d|RMXkt_gDBQIzT607zYsnO1bn1qOM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|200.4|0.718|13.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|RMYW8Xnf4IXBRFXqjmnLqA3imskk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||1.0|220.0|0.76|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|RMZ8VTF88kKUqmvfGlTsUQ8ngQGa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|192.0|0.794|14.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|RMlfGrjAUeUbet-YqUl-Tgxod--A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2600002409863795|1.32|62.0|0.67|5.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700362|RMmcIqSbKGH4dvO_4300gA9Cq6Km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.78|14.8|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b06164|RMqJlUN-YIcVYBUgF1uGV1b8qmiT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|256.0|0.71|19.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.004|RMx9DZ95q9geu3exbMJvb7YLht0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|178.29999999999998|0.805|11.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.07.081|RN-XUhLXasFUgab8tfA7ISWoiu_i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|146.6|0.48|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|RN1CgyOz2fxwWkpo8DVrkAcsg2Bo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|179.0|0.68|11.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NENERGY.2016.148|RN2s6M9FluyDGGIVYVOIY-41fkeW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.44|138.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|RN55ZuBzOsR2EFbceQzOu2NWAoFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|168.0|0.72|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-1', 'Au']|['PEH-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02014j|RNQEoARVaDXwOhwWxEV9vNb63F9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.57|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|RNZTmGoCGgcKUqZErECq8U0ttbzm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|181.7|0.73|14.06|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|RNeTyZMxk6CisXEZmgBVfkoWw7sf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.061|206.4|0.6659999999999999|13.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08741h|RNoyYmqDJUZS1rtBdspy-NGwpLlT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.63|25.0|0.15|0.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|RNs5PqJ3R6mXZxWneDxaJZANw6P3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|223.2|0.73|17.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Cu9S5-np', 'Au']|['Spiro-MeOTAD', 'Cu9S5-np']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b08888|RNuLQP5MWUV0m0sok3-m8FzINBvx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Cu9S5-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|231.5|0.6970000000000001|18.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.orglett.9b00988|RNyfMz-Bif100Zflh_G1jp1SRfX3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.08|243.0|0.758|20.0|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1371/journal.pone.0227920|RNyvsXOmNhVqYuROGFwcxGDbUvdS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|190.0|0.62|10.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|RO0yyJb_YljCclYNh6W3wqmK3pRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.74|16.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1039/c5ta01898f|RODck1ZC5Lif2pWWqvFWSmULNbua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|167.2|0.66|9.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01718a|ROI91EkvAXd9uF6bxiNhot4XBwVe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|221.1|0.7240000000000001|17.2|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|ROOBaNJhAvyUZvEGITfyYr3JH-85|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||203.0|0.706|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|ROSLh1XY1OQwNXnbiJw1ZjLVC7Xs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|235.0|0.79|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'PTAA', 'Au']|['CuPc', 'PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01931a|ROV5XzzQpLOxHCB3Mfv8JtbMfam3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|229.0|0.735|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra12304c|ROnERV_DZ_PO78jfWINGhvs-LvTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|124.0|0.57|4.8|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3nr01542d|ROowY-RDworz-MCdxeiLzJs2_2yD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|243.8|0.76|20.34|['A.R.C.', 'SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02044|RP0JS0i7Y_oUTLlej-ZjiI7KahH7|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|235.0|0.474|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta02851a|RP2HG01njHNPSNbUt_6kzjpBr6Jh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|135.0|0.62|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b05986|RP2KMUiWReAl2FU9JUaP_IlsO2iD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|219.0|0.56|13.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|RP2XHLPplLsPWz-dMm4jYNfcIB-3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|178.0|0.64|11.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900922|RP5nnMkzxq-6JNOGdFuwaSUSY0Xw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|RP5sPeeQ2p8Nzyszto7cJo7Una5S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.0|0.73|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09174a|RP7dQrtkhEj16zE7hi3qXwtdfrw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|148.0|0.7070000000000001|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|RPGcDSiZ6lREzv9r8OF28bPK8tCK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60Cs17Pb20Rb3|Cs17Rb3Pb20Br60|Cs0.85Rb0.15PbBr3|2.240000238853757|1.328|62.6|0.758|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|RPSW5zPixF6ebgOL0YskcZkBnPur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.85Rb0.15PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.0|0.52|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110130|RPXBeMk6D69zbUyGpnSEQvoXxjv5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.7200001834055632|1.24|192.0|0.74|17.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803699|RPYBIsrrcC6of8gMkIHBm7iqqBqZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|226.8|0.74|15.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.03.017|RPdlbgAEXKKS5RoJSLC3q3qBtHoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|217.1|0.7190000000000001|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b02848|RPiBqYYP_44Cr770EZiORUVqfDB0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.12|99.5|0.731|8.15|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|RPju0KqpKCue8MiB_1OphDyKOvjR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|126.0|0.728|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|RPpo1rgdBHI80bL5MfcDAD0VjDHQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.26|66.2|0.74|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-018-0187-3|RQ02R6hy7ih9sz-C-s7ZOG4MZnPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.983|170.0|0.61|10.3|['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01755f|RQDbkq0DF258CzL_09h3tG7L-qin|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.3|0.71|12.64|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|RQEZv9drMqVhWCqspnzGTB8QchZj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.15|223.0|0.8|20.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8tc04231d|RQJHeKH3nXsLpdLMf14DvYVlYTY2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|222.0|0.77|19.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01760g|RQLvMYUeHczdTPdPu0dyO28uH0xw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.696|62.0|0.55|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|RQO9ebda2F8PnXzRG0ZamUX6eSNU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.5|0.77|13.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Alq3']|bulk|https://doi.org/10.1039/c8ra01633j|RQPA8Jkw9t95tvZmUOQLDmbxFXkC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C219H3339I1904N744Pb610|Pb610C219N744H3339I1904Br45|(NH4)5.1FA0.15MA2.04Pb6.1Br0.45I19.04||0.97|174.3|0.617|10.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|RQSepEcYhyafWtwVoBDrvK10rA_S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)5.1FA0.15MA2.04Pb6.1Br0.45I19.04. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.7300001844718749|1.07|243.0|0.6|16.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-P1', 'Au']|['HTM-P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02960a|RQTx_0N2tgTDogOIRi_ZwPJ_TpQc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-P1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|151.0|0.71|12.19|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|RQhQX9kXpdzabm25cwogI4Yjo6Tk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|227.5|0.7859999999999999|19.12|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|RQiYAopiBX6qT30ZNUzS7OoZJmI8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|158.2|0.725|12.16|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['CuO']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201501330|RQupz660mj77-PPev_ELQheigpkP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|212.4|0.67|13.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneTTPA', 'Au']|['EtheneTTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201502741|RQwgZKQ0aSJ2hAp9y4msuX884r0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneTTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.9|0.76|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|RQxIj7-svs3qwKFR5n6yOaImR7rE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|228.0|0.63|12.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2017.09.008|RQyCqOfLKdCY1iUr2c_4QqEkCUhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|0.85|191.7|0.72|11.73|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']|['P3HT']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsaem.9b00856|RQzsx5EDOWcJ7yMm5yNbDOgMggaW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -C25H150I75N32Pb25|Pb25C25N32H150I75|GU0.14MA0.86PbI3||1.071|212.4|0.753|17.13|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b04060|RR3z79jpw61vc-Vqgl7UihOaCWjM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.14MA0.86PbI3. -Br100Cs100Eu7I200Pb93|Cs100Eu7Pb93I200Br100|CsEu0.07Pb0.93BrI2||1.1|145.9|0.7759999999999999|12.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.10.008|RREn5orneSzCoPOKj1AXqw0TJT0e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsEu0.07Pb0.93BrI2. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.594|77.5|0.81|10.0|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsBiBr3-QDs', 'Carbon']|['CsBiBr3-QDs']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|RRK3MHDdAxZ79oLajiFR1UDGWvUe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsBiBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|102.0|0.51|5.0|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|RRRr2YElfE6oxIzyCE3GKKxRlqC4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.1|217.0|0.69|16.4|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|RRaPpUC6-k6gjvFQgC50Sl0B7DNJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -BrC2H10I5N4Sn2|Sn2C2N4H10I5Br|FASnBr0.5I2.5|1.5300001631456466|0.345|175.0|0.6|3.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00976|RRgESQ5apvjPPjcutG8CxaBMs9_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|165.5|0.53|7.65|['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovsktie', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1007/s11051-017-4081-6|RRoYC1aST1HnDmbNs7PuXhXlCZkD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovsktie', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|177.0|0.8|10.49|['SLG', 'ITO', 'PEDOT:PSS', 'Si-np', 'Perovsksite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Si-np']|bulk|https://doi.org/10.1039/c6ra24205g|RRrFRbQt0VNLzCMRoNl3Ait8rQ4_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Si-np', 'Perovsksite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.13|231.0|0.81|20.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902653|RS6POuJYpwhSy3-OqfUfyu6HUGWO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|216.0|0.7|17.38|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00845|RSAgWFEHYHTC-pe7cz0JPzA9_DBW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|226.4|0.774|20.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|RSDO9KIBpcVJwTWYZzYNsVlmLFAb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|225.7|0.765|18.12|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|RSNk3W_38V774RIN6DN1ydB5WqIo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.8|0.73|17.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00769a|RSVXk6th8G8YzWpIFEDzdjHkp_jR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H116I51N24Pb20|Pb20C20N24H116I51Br9|FA0.2MA0.8PbBr0.45I2.55||0.95|191.0|0.711|12.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|RSYD3-InENs3uAE1Rw-_wO6DKi1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.45I2.55. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||16.36|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|RS_Dz05uyCznWWdQe7t6fXsZzrlX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.66|202.8|0.67|8.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900219|RS_LJjQjS4XyA7uQzpaal8WP3fLu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|164.8|0.51|7.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|RSpunKCIulZOG_1DxA_nQSbsvQ1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C11Cs9H55I60N22Pb20|Cs9Pb20C11N22H55I60|Cs0.45FA0.55PbI3||0.94|180.9|0.56|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b04107|RT5WyIiwBC44UUqK7R3LKOcZBIG9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.45FA0.55PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|193.7|0.75|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.139|RTFuGHQrh30O3Bbgvh4xAC1mJh5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.0|0.647|14.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|RTKdbkkqKmzOanHFvnCrXM8MRZy1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.05|220.9|0.74|17.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00169|RTMQDHuqdFc2GviNiPS7GeDHiHXn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|203.19000000000003|0.7559999999999999|15.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|RTfu4bJAbVcCv0n06gy7yrJkw65E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|103.1|0.49|5.08|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.3390/coatings9050320|RTpg23J2TO4aXroO0xwatg0tut3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.055|144.70000000000002|0.332|2.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|RTuR8V4oDyBA5Fu44UliCCUjv015|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -C91Cs7H457I300N184Pb100|Cs7Pb100C91N184H457I300|Cs0.07FA0.89GU0.02PbI3|1.5300001631456466|1.025|234.0|0.74|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00127h|RTxJKbeT7KNgyQcDI_0R-cl3U3R9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.89GU0.02PbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.2|0.799|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|RU1z99Un1qEfDTzFS4f4QZj_RKiJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|167.10000000000002|0.657|9.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08783|RU4ZPignRXSIesT44Docm-f6w689|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H6I2N2PbS|PbC2N2H6SI2|MAPb(SCN)I2||0.87|151.0|0.63|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201503038|RUB7qQmbNuILPtPprvuX1QofUkzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb(SCN)I2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.0|0.68|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|RUNfzT59z1jVPa9jKc9sUDN1F8FA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.05|227.0|0.653|15.5|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra04311b|RUNmGCBsJHkUoJbsoRzUvclHiihK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.9|0.645|15.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|RUTLM-HVayUym5Se4v8axY8gyLQ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.12|226.0|0.8|19.8|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|RUZUZILYaKzTI5lE3FXx2_GLEEGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.0|0.726|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.256|RUftDAii_Qc-541A1MuRjf5w-D10|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.640000174875072|0.807|70.1|0.622|3.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941221|RUocT8jBKOxWhYX-X8rqUE99Up-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|212.28000000000003|0.342|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|RUq9oHhnd7RMKmLhqvFSOcwcOAy2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|150.7|0.6679999999999999|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.172158|RUwwSxoFhAQNvyFQM7Tznzi65-0-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.758|17.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|RVDTvmVyZN2C8bLxq8NnCOKUk1bf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br33C100H556I267N144Pb100|Pb100C100N144H556I267Br33|FA0.44MA0.56PbBr0.33I2.67|1.6200001727424491||||14.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900050|RVLeOl_6yyxlDy28uo4GGG2retlg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is FA0.44MA0.56PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|215.7|0.68|14.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|RVSwgbiOS6L9H9vs6DQEx8b8p_2Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C13H46I13N5Pb4|Pb4C13N5H46I13|MA3PA2Pb4I13|1.6300001738087604|0.83|190.6|0.55|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.joule.2018.11.026|RVU4Hlhs1tZdpys9hyBZFnYLTDyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3PA2Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|181.0|0.76|15.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|RVcFa2pIRSLijGPjX_sXNdZnsWMX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|219.6|0.71|18.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|RVqHScdtVPOA7EC_VC1C00pXTTaa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|141.7|0.66|9.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|RVrfGVEbW9ueavCqOw4wxzcjyAWi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.3|152.0|0.2789999999999999|1.3|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|RW-_jGpu7GS-6WWxwByDKzyuc7Se|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.4|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|RW-sy8QBOr_GaN_WtUR6wIq0F4gQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5589999999999999|101.5|0.594|3.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c1nr10867k|RW3ZGALr4zNsA12VShmq02NgjKyW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.0|0.71|16.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|RWPFFEJ3o0Woq9HNpxgRyUjdtgSz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397|0.96|196.2|0.675|12.71|['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']|['AgI-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b14023|RWS_nOaXihXhbdTLEVhyLLQXyJVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|1.2|29.4|0.7090000000000001|2.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|RWgdcCrfvaFGeDLX8rto6PmJU4IB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|30.0|0.46||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|RWjumwNFFszuERdpPrV6oYotY9za|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.0|0.58|12.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|RWl4GgvLtbwOZTLpX3MTsr5feXJ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.0|175.0|0.503|8.8|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'ITO', 'PEN']|['PTAA', 'NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201907481|RWwy9uHkdfVD8c6PRx43DU5xTE8e|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'ITO', 'PEN']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|197.4|0.7040000000000001|14.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|RX51OIvqcYkq2BghN-JPDoOfH4_R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.755|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|RX6HtBj263ZdaY73fcL5D2jVmLjW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|223.0|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']|['Graphene; P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|RXAycXw6_k0M-aeu-sLqdp953Hxu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|181.0|0.561|11.1|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/LED.2017.2735178|RXH_h1zUFmjOmy-C77zA7Oc-kEfA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|202.5|0.67|12.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c5ta02265g|RXTAd5qq6FeFdUi00ACFHI4dR_s-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|163.4|0.524|7.36|['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Graphene; ZnO-np']|bulk|https://doi.org/10.1039/c7ra02036h|RXuLNKPNu7gnIoMeuDRwQMGT_bDU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Graphene; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|140.7|0.556|7.18|['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']|['Co0.695Cu0.305O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|RXvwrhyXVIR_vX2NADhcN27q83x_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.13|238.8|0.77|21.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|RY39NX9xDiSWlEVKvLqXThTBAB94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|125.0|0.68|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.08.070|RY6XEA_TxkfzF2b2lz8szm2ecur9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|179.89999999999998|0.61|9.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.3390/polym11060980|RYF1DEHQ6-9VlaVIkjw7DYJVdwNi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.078|201.5|0.6729999999999999|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|RYJ64xfTQjf7wpG5sIKQN0SGxyCu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2I9K3|K3Bi2I9|K3Bi2I9|2.300000245251625|0.52|3.2|0.502|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|RYKGzIuKE8dMffdHzqQHHrLtUnto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is K3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|131.1|0.65|7.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|RYLaCfyxNQCm-xBMWw5S6dXzIfTx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.44|161.1|0.3|2.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1109/TNANO.2016.2524689|RYP-wo2nU8RiF9Svn8d5J_GNT9k0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|219.0|0.63|14.6|['SLG', 'AZO', 'ZnO-c', 'ZTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZTO', 'PCBM-60']|bulk|https://doi.org/10.1016/j.cej.2018.12.056|RYSnuSsgknNUSuzAuU4axOxipPBb|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-c', 'ZTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|146.1|0.44|4.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|RYibxbpMmyagxBoecyYA6dpD7p2A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.3|0.68|13.34|['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSe']|bulk|https://doi.org/10.1021/acsnano.8b01351|RYmRxvS-Xu-d1uKFcCXSxMRCnWGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.903|220.8|0.654|13.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|RYpJjqQ2ok-i_1epam5L1FYZFFtd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|1.02|20.8|0.62|1.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|RYr3KA2I_psI9EcpkIdMoictN8JZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9700002100633487|1.1|109.0|0.49|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s13391-018-0095-1|RZ5QcTIMNj01iytAjl7uZw9FFB8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.04|224.7|0.659|15.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4953834|RZSEbImcWCRkjbnP9TNyxdHCllfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.61|173.0|0.677|7.15|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|RZXjwXioMz-6n0Pla_0aYbTu7nQr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.98|211.5|0.57|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.materresbull.2017.07.043|RZY7eLb6lS8KlbiZW1oVXWVsGqAG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -BrCH5I2N2Pb|PbCN2H5I2Br|FAPbBrI2||0.92|79.9|0.66|4.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|RZ_ugtEf1HxDXI_CeRBIsV9cJGiZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBrI2. -Br12C4H24N4Pb3Sn|Pb3SnC4N4H24Br12|MAPb0.75Sn0.25Br3|2.030000216461217|0.76|32.2|0.61|1.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|RZbhO2y5Z-AnjsB7HFN3ur2nZbol|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.16|174.3|0.68|11.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201803269|R_-dkrSojdzIlbGReqWVWzjHD2SQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|R_CTUDsyUaxraLtrSSNni2oOb7Sq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|R_E3mGXY5CAb3q6SPkFrIvWol6UR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br150C100H583I150N117Pb100|Pb100C100N117H583I150Br150|FA0.17MA0.83PbBr1.5I1.5|1.858000198120661|1.069|103.29|0.789|8.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|R_Jw1jlEtBMvGE65Gac9Gu013z2f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|131.5|0.57|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|R_NRhEQDJav_oCJaYxy0KbCmI_SK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.6|0.47|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|R_Sbo_MCiPpzwS-RVevSuKXgc5tX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.0|0.65|9.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|R_bEpgklmjmvSKJa7gG9TZwBxJe3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.406|195.79|0.525|4.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||R_ueREtyr_clIrPxFMRzPDPtgqlm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|211.8|0.75|16.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|Ra756ytKs__NqA4AKbMcFKL3QTJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|148.0|0.6809999999999999|9.1|['PET', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|Ra7Sx8DJBp99j424nAH2Edl4ASGT|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H50I27N20Pb10|Pb10C10N20H50I27Br3|FAPbBr0.3I2.7||1.09|230.0|0.7979999999999999|20.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201800346|Ra7XtewugKYB5IslMLk0j8bNDBd-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.3I2.7. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.08|220.0|0.74|17.3|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|RaCxus3I0V7QRXrribsJNi0UdFeo|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.16|72.9|0.263|0.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|RaFTjOExrZ7_yVGjRz032ll4LSdV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.86|130.6|0.652|7.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b03324|RaNq-qV5a2wT2VacGzm6p5t-xocS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|244.3|0.58|13.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mGO', 'P3HT', 'Au']|['mGO', 'P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.renene.2019.07.162|RaQU1IlMQ47P44H_ZNo_GSSao3fJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mGO', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C83Cs17H423I261N158Pb100|Cs17Pb100C83N158H423I261Br39|Cs0.17FA0.75MA0.08PbBr0.39I2.61|1.6100001716761378|0.95|193.0|0.63|11.57|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano10061082|RaQtLY1Dpv9-Xeze3R2skkqAyg68|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.75MA0.08PbBr0.39I2.61. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.15|233.8|0.75|19.15|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|RaVWR84WZW4KmuZ-4NkX18350L1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.5|0.69|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|Rakq2ZtwoPX1rarWlvIgDa3zAz0j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|212.0|0.706|15.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2018.10.020|RazqKdOXYV4LNWVls6am5eVXa85z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|213.0|0.67|12.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|Rb5eLYm8ec9_E19mAa-eh9czFmN-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.03|233.0|0.77|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|RbElQ_zad-w8PXVuYC_vEn1Glstm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.85|65.1|0.184|0.94|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta11744j|RbUQW5Zlb4WO6W0nCGUl17ISRTC1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|150.5|0.583|8.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2919|RbW0Sin23NZSiOO-xBuuoYWrij91|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.2|218.8|0.5760000000000001|15.12|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|RbWqCa4IhTXRkA02_y6PqejAwRIa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C331H798I300N100Pb100|Pb100C331N100H798I300|(PEA)0.33MA0.67PbI3||1.08|160.39999999999998|0.59|10.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adfm.201901652|RbcffvifQF8ilZZVijYeKNcNRsqM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.33MA0.67PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|71.0|0.66|3.88|['SLG', 'TiO2-mp', 'Ti:TiO2', 'ZrO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-mp', 'Ti:TiO2', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00760|Rbgp4DX16nVhaZkF5DPp3neKmGZY|a perovskite solar cell with the following device stack: ['SLG', 'TiO2-mp', 'Ti:TiO2', 'ZrO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|145.9|0.7|8.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|Rbpb6faRIgQDNpcz-SUBFT1J6ExS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|169.86|0.652|10.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|Rbu63rhoHWWr_tbXyhQiNA1WtnQd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.618|85.9|0.428|2.27|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cej.2015.06.050|Rbu_dmivQ6fZolFwziHM_kaGcWUJ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.1|0.72|13.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|Rc-1nKC24_Ko_c8Mml_eWEelZz4n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.55|0.579999999999999|0.251|0.02|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|Rc0wrvCZPsTsryt3hSTuJYtSXh1U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|128.5|0.6659999999999999|8.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03593G|Rc7dkSn9vu1HTAD9kftK6mJZGpp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.775|78.5|0.4579999999999999|2.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.04.028|RcCq7mWNLTWX9SQDCfA3YBl7WG6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.17|155.8|0.7240000000000001|13.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09855g|RcFrGkg51rFeXtpmc6Qxd8r_6P_t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|177.0|0.631|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3303/CET1652062|RcIvPvxTEOFgu6qfZf7q8KWZE8a7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|184.9|0.649|11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.081|RcM2wDe5ZQo38wCvzGBKdwXxxJOd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|185.0|0.62|10.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|RcmrALyMO-uptVhhIRMBRw7XaJUM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|60.0|0.38|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEH', 'Ag']|['DEH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz400638x|Rcty9cqamZxcIU-HYiOjQUDnPnNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.89|188.0|0.77|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|Rcw2ouVjL908KHYfbZJ-Km7gRdlz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|||||6.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|Rd-lncJinhYBN_0eIfLdzyTn5Oxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|222.6|0.73|17.15|['SLG', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['PEIE']|bulk|https://doi.org/10.1021/acsami.9b03298|Rd1fWXpOZAhjN56BsMvLzLLJaQys|a perovskite solar cell with the following device stack: ['SLG', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.068|212.0|0.735|16.6|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|Rd30JY__w5unlG1feElDvLn9oGyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.723|122.0|0.31|2.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|RdB01CsNSOlQd0jaINfGc5R_UbGd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|183.8|0.594|10.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|RdFBxUUqeG3jzsUV9HfZY25O-F9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.4|89.3|0.76|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|RdITg20XciNOtCtC0iI31T10lTq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|69.5|0.64|5.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acs.jpcc.8b01264|RdLeKw_TpTOnidgN58Dr1BcriSdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.86|192.1|0.705|11.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|RdQ2mtWCFUK8L4Ay8lAm7d_05upK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.7300001844718749|1.224|175.39999999999998|0.784|16.83||['Spiro-MeOTAD']|['SnO2 Nanoparticle']|bulk|https://doi.org/10.1002/solr.202200252|RdWnHCMGzaU5gswzanWHHSY9p37k|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|175.6|0.352|5.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '9,9’-di{6-[3-(2-(4-methylphenyl)vinyl)-9-carbazol9-yl]hexyl}-[3,3’]bicarbazole)', 'Au']|['9,9’-di{6-[3-(2-(4-methylphenyl)vinyl)-9-carbazol9-yl]hexyl}-[3,3’]bicarbazole)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2019.04.003|RdYR-4elodR2l75B4N5dx4kP1H-E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '9,9’-di{6-[3-(2-(4-methylphenyl)vinyl)-9-carbazol9-yl]hexyl}-[3,3’]bicarbazole)', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.077|240.0|0.779|19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|RdbMgFYhWNNYrNZCj2igzmgzX4An|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.083|208.4|0.66|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.048|Rdw0jj4TKuQ9TlJaswbok3loDc1R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|186.2|0.43|7.35|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-24436-6|Re-f3LqQy54_03jDKtbsP31nsEcN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|195.0|0.58|11.08|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Eu']|bulk|https://doi.org/10.1039/c9ta00551j|Re2GgrPJ1IWYFXDsVQPcYrzxwm8e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|0.937|217.6|0.645|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.035|Re6uKFWm5HOAac0_XYsM0QEv5O-2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|ReCfy4FYQ8P-BQ26j8GlQLpaZQ2p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.91|198.9|0.62|11.22|['Ti', 'TiO2-nw', 'Perovskite', 'PEDOT', 'ITO', 'PEN']|['PEDOT']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5ra23430a|ReK1SynkOt2OEkH7TiF5CtxfFlVb|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nw', 'Perovskite', 'PEDOT', 'ITO', 'PEN']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|208.0|0.63|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4sc00814f|ReQlDOCAS9K5kZi9f-SkrQbr69cx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|160.0|0.58|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|ReYtDfboNVXACClyztAVQzq8DZLe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.04|222.7|0.68|15.81|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']|['PTAA']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|RedR_O0iiqZ5W4wX8Lp5nvlP535G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|123.1|0.48|3.74|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/3/4/045022|Rejl5NR6CsrF4m9Y4Z_MpD5IAjue|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|208.3|0.53|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|Rf4Vz5OthpdggbK0gdyUul7DJlgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|203.9|0.703|14.6|['PET', 'ITO', 'ZnO-np', 'p-(F)-PO-TAZ', 'Perovskite', 'PB(NAP-Th)TBT', 'Ag']|['PB(NAP-Th)TBT']|['ZnO-np', 'p-(F)-PO-TAZ']|bulk|https://doi.org/10.1016/j.orgel.2017.12.017|Rf52wDjQakRzlO17RrpihJpEHcfY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'p-(F)-PO-TAZ', 'Perovskite', 'PB(NAP-Th)TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.8|0.757|16.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901719|Rf5SzekJaH3zqBDZ1tVEmYFWl3K9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|145.1|0.52|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4916345|Rf9Jgl0Vkrx5-f8hwlXyO0JKke9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.99|163.4|0.539|8.75|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|RfGV5BIyGKM0cV9G1cdIHU4OMyzh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|218.9|0.73|18.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.045|RfJLCCtkJY9bS-t_aNvHNEjJ-Qfs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Bi2C3H18I12N3|C3Bi2N3H18I12|MA3Bi2I12|1.8000001919360546|0.562|7.800000000000001|0.38|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra07123j|RfPrbazxPidpM3LqOVKw4wK18Wpt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|171.4|0.7|11.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']|['Yih-2']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|Rfa0KR-B42Q123vurh8N_538g3q1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.91|169.0|0.72|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|RfdrvXE1-zHVicV0YfuWuGYIYlVo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.64|292.0|0.6579999999999999|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|Rfikz69tINc3AD55sChoJNKurazu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.031|213.7|0.738|16.26|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201700414|RfleZmF8YGDj1L4PSri94nKHvl1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br78C185Cs10H960I522N365Pb200|Cs10Pb200C185N365H960I522Br78|Cs0.05FA0.75GU0.075MA0.10PbBr0.39I2.61||1.109|199.2|0.6679999999999999|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|Rfrpg3ztpXvTasv_ZSRNChRIKqdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75GU0.075MA0.10PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|175.0|0.74|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|RftABCH-VwVVMXG6zp3nfKKdreMQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -Bi9CsI28|CsBi9I28|CsBi9I28|1.7900001908697432|0.43|27.0|0.42|0.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.inorgchem.9b01233|Rg6m3xG_k3GVSbNM1Ivdk4nal8Dq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is CsBi9I28. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.54|11.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b03884|RgJAnfClzFdzNDl7io0AIeAViWZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|169.0|0.66|9.16|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC04|RgM1NrOcOQKg9vxG1eJ63NogdRRz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|163.79999999999998|0.68|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|Rgg2n9p9XFFl0DnMd4FCM2Ni_6WO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|80.0|0.46|2.02|['SLG', 'ITO', 'WO3-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|RgrjZwUWdfxxV7dXZ_od7CGEnB7I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.82|189.8|0.53|9.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|Rh0h4gnLY9GUJl84R1bg9dptzl_I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|236.7|0.36|6.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.eurpolymj.2018.06.005|Rh0l2O5_hu549yAT6KwwLto3ftJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.0|0.802|17.4|['MgF2', 'Quartz', 'ITO', 'PTAA', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']|['PTAA', 'CuSCN']|['PCBM-60', 'AZO-np', 'PEI']|bulk|https://doi.org/10.1002/adfm.201901476|Rh9oTzAU8BX2lCbbAkToIAa0uwQx|a perovskite solar cell with the following device stack: ['MgF2', 'Quartz', 'ITO', 'PTAA', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.545|73.7|0.8220000000000001|8.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110317|RhHvmz3csW67Rlp3P-GHj9ffMriA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br1000C5000Cu59H30000I14000N5000Pb4941|Cu59Pb4941C5000N5000H30000I14000Br1000|MACu0.0118Pb0.9882Br0.2I2.8||0.8590000000000001|195.0|0.685|11.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE10|RhJle5OPnTfV4maMyiFaQFANyTjB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACu0.0118Pb0.9882Br0.2I2.8. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.4|30.7|0.261|0.32|['SLG', 'ITO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201601130|RhQWUTQ5WES_RAq3GmiReGPnPzcx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|200.8|0.65|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.03.152|RhRrhB-2bQdc3lHz1cT8R5gUUL7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.26|62.0|0.53|4.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|RhvzEvq1YGKWYsCQaJR7Ox5fqGSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|211.0|0.7|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502720a|Ri8Q9G6K7K8_lHBofP4dWfewWBAE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.8|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|RiA9C1sJtXKsTmjvDlz9MXom9uPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C69H126I32N13Pb10|Pb10C69N13H126I32|(PEA)0.8MA0.5PbI3.2||1.15|177.7|0.63|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.9b00972|RiClHLAquosiXJZG8r2DXNRN3sqt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.8MA0.5PbI3.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|175.0|0.44|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|RiHi0USJHJaK-BAy0fBKm6o-Tz5W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.1|0.75|16.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|RiNyesZh4iazBi6scPfLW5ID6zra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.7|0.691|14.35|['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']|['X1']|['PCBM-60', 'C3-CBL']|bulk|https://doi.org/10.1039/c8nr00898a|RiOFJ20dNhprkTq9MT_rykbeR3np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|180.5|0.6459999999999999|9.11|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|RiTdkhl4psidkrgssnHiFQQSF1Pp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.2|0.7240000000000001|17.49|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|RiWUsm-r1xYdEjYd0Ng-HtcDQnHv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49||1.096|193.8|0.6709999999999999|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jcis.2018.09.045|RiXyEJ7nfkkQWeNB58hA8D-bFuZS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.2|0.79|18.63|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8nr10125f|RiYZytmko7rnAoXL1783ew3XSosz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.9|0.7120000000000001|16.63|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|RiaRNJvYXaz457EmrIoVND_-QEjT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||1.01|223.0|0.66|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201606831|RiaW-Y7fSaex-fQuL_yXoCFMUjr7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.5|0.75|16.32|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']|['NiO-c']|['PCBM-60', 'AgAl-np', 'Au-np', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|RifPVF4lBHKkIDlEFBCUWg6fC3vp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.3|0.6|10.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|RimxrRx-4gcce9-uYRWD_mrPaLDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|197.0|0.51|8.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|RiyySP_8rs3g4cLhgErW5Q6TgjSZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|197.0|0.573|10.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|Rj1ft53O0g6UPg3dp-CX0QWEFVlm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.042|0.0|0.307|0.0|['SLG', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9020193|Rj3c328QfjBqxjYIaIJty-7Zrljv|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|157.0|0.64|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4890545|Rj4XMPXfz09RY_FmlkyFkMh6A4KA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.05|232.2|0.7609999999999999|16.8|['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']|['PTAA']|['PCBC6', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|Rj76rlDbDf7bmyKirfFQPtVZzeEw|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.116|216.7|0.71|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|Rj7j_hZHT7zt8vO3P3jBtXsnR85L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.2|0.65|14.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|Rj92p3w7ZBQfzdYKffblo_R8Odi_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.02|223.0|0.624|14.4|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c9cc00312f|RjTCcPfObC8WSJ5RpdzQmiSQQ8Yf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.5|0.73|15.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09709j|RjdG2bVHUYV0k1DJaL1OccaoL2HA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1|||||15.9|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs', 'C60']|bulk|https://doi.org/10.1039/c8ta12561a|Rji85anRI-MpecC78Xqyl-nOidIt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -Br17C100Cs5H517I83N183Pb100Rb5|Cs5Rb5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17Rb0.05PbBr0.17I0.83|1.6300001738087604|1.18|225.6|0.818|21.76||['NiO']|['BCP', 'PCBM-60']|not processed|https://doi.org/10.1002/adfm.202200431|RjrYWCqRv83_1NAtnm4OvHUFQ7qr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.83MA0.17Rb0.05PbBr0.17I0.83. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.077|216.1|0.735|17.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|Rju-FUe0i0VWVKTl0i44RAJpW_eC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|88.0|0.41|3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'tris(4-(5-hexylthiophen-2-yl)phenyl)amine', 'MoOx', 'Ag']|['Tris(4-(5-hexylthiophen-2-yl)phenyl)amine']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|RjvH0-HkSaZmDEc0V8WEkgoM-Mw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'tris(4-(5-hexylthiophen-2-yl)phenyl)amine', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|148.6|0.71|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|RjvfGSGF5EV5EiMdjUNYbKXmDW48|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800554|RjzoBdvM3yuWmWGKbMfybqbz8LN5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.94|122.6|0.614|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|Rk7cEMQO5TfDihOmJwymrvLXl3tZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.725|236.0|0.73|12.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr03507a|RkB_iYbeB-FL3rqTnWc8P8bci_ez|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|128.9|0.732|9.32|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|RkFFz9YLEyg7-y-ProejFT4aMn0v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.98|108.0|0.695|7.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|RkJwHm5bAPwXOA0H61UFu5svm5MZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|181.4|0.65|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|RkNAfMnCSFwFFFLQxj29N_-hNYkk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.31|145.5|0.7859999999999999|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PIF8-TAA', 'Au']|['PIF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03413|RkNd2644WHX0y45e4G_5fgwihcWb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PIF8-TAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368|1.24|134.9|0.631|10.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA', 'BCP', 'Ag']|['NiO-c']|['ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|RkVqNWWbRzil6b4yi3UECXzlPJsE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.01|202.8|0.72|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|RkW4e2eFb7PXgKGAZHnTodJDq8rF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.3|0.74|16.15|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpcc.7b10018|Rkks73yXYy1nfOdVo-gCbeWxd1hR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|154.60000000000002|0.573|8.53|['SLG', 'ITO', 'YC-3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['YC-3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pip.3205|Rkmri73vANFjsd8R1-vBM0ha1dl3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'YC-3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|180.0|0.68|14.2|['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|RkoXd-YiOy_2Cz2NStEFWv4OouOY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSb|PbC2SbN2H12I6|MAPb0.5Sb0.5I3||0.648|16.8|0.718|0.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|RkoyaXi5ZQ0xHT3waUTG_teBweI5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.5Sb0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|182.3|0.52|8.34|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2018.10.034|Rku_WdwLqNfEnliYL1_xaSGvMATA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.0|0.807|17.98|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b02611|Rl-vkyO6xOQ-D4N_k7uMilKhsQjH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|227.2|0.59|13.93|['Quartz', 'Graphene', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1002/adma.201804637|Rl0E6W4xwswu3_wgvrG5GxbyMqdK|a perovskite solar cell with the following device stack: ['Quartz', 'Graphene', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.9|0.762|15.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|Rl47L63o7FSPzWrbsIUgRlyafLT4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|126.5|0.6579999999999999|6.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|Rl69afBAtzJCJXjM-H_cjuzopTyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|234.8|0.7490000000000001|18.16|['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBFMT']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227488|Rl8Jv-UyZ1zTKaSaWjsgqW85mXp5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||12.7|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|Rl97y-fvHoBQCb2vng7rrRINzVmE|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|180.0|0.691|9.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201700268|RlIdKA5TO4JvZuDfYrE86yi0Hlyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.35|84.0|0.82|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201403140|RlRZXKiXCZ69gz2nV65Z-SqTfsdd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.45|101.4|0.76|11.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA; PCBM-60', 'Al']|['NiO-c']|['ICBA; PCBM-60']|bulk|https://doi.org/10.1039/c8ee02575d|RlV1wlZ2ZClFnZ-tndKP42x4FUeq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA; PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.498|104.5|0.42|2.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|RlWh2mqi7wdqOE1gvqnFSJ2gUmLZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.8|0.672|15.29|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|Rlbzwwy0OHp8Kz9zkF3LHzO0uzZP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|253.0|0.72|19.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104014|RlcyhwjLd9G2XRbgT6nATi6jCW0d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.06|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|RldJU5C5kwNG0izKNL-pWzQPE-wu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.0|0.6990000000000001|12.8|['Foil', 'AZO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.056|RlkX03-ahocL2XD4oDrpIKuZJWec|a perovskite solar cell with the following device stack: ['Foil', 'AZO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.06|240.0|0.73|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.056|RmAW8Bc5BF9zNgFHy_h0UA7A02Kq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.04|77.0|0.73|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']|['X25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|RmH06xEuZ1WqaKi7CPgqKj8PX8Ay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|226.2|0.75|18.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11835c|RmPLBNxios1NGl2s6t0rf9VYUfRb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.0|0.633|10.8|['PEN', 'AZO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1039/c7ta04225f|RmZ5Jm7m89OuMHsTEzjekLGd7UPe|a perovskite solar cell with the following device stack: ['PEN', 'AZO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.014|211.3|0.449|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700584|RmZtfeN5Q12f0nPbzKLoCIXs8PIT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|172.10000000000002|0.711|12.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/polym11010147|RmhR1PkK8rYcKAYgJoJiDSXgHeX3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.3200001407531068|0.43|171.20000000000002|0.672|3.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|RmnnwVANjx86RByogd1Hq0HCBfzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|150.0|0.736|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b03902|RmnojAS-ug5j6grRSnvOJBZaCt7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.61|13.1|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|RmqyhbRSZyJZlozFcEzlFNKoxLBu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|222.6|0.825|19.94|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-T', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|Rmt6TxhZjrXhoyPoLErfzliyFF8y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-T', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|134.0|0.467|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|RmzQ27CxTvuQ99g-_OOUu5kwF24R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C25H125I69N50Sn25|Sn25C25N50H125I69Br6|FASnBr0.24I2.76|1.4700001567477778|0.3|185.0|0.57|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00976|Rn7J606_zuPLxyzh7DEHSYriXmdP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|223.5|0.691|13.4|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.026|RnUCr3VMHQI0CmpH2f1JvUVMopD3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|226.0|0.76|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.002|RnYsrQWkQDKXO7cj17Wb6maSNO9C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.03|209.7|0.6940000000000001|15.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|Rn_SnexJ_t6_sbUI_xE0xVjM4gyW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5|192.3|0.59|6.01|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|RnbK_jGXfIIx1qvt8CPOinAuQg7n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|103.0|0.53|3.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|RnxboVilmWULvpX5A5JerNxFGsGH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br291C100H503I9N197Pb100|Pb100C100N197H503I9Br291|FA0.97MA0.03PbBr2.91I0.09||0.98|221.5|0.738|16.04|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9se00933g|Ro0EY1FX0CM7oJR-XQ6g8OjnRFNX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr2.91I0.09. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.05|228.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acsaem.9b00162|Ro0UhmUia8oynjZWS-mUrhBZvVMC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|229.0|0.67|12.2|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.02.084|RoKGtW_2g4wZ6splCMbzXy_VCEwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|202.0|0.75|15.5|['SLG', 'ITO', 'PFN-OX; ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-OX:ZnO']|bulk|https://doi.org/10.1039/c5ta04695e|RoQBYCQpJ2AP03L7NvwWy9-a_vWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-OX; ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|210.0|0.674|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900397|RoSKpMFK9QpqEN3Jcz5JRUQumevR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|222.9|0.735|17.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|RoUgnkDPBGrdKPkcpUa7n3UUtW8o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C1000Co63H6000I3000N1000Pb937|Co63Pb937C1000N1000H6000I3000|MACo0.063Pb0.937I3|1.5600001663445808|0.99|90.0|0.642|5.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|Roa1mwxHYGw1rb5kpFDOewTPLJzs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.063Pb0.937I3. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|0.93|112.0|0.51|5.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|RobOIZyTEVPpKHDFizKmIjuk7wib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.0|0.62|11.8|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'MgO-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.019|Ron5z8mmT_UEEU98sz_YF7EkCV5E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20Cs5H100I66N40Pb25|Cs5Pb25C20N40H100I66Br9|Cs0.2FA0.8PbBr0.36I2.64||1.03|201.0|0.6|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly(ethylene oxide)', 'Carbon']|['Poly(ethylene oxide)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804284|RowwOpGEjrwSgLV-CibPIyJFN6Ht|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly(ethylene oxide)', 'Carbon']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3||0.87|83.3|0.57|4.19|['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|RpCU-UhtgwlFH8LTm5aiZYDbf3l9|a perovskite solar cell with the following device stack: ['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.96|218.0|0.7|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.07.065|RpCjXcxS5RQFmg0ks6078jfTBD_J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|103.1|0.5479999999999999|4.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1080/15421406.2017.1338095|RpMSsdVMOrU9sIPzQZwDgqevhNCf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|RpXCAnxeUvtkmpJAUhHcJXmMl6rN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6890000000000001|153.0|0.436|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150238|RpbBWDYyLMe24ZDGoL_ORUaYh_FI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.3|0.72|14.89|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cc01249c|RphVv1ikRwLwsqrGenTRSB4tmsdx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|154.60000000000002|0.625|8.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s11664-018-6614-x|RpoBePn54BDX_a2QgCfIY1Lur8hx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|40.0|0.54|2.0|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|Rpxr_UC8-TaTVAEtKYV9Yvfng5_v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|222.0|0.56|12.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|RqFRQj3o3U5kPqAfx_JvqY8PkSJu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.09|229.8|0.67|16.49|['SLG', 'FTO', 'Zn:SnO2', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['Zn:SnO2']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.237|RqG8ieEkCKcmJDDdgCbSHArS5mnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn:SnO2', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|229.2|0.703|17.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|RqJGV90d-lHESQ2IAZt6oWp7_j6b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|186.0|0.69|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|RqRV2DBwZ6_AKoJctpwX-BqtZdes|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|RqS3PJuOmcdZhw49ymMk4548HEwJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.8|0.69|13.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|RqSAULiyEzN_hIBP8DYHFMXdnIVA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C25H150I66N25Pb25|Pb25C25N25H150I66Br9|MAPbBr0.36I2.64||1.02|186.4|0.72|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00967|RqT8Q57-uCEgmQeBidxppISuYW3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.36I2.64. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||0.99|230.2|0.5529999999999999|12.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'V1160', 'Au']|['V1160']|['TiO2-c', 'TiO2-mp', 'SnO2']|bulk|https://doi.org/10.1002/solr.201900224|RqZpiDwXBlPHQtFK9je5S4eykTvq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'V1160', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|150.0|0.62|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']|['DR3TBDTT; PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|RqcOC1QmypNXi66zF-D9o9KyiBd_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.96|172.0|0.62|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.032302|Rqfpz4rW3-CtOLPnYKpGOpJlEh92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|175.0|0.63|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/cm5037869|Rqg3kYbhTpxKoTQYlv5teZ03lbvV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|111.38|0.5539999999999999|3.79|['SLG', 'ITO', 'PTAA', 'Perovskite', 'CMB', 'AZO', 'Ag']|['PTAA']|['CMB', 'AZO']|bulk|https://doi.org/10.1021/jacs.9b03639|RqjgXMIeR6OGLuAJJEzTgWzTwXTs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'CMB', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.7|0.76|18.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.04.011|RqtQfExdxTnAwXU3jTbYNc-3eW7v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|224.0|0.83|21.6|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|RqvxN5XHAEs63prRcjfH8SeJCnRU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.87|198.4|0.7|12.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|Rr4oGFtmRk-k00x044D47Re2NvvD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.046|214.3|0.78|17.38|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|RrGxPAn1SC1L0azu1yXgrp1KZy2o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.6890000000000001|126.79|0.614|5.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|RrI-uEveT0fWQ1dO1aHeNHVc84V0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.4|0.69|15.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.018|RrkkRz5TitMohFETnnlR1lySKy-z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|178.34|0.711|12.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|RrmxoTHwRmdLCElu8DVoxHOS-R8v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|224.6|0.742|18.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05975f|RrpMTlW6ERrGSUCAsBo-bX1xQ66G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.852|181.4|0.581|8.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|Rrr3Pbzjda1rZBz0ktwZFTOU3lt7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|205.2|0.665|11.94|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|RrrY16oF7dnE90rek7eQn8ExzeKz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|224.8|0.546|10.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/36/7/074004|RrxMf-xXiw64fEwG4hO1bcXDRoLc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C203H1148I600N261Pb200|Pb200C203N261H1148I600|(EDA)0.015FA0.29MA0.695Pb1.0I3|||||18.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|Rs2Qb9bQeFMcgNneCy5aaSCDUvZ2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.015FA0.29MA0.695Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|192.0|0.64|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06232f|Rs5ZYcKQ8bkfk-u8q85MmN5d2Nxz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|174.89999999999998|0.63|7.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|Rs6dXyNJOr0ju1axHft1x-ZTd5AX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|||11.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1364/OE.23.000A83|Rs8-fdrcbP0nJoayRhD7N8bco7N-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.7|0.76|16.73|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|RsNEDyEC_-F0nQi1rNZlQhzb6QPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|109.0|0.58|6.1|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|RsNX5WDBXwIbUlUlhZyuYIw-HSgv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|136.5|0.67|8.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s00339-017-1326-2|RsatSlo33NkpEzD9dV6MuoD_sfpO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.0|0.655|15.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|RsdimGBV-oE4urfGA2igEAouGTlr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|168.0|0.5379999999999999|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|RsgVxqt-F99bj4z1PlnSrgLterJA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|165.10000000000002|0.54|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TIPS-Pentacene', 'Au']|['TIPS-pentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee00599j|RsmThAS1sipsLW4OjqLZkp2NSbXW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TIPS-Pentacene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.4|0.74|16.59|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.02.014|Rsnq30Qn4Ni5DMPmQot-Nla_ZVQR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.1|182.3|0.754|15.12|['N-Graphene-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12519h|Rt1dH-gi4VfiphELt2Ygnp0yMBjP|a perovskite solar cell with the following device stack: ['N-Graphene-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.9|0.77|19.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|RtggpyCZ6DYTRW_2cMTegytTiPuX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|234.1|0.7|17.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|Rtj_27HKCI5mUT5uofQFvOiTPIod|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.903|140.1|0.591|7.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1a', 'Au']|['1a @ triphenylamine modified azobenzene dyes']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.10.018|RtqfrLSr2vj8S6Fz7N4w0RHDvId4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1a', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.695|156.0|0.42|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|Ru48gICyp3h8NCRdtJTGILlU5ypL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|234.3|0.67|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|Ru9fpRj33oulMHAFEBWxLRrwPRdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc03624d|RuDBXH2rZEwz9oD9FQ5cfPUe0_Md|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.102|228.1|0.762|19.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|RueVymVWg0oxsWllX9mdKOsqhEYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.19|213.1|0.789|20.12|['SLG', 'FTO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.044|RuhWhwd25dXxv66HRbZhUg2X6TsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|89.80000000000001|0.38|2.6|['SLG', 'FTO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'Ag']|['none']|['CuInS2', 'Al2O3-np']|bulk|https://doi.org/10.1186/1556-276X-9-457|Rv3Tb56KfVqwUfVobDkvA3Krr67w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H24I10N4Pb3|Pb3C10N4H24I10|(BDA)MA2Pb3I10|1.6000001706098266|1.13|54.8|0.722|4.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta11744j|Rv7330KlwMguab94xng8XROTOQCj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA2Pb3I10. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|213.0|0.634|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.123273|RvAAsuGZSBFLoetGq2X9_dc5XhrY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|156.2|0.72|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|RvB-ssFuh_i5Im23uJ2sZui50yBH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.074|196.3|0.67|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|RvBr_1Ev_2-4oPfGEAoFZwom0BlO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|232.8|0.736|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|RvEaUINaAnSm_m4LO1Ls9RDPdrWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|197.9|0.6859999999999999|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|RvH3keW1H7bj7P1U4JLaIhUtgSl5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3600001450183523|0.51|188.0|0.69|6.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.201808385|RvTa2DNE4qfGZVGT2PkyM-EXkjpm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|RvXH2y1WTuJIqlF3YET-4SMahqcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.868|191.9|0.46|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|RveXES2tJKw4-czZklO0AyAyWF0q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.01|230.2|0.78|17.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['NiO-mp', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.047|RvmoZla943xM4XnT0whyzozzNUDE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|1.121|210.6|0.693|16.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|Rvp6hvxHNllqYWpP-x5220vY61Je|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.7|0.68|13.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01824b|RvvgL96HP5JwZFvbPL4Gv1slhfo6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|137.79999999999998|0.64|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|RvxhAk0C-3fOgXoeF3oxHb-NsBJL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H26I4N9Pb5|Pb5C5N9H26I4Br|FA0.8MA0.2PbBr0.2I0.8||1.09|220.5|0.78|18.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RS)', 'Al']|['PEDOT:PSS']|['NDI-ID (RS)']|bulk|https://doi.org/10.1002/adfm.201905951|Rw4BB9DII384ctecK2-5-qMpq5aQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RS)', 'Al']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.0|0.752|16.6|['MgF2', 'Quartz', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np', 'PEI']|bulk|https://doi.org/10.1002/adfm.201901476|Rw4ef1_xkR6Uj2bGXJjkbHL2KL5j|a perovskite solar cell with the following device stack: ['MgF2', 'Quartz', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.17|175.2|0.6779999999999999|13.92|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|RwNt9BCXnSLRmSMZtRpCnd84NfVH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|134.0|0.522|6.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.11.025|RwOXVtO2sXSbYje5wHoAUM6pktMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|162.89999999999998|0.62|8.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|RwQ5C7XExFcTgb2H65rPC95lQ1z_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|197.4|0.659|13.56|['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'Au@poly(4-styrenesulfonate)']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800061|RwQSi7JINZ1-ErND7nd0R0tcEsY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.04|171.5|0.7|14.02|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|RwSp9XuSWvcUtehRvtxXBN-j_TMx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|202.1|0.413|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|Rwb_S8g41LmvvnAxodd2Tp_kstvF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.8|0.745|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acscatal.6b01772|RwiQUrmuibmMplPlAgEqsaJ-8zoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.8|0.72|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|RwpAf4QIu9KGcAkS4t9ZVOmevZ5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.99|175.0|0.47|8.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9044-y|Rx3yzL4SORMwby-jbGAKspKilazv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.0|0.7|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.9b01352|RxC3oOBoAz0TxTsSDOeuNXawugOk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.126|31.200000000000003|0.29|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2117-6|RxG0h4kXF5yneP0OxuLV1vU06HgT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.6|0.792|17.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA-TCNE', 'MoO3', 'Au']|['BTPA-TCNE']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.6b06291|Rxmow_Cit5V_vNUYCc-swPZ5_m-V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA-TCNE', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01181|RxrenxXFR36S4HRbrkQsrvUJ9Ioi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.98|202.0|0.513|10.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|Ry3nEo1p2mjGHHKEF3OFC0PMD0A_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.6|0.7390000000000001|16.48|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'IT-4H', 's-Bphen', 'Ag']|['P3CT-N']|['IT4H', 's-Bphen']|bulk|https://doi.org/10.1039/c8ta12028e|Ry5N0U5NvrumTaLfNC0YhwmT4ZbK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'IT-4H', 's-Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.937|200.0|0.59|11.06|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1063/1.4989560|Ry7UPfLkUbaPmBGZ3Uxekckf5Wmv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|Ry7lgi1NDshIRqu3W84-gn6aXF6g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.1|0.716|14.39|['SLG', 'ITO', 'NiO-c', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|RyA_tnMeep_V5dxoVRuQIBs_EUOI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|0.914|205.0|0.603|11.31|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|RyUtuzEaA8EByktLuHcdFKW23att|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|144.2|0.701|9.05|['Cellulose paper', 'Carbon black', 'Perovskite', 'C60', 'BCP', 'Cu', 'Au']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800175|RyfHMHmfMhfcNW2WlNb4exUwGg0F|a perovskite solar cell with the following device stack: ['Cellulose paper', 'Carbon black', 'Perovskite', 'C60', 'BCP', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|113.9|0.54|5.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|RyhyO9VcfRe3SXy98GuQqu5_X47D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.92|177.0|0.574|9.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S179360471642011X|Ryptvv_HNtDZmECy0MMPdJwIIhCo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|212.1|0.512|9.59|['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Li4SiW12O40']|bulk|https://doi.org/10.1021/acsami.7b05146|RyqbXP4JexOVQHm3lK0r8Fyigz-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|227.5|0.74|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1088/2053-1591/ab1923|RyxOlsAFG4lSuLDashqxPsjpHE3t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||0.9|229.9|0.6729999999999999|13.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|Rz3TeRBBSDKZHwu93imXV0HUEMzB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|175.79999999999998|0.597|8.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|Rz5EpjzeDS2-dp5nMwv63Me-XYTu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.4|0.601|11.77|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1063/1.5004627|RzCVoWDy55CTSKMCXqnDzToooaGM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.139|230.1|0.74|19.4|['SLG', 'FTO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/aenm.201800138|RzGct5D7lzUMHZhMxj3i__5PApEs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|117.7|0.68|7.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep04756|RzKoD1yCvQY9CQt6xQTG-l-uHE4K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.07|224.2|0.7|16.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|RzVNt6C9PzCAKYE-ANuup5FwfS7a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|212.0|0.66|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|Rz_t0OxtO1s6mBfKPIIWbsCiuvoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|210.3|0.7|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|RzcIXXA5vHHXk8ltCnThT195_zCv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.36|48.7|0.371|0.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|RzlY_XoWbv5mmB3BA38LpedfHA2M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.684|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00160|RznfpJVArquyZJwsFD4WOpV5_g0z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.14|96.0|0.56|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/adfm.201604733|RzyIz6QojtTp8w5j4nMh3RmqluJR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.4|0.75|16.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|S-2N0Eu9rf8b2QoHE5uh_1NFVO_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.941|220.0|0.731|12.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|S-7CjSeaAnfJrMrX8WHCpOOOIFvn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|203.1|0.6829999999999999|15.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|S-CvMViSQAUeJd-uCQ2wLqGeSA-F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|241.7|0.727|18.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|S-Dx29TBxAHvZxxZX0GiJMe-6NBi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.94|216.4|0.6809999999999999|13.91|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.7b08582|S-Xi4bHdDg0IJjxBfkIB_odUZ8ih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|S-Y79YT3YHeQ8vXa7Lzz8FhIebhz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|217.5|0.7490000000000001|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|S-_nYrNS2f4y9wLClj5Wt9EJNCFs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.7|14.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl403997a|S0D0iVPjS0qdyd6mlof8NPNAFbq_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|83.41000000000001|0.424|2.93|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'NiO-c', 'ITO', 'SLG']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1155/2020/5039192|S0NjTEfwtjDr06PujqQCTQyqM_rT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'NiO-c', 'ITO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|90.0|0.5|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.038|S0TzhCKGt8D4iNynYS_nBCd3BrB7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.0|0.684|13.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5032764|S0UOIS6HvyF0SelDKF5bqJC0H9-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|169.3|0.75|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr02903b|S0_favNVnnxKrGx-2z3w0YHGLtx_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.6|0.721|14.32|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|S0axGkGvOh6NSFjgh1d3W4zFGie8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|S0c3sbdb5bDmRFXD5z64iTl0AJtA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4700001567477778|0.99|236.7|0.7490000000000001|17.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10468a|S0hX1j9t9Npe_bqoHE5F5Q6j_4KR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|218.4|0.64|15.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02323|S0kdRHbYy5vnCteOQnuklClMDNiE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|158.5|0.635|8.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600229|S0riTwPXcuT_oBHufHKjBvpbMS9w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.182|233.0|0.75|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|S0sMTSsOKg3NZRdvOxIwOYVQnzYw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|166.0|0.39|5.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn500526t|S0sMosaFzXYFCjAPdA6zLmcl7YSX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|219.0|0.72|16.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|S16FUTJ44Fozkw2eUO5F0lwV94u5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.670000178074006|1.18|209.0|0.804|19.9||['PolyTPD', 'PFN']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.202100249|S1Lw2GsxYvUd7Wtr-89ukLA4Fv8c|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.7340000000000001|11.9|['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra02556h|S1k6ssyMP2moH1SuhGTkDRzJpVyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|172.2|0.72|11.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|S1riynx2oeru9p9tb_GOhfPfSjdB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.5|0.69|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl501838y|S21jl_JjO6v6E7jc-cJ3pw3XKZwT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703068|S24Ta0BWVF1_d8vvxnkjLvqwXy2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|211.2|0.6659999999999999|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|S25Uv5c3EW-UdZrvtOVg8rVU6iEF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25||1.1|210.0|0.69|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|S2Hhdwmnpo9zXo0Ig5fqNwPiNsdi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|165.6|0.537|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|S2grp6jfyy5QJH8XxPsGHAnVHQgL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|S2jPRw0ZDjQYZf949hBk9HGgdg3F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|201.7|0.63|10.42|['SLG', 'ITO', 'JW8', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['JW8']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra08946a|S2j_gTydtKO_EH6GNRTA31vKNjRW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'JW8', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs6H485I249N173Pb100|Cs6Pb100C94N173H485I249Br51|Cs0.06FA0.79MA0.15PbBr0.51I2.49||1.113|218.6|0.758|18.44|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201704825|S2osLW2Fldy_FaGBCCulwXiX_xUc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.51I2.49. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.038|213.6|0.779|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|S2tRVPNzC16--_ayROHteRAzF7Fg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|141.0|0.484|5.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974790|S31oZMMzMxPveji9f9uoAPVA-n6d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.752|115.92|0.627|5.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|S364B2HNm-nSgYemMkK-219e381p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.95|196.9|0.67|12.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|S37LYh0TNzPmgYsA9SSqTBCA6RIh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.9|0.632|13.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|S3BEIuHfLBRT0L_ju-ptdTa-1BDk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.11|222.0|0.705|17.4|['SLG', 'FTO', 'TMAH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TMAH']|bulk|https://doi.org/10.1039/c9cc00312f|S3Iq04zj5QmmAL1WOi_hrdP460ws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TMAH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|110.0|0.53|4.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/nano9010121|S3VvvIhyQ7zQJGR_obONueT0Tj4F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|91.5|0.75|7.5|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|S3Zsu-zUjDClbp-CMnxIEYE2n8K9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.128|11.5|0.252|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2117-6|S3eghyyunSCFP92x14sMTMT-JqER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.723|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201403478|S3gWtyrpmrHcuPERKSIIK18EuTdq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.3|0.74|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|S3jJooe1IAtMu-Ornt4iHNKt28mt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8||0.994|189.3|0.6920000000000001|10.03|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|S3k_bkNWefjtds5B1MhTJ4G0LtAJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|173.5|0.5|7.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|S3kq82sxtV-EeO8_KghRgaFQjbkv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|160.3|0.594|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2A2', 'Au']|['Y2A2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00432|S3tIBDRHoztBYA8UbbFVEEKr598J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2A2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.372|76.5|0.648|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|S3yWez15XWZkXH_M7ExaCi80fBhy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -C18Cl3H34I10N4Pb3|Pb3C18N4H34I10Cl3|(Cl-PEA)2MA2Pb3ClI10||1.03|66.3|0.5710000000000001|3.91|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acs.jpclett.9b00479|S47SOfp_V0VDj0CwTECAnpAzYNJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (Cl-PEA)2MA2Pb3ClI10. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3||0.83|77.0|0.77|4.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|S4VYHlucEx-Q4EuLjdwv6qqwUNcg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|192.0|0.73|12.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b01545|S4ZK2Mxv-kZdpHQ5XplX7ygJ6eh8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.31|58.8|0.32|0.62|['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']|['OMeTP-SAM']|['CITP-SAM']|bulk|https://doi.org/10.1002/adfm.201805098|S4npN1AAZlN-0pYjj_efmb--yJ8G|a perovskite solar cell with the following device stack: ['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.96|209.8|0.5|9.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|S4ptAAK3wqjeJohc0AS6g8y8bH8p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.932|175.0|0.555|9.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|S5ZWGcwTNgQdYksb-Y8lNxAcXRv-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br525C500Cs100H2668I975N832Pb500|Cs100Pb500C500N832H2668I975Br525|Cs0.2FA0.664MA0.336PbBr1.05I1.95|1.7700001887371206|1.08|171.0|0.72|10.8|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|S5m7kG_pCCWzxiSL4SNJJQN0CEyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.664MA0.336PbBr1.05I1.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|249.5|0.75|18.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|S5r_59U3kMDOsyQqQgqoiAnWbRSC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|95.2|0.584|4.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PH 1000']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.002|S5yYjYyKYWcoE6B6DED_6H6gTfT_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PH 1000']? The composition of the perovskite layer is MAPbI3. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.58|212.0|0.633|7.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|S5zmkgBKFvhSWI6qgPQKQ9tuc7WH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|214.9|0.72|16.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|S6-LR8oudjm8QsNc3fCsOxODrBWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|70.3|0.642|4.11|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|S63AHaAXnAT93jtYCwOq-q3dmuzo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.61|135.7|0.57|4.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|S66KHal2qiQP5aJPJlM8uw3w7_gl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|24.0|0.54|0.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|S67GIWvaHzMAVn4qmp_yWglUqzTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.0|0.59|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']|['CdSe-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr03487c|S6Pd6ZtXStxWF9DaP7StqNSmM_FN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ba2Br5Cs5I10Pb3|Cs5Ba2Pb3I10Br5|CsBa0.4Pb0.6BrI2|1.812000193215628|1.27|101.0|0.6609999999999999|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-12678-5|S6TaVpc_rMhwRjPXga5g7C9pYeNx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBa0.4Pb0.6BrI2. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||19.5|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""(N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine)"", 'Au']"|"[""N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|S6lHeivjxrrLu2Ye9Lktj51QLEum|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""(N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine)"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|196.0|0.37|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1002/celc.201500031|S6uIx-gxnDaP_98gZ8CSRklSkd7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.108|219.5|0.7829999999999999|19.0|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201700175|S6zRBya8XOW7TPB2X0wgVh7pV2nA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|175.0|0.649|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.092|S708K3WkcDfDcTLDz2Qm059_QFh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|223.0|0.69|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep35994|S71qqeayV1CUhgQPIjqWpBX8ZVf9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.939|216.4|0.62|12.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|S7N2D13PGOgZQTCbo0xfBO019YLF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|183.1|0.76|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|S7T2d5VCJgZbljEYDPlZqWuP59Pw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.8|0.64|15.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|S7V0AD5AX3Phe_4OwCX8P2CMYTq8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.03|219.0|0.5710000000000001|12.86|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', '3, 4, 5- trimethoxybenzoic acid']|bulk|https://doi.org/10.1039/c9ta11744j|S7W1ZlguUkpoZZewETgI2hE8XtPG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.77|166.8|0.589|7.54|['SLG', 'ITO', 'TPA-ANR-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TPA-ANR-TPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01956h|S7cQFUOor49EaewMhBiSzIw3Wvsv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA-ANR-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|187.3|0.424|7.0|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|S8NVGGZih2o3ZXaQp4B_2CW6hur3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|32.3|0.35|1.16|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.055|S8TWfSqS7bJ1uYspRJz3C1Y1VAJv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.06|198.3|0.63|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|S8XYI4Rnmr0lo-cbCG86z9ERROXs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|145.6|0.614|9.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|S8_1PP22lsdPeeqFGsow9q3Gp5pS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.81|120.1|0.75|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|S8ep14oJIVfYRDrvdCa9pw66es1Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.1|150.39999999999998|0.617|11.76|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|S8hyN_lAOC3z35z4AoRLtifd4hOo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|192.6|0.53|9.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|S8pNLCIlx5DSUekIxav9066xiSg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|210.4|0.74|16.98|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']|['NiO-c']|['PS', 'PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|S8wJG3fxQxdF6SCLbQwTvgoR4ynz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.11|183.1|0.78|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|S8xUIcqRJYSEwiZJWu2PlxbqWvpd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.0|0.53|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cp04360c|S91wY_UCMpcetsmst274t1P3AnXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.8|0.64|14.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|S9ACFrvoxypNWK7w5eXdfmmlextq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.82|117.0|0.63|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11082-016-0819-0|S9AXJD55-emmNnO3Veon1bUrSTz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.743|17.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2018.05.017|S9GkJZ36ulYBl6dpIPZUPkwmmHhy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br57C95Cs5H489I243N176Pb100|Cs5Pb100C95N176H489I243Br57|Cs0.05FA0.81MA0.14PbBr0.57I2.43||1.14|220.9|0.807|20.31|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06190|S9QkywpYvC-J3WyIrvojUnvV1GFt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.57I2.43. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.058|192.51|0.614|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00672|S9jNv20EU7_g_2wbm3pLRh5g88xw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.2|0.8|20.71|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|S9mjOB_g5uYT4kK4JDOnrqJniRVM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.18|218.9|0.73|19.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s40843-018-9305-6|S9pBmtLA3CXcISc0gKiIv_c_RzyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|212.4|0.7140000000000001|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103946|S9pR3FKf162PCVUuumcecjA6iHaH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||15.25|['PET', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|SABVTasnPQPqvVo9XmINSlX0EyE2|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|184.0|0.772|14.9|['SLG', 'ITO', 'ZnCsO', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnCsO', 'PCBA']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.013|SAOD0FApbnCBG1hLZvCZRtpr6BZj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnCsO', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|192.0|0.8|16.3|['SLG', 'FTO', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['F4-TCNQ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee02373h|SAUGhVhEHimwvUi7Ohd6stQ03eQ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.21|['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|SAVIhenATrjONwC7m6f4B75SyQnu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|1.670000178074006|0.54|5.870000000000001|0.47|0.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900218|SAh6kwgG9VsLutWBJyudiWGCnt0U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br51C245Cs5H799I249N166Pb100|Cs5Pb100C245N166H799I249Br51|(TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49||0.908|221.6|0.718|14.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|SAoAg6HZ48VgOaeuVmYVKVnWe-Gw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|184.8|0.627|11.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04444a|SAtUopO9ZjN2nYitRYk5YPQiZego|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.9|184.0|0.51|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep42564|SAtuahOaWxh2Nu5CetXPxxz7_T1G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49|1.6300001738087604|1.164|226.0|0.74|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|SAuSHbQ_TkJt6cy2F972-VOHqJcy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.4|0.72|14.87|['SLG', 'ITO', 'PEDOT:GSL', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:GSL']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/admi.201600948|SAuwNUwkBtvt09z0zC6lxFwdYKIB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:GSL', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|1.0|218.0|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Al2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'Al2O3']|bulk|https://doi.org/10.1016/j.solmat.2017.05.072|SB4Q3h8yQ6aiiqQ96AKdOyGqFeQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Al2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|126.0|0.4|3.53|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|SB9Pc4lBg1ffP9uaOuht3HRHcZ-4|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|194.8|0.5710000000000001|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|SBIguZJ_DXQOamLyzlaGXOX7C4TC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.05|235.0|0.763|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b00356|SBJt9gElIIKtlVKRYserTCOYhMAg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.985|213.0|0.74|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|SBVU8-5N3iXyEC-DUt6leha354wH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|194.0|0.76|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02014j|SC0LxUaTQ01pks8JDx0m3sKMJfzs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|226.0|0.755|18.51|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|SCArtusSWIop8dKLK3PYuSg7mlQT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.79|192.6|0.51|8.62|['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; TiO2-np']|bulk|https://doi.org/10.1002/hlca.202000044|SCQH1jlBTafl5ZwFxyHQDxwjwTMM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.7|0.72|16.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|SCVN0bNDymkbWxrjW8b5inupCa0G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|146.0|0.58|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08658b|SCjaJ-_iybNww8-xmFSK6Em5jOWV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|140.39999999999998|0.69|8.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1990793118040334|SCuF6-FmJJpVzYquAhnpQ-H5bne_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br63C25H150I12N25Pb25|Pb25C25N25H150I12Br63|MAPbBr2.52I0.48|2.154000229683479||||3.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|SD-0Z_uvY4u30UjHQrwomVeRm1V3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr2.52I0.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|188.0|0.706|12.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|SD1uhOgKGkqzqYbAoAvRYUHEbT3Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|222.0|0.73|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b03948|SD3nIpN0o4ab6D8bHChhG9JTdmKa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.8|0.715|16.33|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-np']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201604695|SD5ZLrORlD1lntOAWW2VtJrDd9Q3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.909|226.9|0.7859999999999999|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201903092|SDKCRlr4COt0aKEizcG60fJGfbJ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.113|154.73000000000002|0.685|11.97|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|SD_SCGow2AUiuJBUJYfo9eKFVYy9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.0|0.745|15.6|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01969b|SDchZ8UxJ-WvFMz8MX09T_CIjNFs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.0|0.72|15.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra00248g|SDmWVPjfxL3bzGFnGC9XKAmM3_Jl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|205.0|0.67|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/coatings8110408|SDqpaz_EYt0bTubgDqa4A7MqyFkM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|216.9|0.67|12.18|['SLG', 'ITO', 'Au-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['Au-np; PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c7ra00274b|SDrOHzehMxv-GCreYW9YHiQBniCE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|125.9|0.44|5.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|SDv7vugfVjXsP3vI8vczxNt3BOMJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.240000238853757|0.198|11.9|0.33|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.034|SE0RSLowEFb4kCSkSd5QzKXE4h-x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||0.9|218.9|0.67|13.18|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|SE814Begj4IfFnA8t9H-BzsEz80s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||1.0|194.1|0.672|13.4|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|SEO_7h76xe0Zy6FQqjF1UQd4uWC8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|207.6|0.591|11.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|SERA3LJwp6gDovUALg1PA6jMXJiy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.15|220.0|0.763|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|SEUCfy_Bv-CwDgK7f9-dvL0LUMGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.12|232.0|0.8|20.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|SEgooYaW6Rlj7wbmjKMyKC7rvyd-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.6|0.79|18.12|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c', 'C60']|bulk|https://doi.org/10.1021/acsami.8b05560|SEjrGbFGtsOeEmYl5LzwwN95SAh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.04|179.20000000000002|0.66|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b11759|SEoBtg0VPQh4G7takb1qruHRu3Pl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|89.5|0.598|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']|['rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.027|SEpi50Dz0vGuREjPL3Qv6i-nCM-E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|153.2|0.677|9.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02193c|SEpnZwCPC-t3-h5WnYE1Dh5D_GGZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|149.0|0.63|7.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1002/admi.201500762|SEwtqmnq9TpBdOsPhvse4Gq7izbl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|166.70000000000002|0.326|5.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|SF-OJnwOHUadUVvMs0jQFbKI7Kyx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.905|163.70000000000002|0.58|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|SF1FXfukC9ZI-THTaop541tHEbSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.966|176.5|0.674|12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|SF34ggTc_szFetvP_nHnU2qyNMSq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.9|0.82|17.13|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|SF7RE6hXihBvKkB2djmIC1_hgtmv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|285.2|0.67|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|SFC9qnK56QSQVw9D91uS0I3ZIyBa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|218.2|0.7440000000000001|16.18|['SLG', 'ITO', 'SnO2-nw', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-nw']|bulk|https://doi.org/10.1039/c6ta08565b|SFCQ-NeaxmpBW0wK7SVw6eWnKtD4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-nw', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|155.7|0.56|8.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|SFcAw-eyRovmdcLutnkGoyzanQlP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.0|0.72|13.5|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|SFeAXrEmzdw9zma5aO3dwt4pPtpn|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.0|0.759|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|SFfaoyDCT29VKaEuU3Cdcz8WBMm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|197.6|0.634|12.97|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7nr07001b|SFjTIjnQWaKxjrAKCwi-uBO-wV_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|175.0|0.62|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|SFkKGD76uZDs66POYbyqruA2UgXc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.6|0.66|13.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08563c|SG3haATQqd7rTWZiSD26l0l5vdHU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|234.0|0.6|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502537|SG9kpYoHj7DPdgJEyGFCLLJBQbaB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|207.0|0.685|12.1|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c6ta08799j|SGNz8rSG15_d0gSbS0SUBHIOVJes|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|200.0|0.49|10.1|['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|SGPXFzOIv4BELnDySkQ-Go1XgvOh|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.93|195.8|0.66|10.5|['SLG', 'FTO', 'NbOH5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NbOH5']|bulk|https://doi.org/10.1021/acsaem.8b00681|SGWwI26r6u0uByV_e64I_WqTbXCK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOH5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -C20CsH100I60N40Pb20|CsPb20C20N40H100I60|Cs0.05FAPbI3||0.87|186.8|0.69|11.17|['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']|['s-PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.12.103|SG_CsqTo-qkOTtPXo4fxYU8Koh1X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|187.9|0.72|12.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|SGaapwnVrJKmfkv8K1iL4lV-XnGH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|191.3|0.706|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|SGsBECNBLYby-9H3chs_pUz60Q8p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.106|8.4|0.2289999999999999|0.02|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.3390/nano7070166|SGyaAza3lZFXD8SCFiyZ-ySPlYns|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|205.3|0.73|16.58|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8cc02329h|SH5sXl0ldraDV3R6Jg9b3ldSI2G8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|209.0|0.778|13.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201503160|SHES32DORLaUXzQ0JEV8cBgJkIm8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.14|215.0|0.79|19.4|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|SHEbkbvfwSMKOsov-FaDaJutueUl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|187.3|0.57|7.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn502115k|SHKCtX-tbuqG2Xj5SdgBBBGJNoBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|80.0|0.09|1.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|SHWg3iugGkUQ1riAdWgLlImbHQvp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.06|216.2|0.68|15.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|SHj6mYneg9-raSJJ9jYFPGWwFGD1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3|1.5600001663445808|0.96|187.6|0.677|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|SHjVJAJjC1olq5CNLEQelyRlJFkD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.3|0.703|16.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901753|SHvEFnqF83XRqhjPiaY_LDHp5FIZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|153.8|0.54|7.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.042|SI53hjqtlzgr6cw3v5NZUoZ8Jh_Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|205.7|0.732|16.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|SIIHX3239yeCpBueOjQusx-oAG75|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|226.1|0.664|14.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'Lif']|bulk|https://doi.org/10.1007/s11426-016-0115-x|SI_U0mfRW-8oiTTRgYnfSX3fieXD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|213.4|0.618|12.11|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|SId4Cuo-pOlCv4IIrN8uvHl-MS3s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|257.5|0.677|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804028|SIfkwNeNkfLH5Xoklc_5C4Un3PdV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|221.7|0.7609999999999999|18.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta02584c|SIhsCdJCiRcsE5k5rxAlC7oj3sYR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.98|152.7|0.491|7.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|SIp0aRo8S4yOPT3qCOCjZruWJcPs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|91.7|0.569|4.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|SIyanwYnpq9UI1G8JmFCsPu-n9nD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|159.0|0.6629999999999999|9.96|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|SJ2NvISz4tB0eqM9mVR4j1BADaaV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.0|0.816|20.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201705176|SJ7ReyVrfW2Hcf8zhMHEhVSI4knO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.9|0.79|17.1|['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|SJ9lAPHtnGtDsKb0vChGD9_sG6vB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.11|230.0|0.76|19.25|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']|['DTP-C6Th']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|SJMyC3KQo-1NeTkPxP5UGg2NT3JK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|150.2|0.55|9.15|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|SJSw3mmvvAepQNOOhle95t8nMLXW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.8|0.75|16.81|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|SJTAKGtfV_NcjiWChbU39Wt5yev7|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|185.8|0.66|13.09|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|SJWILEFkHycdBMWqFYFudumS46ab|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.166|33.0|0.7|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|SJX6lN22cFj9GpGGHh89f2b3NHzl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|227.1|0.539|11.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TTz-1', 'Au']|['TTz-1']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01598|SJe9YsozaQWUE6lyl1PBbRZO_wr3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TTz-1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.47|58.8|0.715|6.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110267|SJfX5F0qpWA_zaSNHOtJg4-Oki0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.0|0.7240000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|SJoBMxsdEiECOha5b1-3DMCxfcft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|138.4|0.6|6.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.5.057410|SK-TzKXSaEUvVV4aHqm75IiSlv7Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|SK2OkllCoDnlEdM3UshKFnL9qCoe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||0.98|181.0|0.56|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04569g|SKA3hVUcy_Pahvzv-Y-eaXvvNGWh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.627000173488867|1.01|170.3|0.7040000000000001|12.04|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|SKOaI9looU3VItq5pAQkTsgP3-V_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.995|188.92|0.637|11.97|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||SKPyMvM5I1yUtLYukda8oKY8XL6T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|172.60000000000002|0.63|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|SKfwe9zTtQ_8BKd0RMF-hfC7RiMr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.961|163.79999999999998|0.7020000000000001|11.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|SKk5zvAoWvimuBjR6DtuuXjCdUQ2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|151.0|0.41|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.055|SKmq_kOzi79tJMMnOKURko9BBtzE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|150.0|0.618|8.9|['PET', 'ZnO-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Ag', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|SKyHKtxJN5Of0cZOc01fS7ErB50j|a perovskite solar cell with the following device stack: ['PET', 'ZnO-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.23|134.70000000000002|0.65|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/science.aag2700|SL6nJzSXlRss7u8dwP4Vart7mNUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|195.0|0.757|15.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.mtener.2017.09.007|SLFkPp7bxqjux4w5tAd3h81TMtVZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|147.3|0.73|10.87|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PTB7-Th', 'MoOx', 'Ag']|['PTB7-Th', 'MoOx']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c4ta03954h|SLS7r-hvUlu-S-gqrfuFtYqUguY6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PTB7-Th', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.95|197.0|0.48|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|SLVP-VzN3jXF4Vgg8WNT1zne6ABu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.062|221.63|0.736|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SbI3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SbI3']|bulk|https://doi.org/10.1021/acsami.8b10062|SLZOcoXw-E-2LQ9iymzh4IEypqZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SbI3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.1|0.64|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|SLvrfbM5q-9VWs36u0mlHMcVFAam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.8|0.7|16.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'CdS']|bulk|https://doi.org/10.1002/admi.201801976|SM-7IWbvhEo3FCrvN5IvKlCz4C-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|87.10000000000001|0.28|1.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|SM1vqjX_3VECwZOfqz3Wi0sr4-tD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7900001908697432|0.94|117.9|0.56|6.14||['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1002/solr.202200008|SM925YK4DpcIJTBMdu0iGsobCM1u|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|SMIfHIjkJtoORoJltVXRALyGp0Jd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.3|0.71|13.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|SMgxBE-dxQ_OS_LHSDd7lChn9YEr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.04|147.0|0.68|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|SMqK4h2BVSSEO8xD5M4M26pqeHyM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-0S', 'PEIE', 'Ag']|['PTAA']|['2PDI-0S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|SMqdBlF7PDlkYlMkYsLT1i2rP3O_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-0S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|70.0|0.736|5.0|['SLG', 'ITO', 'EGO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['EGO-PPV']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|SMw2FV9e_JQd5eP7wgITKejt348S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'EGO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|Cs2AgBiBr6|2.2000002345885115|0.64|24.5|0.57|0.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00871|SMyRmxqi8luTKIYUSeK5HYy5SndF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs2AgBiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.69|14.9|['SLG', 'ITO', 'ZnO-np', 'PFS-FTEG', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'PFS-FTEG']|bulk|https://doi.org/10.1002/anie.201612021|SN76tIkEQhw-_8d7dHQO2G7iAJng|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PFS-FTEG', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.5|0.72|15.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2019.01.002|SNGGHO8ho_qC8ED1X6CIRRgUCIIW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H25I12N10Pb5|Pb5C5N10H25I12Br3|FAPbBr0.6I2.4|1.570000167410892|1.0|136.0|0.67|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43822h|SNIVpUalrApj4xPbcyQzwYCv1M6R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.1|0.63|13.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|SNY4wINMNiZWrV4YuWQL-YpNVjUD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.54|17.0|0.59|0.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|SNas7Q3KrGuAHnNaVwKIXmX_YJoN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is CsBi3I10. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||1.135|228.2|0.787|22.33|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTPC13-ThTPA', 'Au']|['PMMA', 'DTPC13-ThTPA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/anie.201905624|SNcA8MUjytv3F20YZRQMBccAs1eM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTPC13-ThTPA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.9|0.601|12.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['Boron subphthalocyanine chloride', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOT.2016.2608619|SNfl_VDp-0g2BfNrvRYFY_SDKAoT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|0.94|146.0|0.61|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|SNwtMMYquytCgiVfl6VNE88w3Yi7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|187.4|0.7170000000000001|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2017.14278|SO0TRCxnGehe0TJz4Oc6dCvMHL7s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.8|0.75|17.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|SO7HmE2ujOEGMtz10OiUgYnqgBHW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.0|0.755|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|SOAbjMNqN9NSlH_bdgsifpFixl-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.6|0.7290000000000001|16.24|['SLG', 'ITO', 'C60', 'Perovskite', 'FBA1', 'MoO3', 'Ag']|['FBA1']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|SOB5erKB-tniJ7JuWhOySMxV2iZg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|118.1|0.365|3.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201500373|SOBoxFekiqfQpOPXf5SR6jmsLmTG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|214.0|0.76|16.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.010|SOCNlmKwl6EjAMqXkptqx__JIkjC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.8|0.65|13.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep10557|SODV2-0WVJmQ9UrxtS0GZ4XulxCn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.961|220.9|0.63|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|SOIu-F6s8Wm_HphEHPCUCuBUJFOI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.2|0.759|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT3', 'MoO3', 'Ag']|['CT3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|SOKKBZ692WcqzuguJ0ChwD5cw_aj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.14|232.2|0.77|20.25|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09238|SOSYe19nHfAHCq6ym88mR9kN9OCl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.1|227.0|0.73|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|SOYu_05NDaMA6Z3-F6rf9uwLUpuo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|28.5|0.287|0.76|['SLG', 'FTO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226956|SOf3H87qvkdlSJM6sH7EJMY32Owv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC20H100I60N40Pb19|Pb19C20BiN40H100I60|FABi0.05Pb0.95I3||1.03|236.5|0.73|17.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta08824h|SOlvOHI8_lttOYRIGSKWM4eQh1Rn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FABi0.05Pb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.0|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b13868|SOseiV_QLSsAwdVci68y4d2em9hb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.715|16.25||['Spiro-MeOTAD']|['ITO', 'LT-TiO2:Cl']|not processed|https://doi.org/10.1002/solr.202000718|SOsyBlnS2XfGKBlpjcnFBgDdheYa|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|224.1|0.794|19.76|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ga2O3', 'Ag']|['NiO-c']|['PCBM-60', 'BCP', 'Ga2O3']|bulk|https://doi.org/10.1002/adfm.201804128|SOt5Ush7yGFUFY3UxEdnSaU4Scg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ga2O3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|212.3|0.81|18.7|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|SP3Nqcj5Bih27poSoTL4F1JCnaT4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.102|197.0|0.62|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms4834|SPA2eNEIXU9WCA5B-W1irItbUnLM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|220.5|0.8|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|SPFyrwu7pDEURuP6qET6DZ38xE0S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|205.0|0.64|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/nenergy.2017.38|SPGpioQGuzzT3_zleVjDemSL5WiX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.15|242.6|0.8190000000000001|22.85|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|SPNkWA0Qqzd2jmCivyAV6HZU8Fq8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|167.0|0.63|8.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|SPNoeVlEB_3HmOJ-ECp2_dFx070-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|178.4|0.818|15.27|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|SPSRuViXXMAZcoHcUlth0YdA9HSx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|194.4|0.6990000000000001|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/4935265|SPT_cDrkiJsvBciSt8yRtWuw9W6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.88|142.0|0.58|7.2|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|SPYLvFXMrCKeb-22AwvKSbH6UqCK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.8|0.79|18.12|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.8b20924|SPrwSEPH-6hdHAYEFSrIIj8qBw5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|111.8|0.62|5.61|['PET', 'ITO', 'Ti', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti']|bulk|https://doi.org/10.1039/C4DT03920C|SQ-2R26tFLZYWMsCycbtSrCwpFfM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Ti', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|SQ0IFuvJyY4VJz9SJBUiLzybqs3k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5600001663445808|1.03|220.3|0.75|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|SQ7etEGRMwoYkZX4FKZOLmeSXNaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|206.8|0.705|15.63|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|SQF0VBnPde8U2SA_yU2CY_XfzyWS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H20I12N8PbSn3|PbSn3C4N8H20I12|FAPb0.25Sn0.75I3|1.2600001343552385|0.46|204.3|0.561|5.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|SQFNTVvNNfYe_EvL840ke3gZl3nv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|237.0|0.6509999999999999|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta01237g|SQG5HsWlgP7FQ6ujyC_Yit-YvneJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|253.8|0.546|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2019.05.015|SQK5boO-tQn5v46UhbUdx7dOygRb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.02|225.9|0.64|14.64|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|SQMO8At3STYrudBoK2A2ZBlhwiRJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|219.0|0.83|19.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|SQMTUg0-EfX_UsGOQZKzemCSsjkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.09|216.5|0.774|18.32|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|SQODDGzKCTtD1K4sIYOUosDpxbmN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|197.8|0.79|17.34|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b16649|SQYKykm_KStFKJXx5SDwkVYDhTJo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.92|226.7|0.58|14.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c8ta00526e|SQbdf7yovxf6hMAcQ8luozo4pyhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||1.006|218.3|0.736|16.15|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|SQfhz0jRLCZCFSDv_K_2FE-2LBsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|178.0|0.58|9.8|['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|SQiIgFfNPAGJryFujR2FlAZZdTyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|147.7|0.6920000000000001|10.33|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|SQkBR6qilPcFlRcbiLf9hiClG5bH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C31H162I13N25Sn4|Sn4C31N25H162I13|BA2MA23Sn4I13||0.38|218.7|0.48|3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/advs.201800793|SQlE-KqfgQIekVZw4qkZK62cn1-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA23Sn4I13. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|233.4|0.737|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|SQpMulXdzncAgr6QhsdODlxqGNz2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.6|0.693|17.22|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.088|SQqKoPXE-U7D03-u6GgU17jnJRQr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.9|0.66|13.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|SR8VE9HpLOcVU1dCn7KJjktgrKMo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.2|0.63|11.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|SRJxzjEB2aoiZeggEicZS-ieDotF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3|1.2700001354215498|0.72|276.0|0.66|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8SE00314A|SRL4rQgMot0tTjZnsP-7LZTvEQ2F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||0.61|122.2|0.417|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|SRNx6rGyVgeBNwVh0Ubd9zjfMuKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3||0.79|185.6|0.4379999999999999|6.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|SRYB48elGyUm9WDplT_XS8FNt8rc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.074|199.39|0.72|15.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||SRcFe6vaAJOi5gnZRV-_lqEul1xZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|8.6|0.54|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI:DMBI', 'TiO2', 'Al']|['PEDOT:PSS']|['diPDI', 'TiO2']|bulk|https://doi.org/10.1039/c5ra27620a|SRfMuKlc_4b5tnWa4iMWqMn8jPHB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI:DMBI', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3N2Pb|PbCN2H6I3|GU0.50MA0.50PbI3||1.08|127.9|0.667|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|SRucwC4TzhRP8S8Df81zJMuaW4TS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.50MA0.50PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|186.5|0.7979999999999999|15.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9nr02777g|SSEH9fzj3QBIqwhhc18pGhuyTUMQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BaBr5Cs5I10Pb4|Cs5BaPb4I10Br5|CsBa0.2Pb0.8BrI2|1.86600019897371|1.28|140.0|0.782|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-12678-5|SSFfQcK5tWl5-1XkjxMO2pk8Cej5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBa0.2Pb0.8BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|223.1|0.79|17.14|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.058|SSLYFBRjA-CtH5Yn--XLzCFgrkup|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.24|198.0|0.731|19.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01672|SSMZUKHcLeEtu0ddIG-SbznyWNm8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|194.4|0.2319999999999999|4.0|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|SShcv0lG7MAFEMT0QfPFMhZTeV7_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|179.0|0.54|8.7|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0se00460j|SSkaeAZgd6zXOh6PFLZVl5FlrNFT|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|130.1|0.39|5.11|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.161|SSomEakjOgSqYxFe9eJszj3StV0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.98|207.5|0.65|13.21|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|ST2c99F2vvOSctXx5gvyEb11--PX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.06|206.0|0.48|10.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00358g|ST6a9Iu3IvKzwyADULH6KQJMN8kg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|226.0|0.6779999999999999|16.37|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|STHHPqFKhmxolwLcdxs_PdMN1fxx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|136.0|0.58|7.2|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|STRHBbgnRMdZ4eHEt_tm8axK_Op_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|210.0|0.43|10.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|STs_VntvaWfLvwJ90ZqXJyfiC040|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.024|224.4|0.835|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|SU2ziPywQBeVmBmKDuu-__8hEwDN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|239.0|0.758|20.09|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|SU5MGt2K2vgKT_7VP45HhgBqPcE_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.0|0.7140000000000001|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|SU68sbB_ltdTCLBhNX3ojy6f3-JU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|146.0|0.68|9.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|SUBWKdPbv-lzhkSCnAMmwY2kdBX5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C50H251I147N99Pb50|Pb50C50N99H251I147Br3|FA0.98MA0.02PbBr0.06I2.94||0.935|177.2|0.677|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FeS2', 'Au']|['FeS2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201601378|SUF4lxFftAcYCdoVPNYqsgMmkB-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FeS2', 'Au']? The composition of the perovskite layer is FA0.98MA0.02PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.8|0.6779999999999999|14.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1007/s11426-016-0115-x|SUL37kwYJrGu72EWhAsK2NyL6zop|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.083|159.0|0.64|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|SUQ_xn-kjXl2dzVefrRZEAZr_CMX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.0|0.72|16.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SM09', 'Ag']|['SM09']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b09803|SUUzB1hovQSc-QQClDu6Hf_WLkg2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SM09', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|208.0|0.77|18.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adfm.201603968|SUWzTsemVpO_R5lUOOB9-mjiZipA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.05|225.6|0.73|17.31|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'PMMA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|SU_mhVEhxPxd4r3KWtvb1UyK-Oj6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|174.89999999999998|0.589|10.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|SUeN6zj6ZvHW919_1M_nywkc4Gxj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|180.3|0.55|9.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.016|SUg1p6rtxEN6YkfOycXXYxt3ICtt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.0|0.71|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|SUjCs45l_pH_3M8yfquyRhijPOb5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||1.0|149.60000000000002|0.62|9.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|SUq6b94SA1ZsLkVltrsQPtyKIi-K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|202.0|0.77|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08021a|SUspY1bPMw6hfMLO50cwGKauwrFE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|205.3|0.75|14.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|SUy2lGQg6xyb1RSLUpb0uHSGTnli|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.0|0.526|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793604717500497|SV0ryNJp8Lxv_LUJhgvT-jqTK6QS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb110|Cs5Pb110C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.1Br0.51I2.49|1.5900001695435149|1.11|220.0|0.758|18.5|['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'SnO2-c', 'Cu']|['MeO-2PACz']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.202000454|SVIPjxxxuVon3VPl9Fivg8yEBNYh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'SnO2-c', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.1Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.55|125.0|0.33|2.3|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00635|SVLcmcDxUkL5Jlx4i4zAQV4ppElQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.09|119.5|0.5760000000000001|7.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|SVMNRlcD3A50WXyORaGrlI523OIt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.93|165.10000000000002|0.73|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|SVMoFyVQ8PdljULdIQ5f-5rdtIrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|212.2|0.701|16.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|SVYDVLT8MpbhOl6Jeu33qOQhit62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag3BiC3I3N3S3|Ag3C3BiN3S3I3|Ag3BiI3(SCN)3||0.63|3.2|0.72|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s40580-017-0120-3|SVgRISipFtMkIPcw3tFch8Awq1Rx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag3BiI3(SCN)3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|219.5|0.46|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'alfa-NPD', 'MoO3', 'Au']|['alfa-NPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2494/photopolymer.29.581|SVjLzt08NuIXPNW3bgBSaO5i6hho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'alfa-NPD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C97Cs3H325I100N54Pb18Sn12|Cs3Pb18Sn12C97N54H325I100|BA2Cs0.3FA1.7Pb1.8Sn1.2I10|1.2500001332889268|0.64|213.0|0.6|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|SVmERJr3GMgKfJSW5JxYXxw4aO6t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.3FA1.7Pb1.8Sn1.2I10. -Br141C100H600I159N100Pb100|Pb100C100N100H600I159Br141|MAPbBr1.41I1.59|1.7910001909763742||||5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|SVty3nQPTx6t43fBSMonzteKCGer|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.41I1.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.3|0.765|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.05.024|SVwD8-Y-ijnE33CejTdzAgxp8X92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|153.8|0.5710000000000001|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201401872|SW0zyHqORVrKRV_F_WVppaswFIGB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.830000195134989|1.09|179.0|0.66|12.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|SW6jcnHUbKyRe3giSDUzMA_MVY2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|232.4|0.68|15.79|['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09101g|SWHW_J-2expxpBeSlK8ONSWAl78g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4700001567477778|0.99|222.9|0.74|16.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10468a|SWIgj2W-e8uy5ERnW-hQW2mrBWtU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|188.7|0.8009999999999999|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|SWa5RMSMc7hW9wE3sYNEUCtys-A4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|207.9|0.77|14.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|SWl3kJjCMDVpBua1Mlgdm2gjHnRf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.84|176.9|0.43|6.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800064|SWpikJ1U9q8WrZ30M1djml-OkxJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.7300001844718749|1.23|190.0|0.79|18.46||['PTAA']|['C60; BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c01350|SWsYYokHKzJ0jVMC1RTNSctv3GJc|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -Br3C19CsH101I57N32Pb20|CsPb20C19N32H101I57Br3|Cs0.05FA0.65MA0.3PbBr0.15I2.85|1.5500001652782691||||21.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|SX5clVmAxq4gkKaRth2uF273LoAO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.65MA0.3PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|138.9|0.62|8.59|['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['Fullerene-SAM']|bulk|https://doi.org/10.1002/aenm.201802085|SXHGwo7AVekzddA5bORrtwunnysq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|213.0|0.718|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|SXHnbRrLeCPVxYkbez7VHak--AS6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|214.8|0.61|12.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5012135|SXMmPlEjCWObngTek7nb9uQQS0Hd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.91|176.0|0.78|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|SXWSMqM1I0msvigwUFo3IWq_H6rw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.7000001812729404|1.12|230.8|0.713|18.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'D101', 'Au']|['D101']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226767|SXZzvsS_oruPUS3HdlvYnr5Kz5xr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'D101', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|219.7|0.762|16.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|SXaIP27qWOIRr_PhX_msHoUoWgNj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|242.1|0.76|19.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|SXkRPRQ_gsyVX6l600i6yUsaxRqq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|238.0|0.69|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.05.078|SXpV8myHV4RIJBHrK9Wv_IzPGfHJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.04|211.4|0.685|16.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|SY6x3KENLXN_5-tkahDzvOUcbupQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -C3H18I3N3Pb|PbC3N3H18I3|MA3PbI3||1.028|195.8|0.763|15.26|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|SYG2zLlFxr1grqRo9mpCGMRA28A6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MA3PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.07|173.9|0.67|12.42|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|SYNXgha9fhx3TOAIFZWyjb8hlTJC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.06|227.7|0.7509999999999999|17.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228210|SYP3Vd1s8lwR3uWIbZ1lfdWpRN9H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|185.0|0.54|8.7|"['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]"|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00610|SYQChkyAYxaA1jx8cW1aL8W0vyDH|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]? The composition of the perovskite layer is MAPbI3." -C4H21I12N7Pb4|Pb4C4N7H21I12|FA0.75MA0.25PbI3||0.87|185.4|0.67|10.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00094d|SYQymyJSbzMoV-niGSGCom2OrIUw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|0.7|70.0|0.5|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502458|SYRVFPgZv9mYj2ZlDV78qd1AyhxK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.675|96.1|0.23|1.58|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|SYcUQQm2Jn6QtGvkOY6j0bxYCDeY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -Br30C94Cs6H497I270N161Pb100|Cs6Pb100C94N161H497I270Br30|Cs0.06FA0.67MA0.27PbBr0.3I2.7||1.08|237.0|0.79|19.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|SYeDnZRyNtw4bDbLyRi1fsF9itv5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.67MA0.27PbBr0.3I2.7. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.91|179.8|0.621|10.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|SYfKCkvAkYdqFs-IMNIaSy7PYu-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.141|220.8|0.805|20.3|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1039/C6EE02100J|SYl3jJsRD5oSp34l1ip20V0wlZ-s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|181.0|0.706|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201403478|SYqpSPCYF0ub15gLd2gwlEsYJ8As|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.025|201.6|0.8009999999999999|16.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA1', 'Au']|['TTA1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|SYrBpwu_Rcs_YdC7pu8ExNlS43xu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA1', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|163.0|0.76|10.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.08.013|SYuojIMaEPgkakx-_HxN-i64eup9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs2H517I249N183Pb100|Cs2Pb100C100N183H517I249Br51|Cs0.02FA0.83MA0.17PbBr0.51I2.49||1.12|222.0|0.55|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-00691-9|SZ-LmJ4qi4I0BcKC2NtUu34o5nS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.4|0.664|10.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01933|SZ4xIe_ILTbiFS32C5xJCKCBgs_i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|156.3|0.27|2.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600132|SZ8nMSyzFkJy0P-F73rSxJsMOR5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.13|166.20000000000002|0.76|14.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|SZDf85thr501nHzgDJneJRUGpPd6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|211.2|0.6990000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08772d|SZJiYz7mqZW7NEzdSw1d3h_-Ulw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|191.0|0.71|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.112|SZLO9dLITQYi9wjOsZy2wyLag2LP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|114.0|0.273|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|SZQV5PKnKQsea5GRuMmoFlNUOwSB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|232.0|0.76|18.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02526j|SZaTJrtCPGIkGK8j5FFQpHUnC56I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.09|235.6|0.787|19.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.024|SZivj6O5-fM8jYSxYKGyvL8WJAHc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|199.0|0.6|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|SZmJjcjf3hfAWp2yEVomTa8SP3WD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|200.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|S_2B8IJlk0t0EnfJS5oMta_cS7J7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|220.9|0.721|17.38|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|S_4kVdMzvoVCohjFZJaa09ChOPFt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.0|0.65|13.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp; Ag@TiO2-np']|bulk|https://doi.org/10.1002/adfm.201500669|S_6G7sGjeNWI3vCdwjH4P1lKzY2q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|204.6|0.72|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|S_6u50D4C8opiH4-9OLKUKQlaN3I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T-MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|203.4|0.7|13.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.07.039|S_7lxWeni13vuNQH-xB0DFLdn_uZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.3|0.728|16.33|['SLG', 'FTO', 'TiO2-c', 'KH550', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'KH550']|bulk|https://doi.org/10.1039/c7tc02603j|S_C9zLrHpB99dYoMbea9SCoyjFVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'KH550', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I17N37Pb20|Pb20C20N37H103I17Br9|FA0.85MA0.15PbBr0.45I0.85||1.07|224.1|0.7559999999999999|18.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.03.035|S_EMvbdPrbHXbIasZ0_1-HhCTfUY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|201.9|0.733|15.3|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|S_EtUEpB3xH39EZJmXQM7J3Nu8CE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|207.0|0.8|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|S_JUF2zNu5Awtp7nr0JELH5ozULB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.009|S_LUtseqPE6wMYtitgiPxQBHPK0e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|146.0|0.63|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|S_bJO00TPgHxzNJlaHcRwG9zcE3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.94|203.4|0.7559999999999999|14.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|S_pH5jRYsDhlxIBbKwxZn8vrWF_o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.670000178074006|0.45|14.0|0.41|0.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI2.95F0.05', 'FTO', 'SLG']|['CsSnI2.95F0.05']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1149/06104.0361ecst|Sa2iZyVdAeRxSYVMXQccTz9-m2gE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI2.95F0.05', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.932|209.6|0.67|13.11|['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']|['MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201800476|Sa6U5QjSWGgBz1p0-aamPX_08wp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5500001652782691|0.9|231.1|0.6890000000000001|13.78|['SLG', 'FTO', 'NiO', 'Perovskite', 'Q10', 'BCP', 'Ag']|['NiO']|['Q10', 'BCP']|bulk|https://doi.org/10.1039/c9ta06317j|Sa6sbj1fZyUzkWVl10a4CoH9-y9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'Q10', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.5|0.745|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|SaPs--GHU5qqDmIoGg37hHWXqqJS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.5|0.81|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|SaRTW534iz4nZ_67bUjiMYSW8UA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.11|199.0|0.745|16.5|['SLG', 'FTO', 'TiO2-c', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'KY7F22-np']|bulk|https://doi.org/10.1021/acsaem.8b00518|SaUd7sO7B3r3Xkidn-eQISDYWL9D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|164.4|0.66|10.41|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cu-ribbon']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms13319|SaYe-2V_SM5mtJXGlBk7cLR1IQ-V|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cu-ribbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|SadGopD6U-DurV9FY36v-PJ4RiMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|173.4|0.56|9.62|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01162|SakkTZPd_s5-xASkxSk7kmiJ07GJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|152.20000000000002|0.406|5.56|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta05286f|SapfDtET-U3zmOBPdmYzeHXOlS4J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|0.87|81.1|0.622|4.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|SauXn5aGYUOEPylAdgO08yC05gMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.09|203.3|0.769|17.04|['SLG', 'PET', 'Graphene oxide', 'PTFTS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['Graphene oxide', 'PTFTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.072|SavZhZG6qQaTQBUKSO0kMzoh1OQm|a perovskite solar cell with the following device stack: ['SLG', 'PET', 'Graphene oxide', 'PTFTS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|178.0|0.82|11.68|['SLG', 'ITO', 'ZnO-c', 'ZnMgO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['ZnO-c', 'ZnMgO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.04.092|SaymI-T1P4_9Nc_gpGnyHfoo_5HT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnMgO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|174.0|0.65|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|Sb0MoWpI9YS_tgKKq2vQjftNyGPN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01292-2|Sb9dCuNB_-xW6rDrXQOutD726qmv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149||||17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|SbDL6rUD0nZXTPpMpsswCqjE0l6u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|229.0|0.8059999999999999|20.3|['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|SbUIxxGOiWjQQ858-PDyETgqkBkO|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C18Cl2H34I10N4Pb3|Pb3C18N4H34I10Cl2|(CPEA)2MA2Pb3I10||0.8290000000000001|107.8|0.46|4.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.solener.2019.12.021|SbV03BF7HRSHRfkeYTGGzWJub8Rq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CPEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|16.9|0.34|0.27|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|Sb_Jev2rwXHtKFiUueoaws3j4OSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.425|214.9|0.47|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1701293|SbcBhF3F2CAUgaBzkrssgh2MPJKk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|182.0|0.72|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|SbiuSstSNBVEaHWfYyB3567VCuxZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.67|186.5|0.64|8.0|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|ScH-9ZknVa6Axjk18FZPG0URMawI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.984|195.1|0.728|13.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2020.110553|ScJMdsK6Rg47XBuMwS6JWNteRChg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.7440000000000001|17.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|ScLwkT754YeVh3yMeGfPvy9qwMFc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9H12N3Sb2|Sb2N3H12Br9|(NH4)3Sb2Br9|2.7800002964345727|0.29|0.8999999999999999|0.276|0.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|ScRDAq-7sK6LhFD6Z6xQtqKhnmG8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2Br9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.879|196.9|0.698|12.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|ScXqem2nlJPtmHC03MKeRtxHYx6t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.25|2.9|0.34|0.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|ScZUVtGcAEpr9tg1x-rCQ9kg01kn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH98I17N35Pb20|CsPb20C19N35H98I17Br3|Cs0.05FA0.8MA0.15PbBr0.15I0.85||1.08|221.0|0.758|17.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b20264|Scg0Z2ZKJ1W7-6rPPCPP2WNeGJzQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.15I0.85. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.993|177.3|0.444|7.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|SchaRjOoRtymn0hwhQTSjxUm0-DQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|228.8|0.73|15.49|['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['V2O5', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra01303e|Sd3Z5XlUdNpu2brsihP80NGtnDCb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.316|1.7000000000000002|0.3|0.016|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@SnO2']|['NiO-c']|['none']|bulk|https://doi.org/10.1002/adfm.201703068|SdDQuXnxa7oJBCZz_KLGEwyPtZcf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -C9H42I16N8Pb5|Pb5C9N8H42I16|BAGUMA4Pb5I16||1.03|170.2|0.77|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta04658e|SdG_52_eWmz1QKYp5u0bYK9ltjy9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BAGUMA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|171.4|0.55|9.71|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|SdI2dJjixNmy5SuUkuYW9vjN5Y67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|215.0|0.71|15.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|SdV7hRy4TUFkrYc0LzbUWWjIb9wa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||0.8340000000000001|181.4|0.49|7.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Au']|['none']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201901352|SdYbx50R5XbI7a5aku8iHbNYoXzc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.3|101.9|0.738|9.78|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.049|SdabCSlAoDSL7FflwA6GMBXrYmJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.091|219.1|0.655|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|SdiBlL3e3fBDPtzapzokvYzB7zXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.083|229.79|0.782|19.45|['SLG', 'ITO', 'TiO2-c', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.06.016|SdmXf_Y248l2TUBbvev_tQCUZgZS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.1|231.2|0.71|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|SdnL8gnE9h5Lh3jbYaTOjHS0xxLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/ma12081314|Sdv3VIBdFGH3mFDkz8mPvVSzu7lF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.131|217.6|0.7390000000000001|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|SdxeDWUE00eUsgsf9Cy6e9dawAea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.7500001866044976|1.15|188.0|0.6779999999999999|14.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|Sdz4qRXLKZeFdd96_SSwGPmKY_xK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.092|224.6|0.7490000000000001|18.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|Se07bcFXQy5-Etlv7FekONxhbPUQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.0|0.665|16.31|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'C60-ETA']|bulk|https://doi.org/10.1039/c6ta07876a|Se16xrVXOvjAFlgEurxVdqGQuoyg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3000Cs3Pb997|Cs3Pb997Br3000|Cs0.003Pb0.997Br3||1.367|48.5|0.7390000000000001|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|Se55JWAesxD5bnd0h83b1e7yErUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.003Pb0.997Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|75.7|0.701|4.3|['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2BaSnS4']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|Se8r3d3hwrG5zkVkyGjtYDEAvzZE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.0|0.542|9.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']|['NiO-c']|['PbS', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800012|SeEDy4owI2yamd9JmONW-64dEMmo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|210.0|0.65|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41565-018-0304-y|SeXKRsa7XqQ1i4X3xJtrP0aGGeCQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.029|198.8|0.662|13.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-03766-4|SebO0fVqTPe5pxoQI3Uv0-5SO0B2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.1|0.59|8.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']|['Yih-2']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|SegMHbAtKG12W2pE7O4NCTEU-E4r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|181.1|0.507|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|SfKB_CDE0lzn_HQ4O626Yib9EeXc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|SfKJ4Eviss6r5BhmokNGdQF7M6E4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|199.0|0.624|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|SfKVvJC9RAkXyGH2UZ0hpec12_mq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.2|0.73|16.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601156|SfLkfXyNldcEs_iYFRSuA-jABY7z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|168.0|0.675|10.5|['Foil', 'AZO', 'LiF', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['LiF', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.056|SfQW2O_wATaVlNMPwXG-6ZJ0GjRm|a perovskite solar cell with the following device stack: ['Foil', 'AZO', 'LiF', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.148|226.0|0.79|19.69|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-07099-9|SfSMwYo4CzYOJorFnm2WkmGOJDmC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.755|177.54999999999998|0.376|4.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']|['TTBCPE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600555|SfSoRaNMk5UUJ79mdkgTGUwyRu0U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.0|0.5589999999999999|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500059v|Sfkz2rUHjh0zqcjhx0Zzc_oQRwBl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.0|0.696|13.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pssr.201900103|Sfm3PpHnpuweKEMXCJJxoY15kTEi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.923|78.0|0.64|4.64|['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6tc04639h|SfrW5D4OJQQ5MQLKwfja1cEAZ7ie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.934|183.4|0.588|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.04.099|Sg3tk3WDOa_oc49elBfFMc4laHBG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.2|0.69|12.14|['SLG', 'PEDOT:PSS', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02241k|SgTBmVe3PkaAvxVciRPfmeJ6gks4|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.09|216.0|0.69|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.202001144|SgrGU1OBcmbounXoePvAHLhGjV39|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|204.7|0.5920000000000001|13.81|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|Sgvya0nCuVh6NCKbEZ9UcoWL8mkv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||0.89|229.7|0.67|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|Sh-_Kut_ko_0Hh6qsKmyrrVSX2HG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.153|221.8|0.733|18.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA3', 'Au']|['TTA3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|Sh4DuqB_mbg4aNdSO0miW9XebD_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -C200H1200I600N200Pb199Sb|Pb199C200SbN200H1200I600|MAPb0.995Sb0.005I3||0.945|220.0|0.62|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|ShCyMHsyPvOl01nPhOYaKgx-iXVs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.995Sb0.005I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|144.70000000000002|0.583|8.65|['SLG', 'AZO', 'Cu-nw', 'AZO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'PEI']|bulk|https://doi.org/10.1039/c7nr04739h|ShIhgnrBLBwirNimSFs0QjbswOYI|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Cu-nw', 'AZO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|189.2|0.691|12.3|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|ShNATj5MVlbjI03Vn0QdfVh8BV11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|ShcO9L7Yo_RDoGezMA79JjzB2lIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br49C92Cs5H476I251N168Pb100|Cs5Pb100C92N168H476I251Br49|Cs0.05FA0.76MA0.16PbBr0.49I2.51|1.6000001706098266|0.72|208.0|0.6|8.9|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.10.031|Shhfb-8ql_QuOrKWiXlU8yiFhz4O|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.49I2.51. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.07|241.0|0.772|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|ShiULSUbXTei3cJGRlYZpJt98sNd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.774|18.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|ShwO894czFuLyVKsRwr79FTEC2TX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.119|229.8|0.722|18.57|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z1', 'Au']|['Z1']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|Si7-mmYmMoATy8vLzw_Zh9LO3rbM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z1', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|191.0|0.74|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F3', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F3']|bulk|https://doi.org/10.1002/solr.201900223|Si70S9RHjIE_7uiYbOiP9l45hRX2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F3', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N9|C3Bi2N9H18I9|GU3Bi2I9|2.700000287904082|0.31|0.36|0.515|0.006|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|Si7ANgFzxxVU6XOaFUAIff46Xur1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU3Bi2I9. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7500001866044976|0.58|110.9|0.495|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|SiAcYhXfpS3q6LVn0JCdCWfBdlG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|253.07|0.6629999999999999|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.3390/nano9030326|SiDKZ1hQcL-7IISwNLgVF1gkIl5j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.16|82.4|0.62|5.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|SiO4l9ExRiT38CO6q1ivFPf88TmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.81|250.1|0.7190000000000001|22.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']|['Y2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|SiOY0SaHydK5pbI26m4CRQOkeqzj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.88|183.0|0.74|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201602519|Si_muDWUEKl-OeaHuaNGkx79tGex|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|92.1|0.3989999999999999|3.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|Sie0k5MbsfAUZrSwDRlAq83YUJNA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.0|0.7|14.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201801541|SiedW5Po3-UaW5QMfYGG-ufy529D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|226.6|0.737|19.01|['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/solr.201800338|SigDvCljgD8Rj3nS2r3DZ2CkXBrS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|229.0|0.71|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X59', 'Au']|['X59']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.020|SikE5OH4GoXkuuiRZumd3aoZSzHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X59', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C9CsH45I21N18Pb10|CsPb10C9N18H45I21Br9|Cs0.1FA0.9PbBr0.9I2.1|1.7000001812729404|1.12|181.0|0.72|14.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.06.026|SjSlyJ6exGAPmAtfntSeIhJoBNKl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.4|0.68|12.06|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|SjU3_yyNvpIu9fwxZG9tZMWU970y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|159.1|0.7|10.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|SjUFhnYXWdGcCPWjf_ipSQPuC89k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C38Cs2H193I111N73Pb40|Cs2Pb40C38N73H193I111Br9|Cs0.05FA0.875MA0.075PbBr0.225I2.775||1.125|246.0|0.764|21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T5H-OMeDPA', 'Au']|['T5H-OMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0sc00362j|Sj_xvGTtHFCxv7Z6EV-daVK00l7u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T5H-OMeDPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.875MA0.075PbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|171.0|0.7|10.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|Sjr1vJKhfkYnWqrZ_RsrG0tPyZvA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|220.8|0.69|17.17|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|Sk1XUMuaocBl2dMb6HUbtr0Y_iEg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||1.0|150.39999999999998|0.516|7.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeOAc-Spiro-OMeTAD', 'Au']|['MeOAc-Spiro-OMeTAD']|['TiO2-c']|not processed|https://doi.org/10.1002/adfm.201900991|Sk5J91t1wZ3TKEnLk4lj3RT88vs2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeOAc-Spiro-OMeTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|114.0|0.7759999999999999|7.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b02478|SkBzFdNxlhXLwaCcFvl3uakoyun8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|186.0|0.742|13.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Bi2S3', 'Au']|['NiO-c']|['Bi2S3']|bulk|https://doi.org/10.1021/acsphotonics.6b00582|SkD53SGP7Pjhm-7biCY3MZTyotkD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Bi2S3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||14.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|SkG3T4yDtVZP3Jry1GkkB4gmaDd1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.081|222.3|0.732|17.59|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801433|SkdZ5PZQzUhJNBf3rphQfCxrGIHw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.135|217.6|0.79|19.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc09002a|SkfjhI5Y6RNLr_WJoKr39Pgejo28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|223.5|0.722|15.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|SkiJTev_6AHwtEXEqc6AzpY9uZnP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.04|235.0|0.74|18.0|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c8ta05639k|Skk_i-DAz88tt1MOKPwFAoabFfj5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|182.0|0.45|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|Skl3F1SfXDcY_GNVCVqils9bigTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|232.5|0.69|15.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|SkssjTeJM5qSYAztl45-x2-6lpej|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|169.0|0.57|7.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04267h|SkwIIaPEQAjDtc2y6SvHhrlefum9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|200.7|0.58|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-1', 'Ag']|['ZnChl-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.11.005|Sl6Np1VvX0Rio3n_MaHzi0eJXQ2l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.5|0.745|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|SlUoJVqG9azUacnAI_D4pqiNkCw-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|165.79999999999998|0.64|9.77|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|SlaTk7gb8AncCnKnEuMYsy74yhlB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.64|13.6|['SLG', 'ITO', 'ZnO-np', 'PFS-FC', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'PFS-FC']|bulk|https://doi.org/10.1002/anie.201612021|SlefH_Ueli3DGiFxc-e-vQNbTwMo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PFS-FC', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.113|222.5|0.65|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|SljpXA4FQeAPnaYdKFIZd-U27YXk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.05|150.39999999999998|0.44|6.92|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|Slkg2ZYw9urehR224V8UktQ4ZizN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.0|0.69|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201600580|Slq1-9-GvPnHt8L-oSTP-YmA2Ac4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.486|7.979999999999999|0.42|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7nr05764d|SlsPv0WqyDLdk6m-cnEkiK1sG49g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.885|195.7|0.73|12.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|SluN-Z6MRWnUwZ4J-z4Df4wLDxfD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|211.0|0.74|17.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.8b02408|Sm-L8h0f0CCjuhkrzHGzrFTppMu3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|260.0|0.784|22.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|SmHJoEZDrAj1iTHhe6vamwlo6gI-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1016/j.orgel.2017.10.037|SmIMCbZZPlON4sU0udoCu9DhUyX1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|SmKg3LAyYBnN9bXzATtAm3xvDl11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.75|100.0|0.63|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|SmNc4MBQ1zdkueXvIOyBNk5pZ2e7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.061|235.7|0.785|19.63|['SLG FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/hlca.201900056|SmWUktO3XbdalMSk4wnEd2lDuYBC|a perovskite solar cell with the following device stack: ['SLG FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.06|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|SmiMIvI9GgPdfugc4y_F8PO8_bJw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|179.20000000000002|0.54|9.9|['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|SmjU3pCMLp9aeVbxP5wyUW3dDBzh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|209.0|0.7|15.73|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5EE02155C|SmuslGMELAlu3qXFmrFE2fZZMGYI|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.081|226.5|0.6829999999999999|16.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|SmxBDW_L_fWg-MXkGvwwnsP5lGlA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C26H145I75N33Pb25|Pb25C26N33H145I75|(EDA)0.04FA0.28MA0.68Pb1.0I3||1.065|205.6|0.74|16.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|Smzpwrk2FjohIv24019w_Zc-lv_8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.04FA0.28MA0.68Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|245.6|0.722|17.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile', 'Ag']|['2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.002|Sn1Y1H-GXq1T1ESeilz7BBaIZfXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|218.2|0.67|11.4|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|SnEU3Kz_JGHtLKIR7DmIc_6WPOD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|213.4|0.779|16.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|SnF2gFyqBhJkZ2dzxK1iDalXGMjg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.088|223.8|0.628|15.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H18', 'Au']|['H18']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta01773e|SnWrz8Uz8njUVOEaIhxa-GVjhCRo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H18', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.89|208.7|0.4589999999999999|8.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|Sn_4kKoT8H90BtrN1e9BnHyAB0id|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|92.5|0.5489999999999999|4.01|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|Snb3G-JxZf8QPcfGtTaDir7U9ApQ|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.1|0.76|16.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BP-DC', 'Ag']|['BP-DC']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc00331b|SnbKHg8NuFizManQ6APA5h73_QIX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BP-DC', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.722|5.1|0.362|0.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|So1vApUImDiUrbya9IgodSZet6um|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.0|0.81|16.4|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/c6ee02650h|So7qqMpkeJxMAjq7xFDP-S1bqdtn|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|241.0|0.7759999999999999|21.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|So8OSex3zABlYInusAlvkgrhovSx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|147.6|0.55|5.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|SoZiQbKTEwMqt7kbJLmCkdwOsDVG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|130.0|0.64|6.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|SoncPo4I2BAD4nctpkkoYueb_BfL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|215.4|0.75|17.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18200|SonzUV-KL6wXbgGU2tc_YwSm3qyE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|189.3|0.721|18.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.066|SopVcXkYooyDYZ_s7K9bvTi9poc-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.0|0.763|17.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/cssc.201701262|SotoyfPY8w3kX03_-x4rcbS8ONzO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.07|142.79999999999998|0.51|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|SouzBsedPL8GmGWxeQBO2tZUd-Jn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.87|189.4|0.57|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b01049|SovmgP6GaU8wh7kQulH8ND_Gj6Fx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||14.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M103', 'Ag']|['M103']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|SoyzQjyVcPMij4Vcwpj3U2rhLpwq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M103', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.96|121.5|0.53|6.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800504|Sp1pJWt1M-ME7IQ_tKiCp5Drzzjc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|Sp2ZpP4RnZsDppOcMtSnwwK-Y6J9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|222.3|0.736|17.68|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|SpB9HeJWk_JzYKqf0q-GNDdy0L3f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|167.0|0.55|8.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|SpXAcVJTOX2JMKBDMA-pbm9RPWI7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.89|229.0|0.62|12.72|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|Spjm6wzc4otlLkQNjWeH4TOdwF_M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.0|181.4|0.5770000000000001|10.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|SpkFcVBJk59I0naMGlVTcBaoNgUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.116|211.3|0.735|17.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|SpteQ7t5znFoaB3dpjVN3TsNkUDk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149||||14.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|Spz_uBC0u_1B-sh3tS9atc_fG2Q7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.18|235.0|0.58|12.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|SqEh1Jq119mQsfNsVUkGDZWWpdDa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|189.8|0.755|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM1P', 'Au']|['DM1P']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-04342-6|SqMx7U6IYgmEg5GHrjayOcx6t1B6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM1P', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|207.0|0.6940000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|SqUgxTEzDY9URSxRjCtn6wyhX1o1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|213.0|0.61|14.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|SqVfe0RgA3mw6JkLzvN_gMUfZDYS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|195.0|0.634|13.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|SqjDTM1Bo9ErwUMsC4aQdA646knb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.108|238.0|0.748|19.45|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'HPDT', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['HPDT', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.cej.2019.123677|Sql0XCMRIyq0kessA28pGirWrYID|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'HPDT', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.85|161.6|0.74|10.12|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|SqmlkqEJKYJvsqxF6MUP_X411S0f|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.9|0.634|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC02', 'Ag']|['YC02']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|SqtVi-WRYUtM4ZD6VkwEtRtXPXoP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC02', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|197.36|0.662|11.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2015.01.028|SqxNP49VOmlrwfLqqDnjqv8FmyuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|235.1|0.69|16.91|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|Sr0X-sUacv7eFkE-AqWqTLOqoqzY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.68|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'X51', 'Ag']|['X51']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2017.04.059|SrGSWc3KHQ0GubiTlYmUmyrxPyUy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'X51', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|114.0|0.41|4.8|['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1117/12.2212130|SrJDnUXZutiYmFklLejQDXY6h-fY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|0.96|208.0|0.66|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|SrM-U2B6zCRJsA2X8T7iBCJtXwcX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|225.0|0.54|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|SrSnuhy6egooed5ik9ogX3JvaMM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.5|0.7709999999999999|17.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800275|SrcVvWsuADuEN5cxTWWzu2X0l1K2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|118.9|0.7|7.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|SrhdzUN6wI1bo9pvmyIW2uKO8aWn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br4C98Cs2H551I296N135Pb100|Cs2Pb100C98N135H551I296Br4|Cs0.02FA0.37MA0.61PbBr0.04I2.96||1.02|194.1|0.5|9.89|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']|['PEDOT:PSS']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000262|SriH-pFhFznlNwzJ0QTLviuJAF_r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.37MA0.61PbBr0.04I2.96. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|217.0|0.68|15.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|Srj7KLZZxGJBIoHSUOP5VOpfunbs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|SrlYrkrIbuRI8XEUiCiGVqD-iUl3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|195.1|0.8|17.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|Srmm5QmTwylegjSd_NSuKTjiQiSy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.3|0.7240000000000001|17.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|SrnWmFdVNg1uPKUWHJaNojBihuMf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|194.0|0.789|17.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|SrszMAh_jO7-zOCCAKY4WMNBZmzz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.0|0.77|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|SryLnf0oMIcxXUhpFeHQcGZXekNC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||18.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|Ss11efQpjZ3Aueuyu9bIlF2k-iQG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|175.0|0.4|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab334f|SsAkZmGlDqicFbpisNSnay2L77L2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.14|225.0|0.77|19.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTEG', 'Ag']|['PTEG']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201701935|SsFHHYeWGZBMBDLfCSj2FXAfsyK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTEG', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.0|200.0|0.8|15.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.026|SsdCjrFoJ03q_CnZLKGI508q8VmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||1.06|122.4|0.73|9.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.solmat.2018.05.002|SslA37OILiko5u6hrnT4rIll8PJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.04|240.3|0.731|18.24|['SLG', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800399|SsoXR2mJ-M7foB0aG81vjofrEaCm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|207.3|0.764|16.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b01933|Ssr_pwn3wBpg043oFFa0nkw7cPGn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|202.5|0.77|16.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-018-9250-6|SssuC-J8b46coutR1mXcXJ6tSj25|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.93|186.0|0.6|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|SswqkMMhNtmG2U2j2PpbRj7t1Yrf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C4H24I3N4Pb4|Pb4C4N4H24I3Br9|MAPbBr2.25I0.75|1.670000178074006|0.94|45.0|0.45|1.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|SsxlkeBBeczMWwNsYn-PgWzZjcJ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr2.25I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|150.0|0.62|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1021/acsami.5b11494|SsxpdJu_Wr10FAoHgMQAfml3Iv5f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C86Cs5H441I261N161Pb100|Cs5Pb100C86N161H441I261Br39|Cs0.05FA0.75MA0.11PbBr0.39I2.61||1.04|215.5|0.662|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp03760k|St1ODl65RmFBDNII7E2jxUYZJ56E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.11PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.12|233.0|0.77|20.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b18230|StATQHBeOA5RGvnnofFiNfmj8KmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|190.0|0.67|13.04|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.08.009|StMX0oPE4MODOqjftVrQm8RiVJ0F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.954|176.29999999999998|0.65|10.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2017.07.010|StMaqhmimPCw9pIwlSYU4it2F1pn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|74.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.009|StTq0livhzp0Gzl29QLgPCvI78fk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|145.39999999999998|0.322|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|StZcuuJjlSvwFKPRyUPWGI7zjMoa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.077|221.88|0.769|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|StfBpzOf5JhyPvzP02OvtlIm_cZY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.3|0.581|11.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|Su3udoTwEAF440fN7V4zfFXGOp-b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|216.7|0.69|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CIGS-np', 'Au']|['Cu(In0.5Ga0.5)S2-np']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b08714|Su3wBOv0L0ACpucdiNoDv3QB_BEO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CIGS-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|197.0|0.71|14.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00303c|SuB4WQoH242E7De-eMrUZaR8K5w1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.1|0.669|15.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|SuCFtKuF6qav57zP0gDoVGDYfHcR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.33|177.8|0.679|3.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201606964|SuHfBiMblHasmsKQTg7BYKwVprOM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.09|163.9|0.78|13.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|SuOo5W0nuLNMC-ipcPL7oGtz5nmK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|175.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|SuU5DkG3JljukTFWaC76DLjxEJmd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.5|0.7190000000000001|15.02|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|Suc0A3-50e-6fUu2vRBwg3dslJUL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|204.0|0.69|12.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|SujgPm2r_hzOxbQtODP84bRLHUhj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|200.0|0.69|12.98|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|SulITOPrp8S2Pdnv0lQ97f_gNkqK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.5|0.691|15.34|['SLG', 'ITO', 'X-DVTPD', 'Perovskite', 'PC6BM', 'Bphen', 'Ag']|['X-DVTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b04396|SupUyp2dLcsVOHHJNTrvnI9yJ8rJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'X-DVTPD', 'Perovskite', 'PC6BM', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|185.0|0.557|10.41|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|SuuXFisQLSw99FejG5fZcDuXaUVm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MAI', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01508|SuuaVafjEzWH_No8pNZ8I2CIIqdl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.92|56.4|0.499|2.59|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c8nj02238k|Sux82yCvqkxpuRGLLFQ6pIJdvfcJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|188.8|0.74|15.42|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b13621|Sv0rO9sAeou5gRK3ToI2MMOyj52F|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|146.7|0.644|8.69|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|Sv15SOuQkM2Cw8OqPaWuCiK8v2hN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|159.0|0.7|10.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'd-PCBM-60; PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['d-PCBM-60; PCBM-60']|bulk|https://doi.org/10.1039/c6ra22023a|Sv2kjSB4QuXeoyduOvpDaYgpGWMZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'd-PCBM-60; PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.02|215.0|0.8|16.8|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|Sv7dWzZaYZ3HgKDllXnj7fCxWUSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']|['FBA3']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|SvBgQRGXONQdAVpcCFzueToNTOpQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100Cs5H517I255N183Pb100|Cs5Pb100C100N183H517I255Br45|Cs0.05FA0.83MA0.17PbBr0.45I2.55||1.08|208.5|0.65|14.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.010|SvEh0iX3kBSPvdv0r4DzR9SaDdCp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|217.6|0.7|15.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.031|SvHUgDWGFlpg8dpTxLDxGIfikKDg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|124.3|0.68|7.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201306217|SvJl2FbgjGlJnJnbZ6izZxM8tGm0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsIPb|CsPbIBr3|CsPbBr3I|1.91000020366548|1.183|147.20000000000002|0.7979999999999999|13.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.04.012|SvKF-GeXNP521lUEdju-wEeb2zdX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|138.6|0.62|8.05|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|SvbIeiJ4yvyhPPM8l4d7h9PpKhHK|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|230.1|0.745|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|Svdm0R1uOPP2dXLbGw1QS1m2UQ7y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.1|219.2|0.78|18.8|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|Svhngv0FXAKF_AephDmmeC4noBDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|195.9|0.73|13.5|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|SvmiG8d6B9R8YHDL8KpxEhcCWAps|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.108|229.0|0.753|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201903368|SvsfHqUEjQM1dQ7K0AQs869gMZb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|203.2|0.711|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-np; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|SvxYorKl128uTyYoGLs5lDzU6tON|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.9|0.727|15.35|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|Sw64JpaTA3JpHjarrzZO2ncWv2_l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|193.7|0.621|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTSe-QDs', 'Au']|['CZTSe-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.08.130|Sw8lv5fEW7Op-6QYvM-h7fBpRA-r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTSe-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|183.5|0.68|11.5|['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FeO', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cp01432a|SwM8dxgesnRqjs4fwdPG1ELK5WZT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.84|224.0|0.49|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PMDPT', 'Ag']|['PEDOT:PSS']|['PMDPT']|bulk|https://doi.org/10.1016/j.jssc.2018.10.045|SwSunv6ntGLBm3odV5xxCTzTolDl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PMDPT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.05|233.5|0.76|18.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08306a|SwW2ICozW1zVr7iLR_H9yLrcuTDP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|184.0|0.71|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms11105|SwWhrzUipsil62bNF1Jlo-hSFBcr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|178.70000000000002|0.72|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201501024|Swa0D0lCf8KSlRBOwRMye0IOqCTS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.7|0.648|11.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|SwweOdP3TOfnUIdM3CymTL11fFJx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.2|0.47|8.87|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|Sx-rjk1UKkjrCtUsFbJGL4N_yuY2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|206.1|0.71|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|Sx6OxCA1LB4DztFkHh0c1EUlpfWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']? The composition of the perovskite layer is MAPbI3. -Br90C455H8140I4794N1845Pb1560|Pb1560C455N1845H8140I4794Br90|(NH4)6.8FA0.15MA2.125Pb7.8Br0.45I23.97||1.05|199.8|0.733|15.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|SxIlXwxEg_sGiLzI60aFTQG4qzlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA2.125Pb7.8Br0.45I23.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|182.0|0.68|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|SxY_-dJtE6_ROC5a7KWTStD1Yt5s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.9|0.767|17.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b02500|Sxe8e74KivVHVoGaznl7BgVzsmA2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|217.0|0.67|15.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|SxpYgjOK9QQTrEUFLwqy1L29WOXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8400001962013004|1.15|152.0|0.685|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/adma.201908011|Sxu3aj9NoMH5v3oht1VbPkuIURUh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.0|0.632|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|Sy7u7kUcvXANK1W0m0Sh-uoHu-9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|209.0|0.75|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.035|SyC0oatmHUfQkMfOKaME3wp1YVmj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']|['SWCNTs', 'Graphene oxide', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|SyFqhOEnueKcgYl4L3ygzxqzwXQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|125.0|0.6|6.1|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/C4TA05819D|SyHPpnRYDyU4o37c7-ZGbhwoLKza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.9|0.64|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08622a|SyKOwHvN68PAG3CHVYH3ugy26wAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|206.7|0.71|16.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.074|SyMVjaF8j9oYkscZTNB2ekqzOodk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.06|221.0|0.728|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ9', 'Au']|['POZ9']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b12678|SyM_meXRH8WIiV_FgvPOEOOp41Be|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ9', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|183.3|0.674|11.92|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|SyMdA8n4pg7SkxVsXKqI1LB0UNeg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.02|159.4|0.52|8.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|SyQBNOYLHv7ndMm02TMaEvhmiU0U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.09|156.9|0.71|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/anie.201902959|SyRzI4OaI83YslLZPWvgy0G8NdXK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.07|75.7|0.52|4.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|SyT9UnjR8b44cMK-iZZQE1LGAwa8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|103.0|0.565|5.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|SycE7rfPW0edyvjLhcMViLaEE8eC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|218.0|0.69|14.42|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|Syq1GddMrKim1QYx9eMUUncXKqr4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|219.0|0.6|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900172|SytESZabenDJSjBUVLpK55R1aLvF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|174.4|0.72|11.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.009|SyxDyrMyfKZvcuTM1o83PUryAPs1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|261.0|0.62|9.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'EDT; PbS', 'Au']|['EDT; PbS']|['ZnO-c']|bulk|https://doi.org/10.1021/acsnano.9b05848|SyzVRWPsR3val8yIlthLv_X5sKOR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'EDT; PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.02|227.1|0.8009999999999999|18.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|SzHsFQiBKePjneeCpZ7VLZUGpc_P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|221.0|0.75|19.0|['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|SzJSc5TKjBVmn8MQ9INGpb45MZh5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.4|0.64|14.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|SzOAt5zPsqFMRWoyhyJRhHEX6u1R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|229.0|0.757|16.9|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|SzZct1tYieDrD-GYd-oh7DY5aSvO|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||1.0|203.1|0.74|15.12|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['EVA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201902629|Sz_WB3zufPx8fsRTQ1Pwi2bK2Ig3|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|196.2|0.67|13.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00893c|SzawnU4AbiP2_sS0wN5SZEnyfT9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.4|0.64|12.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.087|SzpmmcRFPy3Tx8ihQw8B5AV-Gi7d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.280000136487861|0.65|170.0|0.62|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPB-M', 'LiF', 'Ag']|['PEDOT:PSS']|['BPB-M', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.015|T-1U-xk_emvRfIlyED8yUhK6yeZx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPB-M', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|52.7|0.563|2.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|T-2FFspYvhxgHAxN4Ym3cNT8nB9s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.4|0.721|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|T-3MMdCr-lfIDR90wn6aK8nTrTCT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.25|73.89999999999999|0.59|5.11|['SLG', 'ITO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1002/adma.201506292|T-4ntp6oPzwTC15Cva65gb5b5ah6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C2H10I3N4Pb2|Pb2C2N4H10I3Br3|FAPbBr1.5I1.5|1.950000207930726|1.06|199.0|0.67|14.13|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2019.02.014|T-BLCXA8eGCGOsUhsjzUBVWq3BOv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.4|0.773|17.57|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|T-OqwmgvsHaJNI8WeXhYOuu2-WZq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.016|151.7|0.522|8.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|T-_MbekdU8T2RPQF-Ol02cVYBSG-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.012|205.8|0.742|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|T-eHo7ZUxoM6ZjfZASdZRzmPUVoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.79|193.3|0.66|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|T-egSSdsBgA0Nw6Hchj-YQ9JHjvL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H85I51N34Pb20|Cs3Pb20C17N34H85I51Br9|Cs0.15FA0.85PbBr0.45I2.55||1.07|220.7|0.72|17.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11696-018-0484-9|T-j2Th7IiyNxPS9QKCI532SvIZ9Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.45I2.55. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5800001684772036|1.05|210.2|0.741|16.36|['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228320|T-r-GM14EObXlRN6p17mjbW0H4E7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.773|98.7|0.208|1.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|T-tqeqW1VjX6NBt4_SX9kcYF2KNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|208.5|0.76|14.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|T01HPH4iTOGKRkCJbyjce-z9UduF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|137.55999999999997|0.722|9.73|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0075-5|T05MBT4uCjwuDwH_4BnHrpM7yk9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|196.7|0.67|12.3|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-Na']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|T06kKTp8L5fO8vlQ-P8WUCQGPNJQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|192.0|0.68|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1007/s12274-017-1816-8|T06xFlz4QiPQ7ZdPKjWX1QZfoqyD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.11|246.3|0.78|21.28|['SLG', 'ITO', 'SnO2-np', 'DTPA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DTPP']|bulk|https://doi.org/10.1002/solr.201900198|T0TN8CeIaZvReCLwnA6VHMsLdhBb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DTPA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.6509999999999999|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793604717500497|T0oxZeyEPBkCTHgvl0zrz_b2Seu5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.09|216.0|0.69|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.202001144|T0qRQMvOWkRrlwODgDdgT6JBXTQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.425|220.4|0.593|5.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|T0s0lvfA3Zqg-_MgJPKkd2HyoRI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|145.0|0.54|5.41|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.080|T0sdz97IV7NGF4pcD3mdGeLgXRbM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.0|0.76|15.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|T0wsnRO39v5MBIjKL9ihKLtfCX1e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.67|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b12137|T0xfL-vffFv1qiYFx5hxTy2_psYx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5400001642119578|1.02|232.5|0.68|16.12|['SLG', 'FTO', 'TiO2-c', 'rGO; TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'rGO:TiO2-nanofibrse']|bulk|https://doi.org/10.1016/j.energy.2019.116396|T10U2B4StMXi9LdYJgozfQWF5ZB6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'rGO; TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H12I4N2Pb|PbC2N2H12I4|MA2PbI4|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|T12qPdX-PS3eZ_YST7ObfvQfhMOy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PbI4. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.7490000000000001|5.2|0.361|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|T13Bft5wQ_NGrv0MR0AdRoLK5QRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.04|148.0|0.73|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.081|T1GXi5_YmDzQRvfdltSXAqnoJaja|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||||||['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900140|T1L8VU7zwxodIfAZJRZJPfxizY2B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|108.0|0.51|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|T1WgsgiqoNB-B23Jm53C8iHzGdvG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.1|154.0|0.72|11.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/ente.201800986|T1b4l2244VrvgiWviM8Jg7Nm0dGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.10FA0.75MA0.15PbBr0.45I2.55||1.09|212.0|0.75|16.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|T1fGJXuKH3kCxadnR8MfqZBKaB-Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|115.5|0.45|5.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']|['CoPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2016.07.013|T1foTGzqKjrS0L6wjpBCixKWzqSa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|222.0|0.56|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsnano.5b03265|T1myYdujPUXuS4PegmeDTaTTwV3q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.095|195.0|0.7|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b09160|T1n8wFr2abHgoZNWBlmuYKYPS9CK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.5|2.0|0.389|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|T1s4sZ4rMxB1YF_hlqVoh3egux8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|211.2|0.738|16.39|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|T2EyjVIUm5FB0b1eXl2nFTzJRbn2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|177.89999999999998|0.499|9.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'CMB', 'Ag']|['PTAA']|['PCBM-60', 'CMB']|bulk|https://doi.org/10.1021/jacs.9b03639|T2Jk3J3nmc07309Bo81cdvQ5AnEK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'CMB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|159.0|0.48|7.1|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|T2KNO8FRjie1WAgfUsdENQAKVbHD|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|193.6|0.738|13.28|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta05286f|T2OybszzyCbXYN-C2FDsVzpSfj_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br250C475Cs25H2456I1250N869Pb500|Cs25Pb500C475N869H2456I1250Br250|Cs0.05FA0.788MA0.162PbBr0.5I2.5||0.87|220.2|0.69|13.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.011|T2PpwDRwSwjLaCXkaMI02nysMTER|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.788MA0.162PbBr0.5I2.5. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.082|224.85|0.7809999999999999|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|T2QLBJIFjseL6-jyNEcefMgonqnb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|122.0|0.38|4.1|['SLG', 'ITO', 'Cu2O', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|T2TTyVMcOVV6HH0217ICNh4_c_d2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.057|159.60000000000002|0.815|13.7|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08564e|T2WVsKzm7ex_qIDOOaSWq9YvZgjE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.76|0.61|0.173|0.008|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|T2jX9K2brKMtMKQfqy9XbILDBaOY|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.73|264.5|0.7040000000000001|13.83|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Me4NBr', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Me4NBr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900413|T2l0xpva0JvJUtmwT7Lw16nnjp-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Me4NBr', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|143.1|0.68|8.42|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2019.05.055|T2xXtUGOvG364kqkSg1kSINnAlpL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|121.5|0.344|3.12|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|T2y8JE37hwr6IjKL6xOi0a7RdYG1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.4|0.76|15.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1166/jnn.2018.15360|T30uRrPYzUgiFIG-XSfMeB2q7u8P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.98|226.0|0.56|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21775c|T344oXCmQDU_MvdsrtaepBX3dRPZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25||0.971|214.0|0.72|14.9|['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Si-nw']|bulk|https://doi.org/10.1016/j.ceramint.2019.04.221|T36mVEyBbYUS57cufsxED4_n_gSB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.1|0.45|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1016/j.orgel.2019.03.022|T3Dm9t9APoO2QWrdJxxKnEC7e7Mw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.6|0.72|17.75|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']|['P3HT', 'SWCNTs', 'PMMA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601079|T3KpEYB6gYxap8f6AggwtlBjoDot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']? The composition of the perovskite layer is MAPbI3. -C19CsH99I60N34Pb20|CsPb20C19N34H99I60|Cs0.05FA0.75MA0.2PbI3|1.520000162079335|1.05|209.9|0.65|14.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41565-018-0304-y|T3WZpXeV5TrV95VZwW61_Tm1fSt7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.92|213.0|0.69|13.66|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|T3m-SnzRUHWdDI68p5EeJ4kbsna-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|240.7|0.71|17.37|['SLG', 'FAZO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.09.095|T3nomIqbRZMG_S8SRdGTFKwkJGHr|a perovskite solar cell with the following device stack: ['SLG', 'FAZO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|222.0|0.7020000000000001|16.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']|['RCP']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|T3ug2ODlLnYbsB6p8yF8dzkzVz4F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.017|196.0|0.72|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01306|T4D5_RIPzO8U3EJTcJGlcwpXFQuA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|205.4|0.636|11.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00314|T4X_MupoEkyjTIHkph_m3GDRZctj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.0|0.721|14.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA|Au']|['PTAA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c4ta00011d|T4Y0apRY6lQ3C-YqajybG4NdT0Tu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA|Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|212.0|0.79|18.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|T4_MfmxaRHuxKIJB-upgQa300rO3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.09|77.6|0.659|5.59|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|T4uW1PVJiP2Os41sYedyb5DKXsml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.024|165.10000000000002|0.499|8.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|T4xv7V8GCJVftdDRN_HuBRcIm4Tu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|226.4|0.81|20.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804286|T51N1Cb3-wW5_NMLIJPTtkJ4x77_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|175.5|0.72|10.01|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.02.049|T56NensQHJ_9_1g7HIZvp6LBQ5pR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|203.0|0.7240000000000001|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201510386|T58rGa6ps3YWb7ZLdy5tnO7vi7bw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|142.0|0.57|8.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|T5C6Q-K1t53STwdgkBzPlMoUMhVW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|229.0|0.72|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112141|T5Dy8-SdcBjmB-KhceIRaKZg9Jfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.77|188.3|0.66|9.84|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|T5HN2DvTl8PBJ0aI-PoIBsN0rEq8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|155.29999999999998|0.515|8.48|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra03162b|T5LBoLElJ9YF-QBwQfUO8e6ZtscC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.6|0.79|19.43|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|T5VHDN4iw7e-O58umOlsPpD1SRM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.0|0.773|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO2-np', 'Au']|['MoO2-np']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2017.07.160|T5VpDee2ngMlxKwHZakHeA4DgX5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO2-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|180.6|0.73|12.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01651d|T5XD5DKmkDTFWeJug0bHlbrX0LXk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.88|214.9|0.73|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201806506|T5XgeOfgQVNdyeJuSzLtOHVVG9JG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.088|153.5|0.528|8.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|T5bSnq5XR7QXcP4XWRqjBhV7P9Wa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.82|150.7|0.47|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.17586/2220-8054-2017-8-4-540-545|T5ftX3tIww5i5h_s8jdR7hwc2Y-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|193.7|0.7170000000000001|12.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.10.011|T5k3xsN6XH6GSLkBQFUehO6XQGUN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|225.0|0.77|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703659|T5kh-DY1jUTPjMP1kHoPQXagqNKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.6|0.54|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|T5pIJq7MO_UZAIfE_GsBzkWNsTdM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|167.0|0.52|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05220c|T5t8YP9VDPw2ypqJz4wrvO6vaVx0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|91.0|0.46|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|T631g33zEQnPaJWdnx1i1epqy9u_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.2|221.0|0.77|20.43|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|not processed|https://doi.org/10.1039/d0ta04721j|T653b2xDxXpL167S2oJb0gaeFoHM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.06|231.0|0.763|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|T6K53GD5UEvaT9dilW-M2sSNU_s3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.39999999999998|0.49|7.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|T6KKh5NX3rGK731hf9nEE_6tDMyH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|194.0|0.5529999999999999|9.96|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']|['NiO-c']|['PbS', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800012|T6RP85jeAnva78lC9nyMfBWixDEJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||1.12|225.2|0.75|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201900466|T6X2WJSsuLRryRCoZPb9XDu_8ceG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.0|0.61|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV2', 'Au']|['COPV2']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|T6a9ZIA1o3qzmlZMCjD2vrAvcgnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.7|15.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS:PSA']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201403939|T6sbbd3X_r0zIqMY6Bpt_6swQEsV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS:PSA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|215.4|0.802|18.61|['SLG', 'FTO', 'NiO-nanowalls', 'Diethanolamine', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-nanowalls', 'Diethanolamine']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|T6uGPqVgIEDyyQVWT7ddCHrpDFCo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-nanowalls', 'Diethanolamine', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|247.9|0.7040000000000001|18.32|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.153730|T7CCpEo6yRkUXdKJCQoz_aMH99sP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.38|52.0|0.78|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07739g|T7CcBuv83t4Frj9Xhjy-Aw7AoqMs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|214.9|0.7120000000000001|16.57|['MgF2', 'Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903108|T7DQrsEqq4ov_Uye29ZTqYgetsGH|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.06|228.0|0.746|18.1|['PET', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201605900|T7LYY6LF1z_55jgQcJV9Qxj3RxrJ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|197.0|0.757|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|T7YguGCKC2Sy6bpR_YfWXMpp1woO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.83|154.0|0.62|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|T7c3-6BshypzdjjKGzrMmmYiODG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.019|203.8|0.687|16.36|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.cej.2018.06.124|T7qKjOTj6TKtzFYRNSWC35WMppm_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.9|0.6859999999999999|15.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|T82aGOPV2Pr8hrLa53fXaZxp_pl_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|77.4|0.63|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|T85S6kIqUpVznK35cO6LnFvozCGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|227.34000000000003|0.636|12.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.06.054|T8AVqlaebohvP0ygkByqfHyIMX_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|184.9|0.767|15.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|T8HK7h3XFqdr0Ot7Dya9xr45ckJI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.068|239.0|0.7140000000000001|16.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.05.011|T8K3kkp7ldObsNLTS4_nhHWocPt3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25|1.6100001716761378|1.08|197.0|0.718|15.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201905487|T8L-Dnlak5wPxcjW9aa2ndGLBEVj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|178.0|0.47|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|T8RbBDkpcN9U6nSTabpu-2HwiefI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|198.0|0.73|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|T8U72HEWTdRMmlOU-vMOGi6ODkMy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.91|170.0|0.54|8.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|T8d8yKOMfbYicUqs2tJLTQnduHFw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.139|218.6|0.773|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b04776|T8dvttmX_TQL2V6Bca3lJ2VbIp5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.71|171.1|0.62|7.53|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|T8e5TunAcQq9DsRUyj8MlEUsyUkL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51|||||18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|T8iqGUJglvcC6nJ4gi9lBitT3oQ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|217.0|0.769|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|T8ySK0Gtknjf617MP2i18AGVmp9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.1|0.743|14.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|T94H9mbsX6k5thaf_scD-yJnCaKy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|180.0|0.61|7.04|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1088/1674-4926/37/3/033002|T97Rhnu8i_DvhK8gIwcY8eHrGbSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|206.8|0.649|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|T9DI6EgLZhFNkyLbOMtwzsN1pGOG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.01|188.3|0.53|9.17|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.03.086|T9DJWu3o_qL7BdrIC3qhOBP6Edc5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|215.0|0.81|18.8|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|T9TgxL0i5A21xGU7f1qSfTeXYzau|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|195.8|0.59|9.01|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.07.057|T9gIoBXSGdSFczfXhUvGtmfCple7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.902|105.0|0.471|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|T9hcLNr8A9QUaAX-spedHDu75IqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.02|103.9|0.648|6.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|T9phiHyZpli4PovWMJq9ldlj6mQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|226.4|0.6609999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.053|T9sMPOiHPjedSyFyme5YwNa88yK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.99|193.3|0.62|11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.07.040|TA0pHK6dJ_5kt5EDDshfhUzo1pf7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|225.4|0.67|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'H:MoO3-nanobelts']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c8ta10892g|TA49Jc78Ww2o4Pn3RMQTZdIeEG7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'H:MoO3-nanobelts']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|110.3|0.51|5.02|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.06.001|TACqPWPoG_1wKa57IUU97bbJqIUx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|178.0|0.675|10.8|['SLG', 'FTO', 'SnO2-nt', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-nt']|bulk|https://doi.org/10.1016/j.cej.2017.05.085|TAFt8aZT_im-yHg9uks4w50L_ofv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nt', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|200.0|0.68|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|TAWMRA8HK1ozNNoZ2CtYWW0i2kPN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C17Cs3H102I51N17Pb20|Cs3Pb20C17N17H102I51Br9|Cs0.15MA0.85PbBr0.45I2.55|1.6600001770076949|1.07|154.3|0.76|12.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901863|TAZ_k5rySrwumWHf5tEis3f0GPDK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15MA0.85PbBr0.45I2.55. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.972|235.3|0.7909999999999999|18.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-2', 'Au']|['dly-2']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc08985f|TAekENh7oE_cpl8hnQ6uNflrc2bZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-2', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13|1.5800001684772036|||||['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|TAfmlsOOWPw7_ioryazWN-t6AoeN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|227.6|0.8|16.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr08375g|TAgEouC8EOo3PSZF0AiRqb3ZND5x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.0|0.802|16.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|TAxEvevaoprtP9gBtaYfJ__VAnYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.9|0.7|13.66|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cap.2017.11.010|TB2GjShD70ji6INw9ukmPhCHOzsj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|61.0|0.344|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|TB3RZX7cDZwPPsBCdxNuWP-sj0LW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.03|230.5|0.7070000000000001|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']|['SFXDAnCBZ']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c06318|TBAKYKwXWRfwf4uwaOnQTfbV1C8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|160.0|0.6|8.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/cm502864s|TBBmIYJ-8jlU692EQ30fhIyxGKwE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.9|0.7440000000000001|15.78|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|TBEyM7uV6WZL7HNVqtz2HOKyoZ-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|187.2|0.519|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|TBVU0tt776WgA7e-IQ4KLbyjDgne|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|66.0|0.27|1.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.055|TB_s9jviJleFmb6fGXGdEWXRJsms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.0|0.67|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF003', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|TBb4okgyqPyiOZJuhLKZfEDemOUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF003', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|167.3|0.62|10.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep38670|TBcCJXupTMK9qLqFJOm9_OXWUmSx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.2|0.61|12.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Au']|['PDPP3T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.10.008|TBe5g693mI4e1m_sdRPRB604pHPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|221.0|0.655|14.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']|['ACR-TPA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|TBkH_bRZTOsXsaIoGEi8jI2ZqAso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|230.8|0.75|17.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|TBw75K6KrVYRdU0n3Ch4dLZbu2tx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.05|212.0|0.75|16.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|TC0DN-aILo5kpN-IZe3xeHNtrU8h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|230.1|0.777|20.35|['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|TCeElOzuqHUOjq8nR8jKo0RxJDWR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|193.2|0.711|13.74|['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1‐benzyl‐3‐methylimidazolium chloride']|bulk|https://doi.org/10.1002/adma.201600446|TCi59-Ndc6OJcxuSHlwUYcRVNWZ6|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.86|190.8|0.435|7.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2020.135686|TCjTPbXcSRcS17QOtZ7rqyMGFC-s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|48.2|0.456|2.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|TCpsfLhSsw8nULeRFVsJ0_CmVU0U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.989|213.6|0.71|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtchem.2016.12.003|TCqhGOzlukFLlZ-ETsiAnFsnOn6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.8|0.73|16.28|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']|['PdMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|TCshvwhppyEo6xrGpxjFSMjuW0cu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|233.8|0.67|15.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl500627x|TD-cw5IIjgL2BznRsHBH5_4ixDMg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.13|224.2|0.725|18.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|TD5DrjbKazgW-1vSoVMK2SXNCx-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.88|106.6|0.33|3.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|TD7APhH-t4O4TAIf6zD9KkIQplsa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -C6H32I15N5Pb5|Pb5C6N5H32I15|EA0.2MA0.8PbI3|1.5900001695435149|1.02|192.8|0.701|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.027|TDKqAA68db2rlkjBg6uwLiP2L6Bu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is EA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|174.0|0.47|7.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01598|TDXpTjczGFV661D86zOR84xx9H8h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||1.001|60.0|0.609|3.72|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|TDYCxbsWH_xfvcFB0QL7EMof_D6j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.400000149283598|0.97|148.7|0.71|10.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5ra12530h|TDYqqBTPuPzOJzU7dBkhdd_hgJjy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||11.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902319|TDcjC75U_s3ijDH4JVZOScfcc3MU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br13C90Cs10H450I287N180Pb100|Cs10Pb100C90N180H450I287Br13|Cs0.1FA0.9PbBr0.13I2.87|1.6450001754082275|1.08|195.9|0.803|17.04||['Spiro-TTB']|['C60']|bulk|https://doi.org/10.1002/aenm.202102046|TDjhOwMK-rO1FNSE1WD4VZlxs_jH|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|205.0|0.8|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s12274-014-0534-8|TDwlojaTRUqpquPLTFj_zywqFKN4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.09|247.5|0.77|20.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|TE3UNgIV4LDu-WlEqZc_kYd61aGg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|108.0|0.43|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA07972E|TE60XZoFgYnShbXr9A34sNpOUASm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|117.16|0.633|6.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.04.059|TE9_ZbruiQbthujurXg6IdqZzCId|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.07|230.5|0.726|17.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|TEEQzkPZt6eFQol5qFGmvvZVsQA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8759999999999999|114.2|0.51|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|TENgISU-Yb_rFfrRbO8w1J-smFzG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|124.6|0.6729999999999999|8.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01202|TElr0X4KKcg_F8hImtm566NPCb1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|69.0|0.31|1.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|TEozqPytEEGyakVSDnv4fLEl1UZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.8|0.765|18.72|['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']|['TBASBP']|['PCBM-60']|bulk|https://doi.org/10.3390/molecules24102027|TEvUpV0KR6sJcWEiz83PMrSVYKkt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|204.5|0.591|11.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|TExZSoNMudNX61YHqnXBHpwWp_A7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.9|0.67|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501354|TF-ahDNcgiTEDMdBayGuwSvOF_IW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C32H96I22N8Pb7|Pb7C32N8H96I22|MA2PA6Pb7I22||1.04|189.5|0.7|13.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|TF0jWdKXiDsEP0DyteU3iNp2D6c4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA6Pb7I22. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.5800001684772036|1.13|203.0|0.743|16.1|['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|TFHCe8bjGsUSwTpkRI5C9sP9wnWg|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.81|183.5|0.77|11.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|TFHrvfTsBRHuoezv7hvvjYvP-FEA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|169.0|0.685|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|TFQU9vRxzJgXTc6dMYwbiL4WRS9P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.12|232.0|0.79|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)']|bulk|https://doi.org/10.1021/acsaem.9b00162|TFS-dRNi8uQw3x2ijDAmnRwNcmC0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|||14.5|['SLG', 'ITO', 'NiO-c', 'Mercaptoethylamine chlorate', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['NiO-c', 'Mercaptoethylamine chlorate']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.017|TFTkgz8hpfFw5NBrUMG0W0ABu80n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Mercaptoethylamine chlorate', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|177.85|0.7070000000000001|12.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|TFUt_xf5sq4SCx3miG4i-WqmKFgh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0759999999999998|178.51|0.643|12.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X23', 'Au']|['X23']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502536|TFbPGsyhXJerjrIA_a4q2A2Feq35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X23', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C25H128I75N47Pb25|Pb25C25N47H128I75|FA0.88MA0.12PbI3|1.5300001631456466|1.04|232.0|0.65|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09532|TFdajnZvBOMKD8XEVi1cmQr_Q-Ul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|216.0|0.696|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms9397|TFfnTkrNHoEMVISxcKcX7AAq_Kh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|195.0|0.5820000000000001|10.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04840d|TFhFp8VjBEvUsVQl1LYafF-tzR4F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs91Pb100Rb9|Cs91Rb9Pb100Br300|Cs0.91Rb0.09PbBr3|2.240000238853757|1.5519999999999998|77.30000000000001|0.8220000000000001|9.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|TFn9OyArdu5r0TMLfqDPDJ8g8cTT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.91Rb0.09PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|201.7|0.619|10.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|TFtHSQm4Yntl2QQvsazhLzQi26qn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|177.7|0.6659999999999999|11.78|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|TFvtfpMDdNy0fUnucsYAn3Hmpr1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|204.7|0.633|10.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|TFxshxtaEzwoNU8ZOdlo9JNfq0my|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.0|0.7020000000000001|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00200a|TG0ER-UhM9YVk4CMWp64kxTEzqb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.69|189.0|0.437|6.3|['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jrras.2017.11.002|TG4qrVasbQ-Ent3y81Tw1vFSuFj5|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|207.2|0.63|11.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201801541|TG6UGlZvT1nWJE5TaFsJaKaVLVS6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8400001962013004|1.26|156.0|0.785|14.0|['SLG', 'ITO', 'TPE-S', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['TPE-S']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/adma.201908011|TGA3v9yJc46CDywah4I_U0gMIB16|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPE-S', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C83Cs17H415I300N166Pb50Sn50|Cs17Pb50Sn50C83N166H415I300|Cs0.17FA0.83Pb0.5Sn0.5I3|1.2600001343552385|0.69|199.0|0.519|10.3|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|TGB0NTWqkUvSUOzuSIn1qu42U7S2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.0|0.76|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|TGEmWznk3qYJLpIVNiMcNbw_rFgM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.089|226.5|0.79|18.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201902902|TGU2T5O4ptA6T4ovo9z1e-En4PzO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.32|100.0|0.67|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|TGVauqRlVhQTi_Dd8Jx08ZFm-8w6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.06|171.0|0.67|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|TGXROWTmszsFL86l9spWlmUs7Umo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.8|0.8|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|TGXW9xZfqaHtiRNUv9AXqNnvb1QC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|212.1|0.77|16.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201803801|TH11z4mQLMA85j5WJyJA5v3GrjeX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|84.7|0.61|5.46|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ra08022d|TH9LOdmC0kOjMgHBLT6Hswq1yn9-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|170.79999999999998|0.66|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1063782619040213|THAGSGQ-CLgUx0JnqMwC67sRBzUW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.16|136.4|0.72|11.39|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|THMJMiwKX4bKDNFeiiO0vC6ASkFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|195.0|0.775|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4ee01216j|THPNHicAiGs4myod2aZjB6MgovsG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6500001759413832|0.99|171.70000000000002|0.6859999999999999|11.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900050|THSZXZsyBFtcgY1q92YUUuZeOlb_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|175.0|0.6809999999999999|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|THZxhwDRl6P90YkmXQA_iSLj1m7L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.07|205.6|0.75|16.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|THdVqUwEh2_8-7C3gWCDveNb77oX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.706|163.5|0.35|5.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra27434f|THgWQesmMxB9lkVgZx_FKBjOrbzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|214.8|0.778|18.22|['SLG', 'ITO', 'PII2T8T', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PII2T8T']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03608j|THj9fsEbgBdudvPkEsOiJh5JCrAR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PII2T8T', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|62.0|0.51|2.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|THjX_6QTlp5Xus0liv3avJLpWO7J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|171.5|0.73|9.83|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.orgel.2016.08.012|THp85tu94lkne4EY289X6aNcn-k4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|165.0|0.66|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|THxh-bcAae0I9gWtGuYCtEfZTGA-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0490000000000002|208.98|0.7709999999999999|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra03471k|TI0YE-w2aKRSXUnG4n6VK-LH9DVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.0|0.74|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|TI94cPpIXCJMtWtEAIO9tLVCEZ8j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.91|225.9|0.7340000000000001|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']|['iDM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en13112897|TIHotBmHbuo93FKBegNgXfZjJ-Ak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|199.0|0.61|11.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02976c|TIIQveeOtvonKyapcEJm3YeNvAM2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|TIKHZ5OGwXWyza5GGE6sEtqZaijt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|133.0|0.63|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|TISQdNhT8Ig9p84b7FzHPnEem9wC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.6|0.77|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|TITwCrBIBTfvYjV4UZIzZPBWZMY_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.8|0.5|10.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201809129|TIYE1ZHC3_N8PJAw8jkVaDsI_3AG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.18|252.0|0.784|23.32|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|TIZ9hxzFgoVgZMZpJG00SMVB-eGh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|144.5|0.5579999999999999|8.23|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|TIh8IAMCMSTKcBvbohktfN2gYatZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3900002548484283|1.28|31.7|0.57|2.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|TIic28B5EMChZfZCCLe_Ya6Y2wNt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|188.3|0.706|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b08038|TIlqRTd-tXcMdXED7hT1P2aotVTU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.9|0.615|14.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6dt00900j|TIoVyuESvUxtcncU69Xaa00oiWQi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.16|109.6|0.55|7.03|['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'N749']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b23532|TIoZNrMTCRNDCG6mCt6J6ppo6Suu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.9|0.7390000000000001|14.43|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|TIrv794Y5kpSKMQN5pfqrWWvzrjd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.6|0.7070000000000001|14.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c8cp00563j|TIumPCEv6torMoWOZQuVOk13JXZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|TIvePQdh9bV6qXWbrwRk3r8VT98s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|233.0|0.45|9.69|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|TIy6yaC-SaIOHhP5seaApHyn3N1k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|224.2|0.741|17.62|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02094b|TJ00pHlcbzlmhcW_GXUXdxtQQuca|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.055|183.9|0.26|5.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-2EtCz', 'MoOx', 'Al']|['EHCz-2EtCz']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|TJ0q37vQMyp1HerBwXmpC1Mn7hmW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-2EtCz', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|133.4|0.63|8.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|TJ9oCyl6OPTVXc-4yf4gFc6zFoJN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|55.5|0.42|1.56|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.6b05862|TJDVJS8SJ2SBC7iM0Kpx5IIz4mw5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|73.8|0.67|4.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-N', 'Au']|['Cz-N']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj03089a|TJIr2IJQFKlLrMBQsNNmB9yICpfn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-N', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|143.6|0.77|6.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|TJKVs_SVIGx3sps1l3u8cKAPpxm0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|157.79999999999998|0.643|9.97|['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|TJOi_w_qnDkiLohtF0FenzAL5L3Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H28I12N7Pb5|Pb5C5N7H28I12Br3|FA0.4MA0.6PbBr0.6I2.4||0.974|135.39999999999998|0.66|8.71|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|TJQA7b61bJ4qt66BDHpBvTtB5LQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr03610k|TJRZK38Y8kJqlp9Jc-cgUETDkAmJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.99|228.6|0.611|13.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OE.26.00A984|TJWNkuGW8RlUafFjIZ2ZWS8JKdKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|186.1|0.701|14.45|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|TJmscW5Gv8iV4NsEnudNSDgoLzk3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|194.8|0.455|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|TJyCFD-4_iH60sWspH9lFHZ1yDFm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.654|187.4|0.38|4.61|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.3390/mi8020055|TK01NSLzjIo8muoe9qWh6mOv0tSo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|209.0|0.71|13.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b00364|TK0hN0ediVvtHXlYhgK7jf6046Ys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|120.8|0.276|3.0|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|TK8PZhWRwaiGweNCmFDYG5AfIKz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|137.3|0.6|7.72|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['none']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|TKABnA1BhDihKtcr-qAH1cS9VQzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|117.0|0.6920000000000001|8.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|TKHFW1U--ONfSE5K6lnfQ_pO3JH2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|221.9|0.738|17.78|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|TKIOBgYZDGcBD5oBivuEJ8u3LPcp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|233.0|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43822h|TKSmH05iG0lxpVPqBHV7C3NvJeY6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.07|176.4|0.77|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'VOx']|['PCBM-60']|bulk|https://doi.org/10.1117/12.2240755|TKTDdEBUCvnPZLFUHIBhiLvE3hG5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|168.1|0.74|13.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|TKVnJbQp6m0RIXi_AGvDaMsltOL2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3|||||5.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|TKZ0n-q-_48Zp8p5s8jSz3LoVUZh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|155.0|0.601|8.8|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01300|TKaQxWKMxqSGGoCQVrnLogEpiMLO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.0|0.653|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|TKbuLwiNlNQvD2RDwNELvO8cEfTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.6|0.61|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/admi.201801976|TKdE9uPsN05EnWwEWj_MNuX3jhGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.7|0.736|17.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|TKfCYlO6l5Ck0EkfWjQgzGenvDtY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|163.1|0.7879999999999999|14.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.9b07182|TKnn0YBM67t2ywCE4DliDj-cZaWC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.0|0.61|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.028|TKpqWTQTS4B_oyGLEFWnWIMHvmvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.984|155.5|0.627|9.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|TL7nqRLpUY4l6ZM3fssYuiHhoHxR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|TL9fguxfNtV_Zv0r2p-JV5bwY0Jo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|134.0|0.67|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|TLDz964ttrsVTWUZHm68eqjiyINH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C34H187I60N51Pb20|Pb20C34N51H187I60|FA0.85MA0.85PbI3|||||5.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902319|TLE0iuPkbJO6NCNzp4ZCSgSc5jSv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.85PbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.08|217.96|0.746|17.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|TLNNAlrUg1gIVCDLDqSAIkKbWYrT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|193.0|0.76|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|TLn4SacCpD62D66LzzBhMEvtNmas|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|54.0|0.1939999999999999|0.8|['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|TLvzynTyB5kqzcTn6UISrgMKHI8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.5|0.71|16.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.048|TLz924u7DMZg9eNFMULfM6Mgx7cm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|120.0|0.647|6.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|TM7hS_S6eNAe02LxhIhB6vKJf25D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|144.0|0.586|8.1|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1186/s11671-016-1621-4|TMOYrFPkVOvS17TB4k4fE6A0G1xZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|211.7|0.633|12.98|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/chem.201705658|TMX1OcDRiSOB_c1Zh7HBOgmxqS-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.75|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|TMZ-lozg2uGMTlMUHqiv2EuVl0_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|220.0|0.63|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606398|TMdL_LyBmLm4Gm7DZyrqREdFgEGp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.893|218.5|0.523|10.2|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801249|TMossdZOWOw7fSb-dy31UmDsGGg-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|230.1|0.73|18.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab55a1|TMpQGrBGFCEnAvbMglB0W8hkvgjl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|224.69|0.755|16.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601297|TMqT_3ZUqPweuENgcUHC0WGlGxzT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.47|224.5|0.6779999999999999|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['Spiro-MeOTAD']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201703800|TMurFdhVkhgnhb1n2kUP-WJhr-Ro|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|TN1ubcKseOCftyW97iuCifVVlX17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.847|77.75|0.634|4.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|TNCBl_x0nlpycY5q2kOV7sf1v7y5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.129|223.4|0.767|19.35|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|TNczNFS8EE7Q45lobJSh7-3ePyq8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|227.0|0.75|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aaebf1|TNg81B6h_zrFAF6jDnXzlzE5dRhY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|203.1|0.6679999999999999|13.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|TNnZdVaEbxbihvpnePo1TNCrUBw6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.14|151.8|0.77|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|TO-WyfqJlJAIAxzXC9r1-6s9tSZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|147.0|0.66|8.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']|['PEDOT:PSS']|['N2200', 'ZnO-np']|bulk|https://doi.org/10.1021/am506785k|TO23slH6VwbFBM0EiXiwkWmk0-b3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|92.2|0.48|2.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2014.11.003|TO44gwcqrDMvjIFaWaB4sPy93Rv8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|204.6|0.7490000000000001|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|TO9sxWYJbH8dewq2wvd7TerfJHta|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4||0.86|25.8|0.26|0.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/solr.202000082|TOZuaVNrEPsh0W541z1s7o5lOGZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -C11H27I13N8Pb4|Pb4C11N8H27I13|(PDMA)FA3Pb4I13|1.5300001631456466|0.813|112.96|0.708|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|TObFoAMp2RxoBlz6hSTvRPRw5uRU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|212.0|0.5710000000000001|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|TObsKI1L3qqpvIi47c9a_k-NEsxQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.0|0.72|16.1|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|TOdh1WykiMHpbBu_2UY0_ueD6SP7|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|171.1|0.608|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201800130|TPC-bspv-uPjCTIIyJmFIa7hG2wJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|180.0|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|TPCvkJd7jrljVr9GQT388FyYPVNr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI6RbSn2|CsRbSn2I6|Cs0.5Rb0.5SnI3||0.48|81.1|0.46|1.81|['SLG', 'ITO', 'Perovskite', 'C60', 'Al']|['none']|['C60']|bulk|https://doi.org/10.1039/c8qm00159f|TPCzyIKAPkcfvEod7zFcvXYdzOo5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is Cs0.5Rb0.5SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|206.8|0.731|15.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|TPVe0Qb3lD3OIpAKmAb8l86pGrYW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.15|140.6|0.696|11.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Aminothiazolium iodide', 'P3HT', 'Au']|['Aminothiazolium iodide', 'P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104180|TPbWs03XW5jMToX6GuBFPOMRDOdC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Aminothiazolium iodide', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|235.0|0.735|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|TPfRKR42hzi3Y2Iu7iI7L1LOFXiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|228.0|0.67|15.25|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/solr.201700117|TPk85D4m4O-FADeLk0v3NjvsAeuD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|171.8|0.6729999999999999|11.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|TPrg4Beh7AHL_8UqXcUYeaOzvHaR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.6|0.71|16.37|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|TPz3fq8T3Udu8CPFyi32lxyFKnva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|235.0|0.4379999999999999|9.11|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|TQ1VzSyeQc1UFhbxSYZZDgPQlRaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|228.0|0.754|17.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|TQ8--RUQTvKsburw-S8L9WuDK-OX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.97|239.0|0.52|12.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|TQE2FbjYnGoDYlu59E3RYuYAR8IK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|149.0|0.43|5.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|TQOVqUKQHIez1Ze0ufHbfe2ClWN3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|170.3|0.76|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'PDINO', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['IPH', 'PDINO']|bulk|https://doi.org/10.1016/j.orgel.2016.07.019|TQP_omVkGIxrHyres7OuVFdzZnoD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C5H30I11N5Pb5|Pb5C5N5H30I11Br4|MAPbBr0.8I2.2|1.7500001866044976|1.21|158.0|0.779|14.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500301|TQQO8-1SegJvrCnVJI209Fuwcr06|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.8I2.2. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.65|5.5|0.13|0.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|TQd4zL8MaqFPhRCeR9P7Wov0SZvW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|197.0|0.7|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|TQiyzLhpJrSfTcqBm8uBvpGS2nFB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.04|192.2|0.3|6.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|TQpKoRTSDAA_c_9agKpLvuu-g-tY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -C4H16I4N2Pb|PbC4N2H16I4|EA2PbI4||0.94|115.0|0.478|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|TR0FzkzJHJ9vTnjE4SRAhn5nCWqm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.3|0.76|17.74|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|TR9o4x9Paxsfdfi0JApselP5F1UX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.570000167410892|1.06|219.3|0.787|18.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.01.016|TRRtal9hqR53FOwwrPYf-XRI0hDs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|169.1|0.67|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|TRV2JC8sXzpfK6QkAAYQYo5pos1z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|117.6|0.76|7.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr08344d|TRWgLRgvFfNN_FK3rwCKCdd-ttbF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|175.79999999999998|0.583|11.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|TRZ7czwOHdgUCsqLCgePHrpCR_RX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|0.98|190.0|0.71|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|TRsEm_B2Bl3RQob_JrqTLzFXiT07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C10H50I27N20Pb10|Pb10C10N20H50I27Br3|FAPbBr0.3I2.7||0.99|191.2|0.6829999999999999|12.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|TRxIkWBDF2QTMTM1eTDkdxnqs26d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|147.0|0.42|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|TRxVntZMB_lMykddOx4oDh8Yoemx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.8|0.718|17.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|TS4r9Q2nwusCckFFy_1XMgTUF--4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.40|1.500000159946712|1.04|197.7|0.6679999999999999|13.74|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta05745d|TSANNse4coKLfYyDcsZZgBZD55uk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|189.0|0.7659999999999999|14.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|TSMVYSv5uFWJkhA42IEcpy663oTN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.223|163.5|0.7959999999999999|15.53|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|TSSLOyhct3mQxCHnKbPUojU7M9PY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|214.2|0.753|16.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC01', 'Ag']|['YC01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|TSgTEu2Y3x5TFbmM_XhMOPICDL36|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC01', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.073|221.0|0.76|17.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanoflowers']|bulk|https://doi.org/10.1039/c7ta02822a|TSh6FLTik0L32sF0_vgm5CkIDl--|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.826|17.62|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|TSl2GFBqFTb33KNvJ7lhm5swrVDC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|161.8|0.69|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP I Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900317|TSq8K3n6IoM1sTqqRmnZpXd39TX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP I Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|219.0|0.688|14.8|['SLG', 'ITO', 'V2Ox', 'Perovskite', 'C60', 'BCP', 'Ag']|['V2Ox']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1181-z|TSw0SK03SOn0gYl0nUVcUtet7CmU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|209.6|0.774|16.76|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|TT0FO38kpK5KVIDHTOom-48ZQF7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.86|139.1|0.74|8.85|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|TT9HNc6ty2eBQDzFI3qfq7N0pT35|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.77|270.0||14.4||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|TTE69d-SffqFwYLtGOvmbldl7x4a|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|190.2|0.736|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|TTF_xcDQ_HlQn2x39nZngvfzdHP_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.3000001386204838|0.754|223.0|0.74|12.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7NR03507A|TTJRkFZzLh5toSF423gx01LL3JS1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.0|0.72|17.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|TTPSBceAnvN0XtOl-TQsRvPUk7Yc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|227.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|TTTCwMtGl6ToZRPJ4CMkjGaN_WQx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.05|220.0|0.59|13.5|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1102', 'Au']|['V1056']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|TTYTJoKhnyfW2o-b62ktxsd_me0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1102', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.0|0.69|10.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr06217a|TTaeGriOw10klwk6ji58N04MhSEK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.945|180.0|0.69|11.73|['SLG', 'ITO', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-nanospheres']|bulk|https://doi.org/10.1016/j.jcis.2018.12.001|TTiD35KNVIy7bgO334d_t3SX6QVA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|224.3|0.8|19.55|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|TTmjK_XC0U3OmJJB7ZoEDcumBigk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.17|155.9|0.74|13.57|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|TTpzq--Mu6M3Fb7tyi_81KJ-b0nG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.014|215.5|0.813|17.77|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b02612|TTqMqeNJiZAfWjGiauwkTJ9oJNT9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|226.2|0.777|20.06|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|TU2WZ_WXkqV4tB29aSh8hBeLDma-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.62|14.4|['SLG', 'FTO', 'BaSnO3', 'Perovskite', 'NiO', 'FTO', 'SLG']|['NiO']|['BaSnO3']|bulk|https://doi.org/10.1126/science.aam6620|TU4RycyJV2uWo5C_LEjWXu72E6SH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3', 'Perovskite', 'NiO', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.045|211.0|0.6990000000000001|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr06278e|TU9O5mAvwto-6vjwi_TpaxIZXCBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.0|0.71|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|TUEwhnEWv044LwB7W1dRrFjRenQz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.8000001919360546|1.19|163.0|0.6|11.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/smll.202001772|TUVXhXsOenUjQkWN2-HRcaUg2mhU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|222.1|0.73|16.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|TUe1JtHzr7dR9ZCit6YjWV2SX_LS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.93|208.6|0.48|10.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|TUjAnFpUtq-qPFXzV2QsrlTTwklH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|233.1|0.701|16.82|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|TUxKZScnVDgDDAd0xs3272pV3cuN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|103.0|0.639|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|TV2pSALLCia_favC4FbtclVTRdK5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.8|0.72|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|TV9lMf6jWS1fU5-KsClNl0fhbnwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|203.8|0.76|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|TVG4wdxDWao7q5BZdNjU46vjnYyJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|169.20000000000002|0.713|12.51|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|TVK9GwHK99BethodBIzgGQ6WEwxJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|166.82999999999998|0.583|8.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2MnSn4-np', 'Au']|['Cu2MnSn4-np']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01001-z|TVa0l5aj7hXEj1YzlqNhwUjZ23se|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2MnSn4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4C10H59I6N11Pb10|Pb10C10N11H59I6Br4|FA0.1MA0.9PbBr0.4I0.6|1.810000193002366|1.21|175.0|0.802|16.98||['P-TPD']|['PCBM-60']|not processed|https://doi.org/10.1002/smll.201907226|TVaM5uOpjZDlZOuRCOcBVjPYmQ_r|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.1MA0.9PbBr0.4I0.6. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|215.0|0.73|17.1|['SLG', 'FTO', 'SnO2-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nanospheres']|bulk|https://doi.org/10.1039/c9na00192a|TVc7saZ41UVV8UzwBNqLtExdRG_Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.0|0.6609999999999999|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|TVdtsZwgtNy1snkRtpFC6QP3l_gF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C101H573I300N130Pb100|Pb100C101N130H573I300|(EDA)0.01FA0.29MA0.7Pb1.0I3||1.065|234.7|0.77|19.44|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|TVny9QIBHkhIxvNIr35q4VhOtf82|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.01FA0.29MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|180.0|0.3|4.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|TVzK0ZI_V83uhyJkV9JAdxampRq6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.5|0.58|11.72|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1149/07202.0275ecst|TW5Isz5SDg-OMC3duNrO2vCsBrC_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|222.2|0.591|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|TW8YvHLuu8e_tQreIAarMVCfVt1e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|224.0|0.69|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.7b18643|TW909wySfAbvieGSJ7V41WMEFExE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.0|0.76|15.5|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PBT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|TWAizSVXIuxMtltlc2ihtxN5-wEu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|229.9|0.62|12.49|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|TWNkHe1QRxTvsjxfKO-oJaJCz3ze|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|226.0|0.752|18.36|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1088/1674-1056/27/1/018401|TWiGuITHJJad8qPB_h7IIwO8fk6s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|73.1|0.52|2.82|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.14456/jmmm.2018.13|TWq6NFrXTsT2Xhy3f6OlDHYEAXUN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|154.9|0.634|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|TWuOvfNRmOOiiNLpeTdo5OFvo1id|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.5540001657047935|1.11|212.0|0.672|15.81|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|TX7hWXBSmOCxKCrJU4_l6k0Ya0qi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.27|151.9|0.727|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|TXCs3pcELn2mOpe_YvTDmtNGRUGR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|217.0|0.7|16.19|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|TXIj8ozqvkrUQe8ld0q4LCAWiGvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|216.0|0.757|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|TXZlx04yZQHMocjL0TJa9V2XRNvK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|205.1|0.59|9.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|TXcmCdklRl6v6UpYfa9BdsevGc7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.057|220.2|0.7070000000000001|16.46|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801249|TXfYh7p0JE1afGodMDPWGtPUtS76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|216.7|0.733|15.86|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|TXgfSZ2cbuYDonZtE-hDoc-bdLpM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.5|75.6|0.8190000000000001|9.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT-BTH', 'Carbon']|['2-(3,5-bis(5-(5-hexylthiophen-2-yl)thiophen-2-yl)thiophen-2-yl)-3,5-bis(5-(5-hexylthiophen-2-yl)thiophen-2-yl)thiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|TXi30iF6XVJmuftayh5dmZojwtua|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT-BTH', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|185.9|0.77|15.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.01.006|TXnHjTKc4Ce4zsgwe11rEqCjleI8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.7|0.66|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201502741|TXrdKLmWB3d30jcy6gbTVEAZKH9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|188.0|0.657|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C7TA01752A|TXtfQJxTRxPEsghYQnKAZRZtfg2p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|111.4|0.593|5.81|['PET', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|TXyVf4IkxBvcLBqA5EitGYQTxVuJ|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.5|0.72|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|TY0ikyIlIe5i0NlPPL29o1CRaWiY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H5N2Pb|PbCN2H5Cl3|FAPbCl3||0.74|189.6|0.58|8.14|['SLG', 'ITO', 'Perovskite', 'PCBM-70; PTB7-Th', 'Ca', 'Al']|['none']|['PCBM-70; PTB7-Th']|bulk|https://doi.org/10.1002/aelm.201600329|TY732zaSyjorLaCsjrg6a48Ianox|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-70; PTB7-Th', 'Ca', 'Al']? The composition of the perovskite layer is FAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|45.0|0.45|0.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/7545914|TYOOC4zUFbPzjmuCaGEVZBsaO5pE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|96.0|0.36|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|TYSCo4EqdbjN8tzrIR0qEpUyctZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.430000152482532|0.59|125.0|0.494|3.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b08859|TYTMmwyO_l4XJXPRSvTsQ6_SwIVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -Br51C20H117I9N23Pb20|Pb20C20N23H117I9Br51|FA0.15MA0.85PbBr2.55I0.45|1.5300001631456466||||12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|TYWBvQ52yPsP4ZEno61UFHCNGTyy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr2.55I0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.9|0.629|12.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['Boron subphthalocyanine chloride', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOT.2016.2608619|TYc15Kfn6UeZITNiFUaFqprcEF0o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovsite', 'Boron subphthalocyanine chloride', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|135.29999999999998|0.58|6.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201306217|TYpm5mCvygbS0_2IFkQkDnj6jMdI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|176.5|0.42|6.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ce00724e|TYwDFGh1ZY7vxL7anvw_vyd1CXxr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br63C50H300I87N50Pb50|Pb50C50N50H300I87Br63|MAPbBr1.26I1.74|1.7900001908697432|0.898|82.0|0.6579999999999999|4.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|TZ3_CNTyzW6VpCX9oJynHaI1SIeJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.26I1.74. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|178.0|0.64|10.7|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01598|TZ3dpuv4MlLYWNy7OJMSUckAeUUO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.12|220.0|0.74|18.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|TZLT5CY7v1ckVCXgLfdfmOSIQPlp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.875|194.2|0.73|12.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|TZTSJgQmLmzdCbHJiY15UcC-Iq5f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.05|197.7|0.73|15.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|TZbJHI8CvAMcfGV_Nf8ZmSF7XKpL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.0|0.73|16.37|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-019-2556-8|TZv2FtrCDbteEuCGKPxt73f9pA2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|220.0|0.72|16.5|['SLG', 'ITO', 'SnO2-c', 'ABA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'ABA-SAM']|bulk|https://doi.org/10.1021/acs.nanolett.6b04015|TZwLjIoNeip_BoEX-UcQIIJCswJd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'ABA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|193.0|0.76|16.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|T_6jKofbWsanX0KoEUpNq0SsTInj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|224.1|0.68|16.17|['SLG', 'FTO', 'SnO2-c', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Graphene']|bulk|https://doi.org/10.1021/acsami.8b15665|T_7A_llWuhspfJeMAKmIR7LCweu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|180.0|0.63|11.99|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|T_7phBG18GHdCEfug5XjpIOuKoNX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.8|0.71|15.77|['SLG', 'ITO', 'TPAC2M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPAC2M']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|T_8gIp6mXkoFe064V7wjd8AkmNEa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC2M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.12|251.0|0.77|20.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1126/science.aat3583|T_C3hwdHUr2TzgZjfULJjtlZczwx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.23|109.1|0.73|9.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|T_D40fPi27dY2YTqJVxMbp12BpxA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.76|115.4|0.69|6.05|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'CuI', 'Graphite']|['HfO2', 'CuI']|['TiO2-mp']|bulk|https://doi.org/10.1007/s10904-016-0410-y|T_Qby3jVA7oI3IZtet4KJDLlejA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'CuI', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.4|0.7340000000000001|12.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|T_eQzjAbtqTU6mkBUQOPyMweIwv7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|165.0|0.6|8.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|T_eqdDN1WDkhlm29TJFFrQ55eeyR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.12|224.5|0.706|17.69|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|Ta6b3x3K3YPGJXoQAiduQFKD7Rl-|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|157.89999999999998|0.362|3.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|TaAX7KannsrwvFzGPxDTG8QuP6v2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.1|0.75|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.11.030|TaAm02Ab7dT6QABe1YQbVLiiXxhc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.22|152.20000000000002||14.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|TaFvpCWPMv_pW8Ifn3m95VRdv3Nc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|203.7|0.78|17.02|['SLG', 'ITO', 'PTB7', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTB7']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|TaIlkaWBv8DK9seyh33HBBHNRL0p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTB7', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|220.5|0.748|17.69|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|TaN76Hko6DAKh_k7nhyTaODYWWT-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|231.6|0.76|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|TaOeN9pYox9GzW_qUGiztoQ7zQdq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|225.0|0.63|13.9|['SLG', 'FTO', 'Fe2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-c']|bulk|https://doi.org/10.1002/adfm.201702090|TaXH6VszFt_VsubXLIWhkIeVm29b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|139.1|0.546|6.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2775162|TaaK5Fysks24ojrx88dwN0cPIxgv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|154.4|0.359|4.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|TabXzAHIbf3uk4VqBt24omor4iJn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.754|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|Tadx8XoTrZ5RfF5WPuLlXhdwUuiz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.5|0.731|17.04|['PET', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1002/aenm.201701144|Tapgh0vE3O1KvyxLIi4LOakQj0ge|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|180.10000000000002|0.6709999999999999|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'IZTO']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226894|TasnYUc_ysKON_6xFk-resqubY2v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'IZTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|137.65999999999997|0.713|9.23|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|TawTZWT_tY9yGgIeR1d7RjVovY-e|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.13|230.0|0.79|20.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|Tax6axmfi9ymE01HO6r9roGErtKL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|208.4|0.63|12.34|['Ti', 'TiO2-nw', 'Perovskite', 'PEDOT', 'ITO', 'PEN']|['PEDOT']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5ra23430a|Tb5vUD4Z0W-dzY3mnZ-N7JmcVJ8Y|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nw', 'Perovskite', 'PEDOT', 'ITO', 'PEN']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|184.1|0.77|12.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN; ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN; ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|TbDvVhsB0blHCUK-7P5RXbqbjrsP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN; ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.038|222.0|0.67|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|TbJrbrn9PI9WjVsOsX13gWczhirR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|203.1|0.752|15.85|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|TbKRW5rhK9SshSU8G4UZypIqVfnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.145|231.2|0.64|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z25', 'Au']|['Z25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.035|TbS6J1sIMrmV6eBWZD5ebQETezaj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z25', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|149.60000000000002|0.44|4.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra09110a|Tbd4Pw3ODOybkNRKfaRVOPiysUGh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.62|275.9|0.61|10.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'BCP']|bulk|https://doi.org/10.1039/c9tc02003a|TbgOxhW_5IbH2W4OPV6r9SZLtCrj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|126.0|0.75|7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|TboQ6kmLsiqsz_uKRB107_-Akuk5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|182.9|0.616|11.41|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|TbrkjKRVBg4bU4wmGNrlXroOwXGm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|186.9|0.578|11.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|TbswhTIBanxdPTUBB48i766cH_4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.0|0.54|11.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00526|TbyhwVFTie2yvKy68S7dz9mY4R5F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|178.0|0.63|10.42|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|Tc029GgTgs-qSEsY5VoIdBOLASrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|203.3|0.513|6.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C8TC02754D|TcD68ZDAYcYPPWH7_zhBXFSdmys0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|227.8|0.75|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|TcKxFibj1jTNOO_bRd2Cj6JWwRCi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|190.9|0.684|12.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|TcKzlyDFA6rFW96Ng30HIePUBCfr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|152.0|0.58|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|TcMXAWY7JJ7G_FrfW5Xj1jrUJ8_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.8240000000000001|291.0|0.7|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.18|TcQWMc1tpAlDJw3Zu7qtlC6izibM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|197.0|0.649|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|TcVmG7qrbqzw_vuKDhn5sOxiZMKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br75C42Cs8H212I75N82Pb50|Cs8Pb50C42N82H212I75Br75|Cs0.16FA0.8MA0.04PbBr1.5I1.5|1.8200001940686776|1.2|145.29999999999998|0.82|14.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|TcZ5P6eHTLQcUsKWpnFDzkVMiOac|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|231.0|0.3829999999999999|7.01|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|TccMUk3hbF9Ac0pDOQVQU39umk2s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|218.6|0.7|17.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800909|Tcjd1c5SfmVy_gZEKcVN3w8DWa_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.912|172.8|0.76|11.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA1', 'Ag']|['HA1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5sc03569d|TcwCF3I7oPx3O_gtbTB7MR6m9XCT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|1.01|152.0|0.63|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDI', 'Spiro-MeOTAD', 'Au']|['PPDI', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b12579|Td32tYREzliNxUP5qPCQ8XKrkhxU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|170.0|0.625|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00375|TdIGRcdn50XFm_Os6sCW7tb0aIRG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|164.8|0.53|8.29|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-np; TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|TdJ5mDqZn7Xim1iuXw3elC5DR35s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|186.6|0.833|17.55|['SLG', 'ITO', 'C60:Phlm', 'C60', 'Perovskite', 'TaTm', 'TaTm:F6-TCNNQ', 'Au']|['TaTm', 'TaTm:F6-TCNNQ']|['C60:PhIm', 'C60']|bulk|https://doi.org/10.1039/c8ee01936c|TdJ69kui3oJjQVvOrrarARHyzcde|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60:Phlm', 'C60', 'Perovskite', 'TaTm', 'TaTm:F6-TCNNQ', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|226.0|0.66|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23845e|TdV5eK8ed-QCfgytnCGDlNUFeAy-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.77|17.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|TdWXIKink3iq2gKcXIsHoDozlkXk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55||1.0|239.0|0.698|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2019.05.013|Td_3k3dmOrl6Kcqqscw7CJuIXseG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|166.29999999999998|0.431|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s00339-017-1240-7|Td_Tbtrm30rXyIIRhPqXHvhvpG6w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C95Cs5H489I300N176Pb100|Cs5Pb100C95N176H489I300|Cs0.05FA0.81MA0.14PbI3||1.1|224.0|0.723|17.76|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|Te1CtXCbVCk5kyA846DMyK_bkdz9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbI3. -Br39C95Cs5H491I261N174Pb100|Cs5Pb100C95N174H491I261Br39|Cs0.05FA0.79MA0.16PbBr0.39I2.61|1.5900001695435149|1.06|185.0|0.67|13.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.04.035|Te4ZLrXQZwD9sTNclH5ueRkIZomy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.39I2.61. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.17|182.2|0.748|15.95|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|Te6fNbm7l93x7hhniSdhhf8guHm4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|151.0|0.43|5.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|Te7j93VFTh5sRVu0d9FjSGjFACm_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|49.400000000000006|0.372|2.21|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|Te9qtLFkLbI84_ag4qNtJFThOE9R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.4|0.706|12.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta01595b|TeDIVM3vnf1ieVaEIBgzU_58tcGi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|174.0|0.52|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanobeads', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanobeads']|bulk|https://doi.org/10.1016/j.solener.2014.11.016|TeF8G_jKC8uuiXrDZeMfbnt9qWVW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanobeads', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|213.1|0.8|17.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08995k|TeHPy4NpM2Wdww_x_8Yt-Txzwc6z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.0|0.6859999999999999|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201402461|TeIdjgaILqmFQw8WRbg4vv9rx1fR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.02|207.0|0.6|12.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|TeS0DjPUHrCvz2WB1kG1lJwSFjI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.4|0.71|13.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|Te_ooVOfqLz7rUw_105rZQ-ZMA3v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']|['PTAA']|['PCBM-60', 'm-PYBrZnPor']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|TejheZ20Ucat4uc1DzRDW3MpnVTX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8109999999999999|150.7|0.58|6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104798|TekDUcTBV2C7ag85MJqlEPm20dkZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.0|207.3|0.43|8.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2018.14385|TemvFwe41DrhVe8huAqfAHp0OkK3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.0|0.7090000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|TequjVSgt30veoUdSN-g3WLp3pxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|202.0|0.56|11.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801773|TerWjLg9M66DUaBRj7AJEJu5QoJE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|157.6|0.46|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.172158|Tf3hSIMe-DtUYhTSQtP2D0uEepNN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.9|0.77|19.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.chempr.2018.03.005|Tf9nj8rdFlBh_lZbry8RHAIN3sSd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C177Cs3H565I140N74Pb24Sn16|Cs3Pb24Sn16C177N74H565I140|BA2Cs0.15FA0.85Pb1.2Sn0.8I7|1.2700001354215498|0.61|139.0|0.59|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|TfCjMYWc4k5-KS4anNdeUln-CHOv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.15FA0.85Pb1.2Sn0.8I7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|215.0|0.71|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602785|TfSnxvPo_9WtIQxT9DmzzTasEBgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.08|235.3|0.71|18.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b02473|Tf_hYBalGMR-2vPO6W4fnTu76aK6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|218.9|0.6829999999999999|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1021/acsami.7b02242|TfgSGGrImo7KrTsqmlyt5qqwuKA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|88.5|0.71|6.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00843|TfhXeFUNcivZKeEvwavSO6aL63x5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C85Cs15H438I255N157Pb100|Cs15Pb100C85N157H438I255Br45|Cs0.15FA0.72MA0.13PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|TfjXNNksE7nC2BrOO91l_jiHc11q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.72MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|219.8|0.62|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|TfnP_TSWjqPY3g6OFSSJqkJOIgzZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|228.0|0.758|19.12|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1002/adfm.201706276|Tfr7qvDY0w32jWPkuTsugVLBcCsC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|145.0|0.55|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|TfwG8zI-XxRBEUi9ttpzlRmvO62G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||1.01|213.0|0.73|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|TfwwVGBH-GlqINybyCBeVbWMM1cO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|179.0|0.73|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'quart-p-phenylene1', 'Au']|['quart-p-phenylene1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc01076a|Tg6RefHoJAIOvXjaL4jVAgUmtnG9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'quart-p-phenylene1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.103|222.2|0.7440000000000001|18.24|['SLG', 'FTO', 'TiO2-c', 'CsPbI3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsPbI3-QDs']|bulk|https://doi.org/10.1002/advs.201800474|Tg79QEMYqlDxyJdzvwujDd8qOlzQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsPbI3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|173.29999999999998|0.56|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.171|TgCU9cgZngcTNSwCgH4H672rj78s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|217.9|0.72|17.83|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|TgCfxZ5XGytPM3-_T0cmxfDvRaRg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.83|16.0|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|TgXKC2YlMGsyYa6VFcW85dM2qaXx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.3|0.67|13.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO', 'PTFE', 'Ag']|['NiO-c']|['ZnO', 'PTFE']|bulk|https://doi.org/10.1039/c9ta06875a|TgoeCWDGpjVonSzS2nwQuu1uOlEv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO', 'PTFE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.07|209.0|0.66|14.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.8b02408|Tgr6BvXpEjH29s80j9O4j9dTZXIR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|202.8|0.715|15.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.01.102|Th8w2Jdxb5ip4IIap7e_sXfriXcc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.08|192.2|0.747|15.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900602|ThA4ir70QbpU9urkUrZDfQNHOdXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|114.6|0.693|8.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00220c|ThB4U9I4ZqttrrwWo8ozr_Ee1Wkp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|190.0|0.47|7.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.010|ThJDgsNos3Uw-GiZ1Fj0UiPGopl2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.1|0.79|13.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|ThOqZLBHRRQ4iehIStNgTHSkWDaR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||1.0|162.39999999999998|0.596|9.34|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9ta00239a|ThS_1fzWHZx9-Wjv9DsZ5suhHzgH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|163.0|0.675|9.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b03525|ThhfLHrDjSgUHvofTgtz0vYrqeHx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|168.2|0.6609999999999999|11.9|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c5ta05693d|ThjGULAyDYLsFxTds9jeFKyhhEsb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.974|147.3|0.652|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']|['2TPA-2-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|ThnRAeILBJPdCzRr_x1et-dBMaCD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|171.9|0.72|12.25|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|Thq6kr2QJmf0R7KdjIzgpz5-iglf|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.2|0.737|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|ThtHOcDjIAqg3VQjrHD82z4Ps1wV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8|150.6|0.688|6.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|ThwNXYjbvMiuwK2apCRn63RkBwwj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C85Cs15H442I249N153Pb100|Cs15Pb100C85N153H442I249Br51|Cs0.15FA0.68MA0.17PbBr0.51I2.49|1.6500001759413832|1.09|203.0|0.757|16.8||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|Ti-dunvo4S3_dtqZptBopsGruzwS|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.68MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.8|0.72|15.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|Ti2xOOyhjBI5HG5bCgVhTA49Hcd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|206.6|0.6579999999999999|13.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Pentafluorobenzenethiol', 'Spiro-MeOTAD', 'Au']|['Pentafluorobenzenethiol', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH']|bulk|https://doi.org/10.1039/c5nr01820j|TiDAKW0tFzAcnorHJ8KiD23gn6X9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Pentafluorobenzenethiol', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|215.9|0.773|16.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|TiDQvpiA7mLl_seeGrDwKWW0l6g1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|231.8|0.73|16.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.05.002|TiFgfv9vgKcIdqpkbkUIqARyMIDx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.129|236.7|0.74|19.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|TiQS31SNce6tn9-slE8OnMPUQ-yq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|117.0|0.415|3.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01087c|TiTnijwe6o11YGcJJUximx4MycZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|227.6|0.715|15.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2018.05.025|TifPVkwTYd6mfRes4tB5TOxQMQGA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.104|196.93|0.745|16.19|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||TirO4vy67SnkyOap_RoODPfd3MHs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|101.1|0.61|3.21|['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']|['CuI']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s11082-018-1376-5|Tiu774Eo9nMB4iELIOmAtVtvfzgd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2500001332889268|0.25|261.0|0.3|1.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b06199|TivBFIAvd8XDFrTc7Kuh5UGjlpho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -AgBiI4|AgBiI4|AgBiI4||0.61|15.1|0.44|0.41|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|Tj1s-ki0JqlWs20ZN8yYnhxtnqpv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBiI4. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.99|170.9|0.64|10.85|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7cc06183h|Tj2Rs9uGavklSQyG01kf3kAkHeO3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.0|0.573|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|Tj3wHE81nOwMOmo27OnXKG88E-G4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H50I29N20Pb10|Pb10C10N20H50I29Br|FAPbBr0.1I2.9||0.95|209.0|0.555|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|TjCKdtOwImK3NTyXMPRFnpHG7Cxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.552|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|TjOZBxO4KMnGlHHF_7T-PzpVHSB4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.9|0.79|19.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|TjRNmDr2cBF6oUybOclwJfZpHdXH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.4|0.653|12.45|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|TjbACzlM51rYXnUXONZx_kKuTQtn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.5|0.74|15.36|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|Tjbpc24GXy5qOfz4cGXLNxpTlH6n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C95Cs5H491I260N174Pb100|Cs5Pb100C95N174H491I260Br120|Cs0.05FA0.79MA0.16PbBr1.2I2.6|1.710000182339252|1.11|180.0|0.733|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700607|TjcheQWgGCji4SgQffyDQr8NMECu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I2.6. -BrC2H11I5N3Pb2|Pb2C2N3H11I5Br|FA0.5MA0.5PbBr0.5I2.5||0.88|108.1|0.507|4.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|Tju3_TOPKJTuac-QrRzuaJQ5YJbO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.0|0.75|13.5|['SLG', 'ITO', 'CuI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuI', 'PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|Tk7ijZkahL6K-jbL-gIZPEUsTW9l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|194.0|0.604|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|Tk9hLl89HdaLL_GytayVjELr6uem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.701|15.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201701440|TkGX5OWUw-W1C4gzP50YmViiRd4n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C85Cs15H438I255N157Pb100|Cs15Pb100C85N157H438I255Br45|Cs0.15FA0.72MA0.13PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|TkIZ5szuXJHCSLyvx1p5Xn6RRJSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.72MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.6|0.713|16.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-018-9263-7|TkLvyrSd5IxmIQDBBQqJeSnV-k6q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.0|0.703|15.1|['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.04.021|TkPnwlBKlJEZrdQXF7QoUiMiSSEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.6|0.7759999999999999|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|TkcUBhfJb9poOUGQnytbwKYp7jGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.0|0.7|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02264f|Tkd-u78WKlcXmMW77XGN7vOBUcCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.7390000000000001|114.7|0.539|4.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|Tkd6BGRRcxaDF1p_sQFSulvImEI7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|236.0|0.79|18.0|['SLG', 'FTO', 'TiO2-c', 'Carbon-nt; TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Carbon-nt; TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900164|Tkk8Q3n35Rb32A4k5g2IVVHfLvyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Carbon-nt; TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.061|207.4|0.726|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|Tkn8Q7Nf2xA4fTIn5F_9kSjWOUL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.2|0.71|15.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|Tkok7isR0YmoTHSqe1nkcuMC5-hW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|202.0|0.76|14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b12476|Tl66fHvvTnRYeGRhbnRHD6SMlPOx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|200.5|0.52|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|Tl7bTW7Fl4J5FFDNO6m7l5GXxNE2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7140001827657765|1.198|195.0|0.766|17.88||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|TlLfwqpaZOGXIlRHeULbyobfOuUx|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|196.8|0.69|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00893c|TlUoqZQfEkVr_aORjHzXynyXlKdt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.0|0.7829999999999999|16.7|['SLG', 'FTO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.8b04078|Tlgwa-xVBpT-wrhLjG_uwCHhASuy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|102.0|0.48|4.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1021/acsami.5b11494|Tlma1rkWFqZg4_jOnowNiHw33hy7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br11C20H103I49N37Pb20|Pb20C20N37H103I49Br11|FA0.85MA0.15PbBr0.55I2.45||1.1|233.0|0.76|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b05353|Tm5u9ou87cHi8srgvCv4v9sfDnE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.45. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|202.5|0.583|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T(EDOT-TPA)2', 'Au', 'Ag']|['T(EDOT-TPA)2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.06.016|Tm7iKhq1hIZ21P2d1OSRmkbi72FL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T(EDOT-TPA)2', 'Au', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.037|220.0|0.6579999999999999|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|Tm9AIUSouTPdsaA7flK5nY5ynQaM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|156.5|0.44|7.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'DTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|TmG-pD1GtPuw9ddA5Wj6sbPr4iCl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|98.9|0.58|2.98|['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']|['CuI']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s11082-018-1376-5|TmGPf0kwbQ4XKqmdmdBQkwJ_5C52|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.7b01851|TmId90VvY-fugx4ppA9_PZ8pGuzX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C3Cs22H15I75N6Pb25|Cs22Pb25C3N6H15I75|Cs0.88FA0.12PbI3|1.5100001610130236|1.006|227.2|0.77|18.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801948|TmMyWUWuolEE3vIVNzGcTjDEJZPD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.88FA0.12PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|29.0|0.531|1.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|TmQJXWz5DB3zMr7Wvd8P3jYlEMiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|142.10000000000002|0.5589999999999999|8.56|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|TmSm93VUTyFLPuzLOrV9Iqu0QoEH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|199.0|0.769|16.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.102|TmemFDQGzoLnANm6RUV-Xn0TTWc1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.58|175.0|0.6629999999999999|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800136|TmguwQJZ8UpPOCoFjc8SLfvhIR51|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.2|0.715|15.57|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.081|TmhAFCcKe6ulhqxub53PSZqY0yb0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|158.6|0.54|7.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C6', 'Au']|['3,6-di(2H-imidazol-2-ylidene)cyclohexa 1,4-diene-C6']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|TmhKv7R0VlgJbwIlreG4ftmnY9Ti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C6', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2960002448251005|1.23|31.7|1.14|3.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|TmpmeQ6BdDi4a56mUaVviycKq4oA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br63C180Cs20H900I537N360Pb200|Cs20Pb200C180N360H900I537Br63|Cs0.1FA0.9PbBr0.315I2.685||1.04|221.0|0.779|18.2|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|TnHeZAYrb8DZSWMRdVP1pBs_tYgf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.315I2.685. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|TnMeuiKyC7g6iHZMGPe8fl6lqL-9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.0|0.72|6.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00902|TnP6xjCeuRSQDoU4aV-U4DdophW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|149.5|0.57|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.06.007|TnR5TBmhx-iFib19iFmfiaanLY31|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|114.1|0.6|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['Carbon']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.030|TnTjqQwqU0LO-qTh0-oBTUS_xZBj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|115.1|0.314|2.53|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|TnbUTMiIn6InEx7wVhTGiwMCTTUH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|231.0|0.7340000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'V2O5', 'Au']|['NiPc', 'V2O5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|TngEuWRieHFDXK5v8Rrw1RYELKzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'V2O5', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.1|230.9|0.8140000000000001|20.65|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ee01675a|TnjwGcMN4ydq9HHaUxP4SrGO1nAZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|190.9|0.61|11.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|TnorQWiCtHXOs6EBKpUR6C4a49wt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|188.0|0.718|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|TnsrN9CVHrQ35vERQudsSavL1Qmj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.123|225.0|0.794|20.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901980|TnxPAKbQnwNCxTaKv54OXAA0ubpN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.15|244.9|0.799|22.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|To1-P341DCTYwGq390LFAGbjYBcZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.4|0.748|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|To1rtT3HWPgB1A8TZTScFWlyqsYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.974|191.6|0.662|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-1-DP', 'Au']|['2TPA-1-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|ToGKt-_gYSTGt2FQE6wSJZu-Lemg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-1-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|0.89|203.9|0.601|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|ToOylv3Itz2Sg1bS7wJuknv_AHKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|192.1|0.45|7.05|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra27434f|ToWjhwu4NI1aZ_EVqGdSQGL53hGO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.64|256.8|0.706|11.81|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900413|To_DvnQDMZNRtqsMCAKW8k3X1ht-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|122.0|0.53|5.5|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|Toj0QV1HAl7QwWGcKdDp6qgh2hNJ|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|180.0|0.37|5.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700612|Tol8LDiEi2SzrOVx-5l48dVhQXBD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|187.1|0.73|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00393|Tolwf1UDG90MnKQ30P0R2TUwHMnH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|209.2|0.721|16.07|['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|TovXEYVE_htj6_g4SRiD4AQJCWcW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|215.0|0.77|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b09182|TovcUZgvZrSS9dRJRShfWTKTNMlI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.07|214.9|0.732|16.81|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|Toy5SOoBRyRA1Ogv92COfwyE77kA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.017|189.6|0.672|12.96|['PET', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|Tp2bwvtAdoTDkUDbtu9_EZgARBNH|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|||||5.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4991633|Tp50iRJ2K-skvsnZ0MGHYZKXFhGf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.6|0.64|13.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'beta-alanine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201604305|Tp8p2LttXJ17S-SsEsy7zINCbsdx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'beta-alanine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C203H1148I600N261Pb200|Pb200C203N261H1148I600|(EDA)0.015FA0.29MA0.695Pb1.0I3||1.085|237.0|0.778|19.94|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|TpF00H48IOIniSKFhJKrHwENTldn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.015FA0.29MA0.695Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|165.0|0.6890000000000001|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b00375|TpPfTxTW8aVf5ktDe4Nkmo0O1tHY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|168.4|0.72|12.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Ag']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201700183|TpU92BLNQadKKuodA_kJc_xLQEQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|219.0|0.69|16.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1039/d0ta04721j|TpVjZNGvY8fmgXaX1AnAXZZ9XNhp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.928|105.4|0.66|6.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|TpdM9dIMlLkbJUb2rMU9ShUfC9Ms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']? The composition of the perovskite layer is MAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.0|129.70000000000002|0.609|8.53|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.11.047|Tpg8vOcjf-3u-yCch8BI55O31p8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.2|0.7390000000000001|17.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900415|TpkGrSnj7FiabnpL2QooCe9NPItx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9||0.35|19.3|0.45|0.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta06679a|Tpn0jpdWyfLbOq491RK-zqmy0ARy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||0.902|189.2|0.6729999999999999|11.44|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|Tpq-u3TOsDS3rl5SI70uiYZPjYI6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|224.23|0.71|16.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MoS2']|bulk|https://doi.org/10.1039/c7ta11295e|TpvTheH2P__bg6b2Dtbm3yDtISgb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|228.2|0.754|16.23|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2017.12.076|Tpy9SPKX2_aRNyFLyQNKbJUQy0um|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|150.8|0.33|2.41|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Graphene']|['none']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1021/acsaem.9b01675|Tq0weP14FFv8qA2y12ou2Et4Ns1I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -Br120C95Cs5H491I180N174Pb100|Cs5Pb100C95N174H491I180Br120|Cs0.05FA0.79MA0.16PbBr1.2I1.8||1.24|169.5|0.73|15.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|Tq8LVzS49OjaWdl-6BcDh68totuJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I1.8. -Br9C9CsH45I21N18Pb10|CsPb10C9N18H45I21Br9|Cs0.1FA0.9PbBr0.9I2.1|1.7000001812729404|1.12|181.0|0.72|14.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6tc04510c|Tq9ihfh8DOlrnNuroWNmBv6ubl9U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.9I2.1. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|TqAHHNS67CuQvVtYp9PLFj01WDVD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|239.3|0.7559999999999999|20.16|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OEtTAD', 'Au']|['Spiro-OEtTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|TqAK1t0HF51vUO1btdwu7ekvI9UE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OEtTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|178.0|0.606|10.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110071|TqBCUkrcRNVMg-95NiPLhR09GfrP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|200.3|0.636|12.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|TqBYuIHS1Q4pmqB23o-LZHO4SxMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|217.7|0.73|15.4|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.3389/fchem.2019.00050|TqCcx_RZ7U88WUdhtVqhgeV9Wogu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb80Sn20|Cs17Pb80Sn20C83N166H415I300|Cs0.17FA0.83Pb0.8Sn0.2I3|1.3600001450183523|0.77|144.0|0.648|7.7|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|TqJjIgdpFPhKbE5CF9naTkA-vlsF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.8Sn0.2I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|39.7|0.414|2.49|['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']|['P3HT']|['TiO2-mp', 'Pbs-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.081|TqOzgenCYFBxIufGS_na4zIcWSmh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.131|237.0|0.763|20.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|TqPsDyDg-QXgMA5gPqyxpliv0VH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5950001700766705|0.9|149.0|0.746|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE05|TqUk_Enmhq7GVTllBVyctyzV16Ef|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.5|['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00183a|TqUvPnlJhO0fHQWLhvB031HoA8oV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.562|211.5|0.5489999999999999|6.53|['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.orgel.2017.07.047|TqYC1Vlb9mHxv71Q7BxRrVE_coxV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.07|232.3|0.7559999999999999|19.07|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|TqeMwtltcXW8PriARoFuH8NUqB-Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.93|93.0|0.5|4.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']|['NiO-c']|['PCBM-70']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.100|TqjaKj15U823SaSnY86XZwM0zgqy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|199.0|0.748|15.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00129|TqmQNm109annEragT1hysSMLff6W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.48|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23062d|TqpRTdbWixIkHE7HOHkkH0Udyreb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|TqsyEGHY8ks79iniYEKJuthB5hTy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|234.6|0.647|15.64|['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au-np; TiO2-mp']|bulk|https://doi.org/10.1246/cl.190233|Tr6Q9ajWx7Iz0k64nCo6vjptVZls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|212.0|0.73|17.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|TrAsqHydbo_7kmFRxr2VHcgSjKKu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.138|235.1|0.732|19.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|TrIDzyNfNjJ7q6czncszdpi_WUb7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|201.3|0.73|15.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|TrJad6V-c40eYvq-2IhvY0F73W60|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.125|233.5|0.703|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|TrOEXA66e1ThOZviRFPmfVYlW7z7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|171.5|0.71|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|TrQItm95fF7zTtIHq2z6rHUWg1cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|183.8|0.76|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2016.07.045|TrRiqqDy0S-37OXbklu7XrS7IE_i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|205.1|0.775|15.1|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|TrcQ_bKCIA4TRA7gKeS_dnGCrYea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5800001684772036|0.93|186.1|0.562|9.85|['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228320|TrfIdfSnABzN6kKPQarwBT-TwbMc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|TrzAg2UVe2Ul4zK6Lds3QRiQh3Yt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20F2H46I13N6Pb4|Pb4C20N6H46I13F2|(mF1PEA)MA4Pb4I13|1.6000001706098266|1.086|129.8|0.473|6.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|TsFew4-XgZIS7jBW0jAgK5dRV3_N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (mF1PEA)MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.009|181.0|0.61|13.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|TsLYXRKqYTEtomxIdHWGNlUd7G7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.0|0.61|10.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c6ta02918c|TsO5vLg1NtcPK6ukDknBV6uBa1yh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|148.3|0.72|13.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201900311|TsYJhnmvT6n1-ivS0ACmrRLMLi0N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|191.7|0.802|13.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|Ts_CYymWr8sRnWEhpQDol4KOz3v7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.1|0.802|18.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|TscZRsVe2GP3-icTGDZA_ub57F4q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.5|0.49|9.25|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.orgel.2018.12.030|Tsf1dvJQq7pyJYcju7CUyxYn7Lgu|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|224.0|0.69|8.0|['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/acsami.8b22206|TsnDevV_cwua9-2z1r86-2uQjGIu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|176.0|0.736|13.3|['PEN', 'ITO', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']|['PhNa-1T']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201600746|Tss7wB_BSz_A04hdJ5TnqRTwkMos|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|162.0|0.56|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2017.01.019|TsszVtbJzMbePBIUe_31ZFvYXbIS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.5|0.58|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|TsvdlWLv876_ggnTMdHoUMM_IWN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5600001663445808|1.08|228.4|0.775|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|Tsyg-T8KyxKZr4wn4FFciskhKBJR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|140.5|0.66|7.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|Tt9iIEDIQ8o3rDYReTzUMjGq7853|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55|1.6300001738087604|1.124|208.0|0.79|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'ZTO', 'IZO']|['PTAA']|['C60', 'SnO2', 'ZTO']|bulk|https://doi.org/10.1126/science.aav7911|TtCQOE0-9DE-SqWPR1eQGcPAxd-n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'ZTO', 'IZO']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|161.0|0.649|9.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|TtKee3xruHZ7dcf0UJyekxnpLj8j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.01|178.0|0.69|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|TtO4xO3ehl9ALMzT36-WNJLyCo7y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|204.0|0.72|13.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/ab140f|TtTgSTeRAYzAXWqvdCC0JHeumotP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|196.1|0.76|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17068|TtolxP4B5zBxKL0IQ-chqHRDcLE0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|107.0|0.588|5.27|['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1063/1.4926363|TuRGCLJopGNqLBzkl3dv8SjmH9r4|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|140.0|0.65|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|TuSdn14QllJUx-sxcuQ-EEAEQNfv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.258|74.6|0.7859999999999999|7.38|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|TuUu9apREgS4AHTu1q_Othr1bFEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|220.8|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|TuUubRPRQSBo7trXZipO4UGxl1Ba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.5|0.807|16.04|['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['MoOx', 'PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|Tub9uH1-4wcsAAp85YMoD4dKyGGW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Sn20|Cs2Sn20C18N33H93I50Br10|Cs0.1FA0.75MA0.15SnBr0.5I2.5|1.4400001535488438|0.41|89.80000000000001|0.65|2.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|TufCJUmbUbNcF0FIv_VkMNWeGGBJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15SnBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.583000168797097||||10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|TufKONuxCswwld99vPT5pOhQyh8a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.096|215.7|0.7390000000000001|17.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|TujufemG3YvlHfqlL5K7Rcw4dwFC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|224.2|0.72|18.24|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c7ta03150e|TulGikXVge6_1sj68SZQb85R2jAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|210.0|0.71|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'SWCNTs']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606398|TutKI1GCr6D_233vuegHOoz68Lh1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'SWCNTs']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.0|0.76|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|TuuVM2z-lqOOejNEBwVrJUBnuyU2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|91.5|0.417|3.32|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/jacs.5b01994|TuvrxQh8hZCceHDC9LsDWZoLh_y5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|190.0|0.3379999999999999|5.73|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PDBS-PDI', 'Al']|['PEDOT:PSS']|['PDBS-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|TuwaH3PTm63odq7D4xrVjK8f-Wx6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PDBS-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5780001682639413|1.02|223.7|0.735|16.83|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|Tv94A9gaWOEEDe0MaLdY91wS5NUO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C166Cs34H830I600N332Pb199Sn|Cs34Pb199SnC166N332H830I600|Cs0.17FA0.83Pb0.995Sn0.005I3|1.520000162079335|0.83|121.0|0.667|6.4|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|Tv9XZuD8K2vuvd5bA8q98yXVC5yc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.995Sn0.005I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.01|122.8|0.34|4.2|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['none']|bulk|https://doi.org/10.1021/acssuschemeng.9b05678|TvA22oC3ImMb_oQ36OuMapq_vCeB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|TvDDqrfY3v6kCLuWaaMdbVNVvNRd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|165.0|0.67|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|TvL4lpK_RVr6I4Or9NgGSJjxv-R8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|186.3|0.629|11.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|TvddBciX4jAqrWWERL8tUo3gnkL5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.91|191.1|0.66|11.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|Tvea4wrg0XUf9LB7ti1S5AJQ90Z2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.45|21.0|0.595|0.56|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|TvfgxPwZNeoHZA9K4zZb-4_geVd4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.158|219.1|0.821|20.83|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpclett.7b03361|Tvo41Tbu-Nodem6B0Zua7h0r9oMd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|186.0|0.55|9.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|TvrEQb2ASy-tCxLu8IzUx8igPjRs|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.1|226.2|0.74|18.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800177|TvyjX4GZdw79u_61tgcZsyJw2UFu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|126.9|0.52|6.53|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|Tw5Bo2m6zWDyITX1he6UNSiMHY0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.065|218.2|0.621|15.82|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.8b02079|TwBeK5Lzv5oncTmsJyY7TDkvUquQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5730001677307854|0.79|173.0|0.7240000000000001|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1872-8|TwW6feX0gDMGcVfvaj97WBAEwf6v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br475C3662Cs1334H18642I4525N6992Pb5000|Cs1334Pb5000C3662N6992H18642I4525Br475|Cs0.2668FA0.666MA0.0664PbBr0.095I0.905|1.6500001759413832|1.0759999999999998|227.7|0.755|18.49|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|Twb-0kKb2dGdjp3o5tXs4gpMngVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2668FA0.666MA0.0664PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|225.1|0.768|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.035|TwdCJeYoG57KmpvntWVxmR7Faw6H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5500001652782691|0.981|247.4|0.759|18.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ta14207j|TwdwkdSxTAwsinJ_oHBbrKrp0eQJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.06|122.1|0.61|7.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04590a|TwlcZ9zVvSdcvz0X1ygSghw1xPMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|210.0|0.731|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|Twy5uTPCfdlXueot52qJmW-oILFF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H57I27N13Pb10|Pb10C10N13H57I27Br3|FA0.3MA0.7PbBr0.3I2.7|1.5900001695435149|1.0|215.7|0.752|16.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|TwzM83ZjIOrHZnfQLum50vexW-Lb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.3I2.7. -Br15C95Cs5H491I85N174Pb100|Cs5Pb100C95N174H491I85Br15|Cs0.05FA0.79MA0.16PbBr0.15I0.85||1.08|226.6|0.7959999999999999|19.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201902781|Tx73ifbvSU5ug5c8tP1HeBwHHic8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.15I0.85. -CsI3Sn|CsSnI3|CsSnI3||0.445|124.0|0.498|2.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']|['PEDOT:PSS']|['BCP', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.0c01216|Tx9fUTmM1kaeS9fkjLddEc4KH0v7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|TxEvP44VL0oPS0hpbAbvyAzOEm96|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|242.0|0.65|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Al2O3-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03881g|TxEw9q87h-Qjin4nm_EGl72r4Hv2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.96|161.0|0.7240000000000001|11.19|['SLG', 'ITO', 'BTF1', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF1']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|TxHYL5ue3H7SBzkcGqmPWc_4mT9k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF1', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|202.0|0.74|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.orglett.8b01295|TxIVFN80zIWmlAzYGBNwyNWuc7e2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|149.5|0.511|7.19|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|TxLHFmWIcvwMqM17GrbH5CQ6ve0F|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.883|186.6|0.73|12.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.09.004|TxNEwdo9VNx6WYL0UKxOPmvuqNC0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.17|226.5|0.75|19.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|TxY6cIcrJc34YdfgAXenR4yzmW1u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.993|185.4|0.664|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TC01781A|TxgPARqZ0o0XHkzCPUJy7WMxteWL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.64|151.2|0.307|2.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c9ra02036e|TxjcS7Cl-aCojSOg32XKF-_qAUib|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.69|137.79999999999998|0.44|4.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201903448|TxtUIk2M1ZtJQjwZ1wevOMOtobYS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|165.39999999999998|0.747|12.77|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|Txw2VJrBF1Y9Pw94aPsBCyNwlGfx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.9|0.71|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|TxyJFfS2taoGSzVUuI0MadoLySj9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.53|1.5|0.503|0.04|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1071/CH15245|Ty1A5y4qPpjA-L-JMbYvyY7u50oP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.7|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2019.116178|Ty1MjH5Vm_nCXPQEv6vLn_ac0GRJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|210.5|0.69|16.33|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|Ty87mTtRClGzeQQp0OyU4HTmOfwC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.3|0.6509999999999999|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|TyE_S47UuiLGF2F5vwj3V-4K2thb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|233.0|0.628|15.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.11.025|TyEiPUx2OcSVN6LLB5KRRMNZdVmj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.8|0.713|15.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.064|TySEdHLtpR8ZqD6K0EyOLGWKw_Jt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.670000178074006|1.185|209.0|0.807|20.0||['PolyTPD', 'PFN']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.202100249|TyUgoiHg2RaTZf6fdZdyfjhy_ZaI|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|161.4|0.75|11.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|TyWUkrK_8u8-zIQ7pU_ZSADxkS5W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.778|219.7|0.33|5.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S:DIB', 'Au']|['S:DIB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201700037|TyiHxOiTykmdzeSd0Wr6h0gD_Fcl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S:DIB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|133.0|0.36|4.3|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/nn5029828|Tyl1gAS_32oUAsn6auM7_DFV5ah9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|207.0|0.63|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700308|TylYnOqYDHwemr5Scw-xFmYZyWE-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6000001706098266|1.13|185.5|0.6940000000000001|14.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1002/aenm.201803258|TypCiKLP-fPR-DiGZxu08FeurMdU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|193.0|0.662|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra12348h|TyrLK3gS5BAJRibm9nytTWpsG1Id|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|192.0|0.77|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1021/acsami.5b11494|Tywj0upOhF19rRptxkA13VUlsNow|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiI4|AgBiI4|AgBiI4|2.3700002527158053|0.67|52.400000000000006|0.621|2.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802051|TyzjWuasBAN_czjvBcuyygq2rqr_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is AgBiI4. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.19|64.0|0.61|4.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.10.003|Tz45j53K0pgUtjtnBSf0cwcbu3dC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|201.1|0.733|14.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|Tz4ZYKLlhYAQHdqLJfVnPTOPq-rm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|201.5|0.53|9.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|TzDond6LVcNACvE6HpdquAprmSfo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.583000168797097|0.888|206.0|0.628|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|TzI0214_MFkPttzY1DMGywhT7ojh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|177.0|0.71|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201501289|TzQ55ZJVQ7KU97nmIOnD26KcgeG6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|216.5|0.73|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01939g|TzQnTgph84ziWFumulP2WWG9iLlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|95.2|0.465|3.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'X59', 'Au']|['X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|TzaThPqt3t0QDH82cahXwaIzGpWV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'X59', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|191.2|0.51|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra01430a|TzdPI8f_BrZ0_RxBZb7b5sp-Umik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|130.0|0.43|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|Tzgmeq8AeR2tbzpOhPBGN3p-zEyK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|76.0|0.46|3.9|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|TzhtgiyVQV4Ek0Oi7og5QitBYtTY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.13|236.0|0.784|20.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|U-BhZtm38tWUt_CoapNObiqoIs_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.2|0.603|10.76|['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|U-CWqqCacqWRbAaSX7l5p3U7JlG4|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.22|73.0|0.69|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Silica-gel-electrolyte', 'Carbon']|['Unknown']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.060|U-K1xzoJeBjSOMP3UyojyeMw8wWK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Silica-gel-electrolyte', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.078|204.9|0.64|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.048|U-SKY8ld6udng4IuuGySLiGXRzbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|120.3|0.769|7.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|U-TpsfvPIUM6CZb0zyFot93uhKIc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.84|190.2|0.78|12.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06403|U-X1uYKic-ULkNy6dUySS8MZzP5H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.64|141.7|0.52|4.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr00420a|U-_WU-jZww5KWZihn6DtRiwqb70T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|150.37|0.77|11.72|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|U-d9SSHWGjpVwigFdfQpXgmaTVTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.4|0.57|10.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|U-qJR0HwoOpSSYBbSwiFOoD2a62Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|202.0|0.602|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|U08_CELDR2-Zoz2nKC0i-R8fky5S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.95|203.0|0.718|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|U09aFUYYeaq-hZiIKDA33F1fMWSy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3|1.5400001642119578|0.99|211.0|0.7509999999999999|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|U0ATXjgsLZtFPF0Xs0M9KO-Mp6Yh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -C20H120Hg3I60N20Pb17|Hg3Pb17C20N20H120I60|MAHg0.15Pb0.85I3||0.81|143.0||8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|U0AyJ3vkAxciJU0ImOxh09_yoARY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.15Pb0.85I3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.02|217.0|0.68|15.0|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|U0BMFhHrfJlN_AbcP6vklXlx35ZA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|224.0|0.57|10.85|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'TZ3', 'Ag']|['TZ3']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|U0GwyNYMgTqzpyh-XY7PgUXvdLP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'TZ3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.13|136.1|0.6859999999999999|10.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700180|U0MNWRcZMlR2wMNijkvwPULttDXI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.43|161.0|0.43|6.9|['SLG', 'ITO', 'IBF-Ep', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IBF-Ep']|bulk|https://doi.org/10.1021/acsami.6b00635|U0O6Fckt7b9IP8cdsJ7b5L8XMBjM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'IBF-Ep', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2CH6I9N|CBi2NH6I9|MABi2I9||0.0|2.7|0.0|0.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0120-3|U0Xl8P5sYDoK3TxdaQefqfaBTwGh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MABi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|164.60000000000002|0.619|9.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|U0cjiXRQ6_ZxG8TYsXzvBm1UoqMq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|156.0|0.506|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|U0q5kLn_Uvfh1GlcidhFxr2ronB5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.72|36.9|0.45|1.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|U0qW5-P5fiIqWl6I9jTrc0dbzlfe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|214.8|0.711|15.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NCHEM.2324|U0sl3h0Br8dlL1XO2dVXQ5C8JdQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|147.7|0.52|7.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|U11XmZtc-U4eAuOlvMUGRCD0kpgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|0.8|83.0|0.67|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502458|U15twp4YTuCS1BdceFyR4IHxZcZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.68|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|U1CE7WCbpPBP1XaH5f3kK7W6r5sI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8Pb1.0I3||1.11|200.7|0.75|16.78|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']|['NiO']|['PCBM-60', 'PN6']|bulk|https://doi.org/10.1039/c7tc00882a|U1FaJd5S3OJk1kyuvtuqOzD6_LMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8Pb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|1.0|210.0||11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|U1JvanP_mzNXi7PL-A71zTcRieGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.5|0.7659999999999999|17.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT1', 'MoO3', 'Ag']|['CT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|U1TBrRccyHrts5iw6fdkoRBi7wGd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.98|219.2|0.72|15.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|U1WrjQYC8iIz7GtUQEEhFs1vwDEq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|132.0|0.61|6.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCz', 'Ag']|['PCz']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta11238b|U1a9Uyafs0lsEDe_EXYKY4e3t_nr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCz', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|170.0|0.7|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1557/adv.2016.285|U1am2xBW8wEdpOlLXvw1lhEyX3WW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.9|0.6579999999999999|12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|U1cFDQV8pVK75oI1fQ4wlP_O4P7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00972|U1d5gKikpBSTwOSrQMpAFHkyeOxt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.0|0.62|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra08565e|U1gp_Eepzq3DQ4U1o1BdALHQMnJL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|179.89999999999998|0.684|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM1', 'Au']|['DM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-04342-6|U1mWlJt_RK2Nt2uF7JvHsEqIaw3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|159.8|0.77|11.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.034|U1pYff7hMqjIlDdfG9lfO1V84DzV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|220.0|0.67|16.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|U1pu5mbiXWTcQgZYHgeSNoY6Ydl9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.545|200.8|0.632|6.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|U1sgjvbmCoTR_TaadFSheoWYOPSL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|162.89999999999998|0.74|10.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201504621|U1t8Qa7Zq3nwSWQZKcXDIk_A2CZC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|191.0|0.8440000000000001|17.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|U1xbcZ1lTrgGii3o7jdaF4ItQPF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.112|231.8|0.752|19.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-OMeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|U24IfWOhVZcNeNQZe9kxs0ApznMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-OMeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|187.0|0.73|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV3', 'Au']|['COPV3']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|U29WC5uY2G5ponevCWVyagfDTReV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.2|0.696|14.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.6b03089|U2DRblXQsDDZu1NONBkAPTCD-Db6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|196.2|0.7040000000000001|15.03|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b15710|U2GHSzN5hyuh9xIIuOzvPkmCam_U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|237.0|0.63|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|U2ItEjo7ZKE3wq6cKfVl_mzHkMXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|226.0|0.59|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2019.07.010|U2Qfy4fppCf9j2unOopwk72rgCYy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|142.10000000000002|0.44|6.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ce00169d|U2Rb5HOVoRPz047AYoomi6pwaXRg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|42.0|0.27|0.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ni-grid']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc09859a|U2UVAz85H_HX2XWU2qROh8L099Mn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ni-grid']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.14|96.0|0.56|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/adfm.201604733|U2Y8xJft4ljDzGb3i8Me-nHT7L9-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|202.6|0.6779999999999999|13.45|['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']|['VOx', 'Cu phtalocyanine']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|U2dq-MZt2NxiBG7F_rpU3vYqw9mB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Cu phtalocyanine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.4|0.75|17.85|['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2017.12.182|U2se24bFFonpkiritJgc6GMTFqgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|208.0|0.65|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.7b18643|U31RYbz7-bYS3x4HHCQTZgevgCQu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.39|95.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|U33NdaFvRpUFVzykqE756vP8lbyh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|204.3|0.735|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|U3E7BElzZUoKBNOZo-tZlTZWPo2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.09|229.0|0.8009999999999999|19.73|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900125|U3TEMAee3xIRb4VpmqP3QCe7JbgO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3|||||4.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|U3cvNCwuZpGKxhN2qceS21-8vN5q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -Br21C80Cs10H120I49N20Pb20|Cs10Pb20C80N20H120I49Br21|BDACsPb2Br2.1I4.9|2.020000215394906|1.01|57.9|0.42|2.45|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.9b03414|U3eENaQhmtBvWLmCx8CHPaNes70J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is BDACsPb2Br2.1I4.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|165.0|0.7240000000000001|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9027-1|U3taCy7mmSofRofGFopx5DZxYyzj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.09|236.0|0.779|18.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|U3vUEejY-Isxogdii46ussbMQrYU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb19Sn31|Pb19Sn31C50N50H300I150|MAPb0.38Sn0.62I3|1.2200001300899923|0.77|245.8|0.69|13.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201705998|U47ny5-AoS59frGJP-byvo38BSp_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.38Sn0.62I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.04|237.3|0.8|19.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|U4CxI9riY_M9rQrdpul5GUXaU2dc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.01|229.3|0.613|14.19|['SLG FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BX-OMeTAD', 'Au']|['BX-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/hlca.201900056|U4G0I8ANyyk7_sdpT8Z9hzH_FugO|a perovskite solar cell with the following device stack: ['SLG FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BX-OMeTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.133|211.0|0.633|15.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.037|U4Jg8EIayYU_kZCXoJ8psTc2Hphq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|||||10.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|U4NbQh-IhNw6EKn9A9w4fvMwixfm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.2|0.71|15.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.03.042|U4U7FEQtkMOiW7rh9yTKd-dgz-1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.88|147.0||9.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|U4brX5du5nB_r6AZq33A4WkKOqsS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br65C95Cs5H491I235N174Pb100|Cs5Pb100C95N174H491I235Br65|Cs0.05FA0.79MA0.16PbBr0.65I2.35||1.02|205.0|0.787|16.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ppz', 'Al']|['NiO-np']|['PCBM-60', 'Ppz']|bulk|https://doi.org/10.1002/pssa.201900436|U4ciAws6AxRvhIIRsH7jND3khJF5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ppz', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|155.0|0.41|4.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|U4fifsFVxNG3MXfvnSVY1xVtqOPf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||0.958|199.0|0.718|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.10.012|U4fjx3A5Y8o8rGhOeUc-wFPdk1QB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -C5H30I15N5PbSn4|PbSn4C5N5H30I15|MAPb0.2Sn0.8I3|1.1890001267844272|0.6579999999999999|202.0|0.569|7.6|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201604744|U4fp4wxDhmYciCkSxnlRcsCIszrT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.2Sn0.8I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.12|229.6|0.78|20.12|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|U4n70--6AJaMrZjbFHimCvu8Be7z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|188.4|0.6990000000000001|14.18|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|U4s6wRdS2DdJ_6VSrD23q7QFYlPk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|202.35|0.7|15.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|U5A6bYyKZNhQEkZrUQrKHmUmMYnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|232.0|0.61|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10091|U5Es5I32IB-rRardGFkWD9p0I-IR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|217.1|0.62|12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|U5FidVIJ0r-rPqq_HMmh6gxARBuL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.8|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|U5NmDZROX1znnjjB1JllY7INzI2s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C15Cs5H75I60N30Pb12Sn8|Cs5Pb12Sn8C15N30H75I60|Cs0.25FA0.75Pb0.6Sn0.4I3||0.68|285.3|0.7290000000000001|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'SnO2-c', 'IZO']|['PEDOT:PSS']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1038/s41560-019-0471-6|U5W6DdYljNPMZPtjpGt0QwzTPIBk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'SnO2-c', 'IZO']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.93|183.0|0.7|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|U5Y_d3htLQWbEFFnIskl1KKAF-2G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.596|176.48|0.603|6.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||U5d_c5gnWHxy6ippYtxuGbFXVgK1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.799|169.3|0.612|8.28|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|U5hbra_m7ZPb9cseWt3AP8be0Jsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.0|0.76|14.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.150|U5uN9mgpB2O1LcodcmkJPJ5dRFhb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.2|0.77|16.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201801509|U66AqJJynuDDQcvgeauq1zP0-sOw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|169.3|0.529|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|U68wmUDTfyQP2IX9I7O-ZHZP7Ky4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|208.0|0.74|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502039k|U6DLxUBwVNEPGtKmvjK1cZRcHICS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.067|212.7|0.7659999999999999|17.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|U6ZtlrHAm853pTYYVGqb8moET5Fo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.09|240.8|0.732|19.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|U6eXpo9DvJJqDD05Np0Eo_ukzsYz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.7|0.74|17.98|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|U6krzTvCy_uNi3_RWK5Q2XG2YTgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||0.91|157.20000000000002|0.63|9.4|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|U6nj2MLdp5PH4N5BDETZ5hA6aDnR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -C10H60I30N10Pb3Sn7|Pb3Sn7C10N10H60I30|MAPb0.3Sn0.7I3|1.1700001247584355|0.04|131.4|0.25|0.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5002117|U6p-NBz4jo1xuk654O9IaB6e3QFj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPb0.3Sn0.7I3. -Br45C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br45|Cs0.1FA0.76MA0.14PbBr0.45I2.55||1.11|235.5|0.77|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201915022|U6vi2mPS-zDuZh_LOVFAm7o7h0n0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.0|0.74|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b09412|U6wv0y24Omq96r3hdnAz71E3uCJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.96|213.0|0.67|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH1', 'Ag']|['PEDOT:PSS']|['NDI-BTH1']|bulk|https://doi.org/10.1021/acsami.9b13894|U7-IjerjCQ93Wyhaf4S_ypJS7XTx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-BTH1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br9C2Cs8H10I21N4Pb10|Cs8Pb10C2N4H10I21Br9|Cs0.8FA0.2PbBr0.9I2.1|1.7300001844718749|1.19|179.3|0.786|16.72||['C60', 'BCP']|['ITO', 'PTAA']|not processed|https://doi.org/10.1515/nanoph-2020-0634|U70w9BcfL0XoHQU5Xa7uY9Tao0hF|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.8FA0.2PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|224.4|0.73|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Bu', 'Au']|['Azu-Bu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|U744O4Wkcs5A0IsjB3qnfLR5FHMI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Bu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.1|0.696|17.04|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|U77RIgRaQdrg1XVrEIbVS7PpnoOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|223.5|0.759|18.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|U7KiljLWkFmMF2ZgyMQt2Ytf5gGZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.0|0.6459999999999999|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00200a|U7MHeUbwnzmBepMe7JRlTnYgg0ia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|171.0|0.61|10.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta00407a|U7T-y5IaRHJP7lxnpjPCXjpZKt0S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0|210.0|0.73|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']|['4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|U7ZEc0J78QpcHAKbfvT9ju0CVIb1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.2|0.81|19.89|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|U7bHF37ujPbxJPmv9pp0MP_OyIvP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|220.0|0.58|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm504022q|U7eFFEahyWiyiSwj7tiwEWi_4QmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|211.6|0.58|13.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|U7xAU36vsW789yxcA9pB6A1vP1yX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.75|177.0|0.619|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.9b02524|U7xYpLuoYLmIqMhdIGrozJBDTiQ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.0|0.81|19.1|['SLG', 'ITO', 'P3CT-CH3NH2', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-CH3NH2']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11977|U7x_XqYIcRiqNPqpFRo3CVz1iBSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-CH3NH2', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|153.8|0.73|9.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|U80BVf_YXXgzBsDvcMnzKtE1n7eh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|120.0|0.58|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|U88k98jTPBVW779tl3K0OHn0yXc5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI||1.05|184.0|0.596|11.51|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'IZO', 'Ag']|['Spiro-TTB']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1038/s41563-018-0115-4|U8PqbZLud3qEmPpVFN_fuYAbNY0L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'IZO', 'Ag']? The composition of the perovskite layer is CsFAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.3|0.7509999999999999|18.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|U8U1laM3v9lGK08X3L22h3HUESWe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb3Sn2|Pb3Sn2C5N8H27I15|FA0.6MA0.4Pb0.6Sn0.4I3|1.2500001332889268|0.76|313.0|0.64|15.2||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5126867|U8g7APa2SZbEYOA27L2jsFQ2RAf_|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.6MA0.4Pb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.5|0.68|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|U8xP4IYGgBxaJ7AilScDc1INUT-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs91Na9Pb100|Cs91Na9Pb100Br300|Cs0.91Na0.09PbBr3|2.2500002399200683|1.382|65.6|0.7609999999999999|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|U8ymWVEnwQKmMEOMpS_fgcsRkWYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.91Na0.09PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.7|0.74|14.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|U9-FPOFzvFe01AAcPUpEkKNtpis-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.6|0.732|17.35|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|U94fJfeOPEHhGUTdJwtsFMErDt__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|212.96|0.664|15.32|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|U95q0A_kY1I8v4zzppd8OPZHPyxr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.09|219.8|0.745|18.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.9b02488|U9Cu6wnuZyVja-dnpsn5p3mk9P2w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|171.20000000000002|0.621|10.63|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|U9HBVVjP2iX0WkjOybSjFotslxdn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|80.3|0.54|4.09|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.08KF02|U9QGjf_rsPc1DFZ427yCfR7KY6us|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.5|40.2|0.5870000000000001|1.14|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b07594|U9VgpspcKs-KLpCK_CKoJARFHyau|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|168.0|0.581|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07781|U9axPC3mzAeoCxHaeEBkIpQAcWLO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'ITO', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.71|285.9|0.66|13.41||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|U9epurcQyAuI3xUMLjid024Tny0k|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.393|54.400000000000006|0.6940000000000001|5.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135102|U9lrIXCFm7ZyML8iSB1bU4-oWMDb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.0|184.0|0.768|14.14|['SLG', 'ITO', 'Graphne oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.048|UA3GbJYQEh9iAWWnBm2J8h8hZ60Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphne oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br150C33H165I150N66Pb100|Pb100C33N66H165I150Br150|FA0.33PbBr1.5I1.5|1.8550001978007675|1.133|138.78|0.677|10.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|UA8jLKr7_n4VHvsXIj4LnOTf90oy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|UA95ZjkzFfNodY19EXxzmDxRCOrh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.33|59.3|0.775|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|UAG61KxIolt1SLhP-YASgeOPdQnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br13C100H543I287N157Pb100|Pb100C100N157H543I287Br13|FA0.57MA0.43PbBr0.13I2.87||1.104|240.3|0.8|20.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|UAWv7s4FFnPF0OEriK-LvBDmBSo0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|113.7|0.52|4.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12152494|UAdFjlGGpE6n2_og5ZlemMKgT6Cs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|202.92|0.767|16.25|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|UAhWQ_aSbOt5fIFVcdsdeKKVnCvP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.62|15.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ra16253f|UArYSIPfSMJvwUFubIXEFJ-l-UVg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.411|72.1|0.7170000000000001|7.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|UAyDovXqkhYSc7dp7rCLXcJVt85y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|168.5|0.53|8.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b07061|UB7513Mc2S8Qzl43kKwj97t9HwGz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.7|0.753|16.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|UB9SPgbV6Lbv8Vi2_llRn1G-wC4g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.861|221.8|0.662|12.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.028|UBSrY76oJqFIWjaXawR8yB_bKzdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|153.0|0.54|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02921f|UBTtY_78r6Ua7owG1z7iAUwDy19N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.122|214.6|0.71|17.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']|['MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|UBV9TyIGlutecH24BVUPje2HgAcA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|147.0|0.336|4.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']|['NiO-c']|['ZnO-np', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0113-2|UBe7PCVcofyYs1v7B4nBXibtP4HR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|218.8|0.68|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2019.104244|UBzoEJvmb7hG1cAcDT5KmvPPE25G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.1700002313895768|0.96|55.7|0.59|3.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Acetonitrile; B2; LiBr', 'Pt', 'FTO']|['Acetonitrile; B2; LiBr']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/ja809598r|UC1rBiilhrA3-0WAaVsJQE6qhBRV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Acetonitrile; B2; LiBr', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.2|142.3|0.8270000000000001|14.11|['SLG', 'ITO', 'NiO', 'Perovskite', 'Nb2O5', 'Ag']|['NiO']|['Nb2O5']|bulk|https://doi.org/10.1021/acs.jpclett.9b02644|UC3ekgXA-V8r4qBbykjrv1MZQEw8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.9|0.5660000000000001|11.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings9100647|UC7u4paUP-DtKmFw-B3bjbn0Q52l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|202.2|0.77|15.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|UCHexnGFhN5tgjicgwFkFDox1Lla|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|183.0|0.56|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.renene.2019.07.119|UCNAMHPpFrrcxfVdpn9rwKsvDvk7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|194.6|0.6940000000000001|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b05255|UCR_5akWGQHDz_uQAhKr5Vnxnbfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.0|0.71|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H112', 'Au']|['H112']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201402587|UCVSuhlTEf-tZnBFjfxR1rCXv0nZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H112', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53|1.5900001695435149|1.02|192.0|0.578|11.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2020.110517|UCWtmrph9sPb2am5f1oOTCLMYnzn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|179.3|0.564|10.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|UCZynPyEZxZEB3ocumzVn7msa5vD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|169.20000000000002|0.79|15.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b01553|UCa7jNmQw3hWdhWmQRfoTRGYqY4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|207.9|0.71|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|UCaBS8LyHggmS2-GkbWVwvPLUnFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.51|113.0|0.39|2.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|UCgDfje26mikkET9rpL0I-c6XTcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.0|0.74|17.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1021/acssuschemeng.9b00368|UClfgUtSl-eOU-aU5vOgSa35uotl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|189.0|0.7|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.12.025|UCr5cjPLXPfYukWptg1P1NVgZ8al|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.99|185.0|0.6|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|UCs01rETZSf-YmJX09RF8WqsKQar|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.087|188.0|0.72|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|UCseTyqlBw7VKDEyLfpID2uC1bQ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.989|184.6|0.7979999999999999|15.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|UCwsF-qU9jgFa7mARI7eAlI-_rzg|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.754|223.0|0.74|12.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr03507a|UD55aTHFcuPZlQt5pyMeQmgpPb4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.0|0.73|11.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|UDGYZAIfQy3zxrde_nK8swcOAv77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br27C180Cs20H900I573N360Pb200|Cs20Pb200C180N360H900I573Br27|Cs0.1FA0.9PbBr0.135I2.865||1.07|211.0|0.723|16.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'ITO', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.3153|UDHrUJc4TvUtPnQpJ9dll5RQx7ts|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.135I2.865. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.0|0.7559999999999999|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8cc09557d|UDYDF7ULbUPD-GQegsqvpTOQSa1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|199.7|0.71|12.61|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|UDYDHnBp-XizoIw0HvsPSvcmpff5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|210.9|0.68|15.12|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.7b07775|UDiWcc7C5llbvW_JG5GBSsX6s4ap|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.5|0.65|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902656|UDpSDnNTkJyeHUAw-yZNYABbpFB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|124.0|0.45|4.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|UDqOoD5Tndg0akQ1E8XEMiR5Xjte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.49|93.0|0.402|1.83|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|UDw96hKuMpARCdSKhtDb5fODrxaF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|210.1|0.705|15.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'MoO3', 'Ag']|['M104']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|UDzzenOR4FOhe0NcwRpuHFIhXb34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5500001652782691|0.96|223.0|0.76|16.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7EE03113K|UE5I6zSngyxjfiIjcjWbfXERNYM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.082|224.85|0.7809999999999999|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|UE8LdaJYz3e-mVf1y7ci_ndZe5zj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.703|157.7|0.59|6.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|UEHm3gzT7eT9kcjsnETAjqLkBXes|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|219.9|0.3279999999999999|6.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.08.027|UEJnUJCmkJQc0quwPlH0hmWANr6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|138.9|0.6609999999999999|11.22|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'KOH']|bulk|https://doi.org/10.1021/acsaem.9b01652|UEK84DdHC9SBE-rY-km9FDVwpPSp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.07|227.0|0.74|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|UENvufBhh9J6X5mLBj7FW0j1gEwd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.0|0.68|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|UENxwY0qjcqZNPLbMJEBX9kZzK3l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H138I75N37Pb25|Pb25C25N37H138I75|FA0.48MA0.52PbI3|1.6200001727424491|1.07|221.9|0.7|16.58|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/advs.201700008|UEcDeGrt_90gs3AbXfm6vUPxRREv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.48MA0.52PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.8|0.61|13.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|UEm_3kYk9YYJ9NhU70c6d5Yk113f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.07|221.0|0.79|16.1|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1056', 'Au']|['V1102']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|UEwrM8TNhUnhk9zZwUGdmu7fhaOG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1056', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|139.0|0.54|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Ag']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201601186|UEyYsygy1o6qB1ZwIOYiv4GJXFcS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.768|208.0|0.416|6.63|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150249|UFLIBHMm3d-bBknOLmlkbYTvGN5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.515|202.6|0.67|6.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|UFUqGJP6VAwH4ukX7c3_SsstqO2Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.0|0.71|13.39|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|UF_A8J_sUmIKyANQYeES1k7tjiXT|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.2|0.77|19.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chlorde', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|UFbZQDxvajZ0K5Nh_T1c0xTD0k-B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chlorde', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.06|203.0|0.76|16.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|UFcyPpPlEwlxpuuglFkAtq4ZJvJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.43|137.3|0.596|3.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|UFmqA5KLE1vzECVwgbn3e4J-0rtg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.0|0.76|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|UFrUgVadjjchE0H6GgVqXEipOlGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.064|191.87|0.761|15.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||UFxbaRS-ni7AOC0GWJVwY7u6QgUr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|259.0|0.782|21.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|UG2c_JXALzNQLxI5EO8SbvTAvBsi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|81.0|0.7|5.5|['SLG', 'ITO-HMDS Scaffold', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ee02185b|UGHIgncFYVQke2kqaf3l658J6UQn|a perovskite solar cell with the following device stack: ['SLG', 'ITO-HMDS Scaffold', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|233.0|0.765|19.07|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|UGP9WkxxKh6ZKJkuHkWOvQOoMXt4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.8|0.71|13.8|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|UGVgt05lHTyupZNASoamkWPB5-w1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3|1.350000143952041|0.97|231.0|0.721|16.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b20899|UGYoEKt-1ThDBImxu9yDObuLRtUT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.629|13.7|['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4']|bulk|https://doi.org/10.1038/ncomms8410|UGZ2_Uc6MGWATnXvXJaCdXijLwC-|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|124.9|0.54|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']|['CoPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2016.07.013|UG_J7GaLASdY7qw-t0r-BcBh9mLo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.87|35.099999999999994|0.48|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|UGfauaARoBjFXAGsX95CaKr0ZMI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.123|209.7|0.745|17.54|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|UGhwwF0XJ5lqjpH9mw4pYEkpLrPs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.815|137.89999999999998|0.598|6.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|UGm5hTDn2jZ4YppzgHhMGWmvtTYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.126|221.8|0.75|18.64|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903231|UGn6zTH_QdpuT7q_LkQXP1ujUkhu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|161.5|0.72|11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|UGtDn9t0oOY285Kb1I6HoJKCzbXg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|141.5|0.7140000000000001|8.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']|['CMO']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc03683c|UH8hM1Ptis_KpARWnBMd6CqrM9Dg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|213.9|0.6|10.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra06091j|UH9icETCYFVd5xVksGl2wDmCBSEX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|0.931|53.0|0.58|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|UHDMvCwSIi7uUlYoqJdRak03TDLb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|182.1|0.62|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au-np']|bulk|https://doi.org/10.1039/c6nr09972f|UHMzWlMMZIGKUzABYvtYZ4zB8tNC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.9|150.5|0.495|6.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|UHND7Zk11jKST2vS56xvHrUaNSLq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|219.1|0.622|12.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|UHP7NRewjqmSZA1FRqcbl7L9bzII|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.921|128.0|0.5539999999999999|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b00937|UHQrfuw_0SzD7VS05KZflHpBnj3m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.98|199.4|0.6940000000000001|13.63|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/ente.201901042|UHXsnyckAH2X0YmXS4p0v8Zn0L6a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.5|0.7879999999999999|15.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7tc00597k|UHZcYowrvc0zTj0jIk_MXPVevVf5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|202.5|0.7609999999999999|16.09|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|UH_MKpeKjR3cCI3I-5Te8u-JJZzV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.7|0.523|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|UHdY6mdoPLlaQkitPEWYuVnsiBNf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9|1.6000001706098266|1.01|217.2|0.73|16.04|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|UHpzNegmyS45SvNnKsbW1Xas8Sm4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.1I2.9. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.1|241.9|0.782|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-019-1186-4|UI1HOApbPUi7WPB8Lw8p2cpKiKqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.24|121.4|0.414|1.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|UI443PeYryALfOM8QqGXtDaMMbhJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|140.0|0.69|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja503272q|UI5Oezb17FjfbOYjjd5u3ZudblVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|259.0|0.772|21.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|UI8sQfuTv1OhbiPrf1g6Tf0WzBNt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|150.0|0.6|7.6|['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta00084j|UIBWrkLjA5eMVXCm6-srM3RGx2vM|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|224.2|0.77|19.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPI', 'Spiro-MeOTAD', 'Au']|['TCPI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta12597c|UIGk3AtRuu4mh9Aeai_myQb7uuZp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|181.0|0.59|9.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|UINPdECQs-ZhW53dVHsa9r5CZl2b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C15H36I14N5Pb4S2|Pb4C15N5H36S2I14|(TEA)2MA3Pb4I14|1.6500001759413832|1.02|107.8|0.66|7.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1002/advs.201900548|UIYBIRaTq51p4oSX1lHY-ABtpA9C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (TEA)2MA3Pb4I14. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|52.0|0.22|1.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|UIYbCbR8N-DaaiYRbmlYeXsJEbzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|219.1|0.71|17.12|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06424|UI__pljVTIOCV72STCf-RxMl8w_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.5|0.64|12.81|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au', 'ITO', 'PEN']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b04373|UIdgL73mUHuOARBrRatKHtrUIeUo|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au', 'ITO', 'PEN']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.375|4.0|0.25|0.04|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|UIdvXOmfetmY12Ac2IcOVwnkkF5f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|132.0|0.397|5.23|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|UIgdIqqgFZ8CT41SKPVaqrnYrFtt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|238.2|0.72|17.0|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|UIqaC1zLJIeZd8wtH8TBCxZA3jIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|167.0|0.7040000000000001|10.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06700b|UIuePVaN7PMYHU4GHoyZI4gQQKWQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.128|227.8|0.78|20.04|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|UIvvqe3a7kwvWjQ-gN_z7cGt9sls|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|141.5|0.48|6.59|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2015.07.030|UIyXHIRcW9Er3qDWq8kof_Rlhrm_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.0|0.72|14.4|['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cs2CO3']|bulk|https://doi.org/10.1021/nn5029828|UJCYUy2e_53a7lEV8mSGe_U5Y9yp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|179.0|0.73|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|UJClO5W9x98TOAjkKJFndd5LyFaQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.1|0.76|16.56|['SLG', 'ITO', 'NiO-np', 'TPI-2MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'TPI-2MEO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|UJPRmpAj-StSproobJKUESVqQ7Ma|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'TPI-2MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|226.9|0.725|17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|UJUxjD4xqF9OKxNn-Iyzld7lmOow|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|184.0|0.574|9.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05672|UJ_E0FhvU59Jwh6-7nEuvSSvb13u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|233.0|0.7|17.5|['SLG', 'ITO', 'NiO-c', 'Sb2O3-QDs', 'Perovskite', 'Sn2O3-ns', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c', 'Sn2O3-qd']|['Sn2O3-ns', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226819|UJsJZ7VM-RD1owgKIfnqebRkuvnP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Sb2O3-QDs', 'Perovskite', 'Sn2O3-ns', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C1000Co31H6000I3000N1000Pb969|Co31Pb969C1000N1000H6000I3000|MACo0.031Pb0.969I3|1.5600001663445808|1.05|165.0|0.7170000000000001|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|UKGcwYALu30HHUfk_dwrHemrqIni|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.031Pb0.969I3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7500001866044976|0.82|123.0|0.57|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2014.82|UKIK_gpf3fROZsIfWhAxOpYWMosm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|236.2|0.767|20.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Co(II)P; Co(III)P', 'Au']|['Co(II)P; Co(III)P']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|UKOmapTndZ4nuRUCZmpnG20d1tTt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Co(II)P; Co(III)P', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.124|218.2|0.7929999999999999|19.44|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c8ta05593a|UKTBSiJtZux6WMShQH703v2ZmEEy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|213.3|0.77|14.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|UKU92z83kN6mg0ZgiLgS1NbvIsjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|158.0|0.62|10.22|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|UKZcx8hhr6X9pwcwOPrfYFIO4S_k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|188.9|0.6409999999999999|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|UKgRy6Paxcmfw1MsendR4fpc6eKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.0|0.78|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta00679e|UKjnHMp6b37b5-Q3oNQ1KGea7CrL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.99|226.0|0.78|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|UKk8aqfOXN0d9KgvvqoN-UUN_k0L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.13|236.0|0.73|17.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|UKkXeukxTGhQrFvbAeiPm6wA-5ti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.081|238.2|0.762|19.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801717|UKqJ1zZWVLqaYZs2TD7f4G2sM2-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.057|219.1|0.78|18.1|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|UL33tPqUd4I2elabmustaCALnwMJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.0|0.65|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|UL8iWTAC-kYyVF5822cg1fb6g-X3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.137|225.5|0.7609999999999999|19.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|ULK3IFe7gxlTkg-jJrrWmKQoXxWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|274.0|0.563|14.6|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'WS-C60', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c', 'PCBM-60', 'WS-C60']|bulk|https://doi.org/10.1021/am506869k|ULOzr4f05q5jmGEySIyvfSP1wyca|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'WS-C60', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.57|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|ULQAWeADZROb-EjHEBWZp5sdBotw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|98.3|0.5579999999999999|5.74|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|ULTBtJouwvaNmfZEfHpRfj8AkifI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|192.5|0.66|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|ULaKKGnU9vTSoFuh_YK6fZd8cZVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|139.9|0.6759999999999999|9.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2016.07.003|ULcogBtq-ke6XmqaL9R5qwP6ml0N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|229.0|0.672|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1088/1361-6463/ab1626|ULsa37053WqWJ1-Iv8G6axypX8XR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|224.8|0.71|17.55|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jechem.2019.10.006|ULskJ_-enp7xaYPnvj7Q4u49HFvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.06|224.8|0.722|17.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|ULycZ2ZuuyuFECvG51hJ7KqGF2k1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|209.0|0.376|7.39|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10677g|UM2BrTxvA_unWAwIAhWnX3HOcuGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|37.0|0.48|1.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|UM4d5NeMmUYpGSH4MxzExBE453bE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.8|0.6509999999999999|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S2010135X18500091|UM50NomRjpXE1AlS7d5CTmfxR3zI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.43|67.69999999999999|0.48|1.39|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c6se00070c|UM8hdTZ0tKOHxx76Lt3eT2EW9meJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|162.0|0.521|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|UMEIqf4paea2nEdYgj7hRlP59AXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.202|223.3|0.5539999999999999|14.87|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|UMknagnIPSxUAlT1Jj__ilnjJy73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.09|230.0|0.7979999999999999|20.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06900f|UMswAIgxp33EE9PVHkoLOsDpyF2Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.985|227.0|0.679|15.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2600344|UNakKInrsrJK5Kb_veskPMxokzUQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.8|0.73|17.87|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|UO2D2GPtfo_N7SDwQmg_mgM4fEmi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|205.9|0.63|13.7|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|UO4dMgeI2UjfcMs1TYtwnsE1qYra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.038|215.0|0.6970000000000001|15.55|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'X2', 'Au']|['X2']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|UO72W2D2Tq-VWVppxNTgQQI3ldA1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|181.2|0.62|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.073|UO9BeyWTlVyzPA-bU4GBfLe1ssfV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.56|27.0|0.41|0.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07694d|UODqiZLHWDCZG-osZeoeP94M2cN0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|210.3|0.7440000000000001|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.003|UOITlrIArNgTVTt-dtbpBh1opqz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|UOJA6cJ6Ozz7w5k9ZTwX2SMUhiw1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|204.0|0.723|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-1', 'Au']|['BTT-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|UOU0fdCF0MWsHhqBTG0bzXpRr2UN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.021|198.8|0.747|15.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|UOXng-0bQ5YLAZ4ZpfonRGhhSIOY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.6|0.73|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.57.052301|UOdItHyuEbMtkZGISbtSrMXf1Wjk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.077|209.4|0.713|16.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|UOjmGUVTeKGgsMthCOeG8rAyNeqU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.017|215.0|0.701|15.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03255e|UPHJmsc6WrC7fANIIZpdh5Cvaq9Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.866|143.0|0.48|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAA14', 'Au']|['TAA14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|UPHoeYkdDYcJxD5ZEWmkwqBFUB7j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAA14', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.0|0.58|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/advs.201500353|UPJofl4u0rwHDj31uKNSV4RHUidd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|225.8|0.769|18.95|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|UPLHjkaI2j0VW2QbUihRwdkNSU_L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.0|0.39|9.31|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|UPRi_-1NLdJiVGC_ObYDY0BIgrEv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|191.0|0.7170000000000001|13.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00129|UPVwAj_U9ueSDRhLjjDmQp4jHJnA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5150001615461792|1.01|174.0|0.67|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra23359c|UPW5jOUhYY0_v6W8gkWaI8KsQCnp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|127.0|0.53|5.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|UPeypZ-3CUT4sMa_nGDiJJYXHY-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|226.2|0.7|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|UQ1SpAstXuQo6ink34AGpIte3G9U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|129.0|0.49|6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|UQ1rfLBalcvy_bsQUEBhghCXllVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.514|1.31|0.258|0.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra04924b|UQCilNuMYHLc6jlC6pSe0dGAb5xq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|210.0|0.586|9.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|UQH6MU15HLiWTfLa-LvOcLhLwOE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|208.4|0.586|10.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ta06392a|UQKrKV-fuY29X5s7oi85D-wtth15|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.72|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|UQRnQVxH4fS5-4k9ONZfPDBx_dlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|161.9|0.73|11.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|UQ_BUtErfjr7E9COZacLkJQaK70D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.0|0.728|17.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|UQgBEQITuC4MPJSKCre9L3NlDQPI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|231.4|0.75|19.18|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|UQghPjvpexp_ZMiM8nsYgxYk5rwf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.07|211.0|0.73|16.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['C12-carbazole']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.5b03189|UQhhGuSCQFRETsD1Xe_xJfUZZtvC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.068|214.0|0.69|15.76|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201700484|UQmvetw76VzVgE0c8X66MJUId96c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|175.9|0.7659999999999999|12.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']|['CMO']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc03683c|UQsGz5Y_G7btm4BRxPpKysAGSujT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.13|226.9|0.757|19.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|UQu0NkOMxT8WQvCWLlSNq4yoezlj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.89|210.3|0.6|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|UQupG6Ux30JEw0u5UsHEDonla1vi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -AgBiI4|AgBiI4|AgBiI4||0.59|3.0|0.447|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.03.085|UQwTErWlCvvuGwopFIRetkRFOdkj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBiI4. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.791|189.86|0.548|8.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||UR5wdPg4x7qHi5cAlEIBeohOnjz3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|196.6|0.81|16.24|['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.085|UR9HPndFA6vaFSftKhMJ0qNdOz0z|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6500001759413832|0.98|125.5|0.561|6.89|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900050|URGdbHgcsLyzJzUXJtfP1L_X0uQP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.0|0.675|15.0|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA', 'PFN']|['PCBM-60']|bulk|https://doi.org/10.1126/sciadv.aat3604|URIE7qX2PZGyblQBtyciLHX_gpz2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|0.98|74.2|0.5429999999999999|3.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|URNMFd6YpwAPNMRdgLQhtQoRWJkA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.500000159946712|0.99|172.3|0.49|8.49|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|URTfxdcD8gP2P6uM5pPdSCI4OP5M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.031|186.9|0.598|11.53|['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|URVwvVM-PlN7W4MdOLmLqEKyO4vl|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H30I7N3Pb2|Pb2C9N3H30I7|BA2MAPb2I7||0.9|41.0|0.254|0.94|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201901090|URWjP4h3R3KASpLFUQWrecW3TI4X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MAPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|226.0|0.76|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702915|URaV_1u7Anz8GLmfBhd4WMOgIUHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.8|0.736|17.38|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|URdtciNv4nwI9SDQU-O115Wh_DNm|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|170.0|0.65|10.6|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra05578k|URhN9BowUvhK_6YgjeILgql91_sS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|179.0|0.638|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|URl6zxcUEC4OYQKjhFJV5YrWCeHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.0|207.4|0.589|12.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|USC1DgwRe5XZDNbm40u7uHOXFPOX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H27I15N8Pb3Sn3|Pb3Sn3C5N8H27I15|FA0.6MA0.4Pb0.6Sn0.6I3|1.2500001332889268|0.795|268.6|0.706|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.6b08337|USEYSSnfGHSsqILfH14IiVKTjZHD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.6Sn0.6I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|216.3|0.75|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|USFi_gWw2mAiMycIAujLbR-bUODT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6250001732756048|1.08|206.9|0.72|16.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.008|UScrmsQEnMi4qq_--wTJ64ImPmoW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|213.6|0.76|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|UShAndnr2-ema0SMAr9n5ECSaz_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|167.0|0.48|7.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|USs6BiVrPX9XBDKs7yFYm4OJDVPE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||0.956|79.1|0.267|2.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|USvVMCIcb-VxfxdDzmd7-VPcTbEI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.121|79.0|0.7|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|UT8EsHey0mW7CjL-lBwZnRfB59tI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|202.1|0.532|10.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PBDTTT-E-T', 'MoO3', 'Ag']|['PBDTTT-E-T', 'MoO3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr07933h|UTGZ8khUv-0vYOtmrFIPZMP3mz7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PBDTTT-E-T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.05|1.0|0.25|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.09.062|UTTbY7PGP-l1VQVgieq_n2pz8oi0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|0.49|9.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|UTVRIN1JuQN2dN4GefZs4Iypihct|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.0590000000000002|189.5|0.7490000000000001|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-07485-3|UTVeUzVY6vBxC8YzfE0N2DvvA1yJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.1|240.0|0.778|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au', 'pV3d3', 'Al2O3']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701928|UTYHJxoLz0h_JQw4blwIpr0ltmtI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au', 'pV3d3', 'Al2O3']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.05|225.43000000000004|0.77|18.22|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|UThm1FT7u32iKNHI_Z1Q9BfslSh0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.716|198.3|0.442|6.28|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600315|UTnXQLLztC4Os9FLylt8pjU8z4NV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.075|158.5|0.76|12.95|['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']|['CuO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.012|UTntx2EOIVIO0Dcm3Kqa4rndVTE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|1.05|222.8|0.7|16.38|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|UTrlhnuFX0lPx2YWpotMg_-Nmvp7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|206.2|0.7709999999999999|17.21|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|UTwaFL_WLY0Z19p_iQI06SepxxYY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|183.0|0.58|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8']|bulk|https://doi.org/10.1002/jccs.201800173|UTyKJxA8EnZbrAyO7dkomdxUogXy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|173.70000000000002|0.75|14.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|UU3fv8KBfd2W8SOwF0jmnr8bjijj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.615|121.8|0.37|2.68|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/adfm.201500616|UU3iKLnr1fSoO4T1IGtuh1sXKaj3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.04|218.0|0.66|13.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4mh00238e|UUBtAurqg2VylDUU0fGOrF4HClXj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|226.3|0.733|17.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.190|UUCZr9wVmCuJYTnucZTTQPC2x3c-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|0.992|201.6|0.642|12.84|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|UUIzQK1MwbltKjODxrujrQ-K7kvN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.062|212.2|0.643|14.49|['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|UUPDRCjmHDNrOBqZcbIo9jTFA1jz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.08|217.8|0.68|15.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.012|UUVfN0p2yyNz5fcM6ZGkJw7V0_3Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.203|227.4|0.56|15.32|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|UUbGUYQYT4fL-aqJ6B_8fUqyvB1q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.18|153.6|0.782|14.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201904387|UUeWSdKDDmYznrkwJtK5pXBl9EPb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|167.0|0.55|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|UUrIVouQbd7npwPogavVcrL858eP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.967|232.8|0.76|16.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|UUvhowZeckZzwRQEVZmTu8-6POMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|239.0|0.552|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5077098|UV07aMMug0UmtR9GpAE9HDpFCTGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|183.3|0.727|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.172158|UV2DAfynk3upHEhxu-JrCyMXQyxg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.02|248.8|0.596|15.2|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|UV641n247mGdUm9YA_UHXDMsnQPX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br6C47Cs3H253I144N76Pb50|Cs3Pb50C47N76H253I144Br6|Cs0.06FA0.58MA0.36PbBr0.12I2.88||1.12|238.0|0.7759999999999999|22.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']|['PTAA; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|UVKGzITGZBAVt_69oH8C3OCrXILC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.58MA0.36PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|8.97|0.7140000000000001|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|UVL-PbnrPK5dosOHn-0gbBykkwkz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.71|96.0|0.61|4.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|UVPaworvMFKB6GW5unOSaj3iczh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|69.3|0.36|1.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/en10050599|UVPdUi5l3ctaaH63KZ0cIN8OSjSL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.025|236.5|0.655|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|UVQt3jRQ3n2EHUhaaUmwhkJQzsUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -Br21C16Cs4H80I39N32Pb20|Cs4Pb20C16N32H80I39Br21|Cs0.2FA0.8PbBr1.05I1.95|1.760000187670809|1.02|146.0|0.58|6.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603747|UVWfLjQ_WZlT0xpDWdYA1sr9u39z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.05I1.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.8|0.7|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.11.030|UVjmDAC0VdSo1BhB8hDPfpg_mHGz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.024|231.9|0.6859999999999999|16.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|UVnc-Vt_2WqM1_AEY2nWMDQ9V9uw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.048|197.9|0.711|14.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.041|UVnyPA4qSPMJZAILho9RClild5hM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|162.0|0.737|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|UVuZ5eErMkLbeEIZnBnJ8EI57AJi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.762|110.3|0.48|4.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|UVvC9RzD57NSW_p6NeohnN4GlX-o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|211.4|0.731|16.68|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|UW7lA3qt0hedsW59TtxxUj58C51n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|222.1|0.6920000000000001|14.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00468|UWBbnn1b-srmU8YcEDDXL4wF7V9D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.05|206.6|0.7559999999999999|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']|['SDTCz2F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|UWD9lgMPQCBtzg4nJ9QM-x4yLOtN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.01|230.6|0.48|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/slct.201701479|UWIphVqAzja8nQFwRjte0hWV0ybZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|229.7|0.68|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2017.05.027|UWJCjvOFEcX29D6QEZNjvHX_z-7k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.04|126.8|0.8029999999999999|10.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|UWK6nKsM3CrTYx2YthpmSXx0XDQ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|211.0|0.64|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.07.095|UWREwFW3GjyZLV-wrLDXTLB5vkkq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.87|197.0|0.547|9.37|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|UWduJ2yJS_VWHb6_vi8yG286SYAM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|213.0|0.4|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/mi10040266|UWkvu53wbazsar8qo0w9RpbQ_SF-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|150.29999999999998|0.7|10.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|UWqQ2BlOXk7V333etB0t2eh79oSp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.242|146.2|0.753|13.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|UWqua-bIs1k9xGySZjBMd_stHNh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.0|0.75|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|UWreHfoVl55yj3ofZXme3fbFBn97|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|221.9|0.738|17.78|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|UX48FS0aYNcJ-RfAnZhGR_2Dvr8Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|172.0|0.63|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00486h|UXITpxfkutqG-Rco3JZ97bacf9Dp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|189.0|0.65|13.5|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1117/12.2251885|UXM8tIugt8jwq-eleC-yVoVcN8H8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|223.3|0.64|13.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2018.02.010|UXM8vIUs3AUTbaaOWJDVpVMOgGOx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.232|144.9|0.742|13.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/C9TA05556H|UXXEOspnEydBgDOuvkgMkfHrqcsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5880001693302526|0.925|223.0|0.69|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|UYJsUUfF2cnWZ6rWDAuKy18syKYd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.0|0.64|7.68|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'Al']|['WO3']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.150445|UYZOsMS_7L6aH7mQ7veBc6XDDQoh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.04|234.0|0.7|17.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|UYh0LQXBh4zaCzHqKebDO6e_T6g4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.7|0.735|17.57|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201800361|UYl0f_-BE4vS3XXgrniKjf8J4lwY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.052|115.88|||['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201902708|UYznOTSdDRMQcKp997hoHX5SWqCH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.1|0.701|16.02|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|UZ7g2pcS93drV3zb_zTIaqh78MJ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|118.2|0.284|3.26|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|UZGq1UKi3EeG_Y9CSqy71T5bGqbT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.17|11.7|0.351|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|UZH2n-e-Mn_02yfEAJzyBHDYtM_w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.19|129.0|0.423|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|UZc2Pg3y8uXdCDqy02rhF3bVqyTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.1|0.662|14.67|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|UZf3C_Cez7vz5X-MPWPhyhymF7PN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|89.0|0.65|4.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.043|UZkIz9BoneWPHUBMCzkA-LvVCA0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|0.6|12.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00303c|U_26ip3OiFtfz37qT5uYgfox7DNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|232.0|0.7559999999999999|17.1|['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b13740|U_4TAOppOaHyezI7_iA2zjPRKVHg|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.256|83.2|0.409|0.87|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|U_CXLVdnHzFEGW9seHJr86HjqhzO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|200.9|0.7|14.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.182|U_Eedm_1etYAXOGswPPZAnlIeKsO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.107|229.89|0.747|18.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|U_Fgwr-_A8nwvtU31G_GkSC7A-wa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|169.0|0.7|10.41|['PI', 'Ag-np', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.3390/polym11030427|U_HJgxLNrMHTiY2DWuSVFpF97kWP|a perovskite solar cell with the following device stack: ['PI', 'Ag-np', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|192.1|0.492|8.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901753|U_HfEr6KIbklSQHcvqioypB4L4fJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.11|239.4|0.7879999999999999|20.95|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|U_TKgPes2cmpx2Qm87BLgH3Soz-E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|186.0|0.65|12.11|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|U__lpzPbX2_vZXWIOUolvwVafWTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|180.0|0.6920000000000001|13.2|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['TAPC']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|U_fB2I4jrJdsNlON6CbdLKIrc2ez|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|U_mKclk3nKrsYVkZQ8lQUB9qxSPy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|200.0|0.7859999999999999|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|U_x3rd2l2fxXO6d-KWu0OOrwfgMt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.015|212.0|0.51|11.0|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'TPBi', 'MoO3', 'Au']|['TaTm', 'TPBi', 'MoO3']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.9b01396|U_xDLLKhcnp7dzZ9shxTE8e2WkfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'TPBi', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|U_ydAKfLP1vyYWeyjfGXZZ5PXIAn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|206.0|0.56|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PT3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11434-016-1050-x|U_yjpaJZqIMCjE8Y7NW32XRU-iXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PT3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag10Bi10Br60Cs19Rb|Cs19RbAg10Bi10Br60|AgCs1.9Rb0.1BiBr6||0.99|18.4|0.71|1.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.037|U_zICjN6ZGCGJAsPV4PBrxvJhdcZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs1.9Rb0.1BiBr6. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|Ua-EKRjupVDUAJPVVLYZwjeON7HT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.79|191.0|0.64|9.66|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'CZTS-np', 'Au']|['CZTS-np']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1039/c8ce01337c|Ua4VXqU3RB40cquHj9t0EmmsfrAg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'CZTS-np', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8190000000000001|239.2|0.547|10.72|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'IT-4F; PBDB-T-SF', 'MoO3', 'Ag']|['IT-4F; PBDB-T-SF']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b20857|Ua9FPDyCBkkjMAXVnRCFUOBljLeC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'IT-4F; PBDB-T-SF', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.72|230.1|0.552|9.2||['PTAA']|['TiO2']|bulk|https://doi.org/10.1039/d2me00032f|Ua9zXkMid91txHxez44r5v6cHWnv|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|229.6|0.71|17.11|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jechem.2019.10.006|UaFgShGy1R_fC4UXd5Fjgcx_jo3R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.2|0.752|17.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b01061|UaHzX8I90do8KXgD8MVj5iyJgceY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|238.4|0.67|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra10007d|UaTbeRTxhhA2IO9gHL6sR24yXePH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br32C125H650I93N225Pb125|Pb125C125N225H650I93Br32|FA0.8MA0.2PbBr0.256I0.744|1.7200001834055632|1.149|161.0|0.499|9.23|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|UaXAkfyhfO8pORNCMdt2WyLtYgDp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|210.8|0.745|16.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8269|Uabdj-jJN8QIc1YSgHEaJ2VBCGXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|177.0|0.62|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|Uacsewi4PhOfpzIVcGSaPpAxCjt1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466||202.9|0.76|15.49|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.nanolett.5b02126|UagfO3Xdk3qaUjCfv9FTDzx6_FSV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|193.5|0.69|10.73|['SLG', 'ITO', 'TiO2-c', 'Ag-nw; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-nw; TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2016.02.016|Uamkt3onU8By6gVhs1K4a8EhFSo0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Ag-nw; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.0|0.682|14.62|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7ta04014h|Uaq5fIeoXMqyD2TUrpz4vQi3uQvq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-H', 'Al']|['PEDOT:PSS']|['PCBM-60', 'EFGnPs-H']|bulk|https://doi.org/10.1021/acs.nanolett.7b03225|UaqDCR5Tt312U-YT3U5QoRQ9Radx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-H', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|192.81|0.736|14.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601297|UaqtegEjQmYhW_6E5ijNlcbsAcXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.135|228.34|0.738|19.14|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide; PEG', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']|['PEDOT:PSS', 'Graphene oxide; PEG']|['PCBM-60', 'MoS2']|bulk|https://doi.org/10.1039/c7ta11295e|Uat2DADXBwHnkEOXcpZx-zMQiYqS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide; PEG', 'Perovskite', 'PCBM-60', 'MoS2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.3|0.56|9.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|UbC1d9DS9eEeyEhZWtUZ_gBZbcKB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.11|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c8ta12254g|UbCv8tgJXt6yZSBrBAVQPgOg9Qbr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.0|0.728|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700536|UbDz5cy--1HR_jvlMIHRlJrfRqIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.44|77.5|0.735|8.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|UbRqj6CY-7ADj_-kU-08LZPigJDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|163.5|0.503|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|UbXXWoUX_0oU3pBuqrmtZ75QIP0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S101', 'Au']|['S101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01776b|UblfYozxr0MuTRkc9kh0z34VYspa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S101', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|1.024|205.6|0.679|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|Uc5DAWtknvTBShnlW1Qz1YsxgPHZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|183.7|0.691|13.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|UcAUbIUKSeo0kw1NMM9ywo1sRP2r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.873|89.7|0.54|4.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|UcAw1qoKMWuOTaAjXByNQmY5mtVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.1|0.71|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/38/1/014004|UcCFGPx9IXJ8gnE6lZ_x51wUymHz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.773|18.5|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b01439|UcCGaf26Gv0s2wpy9cAIKMsGHfQV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.03|85.39999999999999|0.644|5.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|UceC_9em_ysJUB4eFI3C3GDBocQu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|137.0|0.644|8.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|Ucftl8qiHlzHsgknYG0mfyXmBJpr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.06|217.0|0.57|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|UchcpOvBUJ6OZMT97Pm03_xSxRBo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.765|15.0|0.28|0.31|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|UcnFbqvMsM10YyR-M-GW95UDOt1I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|187.1|0.552|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b01980|UcrZAxjYIYBwhr_NhQqa-EctsU5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|225.8|0.7390000000000001|18.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800276|UctvedRC95mtqqQzedxWXsPNrXQ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.23|0.8240000000000001|17.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jiec.2019.08.004|Ud3vctpEKrE8fnzoEV3fxc62QPZa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.12|227.0|0.828|21.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|Ud5dB5Mw7vFh7rG49n9mlBG4lnG9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|185.6|0.828|15.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.matlet.2018.04.040|Ud6K1SXPVuEq0FafPA_1G4wpgvCg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.894|158.1|0.7659999999999999|10.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|Ud9nib-BbbWoUa1F6tHCX9e9GrSm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|180.2|0.62|11.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|UdG6lHTp7M0J1_JWj-1WnCJj0k-u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.5800001684772036|1.088|172.0|0.643|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']|['PDPP-3T']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|UdGwP8cdsUTBUTuk0rKzoDVZTUV8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4|1.6200001727424491|1.03|204.7|0.61|12.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|Uduu7KEHNVMtnc7160b3YcK_r4Fm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CClH6I2NPb|PbCNH6I2Cl|MAPb1.0ClI2|2.700000287904082|0.5|95.6|0.3339999999999999|1.58|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.mssp.2017.04.022|UeBEx8OC0bN4InSANhhT3TycLBbm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPb1.0ClI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|217.43|0.7509999999999999|14.71|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b15673|UeEGaweOrnONON_Uy4jCpeVM6Hpq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|215.0|0.79|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|UeKLrbe-_mvp1SrH4paHCFz-M8cc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|222.0|0.58|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0957-4484/27/50/505403|UeRGHTZFsn2K-zvdEIUr_XIA0mlL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0285ecst|UeWv0HUvNsbQ1fu9deB4jwOYhu71|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.01|242.1|0.782|19.1|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|not processed|https://doi.org/10.1002/adma.202000571|Ue_NTtwh_V2FEGprQRL7YU1ApvCM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.8|0.79|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b01663|UefauM96Pcm9LsOF5KyDEde95f_c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|132.0|0.41|4.9|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl404252e|UeiH7qNcHawcAzJ3fuq4pPy6iRji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.81|203.3|0.5|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.047|Uein7OrJFPDC2lsP1J-U3kRoioqZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C95Cs5H476I297N189Pb100|Cs5Pb100C95N189H476I297Br3|Cs0.05FA0.94MA0.01PbBr0.03I2.97|1.5500001652782691|1.052|249.4|0.7709999999999999|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01668c|Ueq7EXPQtD3e1qH8jKtskZlX_lMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.94MA0.01PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.105|212.3|0.7659999999999999|17.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00375|UewgIiLpza5nu9V1iUgFfQqPeRgI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|UeyzUM9AZE-uR9btr6Nn5zYu2N5F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|178.0|0.54|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04267h|Uf3R6Jce-V1TpT_neuvOMg8KBkuL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.995|246.1|0.65|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8BT', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60; F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|UfK3mTdWndKsLKfMO2nXkOAdeaj1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.0|0.57|12.4|['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3-c', 'SrTiO3-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|UfYWyR1zNzxA5Z7R8N-VS7Y0mf7n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|220.3|0.653|14.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aab795|Ufb8ueqPV9ztazRru8HWhENHCtGh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|204.2|0.67|15.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Carbon-fiber']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601116|UfdHblpj9TgzpD7WfxULk1WDEkqW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Carbon-fiber']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br5C98Cs2H504I295N182Pb100|Cs2Pb100C98N182H504I295Br5|Cs0.02FA0.84MA0.14PbBr0.05I2.95||1.01|217.0|0.7240000000000001|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2019.10.101|Ufdt0Sy4t_hI33oE2sVPRcNHrbNr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.02FA0.84MA0.14PbBr0.05I2.95. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|150.6|0.642|11.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|UfkVygJeaYKgtA5xprv6A9CCHmYH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|185.0|0.7|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|Ufn5eTml_rd3y6fsKw_Jv_Nf8N2z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.0|0.78|13.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2017.10.046|UfuSRSYW_uG_iAHCb5mHafab0jFo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.5|0.5|8.24|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|Ug6t0fHP-KKYnP0_q2AQwQx-CCzm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|233.8|0.716|17.2|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|UgCJ-6177ci86JS61-t8-JBYJOyN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.13|235.6|0.7170000000000001|17.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mtener.2019.03.005|UgCQ-BFW8A8smGSy3KhUrRG-O-nL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.08|123.0|0.497|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra04311b|UgCvHDSowdWm3ftyTLewhP-zCbMD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|182.4|0.49|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|UgObVXP8_A3b9UeRiDUBoS-Zjc-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|104.7|0.408|2.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|UgcOqONooMcX7_92V9-rMN0aJvGc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|211.0|0.64|13.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|UgcT3BNnC_1c9v6WXLE5iFJRk6aX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|195.0|0.37|6.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.7567/APEX.10.075502|UggoCaueXjsfpKppBaf6quG6IWK3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.815|84.0|0.51|3.5|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|Ugis5xMunEsVfnBTaVj3cOrVxr3o|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|215.7|0.5579999999999999|10.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|UglW0cGKOHVMVvlpnAdWSTiAzTCt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.02|211.1|0.75|16.2|['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|UgmI5m5LrSp3I-GcDJQEfUXLxt5R|a perovskite solar cell with the following device stack: ['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|194.0|0.64|11.91|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|Ugqj4viY-i2VNtLDUqBVi440JBCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|220.5|0.789|19.29|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['P3CT-N']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta06439g|UguXxehmJFJ0DIjwekmeJbBHf_hO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|146.9|0.735|10.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|Uh4iPBrXFNpf99g6KD0TElPpnL3j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|144.5|0.56|6.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.04.082|Uh7R7dKfoqtPtWjY-IiOg3PMajhw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|140.0|0.65|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Uh84AvRmA2kUPnv1wG2Vn0k0P9Vt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.8959999999999999|138.8|0.616|7.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1d', 'Au']|['1d @ triphenylamine modified azobenzene dyes']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.10.018|UhCeLxRIKkOJB9tq6dlwbVPnIygI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1d', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.3|0.76|16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.11.031|UhFBdtI6tbcnqMT8qMNkExskUqpu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|179.3|0.547|8.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta04969a|UhI_7_9vhvX8jT__tU5CfM7TX4bJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|188.1|0.62|10.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon-nanowalls']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.iecr.6b04768|UhN12zQLtJbUMabE1N0ffhvJD0dN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon-nanowalls']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|233.1|0.574|12.17|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.046|UhNsxOfp4_xWXICmmxGc53gSIGlq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.002|151.8|0.5|7.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|UhPcPu88XSnZpWPkrze5S6ulG5fL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|222.0|0.7020000000000001|16.86|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|UhaDauYa0WOVOGIY_Ok7TyJrnn0G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.799|149.0|0.77|9.17|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.04.092|UheiI7eRwSREVfSeDZVRILnVFn8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|196.0|0.71|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD29', 'Au']|['LD29']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam6620|UhlfEwL8pV59cpHB6VXbyt51T8h9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD29', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|166.0|0.49|8.42|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|UhoLzIMHI6PlQzJPkxOiUfEq3xm-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.0|0.77|16.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MEH-PPV', 'Spiro-MeOTAD', 'Ag']|['MEH-PPV', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|UhocgMZGz7j5Wi9tZzmdsQzGOm3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MEH-PPV', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.129|234.9|0.7859999999999999|20.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|UhouorgILxOl76UzoA0FDR7nS4GE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|233.5|0.775|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|UhpwJaFxvAAWcXvcUfzOSjiPlZy3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.977|225.6|0.6890000000000001|15.18|['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['GAN']|bulk|https://doi.org/10.1039/c9ta08929b|UhqAosGg5bLgdpW5Pj58rHqriLgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|179.3|0.635|10.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja504539w|UhtGEsPAGbBHtp4YxZxpDMoMpEWa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.08|164.0|0.64|11.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ce00169d|Uhut6ecgLN-DHYl0LAdnQN9GmzVQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|187.0|0.612|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm5041997|Ui5MnfiMsFsno8lUI6WJxkWAU7GG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.6|0.7559999999999999|18.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|UiEeJraScwU2ehFDS4TyvbaEY6SU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.88|224.0|0.6940000000000001|13.63|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.8b05610|UiGdWCAjxrphHwHBP-saIJAfCB1S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.281|69.0|0.7020000000000001|6.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|UiHRmMs5etN5RgZ2xVX8zkc8aO77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.73|15.72|['PES', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201702182|UiP-iJlVlNweHP7Ef16jfwhsxEud|a perovskite solar cell with the following device stack: ['PES', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|210.2|0.743|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.034|Uia0KHZZvJ8ILy1cSPbyJMlq8pPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|222.5|0.598|14.46|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b08669|Uiaw5NrOItBAasnz2QbPJt6HnAnN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|233.2|0.6859999999999999|16.24|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HAB1', 'Au']|['HAB1']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.orglett.9b00988|UihGQjaJ2_-QGtLWD_2sjipON55t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HAB1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.8|0.679|13.08|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|UisD0euq003Gy0o9OZ-5KcTlfPB_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.145|221.0|0.72|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms10379|Uj5fuOet3dJv56ldjkqSqEB_GCP0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|182.1|0.516|7.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ni']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|UjBsrDK_QAc2nyGJxXPmFwEN4H5E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ni']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.3300001418194185|0.61|212.0|0.627|8.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|UjE8n1GTgDiZGvuHBDvyB6Op88pt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br25C40Cs10H207I125N73Pb50|Cs10Pb50C40N73H207I125Br25|Cs0.2FA0.66MA0.14PbBr0.5I2.5|1.6000001706098266||||9.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|UjKHqYmBx-Eb0U4ImteSR2Vy1NSJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14PbBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|153.0|0.511|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900397|UjbPUTNlZmXac3A_ujfkG0WCejc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.7|0.797|19.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|UjevaLrZc4UTdAxVDspYza9piBNu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.13|239.9|0.746|20.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901726|UjilJV06SSRJTsObRwPAMnmXmcZd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|115.1|0.7|6.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|UjisoxTFQItkrIebq1bzdoP2l1o-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.6|0.696|15.85|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|UjyhUEPF1EgyfqfQs4GqSPdJH31w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.71|56.3|0.39|1.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|Uk2--yRcp7hJOINhqYbouXXrJ4vo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|182.8|0.708|12.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['ITIC', 'PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.8b04861|Uk7AoUUmk8mbzVe02bA8AruqVJAs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|195.8|0.78|14.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|Uk9Cz3Zyk57GJK2fJU_zCSCUvkGh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5600001663445808|1.04|227.8|0.72|17.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227484|UkFBVnDjTDle6g769QvBJWfvTmhJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.2|0.7|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.009|UkFQQYiEY7PcVILZQA28qjoEluKp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|187.0|0.698|12.81|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b17798|UkT9ZGeoZ6Lb8vblwcmSIEMzunnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.3|0.64|14.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|UkZ1GhlZJ6_qqUzi3Mj4wXGnRIWT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.94|204.0|0.77|14.7|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|Ukhl2HyHdGe1FVwO02bKEp4WQcZ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|201.3|0.7|12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02784|Ukl2_a8IZ1_9_b5X68icE_UPFszW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|183.4|0.47|7.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|UkuW28AHRwD1OtRgrE4UVaHntUZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.0|0.705|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|Ul56iYLGJQlsbg7zVjmq7NtiGRiK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.0|0.73|18.4|['SLG', 'ITO', 'SnO2-c', 'C60-5f', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-5e']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|Ul7DG4dNBegbxqXs6d5YB57ruHvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-5f', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.0|0.7290000000000001|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|UlLAAupySprpQW-sWTcIckuPxycI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|193.0|0.6940000000000001|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7se00536a|UlNBW5fBDSLBYZaEbUSM2Qdq_3oY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|205.2|0.69|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05484c|UlSyrj3ATnJmA5DD7tuCwcVs1AMN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|211.2|0.48|7.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.04.052|UlX1B9Z4UzoFtFYUXrB4T6zHhlGe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|138.0|0.7559999999999999|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']|['Spiro-CPDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|Uln3JSwTioQO72bBn_jH05GGBt2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC25H150I74N25Pb25|Pb25C25N25H150I74Br|MAPbBr0.04I2.96||1.05|224.5|0.779|18.41|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/ente.201700561|Ulq0mgfEaxaGAM1DAGTt_YtcWbqM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.04I2.96. -Br120C95Cs5H491I180N174Pb100|Cs5Pb100C95N174H491I180Br120|Cs0.05FA0.79MA0.16PbBr1.2I1.8|1.7900001908697432|1.14|171.9|0.723|14.17||['PC60BM/Rh']|['ITO', 'PTAA']|not processed|https://doi.org/10.1002/solr.202000740|UlqfJzWWLMsslzvonyQz3XFDFH23|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|207.7|0.46|8.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.01.035|Uluw2T_GVx3IKxUFndoXhr3seWCi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br291C100H503I9N197Pb100|Pb100C100N197H503I9Br291|FA0.97MA0.03PbBr2.91I0.09|||223.6|0.78|17.37|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9se00933g|Uluz0_77F0p9yk3NcsIyPYPZtfDx|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr2.91I0.09. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.08|174.4|0.68|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|UlwDuZeCK8bXmczuHbLJ-NzG9150|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|221.0|0.701|16.21|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.3390/nano7070166|UmFte0F2RuJYzt1Al239dayQ0eRF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|226.2|0.76|18.26|['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta05048e|UmMqMBGDfVVgDVF-WJoOsd7FcEeD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.83|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-BPy', 'BCP', 'Ag']|['NiO-c']|['C60-BPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|UmQGEiXLgNxYLeVY_a4RhGCCA7NJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-BPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.97|223.0|0.7959999999999999|17.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nj06146g|UmUSnaPAsoY3Nj0DmuuiKJm9OZqG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.02|193.6|0.6459999999999999|12.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|Umd4KbGEKr0u4zIAsLwEWict_dWp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|215.2|0.73|17.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.074|UmlpiwkukldbtSNe9y5FOH13OaU8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.062|195.2|0.65|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|Un2FWZ5v1AFUuUNBFZtgMzFt0uQc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.68|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|Un8ids8jILgg2tJdT-eRDxobFuHG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|169.89999999999998|0.523|7.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|UnMUQZHuGNhbGFw0iKhFXNihKVBa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|114.0|0.55|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|UnP3WnmvgXRKdSZaQ8RqA7mbD0fG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.84|194.7|0.54|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1618-z|UnQWF8kgqPpr4ILqECZk5Yjaf15t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|145.29999999999998|0.41|5.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|UnR74CuJ3QZhkCeQO-QmSJp3fOjw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|238.3|0.809|21.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|UnURg_7p6yl4-yEN7vKOmyjwgIoD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||160.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp412407j|UnVFNHXkAVvr_R9wOMfFaub7i_ts|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.2|0.743|16.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']|['NiO-c']|['PCBM-60', 'AgAl-np', 'Au-np', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|UnqTuJ60SIY6yChJMLjWR_HBwbsl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.92|147.0|0.74|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|UnqXTSzGpZJUDR_m-dgPEVxLOlqu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.13|232.5|0.77|20.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YT3', 'Au']|['YT4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01452g|UnqXX5tkQIxWEf533Zt0f5YlN7ux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YT3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.986|222.0|0.63|14.0|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1002/smll.201501460|UnsXvQJvhRkfmrxJFemU5q-MK2Ew|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.09|231.5|0.73|18.42|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|Uo1nMOZtqX1awIMqrKdwgg_JtO-B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|37.8|0.39|1.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501354|UoNF4aSJyyoA0gKuZ_9OFa94IC3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.8|0.544|9.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|UohdKuLZ7weEUbeOu5qFz9OhV5jJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PMA)2MA3Pb4I13|||||7.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acs.nanolett.9b01652|Uoi8FdBn0puXqnR4xL99oY38lrWQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PMA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|126.8|0.59|7.38|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c']|bulk|https://doi.org/10.1039/c6ta04726b|UomFnYkUWOpuEALWCOhBINxArYHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|180.2|0.63|9.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|UopGwwIFmlJ6b2NgUCIx2HLIB6yt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.05|196.63|0.727|15.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||UorQnE-nLAoSD4FPwVQ78AYyD2ef|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br3CsSn|CsSnBr3|CsSnBr3|1.7500001866044976|0.41|39.900000000000006|0.58|0.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|Up5uJRnQ1pvKBG1xjJUsTlh8qFIt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.091|36.0|0.715|2.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|UpBatKgaG7pq34HivmhA7zL1PY3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.6|56.900000000000006|0.52|1.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|UpDZ8UsEKJM-HdNxqWcTfEwdm4N7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -Bi2C3H18I10N3|C3Bi2N3H18I10|MA3Bi2I10|1.8000001919360546|0.604|10.6|0.42|0.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra07123j|UpGdBGZLGabJqULEikU92pc3WYPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I10. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3400001428857296|0.8|225.2|0.77|13.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|UpOd8Lp5WoVN_qXKeBucvXalrP-b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|197.0|0.49|7.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.7b00147|UpOdN2PBhSo_j6yDMAWPG0Quy-42|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.22|154.5|0.8079999999999999|15.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|UpRNvpB7kIz_6I3wk9pOjtq7GrK8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.931|194.0|0.82|14.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201800191|UpThyY3nc2d7kp5qfv6tisLNUreq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.76|15.92|['SLG', 'FTO', 'TiO2-c', 'CoCr', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CoCr']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|UpZZZZphjFLzkWX1DHdGFTYGzLmV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CoCr', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.0|0.502|8.9|['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-70']|bulk|https://doi.org/10.1002/aenm.201401720|Uq-x_e2xZYGDqW5_NqRfFfa7I4pe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.2|0.45|8.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1016/j.orgel.2019.03.022|Uq6-Fyq0gv6PmHdNhIJpBwkR29Yd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br81C68Cs32H350I219N146Pb100|Cs32Pb100C68N146H350I219Br81|Cs0.32FA0.58GA0.1PbBr0.81I2.19|1.7500001866044976|1.225|155.0|0.721|13.7|['Unknown']|['HTM']|['ETM']|bulk|https://doi.org/10.1021/acs.jpclett.8b01152|Uq9LGF9mrbptD-1QLq0-D5HMx355|a perovskite solar cell with the following device stack: ['Unknown']? The composition of the perovskite layer is Cs0.32FA0.58GA0.1PbBr0.81I2.19. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.171|226.6|0.79|20.09|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180211|UqAB9iRCEEDk5bKPIc18HtmQaeG1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.76|222.1|0.4579999999999999|7.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|UqDhmliQtC2Zt1UF52tg2YoajYsQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|212.3|0.721|17.3|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|UqgRoTo2xBskABz8z-HsAg1L2e-y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7900001908697432|1.284|178.0|0.722|16.51|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|UqqVgKaaA3hzTdmvGRrJNkZdl3eW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|193.4|0.611|11.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|UqsjFBzMyFNooZFGl9Wpevm7r1J3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|217.2|0.69|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|UqtLppM5sVZByuu72b06Q8mgeCXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.163|48.3|0.5710000000000001|3.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|Ur1f5dQmarnvZ47hCfiPPxv0l79u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|156.0|0.64|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Li-TFSI; TBPAu']|['Li-TFSI; TBP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.005|Ur4-EvV6640-jciDmWFCze8Yalck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Li-TFSI; TBPAu']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.92|120.0|0.675|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|UrB7AFW6-4C1lpjY8XzmEZa-Buub|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|208.6|0.778|15.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|UrH-x1d2FkyremCB7kpDY2Iksf9S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4C2H11I2N3Pb2|Pb2C2N3H11I2Br4|FA0.5MA0.5PbBr2I|1.957000208677144|1.035|126.23|0.603|7.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|UrNBkzrkbTJVJ1O5atw2pXtDCAV1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|64.1|0.66|3.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1039/c3nr04857h|UrXQWFLBZ7Ant9X8jS1eRmPMjXS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|UrXYpACi588YB7nxX4fE3P1W60EQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.935|79.80000000000001|0.515|3.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|UreEK-LKvZFarAMkkWM7dkXQxF1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.095|226.0|0.785|19.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WT3', 'MoOx', 'Al']|['WT3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|Uro7xKDCObUe-HU-p6NVxnqSmHjE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WT3', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3300001418194185|0.49|237.0|0.5529999999999999|6.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01588|UrzeB-Vq-HGgv0IXi9nKNj-fDaLx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|217.38|0.757|17.78|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|Us2i-3j6er2K-YMd8TNidbQxfFJA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.0|0.69|12.4|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ee02373h|Us7Bh94dCdmZzguxnjf_q3SNHn-n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|179.1|0.74|13.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|UsBTF2DLOkANIse-FmrzckZ3VW5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|102.7|0.61|6.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|UsBy2yrFP8b6T1wTNeSFDEH3dJ4V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|219.3|0.57|10.45|['SLG', 'ITO', 'ZnO', 'ZnO-nw', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.spmi.2016.12.012|UsDelN4XtlYcSJ5Y8M2YWKGtpcKx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'ZnO-nw', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.27|128.0|0.291|1.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|UsDqSfPuPddv7FnnctVnvFpvn5b-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.5|0.768|13.24|['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|UsFWJ18I67mZOKCyAFVYvl88hxcM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.083|227.2|0.76|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b00702|UsIWYKh7WLCU2Wz7woaJYg806TDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6050001711429822|1.01|221.7|0.7|15.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04501h|UsWn6zrTARf-L0y7Y9F8RyK0NgV5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|217.4|0.62|11.58|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201800669|UskkQ5gnjKG7yeA5d4MlIqU8S5K8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|219.4|0.59|11.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|UsnEkhKAf8OQQZ2XrlU8xXdTllTc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.0|0.535|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|Usr4rAzmiWmR-vPpp2oZwJnvYH_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.0|0.67|15.8|['SLG', 'FTO', 'Nb2O5', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', '(EMIM)PF6']|bulk|https://doi.org/10.1021/acsaem.8b00094|Ut5I7Bw9T3w2_SDQ4frnt2kg4LKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|185.0|0.6509999999999999|13.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807544|UtYf5ouDLVpSSy1VqrQq_mwDlxod|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.878|142.0|0.72|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04904k|UtbYs1GRPegV3g7rK2IsjgxBC7kd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6se00029k|UtjErlqS2yQzguONqFzOk26Dyg43|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.142|211.0|0.78|18.7|['SLG', 'ITO', 'Ni', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['Ni', 'NiMgO', 'PVP']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|UtxzpmlQRVgqSMGOAovOLvwwMpy3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|191.0|0.647|12.4|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Al']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.09.138|UtzYcjB9dcJmKyqEMEmyPeOhwyYW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|176.02999999999997|0.713|12.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|Uu7Wsfdm5oO2hPSwuTbfBoOMdrdQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.86|153.7|0.48|6.37|['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.032|UuFj2qVSjeYjH5H67s6pKEvy9Ul9|a perovskite solar cell with the following device stack: ['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|160.2|0.61|10.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.10.036|UuNM6RFtPI9mLvGYWFWUmln5aPS2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|232.8|0.706|17.46|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|UuTvWqTWlK1GEYlstZOyJW2TPO4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.032|193.4|0.741|14.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|UuZx1aprMNQ88wayCSFKBpxYYkwC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|235.5|0.77|19.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK1', 'Au']|['YK1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01731c|UuiJahAD5m7Blr-Y8YzY9M9KNmrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.76|175.2|0.67|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF2']|bulk|https://doi.org/10.1002/asia.201901452|UuuNItWXo_ep1anQfa84sGHoXAvB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.8|0.629|12.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800297|Uv-lgVDKBJfhierbVpZqd9LumYz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5900001695435149|1.1|231.8|0.73|18.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.057|Uv1JNeWk3jl7F3OwtUCO2biqHbzV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.15|249.6|0.82|23.53|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|Uv4Q9ogWsaCXn1NYs-FIIdJ2cevP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|26.4|0.216|0.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']|['BT41']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6RA12574C|Uv7WT3lNhQMVzHIAYS1x8TqrVqFW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.6|0.7020000000000001|14.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.08.027|UvDexEs-nguQqzgnOj9z0BV2ywxI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|207.7|0.76|14.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|UvSVPWksftIoFF-mMCPqgbXcFi1x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|64.0|0.366|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|UvWX4Q0Na9DWiewpz4BljuhWIObo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|169.0|0.62|8.26|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1007/s10854-018-0262-z|Uv_eAFAvLfpKT9PiJ8MY_B54Pzlf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|UvaWCMVlVnCn7I9-QEstmoMte1QP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.4|0.74|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|UvxAopvLsS3QKfrL-yEmx4Mu3Iuo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|259.0|0.772|21.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|Uvyvit7lVaMnO1qCoGxNW3eJtAKj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.4700001567477778|0.78|132.4|0.621|6.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.05.122|Uw2Qz7Pn7tlBUcYzf-2MTu3UjFE9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|256.70000000000005|0.564|11.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|Uw6geg4q-DcTpeaH7Y62IpV80XG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.7|0.691|14.56|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|UwGqPfLhz8xsR3djNQgXnxfM-JVx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.9|219.3|0.493|9.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|UwI6aVJeDdZZ7jZzWHtk-9P7QFQj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|231.4|0.75|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|UwPsb01yUBaZK5-REXmN53jVBM8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br30C79Cs5H474I270N79Pb100|Cs5Pb100C79N79H474I270Br30|Cs0.05MA0.79PbBr0.3I2.7||0.59|274.0|0.6559999999999999|10.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'EDT; PbS', 'Au']|['EDT; PbS']|['ZnO-c']|bulk|https://doi.org/10.1021/acsnano.9b05848|Uwa7lFF2VWSxS-If2EkG_qfE9-0u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'EDT; PbS', 'Au']? The composition of the perovskite layer is Cs0.05MA0.79PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.6|0.76|18.78|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|Uwb0EK2v866xk_eQIol6b-86ZeRu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C91Cs9H463I285N174Pb100|Cs9Pb100C91N174H463I285Br15|Cs0.09FA0.83MA0.08PbBr0.15I2.85||1.01|224.0|0.7040000000000001|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X62', 'Au']|['X62']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc04026e|UwewplFgQQlXCi6cXpx7g9ywt9Rv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X62', 'Au']? The composition of the perovskite layer is Cs0.09FA0.83MA0.08PbBr0.15I2.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|219.9|0.742|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|UwvvQN9__HYElXf5It00P75900LD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.518|131.5|0.311|1.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|Ux7fpqQVAvkQ8VcAV-K8x65y7h6D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|224.4|0.787|19.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|Ux88bv514PIn-Qe2U-J-Oz1yRZ6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|222.0|0.73|17.8|['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3-c', 'SrTiO3-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|UxFYOO04D3zwh2ryL9sG1LyJYeiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|182.7|0.674|12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-3', 'Ag']|['WY-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|UxKm31u_r9OMD662sQ1Umhs45zqH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.99|204.4|0.705|14.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|UxPvWuMcwlRC3z2er2Q7x2QeQj7H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.802|66.0|0.49|2.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta05378a|UxSX5QfP7fdpWgMmG6FDUV86Dkpq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|124.9|0.647|5.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:ON', 'Au']|['P:ON']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp04162h|UxWIuMu5vfOlZ0ldyVG_DumC3ffp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:ON', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|176.4|0.73|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiPc', 'Au']|['NiPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.03.005|UxaXUtZKaYPfelxMZSh5cZRSugqz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.14|228.1|0.7609999999999999|19.79|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|UxaxkYapplY6e072w97KSm_p8pJ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|UxesdvoWd8Ae2SNd1yXLlG1qmOzu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|UxhYPAb9rCGaQYpxkGcH_vWD2h-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.0|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|UxiCO89tH4obg5yV0CoZ56wePpOS|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.07|225.2|0.7|16.86|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|Uy6o5OHE4fuIN-X7K50NlX00XUnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.26|120.2|0.75|11.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800188|Uy7IMEMSXqW8Kef6uEDADJIqv5bj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.0|0.61|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|UyADMChdxrMu4c-LLftWEGBsWxk3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.95|171.9|0.61|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|UyALUbANLewOEzjTX6Ho05Xem4bC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.069|204.0|0.738|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|UyKK1eYNhedUWVTSHGiYtSO7xwXv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.77|81.6|0.56|3.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-017-1264-6|UyKT7N-gHUpr4V_KyuQ1fXUvM7Xn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|213.8|0.79|15.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBDANI', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBDANI', 'LiF']|bulk|https://doi.org/10.1007/s11426-016-0085-y|UyOIOsyX29-_zW9mTshjyubhuK1E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBDANI', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|202.0|0.7|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']|['S,N-heteropentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|UyOmJ1xloaClAsTK43ugmaoOBSDM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H490I249N175Pb100|Cs5Pb100C95N175H490I249Br51|Cs0.05FA0.80MA0.15PbBr0.51I2.49||0.8|48.0|0.4|1.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scriptamat.2018.04.049|UySN8RrcT-SqaMDJgcl9Chs0Jlzi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta10510c|UyVSM_o5ImRD5zvGBkpm-CW_pwJ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6500001759413832|1.05|216.2|0.45|10.23|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b01728|Uy_QhEApahil7jcplzdkameeqBaB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|207.0|0.71|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|UyeJ5o62DnTci8YqaL2o_CnYhNF6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.82|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|Uyf9phWROgAwuzbobl9iYe6xPq9h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.06|166.20000000000002|0.74|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|UyfY8jlzpw2SB1iKdnjZ4vHRUdfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.7|0.742|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b04604|UygzH5Eq3e3Tv3Q-sMvCKBsGryrV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.86|165.5|0.721|10.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'QCAPZ', 'LiF', 'Al']|['PEDOT:PSS']|['QCAPZ', 'LiF']|bulk|https://doi.org/10.1002/asia.201600856|Uyn9FOo9RCecvP7prc8UUzawDIfU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'QCAPZ', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|147.0|0.56|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|UywAqAQJH4mlLLZAC4cw_wQ4cv2y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.546|205.2|0.6890000000000001|7.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|UywotkREAx5aYKd0Qnu2As9R06Zc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|215.4|0.638|13.91|['SLG', 'FTO', 'AgAu-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AgAu-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ta10715j|Uyxlhjg-EEOtGqbcrHSrEckKhwLE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'AgAu-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.26|156.6|0.53|2.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|UyzPR_qHdbM8L6IIZk2gVNMD3WBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|133.7|0.4|4.9|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|UzCAKSo-4zYdUhgTWZF06iby1pyG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.169|214.0|0.769|19.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900990|UzVyj0tiqh7Nll-Sq4OkUZ8nQbF0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.0|0.69|13.3|['PEN', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|UzXPZNnuWVOs9JfaaXNzplGwq-jt|a perovskite solar cell with the following device stack: ['PEN', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|180.0|0.616|13.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|UzYALPczloq5sN56Ka2_A5a0R0A9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|26.1|0.607|1.39|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201700173|UzeVUuhKXR2rRUByQW-YHSAIkIYN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8740000000000001|148.0|0.69|8.9|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.04.028|UzisM6_Xmg-_dETgKm-2IgrrG7RJ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|165.55999999999997|0.617|9.47|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0075-5|UznldmMxyW_KqLKdtTuZx1TfLuI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C16Cs4H80I57N32Pb20|Cs4Pb20C16N32H80I57Br3|Cs0.2FA0.8PbBr0.15I2.85||1.07|227.0|0.768|18.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201702221|UzvxVjF5l8Wkl1OOEQ3Az8_1nskU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|235.1|0.746|18.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|UzwDb7blbj7t-xYpmwkPdkbZdov2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.4|0.682|14.76|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|UzycrOMmjKC1jbHFwpBsN00gWPyJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|160.2|0.48|7.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-9785-6|V--WooN8TiCuGcwbRdbuhU2pnc3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.03|244.8|0.72|17.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.056|V-9j7eI39B5cuQiqpenOxS3fHFTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.917|134.0|0.28|3.45|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/solr.201800147|V-IjHFlo94wtCFt00f5D0AGFWy3k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.0|0.56|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.01.095|V-LmJWMqmyL6bTMzbbWKPJjV9hF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.6|0.66|14.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|V-Lw4OByhqp9zFGOECUNOzhbx0Ws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|226.2|0.7140000000000001|18.25|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|V-OuXlYslL0YgebPyKOo3dZvXJfA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.156|146.1|0.758|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|V-TtUOMDaPOGSUbnOMx_PVt_xNz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|191.0|0.785|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110316|V-dJfqXvA3E_-4nvzmRZmwm_KLT5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C100H515I297N185Pb100|Pb100C100N185H515I297Br3|FA0.85MA0.15PbBr0.03I2.97||1.1|229.0|0.762|19.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.0c00175|V-iL6N5o3cMwKjOmRn04aWq7ip94|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.03I2.97. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.11|210.0|0.64|15.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|V-izJxYtPSGSWAPXEaYjQDR5Y8HK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.3|0.677|14.15|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']|['NiO']|['PCBM-60', 'PEOz']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|V-lnmJrwjl0DjupYTkzomUyyayYw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.016|221.2|0.7020000000000001|15.3|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|V-pFbh5Mg1VWkhFDUq4rEOMADJMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|190.7|0.68|13.58|['SLG', 'ITO', 'ZnO-c', 'WPF-6-oxy-F', 'Perovskite', 'pDPA-DBTP', 'Au']|['pDPA-DBTP']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|V-vH4eJhTIFlL4RZksea_VgV0j0U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF-6-oxy-F', 'Perovskite', 'pDPA-DBTP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.5|0.51|9.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.7.003322|V0-FBPkM-9XJUglR5eL_oN2pH5B5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||||||['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201802646|V08GzR0O48powFT88e12nw_dheV-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -Br9C20Cs2H103I51N37Pb20|Cs2Pb20C20N37H103I51Br9|Cs0.1FA0.85MA0.15PbBr0.45I2.55|1.6110001717827689|1.061|212.8|0.696|15.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp08022g|V0Dkgz3VeoAAUDojqGbHndWA81j1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.49|58.0|0.58|5.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501665|V0IZdgwz6Nh40v5nc5KcauJu1Yuy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|232.1|0.69|13.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2017.09.008|V0VtTCqewZB-cUnD52hzO3sbVdQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|143.1|0.63|6.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|V0mZXWDeOOQoLvL7t-wc77UKLo5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.3|0.8059999999999999|18.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|V0qCMlw4bf4bQ6nPe4KbYeaX1fxl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|222.2|0.6559999999999999|13.34|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|V0uGrr06vebjd8CHIrJjNJEtIxKi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.98|196.0||12.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10854-017-8094-9|V0yZhXzMzxppm7Yd94QOz7kXlTI-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.79|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|V16DpGmytfSK9NjV6JG0Pm7MW3eY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55|1.6000001706098266|1.14|214.9|0.741|18.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']|['NiO-c']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.9b16919|V1751Q_7eUxqbDOf6h4NA1fuBy5L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|175.0|0.58|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|V1A7SAXdiU9G86B8HznhuyWviNKo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.722|255.0|0.7090000000000001|13.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|V1ERpITQr50sBgBAIHIG9x3R4Tae|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|167.89999999999998|0.778|16.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|V1VoB0y60qj6QIOuk6K3AAhGHocK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|226.1|0.6859999999999999|16.86|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201805810|V1WwrZShip1gSJ9GAIuimQiAc5nV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8|210.8|0.67|11.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|V1dXDKJ0ZASFuBjG0IkcFpwLqfgs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|208.7|0.7090000000000001|15.47|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.067|V1ftZMCAwwI8E6dQsfx4hyzb30Xp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.520000162079335|1.029|213.5|0.737|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.8b05555|V1ieTgkUJulV5hJVXjA-DUQ82YLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|181.0|0.42|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|V1jn2y35pv7H5qhYOB33EerWNGkT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|57.0|0.477|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|V24xWcONM4Wt1w2nWE0XwJ9nHNJ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2770002427991094|1.127|50.74|0.6609999999999999|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|V2JFPPgQgbF1UbLQzoyhg0tQfBr7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.6|0.7|16.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.10.036|V2M3TDI7bZW01Fb07grwfspOWyYn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.5|40.3|0.36|0.72|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']"|"[""(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201801824|V2OkIacNgcTTZO29Cnw9HxVgw0Cq|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -Br300C100H517N183Pb100|Pb100C100N183H517Br300|FA0.83MA0.17PbBr3|2.2780002429057404|1.423|70.03999999999999|0.654|6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|V2Q1hUNKFSDXxIkgnZcrvVdtEBNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr3. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55|||||16.74|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ee00453j|V2TSqk6KTDGNxqAWVcNUrMNd47Rx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|225.0|0.72|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|V2b8jJDa5SUbv1V0lvOdtSLUr-UL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55|||||16.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-BDT', 'Au']|['TTPA-BDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11314e|V2ceDuDSCmXilgtI0w38hXWkf86G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-BDT', 'Au']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|205.8|0.711|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Pt']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|V2mH-Q_N_HUiMa8tek3op8PvdMbS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Pt']? The composition of the perovskite layer is MAPbI3. -Br21C25H150I54N25Pb25|Pb25C25N25H150I54Br21|MAPbBr0.84I2.16||1.08|178.6|0.639|12.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|V2nU7gsSAoTM1-W3IIfx0S8FvdBX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbBr0.84I2.16. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.986|182.0|0.7|12.6|['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['KY7F22-np']|bulk|https://doi.org/10.1021/acsaem.8b00518|V2zE37RndHjlIpz32QBJRrSucetp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.2|0.762|16.8|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|V392kdgt3SCCuSuzoZfrECQPT1Dj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.1|0.77|18.23|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.7b17781|V3UYCLF4k3G2Dor2YXtjnx8GAt8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|213.5|0.5710000000000001|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']|['N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|V3f-aS0hm6TmnSo8Cf2y8PAMevXl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.0|0.66|15.1|['SLG', 'ITO', 'c-OTPD; TPACA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['c-OTPD; TPACA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee03907f|V3hKgfCMRJOz3wLIRpdgu6EDt9dH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'c-OTPD; TPACA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.99|193.0|0.67|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201401557|V3xTOI8MPtpFIo7Z4nD3c-b1jqmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.631|14.0|0.35|0.3|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO']|bulk|https://doi.org/10.1002/cphc.201301215|V3xUD8HrOM3Wuydevj4XXrJpEJ-W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|239.1|0.7170000000000001|17.5|['SLG', 'ITO', 'TiO2-np', 'C-PCBOD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'C-PCBOD']|bulk|https://doi.org/10.1021/acsami.7b11795|V47S3EaxhA-IbXAVUsDCzUgcEnlK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'C-PCBOD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.3|0.7709999999999999|17.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12050726|V4ErARxbZiIG5BTzj-goBoLxqp9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.09|239.0|0.77|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806053|V4Fg6fUAVWR_vqYWV-jkgojzd6df|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.06|84.7|0.64|5.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|V4GNr3aAvRJ2i_Pjnfxsrs4f1lC5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.0|0.619|9.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|V4MCCmV-IBvPa3IgNzqDehOCI-99|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|230.3|0.7509999999999999|18.81|['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBTMT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900421|V4NwT1ZwOfFTlC6o4XEgESxJFPOR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|209.0|0.696|14.19|['PET', 'FTO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-np']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201604695|V4ODidsxMuixdAVC4ysev2OeMG61|a perovskite solar cell with the following device stack: ['PET', 'FTO', 'NiO-np', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H9I3NSn|SnC3NH9I3|(TMA)SnI3||0.6|86.5|0.37|1.92|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Graphene oxide', 'Ag']|['Graphene oxide']|['ZnO-c']|bulk|https://doi.org/10.1016/j.ceramint.2019.05.304|V4QvdRzrKy6w2F_-fNsozR8zBe4F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Graphene oxide', 'Ag']? The composition of the perovskite layer is (TMA)SnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.15|236.0|0.73|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|V4_jsynb1fnG4Jm-vTygjkUkKsxC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|169.0|0.69|12.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|V52FD4TXVNOCt4kcOT4HNc8LsRGw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|244.0|0.36|7.62|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00069|V5C6BB0qwZAUZCKFhlJ-0fiEGp8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|170.2|0.55|9.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|V5NI5uwcWBJUmyPP592opHBEcZnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|108.0|0.42|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|V5OHhkx4AeEaz5MDC1QMTe0M3Cry|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.33|113.0|0.66|9.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']|['poly(DTSTPD-r-BThTPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|V5RFxTdDRn_q_mEjaxnBxAD4uhYw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|145.8|0.73|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|V5WkVm6CogREIecUMv79AlAv3yiH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.8|0.7440000000000001|16.34|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b01061|V5Ws99GrhRXaZWz4TjViPGzms_Eu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|177.0|0.77|14.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|V5aUBLQZLwSlWRZLvIG-hmX3Wc4m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|178.29999999999998|0.6890000000000001|11.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08827b|V5h9QRuVOTu9Hne_UaSwkltdDy0O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.0|0.76|16.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201403939|V5nYtKAfSY9O_pzHwAZJwknFjRdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C47Cs3H235I150N94Pb50|Cs3Pb50C47N94H235I150|Cs0.06FA0.94PbI3||1.02|165.51999999999998|0.77|13.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag-nw']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903897|V60r78WTsw1j-ixwRlKmdpQ_DSHO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag-nw']? The composition of the perovskite layer is Cs0.06FA0.94PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.9|0.563|11.9|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|V6BzrFqBBQuqaM0G8QAqYJZmxovg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|226.3|0.73|18.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|V6G934QfqLsbHjLt4rHyjquALz-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|212.9|0.58|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'In2O3', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'In2O3']|bulk|https://doi.org/10.1016/j.solmat.2017.03.024|V6QQmQD04pg1o6VQ7Ww1NVrfCMgg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'In2O3', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.6|0.72|15.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|V6VhFTLRE73pvdUhK-CYnYVPr4oa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C42Cs8H212I75N82Pb50|Cs8Pb50C42N82H212I75Br75|Cs0.16FA0.8MA0.04PbBr1.5I1.5|1.8200001940686776|1.2|145.29999999999998|0.82|14.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|V6fhW4IOahNH2HybgRsnx2a6cWNr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|211.0|0.8|19.5|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|V6iO0tXJWrH7_S_PiB7cAt_ZkI1F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7040000000000001|47.0|0.58|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10971-019-04957-w|V6jw9J7SgkUngmqgwlqxUCIJdsUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|147.0|0.65|9.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|V6ql1Yr27DK1tKSLfsGICKhxU4Ua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.64|71.3|0.64|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.1228604|V6uLDu8772aWUrPDLD58vUs6CwNL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.005|233.0|0.602|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|V70Py_P6ItUuLCj45XNk4hreSANS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.93|212.2|0.665|13.16|['SLG', 'ITO', 'V1036', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|V71UMD_nWELDkVdqkq-O-3rS6MXc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|207.6|0.738|16.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|V745Nulst7F_m0FvjBJzh4IrnL6j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.5|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/acsami.7b17938|V77Bv-VJzqhR6HswRDgmP4uml87P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']|['JY6']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|V7AToBWNpI167PLClq-n6dsPQUOD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|163.6|0.49|6.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.11.052|V7Dv4GibaIzDt_jQ00NBqYO0vBSw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|147.79999999999998|0.54|7.34|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-np; TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|V7EYpvN6WnWFQ00rujjEMMcZcKTU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.05|230.0|0.76|18.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903654|V7JP3lCiUM14uLqBwu5cK-M00mlT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|131.3|0.7759999999999999|18.32|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|V7MlUHD-dQ2yD0r0y-5ahc2weUib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br300C9Cs8H45N18Pb100|Cs8Pb100C9N18H45Br300|Cs0.08FA0.09PbBr3||1.515|66.0|0.8320000000000001|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|V7Psb7DHw2PcC8UAcJDb5_Aq6BIr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.08FA0.09PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|41.0|0.322|1.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtO-DATPA', 'Au']|['EtO-DATPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp07682g|V7Ug2ZRb_uJ8LvMg_FHmfDiYPEhk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtO-DATPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|213.8|0.745|16.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|V7sZKH6tGA52nrdWBwtZ1PrNMpsm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.08|204.0|0.743|16.34|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF3', 'Au']|['BTF3']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|V7t7v8j5r9Doa9YiQkJIVSM9MdlG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.5|0.7609999999999999|15.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|V7uNp3wk0y1u6fysA1UyH-I30oKr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|218.7|0.687|15.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b03304|V8AjXrSuOUNFRI4zMttHvKU56cDw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|V8IB7-QnUDSPyye0cX0WjYRDvwui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.0|0.74|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|V8Qn-PpjhTV53OrbAPjaEmvJOFjT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|186.1|0.62|9.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee00599j|V8S87heCTW53Oex8y06Oz0iYZET0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|218.6|0.601|11.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/12/128801|V8_yQ_v41bTbSjg5YnqrBSp5nCQ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.73|44.0|0.25|0.79|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|V8aAAJk8JHmmYDm7xiwuj2nBwtzZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C13H66I30N10Pb10|Pb10C13N10H66I30|EA0.3MA0.7PbI3|1.5900001695435149|1.04|192.1|0.672|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.027|V8hvgchPBkqY8N4UDMqzJC39WJgy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is EA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|214.6|0.596|13.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|V8iSebSbVDZEpiedRNhVNKN3goHF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5489999999999999|169.3|0.557|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1021/acsami.7b12046|V8mOi00elSLnTkSR-7qu4E3noDqH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.0|0.753|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|V8wP5MNUWP3G4mM5b8hL2oMOLwO8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH24I15N4Pb5|CsPb5C4N4H24I15|Cs0.2MA0.8PbI3||1.0|197.8|0.6629999999999999|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.10.001|V9-rVT-emC3VNvkQLhxMZ9wc1ruY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|211.0|0.69|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PBTTTV-h', 'Au']|['PBTTTV-h']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b01949|V905fbOpiRRfI0wmI1FF6Bc7nmXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PBTTTV-h', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|230.5|0.657|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|V93lrn2HxlaquRJmbW7nnsnBso8H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.15|241.0|0.76|20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903654|V99HHacWqBZMzDtHQbPN7ixADF3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9Pb1.0I3||1.08|236.1|0.7959999999999999|20.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00112|V9G4w90ruwVk6ZyG00j6X1rXIdMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9Pb1.0I3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.071|211.3|0.799|18.24|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|V9Nl8Jyh41_APbGVO7D2UuNkSLlZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.954|245.8|0.57|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|V9Ta1lG5ObJ8iFJW3nmu8Wc6ppRw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.102|208.4|0.711|16.48|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|V9VH3gWei0JFzzaalha37hf3Eid_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -C23Cs2H115I75N46Pb25|Cs2Pb25C23N46H115I75|Cs0.08FA0.92PbI3|1.5100001610130236||||22.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-021-00831-8|V9cB18S4m8b32u32FcPLN-AMxwB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.92PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee01624f|V9iSKHRYGGvGv0Ifrh9l4-MJL6qi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|131.0|0.498|5.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01087c|V9k0NNGlsvwAEg5v2JLzJkFpsepM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C34H187I51N51Pb20|Pb20C34N51H187I51Br9|FA0.85MA0.85PbBr0.45I2.55||1.009|230.1|0.65|15.78|['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'rGO; Zn2SnO4-fiber']|bulk|https://doi.org/10.1039/c6ta04726b|V9vCVNC9YzmDgeuYIgm5N9YlNvnF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.2|0.7509999999999999|16.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800066|V9vEqLRMmfK2mJ7LmPHi8gNXLfwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|123.1|0.574|6.57|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|VA-cdkd_HsGEwltPoYRi5XovX7hf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2b', 'Ag']|['PEDOT:PSS']|['Fullerene-2b']|bulk|https://doi.org/10.3390/ma12081314|VA4BWW-jb1YH6S50aK1GVQ0Yp0Zc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2b', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.29|82.89999999999999|0.64|6.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|VAGTJdfD9yE-5DpvjxVP64W3OBKT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.0|193.0|0.7|13.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|VAONVk-BT0X08BlnfJ2bAxOmtH3m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.884|205.95|0.634|11.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-BTD]3-TPA', 'Au']|['[BMPA-BTD]3-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.025|VATOw7WWmraOY1bvRL7B8ak4zBOY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-BTD]3-TPA', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|149.0|0.63|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|VATq6ZFVenyVoifY0m7_jJPCyct4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|190.0|0.4|7.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|VAZvUwvRfDhTD1kqilfT9Fr3Yob2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|223.1|0.716|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']|['4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|VAjaSMvsB_SFAI2KMCPBJob3ggrq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|60.0|0.26|1.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P4', 'Ag']|['PEDOT:PSS']|['P4']|bulk|https://doi.org/10.1021/acsami.7b10365|VAk6k0J1J3wv5mb8Fu-v91_h1cK8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.845|176.5|0.47|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402033|VAxNr3GuS118XtOTMnw-LGYfmBe7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||14.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|VB3qUOoeDr1kam3TlM7jN9clsPeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.135|226.6|0.755|19.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|VB6KGxxR1rkmP-PRvl4dd4wtF_Tr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.8|0.67|16.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra01894g|VB6nwHxnrBU10-I18_uEq8toKvdr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.830000195134989|1.06|115.0|0.62|7.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201400960|VBCD7zNQNv68AZlxjL4cQqTEV6P7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -BiCH6I2N|CBiNH6I2|MABiI2|1.520000162079335|0.1|4.3|0.233|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'PEDOT:PSS', 'Au']|['PCPDTBT', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180919|VBY5k-EkPDji7ePvmnJbt3NwMTZg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MABiI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.0|0.316|6.3|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|VBZFtbUafgY5koAmwTDloQGm7td-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.0|0.779|18.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|VBbzPvPCaOmLc194WBnu10ah6xde|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||0.912|195.0|0.62|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|VBftmYfEYwOynu35UUWCFVbf9QrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.0|0.6779999999999999|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|VBl4I9uKh_SbOx27WX9hqAOS8_bB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.6|0.711|15.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|VBtjCO3St4go6pCuQMr3Sw-JRkDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.0|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|VBvqZDODBJYeENW2Ymz_rBtqzjcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|106.0|0.43|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941226|VC0k8oDBiypnBBU31Q50u1Ew_aYQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.3|0.635|12.9|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|VC64VnSkoY1OG5u8k6thoLkyX2cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.1|0.626|14.67|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.163|VCE6eUYYt5KNU6gNDCLhQqM4PWsP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|184.0|0.64|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014002|VCM-XCVh_HZOt_nPRwyMdbTDuTAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|172.0|0.64|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02858|VCXFLjOd4sm7kzbMS9supYhbz0_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|VCYQpkVLixJwkuUYdB5pxvX9CBNR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|240.7|0.61|14.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']|['IEICO; PBDTTT-E-T', 'MoO3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr07933h|VCZ737jFml8URE31Zvdjo0qOc0Yb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.03|224.8|0.733|17.03|['PET', 'IZO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|VCm_qVBh1K2vCFyh92M67Hh8Nrv-|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.139|229.4|0.7559999999999999|19.24|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|VCoZH9ZJ_DM2zx1uqbtw5RK79F_u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|VDGBMHoVoHzJHmjm6BjQQRC6siYJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|VDNhRUNcjnVV4fNNTiCwai3We-ka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|99.0|0.71|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|VDQaStqeceYJnmAGow0e0Y9m5Beu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.7|0.6970000000000001|14.41|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12849|VDmQ85LBuhYKmmzjOrNZQmFMTxpa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|205.5|0.6559999999999999|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201602120|VDpVGkAfnr4Cpev2iOECYY0olzLu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.670000178074006|1.07|217.5|0.7340000000000001|17.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9tc04282b|VE3Ysu03rrakyQMPnX5uEQNeuQtb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.908|200.52|0.722|13.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||VE3jtQUKIeZowGz-TIpQpQNeulBZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.6990000000000001|15.1|['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|VE6oV5NO8q5T3Q7U6EGEnzE_fg6h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.4|0.7|12.88|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Er-np']|bulk|https://doi.org/10.1002/anie.201600702|VE9T8BlzEBkg2mPlmToBSctzvCeh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|242.7|0.601|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|VEDqLf23CDc36QhTdqYrPBaBNoll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|214.5|0.76|16.1|['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.202003422|VEFdoZTFN0W-HYtfB6OUCulge_GX|a perovskite solar cell with the following device stack: ['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.06|234.0|0.62|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|VELXioyEm5-dk4Ds8ACtbblnlcJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|244.8|0.526|10.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|VESEKh7UZxge64RCUSDimc0pj4kt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|197.0|0.64|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|VEZjQTAowfg9IiSQcN4bs-vUiaM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.8909999999999999|89.80000000000001|0.6609999999999999|5.29|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF11|VE_5zI_Fv8ctgoaZmGHRqtmH6h6Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|VElIUhfyYPjU6T69NJ7opLRtt-aN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.5|0.738|16.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b03774|VErbpEA6E_b3qtpeP6PjPjKIchLU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.8|0.73|16.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|VF9mNGpqAVAADT7JBt79lwRS_NFd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|222.7|0.759|18.35|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|VFD6bWmi10uYeJ5s5D7CO0djGenK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|174.89999999999998|0.53|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr05975a|VFMo76YFp18KdTEO3-6feiCFP2jN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|221.0|0.792|18.21|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']|['P3CT-Na']|['C60; PDI', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|VFNxAFS6kvwtFxg_lnXRZyZuRrqv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|59.3|0.6509999999999999|4.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|VFU72YO3LRO1IWWx6jtvR9KxVBmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.6759999999999999|132.6|0.511|4.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|VFcJuFI8a2rX91SICY3RO82KVa2c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.3|0.72|18.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.254|VFfllE4wWLsEQT0RZe-lWekrBVTS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|223.8|0.778|19.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.104229|VFlVx0gZyu4WQCJfEXLDumYZkMsf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.987|214.9|0.738|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|VFpLnj6D4hSHWr_NKk2Om6gCHXzm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.911|224.0|0.626|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|VFvMF_IcsLv9JzNVjxhHIzMSQ-NA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6970000000000001|40.8|0.36|1.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['NO HTL']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.004|VG-CYO56TnAaevUQdqRcwjCl50A8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.051|188.9|0.685|13.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b07927|VG2BbYV0_ue69dUy4s763EgMFmcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.95|117.7|0.23|2.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|VGKlqh5YTx44hlHSMtfhklu8cG_s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.28|159.0|0.37|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|VGTBOf1Oga4iFI3GeqAvCpODTSKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|232.0|0.69|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07513|VGZulyNjYN8-2x5Q6QkH3YiaKCCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.6|0.635|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta05288f|VG_R8R8oPKIr_LqaFOC-9fRsVyZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|214.1|0.71|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05254a|VGcYcAvPspEvWs47eKcmR1ccC-dS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.9|0.758|13.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7-Cs', 'Ag']|['NiO-c']|['HATNAS3C7-Cs']|bulk|https://doi.org/10.1002/anie.201604399|VGiw8xHL3pZPk6LWvXiKJcLy5ATm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7-Cs', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|40.9|0.61|1.93|['SLG', 'FTO', 'BaSnO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['BaSnO3-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.02.055|VGvZjdOXEE0Lh705VpvgE6Gdo00w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BaSnO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|98.2|0.618|5.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|VGzn35Dpt8N5Ch0KxqxLJkZ2YYMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.0|0.68|10.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|VH-VpngGnVpbzaTeXXwTRcqGdQ9A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|217.0|0.787|18.0|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Crosslinked TCTA-BVP', 'Ag']|['Crosslinked TCTA-BVP']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201601165|VH1ohypYm0d4c64jCmr_DIHOnuF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Crosslinked TCTA-BVP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|210.5|0.706|13.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|VHDblEqXDHZUq575h_YxsIxwvDWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|158.7|0.78|14.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|VHHCOAVD8iYKi5Njg8XM7BWH_F0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.12|233.5|0.8059999999999999|21.07|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|VHIVsk1GwcsxbucwOjhT5ALrrNzm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8079999999999999|167.3|0.442|5.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|VHKybB5le9bchomKVxQRx3RVgVUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.04|219.0|0.7|18.5|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.08.006|VHMBZHxKI5TUHzhBcB7gqKTtrNdq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|135.5|0.698|11.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|VHSmgMF9mTIMjyDbCmi85htwcjX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|135.75|0.57|9.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|VHW3Ad5gl8ya58u243NgKzyKKOMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|133.0|0.52|7.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201401641|VHh74azwgwzrQxn5YbJ4wt16T-31|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.684000179566842|1.07|189.6|0.6459999999999999|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|VHn6_jWIhlV_PUOpiW_7oK5yx_ql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|153.6|0.643|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|VHs9hnxF4bB_BkYnj9jOPFWSSl4b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|213.7|0.8|16.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|VIDeFeRToksMhn1NBqnOi6XN9LdT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.6|0.7859999999999999|12.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|VIHo6BFrsa1_f8XWSCbuQHyVH5YN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.914|215.0|0.537|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|VIX9aCLkOMe16wrZmze58o9e9_5j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.87|14.1|0.926|0.475|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|VIesbwlFvrBheAbC6fiiGmM3_XzQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|206.8|0.61|13.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b11596|VIh24OC7IbCBytwiMpl-VmiBYSM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C95Cs5H491I260N174Pb100|Cs5Pb100C95N174H491I260Br120|Cs0.05FA0.79MA0.16PbBr1.2I2.6|1.710000182339252|1.1|170.0|||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700607|VIhyDnTMVtg12YUTlxj0AniV6VCj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.3|0.74|18.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5120307|VItlmHvivff4J-Nk8WMRA5Wi503p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.25|189.0|0.479|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|VIv2B25F4Iabpq4wbyV3UXZ64biu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.0|231.4|0.72|16.73|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|VIxPdyaBjRrDnQ2_jlu4QzQLoQvj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|90.7|0.65|4.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/8107073|VIzz7qef8kxocxAolt_PSXErNkgr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|225.1|0.742|16.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06700b|VJ6fJdluyWvNACYqyYsSgs-gAQI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|76.6|0.53|4.45|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201600027|VJ8pvJiz2YQ1kzQV4ctNy0dl32qi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7|1.4800001578140891|0.952|224.0|0.762|17.42|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b01180|VJHRZa126mFJEYfq935U3it3xC4i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|194.0|0.7440000000000001|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|VJO8CLfT_JMCRdJBWnA6z6gQpO4U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.711|44.6|0.36|1.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/2953592|VJZgCtToG-Ch8K3dmcnmUdBM-YP2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.787|131.2|0.437|4.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.08.095|VJbDeLi9FjZxWrsX_NJ0kbozCO8v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.938|212.5|0.77|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|VJdEULqajLYz00d23iA2E_Pk7ZGA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.2|0.78|19.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703054|VJnBTQVcPu5s31TL1ujHCukysCCS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604|0.97|201.2|0.679|13.68|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|VK--UY2DZHkbP_5uAxRnyT3P5FE0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.77|12.7|0.43|0.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1246/cl.170428|VK5L7VLbEZkz_ICPWN7iPVVpDebJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|168.0|0.61|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|VK6nUkAnsLjvvVUK_bec4KsHTcvl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.868|150.39999999999998|0.477|6.23|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|VKYj35oM0ksdxTlK1aW5W1Y5Eezr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.3|0.79|18.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201600887|VKaFqXNlE8G04s4JFecYYmb5VKHz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|209.1|0.69|14.32|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|VKohGfeFYnkOAxwdX-y_IxfnOGAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|147.3|0.523|7.36|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|VKrzZMbt12b8wIZLP_76zj4zvXfV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.045|180.3|0.5670000000000001|10.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|VKvzXgKTTSBoArezRCMXyAhYZwpA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br24C71Cs29H355I76N142Pb100|Cs29Pb100C71N142H355I76Br24|Cs0.29FA0.71PbBr0.24I0.76|1.7300001844718749|1.151|177.0|0.775|15.9||['ITO', 'MoO3', 'TaTm']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c02445|VL3k_Sy40oVOqh1-7HNtg2MZmjJ8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.29FA0.71PbBr0.24I0.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.0|0.73|18.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41560-018-0220-2|VLIUMjwFHmzNFHhDsqsRcI20-l1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.117|223.5|0.7709999999999999|19.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|VLKKS8iIkDb1Pe6v1SW1Il8JqqT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|203.0|0.605|10.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|VLUmpiNCUFeBAWpib-mFhvQGe0fz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.7|0.61|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.04.191|VLYiT9u5sO22lIy4Wut-OEz0o9Ot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|154.0|0.38|5.7|['SLG', 'FTO', 'TiO2-nt', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt', 'ZnO-c']|bulk|https://doi.org/10.1088/1361-6528/aae9b6|VL_ULbaPFRcky8WmDUuLVZlmRQ0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.37|29.8|0.32|0.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|VLaM7_EMM2i5Z8poNr3MHe8i2t_v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.125|224.4|0.701|17.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|VLbqjcGnCgHI3jmnPwPGTqmsrsOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.096|205.0|0.69|15.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b13423|VLebJNe-v45Db5mxiPSktfzNl4IA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2600002409863795|1.35|66.0|0.73|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz501237m|VLfY8DdyxT0Ybsngg7xnpZ1G6mHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|181.5|0.426|6.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|VLzErZB34kXOEcDWCuKOq0H1ZD2h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|227.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|VM9btAhSQqXZD3tjJJ7okC4QywQu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|162.60000000000002|0.522|7.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|VMYZqjCGDjDVjcKax0lOkSniQOai|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.05|221.5|0.742|18.19|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|VMeCcRd3mHa0nILYAnV6ClqfM7_h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -Br3CsPb|CsPbBr3|CsPbBr3||1.594|74.80000000000001|0.851|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|VMfayYSZZRH_z5S-1FssW_th1yP4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br25C100H588I275N112Pb100|Pb100C100N112H588I275Br25|FA0.12MA0.88PbBr0.25I2.75||0.359|72.1|0.362|0.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|VMkG3l1aFUQ6SCBFLSwtojucRAtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.12MA0.88PbBr0.25I2.75. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.89|160.2|0.5660000000000001|8.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|VMmFh_oUcHoyN2VvijXuVLN63leg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GAMA4Pb4I13||0.92|177.10000000000002|0.81|13.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900375|VMmuNUzVc5ZN-XUhdRteFPRF8iSo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is GAMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|199.4|0.61|9.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|VMrfJddRL-aKP485sttTASSq74i2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C8Cs2H40I5N16Pb10|Cs2Pb10C8N16H40I5Br5|Cs0.2FA0.8PbBr0.5I0.5|1.850000197267612|1.34|156.0|0.81|16.8||['MeO-2PACz']|['PEAI', 'PCBM-60', 'AZO-np', 'SnO2']|not processed|https://doi.org/10.1038/s41586-022-04455-0|VMroN0h46_y8wUF5HJpWr3HG0v_n|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|185.6|0.56|8.07|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/jp512101d|VN5jGyNjKnPRFzdgBkNxNYScp1ug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.061|207.3|0.775|17.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|VN9DTDWq4LclAoSElXtga-etQOqT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3|1.6300001738087604|0.96|180.8|0.68|11.8|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.047|VNJvLK_j8qyt9QbxOuN9eeVYFpAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -Br47C100H517I253N183Pb100|Pb100C100N183H517I253Br47|FA0.83MA0.17PbBr0.47I2.53|1.6100001716761378|1.1|224.1|0.705|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3']|bulk|https://doi.org/10.1021/acsami.8b16358|VNKbMNGbxhETIdadNW8d-vz6XL-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.47I2.53. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.2|12.2|0.46|0.67|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'TPD', 'Au']|['TPD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz400348q|VNSjauMaU8XCWa0HnUA6z9PNvVty|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'TPD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br2C10H60I27N10Pb10|Pb10C10N10H60I27Br2|MAPbBr0.2I2.7||1.02|204.2|0.72|15.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1166/jnn.2018.15360|VNnnXKMATGy9WQBIEv0QdaS2ztzU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.2I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6020001708230889|0.85|187.0|0.639|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|VNoVexJLbfGIhIleeOudYyM1UaP8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|218.6|0.57|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2D-PT', 'Au']|['2D-PT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.008|VNoiLu7Bpc6gHBk_Bqhin8qmd-pL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2D-PT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|103.0|0.47|2.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-8932-4|VNsfd4uP9QQ0CoHsAgmLk6YCmZjM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|144.0|0.4539999999999999|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201402461|VNsqZGQZcrHoWHo5ClgubbkBRsTp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6Cs2Ti|Cs2TiBr6|Cs2TiBr6|1.8000001919360546|0.89|40.3|0.631|2.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.01.009|VNutncUbX1duZU5abUVk104GSOvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs2TiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|92.0|0.5579999999999999|3.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.033|VNxDlR-zOtaTIixK6s7Xo8iEC2dM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|219.2|0.75|18.16|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|VNzQ8uxUaYk6v1BgvF81w6Ruq_0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|181.3|0.68|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b22285|VO-Kg0Qu4ITff54kObOMIlvaivU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3|1.280000136487861|0.633|248.0|0.389|6.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04840d|VO2VwUCf5Xag0Nm86KmjcxMDvwXG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.04|234.7|0.72|17.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|VOD4Ji6RLuaUywMlMz7rxoLs3nF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.11|200.9|0.688|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|VOKuSGtNENO7okdlncjd3pzHzHQg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9|1.6000001706098266|1.0|215.4|0.66|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|VOMQ1ij0BECYhRiyj5hbDlf6ICh8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.067|229.7|0.6779999999999999|16.62|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|VORcthAupgwzM0MW37ySMOXnheWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.8900002015328567|0.95|109.8|0.449|4.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41598-019-53609-0|VOTLFsfwYkhq_rb_D6dvAa216DGB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4||0.97|25.1|0.55|1.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.9b00972|VOXZf5XhOsv1DZxbDm4SNFfUDsj4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|184.1|0.63|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.10.018|VOct9pqLyh3bKaLO1G41JP4B51gi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.04|193.0|0.63|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']|['X2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|VOfu6tEQfv2n4D4LdGocJY_cqRsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|162.10000000000002|0.42|12.6|['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PVP']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|VOnLJJS4pvmua8UoNECmx5S0zi-G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PVP', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.09|248.1|0.763|20.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|VOyOVs-xfSuDFwwnpSvHaefYGikr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.029|185.68|0.797|15.22|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||VP11P-xLz3H6iM0Cvd29cfJac0WN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|93.0|0.33|1.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201301047|VP2qJrdXtnjxV__3mlhhIo3LOnfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|203.0|0.8|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|VP3cRLwG6x6JFypZzpnpdA0prvtR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|135.0|0.649|7.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|VP49PX2LGHd87jLlDJiWeu3TBTEX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|224.9|0.722|18.38|['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NiCl2']|bulk|https://doi.org/10.1021/acsaem.9b01009|VP9piT-kWBKvaLFEbqPSbD3e-Ps5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5400001642119578|1.029|225.6|0.62|14.39|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.energy.2019.116396|VPD1bhZcAx9DbM7HMxMitD3L4VUK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|177.10000000000002|0.6940000000000001|12.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|VPH11g1IDtvWo5zVUGic6belaYBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.6|0.48|9.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|VPISefgJ_AWtzjnQgZvYhoEl0f-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.065|220.8|0.75|17.6|['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|VPY9xtZMmrmHMCGq-vtrhHciVrJw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|9.4|0.79|13.46|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2018.10.009|VPnwsNMt23KvWsHC889kXw3Duwal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|VQ5KPA8Ztwbq0vi99xUKDI58Tj_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.9|0.602|13.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8sc00731d|VQRQ4ou0ZeChby54WylJE4GBP_ic|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.01|207.1|0.669|14.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b10979|VQRpyD6ZV94pAFLwipiFA8VQUmqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|209.0|0.68|15.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5EE02155C|VQYyW9q7l6dgC2EdSGC68iF8Csvl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6300001738087604|1.07|214.0|0.76|17.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|VQcfe-1aXpDjLZtws4x_6aUUNN0M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|164.0|0.64|9.3|['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'C-PCBSD']|bulk|https://doi.org/10.1039/c7tc00966f|VQhuYzigv0S3ltz4_yLflSzO9J7s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|194.9|0.61|11.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700480|VQiQ9xyUszRHMDZFa6BWWHbJGQZb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.014|215.0|0.741|16.06|['Y2O3:Eu3', 'Au-np', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-07218-4|VR-xv2SQCC3_LSb7axIHfDDLPoXu|a perovskite solar cell with the following device stack: ['Y2O3:Eu3', 'Au-np', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.105|143.6|0.38|6.06|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|VR7e-4M941w9lF7v3W5iob3w7AiG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.01|167.60000000000002|0.67|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|VR9FAn9PoD_Z5H75wVr07Y72bkFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.07|198.0|0.56|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']|['Al2O3', 'CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|VRG45TAbowoP3ov7b5ElY2kpoAzJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.145|221.0|0.77|19.5|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|VRGM5tk7eRCNzmhQPtMjpe13gJIQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.496|47.08|0.6729999999999999|1.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|VRMRRCOPVGjK4fwatxAtYXE4xewm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.2|0.7|14.7|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|VRVF16bGP0xV1vHOT_j9l_IptMBx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7000001812729404|0.99|149.0|0.68|10.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201400960|VRVYk2txiGL7RtwBdx_kbG75-NCk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.3300001418194185|0.7|218.7|0.67|10.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|VRje_aTk47uHORLsoE0GF-vbVT8y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.95|148.9|0.6|8.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|VRjxSjrx0m6pb2UJgKuLyh_k1D0F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|170.0|0.73|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|VRoGUYIihWWBlVia0vdQWk36NdK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|176.5|0.6|9.93|['PET', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c7ra01110e|VRrQLe-DWmSaS88b0nHv26G0_19n|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|195.5|0.69|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|VRs3n_EFQM3fBD47docyGWL9iMmm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.95|184.1|0.66|11.48|['SLG', 'ITO', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|VRsai-M9_joQALTfXWlz_8SkNEDj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|172.3|0.667|11.46|['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01004|VS3vWZ5zhqxGK1_yH_ZAuwd3bslU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|194.4|0.73|12.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp02705e|VS5WgcwY7iGe9gNEnrYa9ogukP4C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.114|220.7|0.75|17.1|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|VSPm2jsWPXd546YQxoYZ1IWNX70p|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br45|Cs0.1FA0.76MA0.14PbBr0.45I2.55||1.0|181.5|0.71|12.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'CS02', 'Au']|['CS02']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201915022|VSSc_Tl4zI93HQ1RaS-gzPJM_rcG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'CS02', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.45I2.55. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.3300001418194185|0.73|276.0|0.653|13.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b03662|VSWpXusSxsa8PnxHVkIkpjwJSnxh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|103.3|0.48|3.42|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Ag']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.019|VSbxhoegIgNx-4ZLhIjtFi-x6I6p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br243C100Cl57H500N200Pb100|Pb100C100N200H500Br243Cl57|FAPbBr2.43Cl0.57|2.360000251649494|1.55|67.0|0.72|7.84|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901683|VSecIUTHpvSp3wlEy7d2hmyhWDnJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr2.43Cl0.57. -Br102C191Cs10H987I500N350Pb200|Cs10Pb200C191N350H987I500Br102|Cs0.05FA0.795MA0.16PbBr0.51I2.5||1.139|239.0|0.7140000000000001|19.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.051|VSgwzaVBMpwnYe00kPDPVaz9owXH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.795MA0.16PbBr0.51I2.5. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.13|228.0|0.77|19.75|['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']|['NiO-c']|['ADAHCl', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03131f|VSsJOiN-yHde_oUcfMES8lZCBZ5F|a perovskite solar cell with the following device stack: ['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|VT5o1xxjJrhgNTCab24hk7qB-Eab|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|229.0|0.77|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06771f|VT6gSotEIugrk6mS2JIVq000w_rP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.2|0.7390000000000001|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|VT7wcUP_ZJt4WiqmUlmXAEFK7L3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|229.9|0.76|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b11229|VT88h1tg18koDGCQgat5OfTQQGWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C34H135I60N19Pb20|Pb20C34N19H135I60|Aa0.05MA0.95PbI3||1.17|227.3|0.777|19.9|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.202000197|VT9Qv6Rm9f0-eu-6Byztmd9WsOrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is Aa0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|212.0|0.71|15.75|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|VTEEjm0FrbxekdME_KhfzvYtOWom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|VTEgoXCZb7d3JRq7Iblv2jH_Tzke|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|197.7|0.727|15.32|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|VTKE1rJBbTiDYS67i1U2H20K3NZt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.764|158.6|0.42|5.04|['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['Fullerene-SAM']|bulk|https://doi.org/10.1002/aenm.201802085|VTPAdXHuqZBVrKGnl6Iqn13q1m9c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.04|229.5|0.6509999999999999|15.23|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|VTW-ORbvzhTp00zXcrp3M9ZuwLmO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.4|0.72|15.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pm-TPE-4DPA', 'Ag']|['pm-TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|VTfrkJL8FWDxQefXdLUBZRgRsNF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pm-TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|192.0|0.67|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'C60-SAM']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|VTgzn4iVsshPHw5fZSYzXkpuAMw_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|181.0|0.7|12.6|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/s41598-017-18970-y|VTsrfJFJgIj4buIU9c08vPwq1DTq|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.727|144.0|0.617|6.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta01310g|VTufVwaX3qjfCUrVsz0eg1ib9poa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.57|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|VTwN1shaIomdhJLIWrx2stCVxEzX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|201.3|0.73|15.43|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|VU1O9F-DIHmTG_42kg1L5ECtg17m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|154.0|0.71|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600210|VU4sdz5XcbaUH4c-K92DOJOXgf8v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|162.10000000000002|0.631|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.116107|VU5aZ0Gk0ybtRL6PjbCDs-Qpq6yD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|211.3|0.38|7.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4956436|VUA0NMgSTDGLwPMJdGugzg9r6qtq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5300001631456466|0.98|215.5|0.701|14.79|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|VUBPHjev2qdnUmVnRK4oY8k8Uit8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|202.7|0.755|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|VUF6_YTnNii6vHc4FUkr5el5IUhw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|146.8|0.67|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1039/c5ta08015k|VUJG9j-8EzbHLnwfI224SUfuugsE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|143.6|0.625|7.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|VUT8r6OzzY63fX8XZy1VaP5ntyM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|206.0|0.72|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|VUYcaojoxr5x9MWKrKomXrfl8Csl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -Br27C100H515I273N185Pb100|Pb100C100N185H515I273Br27|FA0.85MA0.15PbBr0.27I2.73||1.08|216.7|0.632|13.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5087098|VUfR6SpRGzk3jQmv-E-dKw4L_gQ0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.27I2.73. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.393|202.58|0.499|3.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||VV3mVZyn9F_jktDrKQ3wSPAWZ-Ul|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3979999999999999|70.6|0.423|1.18|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|VVBcAXgwsm84bWOap7L3hXb-Hc0p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.0|0.75|17.6|['SLG', 'ITO', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['AZO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.035|VVFjLmWL8ihiVzVzIrI5IdsKyLQo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|114.4|0.66|7.02|['Ti-wire', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au-np']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00462a|VVtjxEaZsTI7mY9X4yieflEXrkfH|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|142.79999999999998|0.491|6.94|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|VW7af4J9M6HXXsbonxLDWihq9pmY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br19C100H600I281N100Pb100|Pb100C100N100H600I281Br19|MAPbBr0.19I2.81||1.03|169.89999999999998|0.71|12.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'CIL']|bulk|https://doi.org/10.1039/c6ee00612d|VWCAYKrGO2orPPjS6nFwR-ImK_6B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']? The composition of the perovskite layer is MAPbBr0.19I2.81. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|179.1|0.62|9.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.02BF08|VWJU4o14WyBGwvC60rxQG3Z4ZJDp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.0|0.7|15.22|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|VWPc5XZokPocGKo_ssMzoQl2ipND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.83|139.0|0.59|6.8|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|VWUntKFpESUsvbvcvwwkNDDg2u6n|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.64|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.036|VWXOLMogE53ll-9Ryg7CKUZeLqb_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C17H38I12N5Pb4|Pb4C17N5H38I12|(Anyl)2MA3Pb4I12||0.8|79.0|0.73|4.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|VWYF6zMU0Yoz7mEhazD9MgmJlMVL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Anyl)2MA3Pb4I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.36|69.9|0.49|1.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201401229|VWcI_Ha8eF_NZkGq6kU0PCYSvRkS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|222.2|0.72|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phosphoniumfluorene', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phosphoniumfluorene']|bulk|https://doi.org/10.1002/chem.201800460|VXJbg_1om_OvuY3vtiWvNv3sxug7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phosphoniumfluorene', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br20C18Cs2H93I40N33Pb20|Cs2Pb20C18N33H93I40Br20|Cs0.1FA0.75MA0.15PbBrI2|1.7300001844718749|1.13|194.0|0.7|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'ITO', 'MgF2']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|VXPJpkKTJpUx4A3bdtf-qTYAfkUu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.0|0.62|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06771f|VXQfR8K-xCw8c0-TD7bcDfJoa20O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|231.0|0.765|17.3|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|VXUGnrbClPRXMdjaHvh8exrGA08l|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.0|0.727|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00850|VXVZQcmCy5UW4sLWeQjIRd68QyZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.0|0.74|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|VXejhHZs76qaON3ouK-ao5zrhxkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.700000287904082|0.515|96.0|0.55|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1007/s11051-017-4108-z|VXfB7IfE8zYH1zKDxXOIumEUWxys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|221.4|0.794|17.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|VXgvfn_Z3vXtG0JrfNiVPaAibmxY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.931|190.2|0.5870000000000001|10.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.04.099|VXhTWJy0y1tUDVRHzjnKLvJN6uHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|212.3|0.767|21.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|VXql16SWvsSwpbEts2Cm8s0niGsa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|203.91|0.66|14.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|VXy_rA1Wxa5zJ5REI16i2cKvPbII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.19|209.4|0.816|20.31||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|VYiyTxCVrChqazb-fqwUr1As4l2T|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -Br100Cs100Eu9I200Pb91|Cs100Eu9Pb91I200Br100|CsEu0.09Pb0.91BrI2||1.07|139.5|0.735|10.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.10.008|VYo-0GH0xxqq0lH3SoU41huTWrX0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsEu0.09Pb0.91BrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.2|152.0|0.7759999999999999|14.2|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900265|VYoeUsMsRIFHWOdI0mW9aR03aKE8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.0|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|VZDfUTPHQJ9XQDA6ZZVNctUKWW5Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|220.0|0.7|15.9|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|VZgI7lHtPP-wbQgJ7Ru7DwNJDO5E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.3|0.77|17.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|VZp52JaLjBzr40jFSXtuU8upgROA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||0.99|195.0|0.63|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|VZp_o7NBadRuI3RtmomSDWuuVg9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|229.0|0.72|17.1|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|VZv6gppGVlKMxIRULBKEbK9MBH8u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|199.4|0.613|12.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|V_1wdpWMde5SetWvO4fNx5v0xI3z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs; rGO-flakes', 'Spiro-MeOTAD', 'Au']|['MoS2-QDs; rGO-flakes', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|V_5v5gxCwH3Y14-1SNgAkx7gdoyS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs; rGO-flakes', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|236.8|0.62|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.01.021|V_dPvya9SeQ7SZNT3jNf4MgPAkdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.12|177.0|0.58|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|V_ka_MbkEHeXZ6q4dnHJCRIJvxDT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.09|223.0|0.754|18.29|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|V_kjeISlXit-K43-ttdU84WFbC3i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|203.9|0.72|14.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra10007d|V_lWJoKbP2PbpNOWHwWCIzctqN5i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|143.7|0.56|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1358045|V_nTcyiZJUK91auLo3mUyBsXt6gf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|0.8059999999999999|132.89999999999998|0.54|5.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsomega.8b01589|V_scAW49eRYg0kb826jdNOsnAD0q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is CsPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.15|240.0|0.74|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06709-w|V_yY7kTHlCPitXp9pZySfQZVeFJr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|213.0|0.61|12.8|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|Va4hHb7mT5fdxePtkuRt8UyRLsHg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.500000159946712|1.14|236.0|0.76|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|Va5p-uTLKHZzQnn7Uzkvpoq1xkAx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|192.0|0.742|14.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|Va9Q0WoqtCB24vofLmyhIrWCkzGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.0|0.675|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.03.005|VaD8BVF94ujWWLwfAOudtxv7eJNh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|208.6|0.72|15.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|VaFNQzeoHa3nIELunk9sr__l4GgO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.7240000000000001|134.55|0.622|6.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|VaKcCmBGtmTCtXp6ttFdrW68UW0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|173.0|0.64|11.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201500669|VaRZ321ZqjybXkcA2GIEDRIj6bsK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|196.6|0.77|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2018.05.025|VaUubXw7K6qmDqpLq7U21vRl4AII|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|54.5|0.59|2.7|['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06011c|VaVZdCbOMPZ_wFzwdGXgSmte8zRd|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.3|0.69|10.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.08.013|VadeWRL41UpFa0W_V1Au4sbtNVLo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|198.0|0.79|15.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01651d|Vakuon1sWMsx3Xk3i3jFHSbI8OSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.97|178.0|0.605|10.44|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; PDI-DA', 'Ag']|['NiO-c']|['PCBM-60; PDI-DA']|bulk|https://doi.org/10.1021/acsaem.9b01154|ValpKyu77ZutZDa4krYT5SU6LR_V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; PDI-DA', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.6|0.72|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01360k|VaoxtR96ME0JrzSfyIsHYxaqyljn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.4|0.77|14.73|['SLG', 'ITO', 'NiO-c', 'Perovskite', '2,6-Py', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['2,6-Py', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta04851c|VbDOZ_nmGbxS2pvbZIfDh8XfT3s9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', '2,6-Py', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|70.0|0.45|2.1|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|VbFAJHmztuSgRontpWnwNABnaB5M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|200.8|0.59|10.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.11.025|VbGPFZYPc9I68e3jT0TkG8dmK5eX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|VbGdidXiTYMWrMGjCDV3u-PtkeaZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|184.7|0.65|10.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|VbH634A7smCtabouDT4t2p61z7sv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|175.0|0.727|14.5|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|VbJPRn1r9WD3etpNiEnWdb0US67D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|205.0|0.67|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02858|VbKzuS-qukvly_is3BeE0PxT4K35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|235.2|0.7509999999999999|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201800568|VbLB7J9E4Vc2h2s5HT1cJkUuOOOw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|188.22|0.492|9.51|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|VbML212JJfXHK9IOCeKlNPTqWdcj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.97|223.7|0.562|12.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OE.26.00A984|VbMa1jKNe7z8-iaAw56ajItqn_uX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|146.0|0.52|8.4|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adfm.201905163|VbYCGENnGGGQZGo8kb7-siE8gZNk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1||1.13|222.9|0.68|17.23|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta12561a|Vb_y1kP3q7jxVNsWTmPa_i_rvqaO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.1|0.67|13.68|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c8ra03119c|VboiE0nVUeNsj_vF1cl7gmlEkuH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|206.4|0.5720000000000001|10.05|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1063/1.5004627|Vbql5rsr86lb1IYBSLkdGXchEmW5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.16|228.0|0.8059999999999999|21.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-019-08507-4|VbwrXyiUzglJpph8pzKFP9hqtfEI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.15|140.8|0.69|11.2|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|Vc53rDdtaFDfaI04Vq2Ts0lEwlG7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.89|177.0|0.76|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|VcE_lbd8OHZksrIg2EpDvCCqjAh9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|194.6|0.59|8.97|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.161|VcN48dD_uP7GqR40t3UJI0prpsd7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|181.0|0.53|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|VcZ0QcsYybTrMzLf2aAL4CRh8Rfz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|218.9|0.794|19.98|['SLG', 'ITO', 'NiO-np', 'NaCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np', 'NaCl']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201803872|Vcjdv69II7HJsJnLOvBWYPpEJ5wF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'NaCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.11|246.0|0.8|18.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|VcnbfpxaYowqUbPr5McL8s7UEkOQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.198|228.8|||['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|VcrErp5a-bO2i1wEem_AXDjO2xbh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|125.0|0.5|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|Vd7_33SmMmZL4t1NT5CAu_nNXuNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|0.87|180.0|0.626|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1872-8|VdFtQiNZYdPJa3Fpo0MFXGBXqTXV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|153.0|0.6|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']|['DR3TBDTT; PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|VdR1WVDvl0vTDuSuJqGtVx8Togn2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|243.7|0.66|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta09604f|VdRAfRReQA7Ikfz1JtzjCYDM0unq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.74|148.9|0.69|7.6|['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Ta2O5', 'Spiro-MeOTAD', 'Carbon']|['Ta2O5', 'Spiro-MeOTAD']|['ZnO-mp']|bulk|https://doi.org/10.1007/s10854-018-9273-z|VdZ6zT9WePC97Eg6oxTTwt01N5lA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Ta2O5', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MASnCl3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|140.0|0.581|8.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|VdaY43CrOoEyLTDHpIbzzSTS4Qht|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.7559999999999999|18.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|Vdbloc5k3hT86DXnLUKCLYI2iWuF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.15|194.2|0.778|17.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ra01501f|Vdfnt3qdwdnhEZKmnr5cDDMQTvZP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|189.8|0.53|8.4|['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|VdgcqSyCn3n6Vn_ZtObDpnQMKKq4|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.741|166.0|0.65|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|VdjLar3YgoCrHhRhOYEB2Dr116HC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -Br65C95Cs5H491I235N174Pb100|Cs5Pb100C95N174H491I235Br65|Cs0.05FA0.79MA0.16PbBr0.65I2.35||1.01|202.0|0.705|14.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/pssa.201900436|Vdtzxw4RNHdjicj8H5I8eDc_j165|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|184.7|0.644|13.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|VdzENzYYNka-zZoKJojFCXOxsKQb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|209.2|0.65|14.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|Ve06NYPMfc6BE8nTNyxPlqLzu9jK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|222.0|0.68|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07369g|Ve5loIyZ_3ygkNvt8j8G-h3nUufA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.986|113.0|0.466|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8se00213d|Ve7n3oOBsvlDWyp51YdIrB1hWP24|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|167.10000000000002|0.65|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|VeBglb_PdKojt62WpxUcEaJ0Gpal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|214.0|0.727|14.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01118|VeBvONlaoRJgaROKJ2GXvRMcQunV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.012|190.1|0.63|12.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|VeFW82lqhDeMsoajnElprkWdjJX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19Sb|Pb19C20SbN20H120I60|MAPb0.95Sb0.05I3|1.6300001738087604|0.94|152.0|0.51|7.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|VeIe5DN_ISznpk-S5DLYMowVbLPF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.95Sb0.05I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.164|231.9|0.76|19.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|VePFupKi35LV3cgJB0p6X0sU6i62|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|220.2|0.75|18.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam6620|Venu3378HDGytKQ3TLsjRi_GdSsi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C20H101I55N39Pb20|Pb20C20N39H101I55Br3|FA0.95MA0.05PbBr0.15I2.75||1.11|231.7|0.76|19.62|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|Veo6LssvxciCeLj2od1y_3zQfMNs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.065|204.5|0.762|16.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.070|VeprXPGU3l23-KT115cLILyQWtmJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.0|0.71|16.9|['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; C70']|bulk|https://doi.org/10.1021/acsami.8b11049|Vepvhg-W1AyQlxJh46N6Zdpz4UYP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|176.0|0.45|6.7|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|VezmA0_SnMB4mcWgk7T_v5U2AbuG|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H30I45N5Sb6Sn4|Sn4C5Sb6N5H30I45|MASb1.2Sn0.8I9|1.6500001759413832|0.56|83.2|0.58|2.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|Vf7bqCJYApuPFhpoOk0J3Y63EAU9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MASb1.2Sn0.8I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']|['TTBCPE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600555|Vf9lyAAYHvylBodumq_en7S5SAcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|210.1|0.76|16.35|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|VfAvpEXF51K4AQfep8Z-hfZmbfhP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|150.2|0.67|9.0|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1117/12.2217737|VfB-Us5iZZYiuLW03nIKdr8CtSgx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.08|218.6|0.75|16.6|['SLG', 'FTO', 'TiO2-a', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800993|VfERdBq6Ek1UAzfEYF2a3dIp9MXF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -AgBiBr6Cs|CsAgBiBr6|CsAgBiBr6|2.3900002548484283|1.05|20.8|0.59|1.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.202002342|VfL88rzyBOWmG1vR7TZee9P0rang|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is CsAgBiBr6. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.94|209.3|0.52|10.23|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|VfQFck5facCSiB9H2kxDyjvLK7Bq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|171.0|0.6859999999999999|10.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C6TA03755K|VfiGpeEu37hhXNd8fxr9TYgK3Y42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.9|0.784|19.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|Vfj7_8dAcgpFnUUXEvL7iuNADtgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.05|226.8|0.61|14.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.237|VfnsysyToWhufUmBM1sqMIV-auAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br18C95Cs5H481I282N184Pb100|Cs5Pb100C95N184H481I282Br18|Cs0.05FA0.89MA0.06PbBr0.18I2.82||1.101|244.4|0.754|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|VfnuUetEUNqo0mHxNhjLljYOir-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.06PbBr0.18I2.82. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.5|0.72|14.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|VfoUwmWZe8OssGlLmqOcnd77KV_A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|86.0|0.63|5.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08656f|VfqkHd7OBTHzmIKloD-9sLurDK5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.4|0.759|17.73|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|Vg7ozSwA3xNjlcSNxkrpuBgkEGzq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.12|220.4|0.7609999999999999|18.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.10.143|VgCwM77NsQXK3TU5zfZ82OKw3g3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.8|0.7240000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.09.014|VgKl3mSTgaM6CV7ld8kGLQFXLueP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.388|187.08|0.589|4.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||VgOTVnsjCvjaeTRYfhNYfC2tuxt_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.0|0.79|17.1|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|VgRrHjSRqe5tV9U6UixbJvllGsSY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|229.4|0.789|19.71|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|VgTdRccsoHbndyIR9LQcI7tvSWxq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.3|0.648|15.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']|['NiO-c']|['bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|VgWUBN1rEn_bvExFDlYoAIEEeNHo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|137.0|0.49|6.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|VgW_G3SvIJ2L1kRZ345mdivSXhbo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4||1.13|185.0|0.77|16.0|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|Vg_O-z0Xb3HtnLsKYfjym9RDC_d7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.02|240.6|0.71|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910471|VghMyP_mW9OWtAWMcAglhldYbEox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.0|0.73|16.8|['SLG', 'ITO', 'CuI-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuI-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr04288k|Vgiekrl1hYygtrL_9HC4BRuOEEFM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.436|213.5|0.649|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|Vgnp-RY9GeaNtg8L6OcbvSgJD0YC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|115.0|0.583|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201800002|Vgo8XLJvVUj9pNmL3h0PxC888qDO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br151C100H505I285N195Pb100|Pb100C100N195H505I285Br151|FA0.95MA0.05PbBr01.51I2.85||1.01|232.0|0.795|17.7|['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.018|Vh5JdV0PSlnx2h0aYNinq__KNLk4|a perovskite solar cell with the following device stack: ['SLG', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr01.51I2.85. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.07|232.0|0.81|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41560-018-0220-2|Vh7Km3XVfvRah8OAEfkVxLWY83iZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -C33Cs17H198I150N33Pb50|Cs17Pb50C33N33H198I150|Cs0.34MA0.66PbI3|1.6520001761546457|1.05|220.4|0.74|17.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04501h|VhILuFVaXnyQyP7hAS60GUYZBe_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.34MA0.66PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|222.0|0.76|15.8|['SLG', 'ITO', 'PVBT-TMA', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-TMA']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|VhIO9S3an5Uq9vSBEE5TPunLl6hw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-TMA', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|160.39999999999998|0.75|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Au']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b18200|VhKRjp7fgGpMdnyHptfoVfnfEWP6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.2|0.732|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08565a|VhQ8S4rRkV7HbUYvJqqzna9x7y8X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.723|15.64|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', '60']|bulk|https://doi.org/10.1002/adma.201601745|VhX3tU_atYjxuRwyGFm66y6WNJhK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.85|76.0|0.29|1.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|Vhg0LmBhgTCua4Z6waY3ThWVLJmq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|214.8|0.71|12.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp02705e|VhsQ6IbzZZ85rThQMX6uf8HttGn2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.492|27.7|0.6920000000000001|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|VhtJsmN2fMg0_l--urTCYf0dQ7IW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.75|40.6|0.32|0.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01855|VhzUWV6Ooywbo2_yh9Sf-79otgjf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8190000000000001|149.0|0.63|7.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|Vi0N_vhqij8uUeK95sFQsjv4ufpd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.035|236.0|0.7|17.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.202000782|ViCSwxFUezrWaGTqxI-9iKhiOHAw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.95|119.7|0.527|6.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201532944|ViRHDKZil8s6izQ54bmKCkjXmFkv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.5|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/s41598-017-18970-y|ViSaG0ivd1kKrwjpjqhQUSNHByPB|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|ViXrs_SBx6J4e8_eYPp7C_Vcb86g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|189.8|0.7390000000000001|14.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201900824|ViaJZ77-pfE7JunjzqALAAsdDVKI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.159|51.0|0.48|0.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta02835h|VisYY-W160muSB90NJm_rx9q11OK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|168.4|0.79|15.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|Visk6h2klOPbIxvajXjK-3TaOcfk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.098|225.3|0.713|17.77|['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|Vizs32OXCb9YExOSP28ZM2rKZH7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2000002345885115|0.882|7.7|0.32|0.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801322|Vj-Qe6OI0lDxIdGLdhVlEIsgxzlm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|||||11.75|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|Vj1GLvR3ht5hql5itaigUep46xTY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.845|186.0|0.551|8.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|Vj78l0KPiRlIF9RoAlDwPvEZ1kWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.051|185.9|0.48|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FePc-Cou', 'Au']|['FePc-Cou']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.01.004|VjAGg7UjS4-pW3pjg2DiouwLkz47|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FePc-Cou', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.71|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|VjGJJozT_IcEojJ4jdj7Ra72kcVy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.633|64.7|0.377|1.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2016.09.003|VjYw7efujXye-JGK2uxk2AZTX6_O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|206.7|0.6679999999999999|13.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|VjbdcJi14HrtC3Os4tz-oOCiPqG1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|182.6|0.605|9.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.062|VjijbdKDNUITzXb1Ik8wfNkqprg_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|VjjWq95cjMjyHqxKpOQJAvsVJ758|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.1|0.75|17.66|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|VjjoOKcm4C4xLnqjZHWmVba5gtPQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|150.0|0.2|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']|['C6TBPH2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1882-0786/ab4aa2|Vjti09c1nz5XhP4y2e6pS281I_Ju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.042|221.3|0.679|15.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']|['Ome-DPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|Vjv98Y-uj0Ic4H3FDhWQ_PMKWado|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.14|243.0|0.72|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06709-w|Vk56wqeN0E_dxeFrlJPSwuxyrgCJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.01|199.0|0.73|15.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|VkHAMxtm4zKa1yGm-8xNvmcAOoAd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|174.8|0.61|7.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta03796d|VkQCwofi7E-CmlXhSJC4XWfPjoTJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb12Sn8|Pb12Sn8C20N37H103I51Br9|FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55||0.87|264.5|0.7909999999999999|18.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|VkWTnBJsR2ouQrHD4rZh83X1LGEo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55. -C13H35I7N4Pb2|Pb2C13N4H35I7|FAHA2Pb2I7||0.635|28.6|0.546|1.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c7cc00921f|VkaGlC_RvUeJHAjlvEUqRMWyajH5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAHA2Pb2I7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.93|175.6|0.62|10.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|VkgK4nuZzUSiunIoKKw50PfVicQq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.6|0.62|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|VklNjEr8NxlNMX1i2Bz90Xf-KxeO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.7|0.644|14.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700217|Vkr_yleRJdpdveoWLJCjtAsvs6B1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|231.1|0.765|18.16|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201804692|VkwCBQJ1AMlYw0FwxUiRfkRN2BdO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|200.1|0.7|13.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b08536|Vkz2ar0bUyZLXN9yApHmcp7uEd3h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.95|173.4|0.66|10.87|['SLG', 'ITO', 'PEDOT:PSS', 'X-OTPD', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'X-QUPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01479d|Vl1OBwAtsJg4kCdllEo0W-hDV4BD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'X-OTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58||1.11|214.7|0.775|18.3|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adfm.201908408|Vl9wJX1fG4zulztqs70WwRJrLqId|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.961|208.0|0.726|14.6|['SLG', 'ITO', 'Au-np; Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Au-np; Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201803200|Vlf9u__dxRuMB5F6wybplfIXM24C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np; Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I||0.82|123.0|0.57|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nphoton.2014.82|VlrbqSPih4mRLbOkevUe1B1umkyh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|118.9|0.349|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|Vlwo9cg7UOIvY1Hk8xEEibQ1kDWf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|0.99|209.0|0.691|14.4|['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|VlxdmXb2PVFOq6Q6du0JtCUdsjPD|a perovskite solar cell with the following device stack: ['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.146|226.9|0.7859999999999999|20.43|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|Vm0_cwe3lk9K6V3ncdiVTuekEtlB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.0|0.55|11.8|['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; C70']|bulk|https://doi.org/10.1021/acsami.8b11049|Vm1OFiCTSvxScXp44ObvR966eG-r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3||0.82|139.0|0.534|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|Vm8Y8Y3n4D1LHAz8V3QejbVmxn2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5840001689037282|0.78|146.0|0.599|6.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.033|VmBpFMaS14N-IGVKcbbKOyaMQQny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|239.5|0.703|18.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|VmD5oFFJjV3Wy8pYWrX2_uujh4Nc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|177.7|0.349|5.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.136822|VmFCpwVRf5TTOPl_syXEzoi_DoD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.7|0.7120000000000001|16.55|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|VmIw5Ov2B42CRn_LxcPBcXhCE-My|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|192.9|0.615|10.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta08743k|VmK_vsggcnv4BUkdmFKuxZQypQ7T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.0|0.772|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']|['PTAA']|['C60', 'B4PyMPM']|bulk|https://doi.org/10.1002/adfm.201807556|VmUHECh-ig4xHMUB64Xc1Tikx_pC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|219.2|0.71|15.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|VmdO2ZEncZ5xIONapDRMB6ZdfdJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2700002420526912|1.47|77.5|0.75|8.53|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901683|Vme3DmLn8yX5qh0tD2W2JLDr6x5o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|131.0|0.568|4.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4cc01864h|Vmf8MYi3dUVYPUgAwQuIitYKSVP4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|111.0|0.35|3.5|['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1117/12.2212130|VmhHQeCHFOR4BwgNhwcCRayxOLNh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|189.8|0.445|7.39|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssa.201900087|VmnuFEFJaOTok8QpaA3gljg3znsS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|107.0|0.31|2.34|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'PbI2']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|VnBCPRxWaYzem_10SqhJ4xeYW60E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.91|198.0|0.631|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|VnFs4dPJ3byrmge6ob76ssKXCtXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.0|0.765|18.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|VnQ_6AeQUQ1mvZxwcCkIgUgjJrHp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|||||10.2|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.061|VnSZSz34DsPYL0pTHrzzp7Z4-TXm|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.35|47.5|0.637|4.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06177f|Vnc4oyvbg3idRRDeqaC3kQ2TJnr9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|224.0|0.64|14.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'L-alanine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201604305|Vnsn_v4O_Q3zSPBgpkjzBtH-O92R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'L-alanine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|151.1|0.534|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201701221|VnzCi1qgwZVeeJ1chshujyQpXQBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|177.0|0.78|15.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|Vo5yti3gxYxqtz_PcmkIioRrUHHI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00600|VoHPMV5kfxWiXN17rc2ixxQveHII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.87|162.39999999999998|0.557|7.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b03525|VoHRfsORaYIIn7pLaLM_zqg-31YV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb99Sb|Pb99C100SbN100H600I300|MAPb0.99Sb0.01I3||0.97|172.3|0.564|9.43|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|VoKbGa4VKL8P9cmDUUluRXMc63x4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.99Sb0.01I3. -C2767Cs567H13833I10000N5533Pb3333|Cs567Pb3333C2767N5533H13833I10000|Cs0.17FA0.83Pb0.9999Sn0.0001I3|1.520000162079335|0.98|216.0|0.746|16.0|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|VoQTUQOGebSRBFVT-gW27WuZZCI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.9999Sn0.0001I3. -Br39C93Cs7H477I261N174Pb100|Cs7Pb100C93N174H477I261Br39|Cs0.07FA0.81MA0.12PbBr0.39I2.61||1.14|231.3|0.818|21.55|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.scib.2018.05.003|VoRI_-f1s_qSHepFAl2DmGVo7g7t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|212.0|0.69|17.1|['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60-SAM']|bulk|https://doi.org/10.1002/admi.201700007|VoVP7vJVIm5Hxckoe02WwRF6gZMM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|148.0|0.32|4.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|Vob_RmLfySFErq2DFN6BfuoAffkz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0|210.0|0.73|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']|['4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|Volftq07EZWWUK1Rhu4BXvYj4llg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4,4′-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C4H20I9N8Sn4|Sn4C4N8H20I9Br3|FASnBr0.75I2.25|1.6300001738087604|0.414|198.0|0.669|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00976|VomM4kJd0GMwbcS8SfMqGq6C2PnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/jp508162p|VoqZzLTj3Uss-DyRZ35Y0htNbJxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.083|218.56|0.644|15.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Spiro-MeOTAD', 'Au']|['NiO', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|VowgyDuCpTyHuzOv8ZA1fFZJVcCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|166.0|0.6609999999999999|16.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|Vp8yYh9CB5qbwDXz2uNf7N6HbEoL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C900Cs50H4653I2490K50N1647Pb1000|Cs50K50Pb1000C900N1647H4653I2490Br510|Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49||1.08|214.4|0.7140000000000001|16.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsami.9b07610|VpA_20rUyafpHmUoKxMjce6uVWtI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|192.0|0.66|14.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|VpGQmsRaZxny78jnIj7RbZqMHR_T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.917|202.7|0.584|10.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TC01781A|VpJtpRaDf19_yReQQRJK55cwgQBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.953|216.6|0.584|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|VpQjGjwalItjh9EoOfeiL_XARmkz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|178.0|0.57|10.1|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.7b00208|VpRBaGnpbNB3KfCUq5JGcnTZIVt2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|53.0|0.28|0.87|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.055|VpRlas9juO-Opfb801mjAG99wJbL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.0|0.53|9.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|VpeEf_1yqyWD6Z99LtSbnCqtrZeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5300001631456466|0.992|189.6|0.69|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201309361|Vpmns_6fRfcrqUORyZO5mjrQkNgr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.0|0.687|14.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'ZnS']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502466|VpqwDGa80Kg1nb19fE6_IeFU0Ty1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'ZnS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|174.12|0.6940000000000001|12.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|Vq2y8FuIuPZC9m11a8HYxFZ5rMtm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|130.0|0.595|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|Vq6cM-Sn8kVIaxffc1K_cVZ7GrJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|153.8|0.356|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|Vq8ABcVHc-6u--OnnfY057hg9hnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|221.3|0.6829999999999999|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'B2F', 'C60', 'Al']|['PEDOT:PSS']|['B2F', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2018.11.029|Vq9YURt6cr4szpxhwvsw0I3TrHyM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'B2F', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|181.2|0.71|12.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|VqBQdiqZV28V4KRVAN7f_0tagmoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.71|30.0|0.39|0.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07694d|VqGVxIjr-bgXxtpaLEDk-DNZCnFO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.8|0.72|15.04|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-np']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800004|VqKZG2NfzsjzRPJd65xli_3punwx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.11|183.1|0.78|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|VqUXIpiZFE7pXsbxRitCAGT33frt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.78|16.5|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|VqXjoHZXcpf-fj6fDCQLvOWHMePS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|150.0|0.7|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|VqY_xJLji-SuBncBX70ci1IG4uxw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|239.0|0.73|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b10091|VqgPNCHMZQn6e9Wq5817uL_3igf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C91Cs9H455I288N182Pb100|Cs9Pb100C91N182H455I288Br12|Cs0.09FA0.91PbBr0.12I2.88||1.145|245.2|0.775|21.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|Vr18cjuktqQQFviE_AaDrswZm4T1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.91PbBr0.12I2.88. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.18|148.9|0.772|13.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801117|Vr3y6Id54ri7rb-h6XSnE2si67kt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.2|0.69|16.13|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201900417|Vr4upKtxZjkVi_BwTALJOZAgJ1fs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.133|229.5|0.77|20.11|['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ImAcHcl']|bulk|https://doi.org/10.1002/adma.201902902|Vr6LZuoEGnPRWRotpXoQVHVV2pag|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C22H68I10N6Pb3|Pb3C22N6H68I10|MA2PA4Pb3I10||0.97|153.0|0.47|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|Vr808lyDK13hpL5vpBL4AVWhzJky|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA4Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|154.0|0.45|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|VrANwXeH4igV7o6Qh_V4lOTn3cID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|64.7|0.759|4.06|['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CZTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|VrCsfNX0rwYXGXsAhjMJ9IRvkxOA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.3|0.54|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00539c|VrHhQttCVxaRhGZ7EufrbIichyA4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|172.0|0.44|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|VrKJ3DWKWkmyFuYb8p_NrDJVlxgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|VrOp_ornrVylYgFW98cDI38qu_Bl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|151.1|0.53|6.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-8932-4|VrQ5HB0ai8Y2PRXQGWIo_-ZOZmk5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||0.98|232.0|0.66|14.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|VrVQmuupbniB9Uh9J1hLvprLy847|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -CsI3Pb|CsPbI3|CsPbI3||0.77|29.0|0.17|0.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|VrcucALGrkvciygLu_Aa6aBkt5Qf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.4|0.69|14.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|VrejB6SaxRkRg3iqVXz8WLcLGA3Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|203.0|0.69|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201801808|VrgHyMxrOsv3sCwNXG4UGpwPTYbl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.34|70.9|0.7120000000000001|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.001|VrmXfPS5MXm4TUaQv89ev4syb8y9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|199.1|0.532|10.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|VrnnI_pBEVaLpnIIYKKHFjpQp9mD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.831|189.24|0.635|9.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||Vrq_hNL8dVza9cbDPKVaHeiVD32l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|65.0|0.58|3.19|['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|VrsGIh4ww57nVmStDIqaJhzyaHuS|a perovskite solar cell with the following device stack: ['SLG', 'Cu-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.8|0.75|15.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|VrslK8UURRXODxX2v5yiON28m-Ki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.56|233.4|0.735|9.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.08.023|Vrw_mjMra5PBQh6PZMvMwkpZLUnG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|107.1|0.6|6.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|VrxOoDM3oMU7GFc3ayg39p_dOnD5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.6|0.762|18.94|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|Vrxo-vBCjslD1qd3VfNzuOuRSDzx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.1|0.74|15.42|['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|Vs-wa-RnUVa-DrBjmrgtKbNEMBUT|a perovskite solar cell with the following device stack: ['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|204.2|0.75|15.6|['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01681c|Vs3PmXfEw2O3N1488E0xi00R84GN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|1.12|229.0|0.76|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|Vs7CzlZzbiUPi3M0St35208JAu-n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|192.0|0.75|15.4|['PEN', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|VsHSBDVaGji4XyENeG2ZDgTUzbe3|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.9|45.6|0.66|2.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|VsU-FDL87KrBHfTI5uqRLYbhq5Jh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|201.0|0.7040000000000001|14.7|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|VsuZqLjy75NcoNdzlqOR-sHyrxkA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|159.4|0.54|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5026797|VswwftP7a6hW-ooxJBOoUF1xR2Qx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.515|78.3|0.74|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon-QDs', 'Au']|['Carbon-QDs']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2016.04.025|Vt-DlqSAR-EP_2ubbqJAIUNioMVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|231.3|0.723|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08772d|Vt7nZLuX4yoRqh2g6pP0L0QBbTic|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|159.0|0.6709999999999999|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|VtC6N0bchh55BxZHpvvsoB5CL4Tx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|191.0|0.588|12.3|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.scib.2018.02.004|VtF3WcOCrlmUvv22uaVv2K0pqdG3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|178.5|0.5770000000000001|10.6|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s12274-016-1407-0|VtQPwEGiqIbGVZLTvtIVlbOW2eFJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|89.0|0.5|2.18|['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']|['CuI']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s11082-018-1376-5|VtTgDOuKDDPvMoJeUaKfPQ0Jj9mb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'CuI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|227.0|0.767|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5098336|VtaKfwnKWYsnt5oCjfV_ImgpM8fg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H550I292N150Pb100|Pb100C100N150H550I292Br13|FA0.5MA0.5PbBr0.13I2.92||1.05|220.0|0.76|17.56|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|VuBmNVG1Z_JFSsblIIVG8Q5_1ZIm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.13I2.92. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.1|0.74|13.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1155/2018/4012850|VuHA5p1a-4m9Jv2KNSsyXQ1q9mmi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.5|0.7659999999999999|16.57|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-Na']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900565|VuKL9GXUd4EWKGtev-fhgqy4tqOI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.688|125.0|0.64|5.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|VuNYoiDHbqbT9Zj5e2h_fgPmaN0c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||0.98|181.4|0.612|10.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']|['NiCo2O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|VuRsE1Pgc3SPUZmopBDuY4_yEN6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.742|124.44|0.596|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|VuYHMzC67qEwC4RM33gBHS_LTrL0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|168.4|0.605|7.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2ZnSnS4', 'Al']|['Cu2ZnSnS4']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.6b01183|VuZ18zFbilcKRJqO1DsP3twCVtFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2ZnSnS4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.0|0.755|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1742-6596/1135/1/012067|VuaXwxw-_lrSihzzT22_zKlDIudN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.721|16.7|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.8b06291|Vuf7qyvoNfAQjIOf4U3zU_u_Zw0A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.02|201.2|0.68|14.02|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr05235a|VufH8AC6kGhW4qLZjOkm_79kkfUI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.1|0.416|9.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|VuhllKtlcXeIvQrOTVvE-7e8-8aM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-nt', 'Carbon']? The composition of the perovskite layer is MAPbI3. -AgBiI4|AgBiI4|AgBiI4||0.53|76.3|0.52|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01202|VuvRsUE9Fe5XdzHvVvETzfhh1iy7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is AgBiI4. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||0.89|201.0|0.82|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15263|VuxMSPigd_vgt37ecvr_muHDyl2D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br19C100H600I281N100Pb100|Pb100C100N100H600I281Br19|MAPbBr0.19I2.81||1.06|182.6|0.77|15.02|['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskire', 'PCBM-60', 'Al']|['PEDOT:PSS', 'VOx']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee00612d|Vv3zsEcns7zIxPzimquSrmvgSGbX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskire', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.19I2.81. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|185.0|0.768|15.0|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|VvEZUFem6RnJocJdmfG1ZQEMEFbf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|1.17|189.0|0.7|15.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.135|VvOrIyeUDlcDLbjmXQDVcdQ8z1pm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.5|0.75|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|VvUqJ-_Ms-JqQNh1WT2iVM0Wednm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|152.0|0.55|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|Vv_MaCbTmXEZTv9OyNvsYR7JJbVs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.08|232.9|0.821|18.06|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|VvakMjr5bWnvLVDgW9TSLMfKX26s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.0|0.7709999999999999|17.0|['SLG', 'ITO', 'NiO-c', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PhNa-1T']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.024|VvgRaKaAQKdIajhSyX2-s5d8oFMs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|173.4|0.632|10.66|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|VvlbdzbrlmWYrClEM_FkorCIjnh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|196.8|0.6|1.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ce00724e|VvzHQVXnBDh6lYJu3v6STDMHsxhk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|Vw60djTE3SD7ZYsoTgpyJ53TJUUn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.7020000000000001|16.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|VwI-wNkozXohjLZgwpqSJ37cDM2Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.3|0.711|18.0|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']|['TPTPA', 'TPTPA; MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|VwJDAdGFgb9fu_L1tmO2eXPpNdSC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.0|0.62|11.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|Vw_Be-3H9qDlwKEgaMqY4QZLjZ66|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|208.5|0.5660000000000001|11.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp502696w|Vwcjhc-eR-S9OQIJqnw2LeMu4nUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|102.0|0.45|4.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|Vwi6dSScNMoanxFxbqtD-Vg2fwAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|209.2|0.721|16.07|['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|VwllOGSLoDo-OvQOBzDek7Iq6RdM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|VwmYtCMJlgm0v9aJdpxufoCCx_od|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.5|0.64|9.59|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn502115k|Vwz2MRXHMY6BpxXcMm7aB2ngY_V_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.996|198.0|0.731|14.4|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|Vx2N614bxUQF1Mpaf1JeDsfyV4fC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.9|0.73|12.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|Vx5LsOHoFEsqsDGO4LtdYvuoTkQB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|168.79999999999998|0.77|12.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|VxHxxMNuHCrTESUjEU-wJDZM8Ik8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|72.9|0.5760000000000001|3.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|VxM-l_xV4ZnQ1ug-8Kn3XDXnUDnb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|218.2|0.83|19.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|Vxa3cNyiLwViJHE_19eiU9EQfgd1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|75.0|0.5329999999999999|2.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|VxcXWov9RBdORqDma2EpvmVQMuaY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.73|12.2|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|VxlR5QWFdGJxb-3-dHRe2VKhalae|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|140.0|0.57|7.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|VxoCeLsUwYT6uPhSbKVG4WpWVmNH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6459999999999999|0.36|0.7040000000000001|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|VxtaqWxILrxW8_OS5I5jjGjRV_wF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.0|0.6629999999999999|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|VxwRy1K_G-GWmP9uFnzgMVGbo3i3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs10I30Pb3Sn7|Cs10Pb3Sn7I30|CsPb0.3Sn0.7I3|1.2900001375541723|0.477|3.9|0.46|0.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2016.08.052|Vxy1FE743r3KiOeQ2LnydeBnEN8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb0.3Sn0.7I3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.08|234.3|0.828|20.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803476|Vy-2PWlAybJKcfBDgPU24z1xkqjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|223.3|0.7|16.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|VyEFfZRQww4wqvuIxJ3bayp-qs_K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|230.0|0.73|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']|['N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|VyEaBIZPUtL5ccViIJ1a9IzNgmzn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'CuSCN', 'Au']|['NiO-np', 'CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|VyGa3k7CL1s6Z0iWiWUUBjwF4iEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|166.1|0.72|8.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/en10050599|VyIKTL7GLD6YkVyFgXL-GYgroeeW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.6|0.71|13.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|VyNM-t35J6eYv21F9A5pGxa872LK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|222.0|0.75|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|VyY-u4mswBURH_DiNneq5Ng-6JVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br52C95Cs5H491I248N174Pb100|Cs5Pb100C95N174H491I248Br52|Cs0.05FA0.79MA0.16PbBr0.52I2.48|1.380000147150975|0.7|198.2|0.69|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|Vy_D2h-vcNje0VJqbM9-Tn2a-yUr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.722|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|VyiSXAXdxGQ--e2QprxICZabac6g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5500001652782691||225.0|0.79|17.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7EE03113K|Vyji-Xv-fhOq7Hwyehp1HwCQ4eLu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|189.5|0.7040000000000001|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201501606|VykN_mQB--_FiQwepVkhY1jchk5d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.0|0.79|15.6|['SLG', 'ITO', 'br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|VykQqfYEFJp8Y6_-5X91zmLzbCMB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|198.2|0.63|14.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|VykYS2jXrTMC-L4EkTWYD456Co7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.22|180.0|0.5|7.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|VylevrswfwicuBoxP7D0VSQnfA-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.122|172.8|0.584|11.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Vyq5gwBdqCcCMoWPw_jy-RGb_tru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.08|205.0|0.68|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018810|Vz0X6P2MGz9rIQTeL8I26fLVYxif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.1|0.52|11.37|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|Vz5E8lOpk9Uwg1dtlEFWi1J5JIFz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.3|0.73|14.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7203-0|VzC4EgV4XRNBTY5wkIVXukactNAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.1|0.77|15.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsnano.7b06413|VzHKn0TZu3GmOS0i_Dt6R-1b8QCC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.09|229.1|0.76|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|VzN2pcwQv_W-tyhYpTPPW-AXR8tY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|70.0|0.22|1.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|VzP4Vu63R8MxSSlhF1LtUXuWbXdx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|190.0|0.706|11.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/12.2274438|VzY1T6Xuz0G9chw33b13THfUsvh_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.15|245.5|0.75|21.09|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901726|VzYcwDcN4RJD-_SQ-K3N0YzGnA2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7020000000000001|147.0|0.6559999999999999|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1021/acsami.7b12046|VzZJLwYtbHgzE0EG7LZ5bwT7lDlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.4|0.6709999999999999|12.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|VzeuMw6pn6t1P1-Rgjdul8uNcP17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|108.0|0.37|3.7|['SLG', 'FTO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-mp']|bulk|https://doi.org/10.1021/nl403997a|VzfeNVeOZdL2U7VqTnuAGECLC1Ws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.0|0.73|16.44|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|Vzgv2KXO-C6lVf4nW0_00HOfeCHv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.73|216.0|0.48|7.61|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|Vzs-5rHZCFZ7PskdtQrRXMBDdpyC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|0.8599999999999999|0.36|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|Vzs0sK7hxQ1y1Zo_d03Axa9XJrfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.6|0.76|17.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|VzsHewG2ek0yF3eoaWkAjxUxCjco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H491I240N174Pb100|Cs5Pb100C95N174H491I240Br60|Cs0.05FA0.79MA0.16PbBr0.6I2.4||0.7|131.7|0.73|6.83|['SLG', 'ITO', 'Perovskite', 'Carbon-nt', 'Ag']|['none']|['Carbon-nt']|bulk|https://doi.org/10.1002/admi.202001121|W-1gdiAAtZajT-8h2JBf5pymX2SB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Carbon-nt', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.6I2.4. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.265|126.53|0.74|11.0|['SLG', 'FTO', 'Mg0.25Zn0.75O-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['Mg0.25Zn0.75O-np']|bulk|https://doi.org/10.1002/aenm.201902708|W-8KKoSFTazkNgTV2EeS4htgGUaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Mg0.25Zn0.75O-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|128.9|0.54|6.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.245|W-SrrmAgTbtiA7LaF5LEgoWlZMjy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.938|143.0|0.622|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|W-WC6DYOaOIn6lPsIJ_DpUc3CI_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|217.8|0.76|17.02|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|W-ZBRTM9DP0DInoBK8Cr4H4T9naU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|204.9|0.77|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05227e|W-sAG8x3oGLkMmyUDeCd7MJnO-KH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.0|0.632|14.4|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|W06ctLvaneHvN5ZH_01fhy55_vM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.0|0.716|14.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|W07kHOzK3CcEKk9TuTYGm-v89ZGQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.082|198.2|0.769|16.51|['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']|['P3CT']|['CPTA-E']|bulk|https://doi.org/10.1039/c8tc01955j|W09gdjjPeQm-ygN_lE9NFbkbrHfN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.06|181.0|0.65|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018810|W0FmVC54EFl0uLgjpu4uD6GUvIGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|160.0|0.55|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1557/mrc.2018.231|W0dOClh2JW_1HLW3IyxgfbAU1OqA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.43|174.0|0.523|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b02555|W0eJcy69G80fpZ5BsppnoTnmVwD-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|142.6|0.71|8.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr03511b|W0gdRuSVd3ukodxxyq6j0I9Hjezq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.11|89.3|0.51|5.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|W0kqofRWAmxE2Q7-VOeWM7kQgcWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.075|227.3|0.797|19.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta12368g|W0yRfhsuYNniO1Wzst2jPCW0DSmx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.13|225.8|0.733|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/anie.201911796|W11-GtrcvP9ui2gK8GctN8KDDlO1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|159.5|0.39|4.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|W18tBEyQleD-nx8Qt6KoIQwuPh0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.71|81.0|0.61|3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|W1L3xqgY3ad9cyUdaPHp44lchj4t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4Cs2I2PbSn|Cs2PbSnI2Br4|CsPb0.5Sn0.5Br2I||0.73|138.6|0.7340000000000001|7.43|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800525|W1SVySWAVoCfOQ6Y_cHhXnuBZBws|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb0.5Sn0.5Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|157.3|0.64|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|W1T5w93P6fHCA9TDXrZ8rCM6Ur6F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.04|238.6|0.76|18.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|W1UyEheZjqoGp58p_TJhRhm2vVXi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|202.2|0.55|7.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501453|W1_hAkSerouMfzzzW1-LLtRCNBH_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|232.0|0.7759999999999999|19.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|W1bAhgoi9n5k1OWkQDe1oxb1GeuA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|108.0|0.642|7.14|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra05578k|W1du7z_tKECWygRZZlGFyn4zZMqO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.06|198.0|0.67|14.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|W1jvfdT5h6f94GgubaTwZLh5ERA1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7490000000000001|204.7|0.462|7.08|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600315|W1pBhW3P579sYPp1IPF0qxKuYBlH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|220.9|0.6509999999999999|15.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|W1vtisGBAVnbzJCAdg3tIRN2vFrW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.5|0.625|12.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|W23bSlTU44Q5UgpmfOi9SC-wgJ9v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|1.02|233.8|0.72|17.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LCS01', 'Au']|['LCS01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|W26DGMFZDwqz3xJ8dSDpQhov3Xmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LCS01', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.0|0.56|8.87|['ITO', 'PET', 'ZnO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1021/acsnano.9b00125|W27UO8xgUUD72XnEHM60uyxHYJkH|a perovskite solar cell with the following device stack: ['ITO', 'PET', 'ZnO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|181.1|0.6829999999999999|12.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|W2EPbV4AI28XchgWddjTcVnyvIeR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.39|117.0|0.5489999999999999|2.5|['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['CuS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.tsf.2018.07.037|W2ElPMHWdE7e2G7F2IUw1NHDvEJ4|a perovskite solar cell with the following device stack: ['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|181.0|0.68|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1016/j.tsf.2015.12.001|W2FrmhZUGHXShhbKBEDfqmA-VeXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|184.0|0.68|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04490|W2IBsNgYzlb-3-xe9XtzM83B1-d-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|233.1|0.738|16.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|W2IEA2PldrXA3_1esziJfuv62Nvc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.5500001652782691|0.47|171.29999999999998|0.595|4.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpclett.0c01859|W2OEoW6olPPmnlWRgqt5ZomN_CNt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBrI2. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3||1.06|238.4|0.73|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905502|W2OshutZeRxbWfyef6nIO6_a3z-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.0|0.77|18.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|W2TZC7BSl5VqYc_owkIc8hbG_sFW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|227.6|0.6779999999999999|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/0957-4484/28/1/01LT02|W2VFWzmZ0Of5UNGXa4x34XpnBYyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|144.9|0.698|10.11|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|W2cSOtChwLWVPOFOIxZhQLS_CRdZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.77|['SLG', 'ITO', 'PEDOT:PSS', 'PEI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|W2qvuk0iuyP3HiO7ny2KIpnjKK6e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.48|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag', 'Au']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2018.10.018|W2uxB7chHxmtL7hQVisc15M0xpbs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I60NPb19|Pb19CNH6I60|MA0.05Pb0.95I3||1.03|211.3|0.72|15.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|W2vtB-LGmv_m9ikcEOBq_pwEsTJR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA0.05Pb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|W310-7c6l1p6qpQc9Fxgv5OW-Syt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.9|0.78|17.08|['SLG', 'ITO', 'PTB7-Th', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTB7-Th']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|W3CgsnhUxBbBCMgkZP2XQC43cwWi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTB7-Th', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|239.0|0.7120000000000001|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.066|W3SAuHqgV-LOV4WY5eP1fyU-pZ94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|132.20000000000002|0.55|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1358045|W3SWYbHqw6szWtQbmDIBfRiFMMC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19Sb|Pb19C20SbN20H120I60|MAPb0.95Sb0.05I3||0.98|178.79999999999998|0.6|10.51|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|W3cKN90HP9QDt1uEKpvsVPNzqCkO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.95Sb0.05I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.1|0.75|17.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201604153|W3dakbomYMYAzl0ukdSemsLp9raL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||4.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|W3r1NX53DLhUGDHE6a_vEmjKrYnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|170.6|0.531|8.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|W3wmdzP2I-_e_EWFZME5BNfbzZ-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.14|226.3|0.768|19.82|['SLG', 'ITO', 'SnO2-np', 'OEABS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'OEABS']|bulk|https://doi.org/10.1002/adma.201903239|W3xEUBp80EHLmWdwQtZvMFLjJ7To|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'OEABS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|108.3|0.412|2.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|W44kFiYORqFfm8PCWoj6D94gpdoP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.71|136.6|0.48|4.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ta13606j|W4Ge5Efym-ReZ5z4DljSg6JOWqQo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11433-019-9356-1|W4P0fsnMnQd1G90d_4zecB_nHcoQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|139.1|0.56|7.08|['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene; SrTiO3']|bulk|https://doi.org/10.1039/c5ra09001f|W4_aYe8fs0e84cagRQSOH-l63vkD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|197.2|0.79|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsta.2018.0315|W4bP55bYf41FDI9EhqKX5eMegZVt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|195.0|0.75|14.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|W4jQxaseMQdOeaQIITs2LqgFFoQL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.0|0.72|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-51945-9|W5-DfPdIB_NGPh2hNtAUpNOj1wUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.05|251.1|0.79|20.93|['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|W55xsnPuyzbUGdUZU6Wz0OIePfsE|a perovskite solar cell with the following device stack: ['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.8|0.7|17.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|W5AODYOJ7xve_4ZVzLjNejEDj2L6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|227.0|0.78|19.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Spiro-MeOTAD', 'Au']|['CuPc', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b15870|W5LCnsFihxIIoXgxChDWIoln08co|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|1.015|248.1|0.695|13.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900340|W5clKcv_lt45C1fHAqXv28L-gVfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|210.7|0.67|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|W5lTrD-rRADbSU1vIbMw9S2ls8dF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|236.0|0.7829999999999999|19.07|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.8b06291|W5sOxSviaTzsbuPA8sp8ebQlcdm9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|212.5|0.67|13.05|['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|W5w0mmIbDnvWG9h16sDHWrTdNYrs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|200.0|0.59|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-019-9452-1|W67Ug6ZnvLhcQHyYnr7DXNgOcKZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.8|0.78|17.18|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Zn0.8Cd0.2S-np', 'Ag']|['NiO-c']|['PCBM-60; Zn0.8Cd0.2S-np']|bulk|https://doi.org/10.1002/solr.201800222|W67eFED0ut9XIsVe4Xiw0AiEiFzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Zn0.8Cd0.2S-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|221.0|0.691|16.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|W6DiY8SWz7GfET7sQlYwpDrvUJLF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|195.0|0.69|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201402587|W6FOzfCqUWrhpKwgvy1Cb5CP94p5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|217.0|0.695|14.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|W6NF9eii8-ikIQ9b5-J0hsSQYgBs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.27|68.7|0.44|3.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|W6TogcBuTGpXBWD0lsFJ2B1x_Ljh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.272|88.5|0.373|0.9|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/c5ra01540e|W6VRsPqh0EQoOek_tdAZqK-ENYCo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.016|221.4|0.7020000000000001|15.8|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|W6_lLKMALrRwJhdUkPxZOX2s3lBz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|192.0|0.57|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2017.09.100|W6hNLT6r38rq4zCO5iGvcLnOcD3B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.0|0.638|13.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|W6iM1wUK5DQxVVCmux50G5hdhq56|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|173.5|0.55|9.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.03.002|W6nENtwGKcqYOorK8zGzXWrr3hiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.626000173382236|1.01|176.0|0.7290000000000001|12.99|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|W6oGW5O86f1E-JbbPHrfFeNXHevk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|86.0|0.52|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00122c|W6u7E_dmbBqP9pwI-lqVMQmCgOue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|217.1|0.77|13.13|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|W6uiHR8NRQdLvCUSPoLcgBmcPiL6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|135.8|0.61|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|W6w144G0dipkj-w_j4xg16kLylUq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.03|241.9|0.726|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807850|W70gBjNXJxyKjDNUrSTUcm3kPh9q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|185.6|0.79|14.6|['SLG', 'ITO', 'TPP-OMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPP-OMeTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/aenm.201700012|W7CoQkfyf-mPAsp8IAOlEK1HWLZ8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPP-OMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.0|0.55|11.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1038/ncomms4461|W7GN7nMEHKRp0nhfBpeKlf_B9g3F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|240.0|0.731|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.029|W7Itk9JKM0hm7HrGyX-3DuV-_qxg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.1|232.1|0.821|21.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c06318|W7ba3-oGULLtVtNAVsKtfZqEOTzo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|175.79999999999998|0.573|9.87|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|W7stU7GtgfCmvAAu9kSj5IwROvU1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|152.0|0.67|8.9|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']"|"[""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01220h|W7yD25z1d17Xsu1hOoT_y4qOJT8H|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|232.4|0.69|15.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|W88g5SK4dbtKJp6YsWpBWQDzQXYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.7|0.62|11.47|['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DA-PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|W8UN-L8o9PZwsCYqhoZ24lS2yr7H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20F2H46I15N6Pb4|Pb4C20N6H46I15F2|(oF1PEA)2MA4Pb4I13|2.5000002665778536|0.5329999999999999|21.7|0.757|0.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|W8_nBoPLqXinbegnM-FcTcSsaX8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (oF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|196.2|0.65|12.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|W8bX4fDykX7Vd-Qq5dV0wefFmfWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'CsAc']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.0|0.759|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|W8eaFL9g1VOlYb6D4kB6PEg3JA9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.02|153.0|0.61|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|W8mzw4lmdPY0z2BjM6C_FIZTDoMg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.046|173.9|0.6920000000000001|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|W8nBqT2escPN-KAs8piUwxrl3QVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.95|208.0|0.73|14.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703432|W8rVztJ2btWTx1x0-FW4MQMbZuR2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.925|158.0|0.52|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAA14', 'Au']|['TAA14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|W9H0pHNItei3sE7dZirzOa_ylvjV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAA14', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.0|0.779|18.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'BDTS-2DPP', 'Au']|['BDTS-2DPP']|['TiO2-np']|bulk|https://doi.org/10.1002/advs.201700025|W9JfoPXD73n_RkSIbpXcbNiiWzjV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'BDTS-2DPP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.0|0.769|16.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|W9KlmzCOUOZ4TA8uKs79CiyiBrHL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.4|0.636|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501354|W9Mrx4VpNydEDcCw0ig4V_fadhjT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|212.1|0.75|16.91|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.031|W9PNM4KoNJ0JonmE-RygaohG8Ii5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|173.0|0.55|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|W9Z1rYq6rNe_djjNXEW5Y-0CT7AD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.8|210.3|0.67|11.63|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc05325d|W9Zmka8aWo3Oo_TZCod4XOy7hwpp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|210.0|0.66|16.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|W9_QZ0L18mMr-Z13FEGrttPDg79r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.017|198.0|0.768|15.47|['SLG', 'ITO', 'IrTiOx-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['IrTiOx-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201800191|W9_ey-U4sNs55EPO9A-Com1Vs19s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'IrTiOx-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br18C39CsH201I102N72Pb40|CsPb40C39N72H201I102Br18|Cs0.025FA0.825MA0.15PbBr0.45I2.55|1.6510001760480146|1.055|225.5|0.8079999999999999|19.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700125|W9anzh7WYdM9xC0e8nMyT3xejOBG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.025FA0.825MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.41|['SLG', 'ITO', 'MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|W9bvY1OO9b3aUtE-XTiNBqBrzBh-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|203.0|0.69|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.024|W9hVGlHRmTWBEv5xtuF9HgPOAdKF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C100Cs5H517I264N183Pb100|Cs5Pb100C100N183H517I264Br36|Cs0.05FA0.83MA0.17PbBr0.36I2.64||1.03|186.3|0.61|11.73|['PES', 'AZO', 'CuNW', 'AZO', 'SnO2-np', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b21290|W9vJgscMBDMuYCVBPaGcSWIbc6fO|a perovskite solar cell with the following device stack: ['PES', 'AZO', 'CuNW', 'AZO', 'SnO2-np', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.75|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|W9vfGbUZL8erOsx3z2HNw9qSS2Ly|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.3|0.775|17.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['NiO-c']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|W9zkeg5o9Wiq1VjUjJRCPIQ-UxhK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.3|0.773|17.97|['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']|['FBA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|WAIyAYtACdUiU4P_NF0yzlYf6Dpe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|186.9|0.75|13.23|['SLG', 'ITO', '3F-SAM', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['3F-SAM', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b10445|WAMNrD3MpnBpNJhFKG3VGAXHXOnZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3F-SAM', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|169.0|0.659|11.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|WANwRbSMMsHM8L57FMYxUyTmuiXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.16|17.0|0.62|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|WARmfOsewTsFs-cQJTWRvkU7_y4m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.89|201.1|0.52|9.31|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|WAWNC78PADS9gcNrRCK-S3f38Xq5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.968|158.4|0.499|7.7|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|WAbsCUj21c-pO1JbdaoX6CeYovOt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|194.9|0.705|15.09|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.07.041|WAeuhg-qBwbwLXWBId0RmKc8vZAI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6250001732756048|1.06|203.1|0.67|14.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.03.073|WAq1sx-CoZ2wX_rcUvVl4PP-c5T4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.9|0.6659999999999999|12.48|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7ee03275g|WAqDzFT3E4zY1ZGR_FaOQKFf6CSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|140.39999999999998|0.41|3.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|WB1MUKy_0da0EK1S5RkzL4WQgPOV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.05|206.0|0.75|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']|['Polymer4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41428-018-0116-9|WBBd7QE739B5ZQiq9CTFTmqUJ1Qs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.0|0.73|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|WBFNmwBL4uhEPNf2V96IGksX86vo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|24.0|0.3879999999999999|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']|['4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|WBMDrW3tERprED2PDY_129CKw8Qb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.0|0.784|18.6|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|WBSlcSf8pb5zs5qyF82GDYFq73IA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|201.9|0.469|8.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.orgel.2015.01.024|WBhKHXm3dIP9jB4syo4zCgoo6oAh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.367|67.52000000000001|0.595|1.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00100b|WBunKdm-GvYVvgNrXLQN036nZLZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|214.2|0.7390000000000001|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|WBvAcazyVvtnIZTL46d1eJZ7aosi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|176.20000000000002|0.62|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|WBvYLgmqMAo650Hk7DjrRVdFpkL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|242.0|0.711|19.8|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1039/c9ta00654k|WC4c0IPLnyv85LTfnvXoDjvdzfUU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||0.954|201.2|0.5760000000000001|11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|WCGyfHrEuVHZRAVOWQPY4M87EojE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|190.4|0.73|12.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|WCY6DBQ_OwjaEprSry2mzZ1PZhWN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.19|13.7|0.4029999999999999|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|WCs-ItACmzrKuCj7kHFEKCtQFB-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|77.0|0.54|3.8|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|WCuTIV8A-WT6kVJqF5Qo8_LUQbyG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|166.0|0.78|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02549|WCvhDWhXGiWb-8mT1rm8t4yqhZSg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb7Sn3|Cs3Pb7Sn3C7N14H35I30|Cs0.3FA0.7Pb0.7Sn0.3I3|1.3000001386204838|0.7|248.3|0.736|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800997|WCxCWTj6UQFyy1t9MQyngANulQrB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7Pb0.7Sn0.3I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.83|160.0|0.46|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b11067|WD0xo76lUXHxqF1im82IoS4xe-Fo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|133.5|0.435|5.53|['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60']|bulk|https://doi.org/10.1039/c7ta10366b|WD2NSXzyr7_rpJOT1f9oao2Q2x7Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.04|224.7|0.67|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|WD8wMM_RVM8_uGqRsUGIQ9jqt0Bj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|WDAMHScqb7XekT1Pp1KKhzjzCttu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|169.1|0.625|8.86|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5nr06692a|WDI7XqAX27ycobAfdb7K8l7Yf-Yz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.4|0.73|16.2|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|WDO1KDxVpuOVQ8yJVsmSiLbaHXUv|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.048|217.6|0.833|19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|WDRA36F5ShUq3HQ_7RrhrcaUKnuH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|169.5|0.589|8.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|WDUB_2hcPZMd_yJKba1TlE9ehQpL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.0|0.7|13.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b02035|WDUsHnD4X1Y3ZQQb6LJ6xIUujOGZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|227.8|0.64|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|WDp5UKiqrs5Fx1b3EkIgaaIHkHeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.721|76.10000000000001|0.33|1.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4913551|WDzUjpGm1D7zzFoKcWYkGYlx-TbC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|179.60000000000002|0.631|11.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|WDzdusL5qcH3kYnSne-HvfyH_C6X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']|['FBA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|WE32oVvdrdWvsrs-uV4a_VglQSwE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H20I10N4Pb3|Pb3C8N4H20I10|(3AMP)MA2Pb3I10|1.9200002047317917|0.99|30.5|0.665|2.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b00542|WE7pGu7vVJh25RJW-Kjz_-qWNtKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA2Pb3I10. -Br250C33H165I50N66Pb100|Pb100C33N66H165I50Br250|FA0.33PbBr2.5I0.5|2.1390002280840115|0.989|44.15|0.665|2.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|WEBqGUVHELEsNUAAc9NjKqzUYC8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|183.0|0.674|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00116|WEFMIgXImWTeU0rqCLGo43nNOJVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.591000169650146|1.03|146.0|0.68|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|WEMLE_GoYWoKel9uHPvtj6Uymc74|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs14H923I510N337Pb200|Cs14Pb200C180N337H923I510Br90|Cs0.07FA0.785MA0.115PbBr0.45I2.55|1.5800001684772036|1.1|185.0|0.6729999999999999|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']|['PDPP-3T']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1021/acs.jpclett.9b02502|WEPdVPhQYc9z11ympjjruHQOLqyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PDPP-3T', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.785MA0.115PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.01|87.6|0.634|5.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'CeOx', 'Ag']|['NiO-c']|['CeOx']|bulk|https://doi.org/10.3390/nano9121666|WET2hReEsH-UEz0rhG6isgBygA27|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'CeOx', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.17|131.0|0.725|11.2|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201802509|WEV_bAmcjLXqgHfFV54TlaZ61TYo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|211.94000000000003|0.65|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|WE_dE6bsL6bI1OP49sB42Z2tVBnM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|101.0|0.45|3.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|WEc7l2BTSDYll_sCkYavl4Zx13AY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|177.0|0.64|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b00793|WEeVhan-l2XJSgCXqXWvbJQ28jwj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||||||['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|WEsibigz_Fi39PN7Yxqoi3a571qF|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|203.2|0.637|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']|['DPPS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.136822|WEvsv-33jOSrdHKmFV9NaiV50u6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.127|229.9|0.78|20.33|['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ImAcHcl']|bulk|https://doi.org/10.1002/adma.201902902|WExUcKh9Ik3Uaw-re_v-wM9Q48JD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C10H51I30N21Sn10|Sn10C10N21H51I30|FA0.9GU0.1SnI3||0.51|214.0|0.684|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|WF4yLPxc6mS46ChcGq_WLguARWzb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.9GU0.1SnI3. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3300001418194185|0.78|249.0|0.78|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|WFDhhyYC7XZFfga4291NcNU_gs1h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.5|0.598|10.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']|['DAHI', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.8b01650|WFFXz9ka8rJsjldQPGAE-WeNXi0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||15.7|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|WFGqoLVNoaJ2TuOjrZHZsgzsMs-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|235.2|0.66|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|WFKBODDDD-SQqS4FKWtLGOGyvrXV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|211.0|0.7440000000000001|18.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b05008|WFKezpyINpI6cuS3iktocj7idKS4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|153.6|0.467|6.3|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|WFYGJNi7G5fSpqJ3qK6yj2dlCHP9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|157.5|0.629|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b01177|WFiLZZPC7fnXiYXG0gTIsiR9CmID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C95Cs10H491I200N174Pb100|Cs10Pb100C95N174H491I200Br100|Cs0.1FA0.79MA0.16PbBrI2|1.7200001834055632|1.268|188.0|0.769|18.4||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d1ta05699a|WFlN-Vn2NvuvtVqFnc6-tbhrLblk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.79MA0.16PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|240.0|0.78|20.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee02980a|WFmQk3q3QznQqudn6M_AaOa7NEhX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C34H187I51N51Pb20|Pb20C34N51H187I51Br9|FA0.85MA0.85PbBr0.45I2.55||1.07|242.5|0.7909999999999999|20.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902319|WFmb4qTPa5gCPmsqjIvHs0qkaqlB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.969|217.54|0.6990000000000001|14.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'JK-216D', 'Ag']|['JK-216D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05697g|WFzMhYvA6eWL0oswTXc8kvSilJ_A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'JK-216D', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|174.1|0.655|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|WG2ruyD0x0qSoJBDBTPUkIqqRbQo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|191.5|0.66|12.89|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|WGFfgdaZp5eTxlG55WuSNCjReQI7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.903|179.89999999999998|0.764|12.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||WGdbXwRcpQxXgONs8FszE1LuvvpA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|||5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp00460d|WGkxlwgDGJvuKGQOwYMvHweeSCQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|196.3|0.715|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'GD; P3HT', 'Au']|['GD; P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401943|WGl-_DEs7GtbeM71zoozpYx4TlsA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'GD; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.0|0.66|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01532e|WGlILN1Uj-wykpGBxToKeSWG9QHD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.25|74.3|0.6|5.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|WGmiwXzdcKvTEUXJ_EQ8zRWmK12l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|229.7|0.723|19.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|WGvtk5UcvS9hWR7h_hLwF4rVpVuu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.0|0.52|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|WGzvAtreuFsIPt9GgYnPTl7JHPdB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|171.0|0.73|12.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/pssr.201600004|WH1KYA37uyOFbCu0Oh8oAMqi_O43|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|||||19.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|WH3MfKCCqJaa9I1BRd-NmlrW2Gjo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.0|0.7390000000000001|14.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|WH3hn46zmCWiIPMzza0lmQ2jr0E5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.180000125824747|0.61|193.9|0.53|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.061|WH5k9sEJYkj3XZwnMP3B655XCjwe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|230.8|0.753|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02721|WHFdEeU6rpbKMlUlnIuKUF1i-rVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H18I6N2Pb2|Pb2C9N2H18I6|(PEA)0.5MA0.5PbI3|1.6000001706098266|1.03|186.3|0.677|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|WHIGKf8RWB8nksXX8lf7SRb1BkAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|134.1|0.61|6.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.08.029|WHWFbvueUuDm32Yp9AvyHgvl8PcQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.98|220.0|0.68|15.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.materresbull.2017.07.043|WHcqrVlSgJ23jLTtNSKELd7SH1Qa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|178.2|0.62|9.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/srep15889|WHmEKq1rSERrMpwx41M1srNZk0iT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|155.29999999999998|0.591|9.07|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|WHwODacSibt0VuBfBGBGA6sfHrrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|229.5|0.807|19.66|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|WI5HWns_dfYJ6JOjz7meYfyaF5-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|0.4|0.2|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|WI7lpIjrsDXu5apXBQne4dX1hoJr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|228.0|0.738|16.0|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|WIJ0NAMsCO8UAcW3_zxQT-DhtP-3|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.3929999999999999|191.2|0.541|4.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|WIViV5dmCnH03wsL5tQP2Re7rJBS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|169.89999999999998|0.57|8.49|['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovsktie', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1007/s11051-017-4081-6|WIXu8fxAeFcRjyoU9O1F9B8gXyaC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-mp', 'Perovsktie', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.98|192.4|0.698|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab221b|WIfCdg76-a0A1hbACH8QmTLYKxSu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|248.1|0.78|20.23|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b22040|WIrlSkzOlwaaOeJE384VD4rDQNPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b03455|WIrutBB43C88VKlffpMzOd1uuPpq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|213.8|0.574|10.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|WJE5VnfeBq0A60fv_Zd0J53Q_NHs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|171.5|0.57|8.6|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'BCP', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|WJSYSby6kdMxgYXLdCGHTNnHrtOI|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|179.60000000000002|0.38|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|WJWbF-9C-fdH6ubisFmjzxC-WRQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|183.7|0.68|11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201304022|WJY63_z128Wzp6JCdISKLK8iOJ0O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|171.4|0.4|4.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ra07725d|WJYTbgYLzhhPciB9Bu_EwXsP5XSj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|181.6|0.7240000000000001|14.42|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|WJgWtFP09X0FaDR8h9t4YjOfYVc9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|165.6|0.56|9.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|WJhqsuov6vjBP3YvJQYdZw-uwg8X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|124.0|0.65|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|WJln0197wyt_PKY1E1HVn7KRFsa8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|228.0|0.66|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b07513|WK-TxhIImGANXTMRvGdzSltWjvjU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.85|31.8|0.55|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SQ2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SQ2']|bulk|https://doi.org/10.1039/c8cc07298a|WK4j2MegmxFn6ubXXxLftUficVpG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SQ2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.9|0.72|15.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|WK5xkxJqPAmS8kEwBQGK7X8NEM-4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|189.0|0.7|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|WKItqB2srxAguPCKWFwdo6KhBNch|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|196.0|0.66|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|WKKcjgoDI68D5IlXGnTDpv28V3dC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.382|196.14|0.525|3.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||WKUZfNy92tUJAV3VlenYcvDVU52K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.72|109.6|0.58|4.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.10.023|WKYywUlHc7u9e4iP0ZeZAQI3DYlK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C16Cs59H24I181N2Pb60|Cs59Pb60C16N2H24I181|(PEA)2Cs59Pb60I181|1.7300001844718749|1.08|89.1|0.68|6.65|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|WKbXWYK49n6U8VjgNuLTTELtAz62|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60I181. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|209.0|0.7929999999999999|17.9|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226907|WKis4KAp_-1VNdv3-6hhZMAtbYya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br8C20H119I12N21Pb20|Pb20C20N21H119I12Br8|FA0.05MA0.95PbBr0.4I0.6|1.810000193002366|1.17|171.0|0.801|16.03||['P-TPD']|['PCBM-60']|not processed|https://doi.org/10.1002/smll.201907226|WKvA9RzsXXStHhDv14NlHIy8520P|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.05MA0.95PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|43.2|0.53|1.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3866/PKU.WHXB201412241|WL--zbEtyH7ytOtismu22NkaYABI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.0|0.58|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180384|WLA_yM8FHVQ5kmKQF3S5cQ_NPvBL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|227.0|0.797|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|WLCUey0YKuk-QaEkE7YvoNYtWZhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.9|0.716|15.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-BPy', 'BCP', 'Ag']|['NiO-c']|['C60-BPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|WLTWajH1KAEvi7myWAHliPyj5JgL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-BPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.012|208.49|0.762|16.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||WLWRKMrbJy153CnwJ8hqPZlZ0MSK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C4H24I12N5Pb4|Pb4C4N5H24I12|GU0.125MA0.875PbI3||1.094|227.9|0.785|19.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|WLYxf9kMkT_ywfaHVlMcEqm532Ih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.125MA0.875PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|213.0|0.6|13.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ce00169d|WLmLyqNO0Z6bcwJQnpSK3y4LxSp-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||18.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Methylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Methylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|WLvIewRY4GMXtqWX3jw4_UiWDH3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Methylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.75|162.2|0.581|7.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|WLx1rRZ_Cvq0eNZvQv9-2ugbgT1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′- (5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.747|214.4|0.71|11.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr03507a|WM1fQfO1XHp8gz5OBrsNHUZiYEgH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|215.3|0.65|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.033|WM2P8ESiYuyg6wcztBmrZ_cQaSHY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.19|81.8|0.497|0.6|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.03.096|WMAHM5GzE1YTpACwAtq_qC6Tki7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH52I8N11Pb10|CsPb10C9N11H52I8Br2|Cs0.1FA0.2MA0.7PbBr0.2I0.8|1.690000180206629|1.18|201.0|0.782|18.5||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41566-022-01033-8|WMBUS9uL5v4_-ZhDQEtMhs7sBtNB|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.769|118.2|0.629|5.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|WMIfcyp8dhn1ftGLmWq9ZjCKo5yi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.015|8.959999999999999|0.61|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta05378a|WMLP7KGn-XrauLN1MeyY7SkW2iFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||0.95|196.1|0.57|10.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|WMPjgh7NeVKIPoLrpoQMDl-c8efB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|115.5|0.722|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|WMQ8UHb9FHb-UFX6NmmhbHmO15GY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|205.7|0.645|13.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|WMShOF3Y8IybOqyA9644oxBDMUN2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.8|0.767|14.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|WMdTzPsVI7V1TDR2Z5PN3CSmzlzA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.0|0.67|16.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.6b00039|WMlWrHxwxamUcOgYtKfazjBtONGx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|175.7|0.69|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|WMmawZMNAFbvVK6Dv0NW-0dzwlTi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|217.0|0.6940000000000001|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|WMqsIOZFAHtBl6lprTNh5e7pGzIi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.1|0.711|16.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|WMzWpkLKtlLxOPjjtgpy7wK5sF40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.0|0.657|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1016/j.electacta.2016.09.138|WN-CNLwmZqX2wWv7v6ziL4h252L4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.49|9.36|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b08075|WN156a33FUey94LBktFa5ATmRNTk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|235.0|0.65|16.1|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|WN29uRr4gjcjZXxkwn1qDD67aHhL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|181.0|0.687|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|WN5T92rkm_T8xo5N_9NW71lJZp-8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.2700001354215498|0.21|276.70000000000005|0.29|1.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|WN894jAQbgzElzLcaOLgRwOyLKwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2|147.7|0.785|13.92|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104241|WN9thcLbcQIZ8tOv1jyp946F5BvC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|238.2|0.7909999999999999|20.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'PCBM-60', 'Al']|['PTAA']|['PCBB-S-N', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201903691|WNGkzbbS8TIcb2gqMt8egdv1zFqB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|199.2|0.524|11.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03593g|WNKw5U4EDoVuWUmsgv3DOopORMWc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.13|233.0|0.797|21.0|['SLG', 'ITO', 'TPE-S', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['TPE-S']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/adma.201908011|WNSKITt4VrvbSmVFYH5NclbpC4rp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPE-S', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.932|153.25|0.374|5.3|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|WNSZpuD9xB84-PsGFEnFkEFTTD7i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|151.0|0.691|9.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE05|WNWuijJ3p7WehwlJsJlV4CQi_uM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|200.9|0.77|15.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.09.293|WNZ-UOZBWxF-qhts2LKYjEEE2HUz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7929999999999999|111.0|0.413|4.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|WNnD8Dm68W4baoOYCeeHslp6kUg5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.432|93.5|0.716|9.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|WOEXTgdPGSWSEBLBC1opfbtADRFb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|220.3|0.7490000000000001|18.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|WOGNLpSKQTKOqxk5NbhzgtE4JL7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|219.6|0.728|17.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-018-0203-7|WOQP62xL-P9MTFhsa3Y9zVWPRhsw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H600I300Mg9N100Pb91|Mg9Pb91C100N100H600I300|MAMg0.09Pb0.91I3||1.04|228.0|0.6|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.05.090|WOQVdkEpnkkglnF3Glx--iDYBYRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAMg0.09Pb0.91I3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.06|207.9|0.69|15.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|WOYjotOZYNwpo2BiiP6X1qH8j2yM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br75C85Cs15H439I225N156Pb100|Cs15Pb100C85N156H439I225Br75|Cs0.15FA0.71MA0.14PbBr0.75I2.25||1.18|196.0|0.8|18.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|WOaXmtrtUtYlvRk71PmPnCWgDtK9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|213.22|0.64|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|WOjr0YEQ1O_PX6R-xTNKkKPysEFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|196.5|0.68|10.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.123|WOllffaeGYLfMl1AKvEowqsLDcNO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.627|38.6|0.22|0.58|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|WOrjb7xJM5LYORivhJ7klNSyUDDN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3||0.76|191.0|0.66|9.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201401641|WP4w2RpDjruBbkzqsR-Sp3uIu7sj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.11|225.2|0.6709999999999999|16.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|WP5rdm7nhggiPoC55x1ejD46N80g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|210.6|0.72|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.034|WPAHcUBZROxOkMPFxUV_hhdWwBl8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs4I15RbSn5|Cs4RbSn5I15|Cs0.8Rb0.2SnI3||0.48|64.2|0.6|1.93|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|WPF_DLVhZ0E2dU5bGB7n6eNf1tlk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.8Rb0.2SnI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.16|217.0|0.72|19.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201600767|WPGugJMmrQkc5BImtOqXmgnhqaPm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|142.89999999999998|0.58|7.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.212|WPIp4TgX92mJ8_yUez8FciUzb55g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.145|222.0|0.72|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|WPPmcxZZuAq34NSwzZjscaT9dwH7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.08|250.6|0.76|20.35|['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1126/science.aat3583|WPVrnvlCmsa2xs49NpApQN_RTATJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Butylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|WPXKPwWH8ntEAwuy7_wFa9lwlZ2k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|5.0|0.517|2.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|WPdcXy3aDFGUW1C5c-Rt9BxzdcJR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|200.5|0.635|9.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.04.019|WPkMsBVff-fUljRexkyXhBL-gSYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.06|234.0|0.735|11.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|WPscSAcN4dUxUxOaDvdfd1Vb6I39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|WPuFGXSghQ9YQiH6618jhF1WYoLg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5500001652782691|0.99|208.0|0.7340000000000001|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|WPuZ92QSTgLas6EQPG4Cy5vYQBW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.4|0.71|15.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201604153|WPuqT0DJpRp6xIC0_HZ_ky0inLi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|115.8|0.58|5.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|WPz0Mofo9M14Jvye6Qk0i8atu0Fn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|197.0|0.7120000000000001|13.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.8b04078|WQ1tGVaFZU0Mf2Y7pAodC5jSdEGq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|214.3|0.76|17.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.orgel.2018.09.027|WQ6E3Q-z0SsrP8kEjo9eGNjKC0W8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|227.0|0.708|17.48|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.060|WQ7udCDp2jnYseMhLhq5WC3_BLx8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.038|209.81|0.657|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X22', 'Au']|['X22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502536|WQBrvhOj4AOzBspGZqNuUoUevehF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X22', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.1|0.78|19.57|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|WQMGJFom7T23z2UWOUSiCgKusaOc|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|224.0|0.7340000000000001|18.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.11.004|WQMI9grdIhXsIlgPlatSXA8et2Rh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|239.0|0.68|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.05.078|WQReo1q5qJCnv3DlaYl6FJl9Mp_h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|174.0|0.64|8.4|['SLG', 'FTO', 'TiO2-mp', 'SAM1', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'SAM1']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|WQWF7RGNzY2FUaALInH2fTQQBKvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'SAM1', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.5300001631456466|1.07|230.0|0.677|16.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|WQXkmQu3TnNs9GNK5Mglm-oLgP9i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|95.0|0.19|1.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|WQYvbkEX84vcXX7hKEbUTDpHmb6F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.9|0.6970000000000001|14.25|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|WQZ_cQu3QotnEirg_qSjNbSVLnAg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|192.0|0.62|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6ra28669k|WQalZQfX-YUc2MQSfwhnAI0Cpmpf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.23|155.6|0.727|13.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.202000501|WQeZCxwfu8XoL3Ew__iwwcq8DOqf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.855|131.2|0.522|5.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|WQzjcNizdkd8zSj0wZwDTgUqLd1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|WRJLDFFN92ycb-KwM4tKayBISi1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.2|0.73|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c4nr05975a|WRKEXh9Yox1BWk_oiWsIrUQbJfyR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.647|98.2|0.591|3.75|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/anie.201405176|WRMkyF_rYwSOURt3eybAR8lC_kHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|210.0||13.78|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s00339-019-2383-5|WRZMzaNwOAyr-I9W5exK_3AD2E2G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|163.29999999999998|0.65|10.17|['SLG', 'ITO', 'CONs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['CON-10', 'PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c7nr08797g|WRap7bihfyMHtUKRFHCacjngzCV1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CONs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.0|0.69|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|WRdw8q1D2MoX7lID6F7yv3zgIhCR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']|['Carbon-nt']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900302|WRnHdpBaRUnlJ6EmcCSsy_5wyNIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|154.0|0.46|6.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta03180c|WRpnz8_5RROOFRbEPXGKLcH9xbdb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2960002448251005|1.29|43.3|1.22|4.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|WRqgpEfDX0kU72ijg3wH2i38aHct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br41C95Cs5H491I259N174Pb100|Cs5Pb100C95N174H491I259Br41|Cs0.05FA0.79MA0.16PbBr0.41I2.59||0.87|61.0|0.256|1.36|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201801403|WRsaeQPatwMkv7FsihRnd9DSoB6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.41I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|218.7|0.72|15.73|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5EE02155C|WS62LnWrlxkJSaC1opTwWf-TYYRo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.0|175.10000000000002|0.66|11.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|WSGz3_rsOkm07mWVA3P1y6o3oTaS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|163.0|0.747|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01517h|WSL2kWpBc0CRDGm6Eyr1g_tFHRFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.88|222.0|0.77|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|WSNva8ivFoE5TXi2f2fKyAQGBdge|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|0.4|0.22|0.01|['SLG', 'ITO', 'PFBT-Na', 'Perovskite', 'PCBM-60', 'Al']|['PFBT-Na']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms8348|WSOI8PMxdQFIf1I1Cfez9oorb_CR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFBT-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.03|215.2|0.732|16.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']|['Spiro-MeOTAD', 'Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25975-8|WSQQoJDQF-CO8dVCrxAOQ6SmJ2Np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.0|0.66|12.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|WSTaMCK4fc1PP-MRhMG7NIjITcKc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.14|25.5|0.7140000000000001|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|WSVbognESCiRRdsgopmp6IywWoKZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.75|14.7|['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']|['Polythiophene']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-015-0755-5|WSWgkdE81d0hDNMOjtq7PBp3BHjG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|211.7|0.52|10.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.100305|WSa-cfyDNDgA9CkbfA7fatJgTilb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|148.6|0.63|8.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.027|WSa4OJas7wfybqTYzLQBBv1pjik3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|148.4|0.431|5.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|WSex_HTIfV2z_JFtJi55lXTp1MMT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||0.96|219.4|0.58|12.22|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|WSlk-Qhdfg_W4vaumMvMqcMlU0G2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|149.0|0.77|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta11128b|WSp3jb4S5nB8HRvCTjmVVL3b8DR4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|212.2|0.809|18.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|WSpgFv0ZU1mhU7ROI3cXO6ZYzJbj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|174.3|0.65|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'BCP', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|WSsYozK_cbfis0gZsRVNiNym5OcN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.09|206.1|0.619|13.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|WSsZROm-zakfS--q3DkvvyQG1kWo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.6|0.65|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|WSuMOzbgdsYnOvmy8qxWEEm60D7i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.111|222.0|0.7559999999999999|18.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800055|WT-FoVb4AX76ZTCE97EDINJ9-Grc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|217.9|0.7190000000000001|16.97|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|WT2RzY2DF1zrjrc_ML7LC79PoNmz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.5500001652782691|0.65|178.9|0.614|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpclett.0c01859|WTCf4017t8Ge2U8deLvk1rEnlHEm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBrI2. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625||||4.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.075|WTDDZaf-GqsAIpcdPo5tgUpouZqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.016|190.5|0.7709999999999999|14.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|WTN4ogiLUFkerLjutFgXEvRvSPnE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|72.0|0.61|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|WTQ4_eTCDhN27wkErNuZLHBIXk1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|143.4|0.497|5.46|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|WTRFNdleteMgAFTnP-2J9YGLCrYT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.6|0.6629999999999999|13.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc05252a|WTe6rjdJYyiXASh_qFITZfXdUs9s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.007|203.8|0.6970000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-03766-4|WU38vOxhnttH0L2xx2HTL_ndDwDr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C17Cs3H85I57N34Pb20|Cs3Pb20C17N34H85I57Br3|Cs0.15FA0.85PbBr0.15I2.85||1.05|211.7|0.772|17.2|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b03323|WULpyVbL_gMb0kpEiVzYcEkMgEeo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.95|175.0|0.71|11.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|WUWCAkevFsG-LOXP0DzKaJF8XikH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||193.7||10.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|WUZfJAnN22OoO2lkRsHtAhBmTDGi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|218.0|0.53|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|WUZlJPKThrnOnd8bSqp8XGduti6P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|194.0|0.723|12.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|WU_zqJe1F8zlghFCn6CcWeeOvJEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.05.019|WUboeXTVS3frm636M4J7jIEgEtlT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.3|0.54|10.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4979865|WUh3yE_guC-ZWw2eqk0FCYhio3NM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|||||['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|WUmMVXqiLy31bsp1ipvnT50FgQBi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.9|0.736|15.86|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.electacta.2018.08.117|WUqP0rXnFzQnWFQsejRK_7zd5SVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.7|115.0|0.43|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nc', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-nc']|bulk|https://doi.org/10.1002/slct.201800771|WUr3xIMUSEeadHm9WoUlw0NW2z7a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nc', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.010000214328594|1.2|102.4|0.746|9.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|WUs8JJ1ynIj2YnEBU_tVrvXyQev8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.919|194.0|0.785|14.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201800191|WUw8TisZrT7duLpFCRV4mSzAqZwL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|220.8|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|WVGLcBRpyawwRaTBDRV3FZeolTOn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|1.6|0.7609999999999999|0.11|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PTPD', 'PFN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|WVOoBBKEklEPsuzYHZ8UByf5x0CL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|224.0|0.738|17.78|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b08582|WVX4tSYhwCWOUEAMA_cTmAigxV0H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|190.3|0.589|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5TA01730K|WVbQ295Kz0-W9xVX_WEEH4zLKcYw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.42|75.5|0.773|8.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|WVfhq2-kBSB03PCyGabXQPivgWgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||232.1||13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nj04448h|WVunBRsbWFKyrWj7DbMK9jF2XiLf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|162.7|0.7979999999999999|12.23|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00757|WVzB9r-IUCilQqjwKGoti8OxGDjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.6|0.66|15.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|WW7HJSbmdU__SIoWvLIo8ot20evs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|WWAEzNndihF4Pb8rmOYYvt5cUh33|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.8000001919360546|1.192|117.5|0.7829999999999999|10.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.04.012|WWB8JCiZuk0tsW8caMQwir9bFHje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|15.0|0.356|0.34|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|WWDNgoKYOhhQSIiLlpL_M85-c8b3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.0|190.2|0.65|12.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|WWIyL4cbALjXjHJ4EKssdtPUF61W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.69|14.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-017-02039-5|WWKAv1aoYS4ndZX7bwXNj-v85BtK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.948|191.0|0.69|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|WWNr3UMzF-ta0Riad8vyRc66Vex3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|140.0|0.627|8.7|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|WWSDo5zes7fiwGOOse2FOzxm0IQ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.8|0.772|18.46|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3389/fphy.2019.00166|WWYrULNJqD7QjW1QLJ0m2mcXv061|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.73|252.8|0.65|11.96|['SLG', 'FTO', 'TiO2-nc', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nanocones']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|WWbrphVTLHIGP8FoA818PopIyG69|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nc', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50Cs50I100LaPb49|Cs50LaPb49I100Br50|CsLa0.02Pb0.98BrI2|1.9190002046251604|1.01|114.9|0.469|5.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|WWdYpsyVvZlPP17j7nk9n7m7an6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsLa0.02Pb0.98BrI2. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0590000000000002|237.0|0.754|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|WWtR6seO0Z959jiyZkhtoBXnfjLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.70000000000002|0.79|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201600285|WWyTyGFncUToHQ51kN1ayoQosLCL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.54|0.6|0.652|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|WXAY2EyZXNnZQjaQ6yM5Gv-d5Vq_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.1|220.0|0.74|18.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|WXIpF8QZNmn4oNYM4CBITU46a_0E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.0|0.71|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|WXL5060mJAfW8ZC0YbQif4kfNndu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.0|0.73|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1039/c4ta05196c|WXQSCy4hhuiSIObEG75SNUIxWhyC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.757|284.0|0.7090000000000001|15.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|WXSdGLj5j8XSzydg2aqGl3O3O1gk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|WXqEiCtqgvzRMRPQfZAtJCoquMOA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|131.9|0.647|8.27|['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|WXqJ5C_caom8-DS7oow0_pHSk_cU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.83|74.0|0.51|3.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|WXstZ2UPUzIVbwAjAQ7KAUSRziEw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.952|186.7|0.688|12.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-3-DP', 'Au']|['2TPA-3-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|WXvpMcP2vor2APojCe5Z_0epSJ5C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-3-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.03|195.9|0.62|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|WXytcRppwrOuTVPypUJEYkttnqLs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|204.8|0.758|17.71|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|WY7TW5BGOVmaiofxU4sn8TQlrNDg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.023|5.5|0.945|12.1|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.310|WYAQoTB_IongfpWDaUQyM_8sAnbS|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|228.0|0.777|19.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|WYD7Vgf1zxueii19YgIrL54ZWk_C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.023|205.9|0.66|14.19|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|WY_wd66ZZD2_Tifg90TW6BHa7jV9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br120C88Cs12H445I180N171Pb100|Cs12Pb100C88N171H445I180Br120|Cs0.12FA0.83MA0.05PbBr1.2I1.8|1.740000185538186|1.25|190.0|0.815|19.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-05531-8|WYe2G9mNUKP9rqn2E0JIxUUXVBlA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.12FA0.83MA0.05PbBr1.2I1.8. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.4|54.0|0.45|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']|['Carbon-nt', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501520|WZ1h5kdwgYDT7FPiT-wRdl0IGzlo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|153.3|0.7240000000000001|9.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201503160|WZHX-ggR100iQO2Fuo5HByaA0D9Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|207.55|0.7509999999999999|15.91|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|WZJiDbGNJ2GSfapHbHsuG7XX0KEu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C40H109I19N32Pb9S20Sn11|Pb9Sn11C40N32H109S20I19|FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05|1.2400001322226155|0.67|272.0|0.707|12.9||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.1c03213|WZTltYM4gcCRMxk1upl15Os9PCsk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|195.2|0.5539999999999999|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|WZgw4xntvKnLj64rulJIfRCc97bj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|229.4|0.746|18.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|WZoR6RfIbGfHJxLJz2F6QcWOdQH9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.6600001770076949|0.87|129.3|0.61|6.85|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|WZsOCkks1dvgWHD8w9LQRw9I4Ldq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|201.0|0.51|10.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|W_AdS30dy02nFMFeByiMs6QqG4KI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|243.2|0.73|18.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|W_FvEh2WKQmAP6v5ta2GMMmdeSAf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|188.0|0.68|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|W_JLALEik0OOhfrY5hNW8czznNvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.5|0.755|16.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|W_KFOAp91j84piHgiIhk2Xvd96gf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|136.2|0.65|8.13|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/C6RA07549E|W_R__dvPfDkfjnbiekw_EOT5nI0c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|130.7|0.653|7.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|W_SkwxVUygRoRrILVSbNgbblVipU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.44|185.0|0.529|4.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b02555|W_dyx9Ayo0fzUQ4dB5-uCzuX8YYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|229.6|0.71|17.11|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jechem.2019.10.006|W_i4KFmX5epWUmFUgKBWokgAlj4C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|W_iW3HtmAZIJOuZR8fga1nhtrpXr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.03|245.3|0.7709999999999999|19.44|['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|W_l9604xMkoQ1t0pem5swF14mOsx|a perovskite solar cell with the following device stack: ['PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br9Cs20I51Pb20|Cs20Pb20I51Br9|CsPbBr0.45I2.55||1.14|99.0|0.64|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07968d|W_nQppA2k7mLBRMJQfqB5oNi12A9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8909999999999999|114.2|0.59|6.13|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|Wa1D_0SRRCZKrCcbFv1lCnZmhdMr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.087|234.6|0.7090000000000001|18.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900020|WaAft2bUnM8oGtZscFS6M2DTP6iL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.959|202.3|0.677|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']|['C12-silane-SAM', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc00128e|WaJyOI0Sj78ffUGQ6S6MzteHw32c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.072|308.9|0.716|16.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|WaP_tThbX7dtSkS-VKn2t7xLvso3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.84|78.0|0.64|4.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|WaSh9dreuzQIY2AJ23CSoioCsTKK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|173.0|0.59|10.8|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c3ra43228a|WabbtBedmptlUgUGja5CDM4l2WUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.0|0.75|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|WanQnmC3znF3bgCHr7srk_LqSOGN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|224.3|0.62|13.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CZTS', 'Au']|['CZTS']|['TiO2-c']|bulk|https://doi.org/10.17222/mit.2017.178|WasHBejSuI0mkEy4egRFnz9jsBHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CZTS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|186.2|0.703|13.57|['SLG', 'ITO', 'NPB', 'Perovskite', 'PCBM-60', 'Al']|['NPB']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03120k|Wasv34VJzNAyo1qsp2-wF2OBTMoV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br47C93Cs7H485I253N166Pb100|Cs7Pb100C93N166H485I253Br47|Cs0.07FA0.73MA0.20PbBr0.47I2.53|1.6000001706098266|1.43|230.0|0.721|18.5|['SLG', 'ITO', 'SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3']|bulk|https://doi.org/10.1021/acsaem.9b01567|Wb0-hbUGcHFznqblGZ8NGrvqNcob|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.73MA0.20PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.604|12.7|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|WbCNpuolVHi7P4TdHJ8DwkMv2j1c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.55|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02734|WbDEJaR2ZXuTjGY80BxuF80-4oEv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|0.91|102.0|0.66|6.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|WbMlwQclT3PaxonDqQsyVCmlbemX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|143.3|0.42|4.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra09110a|WbPBHaLojyAJz3F7-b8UnIPWQ1ux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|174.0|0.737|12.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b08489|WbTmxhvYHBy94hD7lmxkhE9OA3LA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.640000174875072|1.02|96.4|0.565|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|WbVYGwjZMFisCdqCUtkIsbZK3c5Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|175.0|0.59|10.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['ZnO-c']|bulk|https://doi.org/10.7567/JJAP.57.02CE07|Wbdak4b0b9JdorVxHnROqckwiOtv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.07|211.0|0.61|13.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC', 'Zn(acac)2', 'Ag']|['PTAA']|['ITIC', 'Zn(acac)2']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|WbqLk1GosTJ2B_6A3_kFXFWKGttM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.024|195.6|0.65|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|WbzWAJcel70WsdxIKahlX_2Tc406|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.61|79.80000000000001|0.31|1.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.08.022|Wc2jTBRlIbZf3gxw7JtvOsfAJIC7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.1|0.79|19.79|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.06.020|WcAZ24m0mXWO_EWoILaW-Aod9pSx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|169.8|0.59|7.54|['SLG', 'ITO', 'TiO2-c', 'Ag-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-nw']|bulk|https://doi.org/10.1016/j.solener.2016.02.016|WcCaAmqef7UlqsnQRIEiRigmVrpP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Ag-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C8300Cs17H41500I24N16600Pb100|Cs17Pb100C8300N16600H41500I24Br60|Cs0.17FA083PbBr0.6I0.24||1.13|239.0|0.76|15.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201607039|WcErW521PpYDoQGR16MPW8MaMb6p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA083PbBr0.6I0.24. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|224.9|0.7559999999999999|18.03|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|WcKI66NpoFpY8WqCwiQBD2vFd_UL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|194.4|0.69|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|WcM-CugZvuqDtPgKOxTrsG06Db__|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|0.96|5.699999999999999|0.327|0.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|WcNbhDwf_WmEEcoztJ3NijZva_z3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|213.1|0.718|16.01|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|WchNA0rJjJVSOKzBM2sHsd1M_C7R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.132|222.8|0.747|18.85|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|WcpF5emvXtbzBmKfOBrLOuImmtYx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||13.98|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|WcxEqBBj9jy8bOuPhGwS4TC7jHht|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|138.0|0.397|3.8|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO', 'ZnO-nw']|bulk|https://doi.org/10.1088/2053-1591/aa7fcd|WdCcFIkVJBJZ1r8UAYcSGVAdr2OI|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.3|0.7490000000000001|17.92|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900557|WdRwme95QSvsv4D40TJfmxGL8sM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|205.4|0.682|14.38|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|WdUd1V6NqagdipBHtsiLxwr1y_gm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.0|0.732|14.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|WdUz9fl23Td5S7U52vqbYeJueYGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|146.0|0.49|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900922|Wdg4lSLOzGOyXAZyQT2uwkkWvr3G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.223|163.5|0.7959999999999999|15.53|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|WdiUrcNUG5Knmeex6AXmjux-XrTx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|119.0|0.33|3.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|We1vR38Il9ejdwUU-9IlAw8unY0W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|170.0|0.53|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|We9_edaVLOR6QTsBc5w9NELG7ECc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|159.5|0.63|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|WeJaZQpQpvUb2lMvBLS_lSz2959j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|185.0|0.69|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|WeaxjSHBi1fZuOxsKPN3WQ4wjDms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|237.3|0.72|18.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|WedTDZF6SLqbdyUS_1SkJKhocV6N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|185.0|0.6729999999999999|13.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'ZnS']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502466|Wedt1_au4FaPe7--_gDqayHgPLcE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'ZnS']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.96|224.4|0.6920000000000001|14.91|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900140|WefpzsFSrxl73H5i9vIYBZ5GjWcc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|142.0|0.607|8.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|WerkHDc43eukv-7LwDQ_N8cJEeoa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04051e|WexF4JlAXmRj4TmaqdNbea5rlyWa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.7|0.76|19.11|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|Wf2-A0fBWZcEXgahJ2EeRM0vGTSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|218.0|0.77|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.202000197|Wf2uDg8WNZ6hNB6CNYkTH6AJs3aH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|162.0|0.6|9.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Glycine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01526j|WfAbU8SX__tAdGdpNNl98oS35vYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Glycine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.06|221.0|0.713|16.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900125|WfDaawjV-77HdI_o_gFw277dSF8I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|76.7|0.62|4.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|WfMidOGpwcwH9cvsbvm9eHYu7JCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|0.99|223.2|0.508|11.22|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|WfQq-QkMWAgz5wAhWQ2ekAiG7WFy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.928|133.2|0.63|7.83|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|WfaRCS8xpuDtCJSWo6E2LG-Xerm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.91|206.4|0.54|9.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12139g|WfcsHHlkqbnHk2zHlNMtv6kG1w43|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.11|218.6|0.76|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07617k|Wfe8JEUPMm-tkMNLFFUBKB81x6o1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.047|94.4|0.58|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|Wfl5b17wBuz2vgSQFQQAEUy4nmbw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']? The composition of the perovskite layer is MAPbBr3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368||||7.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|WfnjTJDlrsdiIqL7j4f4BgJPhRrk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|55.5|0.68|5.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1016/j.matlet.2019.126619|Wfr7i-qkVFLVr7Cv_15q2uoxqhnd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|206.8|0.703|15.57|['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|WfwtJX5JFlKsc1vVthYIUDDBFTet|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.27|172.60000000000002|0.48|2.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700224|Wg0cLuFlLhGtfQohMx660QrzWNu7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.007|180.0|0.68|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|Wg9YWzIsOihUxRwE86gvfKf3RnHJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.38|19.4|0.32|0.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07739g|WgByhmFaXPuFwRHIszkzAPLQILqW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|142.7|0.768|9.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|WgT3qTDSkfZKwLXLF1W-JsSkyxyD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3000001386204838|0.099|35.059999999999995|0.29|0.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|WgTNMJ4aCB_BllOEvriy7cqXejQe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FASnI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5800001684772036|1.07|222.6|0.755|19.6|['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228320|WgeVr6AxlJVjeiGmdyu6OwwjWzbD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.0|0.6859999999999999|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b13868|Wgf_xmNkYSpQQyePidaaJpqWvFrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|1.13|175.5|0.7709999999999999|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|WgjGqNKxneHTyKdBkci_TP0DwMDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|224.2|0.772|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|Wgk2NaGpO0QYm4aNGqYWZG5f5ta6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|219.7|0.63|15.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|Wgo8x238l8YLTf8A-JDCKAFnmQiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.13|229.8|0.725|18.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|WgyyDXwbVCki8eNh4MLpPlakjmSU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|123.0|0.472|3.34|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'Ag']|['CuI']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-018-8902-x|Wh6WYrNEa9XpyO_Oz7dRo4sz3WV8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.113|230.4|0.727|18.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|Wh8M058o7n6h8wlr2h-p8ivQZfWo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.93|203.9|0.59|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01691|WhFaGpDnSguc5fh-bbir6-SEdyqT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.2|0.687|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|Whj7FwZ2_nnbtPVKjUYYo8O653an|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|147.0|0.57|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|WhlaeSl18tzFOO9m4KKFvMR8BIoa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|189.0|0.52|8.4|['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']|['DFH']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02983d|WhvhRu4ZDtLvzMlIqvHuIIpVQx9Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|133.7|0.56|6.92|['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1088/1361-6528/aa9ac9|WhztPifhYyFlotlATNRnh79gCHTA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.0|185.0|0.7559999999999999|14.0|['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']|['KY7F22-np', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|Wi3wYZq2-5HAbj8eKqwk-SztXy42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.087|215.0|0.696|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|WiQu5oFsGjrvtprO0xKimEDvxsAb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.13|226.7|0.78|19.98|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|WiRIbY9jBrHAyoTUAEGGXLEPxF5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|156.0|0.35|4.86|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DORDTS–TFBT', 'MoO3', 'Ag']|['DORDTS–TFBT']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201504293|WiUC2tvmThyCaVmaL9u5lDOIcbfA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DORDTS–TFBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|127.0|0.645|7.75|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.028|WijbCwmT100HpPOiWYz_EqIZZxwz|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|214.5|0.75|18.07|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|WivLdClNRI_b_7L2uXydqEv2k9rZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|66.5|0.154|0.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'H-PDI', 'Ag']|['PEDOT:PSS']|['H-PDI']|bulk|https://doi.org/10.1039/c7ta02617j|Wiw7ALYlo7pAJXUW8uC-c4z0GHLr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'H-PDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|227.2|0.723|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06619|Wj3I7O2s_0IkpTvywJjf5oiJyCMQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.075|211.8|0.63|13.16|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|WjPu2VCRnv90WAiah5G2q6wZdkOH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C100H567I300N133Pb100|Pb100C100N133H567I300|FA0.33MA0.67PbI3||1.08|231.2|0.77|19.23|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604758|WjVBipA0X14OIppBB4n0hFu0NYzg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.33MA0.67PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|185.0|0.65|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|Wj_Va2KBv8M5EDVPVP-KXA840-iJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.0|0.72|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cphc.201900856|Wja47yCvPjhALbNoejf5d2_tIf4y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|1.6000001706098266|1.1|197.0|0.75|16.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126518|WjmStQG3wevGC28tFtFS4jC5khvJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.67|45.0|0.368|1.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|Wjnrt6-uj6OPq9hzIlSsQKN5LU9w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.01|227.8|0.687|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|WjvsELW7MOplw9HIpuQK_x3EFsyX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||1.04|205.0|0.8170000000000001|17.54|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b07149|Wjy40ZRNC1XrWzvAAzcvRVWLzI3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.34|65.19999999999999|0.69|6.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800075|WjzvQI0PK10vM8V1ChSi16r6NEk5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br47C93Cs7H485I253N166Pb100|Cs7Pb100C93N166H485I253Br47|Cs0.07FA0.73MA0.20PbBr0.47I2.53|1.6000001706098266|1.098|226.2|0.746|18.4|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.9b01567|Wk3FXryp4Wze_ZheJC2iTbNSYn6c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.73MA0.20PbBr0.47I2.53. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|194.9|0.63|10.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1557/mrc.2017.52|Wk44mtcy1YW54MGQ2coOPE9X0qc5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|141.0|0.58|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|Wk4rFkLH_-bmf-txxaBO-hRtmK0z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|201.0|0.6809999999999999|15.4|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|WkPV9LwSCPSFjVZd0xhTp3F9dsYD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|191.7|0.64|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|WkaW2hacVnvFVmmO_qdPqb3A5e32|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|155.0|0.52|7.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.212|Wkm5ybKyqLZfoDiAcNmuxLZINXom|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.09|225.1|0.8109999999999999|19.89|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ee01675a|Wkq2VgZ2aWaFDc5uJzT-4ssqyZdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.091|175.81|0.763|14.64|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||WkrCDoxXuwr_N5Njcxkxsnm0KSXa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|217.4|0.715|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|WktAUSUzCDhOpKthDUNslJBeCoeo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.91|167.2|0.61|9.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']|['rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02710a|Wl6uB9VIktjN7-9gUYWGfxonI-u0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|191.9|0.73|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-TPM', 'Au']|['TPA-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|WlSS8ueuy_MG36z2f0POHrdAk-I3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|200.1|0.7|14.59|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|WlfF7BffYSFuxHFuFgdiZuOSLGbG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|1.05|193.0|0.59|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|WlnblNtZveb8fuMgDWJ0pSFcCkym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.26|77.6|0.645|6.31|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|WlqDJH_iT4w3h3F4vPr6xCyGr26r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|229.9|0.76|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b11229|Wlys6mE3xlJ6l6pidSY71CmsXDAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C5Cl12H30N5Pb5|Pb5C5N5H30Br3Cl12|MAPbBr0.6Cl2.4|2.8300003017661304|1.13|8.5|0.43|0.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Alq3']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.06.004|Wm0b3z7-qUTqsBXB7LlTTHnM2s40|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Alq3']? The composition of the perovskite layer is MAPbBr0.6Cl2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.3|0.61|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|Wm8_E35sSxbpcd4aXusfyvDK9zZ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|159.1|0.633|9.84|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|Wm9-2MXANLUFp-3QqBF6BGIV6d--|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.97|182.8|0.72|12.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.09.004|WmChtiVCuNEs1CziClr8nIHGuMb7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.95|230.0|0.565|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S179360471642011X|WmOoBxiU1WPJmxo92aFjXQniMOxs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|163.05999999999997|0.5920000000000001|9.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|WmaCC0QZrR7Zt6JS8q5rzEnlIFIA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|207.0|0.7709999999999999|15.5|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|WmluFI0f1VZcy2pbvTVveMosX4fX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|189.8|0.7290000000000001|13.55|['PET', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|Wmu_ew4ZbesxWGebQsmYjBvTpPta|a perovskite solar cell with the following device stack: ['PET', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.408|185.43|0.627|4.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||WmuhjbntPQcgqvZ5c89fzEmPUSe3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|69.0|0.31|1.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|Wmw6FMLSnlAIAY_8nN54RHDTbVWm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|158.0|0.5820000000000001|7.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9027-1|Wn36W03Ux3A89mB00-MTJDoD2aZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.1|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2732223|WnITeraWG9RPULbULbEEAVPBQRCB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.948|195.4|0.6679999999999999|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'W']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ensm.2016.11.007|WnPFpyufKwKMlLPu7Q56Qe5sahTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'W']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|205.0|0.76|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCP-TPA', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08417b|WnUPNhQYNdyoYqkMM0meKKHf8BXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCP-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC100H600I299N100Pb100|Pb100C100N100H600I299Br|MAPbBr0.01I2.99||1.09|182.0|0.77|15.3|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['CuO']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1039/c7ta03802j|WnUtlUdmc_LCKS-JAacypi8na3mG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbBr0.01I2.99. -Br40C83Cs17H415I260N166Pb100|Cs17Pb100C83N166H415I260Br40|Cs0.17FA0.83PbBr0.4I2.6||1.08|227.9|0.7559999999999999|18.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|WnV7HCuL8wM99_ArTBzb9A_8NNBx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|223.0|0.75|16.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.10.003|WnZnT3hbTMrpJ9wuvqG_yVHR52V1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.1|0.69|16.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']|['P3HT', 'SWCNTs', 'PMMA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601079|Wne-ZS3HFLw0TiTk_24tSKMfx6FA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.033|232.2|0.748|17.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801717|Wnplzj0mDjntxcJksJ8GD8e9-wh9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|165.10000000000002|0.601|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1021/ja4132246|Wnu9JRYNcrgX28EC4ILW6ustF3_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01730k|WnzhhCd7hKiBP8Ydvj2crAzzSGP2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|183.0|0.55|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|Wo3VXhdKyfJcOlQWwmFIbTp_fne1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|106.0|0.715|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4905177|Wo6r5HmLZ4Vy-V5U88uduih8Zq_m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.214|127.98|0.626|9.73|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||WoA_6oQghQfF94RUNNHEjpqJEADn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.095|222.0|0.71|17.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.202001144|WoB1EVC3xhYqEs-0r77ltFmvRkp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|208.9|0.653|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00948a|WoHFOdU9Tl4wGbgLkhIB0PD3e1wU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|170.0|0.6|10.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b10803|WoPgSFhhU6zIPy9bL9AHt5saAfP2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.066|202.75|0.731|15.81|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||WoU9Prd4e35rxS82W2gTAQdt4JSb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||0.929|163.79999999999998|0.55|8.3|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9ta00239a|WoV5YRPfWOnHfvoWmNzTWeeB0PuJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|230.6|0.74|18.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01658|WobxMl7AzdBWbinRmbOV-2W0ImXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.12|209.0|0.77|18.0|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1021/acsnano.9b03098|WocDCXMdEjEmQyPAALMKM649JpJP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.94|200.0|0.39|7.4|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|WoclIO6BaJk4I6Bdpxnqw8Wm5PzF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|184.5|0.621|12.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu12Sb4S13', 'Au']|['Cu12Sb4S13']|['TiO2-c']|bulk|https://doi.org/10.1039/c9se00003h|Woe0-RF4BGRFn1iJh5CXkF879Qgw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu12Sb4S13', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|199.2|0.775|16.99|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|Wp03j7227oTpC5XuhgsABu9DLgW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|210.4|0.716|15.01|['SLG', 'SMPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|WpEuyfRW-55VFx2m2OD2TgYgeFCc|a perovskite solar cell with the following device stack: ['SLG', 'SMPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|205.0|0.62|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|WparUVghWGoRUpnbnEV8PyYj9tQp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|221.0|0.78|19.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|Wpcnop5082SugJCs6TIifWVyIFdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.05|224.3|0.775|22.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/advs.202000480|WpdvbHbNsfaIozHy8niCAIbQA4SR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.09|206.0|0.54|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|WphIJeujtY-n5hvqUqDCLRCZzXNU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.764|138.3|0.6459999999999999|6.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|WpijvaGsznGqBOElN8yxN_X8bKWU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C15Cs5H75I54N30Pb20|Cs5Pb20C15N30H75I54Br6|Cs0.25FA0.75PbBr0.3I2.7|1.570000167410892|1.088|219.6|0.6970000000000001|16.65|['SLG', 'FTO', 'PTAA', 'CuGaO2-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'CuGaO2-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201805660|Wq7upoL6jliaGgbEWXoKApQtpUro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'CuGaO2-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.3I2.7. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.99|233.4|0.71|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|WqJNLdXwBxVoAPs0AUew_T6qVXOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|200.6|0.725|14.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|WqMu1Daf9-5Wi0RVdGEzvmMTpUo7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.728|125.27|0.628|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|WqXqgiUZOlEYkg7shT_FLdV4yq6C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.8|0.73|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|WqYBhRwqUKxIAkJ6aHS8REMrOjVh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|157.10000000000002|0.6|8.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|WqarNKOrVZxEWyTOK50gpu75BKDg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|220.0|0.62|13.4|['SLG', 'AZO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.cej.2018.12.056|Wqq756FAUIqrQXi5NYdQKC818QOU|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.8|0.71|15.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|WqqT-nPo4f9me7BK89LDG2s_QabO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.97|178.0|0.59|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|Wqr5rJYFSLkF1F_G4Lgt7zlBgsoI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||6.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|Wqzx_a0WHwn8-DWRx4VLsvj6bBX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5280001629323845|0.93|205.3|0.746|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/2/024208|Wr1nf4iXh7Wo-dP7qceTorliBd9-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|219.3|0.8|15.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00400|Wr5E1tGT_arRO6bO3Wb_DUFsuomg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|94.1|0.618|4.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201500436|Wr67n6XAhNkQnunbQR1RjqobvWDn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|130.0|0.49|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz400638x|WrOHTmQXy0dASHO-LYf9y5f4eCpI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201707583|WrOM0AAvvGZah4USkmJA3toKDuaG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|196.0|0.45|8.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|WrT09rOVH6T9kvZzoRgRwOphMKia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|192.5|0.68|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|Wr_627qHl9VaCmP1jnwKszlTmlXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|227.2|0.7440000000000001|18.76|['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NiO-np']|bulk|https://doi.org/10.1016/j.solener.2019.02.011|Wr_i1yy8o7fAoGCL8c3to0RU2jwO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.047|210.8|0.6990000000000001|15.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|WrmZFZYexl_AhkKgerPEER3tFghw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|191.9|0.56|9.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9sc04900b|Wrpfkc19ZaF1COKneghr2yQdOsJd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsPb|CsPbBr|CsPbBr||1.336|61.5|0.7140000000000001|5.87|['FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ra00288g|WrqXhdSWM3hvG2-5mejFIJV9RBgy|a perovskite solar cell with the following device stack: ['FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.15|242.8|0.768|21.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201904945|WrwqvCDV-lXV7Kv6gEB1QQtC55Cp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|1.570000167410892|1.13|234.9|0.77|20.2|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|Ws5h0opJNWkae3E8R8ItyW4-ACWi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.0|0.71|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BDT-C1', 'Ag']|['BDT-C1']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.007|WsLTHv28VAGpcgHpbrq6hO5u3ug6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BDT-C1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C99H528I255N165Pb100|Pb100C99N165H528I255Br45|FA0.66MA0.33PbBr0.45I2.55||1.0|229.3|0.612|14.03|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.010|WsScfT2O_FPSOnstz15If0Z4e2Od|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.66MA0.33PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|210.7|0.725|12.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.06.013|WsqorXYm5Mp8hQL6W8A3-pc1ji8y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.069|226.9|0.778|18.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00997f|Wt5PU46MS-LYym3rnH-OmIfSRhnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|228.0|0.737|18.31|['SLG', 'FTO', 'ZnO-np', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|WtBjMPCqlDnu0yhorzbK2PBr1Ma-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.0|0.6859999999999999|13.2|['PET', 'ITO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']|['NiO-c']|['TPA-3CN', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b15130|WtDoj0g_p0gnvMJfYu9iyx40SRZU|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|226.4|0.78|19.5|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201804454|WtFUSsN7JTVgmu6Dv_Pd-D9l7uei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|197.4|0.595|9.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|WtOoGfxb9OLPk2X0CB4wfQos1Kf0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|51.0|0.49|2.3|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|WtWuwGxCecR_EdBZIRph7HQkAFAW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BaC10H60I30N10Pb9|BaPb9C10N10H60I30|MABa0.1Pb0.9I3||0.85|188.0|0.604|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|WtkO_8bEV0TSKGHqY7fzdf8JVOue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.1Pb0.9I3. -CsI3Pb|CsPbI3|CsPbI3|1.760000187670809|1.22|133.4|0.7|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.9b01920|Wtq6ha-MtQFbbmHTTSEODpJvm9bS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|228.3|0.6|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|WttiSKBlnnI9wus-kdMGG8Su1msA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|189.2|0.72|14.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5cc05879a|Wu08f532tU6fYIfOGMdKbbLs59Sw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.01|202.0|0.75|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst7090272|Wu4E0wasiqahu6Z-RNE4ceZhfUcR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||1.15|164.0|0.73|13.7|['SLG', 'ITO', 'SnO2-c', 'Ba(OH)2', 'Perovskite', 'PDCBT', 'MoOX', 'Au']|['PDCBT']|['SnO2-c', 'Ba(OH)2']|bulk|https://doi.org/10.1021/acsenergylett.9b02604|Wu6FKBhCH85AYHGWnC0bGVBZF8-8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Ba(OH)2', 'Perovskite', 'PDCBT', 'MoOX', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.14|226.5|0.78|20.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|WuFGD6FFt_oW8mvBbFzjTpfRUy6d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|203.5|0.6859999999999999|13.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-407', 'Au']|['SGT-407']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06716a|WuFwHYS52r9oBJ-Z9zdSRkU4ic4p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-407', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.78|137.10000000000002|0.48|5.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'Ag']|['PEDOT:PSS']|['BCP']|bulk|https://doi.org/10.1002/cphc.201601245|WuNIqV9oYh5KZUmPwG91HCCHM-y2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5800001684772036|1.09|233.7|0.76|19.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|10.1016/j.nanoen.2019.03.091|WuedEVTBAZgmuSgFfZ2ZI0anukGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|168.70000000000002|0.69|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|WukToGKYR9ZyoJW7JORyUpqZyzSK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.063|207.9|0.721|15.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|Wv-rCjp_x_zhqlOYKuyOWtRYhOhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|191.5|0.71|11.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['Phenyltrichlorosilane', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|Wv59Vmq-lx4BBFq3qPz33CH0msVt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|205.2|0.703|14.52|['SLG', 'ITO', 'C60', 'Perovskite', 'FTA1', 'MoO3', 'Ag']|['FTA1']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|Wv9Tif9fsV9ccwF1QpkKV9yrnyfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA1', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.08|252.0|0.7809999999999999|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|WvAXObNFrioJTxB1Via2FBuV8uo7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.0|0.56|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA07972E|WvC-YY_QMUjPTMtSBvW9oMs1xOF0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.02|185.9|0.718|13.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|WvOtMVL2UM5Vs8tGljkD-b1pMUfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.06|210.7|0.747|17.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee01145h|WvWgmatDmJq4T-X5KVH7PT0IkDAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.953|205.3|0.6|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.04.099|Wv_TrLznoBVqGbiSoOj4Vwn--RtL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|164.0|0.47|6.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ra16253f|WvqTZEhvw6IAV2HZnY9KwSWIG9Wa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|149.0|0.5720000000000001|9.1|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/LED.2017.2735178|WvsbNo4uUrTkVrcA0FSkp2mjDm_r|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|10.51|0.7959999999999999|18.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201703061|Ww0R-X2NCAtBDWn5Bbx6QObuyDlT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|187.4|0.68|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|Ww3mAqhd4sNMT8AUaMP_txcqgVax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|197.0|0.6920000000000001|12.7|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta09494a|Ww7Na0gQIhCT06Dsc7NCeodVGeJ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|177.0|0.4639999999999999|7.03|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-BiSe', 'Ag']|['NiO-np']|['NDI-BiSe']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|WwBZTR9hHhZny_rxGLsIwpP4Ksh7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-BiSe', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.71|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr09819c|WwNkvVPghNiZshZ49Qm1a43qH3rJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.7340000000000001|118.51|0.627|5.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|WwODt3oiZlHoyyI8njQAXzGCWkg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -Ag3Bi80I230|Ag3Bi80I230|Ag0.15Bi4I11.5|1.8600001983339236|0.54|22.4|0.373|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|WwOR9uLV11-BfzlZjVL7yUy8GQgr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag0.15Bi4I11.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|204.1|0.716|14.39|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7nr01678f|WwTGUKxA7zxlCVaxQpNp_Cmp8s-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.91|217.0|0.645|12.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/am5077588|WwdLmy4D1WUYBwksWzWZN_tnRlYL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.012|205.6|0.6779999999999999|14.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-03766-4|Wwsaowc13jPGitKTBZbTe4g74Ldq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25||1.16|184.8|0.6890000000000001|14.83|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ICO']|['Spiro-MeOTAD', 'MoOx']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.12.040|WwtxWV2oYrM6eZ7Iv8TFDkZP-JAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ICO']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.05|164.5|0.7|12.09|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|Wx-N1IG8Eko4cD5VPmdJcidQ0ynP|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|209.0|0.49|10.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|WxCgET5Pryz1vUAojf_15bxgbpYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||0.98|173.4|0.76|12.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/anie.201902959|WxEutryUCSJve0-8q0r2kpU5I5YI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.07|214.8|0.772|17.74|['SLG', 'FTO', 'NiMgO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta02652a|WxF0k6Jh0o1yoAcnk92VNuGXZ4zk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.2|0.799|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|WxI0QzuL_QhBOmRyR7rfQEsG60SY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.7500001866044976|1.01|181.9|0.69|12.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc07673k|WxNuvERfuqaVZil75LWiHPjAzzGa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.6|0.735|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MUTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|WxO0i8AUAkg1gQBVeyYnj6QdCmfk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5650001668777365|1.08|235.3|0.77|19.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|WxTRz3Xv7lQXvcHzQHC1xOZhfgZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br6C7H10NSb|C7SbNH10Br6|(N-EtPy)SbBr6|1.6500001759413832|1.25|48.0|0.53|3.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701140|WxfiJ74DmPdBf1jLlO0l75z8Qtwi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is (N-EtPy)SbBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|158.1|0.34|3.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|Wxfwmsk2tvhBS0SI_gXi0Nd5rLE8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.14|82.10000000000001|0.6|5.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|WxgFfuqLpsfsSZb13OS-lzdD3RHm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|221.0|0.78|17.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta10510c|WxpSBKxULpOGZCsA2h7FBxdZjTVw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|216.0|0.6609999999999999|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-flu-ZnPc', 'Au']|['ZnPc-flu-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|WxqnuhgdYIJvBAVs9Mh6D631OqGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-flu-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.059|197.04|0.756|15.76|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||WxvS4FBzQ4fEHlJALlLL8lOmR7u6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.71|97.8|0.66|4.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.56.04CS11|Wxy3UnjpO6lgCoN4W8jjW-AnWjZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.95|28.700000000000003|0.58|1.58|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201800346|Wy5Q9Je-g7rXe4PYwIFJOrjLc0DS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.143|229.7|0.7709999999999999|19.76|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|Wy6uA9zaKOIBCsFkR-33xn4lIUWM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.08|193.0|0.684|14.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BP', 'CuSCN', 'Au']|['Black phosphorous 2D', 'CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta06016b|Wy7qMtPq9359IE08nEjN62H2w5wP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'BP', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|122.6|0.5|3.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3cc49458f|WyBo5hFRoYNjA1nqYoAaoUxvNtO1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.046|225.09|0.72|17.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|WyIEbUkPg2QnoO2bao0qwzKov5dr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.34|64.6|0.68|4.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00358|WyXRaJ7BLphYDJhJZJtqjDdPbIL5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|230.1|0.738|19.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|WyYBP9JEdJ-vlq6rhnzKZf3tF8c5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br11C20H103I49N37Pb20|Pb20C20N37H103I49Br11|FA0.85MA0.15PbBr0.55I2.45||1.1|233.0|0.79|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b05353|WyYKPWCm2FewOYr9GwMfpf8JaPt0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|165.9|0.614|9.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HPPHT', 'Carbon']|['HPPHT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00605b|WyqxcTchTavFydZq-Soxccd6N24g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HPPHT', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|206.0|0.807|17.7|['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['F6-TCNNQ', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00218e|WywQii0soKCCFGyYaE0UjsI2XvHy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|185.0|0.55|9.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/admi.201901748|WyxUk20nY38isRaHpa0fkfYzC0TK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|148.0|0.7|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|Wz-a6klvFcB7VbnY63sSjMBzAraI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|205.6|0.718|16.11|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2752-z|Wz-cdeBV6cGT-EIDQbKOU7Oxo-a_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.03.027|Wz-lpG7kCjHLSgkJAiXMMtPqzMXa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|243.6|0.748|19.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|Wz630kc6roJI1S9R1bKnexADS6i7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br3C19CsH114I57N19Pb19Sn2|CsPb19Sn2C19N19H114I57Br3|Cs0.05MA0.95Pb0.95Sn0.1Br0.15I2.85||0.85|126.0|0.609|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|WzCWRoKT44PJ9W_9QCXLFTPrUqrG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95Pb0.95Sn0.1Br0.15I2.85. -C36F4H68I13N8Pb4|Pb4C36N8H68I13F4|(pF1PEA)2MA4Pb4I13|1.6000001706098266|1.108|154.8|0.6629999999999999|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|WzDHptSmOtjBoDDMi0m8NNvPGKhb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (pF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|131.9|0.581|7.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|WzKHh4xQLRdzDzljzYYiXemVKK_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|164.89999999999998|0.71|10.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|WzLIaHWns5jFxyIpEySK5Ad2V12t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.035|163.0|0.62|10.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|WzNpMGlNoJgcusuND1f62t4FvUPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|WzT7Ae3VwE-Y87zIH3q0srrifezp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|190.0|0.787|16.0|['SLG', 'ITO', 'CuAlO2; CuO', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']|['CuAlO2; CuO']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsaem.9b00070|WzTMxa1VlS2j8MJUQj39gXYnEFlc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2; CuO', 'Perovskite', 'PCBM-70', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I250N166Pb100|Cs17Pb100C83N166H415I250Br51|Cs0.17FA0.83PbBr0.51I2.5||1.12|199.0|0.679|15.1|['SLG', 'FTO', 'TiO2-c', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-np']|bulk|https://doi.org/10.1016/j.electacta.2019.135280|WzVW8z4eYRQviAW_mAWKTsLHKyCG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|216.0|0.753|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06334b|Wzhb0Bsklq0hzKvIPcaw6u-fNCC0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|194.0|0.8|16.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PTAA']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2016.06.037|Wzmpc4EoWsiYtfz7qkba4gZ1VkPG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|140.5|0.6709999999999999|10.55|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|WzxW41SKLag4JAP807fxItje2DHm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|240.0|0.72|17.45|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|X-39QySY4zpBhHuiujoDimfcyItp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H30I6N24Pb5S9|Pb5C14N24H30S9I6|GUPb(SCN)1.8I1.2||0.66|36.8|0.51|1.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00639c|X-3dfL0OZ7u59s5-TsWnEF8EzTwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPb(SCN)1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|98.5|0.4379999999999999|3.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|X-5cROdVlSaqRH_Zo5Tmu_wkExp0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|26.9|0.71|7.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst9030151|X-6joSNSQLA3bi-vdK-vLIgbYAxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|186.0|0.47|9.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201403719|X-9LtfUeir8jaZ7gcSd0v3DQ4ehT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||0.85|195.1|0.47|7.72|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|X-BfdaePxicO69IuAp29E_gd6RNv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|57.9|0.26|0.52|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.7b06343|X-G15y_qwrWeRsrs4PsPC_qupsSb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.0|0.585|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|X-UBJaXfkGXtvv5ldrJJpXV_E5py|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.12|246.8|0.767|21.18|['SLG', 'ITO', 'SnO2-np', 'DTPA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DTPP']|bulk|https://doi.org/10.1002/solr.201900198|X-eCkkEH9FYg_p7VwlcaGtPRdH4-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DTPA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br25C40Cs10H207I125N73Sn50|Cs10Sn50C40N73H207I125Br25|Cs0.2FA0.66MA0.14SnBr0.5I2.5|1.4200001514162208|0.39|13.4|0.41|0.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|X08YDPsDOu5TDjMlL_B407H-exEV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14SnBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|187.0|0.516|9.95|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matlet.2019.03.114|X0Izrdh76o4wYKuNxqHSI6GcDiXv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.058|230.9|0.616|14.87|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1039/c8ta07836j|X0McW93TK6NgdW8kjsUyUM46PIxx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|178.79999999999998|0.65|12.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|X0ZMNMsR5tUZHz3pXkctrUk1CRmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.1|0.6509999999999999|15.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|X0at4GZHB4kVs6Ha2ms-IvHsxkkE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.56|182.5|0.71|7.25|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|X0dkYVGRQDEtR570C7tRTSRyJZtM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3C19CsH101I57N32Pb20|CsPb20C19N32H101I57Br3|Cs0.05FA0.65MA0.3PbBr0.15I2.85|1.5500001652782691|1.153|235.3|0.807|20.9|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|X0egyPuafWA6qxdKmw7GZQYr3al2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.65MA0.3PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|182.0|0.58|10.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|X0jqIakdRSKQYCMnk_MB4h9nnb7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.6|166.0|0.4|4.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2020.05.041|X0lBL09GglKaOXiSzAP6G8y37BLG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|132.0|0.396|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|X0nAB-wpookhtvzn_TV25AZ5eOfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|105.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|X0sp7riMe_mkyppDNEoS6ug9l-Bm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.01|224.0|0.71|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201705363|X17JHTV3P1RdymsCriqbqjc2Yi0G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.2|0.759|17.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|X1GUvhWzMUCbbDckC6-C-rcsOO-v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C85Cs15H439I240N156Pb100|Cs15Pb100C85N156H439I240Br60|Cs0.15FA0.71MA0.14PbBr0.6I2.4||1.15|209.0|0.804|19.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|X1Nc9F7i2ncyCbXW7YWVFn0HRhiA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|174.0|0.66|11.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2 -np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-np']|bulk|https://doi.org/10.1016/j.orgel.2015.12.010|X1Tp9IDPPp7DLdE0P47fO4uFVjIO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2 -np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|237.0|0.61|13.63|['SLG', 'FTO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1007/s12274-018-2103-z|X1hJprh9X0IP03tMYUcJVcVVNVPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|200.0|0.74|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|X1p_cHfDDHkGm10bnaDCuCESiZZU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2600001343552385|0.48|111.6|0.38|2.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201605469|X1sZ3DIlC6qhq16W61MpqCkKvmWR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|216.9|0.73|13.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-NMe', 'Ag']|"[""N1,N1',N1'',N1'''-(ethene-1,1,2,2-tetrayltetrakis(benzene-4,1-diyl))tetrakis(N1-(4-(dimethylamino)phenyl)-N4,N4-dimethylbenzene-1,4-diamine)""]"|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.10.022|X28l4lfTcum5vEciYa6p0-eeGPhZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-NMe', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55|1.6300001738087604|0.935|216.0|0.725|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|X29mYrLn3dNJkimaESgHIcfPGG1e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.7000001812729404|1.12|230.6|0.6779999999999999|17.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'D102', 'Au']|['D102']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226767|X2A2mtkRCSdyb6ACUlmt-39NfB4u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'D102', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|116.0|0.637|6.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Y2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Y2O3-c']|bulk|https://doi.org/10.1002/cphc.201301153|X2Q6k9rHQHzD-0eWXfBLwnCGH2eq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Y2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|49.0|0.531|2.3|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']|['Graphene oxide']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C7TA01752A|X2_VbzHpa1aGWHBIHCuj4mpBTB5k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|152.4|0.66|8.39|['PET', 'ITO', 'Ti', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti']|bulk|https://doi.org/10.1039/C4DT03920C|X2ieY-yBHBGFWCx3P9HlS558KYDH|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Ti', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|245.0|0.759|19.2|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07586j|X2qZO4QfecFmfDjczRl4y9crBQfJ|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.994|208.8|0.772|16.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|X2xTjPsC6hWsbLyQya3Llody0r9k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Carbon']|['NiO-c']|['none']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|X36JniMxf1GPtRF7dEaC-zvDyIte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.045|186.0|0.72|14.0|['SLG', 'WO3', 'Ag', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta08287a|X36Owy6tzlt_PfNtiRB9eVPldyDv|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.11|220.0|0.78|19.0|['SLG', 'FTO', 'TiO2-c', 'CsAc', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsAc']|bulk|https://doi.org/10.1021/acsami.0c06315|X3B97nlLkNIgZylR6xTRQACC41ft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsAc', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.05000021859384|0.83|1.7000000000000002|0.496|0.07|['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2']|bulk|https://doi.org/10.1002/advs.201700759|X3ENILzFQi4Y6nxXkq6K_SPzyzgy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.085|220.0|0.72|16.9|['SLG', 'FTO', 'TiO2-c', 'C60-BCT', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'C60-BCT']|bulk|https://doi.org/10.1002/admi.202001144|X3EknKsmC4XRTjFBgdKUTAaMjTa6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-BCT', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|204.9|0.51|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'P3HT', 'Au']|['Graphene oxide', 'P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.renene.2019.07.162|X3Qg8-k0AGvmqpQiSMyxB8-hZ-Ui|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|160.2|0.54|7.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pFN-Br']|bulk|https://doi.org/10.1021/acs.jpcc.6b06914|X3TbmvgtrQOGjYLxvIstD8YOIqRk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.04|226.0|0.68|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.07.040|X3ZCgSXFQd3PDwloIqnxAzOEyuPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.15|105.2|0.5660000000000001|6.85|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b03742|X3abQp7VIcvX4oOlMRMk79YVyN28|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|226.0|0.74|18.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|X3eo_JCxfOlyJpiTG8Owrl909YOO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|187.3|0.48|8.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ce00724e|X3hbxndRGveSTOdLiRfnxU77_Rrz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|78.4|0.58|4.27|['SLG|FTO', 'TiO2-np', 'Perovskite', 'Tea Catachinrich biomolecules', 'Ag', 'FTO']|['Tea Catachinrich biomolecules']|['TiO2-np']|bulk|https://doi.org/10.1016/j.matpr.2016.10.033|X3nAnEUTwWtqNB9fRpOVWioaJhO_|a perovskite solar cell with the following device stack: ['SLG|FTO', 'TiO2-np', 'Perovskite', 'Tea Catachinrich biomolecules', 'Ag', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|214.2|0.41|8.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4956436|X3wYOQXMZmksNB6ro5R5OgV5yfgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|194.0|0.62|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|X40Jh08IC5keBKNaG_wZxtKK8uM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|175.9|0.6509999999999999|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07076k|X43fkPzP6H8liJL6qp9-IOKEkAFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.5|0.635|15.5|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']|['TPTPA', 'TPTPA; MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|X47KXYfGYnIYTXDCdfe1I1b-9A8D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'TPTPA; MoO3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.18|83.0|0.62|6.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|X4ZDPCtUkB2dzAHgR-zrFiYZFng8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53|1.5900001695435149|1.1|210.0|0.657|14.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2020.110517|X4p1y-udfSj7BkRSVnx2HQR3VCCu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.01|157.3|0.35|5.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|X5-mMTsY5DuLfJlQ6uXlVJrgAWnI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.7|0.71|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsami.7b15229|X586k4_hctEAuVfEf3mfr5hU0xMF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.6|0.657|13.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|X5D3XdtvTUnXlx5DRvKoTDIch2rj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.5|0.74|17.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07422|X5IjBSR4-6WiuADUNcmrNoePtC1H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NPb|PbCNH6Cl3|MAPbCl3||0.535|110.0|0.642|4.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'HTM', 'Au']|['HTM']|['TiO2-c']|bulk|https://doi.org/10.1007/s10971-019-05120-1|X5V5jsjMtbO7UvEpn1gAAmi7AagM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'HTM', 'Au']? The composition of the perovskite layer is MAPbCl3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.97|80.1|0.754|5.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|X5aLBwVq_dCCvK9IOZlHGXQdVa71|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -Br500C500H2976I1455N524Pb500|Pb500C500N524H2976I1455Br500|FA0.048MA0.952PbBrI2.91||1.132|240.7|0.768|20.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|X5mGuOtTE38mjXe2Di03A43Vv3GN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.048MA0.952PbBrI2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|180.0|0.72|13.5|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|X5reXL6YbJrM_MKySXmMl-IaPhg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|154.3|0.703|9.33|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|X5rlYpeSvCkRAJuD8zuh5Tu3mMT9|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|191.2|0.72|10.22|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|X5sd5Pg6Dr9_8XxATLppFl0iLxsg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.7|0.7|15.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201700131|X5ue85eSZ2SWCpgQYFgMcIKfwYi7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.13|226.1|0.8009999999999999|20.5|['SLG', 'ITO', 'SnO2-c', 'ZnTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'ZnTiO3-mp']|bulk|https://doi.org/10.1002/anie.201911796|X5vap5S6GJO4U548Zl_fMRpZUJ-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'ZnTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.94|181.0|0.68|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1116/1.5052287|X6E9L1A9VwYwh0ptiKo4zwOL5Orn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|X6WfJ-mSLa43S9s6Ko24k7UZW3PT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|159.0|0.45|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|X6ZEwghDLltFF2P79uxHxQN_CRVD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.0|0.8|16.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|X6ZcUSMt04JGzYOq7UWwyJw4IrgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|219.8|0.72|16.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.07.106|X6f3j87-bdMdtxzNgTboaCOM8hNS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.9|0.79|19.53|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|X6wjc4Fzgo2-jlJUdKUZUg0OL7pp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.11|219.0|0.75|18.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.9b05083|X7EWvuf5M85qULMfWYToXIsX1jOC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -C19Cs6H95I75N38Pb25|Cs6Pb25C19N38H95I75|Cs0.24FA0.76PbI3||1.065|228.8|0.7120000000000001|15.84|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|X7FcVG-JOi21-q1mCQLZyxglk3MP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.73|29.0|0.35|0.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|X7HFrNKAsMbQQ6rFa0KSRlZhS33T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.25|200.0|0.774|17.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01672|X7Le7IWAzvIS85wYbzfSRn4ATl8W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.07|201.6|0.76|16.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc04851k|X7OWUn4vYohfbW2snltz_jsSOIhm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|204.0|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|X7OwxWo6U93ZO6ky7pgM4HDcbo0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.04|63.4|0.523|3.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|X7RFv8ARpU9bB9PfYl9J_BFC0YXN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|174.0|0.45|5.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|X7dwV4Z5v0sBfOCWS8pcOjN1POEh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.6|0.645|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|X7dxdCsvhisbvGGSl0ktae2dGDAJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.95|224.0|0.632|13.56|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|X7jEOGlpx4oqsM2cgKEur0YcEWJX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.25|85.0|0.59|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|X7jr2rRlRidFx_67r603coi4dGpa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.92|151.2|0.679|9.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|X7nSSiqUk1t_ZLUeK4cDCUNjaKMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|226.3|0.715|18.5|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C9TC04067F|X7pTyFbr1e42T6lkRBcjgGEoSZAl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|189.8|0.73|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|X7rC9LiseyrW4bIwURNtC9CXv5na|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|230.8|0.7509999999999999|18.36|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|X7uHchw67Soe5Cte2QJ5HU3dhZlC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.82|188.0|0.67|10.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|X7yybduWqvCPlqIDq5JCDdgb5yM0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5Cs5H25I14N10Pb5|Cs5Pb5C5N10H25I14Br|CsFAPbBr0.2I2.8|1.6500001759413832|1.082|187.4|0.75|15.0|['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['Spiro-TTB']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|X83-jqaBt-Pw2ABlgB-WDmNMMzf2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MAI', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01508|X8864o8fTLLBV-1pWAsVz7MCbSSc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|209.37|0.7759999999999999|16.83|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|X8GwS5jnxo2nvM1XhjjEqwqd2BN-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|217.4|0.67|14.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.240|X8OP6KMqQ1bqUAX6CqvlhwtzkJUG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.12|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201501264|X8dHW6xcTwsY8woIf9YHYYsrDGtI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|179.8|0.6|9.98|['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']|['Co0.817Cu0.183O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|X8ppfTb2foFcijoCeBF5zj-WXXIT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H271I150N79Pb50|Pb50C50N79H271I150|FA0.58MA0.42PbI3||1.061|216.8|0.721|16.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|X8tmDYwgmPgm_DBFCECUNhBiEV28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.58MA0.42PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.61|95.5|0.61|3.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|X8wiEAtRlRIKeS9JpNI02ZorFCqx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|||||12.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'NiAl', 'MgF2']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ee02043h|X91uvgzDDuiVpNLU3xE44qNmZ8VM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'NiAl', 'MgF2']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.26|131.0|0.503|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|X98mNpdeLZTlKi2XlFTimxreL_4r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.415|3.5|0.688|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.188|X9BaaaXMEl0fYyd-OFbFs8vTXW83|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.078|213.5|0.6709999999999999|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|X9ELDNOCevKvM2aI5DUy1TMA4gPQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.70000000000002|0.5589999999999999|8.99|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|X9G4Gh5gghxKmAR_I1os8HnG6ipH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C93Cs7H480I249N171Pb100|Cs7Pb100C93N171H480I249Br51|Cs0.07FA0.78MA0.15PbBr0.51I2.49||1.13|228.2|0.73|18.77|['SLG', 'FTO', 'TiO2-c', 'Thiourea', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Thiourea']|bulk|https://doi.org/10.1021/acsaem.8b01508|X9HW-kpjotMF8UZYplkiOMuleLaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Thiourea', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|186.0|0.5920000000000001|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanocones']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|X9MPAHGQAMSzM9Ak_JjZf4r8HQn9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.54|11.78|0.483|0.306|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|X9sV8MF8YsAISZogwBM09T7GSSaF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.425|177.7|0.539|4.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|XA-yAvlrU45lTyaLigwb6juwwYFg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|122.6|0.7|7.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|XAJ5dSmF86NpxUXzRueQCxpQslja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.30I2.70||1.087|210.3|0.745|17.06|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.063|XAKQtsQhT6nN-_D86vseRi5l6wHn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.30I2.70. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|XAWBQqFt6llFTyAF5Tp1-6S74Sva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.2|81.89999999999999|0.65|6.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|XA_r3xxloKDvYPp9tFj-n2Dr6m9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|227.5|0.75|19.3|['SLG', 'ITO', 'PEIE', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'TiO2-c']|bulk|https://doi.org/10.1126/science.1254050|XApb6yYEPNj_4F3WuM54WMXSB456|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.12|208.4|0.788|18.38||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|XAxCZ-iiT40fs59GMrmEohfQ6NSJ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|XAyOkplxHtfD9nNWnLZr5Bu3ESdt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']|['Spiro-MeOTAD', 'PDPP4T']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|XB4LL0BoN2ndm0wbfEzR733xno4M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|172.2|0.65|11.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|XBL_Cm2_s22WVSa9pnQXbPMhEasS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|150.29999999999998|0.5760000000000001|7.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|XBZJ4WcFub6Qti53ycLSTCFaDgcV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|234.3|0.64|13.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Co3O4-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Co3O4-mp']|bulk|https://doi.org/10.1039/c7nr08289d|XBcxQGmVsLv_DCDJF8K4qJtwLrnd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Co3O4-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|217.9|0.69|15.4|['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEBS']|bulk|https://doi.org/10.1021/acsami.7b00576|XBh7nvpVtWKvc9CdX1uLV867d5mg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTEBS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5400001642119578|1.013|233.2|0.67|15.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1016/j.energy.2019.116396|XBxI7u6dpp2BMyR5Oq8AYUxU5aW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|57.92000000000001|0.518|2.91|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|XBzuZUvvPUCiogYmKq_-yHWqDyhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.9|0.68|13.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5ta02730f|XC-LBOF8fEK8aN86LsPD-YSBm1rw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|196.3|0.67|14.71|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|XC3rrItGwxcF6T3eZ4mVizLMJYbi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.0|0.6559999999999999|11.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|XCDYeoNy5mk9RPz9I_obHzK2Xvdy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.02|224.7|0.5870000000000001|13.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|XCPvBdAJn6cQQA9Ork051ee9GDR_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|198.6|0.68|14.76|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|XCQ6ojSlucnVkrAeggHARkAAcRgL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|140.8|0.7|8.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|XCXgtgkyYyH8nuDuB6ZfVldQLtYJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.7|0.78|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|XCdUpQKhSjeS_CWXU-j1_pQveXYr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I250Br50|Cs0.05FA0.79MA0.16Pb0.5Sn0.5Br0.5I2.5|1.3100001396867953|0.73|216.0|0.67|10.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|XCuXVKF2zVKef7COrVxy4tFD-p3a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|172.0|0.72|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|XCx-HEZWc0ro9TOEFVZRWpVU1BuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|230.0|0.75|17.9|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1557/adv.2018.515|XDJ_AwizPEClnq8R9gDcBVkjafCU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|57.0|0.91|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|XDVCYdzHuc5oDRllehbbHNR74FQz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|1.1|222.0|0.7709999999999999|18.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|XDVLFqH6si6YkwQFW_tbCb3uQXTB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|202.8|0.544|9.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|XDiQ_35NzDbPdy7TEEwIM911jtIu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|206.3|0.631|12.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.06.015|XDku8r42JLBdcUNJJejLAHc8aIBc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|198.7|0.74|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201606608|XDt9HoIv88dgTFFrq0xAdP3FhPy0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||18.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|XDwjyYsHwCcpXHpIthfZhxSZp-s4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.5|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-np', 'CuBuPc', 'Au']|['Al2O3-np', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.027|XE-CrI0Ed8ReazlX8EdwXKlkUq2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-np', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.074|215.6|0.74|17.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|XEDzneeegekuE0Jwimkwwv0yTzOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|140.0|0.6|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|XEE7_3RpIGj96zC5LOVCTMXbBwMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.75|205.2|0.483|7.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.202000513|XEEzu3aMeoypsNYkRYrdHWnPJlvu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|XEHY17Hw_KmMPZ6lqyQxPP43-dws|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.0|0.73|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|XETKP5tQHbY6p6p6NkX_U7OkbCJ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.031|195.9|0.642|12.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|XEbHSSO8o2NVK27VsYIZN0pALsgW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|102.0|0.358|3.3|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|XF2Wak7kNdGdpAUsBzpP7Qd9xcDg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.87|23.8|0.562|1.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCE-10', 'MoO3', 'Ag']|['PCE-10']|['TiO2-c']|not processed|https://doi.org/10.1007/s13204-018-0744-6|XF30U0qLjvPyknMVVD1OxfYB_ago|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCE-10', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|140.0|0.5|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|XF9reXfnM7NK4zDlgMmSqmaTFeEl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|213.8|0.72|15.43|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|XFCO3x-X3HEmZFptPQ2-wx4O8pHB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|145.0|0.69|10.0|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|XFE3W50fafSUg4DaCIPZgCHPWTgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|184.3|0.7340000000000001|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|XFEY6U64myuPdne8ASoBzS8P_FON|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|121.0|0.6|6.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|XFJcQSLdQO1Lh7yGstvrAq9D3YPT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|197.0|0.72|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']|['Polymer4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41428-018-0116-9|XFMiWMLP-hINsKA4hsyt1TMTj-ce|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.3|0.7559999999999999|19.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|XFdtSkuvJQyiC_OeEbPSV7KK_-tF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.5|0.7020000000000001|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|XFkqOZ9UBaW_ObwMXh8DmH2NDnam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.2|0.6409999999999999|15.9|['SLG', 'FTO', 'TiO2-np', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['TiO2-np', 'NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-0319-z|XFuEELZBXgxWUcTpcOXRBi1jXcKb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.0|208.6|0.68|14.1|['SLG', 'FTO', 'CdSe', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|XG294owCZyYpwqgxX6D3nBuEDt63|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2|4.0|0.309|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'ITO', 'SLG']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.06.023|XG34SMHPfVH7LV9pzH_EMjYy7ZLQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6600001770076949|1.01|144.4|0.742|10.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b09722|XGKFUf1glnXkJWx6HJZFyjoxRd-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.0|181.0|0.62|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|XGW8ZF14-OEpKghIoblbJPBsglnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|XGa3Shyw9N_frmrjJVmF8vmiyin7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|212.0|0.6859999999999999|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03655-w|XGg0q4ejprAkNQbg1u2PYlTkPrLl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.723|3.8|0.331|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|XGhjtdEVMc9L2XinkXqTLKqFefkJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|193.6|0.74|13.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr02903b|XGiSTToeE_mUgFqNC5IyADeXci6I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|221.9|0.7390000000000001|17.5|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C9TC04067F|XGqa6nrmRCk1yOXNqc2rIc2R01yi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C40H109I19N32Pb9S20Sn11|Pb9Sn11C40N32H109S20I19|FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05|1.2400001322226155|0.743|288.0|0.824|17.6||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.1c03213|XGwz4of3rklmfIO2pCpZjaEcOVyg|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.55MA0.45Pb0.45Sn0.55I0.95SCN0.05. -C2H11I6N3Pb2Sn2|Pb2Sn2C2N3H11I6|FA0.5MA0.5PbSnI3||0.71|283.8|0.75|14.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903013|XH-nJWwR_Cq-mYCUmLWhXAj_16ie|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbSnI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|225.1|0.76|20.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|XHCAKVb9suUrY7W_hUmEs_R0SYjg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|176.20000000000002|0.58|10.33|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PCBM-60', 'BCP']|['NiO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.041|XHCXZ0odupoYvUXm10CVp44LXK8M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.1|0.47|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|XHG6Di_0dpDXD5A6TU9-M017HTDK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|27.5|0.76|14.63|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.9b02362|XHMzh5nDjmbdldoSm0IkcBn2iCjp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.3|0.67|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c5ta02265g|XHYd0MNhwZ5xtjdjnkMwBFU9saRr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.36|74.0|0.76|7.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.154902|XHaMD1IUFUp-R9x1OFFD6HXBQCMU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.1|0.602|12.04|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|XHeSkR2KTBxKLiG1M73IvhohqdG7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|219.0|0.7140000000000001|16.76|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201800568|XHl-JwCVN1Xjv_VmloxV4ozxmO1J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|204.8|0.698|13.99|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|XHvLY9Tq1RaFySMg2RtQgwhLy54P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.8|0.813|20.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900557|XHy6zn0Rd0hKAaDwUMLG4RJX45I3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.0|0.46|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04267h|XI34jwVGTAag9JiDjrW5X7zm1MEI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|232.6|0.636|13.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0se00549e|XIBy7k0UFrNPSzFRhxo0gWtCCvE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.0|0.72|17.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.005|XID5Y6tF4cOP1DXrEq8SHJ5vJ-2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|220.0|0.75|18.75|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|XIRn2Np1_4ovWY4QKSXAFWU_uhqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.16|226.1|0.758|19.88|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02652a|XIoJ4RkmYbIUP2SabdHwZtwsShEM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|182.0|0.69|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06558e|XJ0xQXXzR6rkfJQo_YQkJtYFry4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.0|0.7|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'LiF']|bulk|https://doi.org/10.1002/aenm.201600994|XJ4IwaIbnCI71odgPD5kofmuPR81|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.06|225.2|0.742|17.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL50', 'Au']|['BL50']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00637|XJHJ0ZcgRbUVivSk6KfHzeSqqYkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL50', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|145.2|0.62|8.71|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c8ta01143e|XJJO0MU7YDnVLOp0DEkQJNe4oMKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|186.7|0.7759999999999999|14.7|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|XJO6Gi4DZ1SFUxjnrREUkDPmgetZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.2339999999999999|222.5|0.48|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|XJQZHpepprZaxhl9lupJ6Z2Kk47Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|210.7|0.69|15.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|XJR1ZLR_frDZIxLj8_DI7Ovpu0SB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.11|166.0|0.706|13.0|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201901090|XJYJwOYZbQpGRSW9osppxcuY6mQh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6250001732756048|1.07|204.36|0.7120000000000001|15.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.008|XJrALtct2TZYCj6PP4p6qURURBvK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|132.0|0.55|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|XJvmZNqsLNQIFRXs_ie0haWMa1VN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.07|217.2|0.73|16.97|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.7b07775|XK1ml7xqSCi9KDcJi3f9INj2Adm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.088|196.8|0.7490000000000001|16.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|XKByfGlMwZlDvA24Sw8V-8Viazwf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.08|229.8|0.735|18.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.040|XKE89jWRKJ6-U2Ey6U4D9EMdy3VH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|181.0|0.64|12.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.6b00320|XKFMbiXWYd3lC-De1g4bK8xkL7Ys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|193.0|0.76|15.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|XKMpfCQDvBAtQYxjFuS2YGXBXf8o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C90Cs10H459I283N171Pb100|Cs10Pb100C90N171H459I283Br17|Cs0.1FA0.81MA0.09PbBr0.17I2.83||1.017|235.0|0.713|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1209', 'Au']|['V1209']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b23495|XK_h-aFA51BQA0QQNfa-4AiwqwuE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1209', 'Au']? The composition of the perovskite layer is Cs0.1FA0.81MA0.09PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.08|202.1|0.7979999999999999|16.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|XKdPtNPvXFeH2qxRmpqFBw6ytvtw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|216.9|0.75|15.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.046|XKfgGHWu88qn8xNnjfu-hoBbwuJs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.939|219.8|0.634|13.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|XKghcCgalvr_FES7v3wkhxR2V2qL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|189.1|0.54|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06687e|XKl3IFWl6-M56Z5LcnwFOC_ZENsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.612|10.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201800130|XKpFRrkKdAoSZTCABpPskkMbA55o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|218.0|0.698|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|XKwNToHaabJJJJQ0QUqDMuPf-CH7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.276|66.6|0.75|6.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.06.041|XLBPUlXJiCo6tDFbPYgWscNxa75c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|218.0|0.7509999999999999|17.91|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|XLDYRfgW1wgK4zUfCoiEYV8hD3El|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C245Cs5H799I249N166Pb100|Cs5Pb100C245N166H799I249Br51|(TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49||1.18|232.0|0.713|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|XLGuWOXS_X-QnSe-8Df3wdwN-Cjo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|219.0|0.7559999999999999|18.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta02868k|XL_Cr9lbdOVwGPNc8o9s2LzpV87D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||0.98|219.0|0.58|12.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc07785e|XL_ckP5M2BOk6C_TCb3dbUwpM5V1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.1|0.57|11.45|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|XLjTLOytUyETKfGmzx8ZgupIv13U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|184.2|0.5820000000000001|8.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|XLns8c_DL45ZlHArsPmrYJJqDZB7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.4|0.7190000000000001|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|XLoftUGhVD5F3Q0q1lLJWIxKTEF1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.03|115.0|0.57|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.8b02157|XLt3LuKtLJfsX9QWLszVVDmhONkA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|198.0|0.7|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|XM1Pl9XgBW8NTyYUDgKGDAGC4arG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C103Cl2H604I300N100Pb100|Pb100C103N100H604I300Cl2|(CIEA)0.01MA0.99PbI3||1.04|228.0|0.755|17.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.9b01975|XM8_V_7FEX7-pFRkpta3CVfxpjnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CIEA)0.01MA0.99PbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|1.780000189803432|0.82|101.2|0.59|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c3nr00218g|XM8jvziO4YaDbAV0I8EtPI0GIqR5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.5|0.758|17.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|XMUP1nFmU6GwT8nJHorStn7Zvx0s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|179.20000000000002|0.75|13.98|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201700184|XMUblSYluOC5oeLU_CG3ZZT4AO4k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.640000174875072|1.03|192.0|0.75|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|XMVcIl_SUzgTywBEJo7kg0AvYL-e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.046|216.5|0.705|15.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|XMW9wqMspiB9B8gyHGzjkmeBY4FE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|73.5|0.73|5.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|XMZ049tW7U7nchPMQ8YoW2-FvHxE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|(iso-BA)0.5MA0.75PbI3.25|1.780000189803432|1.14|148.7|0.52|4.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|2D|https://doi.org/10.1002/aenm.201700162|XMbvYEISHyhXupN0BCQMUhua6J99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (iso-BA)0.5MA0.75PbI3.25. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5310001632522776|0.78|195.7|0.43|6.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|XMjj-OQc4GQu36Bmkko0ECWObFvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|220.0|0.54|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201900481|XMk56fQu5RstYLslzoojZuIxJI1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.0|0.66|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7qm00473g|XMlBc92Hu_30sgDgogzp3bFflfFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||0.97|168.0|0.58|16.3|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7ta02405c|XMo_uJSaGU31H8csOT1Fvx68u35Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -CsI3Pb|CsPbI3|CsPbI3||0.68|45.6|0.62|1.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|XMpbO5SGrTyNVP9CopCUfyFp-yDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.5|0.6579999999999999|15.05|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.03.047|XMu_uMlssiQYTqsEFIk35L_VYasj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|236.0|0.62|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700222|XNAyy6fnJMxnFIK_v5tM-iCoqvLM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.6|0.77|18.62|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|XNC14mDClbMqNRQ96FADeKeJuqoi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|181.4|0.72|13.67|['SLG', 'ITO', 'MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|XNO12Iu-fE617dBMDKniiahDf-29|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.09|222.5|0.73|17.7|['PEN', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|XNWBExwKWpOr6XZyHHYG5ag80hrV|a perovskite solar cell with the following device stack: ['PEN', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55||0.87|151.0|0.501|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C201', 'Ag']|['C201']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta04166d|XNWs7z9kvEtRjgn4utfPHl6YPnMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C201', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.500000159946712|1.14|231.0|0.76|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|XNX-8bvWnebLtHiGZyE_0JcB_eVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.3|0.82|20.67|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|XNgL6V7xf9mh66fOLOqINLvBLzIr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.03|137.79999999999998|0.544|7.72|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|XNgPGYJy0gw59Xpe9bwL7LlSgCBJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.856|175.0|0.526|7.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01154|XNhVgohZyDVFQgCXAqxz8n3kcI1M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.123|215.6|0.748|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|XNouMZrIVrfb5JmbAabC3OETjc9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -BrC9CsH52I9N11Pb10|CsPb10C9N11H52I9Br|Cs0.1FA0.2MA0.7PbBr0.1I0.9|1.6300001738087604|1.21|219.0|0.815|21.6||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41566-022-01033-8|XNtuWqyy8Q1YVQ4MtFgTolNDW33n|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbBr0.1I0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|119.0|0.672|7.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|XNuwFcSdSY6iGPGJb72tE6dBMWFI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.133|199.0|0.72|16.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|XO2gPiCfZYL2o_4rjdAwRx2ARnMI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|171.0|0.513|8.48|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|XO6MVGD1Vyy4fyjTiugcXST4wfF2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.1|225.0|0.7|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']|['X25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|XOBtM6r4mrvre_2aMO0zcM1vcCzQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|206.54|0.7659999999999999|16.52|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|XOGqAKTjPX-BO1XN9bELR0F5lCkU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.812|193.9|0.45|7.09|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|XOLqTbMzJL82usq7bvqPFtBTzMUa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.0|0.622|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|XONMdSRp6oPIRp93PBi4yjFSbmns|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|238.5|0.76|19.62|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|XOSdq6Kzl3T79Mfom556clksd-01|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C5H26I15N11Sn5|Sn5C5N11H26I15|FA0.8GU0.2SnI3||0.574|197.3|0.733|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|XOUCln5j0sDGJhWdZV48dHGHamII|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8GU0.2SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|211.2|0.75|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|XO_WJND_mDcd4RGl0sLU_PdS15-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.09|216.0|0.73|17.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|XO_abLsw8c6q96CRQL6iDuyfBV2X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|167.0|0.61|9.2|['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01755f|XOi3FP19togaWusvUIe_KXoJk7oP|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|166.8|0.71|10.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|XOlNBfn8k4ILr6DCTn05Rz_1nKU8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|0.05|0.7000000000000001|0.152|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|XOlp3UEqmASWamtI_ND8JT3HKXOs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9|||||16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|XOsAtamMM2_i0998r6-t9s6aVb3I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|185.0|0.56|8.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2015.08.002|XOsgyN7KpMEPiOu5arQYD8cjExcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.9|0.6890000000000001|16.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.112|XOxdg7K0RfMhMPmMS2F4dJcWUADA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|138.1|0.605|6.9|['NOA63', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3', 'Au', 'Ag', 'MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1364/OL.42.001958|XOz3CEj3zagGcmtQas5e-A0EvBHI|a perovskite solar cell with the following device stack: ['NOA63', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3', 'Au', 'Ag', 'MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|228.0|0.76|18.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee01136b|XP1xLPvBrb6K0iyeJ_NcYqkQz6Ms|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|210.3|0.76|17.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cplu.201700471|XP5ebiz_FmDryDooE-lX75oM6k6p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|167.8|0.706|11.66|['SLG', 'ITO', 'SrGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SrGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152091|XPA3o6bPbRBkFfWhuWp6xBhW5i4r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SrGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.851|144.0|0.536|7.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153272|XPBlp0sXd7Rpzv8DAZm2VjE6auhz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|108.5|0.313|2.62|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|XPDacrHYsAOfiHpJk4kt7ibNMKsF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.27|136.0|0.73|12.62|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-019-2936-8|XPE-v8z7wha87DsqaasyjZ9I1BHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.83|204.5|0.6759999999999999|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1674-1056/26/5/058401|XPLSkMS7sVqxF3XNKqGy9tyuQk93|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|77.0|0.48|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|XPM5i2xffMluxI9gX8TxzyaiFL7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.0|0.684|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra16355f|XPMNuBLsYH5af4pb8kXn26OSeT8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br13C95Cs5H488I287N177Pb100|Cs5Pb100C95N177H488I287Br13|Cs0.05FA0.82MA0.13PbBr0.13I2.87||1.13|230.8|0.728|20.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'pentaerythritol tetrakis(3-mercaptopropionate)', 'Spiro-MeOTAD', 'Au']|['pentaerythritol tetrakis(3-mercaptopropionate)', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903696|XPT5Mj1jnc0XC-cDcPmxgcdag76v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'pentaerythritol tetrakis(3-mercaptopropionate)', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.81|145.39999999999998|0.584|6.85|['SLG', 'ITO', 'SiTP-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']|['SiTP-OMeTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta09716f|XPeEyidbLuJKF-8-F0avxF8rl35b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SiTP-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|235.0|0.69|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep42564|XPme9q8G85T6cd1SRmLILiGzhQfA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.15|228.9|0.795|20.96|['SLG', 'ITO', 'NiO-np', 'KCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np', 'KCl']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201803872|XPnU7S-a0LLd2C50gietcwT76CaB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'KCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|100.8|0.515|4.34|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']|['MoS2']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.012|XPprqQM4odGWaIvF_2IA4MAPqmv-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.13|225.0|0.79|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|XPufpSQOo60aG-lbkUfsUbKi0_dX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|110.0|0.38|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|XQ9s794ih118OIEfctpbgCts_v34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|119.0|0.344|2.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2015.06.046|XQAW6cJNI7K9m70RtjP1JyRdaLYl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|203.0|0.65|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adma.201705786|XQEnCBNbj34ZWzwICOR-Mv7HyLOe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.06|220.0|0.77|18.0|['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|XQeImSgeh9mgi90kBXZpdpTD-Z_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|100.0|0.67|6.6|['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'OTS']|bulk|https://doi.org/10.1002/admi.201500837|XQq8Nl2I_f7V4yzyFvGE95r_0Yn7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.91|172.2|0.6|9.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|XR0rdxucEgnWpGnZhDuQCGv-E8ZN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|||||15.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra04311b|XR2183pPuJ5DBdyKgCXRq7GO_qFz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|117.9|0.635|6.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|XR3PbJE8KRLabwAavU0NgdjtEwNy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.4|0.733|13.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|XRJJ3Er4vAew5VjVdVaXMTfjUNVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|163.9|0.67|10.69|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.032|XRcsS9UibNHST2rr-L_qfM0NQqoi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.570000167410892|1.03|206.5|0.7|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|XRmlGNhOvShlJyYP6LObW0e7Xahc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|228.5|0.7|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.07.107|XRyUQbcbW7O1bX8EUVR4_5hwctOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.7|0.68|19.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']|['YKP03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|XS1uH4ZeR7iymHTMVZm9EwyAgALm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|204.2|0.6679999999999999|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b11679|XSByH3J-DYG09-txLMqrYxnTNKEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.08|204.0|0.75|16.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|XSEdh5z7yEOtXfqGVSV60yHiSAUz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br3CsPb|CsPbBr3|CsPbBr3||1.51|61.2|0.825|7.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|XSNtulPNiLMy7BF5GQLBpbmdmdAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.04|231.9|0.65|15.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnS', 'Ag']|['NiO']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|XSZxPNd8g2EZSgedXZRNTXJbJ-In|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|187.0|0.75|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|XSlU9v9CNVQ4X4hR8KPQnaE7_OWr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|171.0|0.5|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b11067|XSmKvoAGfAIdG-5_icBae2YXdfHo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|11.4|0.72|0.073|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|XSrtf3oRwk_NwglMHhvj9dNVFtzv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.074|200.8|0.674|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|XSyBOVXYTozZ2jzDJLl7M6R1c9yZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.0|0.68|13.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|XSyIi_WoizgN65XK4EKiJEjJ23KH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|207.0|0.639|13.0|['SLG', 'ITO', 'Au-np; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np; TiO2-np']|bulk|https://doi.org/10.1021/acsami.7b11795|XSz-hRNGrG1I6cVnJb_pmc4g6HTh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C100H517I240N183Pb100|Pb100C100N183H517I240Br60|FA0.83MA0.17PbBr0.6I2.4||1.14|224.7|0.66|16.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'HOFP', 'Spiro-MeOTAD', 'Ag']|['HOFP', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5038917|XT433OrzRsEANlioJpX-d7G1wJIX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'HOFP', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.6I2.4. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.72|231.1|0.536|8.98||['PTAA']|['TiO2']|bulk|https://doi.org/10.1039/d2me00032f|XT4iVmvuHqdtwTlUD1-VSlKRvxNU|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.3|0.82|17.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc02744k|XT6nU7WHMqNi6KjIdUda2OSjqEbg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|183.0|0.72|13.53|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1021/acs.jpclett.8b00964|XT9bZLQizYFDv5n8hrYk47_-Nlqz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.69|47.8|0.33|1.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.7567/JJAP.55.01AE09|XTDWq7t8ScZyWecV3Y2Gd5xwGnBL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.0|0.72|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|XTIi2ww9yxR2lChpaAN8yW28MvJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|207.6|0.809|16.93|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|XTJr0n9day0vrO3wMO5kW7-CMMJg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||0.752|139.5|0.281|3.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3389/fphy.2018.00099|XTQjSTGhYAcp9ZOSGVMZ4XPwZmtA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.23|166.0|0.76|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|XTRXzkGTu7bIssZkq7xp_H6h8u51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -AgBiI7|AgBiI7|AgBiI7||0.59|15.6|0.374|0.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.03.085|XTUTRqOHKEEIpcyQx97XT6zHWAJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBiI7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.146|175.26|0.742|15.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM2', 'Au']|['HTM2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00271-z|XTWppEOdHwnZt598jKad8lI5aUAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.7300001844718749|0.81|199.9|0.652|10.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12236|XTa9SugSCuERMb5BFW6eMjX0Xp2L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.78|14.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c5ee00645g|XTbEdjyGNsnhUseni7E1tkmuODGl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.896000202172644|0.95|103.8|0.46|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solener.2018.04.051|XTkGQwHVA4RH5A_avfRcXzgCpfVw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3CsPb|CsPbBr3|CsPbBr3||1.24|74.0|0.73|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|XToRz0P3w8OYkBAx3psOLqqbNa9-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.984|212.4|0.71|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtchem.2016.12.003|XTqZFiYpM_yxKWjU7UO2cIpPwGXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|181.0|0.721|12.9|['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEDOT:PSS', 'PEI', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.10.032|XTx6jucZoq3I66EnMexyMYCh6ptt|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.2|0.7070000000000001|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.03.028|XU-bnGxl53yHVcfP-_gU6EiVEVxk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.9|0.736|16.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|XU6AKttX-CFQBXrkiKkSXUqx9ah7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.0|166.70000000000002|0.64|10.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']|['Carbozole @ S12']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|XU6ZJX8UOXqWikmGJKlNwA7R4NJ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S12', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|153.1|0.68|8.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|XUK9r1qAUgCvRbPcbUjWhTKeocDp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|237.4|0.728|17.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|XUOLnQEwRw6QP8ABhquGvxHU5oQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|232.1|0.764|19.33|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta02584c|XUQzO0iKcVG_Eh3TYzG1XDtC_022|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.055|212.45|0.7|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z34', 'Au']|['Z34']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|XUVTBRJCjPN0-PDUHd-bspzYR2z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z34', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|207.0|0.34|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; SWCNTs', 'PEDOT:PSS', 'Ni-grid']|['P3HT; SWCNTs', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-017-01842-4|XUWhmBIDfmA30QxjM07iFlRy6qin|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; SWCNTs', 'PEDOT:PSS', 'Ni-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.0|0.79|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04794d|XUbJVJz0D1uEnqfCeqYInTOZjv3Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|181.6|0.693|13.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07876a|XUbN0S1pbihz_py71A1bD-UEAsnm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|206.7|0.523|9.7|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|XUsBwq_2dgG2rRKrboSrvO0QUjwe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|5.0|0.15|0.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt-sheet']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|XUuW3nGZqXtctTMnZXgCr1ed9SSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt-sheet']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.6|0.755|16.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08565a|XUxCYxvtrtt8S7jr8lOQIqakR9ul|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|142.0|0.72|9.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1134/S1990793118040334|XUzMp-lXbQN3nbmiaShGhlFjQgXz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|72.0|0.46|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|XV-MV0UVBfYpmzHS7ZbU4XSwcYXV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.03|209.3|0.621|13.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OE.26.00A984|XV-xl3d7t-7xESh5Uo80k96UY9R3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CCs3H6I12NPb4|Cs3Pb4CNH6I12|Cs0.75MA0.25PbI3||1.02|108.1|0.45|4.94|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|XV4uZMPprci0ZA0KC4p4Of1O6PYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.75MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|156.3|0.48|5.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.15541/jim20170380|XV5p3JICxBMsj5GQVA9Krhi68RlJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7170000000000001|94.2|0.56|3.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Titanylphthalocyanine', 'Au']|['Titanylphthalocyanine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.020|XVFlDZlXCyiWgTyuetMFuHV0aOB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Titanylphthalocyanine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.9|0.8|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|XVL_viDuw7OkMycbit7O_zeuuK3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.4|0.7979999999999999|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.029|XVVaNehnp44Ctl31q9b7U8LOhtVH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|62.8|0.196|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']|['BT41']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6RA12574C|XVYhrLmOGrPvguDbefeiV6Ffod2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|184.3|0.7|11.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|XVZc8vVvHecXjPuMwOYMgp7VrvDF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|103.6|0.315|1.23|['SLG', 'Ag', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|XVj6d6zoJnUIk6AkQ8_4ayCN4_94|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|221.6|0.726|15.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.007|XVx2bQSMnA6cT6hXevlT2g8m25e_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.5|5.2|0.44|0.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|XW-FKW8Z2jfTXcBhnNVYR2wIDVdV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|139.24||7.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'PMMA', 'Teflon']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/LED.2018.2828501|XWAV6AWYmPD-8NSBhektyPThl1oL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'PMMA', 'Teflon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.674|162.19|0.421|4.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||XWCRo2Boi9wePoYxc6YP7DC3y01p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900511|XWDS1HncRgrveVYSQWlgtsOsyTpj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.2|0.757|17.42|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.01.028|XWOpGHKJWksmPvbBowgO3ZvB--iC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.73|140.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|XWQQBwUgDfDNGCLJ3mcC5E9zy7Nz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||119.0|0.539|6.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|XWRGYRnEk_eVpSj0f8_Xrbefuxe0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|236.3|0.705|18.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14254|XWVpTaQiJfs6GVhXgJCAXyg841e8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|184.0|0.467|7.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2018.07.008|XWZSTO6ZRP_YDsUNltwZ_GNuGyVt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.127|225.7|0.713|18.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|XWkoeu45KoCtPcRSWWAS09TpHzG9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|217.0|0.78|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR321', 'Au']|['KR321']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01718a|XWuCFS04hn-88uLjLHAvQhHWPOaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR321', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|173.9|0.57|5.72|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1088/1674-4926/37/3/033002|XWxBBxLDbPILQyPsBep3orwL3dK-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.8|0.73|12.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.orgel.2018.06.043|XWzwalSygvRZtTYpXBm9AlucPiqd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2400C1900Cs100H9823I3600N3477Pb2000|Cs100Pb2000C1900N3477H9823I3600Br2400|Cs0.05FA0.7885MA0.1615PbBr1.2I1.8||1.15|178.24|0.797|16.49|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|XX6kirMZgF16A4-cEXv9CyzKdS1h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr1.2I1.8. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.014|212.4|0.6829999999999999|14.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|XX8i4_ezgsMzXQjTU6XqrMrkablI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Cs100I300Pb93|Cs100Pb93I300|CsPb0.93I3|1.8000001919360546|0.833|161.0|0.73|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|XXH8jLeclBaJq7LMcOXGcuaZsPfA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.93I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.76|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.7b06343|XXKZ4JIWO9PfRh9Z-KTHRBNhAjtk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|218.0|0.64|12.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|XXKh2pNW0tXcqKocbRHgjQJ4RY3o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7559999999999999|183.0|0.419|5.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5nr09045h|XXPBr8aDsVvE9t7Ul0rF8t9NC7Pe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|230.4|0.76|20.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|XXSoXyfvl75wXEoYdGldpcummPNc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.5|0.48|8.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|XXZWgbWLs6DMqvsA_nTPu0_ewHg_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|218.4|0.6|10.44|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|XXaL9GKdBLbRrsEYcpbdi_UzB5Qh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|218.9|0.6829999999999999|16.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|XXkZtXfOyfG9EUX6WurwxzeQnyFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11250|XXnpv1e9WKi_dREwZcbjzdN02rKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|204.3|0.74|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Bi', 'Au']|['H-Bi']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.11.071|XXnuSq80Bl8EE2SUZDYLnPiCdBcv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Bi', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|212.0|0.767|17.54|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|XXt_0y9_X6z_CbcGtSHN7jjGRedU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|163.0|0.599|9.76|['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|XY14ZIIadvcP6VVcVctKR6yGmU49|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|187.4|0.63|9.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.03.024|XY5MByPQ8iGgm50o1TLRvul52GXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.37|5.2|0.38|0.07|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1016/j.ijleo.2017.02.101|XY6cQruIy6qYeU9xETK0woBz4kXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.0|0.75|18.6|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|XYKJhXuNMq8nntsWAsqyaDT9U_R6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|28.94|0.382|0.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.08.031|XYUeWrY0a8UJYuZud8hS0zgDFiyY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5F2H30I13N5Sn5|Sn5C5N5H30I13F2|MASnF0.4I2.6|1.850000197267612|0.47|81.5|0.35|1.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6tc05069g|XYr5J3b_f4A0hMzgTxyZEdZW1t3H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnF0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|189.0|0.45|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.02.007|XYvduFz2cn0Xm2ZXAeSIlbnGqPaj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|229.7|0.71|17.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|XZ02Fg0TNdq7XrgqdPD96vm99VjP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.210000129023681|0.21|226.1|0.37|1.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01246e|XZ3LLjnxeDLxrdVZChtgG3oDW_o6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|189.1|0.64|11.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|XZ6bmI0voaFI2nCRfNe2kFkaXGzX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.83|134.4|0.562|6.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|XZBdeR_k5W8WOh2w0k4WBeVZ8mVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|91.1|0.38|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|XZGxRQlSBVplS99NgD_cDoeRzPis|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Pb97Zn3|Cs100Zn3Pb97Br300|CsPb0.97Zn0.03Br3||1.357|55.6|0.752|5.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|XZKfqXseYEZi0R-3wWh_9Q57mEMM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.97Zn0.03Br3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.91|106.1|0.33|3.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|XZTVER5gr2oqtgv51-HpgmOE89iz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.989|170.5|0.7929999999999999|13.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|XZW0fIN2sc4bwbVlw1W4yOtH399a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|227.1|0.753|19.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|XZZvNpAU6MCcTOaA92w42zTAQgt2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||0.96|233.0|0.649|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc 1', 'Au']|['ZnPc-p-ZnPc 1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1088424619500457|XZaIUpwHmzKbEI01qDi90pTSXkmm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc 1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|231.2|0.77|20.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|XZdWBjkHU-Vyg2dX9imgqJjx-4yU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.039|188.9|0.72|11.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|XZgTwvKtYNwy8hLPegn2ZzWN0-ve|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|180.0|0.56|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/cryst6110149|XZhtPrCob_rji6EExkmCMtnHl-G_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|192.0|0.69|14.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b17705|XZt_DtwKQVNd9rIi9rE62FfaB-Rb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|222.7|0.7759999999999999|19.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|XZwI1_ZCWmPGaare-pG7SAc7AwPt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|158.0|0.64|8.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|XZwcB_bkQpoMUVcOKYoHReLDfqOY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.14|236.0|0.73|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|X_1CyKBrRQGOP3-cWtSUcCBBqksn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|121.9|0.32|2.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIP-C6', 'Au']|['1,4-di(1H-imidazol-2-yl)benzene-C6']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|X_CBp7pzTDc1J5zTzv90FM69smEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIP-C6', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|159.70000000000002|0.517|7.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2019.08.042|X_D4VxWjogrhPLIEeqnwmQJDowx3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|249.9|0.78|21.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901591|X_LJRokfTo2W5wRSgn_JsbH9n9I6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.119|225.1|0.747|18.82|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|X_SXh9Cyu4IowvpbSVozuY-poV4O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|175.6|0.61|10.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.06.018|X_Vu-ZFj9EkVIf2cP2BWg4WAjzj-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|219.0|0.73|15.6|['SLG', 'FTO', 'Graphene; TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene; TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl403997a|X_X1lMHn6QmAVpVTF-OZ1JavcRfu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene; TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|229.0|0.7|17.12|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b17930|X_etiJxmD2A3RWMlN-8h16xRvsuJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|163.1|0.6|10.59|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.032|X_nDDhWDLUPUofztbSlEueecDaPb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.03|214.7|0.69|15.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp08022g|X_pthOU6uSlEJh6WFLNjD74VuXM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.862|135.0|0.564|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|X_qQ_f8-G_E5qfS76VY6r-n4iWTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|143.0|0.716|9.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1021/acsami.5b12740|X_vQ1Fnm8MND7OlpotXAIOKYeJ9_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.12|242.5|0.7909999999999999|21.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|X_w7gXGAhdwPOntBB2m1qKx7RBXR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.12|228.8|0.748|19.17|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|X_z3uPQ7B6hqO4fhAAuabwfXxP0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|207.2|0.6|14.01|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|Xa0VcCWxSN3HsVHoaKFA-Jo0yjAx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.77|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b04778|Xa4YqeIfG1NPFfqRYF8J_U9jZs8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|162.0|0.7|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07446|XaB0xC9ETPs68u42p05a56SwtBN5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.095|217.1|0.72|17.12|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|XaCJ0prlACnlCGajEVa2lbISoEYH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|165.0|0.633|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2016.02.079|XaFyLOI5n_IfieVuzyK16Wk0E9H-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.536|74.5|0.802|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|XaIcpyY10E48wdnL20NmHGOXQYms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.02|213.9|0.67|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104671|XaM9TvLweyym4CyOPX6mAYmYPipi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.3|0.69|13.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01090-w|XaVQ97PSoG9pLmAKIyAQxGFagwJz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|197.7|0.65|10.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|XacjqCjvaVYf-QwuJ4i3rzuhUvrq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C6H24I9N3|C6Bi2N3H24I9|DMA3Bi2I9|2.400000255914739|0.53|0.65|0.492|0.017|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|XaeTzEw8UMA29TIbIYmYoLOjPV3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is DMA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|214.0|0.7|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2018.10.020|XagnBgKBKJ2tQMgkoc2X827vSSV4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.51|136.8|0.62|4.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|Xase0phgbJjIjmIH-cZIajsJ7Obp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -Br60C95Cs5H491I240N174Pb100|Cs5Pb100C95N174H491I240Br60|Cs0.05FA0.79MA0.16PbBr0.6I2.4||0.45|112.7|0.56|2.89|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.202001121|Xatl9tOTw5zpmFm1FesQZLhldjMC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.6I2.4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.12|181.0|0.66|13.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.0c02405|Xb4VfISn2mAgc3E6TKGGCpb-3SE7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.4380000000000002|68.60000000000001|0.7859999999999999|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201801837|Xb7fGArSgdjCE3vvCz1yWFITD_9Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.1|0.65|14.25|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00098|XbIM6RHHzf5UPX2F8zB4G4KLMs6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|187.2|0.568|10.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.03.002|XbKxG4COjucFlrxiObq_ZEEHKuyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|31.0|0.68|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|XbR6L_QJn4p9Qixye5XN1YM5fDhn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|239.7|0.7759999999999999|19.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901591|XbdGweF1rV5nKFIovmVXfJciXRTF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5100001610130236|1.07|218.0|0.73|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.037|XbgnGCLw0WZ7gZP5mJWmc0ODtlst|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.1|205.0|0.65|14.7|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201905883|Xbi-YKhrPU-rA9d26e8uOYFD0IP3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|129.0|0.503|6.07|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.232|XbjiwbfentaL14MSRzxBkwDzbkAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|164.60000000000002|0.68|11.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|XbnJbs6-wEMxXgomTvSM3J6qJzlF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw', 'ZnO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|95.0|0.44|4.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|XbrGp1hK-XaBShtP5Z7pDCLXn2FD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.0|0.713|13.1|['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra02556h|XbxmqQ4alw8U_1tqd7uFPGfYH1G4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|164.89999999999998|0.67|10.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW3', 'Au']|['CW3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04405g|Xc5Lt--fICpyiWGzM9f0iyzdgBjn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.058|226.5|0.763|18.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|Xc9t6uqqpZ4ZxRmgWr59iJtkN2EL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|172.0|0.665|11.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/ja508758k|XcAoH3NJ8oU1APwzLRhiv7p0--tl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|171.5|0.56|8.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508162p|XcCS7Mbg4iYusEKkZG_2WOYTLxF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.0|0.42|8.0|['Polyimide', 'In2O3:H', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'Ni', 'Al']|['PTAA']|['PCBM-60', 'ZnO-np', 'ACO-c']|bulk|https://doi.org/10.1038/nenergy.2016.190|XcKjkEjY-MEoZL8mPXL5O_WV-gEm|a perovskite solar cell with the following device stack: ['Polyimide', 'In2O3:H', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'Ni', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.63|42.0|0.43|1.15|['SLG', 'FTO', 'CeO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['CeO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.210|Xcf6l2oMhH2xOQukHf99X9q1pdQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CeO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.15|83.4|0.64|6.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|XcfnMFpnR6JnYzLJIRyqU2nGOjHA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.40|1.500000159946712|1.05|173.5|0.638|11.61|['PET', 'ITO', 'ZSO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZSO-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta05745d|XciAV8pKV1IPdP-LLPCI4DkbktiL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZSO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.40. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|0.98|173.6|0.78|13.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|XcjzXda1wwyAuaaqkL59q9x1nSXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|227.0|0.78|19.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05837g|XcluIi54RKbEpoiJfOgpwdrz8Ypp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|226.8|0.8340000000000001|20.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PPDIN6', 'Ag']|['NiO-c']|['PCBM-60', 'PPDIN6']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.063|XcoRk-NYFV1ZiSYjT_JELVSz0DXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PPDIN6', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C90CsH464I255N166Pb100|CsPb100C90N166H464I255Br45|Cs0.01FA0.76MA0.14PbBr0.45I2.55||1.093|224.9|0.757|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1004', 'Ag']|['V1004']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c8tc06297h|XcsHgflVcXr8ziu0SPy0AbLNSHum|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1004', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.76MA0.14PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||16.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|XcsbyvC-I7STU92hrVGXFP5B2uTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.104|203.3|0.706|15.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|Xd2c7qlCjKPQxOSgnf9N5grSaIc_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|218.0|0.69|14.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|XdBRS-6ew9X15BfqUfxw-gJ4_xkO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|99.0|0.74|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|XdVwkbrc204Mc6x6CJI7ZQd_C0iv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|156.0|0.639|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|XdXCNgdIBW_-5CTIq0IzVSPMSWrx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|150.0|0.53|7.95|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpcc.9b10407|XdYVCH0kRH1ZWOvpKMslPjZnGvrA|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.3|0.71|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|XdoU7l3JEXl1axdOA7p_mmiDV0Nb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.1|168.79999999999998|0.7290000000000001|13.53|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|XdoXZ9cYlXbpe-wWO0tasyNnkmYT|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.11|231.1|0.701|18.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|XdswkSIRyPbGTwumesLEGqb0D9ee|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|215.2|0.69|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PhCz-4MeOTPA', 'Au']|['PhCz-4MeOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|XdtJzRXs93R3xHH3s_V1aEXVio9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PhCz-4MeOTPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.0|0.61|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.140074|XdtxfG03b7JIGQuwujIMi-pdycD-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|218.7|0.68|15.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|XduXUvZKfkW5_JpjxK9byd4qG6vJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|170.0|0.8|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/NMAT4388|XeFBA-MFYM-1YiAy9hxE1NfKKHep|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.9|0.731|17.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.048|XeFaqIaMUSttoLwdrf9nowaLZlWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.9|0.71|16.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|XeHS3QrN0rvexYEnxyZsy2aAecT8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|49.900000000000006|0.26|0.14|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|XeMXKVFyKB6fIdRFgTRBOAl02uMj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|168.0|0.542|7.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.5b00283|XeNm_LsJNQaRRmV1uTFr4vkM9Kfr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.9|0.71|15.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08488|XeSzjRYYG7WHTbZPyxpM2pKzrAtW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.938|181.8|0.565|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|XeUy-TfQUze_O_jsf-0Az6qiyPXl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -BrCsPb|CsPbBr|CsPbBr||1.286|55.2|0.6970000000000001|4.95|['FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ra00288g|XeWVGcfs5sYa2xSY-dT9F9fx4qyB|a perovskite solar cell with the following device stack: ['FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|81.6|0.42|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Au']|['Graphene oxide']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|Xec8qg3eeSja6XECLI3KFK-PU6sM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Au']? The composition of the perovskite layer is MAPbI3. -Br102C191Cs10H987I500N350Pb200|Cs10Pb200C191N350H987I500Br102|Cs0.05FA0.795MA0.16PbBr0.51I2.5||1.026|192.0|0.745|16.03|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.051|XeiDSCVPHKbfdcN5yt1oQ1lpho_s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.05FA0.795MA0.16PbBr0.51I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|123.0|0.62|14.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|Xelwfd0uqa3PcAoxwc7OeDiPI5sR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|157.3|0.49|7.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|Xemd_1SNDc5NVdofAQ91vmL-5gXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|100.5|0.515|4.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|Xf-LxeGFbhyp0H0oDEUxRwOqKMwE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br78C189Cs10H972I522N361Pb200|Cs10Pb200C189N361H972I522Br78|Cs0.05FA0.81GU0.025MA0.11PbBr0.39I2.61||1.089|211.4|0.664|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|Xf6U7lUL42FJIuvIu9MOpu_SEpid|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81GU0.025MA0.11PbBr0.39I2.61. -C100H583I300N117Pb100|Pb100C100N117H583I300|FA0.17MA0.83PbI3|1.5880001693302526|1.046|187.68|0.599|11.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|XfF0dtoga6-MZbx0Ox_CiQA-DBxj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|XfeosK4uNJrGz-C4X8gxKwpN1gT4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|161.0|0.7040000000000001|12.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.008|Xflw56ERv9Be-NL8wjZxOShb2MPv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|201.0|0.703|14.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8269|Xg0RrHfwFYnYzUC_-tWj2Tbn7wmh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH98I57N35Pb20|CsPb20C19N35H98I57Br3|Cs0.05FA0.8MA0.15PbBr0.15I2.85|1.6170001724225558|1.16|214.2|0.77|19.13|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b10616|Xg3I-042pOPOUhcyfGStbE4M6h2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|113.0|0.627|5.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201500436|XgCyHFq_VxlnlPgLA4CVjQ1hi3UU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|197.9|0.648|12.48|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ra14372e|XgXEPBc4CCiNt42_ukKMRPy0iN88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|144.5|0.66|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|XgdzAv0hw5pjtzI_Lmvwx__u9EwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.94|0.069999999999999|0.36|2.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/pssa.201800894|XgmDq0EeEFLDvRiV8qLxAgvqxrRZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|158.0|0.65|9.8|['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'CuInS2-QDs']|bulk|https://doi.org/10.1016/j.jcis.2017.11.066|XgmdHrrhIGbuDXMtH02Pf-IMoMNg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||0.83|116.8|0.52|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4ta02635g|Xgtbj6jkBntyrM8oxfZfBF_Pnkwo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|177.34000000000003|0.584|11.59|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|Xgx0lzLPiHbxUJHNfbobfhlxdzo2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|142.5|0.64|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|Xgx6wD78u_aprZo-Zo4VQOSnQzuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.0|0.647|13.7|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|Xh00xoxjeYWu36ZEn7NjD92DkF3t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|194.4|0.65|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|Xh3gWo-8ZKciDmhkp4VwzD-22aT2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|166.22|0.789|13.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0075-5|Xh4-Vn9aLYu_-Tq56t_cqeHM2Ysh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.01|193.4|0.73|14.17|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr05235a|Xh4bTCEb3G1suCzqOLRez5UBIpGU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|Xh6Y2lW9APf7ACa6Zr_AjdtIgFC5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|195.9|0.722|13.48|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ra14372e|XhYRwk5gcTbCXv8iFT4HrW5DMHEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|137.7|0.648|9.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|Xh_qjmcU-t6rI8OqrhS7zJf8cpVg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I9N5Pb4|Pb4C11N5H42I9|BA2MA3Pb4I9||1.01|85.1|0.72|6.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsami.9b17047|XhmF_IgzypoxItAKlN3HXCIeaAae|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I9. -Br3CsPb|CsPbBr3|CsPbBr3|2.3100002463179368|1.49|68.89999999999999|0.79|7.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.10.017|XhnlwSA57o79IG3AGfsaNMSfTmrG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|172.39999999999998|0.628|9.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01843|Xhqwxaclgy3ROZpdvg_mR9_jZCfW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8|88.69999999999999|0.5429999999999999|3.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra15512j|Xi-35FoeQkS5TXLE4DXGhITiJJeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.023|5.08|0.94|11.0|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.310|Xi3NGh6siNqw4PttjEykOqVjUQuM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6600001770076949|1.01|167.60000000000002|0.741|12.51|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/nature18306|Xi3guusjI14D9yWbnn3d-o-crkRy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.089|211.0|0.649|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00697|Xi45wSB08gaO6G1b4YP2qRFhiwxU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.5300001631456466|1.1|240.0|0.764|19.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|XiBG_JpbnuwNMccbS7nEdgvKljW_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|135.29999999999998|0.539|7.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12221|XiHXCVrMdz3fV6duA0bG3cyofTEY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.09|231.2|0.779|19.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01096f|XiOKhS0JDK5xe_58VHh7fiGJFfwD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.29|0.65|14.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|XiQW59KjTeZAI_25nNPeVGlOjmfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.47|71.2|0.54|1.78|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c6se00070c|XiUgVffbsaItDjEtc17IbwJbO2vz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|211.6|0.77|16.75|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|XiXN-5RQt-kGgm1_sEsh6eDpBdgD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|191.6|0.643|11.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60-DPM-OE']|bulk|https://doi.org/10.1088/1361-6528/aac293|XiZSodfCop-PULRZKA83DHMMcEdP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|155.9|0.48|6.38|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PPy', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PPy']|bulk|https://doi.org/10.1016/j.cej.2015.06.050|XidOleN9u91ommyMO1JyjIhDnLnn|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PPy', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|207.0|0.74|14.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.061|XihSUHJl2KaBkzGNW3fofHhefc5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|XijRbavGX9f8ujHFPk3ee4JIKaQ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.7|0.654|11.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01202|XimVpTKBSBQHCKfROuMueV21YO51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.64|265.0|0.648|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|Xin3Lok-Bxs2fCGfAcF-6wdP0N-2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.741|17.28|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02679|XipS9nxn-RIkvs8YiQ5hZ5gC5WGN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|170.0|0.66|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00121|XiwEcGpxMAS8KevKUc53Ys3pZ65t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.08|228.9|0.737|18.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ETPM']|bulk|https://doi.org/10.1021/acsami.9b00528|Xizmofstum-Wo0oeN1dObw2sSZP1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|101.0|0.34|3.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|Xj7Ra5Ij8pBfsDeuOoCVEXi2BIv9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|183.9|0.706|10.82|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|XjLPr57l0F5rlkqb5DFbLbXJpdo0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.100000223925397|0.74|14.8|0.52|0.57|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|XjLqv894bVU9n9iwrV0iuvVtq_bL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|202.3|0.6890000000000001|14.36|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cc09838c|XjdzUm1SQECETTlF18xOJ1hl3UB7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|196.9|0.73|15.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cc08657a|XjjppD5lPrAow0cZP1_Mi6UBFsYY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.06|221.6|0.753|17.88|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|XjqToVg-li_5JHfegsLxjoD2exSi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|60.1|0.25|1.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|Xjue2_TYCzBKVJx5bRkpkYVTZeMB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|154.4|0.66|8.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|Xk4f2fd0AEFyDuX_2okidOptmHOj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C7H10NSb|C7SbNH10Br6|(N-EtPy)SbBr6|1.6500001759413832|0.79|31.0|0.39|2.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701140|XkF9kT33jofu1fpesnLdKyg0VOms|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is (N-EtPy)SbBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|185.0|0.65|12.7|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|XkI1MoCS-Hq9swrvWNjbu0UU-nbf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|195.0||12.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|XkMSCoR30DfZtw6biLhT2gcB26nD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|220.2|0.68|12.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|XkegA1RZ9rD2aJooNvQXMxzCgZhM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H103I100N37Pb20|Pb20C20N37H103I100|FA0.85MA0.15PbI5||0.802|175.5|0.65|9.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|XkkvYsO4nMdJhoed8oQvK3oJ9oTI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|225.9|0.54|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.019|Xkx4TEiCQA5liz9R65NhuuvuVr3f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|XkxVM9C29rfiXPA_ED7_IZVk5cnf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|183.0|0.713|12.14|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|Xl030UL0QFbmc4WI60jyGsrI6lwT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.18|250.4|0.778|22.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|Xl3m1TUzZlwJIxQjSwc1RAzW5dGE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.08|193.0|0.65|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501310|Xl3mlDBrc-hhRPdYNBCh1g8-8g_D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.04|225.4|0.703|16.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL52', 'Au']|['BL52']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00637|Xl8bfG4bArSpU1SOx0mEwI24TqPZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL52', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|214.9|0.584|12.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|XlCc9ve4nl3TqHAP_0146nGxURvY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.143|219.0|0.718|18.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02901b|XlGa032o-oI2U_dum2V7pkx4-0nm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|224.8|0.787|17.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|XlNfGqz1c96OfkRMbX2BF3HDpfzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|193.0|0.65|12.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|XlX8w6UlLX-_ykCSXMLlhcChno8P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|178.5|0.58|10.38|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1149/07202.0275ecst|XlYHrISIGQsUjhFJ_8BJ3-oSgQ--|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|||||4.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'FNCA', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['FNCA', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b17535|XleSR_YI0gG9gn5J92_oD1kRcz4y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'FNCA', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|241.6|0.7170000000000001|18.08|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|XlpxbNQldkwbs9AsrWbQoGgXgNoJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.0|0.569|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.017|XlzHfopZ5lAC-IlC2TIUa6sbXYMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|226.0|0.76|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201705363|XmBpcG7s8GjwWiK4gqSHjz9rpHsp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||14.67|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|XmEosnNt4OWlxnTiYiuuwuGXw28-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|207.5|0.735|15.59|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b15710|XmI_ESA51Q2Su2jApgouBcqyXviK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|206.0|0.787|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|XmQ9_MrrJY6YrcjwYkqIPr_wudy-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.22|154.3|0.794|15.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201904387|XmSGh1ZxtIR5l0CKEA6MFIhflDIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.02|211.5|0.67|14.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|XmaZik19aOil-PrTMR6b-3QV_lDc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C100H513I249N187Pb100|Pb100C100N187H513I249Br51|FA0.87MA0.13PbBr0.51I2.49||1.14|220.0|0.74|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X51', 'Au']|['X51']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900196|XmgXkKdj5NFtTDXhs_HLONbCdhRN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X51', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.49. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.01|177.0|0.31|5.63|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|XmwYfcHYhqV6TMoMacvvDJwSm08_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|198.0|0.737|15.26|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|XmweLlo7EIiH0zUS69hHOQgd7Xyx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.52|199.2|0.6459999999999999|6.4|['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s11426-019-9653-8|XmzNCeKFEfKtaZAgdzgIVyiAk_Lv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS; PEG', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.02|152.0|0.67|10.3|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-63']|bulk|https://doi.org/10.1039/c8ra08022d|Xn6ch14_1HuOqc3k6dTYHrgWvBld|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|115.8|0.354|3.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']|['ZnPc(tBu)4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|XnBEFhQF3mBBAnhahJASvAVB3yrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta00398c|XnHEhGfaOqiO49bIJ08fiOCcgfZt|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|188.0|0.7190000000000001|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09922j|XnKvNiksIqq9ta-fcHMWfu9I6SiT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.106|162.0|0.78|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['IPH']|bulk|https://doi.org/10.1039/c5ta10574a|XnNgeyptM-7_LmCdAEZvAKz6CU5T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.96|139.60000000000002|0.6|8.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|XnSSDgFkIsa2Xb2CLhaVxgL16zMw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|99.4|0.7|5.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|XnheeHml2AlvenixqppeqsWcqFqq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.89|108.0|0.64|6.15|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|XnqcBMQ3z_4NK31zuly0LJRHVqH2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.59|45.4|0.396|1.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|Xnsgw8WELN-KlxLC5JudY3L8P3dc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|156.2|0.64|10.68|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|XnwxhYSx0ZKMqky6670vmKy8yKI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|204.0|0.69|8.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|Xo5zmXAWPOyLqg5YgGuz56cmB711|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|213.8|0.72|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|Xo9Ez_qQyhGkljb3Lr8I3AZaX-LS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5300001631456466|1.01|92.8|0.42|4.05|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|XoKwnPYBF83t4EnL-WIqwS19exDz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.89|216.0|0.752|14.5|['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|XoNHQY0dbaPUjUiOsCevMqZPgPDB|a perovskite solar cell with the following device stack: ['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.856|283.0|0.7170000000000001|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.18|Xod66rHQDY7wlY1LTrh3F0_-yN_q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.6|0.67|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.093|Xok3S8Wm4TZK61swrfROdZa3J9_k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|182.0|0.59|9.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6nr03359h|XokwDBXXuoctCQrGi14ZJWCi3zeg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|186.6|0.457|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.09.014|XospGbVdHTzUadKTEUGpDUVEPUyB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|186.0|0.7|11.9|['SLG', 'FTO', 'SnO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5nr03476k|XovzF71Qu33HCcSArt3tWGSlxAVG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|191.7|0.583|9.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|XoybAg3NRZf75adq4C9Y3QZsjo24|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.93|212.4|0.69|13.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|Xp3FHx5uM3qLS9cIcARgCHSLgVbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.6|0.71|16.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01136|Xp3qg8nFB80aLdEdU1e9ESBB5Jg2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|182.3|0.3939999999999999|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|Xp8NJBY7LXWW08XdmYG-WrKZNlcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|199.0|0.6920000000000001|13.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|XpJrFT23qRCu2io3bvE_G58KNRA6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|155.39999999999998|0.63|8.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|XpRPDwWAk1wG72rNSE0Kq8xbGu0_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.07|222.0|0.703|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.07.013|XpVcBVP2bv5btnyNRE7fH5Y3m8FL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.4|0.635|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/4935265|XphS6OOojhtT5zRvjoirI82EmJdh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.977|174.5|0.611|10.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|XpqF_byBKamFfB-41MdTZZ-CeN0I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|93.4|0.2|1.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-3,4', 'Au']|['H-3,4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700304|XqFzTANpR0ausMRjb7B4CeIHnsaR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-3,4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|95.8|0.775|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201503099|XqK2P9EBrdTfD-oQ5bh0fm-Fr7bY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.747|127.38|0.604|5.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|XqPatL2LqW9Dy0LowHUu-zZgUPqn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.97|200.9|0.66|12.95|['Cu-nw; GFRHybrimer; ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/am.2016.85|XqWTP0UbL-mEa9egiofavZLdtOJJ|a perovskite solar cell with the following device stack: ['Cu-nw; GFRHybrimer; ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|123.0|0.59|6.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|Xqg_8D4jhy9qS2AgPU3-9dY0gh9K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.3000001386204838|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|XqmpK5odWWcVV82GNsy0mBH7T9Kv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.737|17.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10677g|Xqp3vJdXlzsZdzuaM3gAz2n6W8OP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|229.9|0.47|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cu']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b07061|XqvebJ9uv8B9605o0Gczx44dabkM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.337|103.0|0.3|1.08|['SLG', 'ITO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.027|Xr3FPKRaXpV-tCJgAQ2WGdMPLnX2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.2|161.6|0.7090000000000001|13.75|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|Xr3fE8lsncIR8jR8sRHd4O4flGww|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|109.5|0.36|3.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|XrFXMxw69nSaFgGFDAYv9znWLyiu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.0|0.736|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|XrFhDUIlol6R8bIZjsu7EHATyLBb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.1|236.0|0.741|17.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901726|XrKL8LHe3YTEXZcYWWMNSEh0JaZs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|180.10000000000002|0.52|8.59|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|XrNpekIkNxv4fUrqw0Xy6IVab0Ub|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||12.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']|['PEDOT:PSS']|['pBTT']|bulk|https://doi.org/10.1002/smll.201803339|XrOuXl5ZJhP2mmmbN59Tr6vcFP_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||5.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|XrcV8M2zXuG5lTrkYkQlpzGCz_rD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.06|193.14|0.768|15.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||XrhCYR737ZY631lHyTmTaxT7By-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.726|179.0|0.62|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|XruKKNCxRpMvZMn_AOJLHv9xEUz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|153.0|0.7709999999999999|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/cphc.201800732|Xs7htQ5hmgSDfNpDNKbj9BHsEu8c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.14|238.3|0.76|20.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900336|XsCG_XJaL5VWAVKc5p3q-9C3OErM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|1.162|196.2|0.8079999999999999|18.43|['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|XsFTov31lQnx7L3ZojvjOc30vnyv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.977|179.0|0.69|12.0|['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']|['KY7F22-np', 'Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|XsRNXIUrJXk1XsOsmQSDXi150dzD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'KY7F22-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CsI3Pb|CsPbI3|CsPbI3||0.76|59.8|0.68|3.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'FTO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.12.121|Xsbgo9LMBSKteiVnLa1nD4Nfxl7n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'FTO']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.7559999999999999|129.0|0.62|6.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|XschifenOaRH3nrHj_sWYTteWn5i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|222.6|0.69|12.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra08946a|XsqJP866cuxRmEwUdjyE1pHcCpbf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.04|209.0|0.79|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|XsuUcoLRavfpZd4z1IVKjdwF3J6Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.59|207.0|0.3379999999999999|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-3', 'Au']|['TBC-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|Xsz9et0WF_Sa4Nopz6RLMd-tPZnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC-3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.053|226.2|0.7|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'B2Pin2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'B2Pin2']|bulk|https://doi.org/10.1016/j.isci.2019.09.024|Xt0N_CUwSKbDWTN_eJ8lkd8DlX6g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'B2Pin2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|176.1|0.67|11.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|Xt3kQy2lYPGQlKbhjRhK35lb-qwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C32Cs5H185I300N39Pb100|Cs5Pb100C32N39H185I300|Cs0.05FA0.07MA0.25PbI3|1.5100001610130236|1.14|229.0|0.765|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.202000995|XtEnDcy16ny-YBvbe6Lg0eX6tUgU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.07MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|228.4|0.62|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|XtG1T9FGc1-KXa_edIcGwGLgLLqL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.94|92.2|0.5|4.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|XtGBna7WIKEuqLbO0xxtDVwqokmX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0490000000000002|196.5|0.74|15.29|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|XtJ6lcAFE05jHbmqtnmpoYLcOYdv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.7|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|XtJgwJkGvaq5_mkhxkMDd4p4rvus|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.04|192.7|0.71|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801118|XtMquNgYXk0qFesBx9sE7egNLeLI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|126.0|0.69|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|XtTnJnFe5ZVcYWGuSo6aUhe1wKkM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|245.6|0.8|21.23|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|Xtgr6NLJqwniW_UgNbS1t0lOAdS5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.0|215.0|0.544|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|Xtkrp5c6SWiBZCNQnfTjA-jFouAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.6|0.5920000000000001|11.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06727h|XtrUsHKZEgt-Tm2t2czzbFICPVGJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.3000001386204838|0.741|202.0|0.71|10.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7NR03507A|XttwVRBpedApc4IHZajAk3rbzjw2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.0|217.7|0.68|15.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|Xu5fHjIwKwYrSGGVhQ9KTnyYLVkm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.59|140.0|0.48|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.018|XuBo-7RryENhm-6Cr_ZQvep8eqAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.04|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|XuPd6GKb_FhlBaYdCprObidnLpy8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.9|0.69|15.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21448g|XuRDFc8_qvbbMd6sHRDwW8VY8jEO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.16|235.5|0.752|20.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201902472|XuUu84pmrxkWNKln3ifrlAsvUCiO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.5800001684772036|1.09|212.0|0.701|16.2|['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|XuXn3dWvFHS9w4SA16Cepwcyeazy|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br24C60Cs40H300I75N120Pb100|Cs40Pb100C60N120H300I75Br24|Cs0.4FA0.6PbBr0.24I0.75|1.8000001919360546|1.263|174.0|0.797|17.7||['NiO nanocrystals', 'VNPB']|['BCP', 'C60']|bulk|https://doi.org/10.1002/adma.202110356|XuYG30BdrX0SIS67k-nMYbxG9FKu|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.24I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.8|0.68|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|Xu_Mc30ZIjONii4n3soVBL_Jspkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|Xui36L9-3om2KJBF2Rv7MIo3rHNh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2Sn2|Pb2Sn2C2N3H11I6|FA0.5MA0.5PbSnI3||0.82|282.6|0.79|18.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903013|XutC2xOAlD6Ksn_MttaDBKnx8ndo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbSnI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.73|239.0|0.72|12.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|Xv6uiEe83zeTiJRPJBXLdaK5Eas1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.04|87.8|0.525|4.8|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c8nj02238k|XvF9yLcJZTKv16daoO8SSYcLcNJy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|18.0||0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.05.180|XvJovV5hQ6buub2gWElTkCpaZfD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|182.0|0.5|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2018.07.025|XvO2vkBGlUSK54pspiCFDPgCTbFE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|236.3|0.69|15.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|XvS8PkVmtP8FszIdhayS0xEEu9_b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|199.7|0.477|9.9|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|XvV-9At1fSDZGkPZbjvET95mR02V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.137|186.7|0.628|13.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Xv_6HDpE4yjD3wFrKLz0kXetJVOf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|90.8|0.5|3.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4RA17316C|XveFDpcTKJuCHLJnlx1uVT0QzRMH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.0|0.75|13.4|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|Xvv03FKkC5d0OdxDSCP7K1YO6oPh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|228.0|0.67|16.2|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|Xw4mb0NU2TkZgIOrbUQuCkMMsQp2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.133|228.9|0.7609999999999999|19.75|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|Xw9W_v1BtYNPM8l3xj4JGZSbUeFl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||0.95|205.0|0.67|13.1|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|XwIMlxjFfDw1wUsUlr8ScYUmEtvM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.037|196.0|0.74|15.13|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|XwJM41qWeP1WcOsYK5epcoEH0R1N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.3|0.6659999999999999|16.25|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603021|XwKwknZQ5S77mTQZYMyl6txKwFA6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H60I22N8Pb7|Pb7C14N8H60I22|BA2MA6Pb7I22||0.96|84.3|0.502|4.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|XwNMzblqk_cshmaoLzc0bjz6dkkc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is BA2MA6Pb7I22. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.7490000000000001|5.2|0.362|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|XwSh7Nij9qXvSWIXHuRYDiZYQfMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.0|0.8|16.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|XwXyfy37jW6jkbzORmAyCRH9HMpy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H27I2N8Pb5Sn3|Pb5Sn3C5N8H27I2|FA0.6MA0.4PbSn0.6I0.4|1.2500001332889268|0.8340000000000001|304.0|0.8079999999999999|18.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aav7911|XwdnEG4b_JzI3dxWcIh2t6582PdT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbSn0.6I0.4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|224.7|0.76|18.44|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.002|XwgojLIQO-hNxtkD8a2K4j4oJyVy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|228.5|0.804|16.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.056|XwlixK7Z8fxY-5fv8MYtqXhacxua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.08|224.8|0.73|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ETPM']|bulk|https://doi.org/10.1021/acsami.9b00528|XwmZ8NRPwDpxmn4CVMp2jJ551qjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|1.830000195134989|1.29|57.0|0.68|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11393|XwmqGVckCjVJJSvhlIlypZicc5KX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.1|163.6|0.743|13.3|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|Xws67cpfB3Jr2iKfSP47wJGC9p9K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.052|218.0|0.763|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|XwtgB3Xhy6UY4bN0zzX8ZAaa9l5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.858|139.0|0.431|5.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|XxK6iEext5YiL2VVSxsAc_kE39HR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CCsH6I6NPb2|CsPb2CNH6I6|Cs0.5MA0.5PbI3||1.04|203.8|0.56|11.98|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|XxgqooS82f571fPNtszlzXyF3yLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|176.0|0.39|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|Xxks4U6nmv6KvkS9sypJFqqaSaml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|Xxlco0peXAGbLsb2HmpUhIEeT8cn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|205.7|0.7|14.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|XxrJpNa8swpQ_3Ngk2ggWHjruUHx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.68|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.027|XyE1EwWWyxnOOmfyZlCdtE7N13OK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.09|234.2|0.75|18.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.105387|XyML4IFzkR4v6nOwSNNvFOeHfV5g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.0|142.79999999999998|0.59|8.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|XyXgYEz2J0_4k2rVfBVWYSfsK5De|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.5|0.777|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh-EtHex 2', 'Au']|['CDTh-EtHex 2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00119g|XyY7QoTL4f4Li_-ntYG0LoAW961K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh-EtHex 2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.55|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab334f|XydZBGaP7v-Yy6kgmJWDmKE_sB8l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|193.5|0.6|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep29910|Xyfaov9NSf-xAyE3XcIImikDVFWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.88|10.0||0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.05.180|XyfsIcU9ypATHxGBJWtxRR51qw7n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|161.8|0.6|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NCHEM.2324|Xys5GK44FC4mo2EtDXfhiWCoWqV-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|220.3|0.743|17.5|['SLG', 'FTO', 'SnO2-np', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|XyxURwkvlq84NfzsIcVHfPRNUp3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.82|114.0|0.53|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03394b|Xz0NtdMGOOYfW6DV9c44WEUyiwPT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.05|222.8|0.8140000000000001|18.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803476|Xz1DE-RL2YJ9PfvRdEI1DnM8_4Xg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.0|0.7490000000000001|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|Xz2LmhHFZ_4AXy__KB7xOakeYa9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|Xz3cY6TdqBXywDbJN12xIFU3CDft|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -BrCsIPb|CsPbIBr|CsPbBrI|1.7700001887371206|1.22|182.0|0.81|16.9|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1002/adma.201905144|Xz6U8onP9djtqEThRgcCqbrh4eeH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|177.0|0.56|9.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02976c|XzQYwOOaYSVaZoYCeQXvkuwJwBM-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|167.3|0.602|8.98|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1063/1.5004627|XzRgCCktXpMcWlPLJWc-UzFlUGtx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01939h|XzTttZ0OQbNoDRdAZiytx6xW380e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|92.0|0.18|1.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.7567/JJAP.57.04FS07|XzXKNveqpFf9WW5X87tMD1XJROEI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.57|182.0|0.6409999999999999|6.28|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|XzZ804H8I4SC1PhAE_OzCs9ztexa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|9.6|0.741|14.5|['SLG', 'FTO', 'VO', 'Perovskite', 'PCBM-60', 'Al']|['VO']|['PCBM-60']|bulk|https://doi.org/10.1039/c8cp03223h|XzZf4hCKGRPsDBmq-aPCzDawnBPI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.518|5.29|0.768|0.21|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']|['NaYF4:Yb:Tm-np', 'Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Tm-np']|bulk|https://doi.org/10.1039/c9qm00311h|Xz_G15W8cPJt_fPK_pTz-p8aUUNt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|59.7|0.34|1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|Xzfa1c0DoxeQKIRmoNjn-T8uLaqE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||60.0||3.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|XzhpK_xNhZRmHseP1A-E-JVDH9VL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|205.9|0.58|11.53|['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PEG']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.018|Xzq5bqIWdY_kGMJ0TiV7yT0W5X7n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.193|140.6|0.721|12.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c08006|Xzt8mKzznEyzys3gaVO54-k4oE3r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.03|208.6|0.62|13.41|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|Xzvq6fa_X4woTe_k0w0edSDeXjUo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|151.0|0.65|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp04749e|Xzyam7uF6PoJyN0O6Fu9iJAAzzr7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|178.4|0.6|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.003|Y-3T_15MMuBPbhnnMCpaeWTTzLfl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|223.0|0.7|14.7|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|Y-FZf9eFofakXqcGqcgW_uQYfqVX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.78|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110288|Y-Iqw3nLndTkjhEJ3yy5HrfhMpf0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|95.0|0.48|3.6|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/admi.201500790|Y-JQiMKmhQI17chs0KjiUWa39gt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|61.0|0.26|0.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01026|Y-UWPK4KfIRVBHVSBNV9KBu9wgRu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|132.79999999999998|0.74|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|Y-aGDfRmgRC1wPgP5miMQiVpgjwX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|189.1|0.515|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-4', 'Au']|['BTPA-4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700096|Y-fGyclJfqEetVh4TgNiwh9ge4LF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.863|215.0|0.77|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta04132b|Y-gQM-v2xn3D3yI5SHSdKojeQrQk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.6559999999999999|13.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|Y-isamhxueT_H4BMpVz26il-wHFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|150.29999999999998|0.65|9.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.212|Y-qy3J5l3XF3XgTzdlUi0Nf6eC-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.134|208.1|0.757|17.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|Y-rdvMvAGo92SN_IDu6wVA6x3JgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.82|151.5|0.374|4.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|Y-sr3lZRmgDO8XIdJR2I9JxM3O1_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.72|13.8|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/anie.201505882|Y-xo_Jg6HM4NuDRa2mSEFUojMtI5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.826|211.9|0.655|11.46|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.280|Y01Jl5_VyPvfrWd_INrANZBdA4AW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.0|0.48|10.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|Y03P-6Wcig33E8Q8gkQ86CTYFbLb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|226.7|0.71|17.15|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105384|Y070_mK2cftNOITX3T8FvncpScDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|166.6|0.618|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBDTT-FTTE', 'Ag']|['PBDTT-FTTE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.002|Y0CZuKAJdbWfj6KfVrqUYdwuNEx7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBDTT-FTTE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|155.1|0.63|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ra16385k|Y0ZpQqs6PKIhCIPyiCs1HeiuuDX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.9|0.33|7.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|Y0dwzIS1dASjoT6YPoeQjqTNZ7NC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|109.0|0.29|2.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1155/2019/4360816|Y0eVKyCMj21YbGbBA8mEnJA7JxW-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.5|0.72|15.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-np']|bulk|https://doi.org/10.1016/j.vacuum.2019.05.025|Y0jIoUd_HjlyBVxRYOzWpsZxA0HG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|185.0|0.64|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1039/c4ta05196c|Y0nxEaBjqUyIde7c9GVSJGOIJori|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.23|178.0|0.76|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|Y0pD9ZXkq3vpzCsHy7EOtEz00Ij6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||0.97|191.0|0.73|13.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|Y0ppECBuffwP6pTHeJlIa1dMcpur|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|195.3|0.42|6.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|Y0t3ALsOqT9GBHbfh9EX3ju4TI_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.9|0.64|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|Y0uX64tY10iKDTkO0cKVXf_ovd4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']|['PTAA']|['PCBM-60', 'm-PYBrZnPor']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|Y0yaykhMGgWUgz6KYIFJSApJIJln|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|154.0|0.66|9.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201401229|Y1D4gTbnS5ZzHBJ1jVBz86xiwaKl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|184.0|0.38|4.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'NiO-c', 'Ni']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.03.010|Y1G55aPsh7Yp-ySI2D3pz-OnT7Js|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'NiO-c', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|137.0|0.45|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|Y1GSaE9TmT1eW50PoYJBvS9Hj48K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|212.8|0.7759999999999999|17.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.05.091|Y1OzAhVQZJ1hTeyXIJvcbv61xpkM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|167.0|0.772|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800324|Y1PMPrx-A2cK4CXbpVAQtDCvIpHM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3000Cs1000Ni3Pb997|Cs1000Ni3Pb997Br3000|CsNi0.003Pb0.997Br3||1.457|65.1|0.772|7.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|Y1V9o4mL8V33xSI9OV9g7EpEHWwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsNi0.003Pb0.997Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5740001678374167|0.89|158.0|0.635|8.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.033|Y1gFIk6IL-QDA-syEEghhraKDBGT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.883|191.0|0.61|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|Y1uyG-v1OrVKrHfWF66UGBJf4hZt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.4|0.736|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|Y2-lXpoARYoX2tqrna3QDFlWjBt2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00816g|Y22lpCsUizOoG3opJtEEI_MpwJB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|155.5|0.5589999999999999|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; TiO2-nw']|bulk|https://doi.org/10.1039/c5ta06727h|Y25HUFKeBK1SaQArp7U4aIbTM_zt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.15|145.29999999999998|0.71|11.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/sciadv.1700841|Y2Cdw562mXuBXoJcPvo7LQ3rQREd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|214.0|0.75|17.51|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|Y2Fu2UpUXEtJQ_aXwYFvY9eAr7Ox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|209.3|0.72|14.97|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|Y2GCdaU8XuhnZ5rZeD1asBpwcPoD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|167.89999999999998|0.42|6.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|Y2HfldwNQr3H4dbvLgS0bxkNnKiO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.7|0.983|22.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|Y2IkM-_I6bfOeYdS2CAGO6e_f2U6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|239.6|0.62|14.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|Y2KMFyDsM3Whie_bhYZ4jJOnn6yD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.3|0.7509999999999999|17.46|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|Y2aP6b65ZCOflpFS0velhPoPPHt_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|20.0|0.42|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.014|Y2fmVYphTOjFFMoA_2J0GpGu07yV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.3|62.6|0.763|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|Y2kMdmt47TgtmrQh7-RTxC1PM7S8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|175.0|0.632|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07507f|Y2kVrm91YjwXsTOAaMFy5_mIRFJ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.001|5.9|0.215|0.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|Y2liNSWsJzWF20IAbqru8pd_Bj8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.9|194.0|0.59|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|Y2sBfi-8JaPxU5mfmNCKOXfweHFI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|194.3|0.6759999999999999|11.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MAI']|bulk|https://doi.org/10.1186/s11671-016-1540-4|Y2smjph8ufON0Fjkg2XoLyCD04vS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.133|92.7|0.6920000000000001|7.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|Y2ubsnuNE-NGUCHxiwnBOmPIckQ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|182.0|0.73|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6mh00159a|Y2vORa8aiidSY2EEIXa91BuTjD88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|217.0|0.754|17.3|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|Y2xqt_uMCSh49HNu488kjPyxlSUl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.516|48.4|0.762|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|Y37DVvFSSXfu4nbVeYhtuffFYuss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|0.887|140.6|0.593|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.12.170|Y3SDaaEHZrhuhYqSDTEPgnImevnI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7290000000000001|37.0|0.357|0.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|Y3W12lxY2o3EoM7VpGJeTIGG6FjA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.89|207.9|0.76|14.25|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|Y3Wbye-9fno3oVk7lCj3BnuXKDfE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.2|0.64|12.28|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|Y3alX0kQqyn0zEmBD9OTrVwvVX3b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|184.7|0.46|7.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|Y3cuMag4PkHB22c0SmNypt6baSFn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|220.8|0.6579999999999999|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solmat.2017.04.035|Y3hSlmtOl6JU9S83ttCs6MBn6Lvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.2|0.7240000000000001|14.82|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|Y3icSv73QhMKcn4FCliBH9-4hZFM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.4|0.701|16.94|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|Y3mIBUcrxb20YoM_2u2M3cBOh3a3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.127|196.2|0.72|15.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|Y3pnMSmg6PKqei88lNd15-USmel9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.5|0.61|14.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|Y3tyLYYxYbmo0CRDmkh2OV6jU-po|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.051|188.46|0.736|14.57|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||Y3vj_c3fn-aS9DgpMxn7ibx7uNsi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|162.39999999999998|0.807|11.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.6b03815|Y3xB9gNbkmf-fza_xeCHhI_HM5qw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|220.1|0.76|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta01755k|Y3znLD979Ubeo54RG9tIUo3cSP7u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.0|181.1|0.613|11.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|Y47qpNQaSwNuFv4IfxlETmDTYlBH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|Y4C9LumrNAFs2f34g-1eLwG_DjPH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.0|0.52|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|Y4F7cBprWKJbwdOWjApto74_nn-B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.621|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanocones']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|Y4LUb8_yoLdTsmvnZu6FIYAXoyl8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||8.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|Y4U1FSNHmi6gso96fxXKpaw0Y7fX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||0.92|191.0|0.52|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1364/PRJ.393647|Y4mAnDVds2pXeCy68qdatx_rS0Of|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -Br9C96H483I291N189Pb100|Pb100C96N189H483I291Br9|FA0.93MA0.03PbBr0.09I2.91|1.5500001652782691|1.069|243.14|0.7659999999999999|19.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/NENERGY.2016.177|Y4oQfGeyvLblGPeDrg_Y8dIAxu2A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.03PbBr0.09I2.91. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.96|211.0|0.58|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solmat.2017.05.072|Y4u1aPR6GnhyDywsph5Dckn7rwMw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CsI3Pb|CsPbI3|CsPbI3|2.240000238853757|0.55|20.0|0.66|0.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.018|Y4ucRUXBxIbyiOO3kBYYU5_iyVau|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|135.2|0.72|9.0|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-Na']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|Y4vv8TakF_GgDYdH1eJA4du2ah55|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.4|0.669|13.1|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|Y4xZ__yICvOLY7czXnrBfGJ1TSKS|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.9|0.82|18.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00400|Y5MPTEzBB0Ct1Kvr8r3z-4xVCpDl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.94|222.0|0.6940000000000001|14.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|Y5fyZRqbozgx0x3LrmujY2Eny-y5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|56.2|0.3339999999999999|2.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|Y5xCxyfQ1BWxt2qq8YeR6UOyry2G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|204.31|0.737|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|Y63xJkYnutzz_48l3nm-ofBlvA5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.934|167.7|0.58|9.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.07.112|Y66S4St42Ma5kV8KNzToIeN4d2XN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|61.1|0.6829999999999999|3.54|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['WO3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8cp00645h|Y69EHYc6ZSe0V2-lmYX-i3j7rq_g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|202.0|0.76|16.7|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|Y6DpCQrqn8oCRKAheIjTIrOFOgcd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.0|83.10000000000001|0.557|4.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|Y6TtKstjd1-LatsonqyaG-0pc1pK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.0|0.725|16.2|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|Y6Z98yiQlpN6UkLfNV-kUVOSi4bz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|180.0|0.48|7.7|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/cm503803u|Y6a_IVlj0ex6evlOt9g3p_OVT-au|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H52I22N8Pb7|Pb7C10N8H52I22|EA2MA6Pb7I22||1.03|209.0|0.7|15.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|Y6fbgdDLt5mEtsB_ZM_0OQUswOT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA2MA6Pb7I22. -Br9C18H93I20N33Pb20|Pb20C18N33H93I20Br9|FA0.75MA0.15PbBr0.45I||1.06|228.0|0.73|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-OBu', 'Au']|['CuPc-OBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803287|Y6hBmdTQ6oV1epL8vEGlOsyF2mac|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-OBu', 'Au']? The composition of the perovskite layer is FA0.75MA0.15PbBr0.45I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.3|0.765|17.12|['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']|['FTA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|Y6oFjrACMjCV0h9hmdYyUTQyUfIo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BaCs10I30Pb9|Cs10BaPb9I30|CsBa0.1Pb0.9I3|1.7200001834055632|0.86|110.1|0.43|4.03|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta07827d|Y6tEMZK7fTTv65KZzsrvg-Hw_lB-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsBa0.1Pb0.9I3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.83|41.580000000000005|0.505|1.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|Y6v993MHvw2CoEkFGZJBBUsa47tX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.02|79.2|0.48|3.88|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|Y6xQehenPMxoZgjwiF6r8Msn52Wt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|139.1|0.59|7.14|['PEG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|Y6xzZh4Nni2PD7v-sjBRVedUbOla|a perovskite solar cell with the following device stack: ['PEG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.32|88.0|0.471|1.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|Y70L_WqrcGz0vI1WWKzl3T-3s1hQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -C17H74I30N11O4Pb10|Pb10C17N11H74O4I30|(GABA)0.1MA0.9PbI3|1.5400001642119578|1.08|220.7|0.7340000000000001|17.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|Y74VrDkCTO0in2FpyBMizlHsP3nX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.1MA0.9PbI3. -Br30C92Cs5Ge3H472I270K3N172Pb97|Cs5K3Pb97Ge3C92N172H472I270Br30|Cs0.05FA0.8K0.03MA0.12Ge0.03Pb0.97Br0.3I2.7||1.12|246.2|0.77|21.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903299|Y759mDLGqCjXCDeUj7P76ufQwBB1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8K0.03MA0.12Ge0.03Pb0.97Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.802|131.0|0.67|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']|['FU7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|Y7J2Z12Xnl0uCAZE0d0frpJkvZzt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.5|0.7859999999999999|18.21|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['NiO-c']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|Y7Vr2wfQrLEuskk6mDPOobCHRrO4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|173.1|0.62|9.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.3390/polym11060980|Y7_C31cEuHoMTIuv-uaOsXvT9VPh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.91|193.0|0.8|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|Y7bDca4el01UcUWz0vu1H6c7T7ux|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.0|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01617|Y7eq3SULEwBoCASfGr7itO5l3y8c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.5|0.823|20.62|['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBTMT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900421|Y7gc_qv_j90Wz8K6wlYfIqX8LP_V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3600001450183523|0.55|200.0|0.65|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.201808385|Y7svgFCpN7rXJapH8FNaS3moqlcX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|196.0|0.75|15.7|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/c8se00218e|Y87CAXbDkxL2S8JGZ6IFKBpCmEVQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.037|159.0|0.6|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|Y8MOZAQh2ZJ0q6DGeezGb8C0j20x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|214.0|0.63|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|Y8aIT5TyiBWPP5S0Pgy-lQeKASeT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|141.5|0.691|10.17|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|Y8l-z3aNMyr4gyQO16hGYN9ltyuP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.78|141.6|0.7|7.73|['SLG', 'FTO', 'TiO2-nanoleaves', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['TiO2-nanoleaves']|bulk|https://doi.org/10.1007/s10008-016-3262-z|Y8liWBN5aLc-5x2vzhaF7a4iCc_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanoleaves', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MASnCl3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.131|207.4|0.743|17.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|Y8r7xskRY7-Cgmtx_LAh7ZEuBI1U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|153.0|0.444|4.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']|['NiCoO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.006|Y8x-MigE63dmp19_zt0fD1uEHTKt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|205.2|0.7|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1011', 'Au']|['Z1011']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600401|Y8xLnysf4XlEA1Iv0XReIVu6XkJ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1011', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|186.0|0.59|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201501289|Y8zoWtGQvADjc6N-N1RYW2nqMypv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.03|229.0|0.75|17.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|Y92FqYYPbsNd4ZiNbn9LXlE4EpyH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.0|0.49|8.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fe3O4-np', 'Au']|['Fe3O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b05173|Y95Ca99UpUOb7h8JLqlWCCUpviPH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fe3O4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|250.2|0.6970000000000001|18.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904856|Y9Kpl3bAv-8BUVY9_aSij0vn3PKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|227.0|0.716|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201700953|Y9N53hkMFok_U3IYjOJsDKc7zoXo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.93|219.7|0.47|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra10148d|Y9QAgmmcfCwFBTdS2Irdq1ZhmBEq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|148.7|0.63|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-DPP', 'Au']|['OMETPA-DPP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra18823k|Y9QJvXv_0JWMCDyWZBdzHotsZBbj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-DPP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.056|204.0|0.6459999999999999|13.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|Y9QPthikt4t_Mzjd1C0vHMGAsZwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|82.8|0.71|5.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|Y9iQtxVmXniHJM9Q45IJS8Xg9s3S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|148.3|0.511|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|Y9izxVNT5jN791VClGNhlYwdSGp1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|200.0|0.42|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|Y9o54cY6UzH4rJ6JxW-DeyK5GxUC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|197.0|0.55|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|Y9zjfYwB-Tg-j25y8iJmZnrwf8Hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.3|0.6|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|YA4n_QbNRgaBdxVqKxxlJAEVwLiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.1|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c8dt00692j|YA6KfZpC_CC0M0t95lqn4I2Q29b4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.05|233.4|0.7240000000000001|17.74|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|YABBiHihNMeQntu3p4XQB_W24Dgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.165|227.8|0.7609999999999999|20.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|YAJTVZIbSnKaPaCxRrCC1VHyDVuA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CsI3Pb|CsPbI3|CsPbI3||0.97|156.5|0.731|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.025|YAcjqGePunb4NZ7NA1Xe3-qQpEzw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br15C20CsH103I45N37Pb20|CsPb20C20N37H103I45Br15|Cs0.05FA0.85MA0.15PbBr0.75I2.25||1.166|189.8|0.722|15.98|['SLG', 'IWO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1039/c9ta10712f|YAfEeFwcPZxaJCrEUUG2g0s3hw_y|a perovskite solar cell with the following device stack: ['SLG', 'IWO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.07|212.0|0.773|17.6|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|YAng-kVVVD3YneBj-hUvksYhMbW_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.135|218.3|0.684|16.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b05469|YB3k4pYFmOn0rmRXY1Bc6DbJkAL4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.038|210.8|0.75|16.51|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|YB4dEATLmmJViQ0KTy3JIs0OeAph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.132|208.0|0.706|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr06278e|YBCD_k_Rkt4vaTiyO3-KLBmcGHq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.02|146.3|0.59|8.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|YBHOd7jpvEbadVKydD6V8tj8jcz2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|185.35|0.625|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602610|YBP-jQKmz8qMQVNqMFz5HR5GJH2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.98|97.2|0.721|6.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1016/j.joule.2018.07.018|YBT77fr7tBy83VHj5jqV6BKOXZA-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|163.1|0.43|7.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|YBZDGnc0wOE4L4UwYqzJXO6zC6Gd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.0|0.49|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep06752|YBZk-dnNm0xSyx7ErJvcDG0eiGYX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.1|117.9|0.738|9.58|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|YBrb6bxAILpLs7JnbTCR6mrRbGrA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.740000185538186|1.24|198.3|0.77|19.02||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/solr.202100906|YBsWltnzMjOkQURfx1sdP33pd1Ad|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -Br10C18Cs2H93I50N33Pb20|Cs2Pb20C18N33H93I50Br10|Cs0.10FA0.75MA0.15PbBr0.50I2.50||1.12|183.4|0.657|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|YC2oRVl-EkUsf6bmLPWAinETHMsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.50I2.50. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.08|217.0|0.77|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|YC3Rw9_swgnCHxMcHk402Ayfw80r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|234.0|0.655|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|YC734M1Hiuj_cEUEhF3rrN84rDpQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.894|169.62|0.757|11.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||YCKgyvsspo527I4QAvz7JZqWbJzZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|118.0|0.752|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|YCLFV-4kUPi3p1LoUSnDNjnwcYoO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.07|223.8|0.72|17.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|YCM1QW2-CXuiBV_w87qpGIRX86or|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.6970000000000001|14.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.03.024|YCNNV7hg2wY2VtsCxgzH6Pa-qKCB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201900466|YCXoZun6VgwS7qH21TnddZL8wHFI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.71|148.0|0.501|5.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|YCe6w5VYP2VO1SW7upY70bBWrT--|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.97|64.5|0.68|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp411112k|YCf-gxl8x3Y07mDMdEdeh79iP8ux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.8|0.657|13.84|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.163|YCghLHdjRpp-lI9E8kEr2SZyFZXc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1909999999999998|144.4|0.753|12.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|YCkBDaCA_iuYq73BvXBK3GXNbv1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.903|131.5|0.628|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee03560k|YCtvSF_-8ZH5Dr8FdxXdKEoAgzDE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.06|125.0|0.71|9.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta08203k|YD-Ae7FOGb5OidYEwXw4hEBO2LyY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|200.0|0.57|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|YD4hxi1utA73L-39yr62dh-fUPGC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.089|127.0|0.74|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|YDD8EGd7X2rnZzJHUUc7n5KSxJIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|YDFOaVvJw91Y74HbIrdwjlqvZ3hk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.065|161.6|0.56|9.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|YDFQGPtlGV5WuPYM4HgHkqfQwSeL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.07|231.0|0.81|19.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41586-019-1357-2|YDRLR-3iDtbo6Xd26kRgK6E4sIAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.33|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|YD_eUvSleBt5Aib7Qggi6L4LsN0b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|206.9|0.38|5.01|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501994|YDiaXdwIsNhmdG-Ma5kbWjYJs5xM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|213.3|0.67|12.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|YDmdhDxhaGudw8uz_HZTo1tAi6eM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.823|167.0|0.51|7.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M1', 'Au']|['M1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.108031|YDsM8yNfY-MKUT4tTj0IeX0CCzqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|180.5|0.35|5.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|YDzgiyeN1dXLdr0LfrX-Q6CpQC3r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|172.3|0.53|8.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.042|YE0yO2W-8UjLuutj-ivtnRG2iy8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.1|230.0|0.7759999999999999|18.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ee02242a|YE68sX8x62-niQ1yieClZFmmz9h0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2960002448251005|1.23|36.0|1.23|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|YEAk6OgjLFkXukYPM7Hyy86I-lEv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|131.6|0.41|6.48|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|YEV0Wm7WQSSkoeh7Jls8ASG3qYBF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.09|226.4|0.6990000000000001|17.26|['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|YEXgev0i7qXdSSGXJ61Iwl4HX2HR|a perovskite solar cell with the following device stack: ['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7700001887371206|1.04|220.0|0.74|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|YEY1XqID13U9y-sZLQli-aNka4Gn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|66.7|0.32|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.15541/jim20170380|YEbziYk9ZRcuq4QLewma-qxTv2lB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53||1.11|234.0|0.7170000000000001|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201900830|YEj7WhY7Tj0G7IwNI8xep9jXqnTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.0|0.6|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01331|YEyLmSgSPMwByr8C4hR3zvUU8rnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C16CsH24I7N2Pb2|CsPb2C16N2H24I7|(PEA)2CsPb2I7||0.91|64.4|0.35|2.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|2D|https://doi.org/10.1002/aenm.201902529|YFDCZ652c2XvQ5jEdUZmuFfrjh3q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is (PEA)2CsPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.8|0.83|18.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs', 'Spiro-MeOTAD', 'Au']|['MoS2-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|YFPxhNgxOTx2q6j0bnsWHxMmyBbk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.0|0.76|17.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.11.031|YFVkVKqg5RAC2XXVAPpakpttb96I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|134.96||7.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'PMMA']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/LED.2018.2828501|YFfQrXZwLDYS2TR71v7IB7T42aC2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'PMMA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|203.0|0.51|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fe3O4-np', 'Au']|['Fe3O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b05173|YFoG_1-cImxo9Vl6tXa-jOSGR0UQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Fe3O4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|177.5|0.584|10.38|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|YFopSUijAb8ypBsJdmtwYiXNGIeu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|199.4|0.66|13.4|['SLG', 'ITO', 'ZnO-c', 'Urea', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Urea']|bulk|https://doi.org/10.1039/c6qm00248j|YFtXAGWN0_YkZIxFhK3ru44wiQLU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Urea', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs5H495I255N177Pb100|Cs5Pb100C96N177H495I255Br45|Cs0.05FA0.81MA0.15PbBr0.45I2.55||1.08|180.0|0.62|12.4|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b02624|YFzc9jVYCTOTFhc1QZi30JgZmyns|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|YGPKXuAhN55HM9i9JiJI54zwkOTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|70.19999999999999|0.612|3.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BuO-DATPA', 'Au']|['BuO-DATPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp07682g|YGUv9vMxYCDntLrVqf5Tn8cLzTi4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BuO-DATPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.767|19.0|0.66|0.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b01808|YGckRxMbXtYHho9h5WwWrc_YuhIB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2400001322226155|0.736|286.0|0.665|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00880|YGk49XGW42tArb4yPboD0GHEvqa6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.8|0.7|14.34|['SLG', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02241k|YGmYwHeE4AA9HE-iAXAyFa4Pl3vn|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|204.0|0.69|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|YGrGidlVR1xFhsWh8ETbo2uoihBR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|235.8|0.73|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|YHJ3OFHbFkAHfMRhQYS9l9Si9YXv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|183.7|0.61|10.57|['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PANI-PAMPSA']|['C60', 'BCP']|bulk|https://doi.org/10.1134/S1063785019090050|YHJ7Z71po07hvYN3OSXO3OCxOVmn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI-PAMPSA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.12|229.0|0.72|18.47|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|YHKfeKELRpHJkFJ6pNBeOiP-tDVP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.11|245.7|0.794|21.23|['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiS2']|bulk|https://doi.org/10.1039/c8ta11841h|YHQCFwj4Eb8DZb0XQNCDuR9iefZN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|177.7|0.3989999999999999|4.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|YHRCLYzDduVOzoFDuqN45HAipnQW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.86|146.2|0.75|9.43|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|YHY_i6rzzQKHjePJZYAAgpyokfVW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|84.5|0.58|6.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|YHgckY5ekX26ZD5I3C3B9Gtjdd46|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee01624f|YHqpyEZ05IvtCTndKa5XIqsEPFFw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.0|0.6|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']|['CdSe-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr03487c|YHsCDcKSFu8CwOeg4reJ-CLQnPwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|48.4|0.64|2.44|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.02BF05|YI2wJ1HP20gDrUrI9V2V28bO-Z-S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|174.60000000000002|0.628|12.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|YIBXkmS2dfsZUSY5Q4zfhdUXFRuz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|106.0|0.58|5.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|YII4ZlWgHylvt9tntBgPcmCBkq43|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|132.0|0.55|6.4|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|YILPdcoTuDpFV1dk9rNfB-_UXKxB|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|169.1|0.55|8.37|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Al']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b09012|YITOCFz9_79CaRTsaaWO4q-Kwn9g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.0|0.78|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|YIcTb70Ew-t88GhBlDQ57ruki4G-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|208.0|0.772|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|YIeMxCVoWp58pwyoPRk0l35ZiK6C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|228.8|0.65|13.03|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|YIewShyqyAy3pV_dz3IJOgoOJ8kM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|174.4|0.73|11.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c4ta05012f|YIhVreve1PoX2UwMfsqxqJnavcQ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||1.05|195.0|0.74|15.4|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7ta02405c|YIijdLrFXpVaPNeX-QBE3RWwDWNr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|126.2|0.56|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y3', 'Au']|['Y3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01434|YIq6Mr8iJGBxBWlVJ7xdYSj5Ujqv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|211.3|0.741|15.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|YIqrppIlZv8zd6K93hucNr0bBi4O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|227.1|0.74|18.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700597|YIxjJmc1vu0bqpdVYB1RVGB0VK4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|91.0|0.53|5.1|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|YJ05liHRo4Q55Dia265olhSErVMA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.013|7.7|0.33|3.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-F', 'Au']|['DPP-F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|YJ96PmJMVvmpiGtztrOuX_JFdBNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-F', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.908|22.0|0.235|0.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|YJ9RCj2YTFOj_DGJ_XibjoPKmbrh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|201.0|0.65|12.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aaf158|YJ9t3SZ0fX4B8yL4LS3jyABzfBVj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|187.0|0.69|12.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc02211d|YJGF_ahrHf5Mp-tCR0xt3XRmyycz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|1.950000207930726|0.62|54.1|0.6|2.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|YJIU4JFta2JV5fVTgTspMOcNC4lL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|62.0|0.51|2.51|['SLG', 'ITO', 'Ni', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1039/c4cp00298a|YJL5F1ulRFjX2AZ0QihmCTIx8KAE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|119.6|0.469|4.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1080/15421406.2017.1338095|YJMNBGLoMuuDXl8M7SyXG-AoZLZf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|164.0|0.642|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ6-2', 'Ag']|['POZ6-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.021|YJQ_ZqGnWc24vXTfTNkD3_LvYyLR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ6-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|99.0|0.58|5.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00635|YJRy8dDNN3m5Fbc5Q5Qb7rHSTTVT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.134|210.0|0.725|17.49|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|YJUMSACfmoHrc1cSX116_uZq3wlo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|177.2|0.5720000000000001|10.24|['SLG', 'Graphene', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']|['Graphene-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.9b02336|YJ_eKfpZPh8X4CMkjy4ckHKy0W-Q|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.0|0.6829999999999999|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|YJd6MpOt3VeAI5Kju5uMVQm6vlSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.640000174875072|1.15|230.0|0.752|19.9|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|YJfy83Wqw5-UJHd2JVJgov-Z72Ot|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|214.9|0.635|14.53|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.6b13362|YJl3ZxxLnq20AEUnJ_3HyGfMA-tx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|199.3|0.48|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|YJmPD8yCC914WLXFdSppDC_FTi39|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|189.0|0.659|13.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1557/adv.2018.413|YJoS1WA86gO273A1ZFrgDB6hIe63|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.1|228.0|0.73|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903654|YJsT4dTRg0_YC0hoq_-wyHsuOa5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|238.9|0.6829999999999999|16.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|YK-1FGhs8Yj-97boFqnrUc7TfIsv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.107|218.0|0.764|18.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|YK0aC6T0i0mFzVYGdiQNms9W8BIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.86|143.0|0.609|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|YK6hjCK368gF9u-zwxvQFalxkv3_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.670000178074006|0.875|204.0|0.64|11.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|YK6lDxxLh2nO5q5WntGjKo4ByZg6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br1020C1900Cs100H9747I4980N3553Pb2000|Cs100Pb2000C1900N3553H9747I4980Br1020|Cs0.05FA0.8265MA0.1235PbBr0.51I2.49||1.05|227.8|0.78|18.65|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphen']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02391g|YKQkuqHokQG91tIlApkcj-ScMaYp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Graphen']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.0|0.75|15.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|YKRR54-vJ0yGtOje4tYy8TWUywnl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.97|186.0|0.58|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']|['CuPc‐OTPAtBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|YKYbZF6xrrbKEOSRlVzYFPaZQNWz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|182.5|0.68|13.28|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|YKYuoV2sSotfKzd16dtcbF5-MwhT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|210.0|0.7|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|YKblg-1f9iBAaGrXsQYJ2xVX_mgL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|172.0|0.67|10.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|YKgbwxbLcp8XvKLJvJ5D7_XptLNM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.4|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03176f|YKgxNLAMnuOoRp9QwzQzQdy0wDh1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.6|0.638|13.55|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|YKhM0EXKi55GVXHtWv8Xyl9FjQmA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.5b03265|YKokYX0sF65ccYLoogFsweFf51ts|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.626|4.4|0.386|0.108|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|YKruQSlk0tF2EfB9ENQgrYORTwNK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br35C93Cs8H477I265N174Pb100|Cs8Pb100C93N174H477I265Br35|Cs0.08FA0.81MA0.12PbBr0.35I2.65||1.042|233.1|0.767|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'HTM3', 'Au']|['N2,N,N8,N8-tetrakis[2,2-bis(4-methoxyphenyl)ethenyl]-4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine2,8-diamine']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201903705|YKxbShEP2h_Ab9E3POVWhWolyTiT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'HTM3', 'Au']? The composition of the perovskite layer is Cs0.08FA0.81MA0.12PbBr0.35I2.65. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5800001684772036|1.1|233.5|0.669|17.22|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|YKxkF67o7LnZYrQq8uH5iFI_FHIb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.5|0.6|11.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02843d|YKyhJ5UUguOhMO_zdSlO1HzDj8QI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.0|222.9|0.7659999999999999|17.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|YL-YKB6YXLnpsdIq0Nu-L3NqH0kN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|170.0|0.63|9.58|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp', 'PEI']|bulk|https://doi.org/10.1021/acsomega.8b01412|YL3PAK4fGE00K3Or7rBdKUcC_nQU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.015|208.44|0.795|16.82|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||YLAx_D29EVhP2KSh3BrNPlDTfftd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|75.1|0.731|4.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|YLEZbmxFdCtafsicMf4bBsyDlSTG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.1|228.5|0.73|18.28|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.materresbull.2018.07.015|YLLYHCh7q69zKm_cyteeTYtgUmWp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||12.96|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanodisks', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanodisks']|bulk|https://doi.org/10.1007/s00339-018-2251-8|YLMmmp3BawIJJQubsBGezkHazB9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanodisks', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|66.2|0.313|1.91|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCPDT-PDI', 'Al']|['PEDOT:PSS']|['PCPDT-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|YLT_6ry3kpawieIautMniQSE10dj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCPDT-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.99|226.2|0.71|15.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00286|YL_X2AOKXlja7vGzf-lU8ynhK5tn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.01|174.4|0.63|11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|YLazDcMH7U9hkq5lSqoEKL0D5Gxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.0|0.75|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|YLlhvPmMsfqbRJ6Qwjxb9OeraU9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|YLmO4xtC1MnxBuc1AiqGW-g4ADf8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|194.98|0.58|10.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|YLsY9UXhdiNqlalFKC2VSlN9p0HX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C38Cs2H193I111N73Pb40|Cs2Pb40C38N73H193I111Br9|Cs0.05FA0.875MA0.075PbBr0.225I2.775||1.1|205.8|0.732|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PET-OMeDPA', 'Au']|['PET-OMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0sc00362j|YM9MphJwRXRBVGIh73Fj0x_CXjWa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PET-OMeDPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.875MA0.075PbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|161.0|0.654|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|YMJa40FR50sESeE7-1NCzqQkDJzS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|217.8|0.608|12.68|['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Li4SiW12O40']|bulk|https://doi.org/10.1021/acsami.7b05146|YMTP9aOANk3f7zi-KDJytzigc4Rx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C500Cu7H3000I1500N500Pb493|Cu7Pb493C500N500H3000I1500|MACu0.014Pb0.986I3||0.8540000000000001|158.0|0.608|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE10|YMhwq2ixI-pAT0lY_3_m3BtXp0t8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACu0.014Pb0.986I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.7|0.73|15.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|YMjSEL4Bgh7J4P85CWozj7ZNOxND|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700147|YMmEsHWT7-sNmK-pswKB5OS83a9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.16|174.0|0.68|13.7|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp; Au@SnO2-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'Al2O3-mp; Au@SnO2-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500312|YMsMxWmV5TD2q1Zd3L6b69W2gXFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp; Au@SnO2-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.77|28.2|0.41|0.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|YMzbFYOM3_lT8OB4jNXwbpjemIAS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|178.6|0.768|14.73|['SLG', 'FTO', 'TCl-PDI', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TCl-PDI']|bulk|https://doi.org/10.1002/cssc.201802421|YMzzJSrRDiGfR6fSAqpdkWRPW3Eo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TCl-PDI', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|221.4|0.715|16.84|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.190|YN8EY85i5YxIFCUpvfthm6TfAr4-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|167.0|0.73|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'd-PCBM-60; PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['d-PCBM-60; PCBM-60']|bulk|https://doi.org/10.1039/c6ra22023a|YNE5JM54-UaIHPef9Xfp251-6yap|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'd-PCBM-60; PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.05000021859384|0.78|37.2|0.54|1.55|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.9b02958|YNIRlJN6wOaoQsfsfM5xFx4X9Qgv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.84|219.0|0.64|12.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']|['CuInSe2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|YNKwDs1qTSGw5GXfgf1l98fZ27oN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.3|0.61|11.82|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08098c|YNXhQ24SsW3hjsQSk-GM-s8V7Iq6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br20Cs20I40Pb19Sr|Cs20SrPb19I40Br20|CsPb0.95Sr0.05BrI2||0.927|112.0|0.613|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b00937|YNZOmam05mkJ-c9SNqsvyIqymk_p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.95Sr0.05BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.831|198.6|0.6659999999999999|10.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|YNZZihoibnf-L3sDbBln7yNOYDwE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|136.0|0.75|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|YNk-bKO7IG6KgLoEoY3qmFyuAVyW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.75|190.4|0.77|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06403|YNtyl_5ccv0-_0xOoo2husiHHcRD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|214.0|0.7959999999999999|18.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06900f|YO2xnkdxPp3l8mAE-864kKhig1Q8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||0.96|215.7|0.75|15.55|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'ZnSe', 'Ag']|['NiO-c']|['C60', 'ZnSe']|bulk|https://doi.org/10.1039/c8ta08306a|YOCjfpn5goFccgFYSfPcSruFkOtX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'ZnSe', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br3C5Ge5H30I12N5|Ge5C5N5H30I12Br3|MAGeBr0.6I2.4||0.4479999999999999|24.700000000000003|0.44|0.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|YOPsxHFXuZZSgg4SXsaULQ0gewjk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeBr0.6I2.4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.92|220.5|0.46|9.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|YOTKTle_cvTn2hgVKD7NAs7uqEXr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|211.0|0.58|11.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra02637h|YOfyTG3ScWyf-Arks47AKxAiHcOv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04625|YOisFVr9-WtpukX9COShzO-h8ou_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|191.6|0.848|17.54|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|YOlo1mJan0bEUSAPbenMLIXdl_J-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|169.0|0.67|9.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2015.08.002|YOnHnEFd04a4TbHretvCf-k1WwLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|164.7|0.782|13.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|YOt1FrOsCHDUOVXuTImvf9c_iLHk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.0|0.722|16.1|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1117/1.JPE.6.022002|YOwutJpGBckHK8VE9jDUMYxxlFh1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|204.0|0.7759999999999999|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|YP4nH1FAEbrmRa3SxqIo0IuA1unl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.509|10.4|0.42|0.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C60', 'Au']|['C60']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21291j|YPAic45_kWSEHXGSVHTF4NrVDsKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C60', 'Au']? The composition of the perovskite layer is MASnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.08|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|YPMUH7Z-Cff8MyD1WmWF-pRBdBZy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.1|0.63|13.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|YPRZDPXMMxyeVMBmgP35yYXukQIp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ra08940j|YPRbmEHJCp-buUWSv7tzJSi7ELno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.29999999999998|0.7020000000000001|11.15|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|YPVgXdrWL3x6KyQiyRBTFvwJFk22|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C99CsH495I300N198Pb100|CsPb100C99N198H495I300|Cs0.01FA0.99PbI3||1.0|236.3|0.67|15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|YPdd95a8HCpkUlfeeZnO4JwlCYTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.01FA0.99PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.74|16.2|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c', 'DEA']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201602333|YPsfvmrYYd1UHVZS5mAJKcRqJV3H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.935|200.0|0.79|14.7|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|YPwVNackfoG2ZVrzLdZ8Lxd54t_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.778|84.0|0.364|2.4|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO', 'ZnO-nw']|bulk|https://doi.org/10.1088/2053-1591/aa7fcd|YQ29ww6coaYwyL9MTbNzB6zTenNl|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|133.3|0.55|7.11|['SLG', 'ITO', 'C8-BTBT', 'Perovskite', 'PCBM-60', 'BCP I Ag']|['C8-BTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900317|YQ7ReEMykiPskeb6t61ZhLjq1tOA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C8-BTBT', 'Perovskite', 'PCBM-60', 'BCP I Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|225.3|0.7829999999999999|17.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|YQFcUdriThx5PXjystxNqDaPbu_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|94.0|0.477|3.6|['SLG', 'ITO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5ta08375c|YQIUTzRsNGmvpouDuwFRfi1Pqu_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br11C20H103I49N37Pb20|Pb20C20N37H103I49Br11|FA0.85MA0.15PbBr0.55I2.45||1.09|230.3|0.75|18.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b05353|YQrb1V96OymvFd4EqpcMug00373I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.45. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.79|289.0|0.7929999999999999|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|YR5I_CXCs4-QIg4SFiN3bdZP-wWo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|243.8|0.32|7.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-016-1601-8|YRJUDYHyTLgjdMP1Q2gJtdriizA9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||17.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|YRMxbuPIE8n60F_5gSrgSBIG2_ax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||0.956|114.0|0.57|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|YRVXmQa1bsH6pA-mY_DvtNRLrqon|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|187.0|0.64|12.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|YRWizw_2xdlE8Wx9lF-zHxzRamb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1740000000000002|124.4|0.69|10.32|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201902708|YRYJ9p9xAmdjE6wt5RY3oP2dgdgz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|200.5|0.37|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AS37', 'Au']|['AS37']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602736|YRezAI48NawMsx9dwwzjggCvknRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AS37', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|161.0|0.43|5.7|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c5ee01169h|YRfH4ngTs5ncvSX7qPq5rkw2A9q6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|106.7|0.6|5.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0256-307X/30/12/128402|YRoPxl_SQUp9gp8hXVdNgQHIvBPf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|220.0|0.675|14.3|['SLG', 'ITO', '5,6,11,12-Tetraphenylnaphthacene', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['5,6,11,12-Tetraphenylnaphthacene']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra02496g|YRvZuL9mpngKqIx2RYG0ZX4flaDH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '5,6,11,12-Tetraphenylnaphthacene', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|158.5|0.7170000000000001|5.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-017-09109-0|YS22L9ttsTbTQgIcUZpG__AdKspm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|YS2MBuP9sAN2DhQ_6So3hmJ6GAx2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br99C95Cs5H491I201N174Pb100|Cs5Pb100C95N174H491I201Br99|Cs0.05FA0.79MA0.16PbBr0.99I2.01|1.7200001834055632|1.28|196.6|0.77|19.09||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2021.106537|YS96-PqtKSdOziJimYLnHD-PvdW-|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.99I2.01. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|213.0|0.664|15.2|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.7b07754|YSHaXfwCaQwkaLb-PWK_7zC3Q-Ag|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.1|0.618|14.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|YScOFYqQDwyy9RyCtz6Nf0d8TzTK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.29|22.7|0.63|1.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/coatings6040053|YSgongaZdLqhTK_8UUc5KcEUAsuA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|190.0|0.799|13.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|YT0D1XAzOzIrQYbR86TEsMbTwk0o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.97|115.0|0.65|7.3|['PET', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|YTS5lwGIAO01IuD0ruRgoDWZFWCT|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|113.0|0.69|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|YTV_R7_ok1KAeV0CV74njPQorGbw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|204.0|0.7559999999999999|16.04|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CzPAF‐SBFN', 'Au']|['CzPAF‐SBFN']|['ZnO-c']|bulk|https://doi.org/10.1002/adma.201503729|YTd4rlvgNnjPqzedlQRAHCLLcW41|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CzPAF‐SBFN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55|1.6000001706098266|1.14|216.5|0.77|19.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']|['NiO-c']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.9b16919|YTlPuanlVie3MmtsOXFOOhA4XnQ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|169.0|0.7020000000000001|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|YTnS-YauSXKOzowfgRTm8jHlh9mv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.917|221.6|0.534|10.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|YTsH8bk4TZ-d9gIv0S0oeH1897eo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0|0.0|0.0|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|YTvudFLLpcpLRrLVKJ2X1WhgaBIs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|206.0|0.664|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|YTz5KAZvwsmFx7QPgzCYDkeXlQSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|123.0|0.62|8.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|YU-p1vGKcn8LUXBsPC_JhmLbEcV0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|YU7vnjfQ2bbnF4NGSMn6RIzrzMhy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.0|0.701|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.108|YUR8FA_J-Oz6V3c-2sC9H77pXohy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.79|174.0|0.52|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|YUVMOBnMQXb0GgqiEPsWpS79F1uK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.0|0.73|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60SB:TBAI']|bulk|https://doi.org/10.1021/acsenergylett.7b00147|YUu4ZS1lnPjIih-6x91FFphRfeXf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|1.15|220.0|0.77|19.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|YUv7qyfhfR_Nm0ICmGS3gqB3pfRn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|202.5|0.609|12.1|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|YV0x27kioAXLXeMzQV8dhJsyK7w2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.15|149.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201903448|YV27dN67V-WEobXbmPbhkexHT56c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.02|218.0|0.65|14.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PDPPT-TT', 'Ag']|['PDPPT-TT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8se00233a|YV6Xfcn7mryvGzT14RkaNdP0f4yW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PDPPT-TT', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2700002420526912|1.14|75.32|0.578|4.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|YV9imfNes_wf1NVTJYD-W6CIsE-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.1|0.74|15.96|['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-2TNDI']|bulk|https://doi.org/10.1039/C7SC00077D|YVM5s4ejrZ06JivQ4_KQX53Ahvo1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|130.32|0.35|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|YVNZUCprVSBCmCrIA1SvrrbRMkxr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3|1.2000001279573695|0.68|223.0|0.674|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen‐NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1039/C8TA05444D|YVSSiWO6DlvdMxHsEF7GNccrYuPT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen‐NaDPO', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|169.5|0.8|16.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b01553|YVWifHypy4G2xMAfeFW1LtAatTG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|224.1|0.68|13.8|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|YVXuygixuhx8Yy1_W8OGuowZSl5r|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.91|26.0|0.69|1.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|YVZJZIaixz893vGa2MN7uY51wmFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.085|223.3|0.774|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|YVbcR4ylt8Qadg8OOFpCgPBX-WUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.097|206.6|0.561|12.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|YVcIo3z9ac01sE4N1In6SSy_Shjl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|155.6|0.78|12.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|YVmLVRkq9lGadHELVE1WaFebjhjc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|219.8|0.728|18.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|YVoNDhxhtjmHg7KFYVuHH-J3DM35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|208.0|0.74|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|YVtlNDZW79Bzdrn9zWCfZAOVqlAD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.119|228.7|0.784|20.12|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|YVvtjWoLLC5d-sH3DAlzrS_pKbeS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||0.99|198.0|0.75|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NH-2,7', 'Au']|['NH-2,7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.050|YW4Jr7WuszDPxeN48nd36VBXFxYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NH-2,7', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.113|191.2|0.743|15.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|YWNJ2Am37Ftjogqw6qduUBzrJ_0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|222.5|0.72|15.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|YWZsBKvWKxQ_pDiyBz3r4m8EFcNZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|161.0|0.659|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|YWlBs9FVZRJ1iPI4jnjeiJ0239PO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.02|220.4|0.705|15.85|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|YWmKfugRLQKxS47VRXLsskEC5Uqz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|215.0|0.74|16.5|['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|YWoD8uiscS1vtrIFJG2vTI90LVjK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.7|0.74|15.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|YWtS-ob9k2eO-QGjCtgbQpXe3gVl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|189.2|0.61|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.11.058|YWupPPnj6a4A_7x4E9vfVgnJqCFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br20Cs10I10Pb9Sn|Cs10Pb9SnI10Br20|CsPb0.9Sn0.1Br2I|1.7900001908697432|1.26|143.0|0.63|11.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b07949|YWxKzpyhiuCWcKs-bBjHETOsiVi-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.9Sn0.1Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|76.3|0.61|3.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PTCBI', 'Ag', 'WO3', 'PTCBI', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5tc00622h|YXA0r_hEFh2NdG5fso-FMfgxurzo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PTCBI', 'Ag', 'WO3', 'PTCBI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.02|216.1|0.69|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601451|YXDAqPUUL_KA48MLHA9nrJEgerAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|133.6|0.42|3.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|YXIdhfaHQ5jKkwgSWzGlhv6G94E1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2C10H60I28N10Pb9Sn|Pb9SnC10N10H60I28Br2|MAPb0.9Sn0.1Br0.2I2.8||0.848|96.8|0.5770000000000001|4.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|YXRd4dxJxLpk6KZeNAKpYyp6ZHs2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sn0.1Br0.2I2.8. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|232.0|0.75|19.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103867|YXdQN10fuQW2n8eP1LBq98mu5Hgn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.7|0.62|13.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra01894g|YXeVAat1iq24ZhrdGQT4nr9yqJtq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|163.29999999999998|0.61|10.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-56164-w|YXr3YmjnL5xcg2BwhljbWuTOAdLH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|193.9|0.65|11.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr04801d|YXsdWTzJdaYYjDAo2sjRUCGbHd6g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|201.2|0.57|10.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.01.021|YXyfXaMLk_TWzUEM_-NEVyTkkB7F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|92.0|0.59|4.7|['PET', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'Ag']|['P3HT', 'PEDOT:PSS']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201500569|YY0q0WzyAyQbG3NR-L2Ss2yQwIFr|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.98|213.8|0.71|15.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|YY60hzawAvrUVau_vzkILpiZcI5M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|182.0|0.66|12.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|YYCV_lr9SPTgocpTjuFKRP_qWHfX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.67|22.0|0.31|0.46|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00103|YYH_p9r94TE42XX58iC3F8fz0xOr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|142.0|0.693|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|YYI1HLzUfWpDUXBL85UyRTHe71hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|193.0|0.72|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']|['Spiro-CPDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|YYOhCJwH3XSoAPtiU7FUJkhbVzEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|22.5|0.44|0.98|['SLG', 'ITO', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnS']|bulk|https://doi.org/10.1039/c5ta01200g|YYT7LcwM4ItWlQcdNOjTYCZs4FGK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|87.10000000000001|0.291|1.43|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|YYaXNY75LvnXYmKuX8dPiFCkempw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|197.76|0.755|15.89|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|YYhsEkI0RspHR1nYb5M-ZBjREXYb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.2|0.785|18.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta12736d|YYjXTpQMGFAd3Ho0pKPR3mKEVkGF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.520000162079335|0.95|189.2|0.747|13.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/2/024208|YYvzcusERAU5g3hgyfqi9FpVIsX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|166.8|0.61|9.4|['SLG', 'MSA-PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Unknown', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|YYxcvi0os7bSBdUw_7jGR5sL6l9m|a perovskite solar cell with the following device stack: ['SLG', 'MSA-PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Unknown', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|241.0|0.74|19.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr07377a|YZEEZStuYGaflFwJAfiullXWZV26|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|YZE_lYVQu6mbT-85rzL-ouSor4PN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C83Cs17H415I260N166Pb100|Cs17Pb100C83N166H415I260Br40|Cs0.17FA0.83PbBr0.4I2.6||1.02|220.5|0.71|15.97|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|YZJoygOdXFFgb4-OdDpiZ2Wat7S9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.3|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|YZP0jMgSWPgPmKGsHfgEJX_8gh-s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|201.0|0.71|12.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA00739B|YZS-TPehQk_MQWiygnKyqQWUL2Oi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|218.0|0.58|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4905932|YZS20X07q13Vyt3Sztw1f6OWNWK4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|1.6000001706098266|1.06|204.0|0.73|15.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126518|YZYX850WKsLqKqZByxi3VGYu93Hv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|123.7|0.605|7.37|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep04756|YZbtIpuohZL7WBUpJDV04IukoYBD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C80Cs20H408I297N152Pb100|Cs20Pb100C80N152H408I297Br3|Cs0.2FA0.72MA0.08PbBr0.03I2.97|1.6200001727424491|1.01|218.2|0.68|15.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|YZeQZUeZpCf1eRrGG2MsSW88ofq2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.72MA0.08PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|170.7|0.7|9.83|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|YZf97ZXcmD1Dsfv2g4cJ2zq6YhMj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.98|190.6|0.599|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|YZhmYzIehuooe64eaineRd20K8ll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|203.4|0.6920000000000001|13.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|YZk3zgx9qrRRMHnzJHUWRPKKLAj2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|212.69|0.68|15.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|YZkTiFRF2dQPN0dgm96Semnf0Vjt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|221.6|0.7340000000000001|17.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05975f|YZrEebZUzpbKwcaZAx7daMv_488k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.04|229.0|0.7659999999999999|18.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.02.003|YZsHIM1VNVa66gU0uk4ij9oe4Hh3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|238.1|0.51|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|Y_8bxYx0XeSpUbMeYSlYQYQPOj7k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.1|154.0|0.748|12.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/adma.201900111|Y_B-w2SpDGzHz4OvpBXv0iYId-6h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.0|0.61|11.6|['SLG', 'ITO', 'NiO-c', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am503610u|Y_GJTfI3082BlQ0ATjGzc7eUU7ct|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|155.8|0.49|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.11.052|Y_J6fgJb1_tOfLInYhKEyIBGGSKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|234.0|0.73|18.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.08.006|Y_g5NjH8hhkyN5UdVOu5d_w90yQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.77|14.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b10253|Y_mXolCwO3kkm8EqsrrLSSIsWf3g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.45|68.1|0.779|7.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|Y_mldoj7DCjF6PI-D9GDVEwppBI9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.3|0.688|13.38|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|Y_sqHmhIEl0XF4tQwH0smyvloynq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.86|142.0|0.68|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|Y_tF3Ryy0clJ8B7u53ij6JGsdJqC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|206.1|0.65|12.57|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.7b00801|Ya1bnut0q8OSybOEPhlmCjTl6J0I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58||1.1|214.0|0.7559999999999999|17.71|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adfm.201908408|YaNY69oe3WH0OXmaGkw9E2TFc9pb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -C10H60I30N10Pb7Sn3|Pb7Sn3C10N10H60I30|MAPb0.7Sn0.3I3|1.3700001460846638|0.772|203.0|0.664|10.41|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201705998|YabqyKwfZTD5jcjsBwJqd7XoPBxE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.7Sn0.3I3. -CsI3Pb|CsPbI3|CsPbI3|1.6000001706098266|0.88|173.6|0.63|9.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']|['MEH-PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|YadTTgiQcG1QzYbkduJQ3Aantv2D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MEH-PPV', 'Au']? The composition of the perovskite layer is CsPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.72|276.0|0.66|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00314a|YaiaQeBO9Pg7WLe0s93VpDV2fW4E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.3|0.799|19.37|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|YaoJiYOLbYiZASFp6r9DCWwxCA3_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|208.4|0.7|14.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600517|YatRaS-GrS6GegZT_FWV2LilVGfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|212.3|0.725|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|YazEDH20CRBVE3iOAglNoEdOwYsM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|Yb6eY1yTXvxLFIgR-DUuirIdJdm4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|0.98|59.5|0.613|3.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|YbAytKRt0HjF3nM6RX-7vI6XcBjl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.3|0.396|5.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|YbH8Beae8BqCUp39e4HZPLRTmgwg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.0|0.758|17.8|['SLG', 'FTO', 'TiO2-c', 'SAED', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c', 'SAED']|bulk|https://doi.org/10.1002/aenm.201700758|YbP4iS_LGB6-gInJ0M9xwKlwT5YO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SAED', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.994|167.2|0.556|9.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|YbPxnwzv_N3b9zRiEUAk13FZXgBA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|132.79999999999998|0.716|9.61|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Ru(acac)', 'Au']|['PEDOT:PSS']|['Ru(acac)']|bulk|https://doi.org/10.1039/c5nr06234a|YbXNQiqeOT6xO-Fo9zV9G6kN4K63|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Ru(acac)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|193.5|0.6|11.96|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-TPA', 'Au']|['PZn-TPA']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201701526|YbZLcPFgw0HgVVf8b5YgOKfS5Pds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI6RbSn2|CsRbSn2I6|Cs0.5Rb0.5SnI3||0.53|23.1|0.6|0.74|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|YbeXIiR65fxQO1YNpUe4gokQImU0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.5Rb0.5SnI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.97|104.4|0.503|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|YbhORFVxQ9NE3via2EZakU3WtzcJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|189.0|0.68|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|Ybhcuf6uAJTofMbr6AV-fdVc_TWH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.0|0.5379999999999999|8.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pc.25527|Ybr3pO7oqSNkTA1rIcAhIXXPX4Yi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|197.5|0.58|11.84|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|YbxpppbxqXeDsDgYOfJH0_7zy5dB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25||1.16|173.79999999999998|0.6729999999999999|13.61|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD', 'MoOx']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.12.040|Yc-50hmj_rsco50RmuDdbFN1cJiA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5379999999999999|174.0|0.46|4.28|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|Yc-iC0vO9IwiW7NUNQWGrndn_pvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.0|0.7|15.24|['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp', 'PEI']|bulk|https://doi.org/10.1021/acsomega.8b01412|Yc5MvfgOAQVjBrcPX9AL5w5_vy_9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|231.0|0.75|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07513|YcEI3oyjyy8-SQchvLX17bTNNzwR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb50|Pb50C50N83H267I150|FA0.66MA0.34PbI3|1.53300016346554|0.99|229.0|0.73|16.3|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.jechem.2015.10.017|YcPaKs3NFO6CKsd5fUYkAmNgOjii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.66MA0.34PbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.973|212.0|0.6|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|YcSqMYDZo2UrhLHfcY_lKidSGR2f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.07|145.6|0.6459999999999999|10.16|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|Ycg1QCUJYmlXDYjjkAxg6nQijqWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.11|236.0|0.79|20.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00892|Ycgr5soDZiAqz6R9HRa4PguuEzUX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|183.1|0.636|10.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-PheDOT', 'Au']|['MeO-PheDOT']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501423|YchjzBo12N5scMjAHmEA4qClb-ce|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-PheDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb30Sn20|Pb30Sn20C50N83H267I150|FA0.66MA0.34Pb0.6Sn0.4I3|1.2900001375541723|0.75|248.0|0.72|13.3||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|YciqtpMzdJnR7ERNX-Z4vUOhnekW|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.2|0.62|13.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|Ycm16fMFZEqNU0PeZhi74okzg2Jc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|YcyRyYX1pXUaE7aGGHB7-Rl7wve_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|156.0|0.62|10.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|Yd1fUpUA8LOnfF4mqxV-glVvaq7X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.24|179.20000000000002|0.8190000000000001|18.19|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.069|Yd2TnYk7AqmPnXHvhwp6DJ4PuzbS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|194.1|0.7490000000000001|14.65|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|YdAopi_izyVS43KbwM0k1jhUpiVh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|189.1|0.741|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|YdC6PYO37uycbCTgK9qNLaLPAMeO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.29|53.3|0.3379999999999999|0.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['Spiro-MeOTAD']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201703800|YdDhSP2PMxYJXbhk7Rb-3wPDzk4Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FASnI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.015|201.7|0.693|15.32|['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1002/adfm.201805168|YdGchJCo9itw1SqzNa42hR9GQCVg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.142|234.5|0.758|20.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|YdWWmYaeFCqaHNoYvFdH01lfJnoz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C8H12I4N2Pb|PbC8N2H12I4|(PDMA)PbI4|1.5300001631456466|0.943|21.25|0.45|0.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|YdZVTyvUNStw98YrnM8GTKl1DODP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.0|0.8|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|Yd_lwajh_7fgii9CJoMA___TGs34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|234.6|0.787|19.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60; Sb-Carbon-nw', 'BCP', 'Au']|['PTAA']|['PCBM-60; Sb-Carbon-nw', 'BCP']|bulk|https://doi.org/10.1002/smll.201804692|YdogiyNq9PTS5GC7km33TY4hwBv9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60; Sb-Carbon-nw', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.7|0.607|12.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|Ydv4WVA2kcAAKZxAiTr93o3_MEMk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.0|0.703|11.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|Ye-lld5Qv59zzmiRN7WKRPeZyrOg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|151.2|0.631|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02193c|Ye5Yq656u0IaHbkqioobzhBMf5U8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|207.7|0.7490000000000001|16.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|YeDHNReK1VXyE8AeKKb5i5KaqF2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.1|217.0|0.75|17.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|YeP-hrWAmvuIVy7vAts_6x4m3Bpy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.5|0.807|16.04|['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['MoOx', 'PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|Yec446uUK2_wdoycFGif_Ht6GkUI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.02|220.0|0.67|15.03|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/solr.201900331|Yef-PEvnXDmF3FGE3KHltBLk0rAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C11H42I4N5Pb|PbC11N5H42I4|BA2MA3PbI4||0.93|84.0|0.51|3.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|2D|https://doi.org/10.1021/acsenergylett.9b01821|YefQwFGoCcqEz24pusr0o01nabdh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is BA2MA3PbI4. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.6829999999999999|117.72|0.603|4.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|YehNdAlTdvA6jJrZWQeyCl6N_LQb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0490000000000002|215.8|0.759|17.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01364j|Yel1CRRBbtWZVKYqeyDzP8uHI77K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|177.5|0.66|9.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2ZnSnS4', 'Al']|['Cu2ZnSnS4']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.6b01183|YeoBNc8IahmW0wHInABB1ttzz_dU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2ZnSnS4', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.101|161.70000000000002|0.667|11.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|Yes8NSq_K1RxMeaCWo6NSEE_0n8E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.984|185.1|0.667|12.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ni']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ensm.2016.11.007|YeurqKh6FKc_pl81W9GlUsIsmduA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|222.2|0.721|17.38|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|Yf2munL41SMcXy94E_IdXbdPN3V0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.64|226.0|0.39|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|Yf3ESkDjLWnuquFbBT8L6U_1dg8Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|234.3|0.748|18.75|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|YfANXMxSTYSbM2B_bimbC5dOB-aL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.0|0.64|13.3|['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|YfCAfIm99p90g_H2rBimb4E2wY_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|205.1|0.7|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|YfEO0lmB-T5n83GkdV6kYyDXvzD5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|221.0|0.77|16.4|['SLG', 'ITO', 'r-GO-HBS', 'Perovskite', 'PCBM-60', 'Ag']|['r-GO-HBS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701640|YfFcHTDd878Hed6Auva49-So-0Sp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'r-GO-HBS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.094|131.5|0.7|10.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|YfShCnWqx7Ydd_7dV89u_DZJduYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|218.6|0.51|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|Yfax-hjUcNjZNkmsq7JEeBfYEsgt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|124.3|0.53|6.66|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1080/14686996.2019.1599695|Yfem8GD-uv-JrSNUhRmUW3huE23g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|210.0|0.34|6.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/cryst8050185|YfgT3zN_clHP_xSOQ4LW0VFU98rZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.32|0.6|0.401|0.02|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|YfhKsmnI6agtl-SIjNXPex88ylwE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.809|48.5|0.654|2.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|YfiJRb0RAaTJ-wq8eb8lXLmRiwnl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7000001812729404|1.233|197.2|0.769|18.7||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|YfjRBn4jbI8FttnE5iCtl7U0AQcu|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|168.0|0.61|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IBF-Ep', 'Ca', 'Al']|['PEDOT:PSS']|['IBF-Ep']|bulk|https://doi.org/10.1021/acsami.6b00635|YfllVTQHkjHmc4_REs29iojXptUk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IBF-Ep', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|176.0|0.451|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|YfnmoW9z0AkFyap865ExjFDn_Eai|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.01|10.1|0.6|6.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201505140|YfteBMhXglND8jXMCztJMqRHyItB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|213.6|0.63|11.48|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|Yg3ee6Q7tfMvlQg9u3DY4vnCHZns|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|148.8|0.52|6.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4ra11155a|YgD_drhA1M9Yp1wAf1WhrkPJRndv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C45Cs5H243I150N72Pb50|Cs5Pb50C45N72H243I150|Cs0.1FA0.54MA0.36PbI3|1.5100001610130236|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b01054|YgGoFi2Lr2Fro24Q79YzRKrX7Rfc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.54MA0.36PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|156.5|0.62|8.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|YgIdC-FnzXuODFanE7wXS30CPBuC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|222.8|0.742|17.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|YgN-QV-APkPerXkLkBZuOQ-v5Rbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag300Bi314Cs21I900|Cs21Ag300Bi314I900|Cs0.21Ag3Bi3.14I9||0.69|40.5|0.5379999999999999|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|Yg_OCehWCgUyR2K_JoI1QweF3bO_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.21Ag3Bi3.14I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.007|226.0|0.64|14.8|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1002/smll.201501460|Ygm4YlPF12_vcYTWDmw3mGHutFBK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.3|0.657|15.05|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssr.201800505|YgnPGevPe-N0-U78_2GJSYu0N7FU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|217.5|0.586|13.54|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|YgtSegoO8vpBvo7qggvK_rqSgLm1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.0|0.52|12.41|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|Yh11DHBfMVrJIizQH7sHGkT1vQOK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|152.79999999999998|0.37|4.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|Yh4KaQWed-fCwFzr8qTrn9SMK0jI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|209.29|0.7509999999999999|16.47|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|Yh4f2K310qGfIDzGy1sMuS0S2Ryi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|201.0|0.73|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|Yh7mfmvwQ3_d80b7mR0iox2Nl4WZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br13C95Cs5H488I287N177Pb100|Cs5Pb100C95N177H488I287Br13|Cs0.05FA0.82MA0.13PbBr0.13I2.87||1.16|235.0|0.7859999999999999|20.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'pentaerythritol tetrakis(3-mercaptopropionate)', 'Spiro-MeOTAD', 'Au']|['pentaerythritol tetrakis(3-mercaptopropionate)', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903696|YhHxFkIQxAR8vViANJg5Q7DpHyZO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'pentaerythritol tetrakis(3-mercaptopropionate)', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|171.0|0.372|6.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DORDTS–TFBT', 'MoO3', 'Ag']|['DORDTS–TFBT']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201504293|YhIZNQ59BT6BbSyQB-wyWR5tdwiq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DORDTS–TFBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|216.4|0.655|15.89|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105396|YhKdDHQ8l7ZVHmEXgVQKjEm8K_ui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||0.99|32.7|0.539|1.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|YhQVKYRl5PnahIzCpunFQLsYuGt0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|146.0|0.6629999999999999|9.69|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra05578k|YhR0dOmVqS9CAEM_5FjREQLIledi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H55I13N8Sn4|Sn4C19N8H55I13|FA3OA2Sn4I13|1.430000152482532|0.391|202.1|0.3779999999999999|3.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.0c00286|YhTugXYolRbsegzj9ZPoyB8esY0x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA3OA2Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|174.0|0.708|12.1|['SLG', 'ITO', 'NTPA', 'Perovskite', 'PCBM-60', 'Ag']|['NTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc00858a|YhVY0aKylh1FJ0YD19qxISnbhs_d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NTPA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.1|231.2|0.785|19.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01096f|YhgTWaPZwJagoRjtaSxPgGxMAa-4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|153.0|0.815|16.2|['SLG', 'ITO', 'SnO2-np', 'PN4N', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT']|['SnO2-np', 'PN4N']|bulk|https://doi.org/10.1002/adma.201901152|YhqB5mmccHrlCL8SySJtdGXNr5bd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PN4N', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|212.3|0.706|15.46|['SLG', 'ITO', 'TPA-BP-OXD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['TPA-BP-OXD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9tc03941d|Yi7OhUMKxF3nd9lF3u1N2J5knUmv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA-BP-OXD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|YiAtlHiufLTcRH0j-lzocUtUZ3cQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|143.1|0.5|5.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|YiREQCu-PHPN9NXIpVKK0_PXpero|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.3|0.65|13.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pp-TPE-4DPA', 'Ag']|['pp-TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|YiWrW4RXpV7ftXxaPFVcSQ_KpXgV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pp-TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|209.4|0.57|9.84|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/er.3743|YiZ-8JYtKjNiLDAtfCkjpmunkKHH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|183.4|0.73|11.15|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2016.08.012|Yibgn-PG5M-db17dVm8tnDYy2xjB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI|||||13.92|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|YidDqYZNYkK9dI-vH6rbctJek2Ur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|135.2|0.7759999999999999|9.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|YiecJvf3s4_PrvSx0PWSNE93sjN4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|235.1|0.83|19.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|YihrLpDKRw6LVfop2gow_HKLqSbP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H91I48N28Pb20|Cs3Pb20C17N28H91I48Br12|Cs0.15FA0.55MA0.3PbBr0.6I2.4|1.6800001791403176|1.12|185.0|0.691|14.4||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|YiwOwty6btiheUL5vuadmgg6SdVG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.55MA0.3PbBr0.6I2.4. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6300001738087604|1.004|129.8|0.7959999999999999|10.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'AZO', 'ITO']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'AZO']|2D|https://doi.org/10.1002/solr.201900083|YiwqyCnNYv0-hAfPuwIlFhgEHRgY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'AZO', 'ITO']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|225.0|0.79|20.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|YiyZldrBmPNlPZFHEN4_z0vlqgj9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.75|112.0|0.51|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b11067|YjF3CgQMkbrDq302unogbJar_XYP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.0|0.753|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700758|YjPOZnsgayjoRXxINsukQMZLnvsD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|138.0|0.62|8.1|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|YjQRD7x4PRlCEHhm5dyQFmeGD0eq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|214.6|0.644|14.94|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201800110|YjXQ5dRm_mJwLPQiBKTz5GQ9J2vn|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.75|15.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|YjbxYDKIrCN_ZvMEl6_SAv_xHWFl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|2.90000030923031|0.95|18.700000000000003|0.59|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-017-5893-y|YjffeawMYpUdMW3dBqt4EXHiaqKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|140.1|0.413|5.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/ab2a5c|YjkXBRELzHDiAe4qRSMaEPVXSeWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|123.8|0.6609999999999999|7.28|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aa6e47|Yk0KsSt3Xuar46z3L_makr_enNnh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|194.8|0.586|12.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|Yk6E27CUpXVast7fmlZlbMKmruEX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|179.20000000000002|0.69|13.32|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-018-2633-z|YkFo05UjS_4eMBKrBUVFNTdsx-m0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.96|213.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701433|YkKEI0aquY9Es9Dz5pNRs5kkb3-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.564|36.0|0.5|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|YkbTHmSh3aOwzLIHXKDlTE5lr2mN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.949|206.0|0.67|12.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201600767|Yke4NcgsBAjIcgRGZ3f7YHRccHvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.063|189.4|0.778|15.7|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15031|YkoIggTY8rhQ6WbrtE9V7GS9VQ-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|198.2|0.72|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|YkrhCZ7XKBTAardAS6HrhvYScIg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T-MWCNTs']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.08|227.0|0.735|18.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|Yl6LidThEfeHu7dzIjc8kZs-uNE3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9||0.62|76.6|0.32|1.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/admi.201900517|YlDPGOI5nK-ODx2YmZ5do7mrBD1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||182.0||12.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.4965838|YlF2TxD8yxgXpHmm83jV5u0BrV4A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.1|0.71|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|YlbiHtEwOUq9cE9G8aK8Y8u9HotI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3100001396867953|0.69|231.5|0.603|9.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201605469|YlhzcH-xIoKXrCjXDWmBj23vDC_M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|231.5|0.654|14.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2917|Yln4Od6b8oAbaUWPN0R1I-ngbUuN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|230.4|0.64|13.51|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|YloJKVYZGUlqhVBL6AW-VRV6RCKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|189.0|0.569|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01087c|Ylr9KZrqaJn3R-tXyPR8RnWbMYnk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|182.0|0.616|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|Ym4XVGNj8SV0If06okFl6ehBa3ow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|225.0|0.763|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5098336|Ym6Er0DD5Fgc3Zdq-1bM_fvpU-PF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|206.0|0.73|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502039k|Ym6TvLY5nTB0wOJSCujGYiWUab3a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.4|0.7390000000000001|15.0|['SLG', 'FTO', 'ZnO-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'TiO2-np']|bulk|https://doi.org/10.1039/c8ra03162b|Ym9G4dy6jRuyzi3FLnrAHgWmr_X9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7809999999999999|95.6|0.627|4.68|['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1063/1.4926363|YmAvHyv_SuhMvkM3QQ6vpd6lrdhN|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.0|0.72|17.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b03884|YmD9YxWslLgmxsc-1iu9wcEmVA5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|139.2|0.65|6.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|YmI9BN6iA7zBjuP_E64M0MPNTVZ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0||15.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07422|YmL1BExSDuNb_Ur4c_Fx8nH48Pec|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|97.0|0.5329999999999999|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|YmZa2NDDqu90RbHkF9DO8WFf7HTv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C23H126I60N20Pb20|Pb20C23N20H126I60|EA0.15MA0.85PbI3||1.0|171.20000000000002|0.768|13.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201701656|Ym_vQMpLQi1aFCfRtgDza2e1TBTO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is EA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.1|0.65|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|YmcRGzK_va6lnXlSMIQQ_Uvo_ddf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.3|0.7979999999999999|18.1|['SLG', 'ITO', 'BDT-PTZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['BDT-PTZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901268|Ymfp7amZ2CTXqmNZq7cj7LGTO-VR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BDT-PTZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|227.8|0.77|19.14|['SLG', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta00398c|Ymh5a_2BB4YuNxSS2PWoVB63zzbE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.108|215.9|0.759|18.12|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c8ta05593a|YmhYfSK_Wju3rIQlbkOfB8den3a6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.0|0.79|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|Yn-uL7TVMptZx-L_EcJLuj9hq_vl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.1|0.534|12.88|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|Yn13D6Lt9OmwFDBdTNH9j8WjSSZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.0|0.76|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07450b|YnEJMPQ16nb9VHke7HRPJTYDM0G_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.1|0.45|7.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|YnFz_MweuHvi3uVmSfXDXsg5b6wv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|199.4|0.7240000000000001|14.37|['SLG', 'ITO', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']|['P3HT']|['C60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.024|YnIviH0wHsj6_kL3r6r4rZvqDbb8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|75.19999999999999|0.431|2.62|['PET', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3cc46534a|YnM5UfXIJoU1Dy2j7ezk7xqpgZtB|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.02|188.0|0.7|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.02.052|YnRq5HdjlRlA6DWP9j-P06XvdXOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.5900001695435149|1.054|215.9|0.674|15.35|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7cc07534k|YnV9qF0bTyCPkbP0kjYCEnLM8qQo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.51|7.0|0.51|0.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c6ra28190g|YnYajUDifzBAPt7pQ7JDK0tKLlqw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.50I2.5|1.6300001738087604|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuGaO2-np', 'CuSCN', 'Au']|['CuGaO2-np', 'CuSCN']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901372|Ynelc9xnRAI_YSR8IRXvcl2WXvw-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuGaO2-np', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.50I2.5. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.65|77.0|0.79|10.4|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|Yno6JeMvLj4vmjs6ajMb6eXJ7qE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.0|0.68|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|YoAtYb489G5GeEVpewZHYDnSfOnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|211.0|0.5710000000000001|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PTP-DFBT', 'Al']|['PEDOT:PSS']|['PDTP-DFBT:PCBM-60']|bulk|https://doi.org/10.1007/s40843-015-0102-x|YoG2-41eGE3X4F6gz1M-T9mhiTQK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PTP-DFBT', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|178.70000000000002|0.6609999999999999|11.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|YoI8yktagQkZaMzU0Z986TGx80fi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|173.79999999999998|0.44|3.45|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Graphene']|['none']|['ZnO-c', 'ZnO-nw', 'Au-np']|bulk|https://doi.org/10.1021/acsaem.9b01675|YoTRIeMuIpXz6csd5S_CyRG7LDZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|202.4|0.753|16.15|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|Yoatr5EzT4GIcuxnE7fHGO_p72zL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|94.9|0.7290000000000001|5.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|YokewbNxdguMXbgCn44UEJOSCec5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.0|0.6609999999999999|11.0|['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PDBT-co-TT', 'Au']|['PDBT-co-TT']|['ZnO-c', 'C-PCBSD']|bulk|https://doi.org/10.1039/c7tc00966f|YopizaEZUjfD1YhFY9O0n2n0xg2E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PDBT-co-TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|167.0|0.63|10.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn502115k|YpGrPrv2zsadjmOxTKWBMeN8J_QA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|181.0|0.478|7.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|YpHnUJrejAIJNXJXguoQn2Xu0eV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|147.20000000000002|0.526|7.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cap.2019.09.010|YpLX_jvg-JUmm-gAKV-gZIuI__pJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|222.0|0.66|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT:Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|YpdJzOapFLLawIKMxWklzY72tJ8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT:Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.197|233.7|0.774|21.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|YpdQPzdMp5QWvQId5g2ey7fZ_kA7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.8|0.74|17.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|Ypeo_n_AUtBi3sQneZP9VbmYpMQY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|210.0|0.65|15.0|['SLG', 'FTO', 'ZnO-c', 'Ethyl acetate', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'Ethyl acetate']|bulk|https://doi.org/10.1117/12.2251885|Ypj0s0OW2wkXgC-3-_Qdty9y5lkQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Ethyl acetate', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.5|33.0|0.55|0.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']|['PEO; KI; I2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.01.035|Ypp6l3J57RVTWApeDSxrdL_inFLy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -C180Cs20H1080I600N180Pb140Sn51|Cs20Pb140Sn51C180N180H1080I600|Cs0.1MA0.9Pb0.7Sn0.255I3|1.3900001482172863|0.84|228.0|0.76|14.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|YptCQDsdhxwLOKlM4_qyIYSCRlzY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.7Sn0.255I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|178.0|0.773|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|Yq6QLw1m5VxJYUuwz9oNIi6jrEv_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.28|148.9|0.765|14.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201900311|YqAA7AzA1eDPSKq0Kv57Vmytwnw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|193.0|0.608|11.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|YqB0wlgCFZcczYtWwVT2INIeNVxE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|215.0|0.5|9.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|YqKN70ydiX6w7KK3K9plBNsuqgji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||0.99|209.5|0.59|12.29|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7ta08040a|YqMbmemMA9yRLBrOymsY1qG42OP3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.64|140.29999999999998|0.434|3.9|['SLG', 'ITO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['CdS-nw']|bulk|https://doi.org/10.1016/j.solmat.2015.04.015|YqPzghsPPzE9ZFCUs_uaMaulzsuO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.62|3.9|0.31|0.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|YqYrreBT8UtHYiTLs3Ow_q7ZLP8L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.061|203.26|0.647|13.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|YqcvV2hvQNDa8re5mcJ6aUT83IKo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.084|212.8|0.653|15.07|['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cr2O3']|bulk|https://doi.org/10.1002/cssc.201701864|YqrQK_z7q63QsbgamSzn8YzeIjPw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|190.8|0.74|12.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|YqzN-o_aKVOKJSDs9AwUeO74xOCx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|187.1|0.47|8.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'CMB-vTA', 'Ag']|['PTAA']|['PCBM-60', 'CMB-vTA']|bulk|https://doi.org/10.1021/jacs.9b03639|YrC-DdH82k7mNGs_5OmxBILddQVi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'CMB-vTA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6729999999999999|135.0|0.57|5.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|YrDmWwUxc8tYmBxQeA0MVpUVyvPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|70.0|0.33|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ph500255t|YrIDh2Ig-N4FDlDr3URuaI87s56f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18Cs2H93I20N33Pb20Rb|Cs2RbPb20C18N33H93I20|Cs0.1FA0.75MA0.15Rb0.05PbI|1.7200001834055632|1.272|188.0|0.772|18.4||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/D1TA05699A|YrcncnRzbHyZO0Mr3JW8SFetYGFO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Rb0.05PbI. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.01|196.7|0.648|12.93|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.014|YriH3jesHflGNNDlHeL6oAa5F8kf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/8107073|YrnYrnY6lHZgdNxStMqnygqI8Q19|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|228.0|0.7|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03881j|Ys3mVTYUXjWk6lamsisdIQFNzaV2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|192.6|0.6|10.15|['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|YsA04lWhaKC5BWq41-F9tX_pM7PI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.39|87.0|0.755|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr2I-QDs', 'Carbon']|['CsSnBr2I-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|YsJc0cHz9Kw4OsPWFr3JQ8UYuUFH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr2I-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.0|0.74|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|YsWP--ArEgtluFampfnEYbR7lXQR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.23|138.0|0.66|11.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|Ysa8ce8zE2HREVADjM0CAgWrwXZk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.0|0.72|15.5|['SLG', 'ITO', 'M116', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['M116']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.052|YsjzClZXeEI1ddhbqG3mNyZOE4xK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'M116', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.993|205.6|0.713|14.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|Ysm6A5jjDX37Z20lJB7-rxytQ4_Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.11|148.8|0.65|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-03169-0|YsuJNfiX9YnwGdMIkWGGej2sZxi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.5950001700766705|1.01|210.6|0.67|13.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.024|YszQtnP6kaQDt23I400zfXpsMcpU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|201.0|0.6920000000000001|15.3|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|Yt82qf7KVJo1cQT-UNsbi3s4v2Em|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.5|0.792|19.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900557|YtCPd4kEselzBaPOkO05Bvu5cPfg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|185.0|0.55|9.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201600014|YtFASFllfyT6vjpPgTD5GO7wPCBU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.04|109.3|0.805|18.08|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-TA', 'Au']|['CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|Yu2a9GVME5hpcM-mQL-I18YL0zKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.83|113.6|0.608|5.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.067|Yu9t0IZSu3jl6Mvchx8rv8fxawI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49|1.640000174875072|1.02|216.0|0.68|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05795h|YuA8GovPyogurjlD_4sutHcdMWxJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|200.0|0.7|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|YuIyeBMNljMOI_J6JyqLjT-uAqyr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.25|177.2|0.511|2.34|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08679j|YuT028Lg-CUCIQQbn-OmeyaM_zAu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|158.0|0.645|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|YuTIBQcCBU--4qrXaySN_FGe_gAs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|175.0|0.672|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|YuZ7zueeLEzrEqUEpo8_gX1DuQEj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.098|231.0|0.732|18.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700584|YuZoeWPirI_6oKEYZLQITV4LRGwe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.0|0.77|17.3|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.024|Yujlf2EQ6zYTQfGqJ0DfwJ1ItQV3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|143.8|0.622|9.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|YumCI69daIBbFyKTvqMbxuJDCln_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|206.1|0.825|18.84|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|YuqfLgckuX2t_S4QoDONkEhY_B7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.04|232.0|0.69|16.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2', 'Au']|['CuCrO2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07368f|Yut0klLgMuS56ZdlKMoM8v28Exg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|174.0|0.833|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|YuwviypSlig5sZ7kWbddlNxamaMl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|201.1|0.7909999999999999|15.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|Yv9ihSGQPhDiBiiuCe8o4jTtPNyL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.09|222.9|0.7909999999999999|19.13|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|YvC3bfBrCyyG9l51BvcAorcCDAh9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.79|230.4|0.63|11.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|YvGFdg5vbQpbtM7lioS2v1Oj_cbp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.14|169.3|0.652|12.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|YvKylR1H9IVNQYZfGJ6Ni1TKQqZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|220.1|0.693|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1021/acsami.7b02242|YvMmwHlza17GltuJURjt-Jb1ctVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|185.0|0.47|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|YvcVyjO0w9K3SaeEsL02z-dCLaWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.9|0.76|17.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201900106|Yvm6xUMWO7CgLGNR03oynvQdboq7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|219.2|0.73|17.9|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|Yvn0vW1TUr636PrlOSGrDKiuypII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||0.88|206.0|0.659|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano6100183|YwB4TcI3RGBWkOK6BTCcXU072KZd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|177.0|0.53|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|YwDp_udHcMOQCG_4RQ_Ij_SLtZXy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|82.4|0.608|4.36|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDBT-co-TT', 'Au']|['PDBT-co-TT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|YwKGAT1Mvopq43oBxCrPptrHPPP2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDBT-co-TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|0.92|238.8|0.682|15.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|YwLt2tSwcdyIz3ltANXj357DFL4-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|1.06|196.9|0.68|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b04107|YwPySojFHf-p5UytiOBYylSh2ZhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|9.0|0.18|0.1|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|YwUcz8YAnkNSMF6eVzwfi3_XltMy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.143|163.0|0.635|11.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|YwdE6mP3hUm3JlII0gX5WI_sGIqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|215.4|0.65|15.63|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227405|YwqPXp3IP_Ah7KV2mmFp16QVd_DS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.0|0.72|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|Yx1nf8_KpoxHBi6ZnCWYoP7fOKiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.46|8.4|0.5|0.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|Yx7G8jV15aGF25tEpGRcixOQbiuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||16.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|YxBrm8XpVVkogT_Skdc_kNXNndzg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.01|75.1|0.54|4.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|Yxg-hpnCqGl25GWb3sL_kJn50jh2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.45|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|Yxhedk-G1W0L1k52gv4OpbBDSaZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.2|0.7|12.7|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793292019501261|YxiR83WDUEDva4od280_Sx0YGT0P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|208.0|0.772|14.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.010|YxoLLghK1L_VKX3oc2gMbxQOG4eP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.8490000000000001|167.3|0.502|7.12|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|YxzeYlaD_jp_MKQKE81K9Z0vh7v1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|||||7.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|Yxzu0L4JPN7IKM-AK2U-i1nSHhbj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -BaC100H600I300N100Pb99|BaPb99C100N100H600I300|MABa0.01Pb0.99I3||0.98|195.0|0.68|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|Yy0Kcj8V9Vou87fAoaodTFOAf7n3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.01Pb0.99I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|226.7|0.775|19.42|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|Yy2KV_z29hr1V-Khs2T9Vw714W90|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.5|0.74|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']|['CuGaO2']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|Yy2Ss_1CG_wutJUtY-ZxC_QM6t5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.01|193.0|0.6|12.0|['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|Yy6sGEr2Sl_cEeDx2XDvGhJkMEi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|4.8|0.9|8.59|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.310|Yy9pMo-6v1PYh8nTJR2xt8b1GS-_|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.1|149.0|0.718|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900896|YyH7hsopIzyDE7X7Fgt65vh9WdAj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.265|133.76|0.74|12.0|['SLG', 'FTO', 'Mg0.2Zn0.8O-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['Mg0.2Zn0.8O-np']|bulk|https://doi.org/10.1002/aenm.201902708|YyJqSivhCkNt6H4S0ohpS-l3vBl7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Mg0.2Zn0.8O-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|227.0|0.72|18.2|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1039/c9ta04367e|YyNmIxzPLcF_9Fbaw77ert_JXFol|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|237.0|0.72|19.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|YySD1C3xFyfF50UksiJTEroEWV7o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.085|38.0|0.28|0.09|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4941217|Yy_-FGdfY7wnGw-PLZTzghkZRXO0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.14|128.1|0.48|0.87|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'TATCz3', 'Ag']|['TATCz3']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112228|YycB07mIzxcmhCpuzKlZG-SelLfX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'TATCz3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.6|0.78|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11824|YyfPtIOvfrf647uQ0ppHk8jg_Jut|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|173.0|0.68|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cphc.201601168|Yyjy-v4LtEubUE9O7RInz90U8nSp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|60.0|0.472|2.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201501425|YyqGHta6zl-3kjVwYPViCyB1ELgy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|||||['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1038/nenergy.2017.135|Yys4Tk_QfHyNgMoB5ubGTd-MpUQR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|200.0|0.76|15.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06394e|Yz36zbzcjK0zBdzy-8YLcF8C4gl4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|157.0|0.7490000000000001|12.4|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/cssc.201600940|YzABmMVvhOchfJRXdJKmSUvgRriB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.725|17.17|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|YzDGv2u_IkKfxogrg3D2YzjUPPKK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|238.2|0.787|19.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDCE', 'Spiro-MeOTAD', 'Ag']|['BEDCE', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09724k|YzLbfUzuFfNNIMHG2nLVDtC9_8KQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDCE', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.9|0.8059999999999999|19.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO-flakes', 'Spiro-MeOTAD', 'Au']|['rGO-flakes', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|YzW2Qn0LwMBLpJWR8jdtqjl1Fp97|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO-flakes', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.151|221.0|0.765|19.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|YzlYr4akSrARWQdCM7XQvODakTJ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.078|199.0|0.6829999999999999|15.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|YzrWpZ3l6bHLZ6kvlbg1oMw5jjG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|196.3|0.672|12.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|Z--AwNWMT1RYw1UDcu1cGpX4LQMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|140.8|0.3979999999999999|5.41|['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70']|bulk|https://doi.org/10.1039/c7ta10366b|Z-DraGLOh7ZGUvmDD5VQ0JE5AJ61|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|217.5|0.6629999999999999|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|Z-FJ_AwQiaWuHNxNe6uKwL4qEc2P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|Z-Ik7l6hzouvYW7FZRC_Tv3LspAp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|176.9|0.555|8.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|Z-S_GzwYm5B7Jrb7BmMKFE2RPpK6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|137.0|0.43|3.3|['SLG', 'FTO', 'Poly-EDOT-C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Poly-EDOT-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.09.196|Z-XiSLUVKns4nF5rM8kbFg6vO6JK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Poly-EDOT-C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|176.0|0.65|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b17824|Z-b6el3tCi38rmWrbME07eVuFerj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|144.0|0.662|8.4|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201600746|Z-eU1-lmMggJityiGYBxPK_psLCm|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.861|103.81|0.6859999999999999|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|Z-iNtt6Gf6A0urn0zJPUPhTOMu2A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.4|0.52|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502537|Z-kG-62t0VmsKBGNIcBCoQu8If9Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.03|118.4|0.72|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bi2Te3', 'Spiro-MeOTAD', 'Ag']|['Bi2Te3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900233|Z-l_myWHwurhbLAJiJz6B2kvFmNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Bi2Te3', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||0.84|221.6|0.623|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|Z-sy1jcPr1ZO-R_YuRqY4LYe6-IZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.0|0.75|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201700183|Z07Er9KTKB9P4E7zFZrsFD47KSFf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.149|225.1|0.773|19.9|['SLG', 'ITO', 'NiO', 'PS', 'Perovskite', 'PS', 'PCBM-60', 'Ag']|['NiO', 'PS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08084h|Z0FRoFr0Hfkkh_RXkqbyk-bP8V08|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'PS', 'Perovskite', 'PS', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|200.9|0.76|16.18|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|Z0IL5V7Tr6l85qsdyzSzJFgWS4W7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.3|0.813|19.42|['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na', 'PASP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01947b|Z0Ilc1ZJipZUWajW4mf7Z_023X4E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.024|Z0JJ8a5tpyClUHs9VL8VeXUjpAjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|219.3|0.797|15.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PS', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201904684|Z0f8U9Ho8EwYRUA_-eehxaWi5Xci|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|166.0|0.48|7.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|Z0kb-2kprDywBHeK_W3NOnFH2IC9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|229.2|0.72|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3791/55307|Z0lj_MgoD37Qvb-fuoIeO-0d1WYx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|164.0|0.634|10.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08656f|Z0oZ37UewFGHgvlql3ObilGCS0Z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.757|16.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.02.026|Z0tbwxzYG2QuktYQbOst2cRbK2X-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.944|192.9|0.466|8.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|Z0vAYJjsnKAQ3gvEVU8NnotVSidR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|227.0|0.75|18.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800909|Z19F0CDHP8AYcc6KxUAiPOqSfaEZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.0|0.344|6.48|['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw', 'ZnO-c']|bulk|https://doi.org/10.1002/aenm.201400932|Z1PZUTma4jpSy6W7JRUrsx0OVXi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.7|0.74|14.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|Z1__d0_YAT1dFDopvUpMW2lvL0TB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|235.0|0.67|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.05.090|Z1h8s_Ao4nP_Uwlvs8tyZVOTxHt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|226.0|0.7609999999999999|18.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.034|Z1iE-HRBxAL2kXlDQj__ojp_uOO7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|160.79999999999998|0.64|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2016.07.013|Z1tfSNsaf5ji0cUEbs56z4krlAHX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|206.7|0.76|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-AZO', 'Au']|['TPA-AZO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc05694g|Z1uaxXwdV8eu1fAAHzuYx15uGaNh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-AZO', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.11|162.2|0.643|11.55|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|Z26bGXZ5Lwaoh1i31MGTJ_OhqjJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|157.20000000000002|0.66|9.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|Z26pdgJ9pE0P3s9T-VPV1YZafJYH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.0759999999999998|222.3|0.7509999999999999|17.96|['PET', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.048|Z2BEAFNeIvB7FTUrJXXm_HM5JtcL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|Z2BL06QICoGhgkVsm7QYd8xrlBRu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.0|0.746|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|Z2EixhiXedvKob5DhE1vh14Lmym0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|178.6|0.74|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c4nr05975a|Z2MFIuhm5US3DdDe7ajyja0cVfqv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155|0.7|177.0|0.563|6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|Z2RkvvXYmZ4tcKaaz6lQDjTV629c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b03265|Z2ae9U3BGZPARRoWy20TerTU8Dd6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|123.0|0.625|8.2|['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ra16865e|Z2cFDyt4hP5beb1xFMLNPdccGrxx|a perovskite solar cell with the following device stack: ['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.649|222.83|0.59|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|Z2d5NrtWdAbhWzOUVfedNRdzBg8I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.81|4.5|0.466|0.17|['SLG', 'FTO', 'AZO-np', 'Perovskite', 'PCE-10', 'MoO3', 'Al']|['PCE-10']|['AZO-np']|not processed|https://doi.org/10.1007/s13204-018-0744-6|Z2fIOilFJmAF4D7rccN9EGce2-Ho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'AZO-np', 'Perovskite', 'PCE-10', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.3|0.73|15.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-2,5', 'Au']|['H-2,3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700304|Z2yrq9UJIiHvUmpdTpx4EfFwEbZ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-2,5', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.1|226.0|0.8|18.7|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|Z2zCypYK6VhYIXjVeYfettPnLobw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|220.0|0.59|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|Z34Ci-JxswuxEzz0nVX5xHDbf4VW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|158.7|0.6990000000000001|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MUTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|Z3Hq5JnXpMdncOXMKX-43S3n_uyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.0|0.68|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|Z3JHtdfsRvQmRqbihfV1SMBL2tlm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.6|0.602|11.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CGS', 'Au']|['CGS']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06088b|Z3gCwgS4V3cAnwR_eBbTR1Ctx6TY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CGS', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I10N18Pb10|CsPb10C9N18H45I10|Cs0.1FA0.9PbI|1.5400001642119578|1.108|23.6|0.788|20.61|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|Z3i6isSYPpkEJE_YZyzZ3h1OQMq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5850001690103592|1.03|229.0|0.78|18.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201806392|Z3nOknQ5X8a2Dhf5EF1tWGR1sLAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|181.5|0.66|11.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|Z3q1Oo8sIfp6syli4bHRUlmvZPHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.002|212.0|0.72|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701433|Z3tCkjs2UegnbfgAW0JNsDLh5CYH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.05|205.6|0.75|16.54|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|Z40kgx9JsDcho3Sk2axwTwephnKm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|218.2|0.768|18.4|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|Z447Amuxnn5IhN3L5TS2-hfC6z9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.94|109.8|0.525|5.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|Z482DQK1K4VZfouI2jEhTFuwb-kT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|166.5|0.65|11.2|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|Z4A4f7t6AJub0TmXEinHNSO8tHkd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|158.3|0.4629999999999999|6.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|Z4BlfWQL-s73kOYqGm7Nenr9I7PX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7|190.6|0.561|7.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b08157|Z4GarkUcRblC8X2FDiEG6w4N0Hc0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||1.0|158.0|0.6679999999999999|10.55|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|Z4J8_0IxCuV3M0xRtVsIPmsmhxKl|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|235.5|0.8009999999999999|21.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|Z4MMB6D6ouvEycoGzNA5TR5kbJ7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|143.0|0.7090000000000001|10.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/adma.201900111|Z4a6NbfJ-BfkQEAobGGsUTqDZZTZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|209.6|0.647|15.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsomega.6b00465|Z4dB3YgWh5PBKrVBL3Fg-OZ5eJYl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|215.9|0.76|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C70']|bulk|https://doi.org/10.1016/j.orgel.2018.07.009|Z4e-zPgorzZSlXbU-D4mWt6JEGfc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.0|0.711|12.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|Z4jZ1FJbjmfXzHIc8heedtHCQdjm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||0.8109999999999999|149.5|0.5379999999999999|6.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|Z4uO5lTst1eWSFH9YzUjcRC9Wf1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.7|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']|['ZnPc', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|Z4xqDMHj2kFfG3l-RY2qfTTlv09P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ZnPc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.0|0.69|15.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|Z5GE4jS2jeJ55dDOsmBgoa63QNbV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.105|235.0|0.748|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|Z5H7Cu8SQt_J1ZdAwlsb3JRHs2UJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.062|220.0|0.78|18.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|Z5TwovkP7Mw73YZYA0TaKvPbbE1s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.06|203.0|0.625|13.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10827g|Z5WlyUPT8D127_rG4tfYj_3MLYrC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|1.570000167410892|1.12|247.0|0.78|21.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|Z5fRx38kB2Xg0DUCjb2l9OoEM0cI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.22|205.0|0.5670000000000001|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|Z5hUI3_Gr8zkzv4YR8CXqt_U4j4t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.919|189.0|0.77|13.4|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|Z5nbqdg71hRd3C34pHrUPOxcsmOU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.3|0.752|19.1|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|Z5uIf-ZnJGK0b9glmk6nrHGUqsTa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|221.7|0.708|17.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|Z5vdK6fUJT-I1H8OUbsFqnPHuXGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|111.0|0.44|4.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|Z5vm-aTA_oidnxIZ_Ulf9OovGrYm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|211.5|0.644|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|Z6-qLUUNP52GkntQj8bh9Beu9rU7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsIPb|CsPbIBr|CsPbBrI|1.7700001887371206|1.23|183.2|0.818|18.22|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1002/adma.201905143|Z6DNmGLE8dnCyGvdzq1fd0g_xQ4i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.5|0.7509999999999999|17.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|Z6GOdenuh7gtLvmm2fpBoinRBLLJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.89|154.0|0.66|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|Z6Hnm1se9GO4clSnJSf_1sK2ej6v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.1|0.71|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|Z6R21oUsWezdmVj93EOIWVn40X6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.9|0.701|13.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.003|Z6cF2s5uYyOhvs1GQwTfVeZYO7Ww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|10.0|0.74|15.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505140|Z6fG8Bt88n9ncTE-2sSLA38NDUAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.38|76.9|0.76|8.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|Z6jFIU9jGYs5Q5NubngjwmMqvctR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|124.0|0.405|3.36|['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5ta01532d|Z6rCY5olXGopaqKJM7ceCcTAZD80|a perovskite solar cell with the following device stack: ['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|197.0|0.72|11.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b12476|Z6wmY6b-XGIhtwD7GqzvNXjzPlxd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.942|201.0|0.76|14.3|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|Z7AbeoJoW6mAsYw7gFHrgDAy8coL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.71|3.65|0.276|0.073|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|Z7ZT-EmvR8Wpe8PmLfYl9i1prxGz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|223.9|0.726|15.83|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PDTSTTz-4', 'MoO3', 'Ag']|['PDTSTTz-4']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|Z7p_Bi-C-3LQh9yolvvJ2JsVsVk3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PDTSTTz-4', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br177C100H600I123N100Pb100|Pb100C100N100H600I123Br177|MAPbBr1.77I1.23|1.9600002089970368|0.8340000000000001|63.5|0.524|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|Z7tSHO7Yf2ACTV1AEd_sHA3p_gmY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.77I1.23. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|244.1|0.65|13.46|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|Z8Gsb0EANxjNbhJhFr9GTL_tdl--|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.5|0.72|16.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|Z8H9UuJWJBDramOMs4OqZf-mrEMJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|128.0|0.76|11.0|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']|['NiO-c', 'DEA']|['C60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201602333|Z8OHr2yNL-qwE2aZPpXM9LUWiCHH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.1|220.8|0.71|17.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.050|Z8Pdw_m4o-0YZLRh9F0On12S3FjA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.34|61.3|0.732|6.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02522c|Z8U1t70R9bi_USSPTU78nJ6R8t4d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||15.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'Ag']|['M104']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|Z8fAYd6QlLfYO80IVPW6vLy84tML|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|164.5|0.557|7.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ta06392a|Z8ikoVV92LRtwA3_QNllfc-EJdi4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.12|109.0|0.53|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.6b00002|Z8taXfCPAdjuZTgGQJCG6OQ8EWdS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.028|164.60000000000002|0.51|8.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|Z8trtumsK89p-BPQ6k3MryRmbkMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|138.8|0.27|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|Z96N2lQHobD2aSFMGBXqjz7wtdcW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|138.8|0.662|10.72|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'NaOH']|bulk|https://doi.org/10.1021/acsaem.9b01652|Z9C6O1EJ5OtRtxjcTaPxsWWDSVJH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.16|139.4|0.655|10.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|Z9CFXPTrP2xgRfb35rZwge-c4J5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br19C180Cs20H900I181N360Pb200|Cs20Pb200C180N360H900I181Br19|Cs0.1FA0.9PbBr0.095I0.905|1.5600001663445808|1.115|215.6|0.7609999999999999|18.29|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|Z9FYZRyVx54BmIISi6sTDwRNiFVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.095I0.905. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.7|66.39999999999999|0.596|2.77|['SLG', 'ITO', 'PEDOT:PSS', 'Pyrene', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'Pyrene']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1016/j.nanoen.2017.12.051|Z9ZPNWvNY3x9Ip9STX28uVNqsxRr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Pyrene', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.09|220.4|0.8|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|Z9aYUnaLwMEdmzySRuMSoJIwUUGb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.0|0.51|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|Z9fw_DvWBdw9r3qRM3UKEyvkG1mo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.976|122.6|0.564|6.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TC01781A|Z9hXqJWJAtROi-b2RypvTeXUfJwh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.49|39.5|0.52|1.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|Z9oKJTBxFpDPcdH9RE-Foeb9ek01|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|147.0|0.76|12.6|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']|['NiO-c', 'DEA']|['C60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201602333|Z9pR2Z6QD7Z9w2784IfnYYHqpLBx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.0|0.53|8.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']|['NiO-c']|['PbS', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800012|Z9sqb0F6otIU8Ad2Br_WlO5A1OWM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|167.8|0.55|7.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|Z9vXxGhoucfWYcfig25pOA9z5frN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.0|166.0|0.75|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|Z9xjF1SbFWGh2EkCJ9PYa577_Umx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|240.2|0.56|14.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s00339-019-2769-4|Z9zGuw-wcJ7C_vkSU7cBqbjZzfJf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.99|182.0|0.428|7.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|ZA1PRYUhBpqJymjdwyDwhrHWSKeN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|186.3|0.55|8.95|['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|ZA6aik1OASsHwbQe3giCan02rQp2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.107|192.0|0.75|17.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900191|ZAESF6UNCqWyBNNJPPkny-EfLVv5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C59CsH231I80N32Pb25|CsPb25C59N32H231I80|BA2Cs0.2FA0.6MA3.2Pb5I16||1.12|213.8|0.753|18.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.202001832|ZAIQY0OiLC2Dp_KR_aUnrvLc35JJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.2FA0.6MA3.2Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.9|141.7|0.51|6.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|ZAMnMsPVCREQZEhZTmItyIu8_SI5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.053|201.0|0.68|14.49|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06595|ZAY3-W0ABvVNyyl9S3yK6OhzPO55|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.6|0.59|10.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|ZAogI2u3dnEGIllLUE3i7yzbEYyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|175.10000000000002|0.481|6.1|['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdS']|bulk|https://doi.org/10.1117/1.JPE.8.045501|ZAy5oQo-oV2D8_qTsRHuN9ijeA-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|205.0|0.7490000000000001|15.86|['SLG', 'FTO', 'NiO-c', 'PTZ-1', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PTZ-1']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09530|ZB4uRMcf469HJen99USmjcNu31SS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PTZ-1', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|184.1|0.64|9.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01303e|ZB70ci_LH56gf_sbGHBIYfaFBX_X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|192.0|0.555|8.6|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|ZB7HFlunF-KqUgnDihw-rMKZiGp6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201900528|ZBAfDfcNYzbjiQ463yQZIXw54ynX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|229.0|0.777|19.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|ZBDzTMIU1KqrZbDbtgLEvMl6LLTC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|181.2|0.637|10.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Ag']|['PDPP3T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dib.2016.02.021|ZBlyqpBtONtaQUbLAokKq9Bwk9MA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.98|166.20000000000002|0.6779999999999999|11.0|['SLG', 'ITO', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['SWCNTs', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr02404e|ZBrofd7PhLLHdq5fXSGC2xb9-1Oa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.9|183.5|0.66|10.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|ZBwv4js53qjrfbKqf1eQ_nEgxHYa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|234.9|0.6659999999999999|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solmat.2017.04.035|ZC1rUBMOqcxnoXYP-pqSonRXbnac|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|220.0|0.7559999999999999|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|ZCBRRvGIghnY4H30z1Eg1484QYm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|169.4|0.7|11.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|ZCRDr80mJbLhuRMcPd9uVw9fuJnI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9|1.6380001746618096|1.0|215.4|0.66|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|ZCSIPWQKzor44XgSkDdhjEhCCvaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3||0.968|183.0|0.474|8.4|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/d0ra01640c|ZCionvWSyQp21qRmejmPRwCoWFhb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|206.0|0.778|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|ZCwIypMQlkrazOibpHF_exY8I4Ms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|186.0|0.693|14.25|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|ZD0sLYLxzh0fdKE7eUn0xSDBs2fu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6Pb1.0I3||0.89|208.7|0.4589999999999999|8.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|ZD0wslBenKuLzcDvIctUjS79QYDt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6Pb1.0I3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.03|216.0|0.73|16.2|['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|ZD3wS8J7j3M6tnjKYk7t8TzGXxzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.2|175.0|0.727|15.21|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|ZD5dvqW5vuIaeanM-Rwq8VZeIgS9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|163.5|0.503|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|ZDAUU-N9WVZ2EjB2_umtvhNJiNTq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|220.7|0.43|8.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIB; SeS2', 'Au']|['DIB; SeS2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201700037|ZDY7ZziDzLmAByYZeHOA0lMYrnZY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIB; SeS2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.0|0.6559999999999999|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00850|ZD_nkM5BM8whX35AYzpOuS2Lcv2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.87|208.0|0.722|13.1|['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|ZDhLxQWA4fVvtq52j1HgSD43pM9a|a perovskite solar cell with the following device stack: ['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.612|41.900000000000006|0.54|1.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|ZDlBLFIP62IXoDqTUjmv1SEUbb1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.21|72.6|0.8|7.0|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|ZDqQ0OJyjlVJO0JwrCWIhXTk9eis|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|228.5|0.73|18.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YT2', 'Au']|['YT2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01452g|ZDybbXVQGVssuihFrLX8lHK1bzUM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YT2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.83|116.1|0.67|6.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.08.022|ZE1NmS6blhwIp2NCSsK_jqkgBJox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|86.8|0.6809999999999999|5.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01202|ZE38DS2CcHmnjRkS7hM_kd3yKD35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|172.7|0.7|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|ZE6QPj00LxyDNM99Y83ibLLpqBA2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|175.79999999999998|0.669|12.2|['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1016/j.solener.2019.05.061|ZEEXQ1lj4F53aeZ3Evsmv3JBZ3JP|a perovskite solar cell with the following device stack: ['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3N2Pb|PbCN2H6I3|GU0.50MA0.50PbI3||1.09|110.0|0.66|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|ZESgwYD2elo5deO_FcVdvB-ScExd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.50MA0.50PbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.68|283.8|0.72|13.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|ZEUBxPf2pANpJ60jd8eh3imBsB9m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|110.8|0.24|2.22|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|ZEbGFS1nJ4QqIlka2PS1D01fbSQe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|161.0|0.67|10.5|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|ZEbfJTPoXwHw2wuwnNdfwWwpqwzd|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|180.9|0.61|10.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cr', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04519|ZEkx1b4mAdHP7Na1zbLHBC9w3X6i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cr', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|223.7|0.6759999999999999|12.68|['SLG', 'ITO', 'Ag-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['Ag-np; PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c7ra00274b|ZEohc9ZI0g93MF7kGYS6UYisJp-b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.5|0.78|17.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b11010|ZEojFW0sFhn__Bm7TaOoDFKY5VBC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|221.9|0.8029999999999999|19.9|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|ZEuD33s9_uGFbSRdX2am7GVBysXB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.98|134.70000000000002|0.55|7.04|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1246/cl.150814|ZFGj6KerxhWn3VNckq9-IRo6XkhO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|175.0|0.57|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|ZFIPTaN_rjwD9DyWJ43XJaAjrpTk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|165.3|0.56|8.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q197', 'Carbon']|['Q197']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra25606f|ZFPFw4-T5PHmf8GhSaWo14xwdjtb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q197', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|206.6|0.74|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|ZFPJSs_c_2NkTHyVTSmh_nFONZfM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.0|0.59|11.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp; Ag@TiO2-np']|bulk|https://doi.org/10.1002/adfm.201500669|ZFPXbn3jfkPP9aA0WO5HIywSBkmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.76|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1039/c6ta07004c|ZFRo6O6EEyveNgPFwL577If-gV74|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8900002015328567|0.535|50.0|0.71|1.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc00733d|ZFUUwOR4oddPheLiHQ8raJzJLUnp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|172.2|0.72|11.23|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/aenm.201501453|ZFcPn67K_d1zX2RPrkTa_rXZfPsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|101.1|0.7090000000000001|6.67|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|ZFzOBe3WsJtG5rIX3T_fcH9GhOGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|162.0|0.64|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700476|ZG-44zgxQs_EOd5rzfORHA3vdfDL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|157.5|0.54|7.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|ZG20m-16qvATP7o9WFWYv6uQHz_o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.01|233.4|0.759|17.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b10979|ZG5XUeDb5HQ9lgRvdqQWlEXxFZJ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|182.3|0.62|9.61|['SLG', 'ITO', 'PEDOT:PSS', 'PEI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|ZGSIq1KngxMXt1MOKiV5S4zwjyhU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|127.5|0.596|0.64|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['Graphene oxide']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5nr05271h|ZGWxaeY6gY_56moEmdUAmd4AzRI0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8740000000000001|197.4|0.67|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']|['DPPS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.136822|ZGYYvXkTnquDM7tlg8jVcZFZIH8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.662|25.950000000000003|0.5|0.8589450000000001|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b06278|ZGaGoPnpFsylPpEBQYVgAqE0hmBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|205.0|0.569|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|ZGodqrRKmodq_CEIDgDBncVAhzpk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C19CsH100I60N33Pb20|CsPb20C19N33H100I60|Cs0.05FA0.7MA0.25PbI3||0.73|221.0|0.6|18.1|['SLG', 'FTO', 'LiNiO-c', 'Perovskite', 'PCBM-60', 'Al']|['LiNiO-c']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aap8671|ZGur8NMjin0asQ4WTenGniDY_kMi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiNiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05FA0.7MA0.25PbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.732|149.78|0.453|4.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||ZGvKn0vSkiFWr4ve3SJEPsxoUXNd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|||||['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|ZGwS0Nc2W6LUgLJH_JLmIDjEo6nQ|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|202.0|0.73|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.029|ZH-SfuvLeCEAwD1X120crcxkAtwA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.2|138.0|0.428|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|ZH1bdhphybrA7wEXrJ4cnfjqUw8Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.13|142.0|0.67|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|ZHL2P8hx4-H_Xj4Uo7EJo5EL6_dr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.0|0.75|15.23|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta09431c|ZHXNKx3I5_VHMsMuX8R7dFjPIMl5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.95|152.89999999999998|0.645|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr02404e|ZHg85mBRURQyjzBUd7bobNt4Uhuk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||16.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|ZHuT34HLBeg8F1JrfdcojpzocA6V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|137.0|0.59|8.1|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|ZIEVe7EuTvyJDuew90BlJJt5pfRe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|199.0|0.51|4.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'AS44', 'Au']|['AS44']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b10093|ZIFBumukAgIF1m_LKXY-dqx69rxu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'AS44', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|71.9|0.6|4.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|ZIXtV5bUeO2ann271Itbly_iYo3o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.126|231.5|0.767|18.32|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|ZI_y7zds6wgU2vCy2o8srLkteiAf|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|218.0|0.76|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|ZIpMbDzB8mzKllbSyy7yhX-884K9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|131.9|0.778|10.4|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|ZJ0blIaz7IENJ5XBKN0P8GxtPTes|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.067|226.0|0.7140000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|ZJ3cCM9p4d-dEdNe8MhPgWXI-nM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8700001994002349|0.97|131.6|0.67|8.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|ZJBETeweaXa8unynXS7dVKQ8elhK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI|1.5900001695435149|1.091|159.4|0.7|12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|ZJETe43Y_yTW9_luWWg3mM-qyklC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|166.0|0.53|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm5041997|ZJHDWgK5qZgfZLyNbTJ7_xjHovIN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|110.0|0.3|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']|['4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|ZJKJV7M7lXxfxj40LPNubyfkzZ2M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|165.0|0.33|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7-Cbz-EDOT', 'Au']|['2,7-Cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3762/bjoc.12.134|ZJNdAhHsp3OV2LsZsv_52BOPme0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7-Cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.4|0.76|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|ZJRzpk-T46c55N6bDdTRfzNsBnAq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.929|205.3|0.5670000000000001|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|ZJZb1iGb0LgyBXjQkUcQ8YpgmHfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.08|229.5|0.78|19.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|ZJac1okztcCi3V_nHG5N4GAE3GJl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|203.9|0.8029999999999999|15.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.03.005|ZJmwsGcnvRAxcO9qpa1Epuo1G9Fz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||1.14|156.0|0.599|10.7|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201901090|ZJoPzjVN8DHAaCJUfKiNht651LC3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA2Pb3I10. -Br51C100H513I261N187Pb100|Pb100C100N187H513I261Br51|FA0.87MA0.13PbBr0.51I2.61||1.03|202.1|0.6920000000000001|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|ZJzQJA0I85DP5X-YBgt5SZ_hSDcT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.0|0.78|18.57|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|ZKCjzO-2DfXV3lsiy5AloomZOc4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.5|0.5660000000000001|12.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|ZKDZIFZl5rIvmfPOvsQT7bZgIVPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.06|220.2|0.731|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b00528|ZKR1rauBs2y4-QqN3WvCZV7GbCYz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Ag3BiI6|Ag3BiI6|Ag3BiI6||0.63|19.2|0.75|0.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s40580-017-0120-3|ZKUXhBi2RjJgv7hVaofoJfenwxl7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag3BiI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.015|8.100000000000001|0.76|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp03116e|ZKWPutlhoZhL3K2hNkiRSTqzFhvg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.3|0.7140000000000001|15.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.02BF08|ZL-6XKWvUxeWZj-AwgaK7cONMAPH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|ZL2CN23nZ9NgzCWgz15PmM2eEJcY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3|1.570000167410892|1.1|143.7|0.66|10.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsnano.8b05555|ZL3xpHVK-iKN9zAk_9KUCepit3Ha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.954|218.0|0.7170000000000001|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QD', 'Spiro-MeOTAD', 'Au']|['CdSe-QD', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9se01205b|ZLDfI1vJQ4U_ijP52P2_f809J1Ye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.828|1.7000000000000002|0.35|0.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']|['PEDOT:PSS']|['F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|ZLGsWt2i9uSKfJhoynoFpnHYQ6Su|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.83|97.8|0.58|4.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|ZLOBASRGdyIUeL8MrtR8uxWSpS-Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|201.0|0.65|14.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/coatings8110408|ZLTlHs-ilXQWslb_UYryZ6uq4UG-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|214.7|0.588|13.62|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b08669|ZLa3INr-wKDaw5qQjUqO-eEhQJmB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.0|0.69|14.49|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|ZLf4zFXayBCbboj1vo0pNg1BD0rx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|182.0|0.7120000000000001|12.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201600619|ZLg31-GzoWzJRMu6PxXUCwzbzm3e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100C100H517I200N183Pb100|Pb100C100N183H517I200Br100|FA0.83MA0.17PbBrI2|1.684000179566842|1.178|190.96|0.652|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|ZM9HpurmUPZJ1XQiBQ9IIBnYA2I6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.065|225.1|0.69|16.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|ZMBlz_t7KrtkFPoqRW6xS8pKzkyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.0|0.7|15.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.035|ZMXMv5Kai_LiCMBsZqHIRBJJr0Cx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.912|221.8|0.654|13.22|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|ZMXnSvDudrgKA5o06ED8jFfNGV1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.8|0.644|12.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|ZMZu-hvT6t5mTS39Uax99rr199JT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|204.0|0.79|17.8|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Au']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|ZMvKI3bEZL-d8tfz7DF5Z978BEcJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.0|32.5|0.46|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07739g|ZMwv2YljlmrWTneE2BfwVlSwUgnT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|20.0|0.6409999999999999|1.2|['SLG', 'ITO', '2EGO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['2EGO-PPV']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|ZN0lYV32uKMs_Vi7sbbJtpTluK2q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2EGO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|202.8|0.7979999999999999|18.0|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1039/C6EE02100J|ZN1U_sJds4KYzxJY1GTs-EkLvunK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.2|0.635|14.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']|['NiO-c']|['bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|ZNBVl2HtLf6Pj9uSh6Ip5iAYE8Ph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20Cl9H100I51N40Pb20|Pb20C20N40H100I51Cl9|FAPbCl0.45I2.55||0.84|60.2|0.64|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|ZNGDx1LPoxtzeyUcfdfwHBGPjPmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbCl0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|162.0|0.659|8.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|ZNL4DVaIokH28FP5WHDjULITFKA2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.741|123.55|0.604|5.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|ZNNj71W6m5CcPmVYhvkNrFa7caXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.0|0.76|15.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc06290c|ZNd00oKGPMlqpKT9If3kuCmfBd2q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.82|119.3|0.31|3.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.04ES07|ZO1RusLuE7jXGo5f1bGxK4-eCrCc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|185.0|0.56|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|ZOFjl0BaHsoWYXULcNwUvrp-51Mg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|155.0|0.503|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|ZOGjDCICEvyo-LVGrrlODOTyREvK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|198.1|0.66|12.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/srep15889|ZOGwnSOaCjmwU4dgocJEf6aOb-bv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|217.4|0.77|17.75|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-4F', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|ZOHLf1byb3_ylXsMwPBjY67Lv0Mb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.0|0.613|11.3|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.8b04078|ZOI-xE1bw_wP2a2mLZSJs17IrEhB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.6|0.563|10.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|ZOJ6he0i1jE1JwxaTcVRnbgsFBXy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.0|196.0|0.68|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02710a|ZONpKr8Wzbmz-RQT95dzF2SpV3NB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.6100001716761378|0.981|206.0|0.684|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00187|ZOWHdG-ifBpVKuM6DEz_swyuvxEy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee02958j|ZOXvJUkja5fkiUjQ34Fg-NIZrjMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBB-S-N', 'PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903691|ZOePOcyWb_-11cVmthkwkQP4-2x6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.5|0.68|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|ZOjpl-t7oPr2VSvhSjpIYUAH-1Ng|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C2Cs8H10I21N4Pb10|Cs8Pb10C2N4H10I21Br9|Cs0.8FA0.2PbBr0.9I2.1|1.7300001844718749|1.17|179.20000000000002|0.782|16.33||['C60', 'BCP']|['ITO', 'PTAA']|not processed|https://doi.org/10.1515/nanoph-2020-0634|ZOm3l238Wakb84o6Ay4S-prpm7rT|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.8FA0.2PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.2|0.7|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|ZOmSHtVZdlNqGQTa7nu8IaYSejZs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|151.2|0.75|13.41|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|ZOsPjegxuYYYnFVBdzv1u0WyU_cb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|195.0|0.589|12.73|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|ZOtCVDBeYgp0Cen0lUdGl3cn0yIQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|180.0|0.486|7.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.03.145|ZOxKUXFHA0FRuMmfkHusRcxvtbvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.8|0.7090000000000001|15.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201800361|ZOzTE1C8HKwTXOgYiBHIcTHN5lPh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|205.0|0.57|9.8|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.07.157|ZP0U8e4hLNDdYhl8KIYDfWetZYOL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.1|233.0|0.75|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MXene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MXene']|bulk|https://doi.org/10.1038/s41563-019-0478-1|ZP0jvIw8uqDLdQU8m0Nk-jriYP_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MXene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.945|167.89999999999998|0.72|11.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|ZP3HP84lQmY_eKR-wai-fTaCkO63|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|204.0|0.747|16.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00129|ZP4D7ibo6egmHbizu8ExLLU6ZCjm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.018|204.16|0.768|15.96|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||ZP5jgH3ovKQzxTgb0-eendqDud2e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2500002399200683|1.25|67.0|0.72|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b02597|ZPACQD0Nx3ExX4F25AoZKD1zfkK7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|172.5|0.49|6.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.09.112|ZPC75BV1zSAPNRuLsQtFf2DsHrEq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.61|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21250b|ZPHwNzM6zuwhDl3fFhoQ17IraAmO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|109.0|0.56|5.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acsaem.7b00194|ZPMdM67OopOPUPnXpWfAHWuyRVqj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.6|187.0|0.6729999999999999|7.53|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|ZPOVXekxjmPmrrEpQYMAjvDiSYnp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|214.5|0.74|17.31|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|ZPVjc5jtC4SrpItTK32v25eWQM19|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.142|233.8|0.75|20.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|ZPcZ4BvLkC5RRsfYhYtZk74eG3b7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|74.6|0.5|4.13|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05613b|ZPf9xfc8VmKV_WE2oZ0-QA9rdr3M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|225.3|0.758|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|ZPin0qvw10_IcadWI1ZtVkCvpX3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|ZPjdZiCrYtx-z37xTH5LNG-XUrn6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.8|0.75|17.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|ZPkG1cf-z9vMY5g735PaIfpmbeJ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.017|ZPktslFA_twV4Hhq10Hkz7-O3pCL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|ZPn75GP10SyrCyQdy2W5-HIEsyK_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|167.0|0.82|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|ZPncHUm5xpwxQ03YvL5j7C0wOWEj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|224.0|0.7509999999999999|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903166|ZPnz1si73MV3lQ0ddCAvNtVBHIvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|180.5|0.46|6.14|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.scib.2018.11.004|ZQGd03vI7rztsb3SjtfHwtA6f8-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|182.0|0.7440000000000001|14.8|['Foil', 'AZO', 'LiF', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['LiF', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.056|ZQHiN7GgnvHIz47OHQ_8Tg764Qce|a perovskite solar cell with the following device stack: ['Foil', 'AZO', 'LiF', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|87.4|0.69|4.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600933|ZQ_D_pNbR6-ImVhFfVyLKcEo4cBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.494|116.2|0.293|1.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|ZQcir9yqZIII2b1QAOmDUA6fyqRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.1740000000000002|148.2|0.638|11.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9486-0|ZQgYY1CwRJD5-6CTzSbRSo6j56aG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|104.0|0.56|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|ZQhkfCzt_ySivE83lY9cmzlaO4ug|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.6|0.71|18.17|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b09809|ZQkHM338T7bL5KKIIO_6J__YZ_-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|111.8|0.68|6.39|['Ti-wire', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au-np']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00462a|ZQpjQ_TCFQUUGeVnqcnWywZtSyaB|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au-np']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.71|20.0|0.584|0.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/bcsj.20170423|ZQpuaWqtqKwTK2kTxNvxPurTk9gm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.08|229.2|0.77|18.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201807565|ZQu4ymetkpFsYW2fS0R3gcw_Thw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.252|4.2|['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c']|bulk|https://doi.org/10.1039/c6cc04840d|ZQvojTly0cjXljoUmC5oJ-s5Fqiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7|1.5800001684772036|1.128|226.7|0.784|20.05||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|ZR0WP3PhFHG5zWbvuh0mi_DbvNEv|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|155.0|0.57|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr01141d|ZR9tQcc9gTEZ2lEyW0Y35UeTGZRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|177.0|0.519|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|ZRBXAEKQbasx-wsc5ZC7cBJWgkyb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.01|233.9|0.67|16.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.07.029|ZRNbPyc-oUl3gaOlKQzoi8GUxTkj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|ZRNlccrb7pRrgONlRG7FxCcBC5st|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.759|135.0|0.621|6.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974794|ZRQ3me2RZJa29vkZNzFE_PJK_1NL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.413|168.0|0.38|2.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|ZRXEiGlljxI7zhxqexB54ja3hPeZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Ba2K18Nb19NiO60|K18Ba2Nb19NiO60|Ba0.1K0.9Nb0.95Ni0.05O3|1.450000154615155|0.88|0.2|0.507|0.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c']|bulk|https://doi.org/10.1088/1367-2630/aaf8eb|ZRc8TF7v3p2eSyfkljo69sEyPy-d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is Ba0.1K0.9Nb0.95Ni0.05O3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|194.0|0.72|15.2|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['NiO-np', 'PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|ZRdoXUzUIRs_RjfYL37z81lEqBcE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.05|94.8|0.68|6.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|ZRibFtnoWPci8yoCAUFLPTKM-PKU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|138.6|0.74|10.46|['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZrO2-np']|bulk|https://doi.org/10.1134/S0012501619020040|ZRsqR_y7a0tG5adEB41fo_k1Wz99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|190.0|0.7120000000000001|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|ZSB3ZbytZwbVc51ryWzOrzLJH-nh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||1.1|192.5|0.78|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|ZSGEh91O7JEPcrircwbLZSe-LJMl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|218.0|0.75|16.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee01136b|ZSSLpYTEAMy8vTr4p1iEFfz3jtJn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.244|140.0|0.661|11.52|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||ZSUDM4OIyov4YnFtbfTarDrjFqHk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|197.3|0.773|14.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|ZSUSSqGlgihaeUcYJE4x04-Vmrya|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|188.6|0.59|9.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|ZSe44_yD9GwG1YkcAiceqNB0dTP2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.065|212.7|0.685|15.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0403-4|ZSompkJGVOnRDDKyGl951j7SosPH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.165|98.8|0.63|7.29|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta03336j|ZSqTIfwBVqYkxoIcdUgTeRndeKvv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.12|222.0|0.71|17.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702719|ZSvJT0Vz--EUHi5Jp_AHJv8pb948|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||0.92|233.0|0.71|15.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|ZSvTae13Uh7la32daWDyWT0w2d3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|40.0|0.2|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'PMMA', 'Au']|['Graphene oxide', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|ZSxKNDMTbVvbHVri2gKvzzWUE2Bc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.8|0.742|16.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01199|ZSyGYv397RCCMi2RxFIY51n5MwQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|ZT41w4mU4RKkjYiQE7rk5PnQcYoI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|60.0|0.23|1.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|ZT7UQVItDwZS9WQj_hyZKLdFL797|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.0|0.75|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06771f|ZTC0ZWRpjQKpFJR3bE4fsKN_jIJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|247.05|0.66|14.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.3390/nano9030326|ZTODXmlRuCBCdgy7tPVez0zjwD6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.07|80.19999999999999|0.591|5.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|ZTR0ZXDTl2TDVzor-TJkRQ5WSNR2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BiCs2I6Na|Cs2NaBiI6|Cs2NaBiI6|1.6600001770076949|0.47|19.9|0.44|0.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00154e|ZTj_MwWPDXwWeC7_C34jOCpNwxUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs2NaBiI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|ZTnUW7UmiEnHCO26IJ2tdsn1I9AW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|1.12|158.1|0.752|13.32|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201900605|ZTydBOdtFAab_BGk56QPreZeTzcP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|196.3|0.68|13.37|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|ZU3iEU0plOFniPA_2HiQNVlLneMX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.78|128.5|0.488|4.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PdMePy', 'Au']|['PdMePy']|['SnO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2019.116248|ZUVC3eSUJhK7VcSBFFonns6eQWqK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PdMePy', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.45|104.8|0.6|2.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aae2ab|ZUcVSDSMQvycbM0x_ah4c6oxkZyG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.936|224.0|0.644|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b01500|ZUdTcFdIDgBx_6aJ829WvRkr41rW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|222.0|0.721|18.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S2010135X18500091|ZUsvn8gBxBCOny95YqKhR2qbTZOf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|199.7|0.78|14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201700880|ZVPvPNRpop_N5Y5MZKrPHMqfdpPQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H87I54N32Pb20|Cs3Pb20C17N32H87I54Br6|Cs0.15FA0.75MA0.1PbBr0.3I2.7||1.12|216.6|0.682|16.54|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|ZVSaKfngWN8HB2tgxogDE4QbGy7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.02|224.2|0.67|15.4|['SLG', 'FTO', 'TiO2-nanobundles', 'Perovskite', 'CF-BTz-ThR', 'Au']|['CF-BTz-ThR']|['TiO2-nanobundles']|bulk|https://doi.org/10.1039/c7nr06424a|ZVaBsd-6qXDB3w25jfgIJ4E6SwKZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanobundles', 'Perovskite', 'CF-BTz-ThR', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|232.4|0.779|19.7|['SLG', 'ITO', 'V2O5', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['V2O5', 'P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.mtener.2018.07.004|ZVco7t8fZ7RmIvMoaEJZVSkvmi9l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.77|18.43|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|ZVoLROVJOd5KHSv0B1YcxqYLuIwV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|201.0|0.7440000000000001|15.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00613|ZVtgE34RPfyghxlBzn0qqA0gvHiL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br52C95Cs5H491I248N174Pb58Sn42|Cs5Pb58Sn42C95N174H491I248Br52|Cs0.05FA0.79MA0.16Pb0.58Sn0.42Br0.52I2.48|1.380000147150975|0.74|259.0|0.69|13.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|ZVyAuvTHBWq5BAai9GQVd06lJ98O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.58Sn0.42Br0.52I2.48. -CsI3Pb|CsPbI3|CsPbI3||0.95|149.0|0.65|9.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5029253|ZW8_rTxYFJYX-IRNya0fqLOlFpZ8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||0.85|222.0|0.649|12.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02014d|ZWCkN2S2tLq4vzxcnfH_B9_J8yI4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|225.7|0.674|15.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|ZWJ1aWIa-2PevBwdZ6zZGLgcNiki|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|185.0|0.722|8.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2018.03.020|ZWNnXACsKIi8TaUpF6XZhIYxpCue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.0|0.635|12.2|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|ZWOQSwHV0jWOSgJNHHwrSkXfL0vL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.959|218.1|0.6459999999999999|12.75|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7nr06812c|ZWZLBcF7j455SCVTTeRryN2Y2rZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|195.0|0.7240000000000001|14.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|ZWcB7r7AdhQjl_0gpGjPHOIRcJUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.50I2.5|1.6300001738087604|1.02|221.0|0.74|16.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuGaO2-np', 'CuSCN', 'Au']|['CuGaO2-np', 'CuSCN']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901372|ZWddugZIj2KjdYpmJnxu4AKGFo0T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuGaO2-np', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.50I2.5. -Br3CsPb|CsPbBr3|CsPbBr3||1.43|73.2|0.78|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|ZWdhiQMSwAuZ3g5OdBdBkgX3cn7e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.033|195.6|0.779|15.25|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|ZWf-sKhA3dnrKtFNfB-X5b5ijS8r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|190.0|0.434|9.7|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c6cc04840d|ZWrCBb2pMAxqqFmfJ9hxguWVuXXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|235.0|0.677|16.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ra12049d|ZWs9xO3LwLiUmagT2fanzz19c8Ou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|171.4|0.55|7.42|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|ZWzuAT4c6K0rZ8tXRkTYW9CytbX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6Pb1.0I3||0.91|191.8|0.496|8.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|ZX-mn9eBNG0SlGfeqysQ51lEQ4hb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.3|0.71|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|ZX5bEenEYcZ9jYC87v3LEv0kUUq0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.1|0.74|16.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|ZXDa_brHRz91uwuvPdtoYCndy0oL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.41|116.0|0.37|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|ZXFL52DGv6j7kaj0iYJB93u192B5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.7500001866044976|0.949|213.2|0.44|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.03.236|ZXOr4O-7EGMi2ugb6ECwtyPzsyyM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr0.9I2.1. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.1|141.2|0.7290000000000001|11.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1063/5.0011918|ZXQLnNXcMYXUj7NI3DxR7O5h4St9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.5|0.7290000000000001|17.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|ZXU2wsz5BVwvnIrAFTcjfCXF9WUn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.89|214.6|0.568|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL38', 'Au']|['BL38']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00637|ZXY6n8MXO5zMTDQxOgBZiovgMk7A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL38', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.035|205.9|0.7240000000000001|13.3|['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|ZXdwwdrRiyktRu0cS_yIHIn8m1tA|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|0.95|96.0|0.71|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502458|ZXfVAPyxj_a-LTDelit87OF2eSMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|218.8|0.737|16.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|ZXfbAYqdaQJOK4UsuYO-Q8-Ng-AW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.906|189.0|0.68|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|ZXsfTo-cMOYthCHIb1pOVEIsvIQ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -C13H42I19N7Pb6|Pb6C13N7H42I19|(PDMA)MA5Pb6I19||1.08|209.0|0.48|10.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1002/smll.201905081|ZXsoTA9kyMgCBTVUZjuWNxTaEnup|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is (PDMA)MA5Pb6I19. -Br3C20Ge20H120I55N20|Ge20C20N20H120I55Br3|MAGeBr0.15I2.75||0.391|22.7|0.38|0.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|ZYAFI7-RlT1wlUVV2fUd-2VNyvSm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeBr0.15I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.8|0.733|16.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|ZYM_pZgNnbt7Vwo4b9O-oedjHihe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|211.0|0.5579999999999999|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|ZYN_9imnChZuwOtBz3oF0iGyaOiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.06|216.3|0.74|16.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228210|ZYTC0Y2LCS4H707t2NKfv-m-vt6u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|238.0|0.727|18.8|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|ZYW60Hw31PzarWlNEuCIC6VQZZhA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.0|195.0|0.6|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|ZYc8Iba4nm-8iA4PhuBrM41R2P8h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|207.0|0.75|16.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|ZYeouyiT5kyMQ3-Sypdi49Yj5a85|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|222.8|0.63|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep29567|ZYgG2UBhTWPcTVnMZSpWIWNTrvjN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.4480000000000002|53.69|0.565|4.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|ZYjCSzj0djV5Or2HEFrx1dDqD_HY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.0|0.7070000000000001|16.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b15175|ZYsL_kk4XxdTbg-D8fXI5dADAPiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|162.2|0.4539999999999999|7.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150049|ZYtdH7-uJGTIY_OcPpRqMJTdL3is|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.898|104.0|0.55|5.1|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|ZYyboGlOe5Y8W5Yoe8HxoQ3ge4eE|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.728|204.6|0.526|7.81|['SLG', 'ITO', 'TiO2-c', 'ZnO-nanoflake', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nanoflake']|bulk|https://doi.org/10.1039/d0nj01559h|ZZ2VwDwC59cUlceylHFOkIpu_nTd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'ZnO-nanoflake', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|117.5|0.46|4.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Candle soot', 'FTO']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|ZZD-lkfnT7AoXKr3MPC0bB-ER8Xv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Candle soot', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.7|0.66|13.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|ZZFIh2duKvIacUoXndig8CnHi70v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|231.0|0.74|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.020|ZZNpBqxQl5Yz9HMcoiLqvs8M5Tc8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|173.0|0.58|9.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO:CZTS0.75Se0.25', 'Au']|['CZTS0.25Se0.75; rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801459|ZZZp7B6XRJog7k3aGqXb7v2_eEh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO:CZTS0.75Se0.25', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.27|35.0|0.6659999999999999|2.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Th-PDI', 'Au']|['Th-PDI']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta04828a|ZZeUiSNPllT4NG4XUvLoCjfzyrjz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Th-PDI', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|221.0|0.7|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b01783|ZZkLTb3yTA1kqrGw5nzxFGN3FZqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.056|204.0|0.6459999999999999|16.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|ZZmZzcO6W7HOjoYrN1yTTJdIqP16|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|118.77|0.652|7.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.038|ZZsZEYV8YQ9B8hirfr3NnE9VWc5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|251.5|0.58|11.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-N', 'Au']|['Cz-N']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj03089a|ZZyhiaNV0qrwRUBU9qSoeSdp-q_W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-N', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.0|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|Z_A6H822BkYcDGn8WAOUtoOhTULG|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.7170000000000001|3.9|0.331|0.094|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.514|Z_BKL_mnP0N87JdUHpAE6gfu0Nyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.73|193.2|0.6409999999999999|9.06|['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|Z_Cpl8_5PDv4WbzoRVIXJl9i8NY_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|194.0|0.722|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|Z_GH8T9gD2XWCxAqoc3nR_CuQ4ag|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.09|237.0|0.79|20.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|Z_HxOGatOIQlRcEso-6ehccV-5rS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|51.5|0.493|2.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974794|Z_LscVGera0QB4P7q789Gn9AC1ru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|196.0|0.68|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|Z_Q3VuNrM9rlEw8amvOuJMWK_fG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|207.9|0.75|15.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aa9d30|Z_kAxyPGdAEWnK0uKavYZZOzxEQI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C41H242I120N40Pb40|Pb40C41N40H242I120|(DMA)0.025MA0.975PbI3|1.5500001652782691|1.11|199.2|0.75|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17068|Z_nTGBHqNInwWIGAoaUmzd_8tzES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)0.025MA0.975PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.7|0.7559999999999999|16.01|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']|['NiO-c']|['PCBM-60', 'AgAl-np', 'Au-np', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|Z_rNzxnDD6YlstlYHjCD2OrV_kJF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|135.0|0.55|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.014|Za0CaCPQAlNuKjwCchfcgtj7Wi1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|196.0|0.77|15.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|Za2v1UFWL6MZcuvoP9doz_N0ZmcU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|2.420000258047362|0.86|98.22|0.6729999999999999|5.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|Za3-j2zmBghGh6cbXkg7jHR-_iDJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|137.89999999999998|0.55|6.6|['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']|['ZnPc']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jssc.2016.08.034|ZaAlNXWz1niQwf55WpC0INQVNiu2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|1.11|199.5|0.701|15.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|ZaSvxYJGLR0UuJgzvBeq6olqgADb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.62|54.1|0.6|2.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|ZaVs4znHrVjvxnnwlp97kU70CNC7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.5|0.7609999999999999|19.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|ZaZItdcEgFttR5fgkOjM0WkLSjG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|205.1|0.685|14.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh 1', 'Au']|['CDTh 1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00119g|ZaaMCmb529jo2lpskUBTXKsqReN1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh 1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|164.0|0.5|8.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|Zac744JG2lGY-83i8VB92TrV5iik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.1|238.9|0.7759999999999999|20.41|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1002/adma.201905766|ZagdcrJ4jIOpOreRqBcHUd10TVOk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.72|17.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PN', 'Ag']|['NiO-c']|['PN']|bulk|https://doi.org/10.1021/acsami.8b19036|ZakeFXDHtEYaCc96Mque5HebdTA9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|228.5|0.63|11.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.024|Zay98jDMBYvx1MtC6QTVQ-nkD5T8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|222.0|0.68|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|Zb7blbm9EicV6UcKg-M5gA-MmdBU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.8|128.0|0.607|6.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|ZbBmIC3JcZW39NLOYrjebbLib8ZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|ZbFgb3ODzKl5Xpn6FCzL1qJHSXks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|1.6130001719960312|0.88|115.0|0.47|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|ZbLt2zkiiF92DCOLO-Y4VHQMuOu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|205.0|0.65|13.75|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|ZbcVRJne9WAavozgNA7SJ6BEw191|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|117.5|0.65|6.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112218|ZbehXpEwCMmbrnVbxXGI7k6aI9un|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.15|246.9|0.8009999999999999|22.73|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|Zc-TLJ6aq2ACqlvszGTGDnwA9XEX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.0|211.2|0.579|12.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.012|Zc85lzKG89T-aPmG0-sqE5r2BqsV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7859999999999999|144.2|0.356|4.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']|['ZnPc(tBu)4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|ZcB2cw9bHBWZWdIY8ugsHXKWSOcb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|185.7|0.78|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|ZcGFOf_qI1UNo4vEDihPRfD-xDLc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br25C100H525I277N175Pb100|Pb100C100N175H525I277Br25|FA0.75MA0.25PbBr0.25I2.77||1.11|228.2|0.7609999999999999|19.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py-OMe', 'Au']|['Py-OMe']|['SnO2-np']|bulk|https://doi.org/10.1021/acsomega.8b01817|ZcH9WcoLOJfsifCAtSEVBta4QMj6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py-OMe', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.77. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|191.0|0.51|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/jccs.201800173|ZcHDyBR5HvYmnc3_B-g1DQtZi2u4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|106.1|0.5720000000000001|5.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:OO', 'Au']|['P:OO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp91904f|ZcM-nTxMSzvn5ueWYulxd5QKipvm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:OO', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||0.99|176.6|0.67|11.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|ZcQcXULIvBZIzZNCAkNA_4a5M0IN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.11|247.0|0.81|22.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|ZcVxZCWmr72thzLLDbU8BA4E-qyd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.94|190.5|0.7|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.07.022|ZcY6H02QDmHWEXbfcynV0GMorpkr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|166.0|0.4529999999999999|5.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021920|ZcweQVlgn0eCiUbRbtwrtyygifgZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|ZcweXrI5lbcE0m_3Ajl80gFj2iny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.94|92.0|0.59|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.8b02157|Zd4pmSii2Dyj4CL7hc5XQ9NfKNqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.12|248.0|0.8029999999999999|22.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|Zd5PS88PS2n8843TP44Oo5Vy02G0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|200.3|0.664|12.51|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2018.08.024|Zd8XfzAv0wh6Lny5aQI0ciC9fMB1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.6|0.777|18.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.027|Zd8oBRM9hTq4MF0ocBZOJKiNShZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|226.6|0.63|12.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01815|ZdJvnZ7tJeMLrcDkcepx6UF20GfD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.03|213.0|0.213|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|ZdPffnzdWo23DSNeu6I9qyCXngV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5090001609063923|1.05|203.0|0.7|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5RA23359C|ZdQWX0yPZz8M3GSXOJIpGscgxG9i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.24|36.0|0.5429999999999999|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04828a|ZdaLJ-C0KP5HD5vQliAbJ9DMyTjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.15|22.8|0.23|0.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PH 1000']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.002|ZdcTORASE2LlhWBg0ONxyhGSJ5y3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PH 1000']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.2|0.65|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cp01432a|ZdiqjnLHhnvCzflyEVHQ4t8oQXBT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.0|0.688|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|ZdpT4VNp6NcO8wIBpiGuNeowX3Cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|227.6|0.614|14.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|ZdrNe07R5G6irCs9A0aEQkWmebQJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|124.0|0.6|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502367k|ZdyB_tG7m_eBj9rcJdjZXUGiNv2C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.06|225.9|0.685|16.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.10.008|Ze-kL6A3ut7r0GXPfNe4rkqLC1QC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -Br3C100H600I297N100Pb100|Pb100C100N100H600I297Br3|MAPbBr0.03I2.97|1.6000001706098266|1.06|211.5|0.69|15.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226914|Ze9xs6PUx94TQK3KUzqolrfZkgrD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.03I2.97. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|198.9|0.557|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|ZeB8_D4peakxPD4OiPWNiPRYafyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|154.0|0.487|6.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|ZeDvCvJYi-NOQ7V0g1WPML7gPG8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|182.0|0.64|11.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra25160e|ZeEFREUSs5p3GnbNSs-88DyB0s4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|151.0|0.36|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.005|ZeEQ_NMukho5MC7H_ZTeK1yTVrZf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.5|0.691|12.96|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c8ra03119c|ZeQeRfXGvb8kX0F8d0xTEcf_gL0P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.6|0.47|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|ZeSPZWTye-IXwwPtxDcR6tgzPdNP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|245.0|0.6709999999999999|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|ZeTFFeMeL_5HcncYcbDsP_-Sz3C2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.13|226.3|0.76|19.44|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c7ta04128d|ZeX8KlPWwXAJb_rO8FYQbw3mGfTN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|205.31|0.6940000000000001|15.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|ZecxdMyWD6NnlmR-dtMpUGSkK1qm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.01|204.4|0.67|13.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|ZeegqVn_evSFiT3KT_mRDzlM9yIB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|74.0|0.3|1.7|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuI']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|Zef-Y_zsF--3uG0k-7tcqTg6_1kP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.2|0.7609999999999999|16.1|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|Zegr_thSdXaZdZmK5HLvs0855ZpD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|146.0|0.6579999999999999|8.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|ZexxpTBS81VWLfn-n1goRvORSQIB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|209.3|0.755|16.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|ZezWM6whbGWFesba4NYEQGua-CSU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.5|0.772|16.78|['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoS2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2019.11.030|Zf8LUi3ctFDQOaWG2xMMCSa5_DPP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.54|160.0|0.536|4.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|Zf90D8qTF3F0vDuZSB2N5DDQYWXh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|113.0|0.684|7.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.06.036|ZfHdB8g1E7VTrrFUBrO5qL_45q4-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|||||17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06044d|ZfK-v-XJ1WmEFwsPo-yRs7S-wAS0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|216.0|0.542|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|ZfYcIQdesjGSXsM-bojDxVplpDyy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|209.3|0.71|15.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|Zfgrgy_3vHz0vY-qGO48cAmt9KoA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.98|158.5|0.6940000000000001|10.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|Zfk-cOWUJ2ynG5glf-Yssx_4myRS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|216.0|0.69|14.8|['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-np']|bulk|https://doi.org/10.1002/adfm.201702090|ZfmCKAtudceVMapsJdxsBqRX0tl9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|157.3|0.64|9.36|['SLG', 'ITO', 'C8-BTBT', 'Perovskite', 'PCBM-60', 'BCP I Ag']|['C8-BTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900317|ZfsnUaYJsuUuLyEJEHtaIaSh_LV0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C8-BTBT', 'Perovskite', 'PCBM-60', 'BCP I Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|243.1|0.74|18.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO3', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201705875|Zg5VRrWiPIqfu83PFU3TEIYwsmxq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO3', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|198.0|0.634|12.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|ZgE7wj6eQxfCTdjEPCRkDNPRyTX_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|192.3|0.51|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|ZgFtci77Fhow9t_xh0pNq58Z8ZZY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.11|220.1|0.731|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|ZgLsGRM27R9-RPhvX3OrTxp5mF4A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|164.4|0.5820000000000001|8.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01843|ZgUsNPyyU2aFHsJYTBYq9pv5quMp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.3|0.748|18.75|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|ZgbSU-wN-0xb7JTZY574eO_76-wp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.9|0.6629999999999999|14.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc01973d|ZgeGdkv_CZg8ppwDWqD87HEhEmyF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|164.5|0.79|12.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee01138d|ZgrfRVe682uX12jcFSI8Bt11HtYo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.08|217.0|0.77|18.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|Zgtkoig13EJG4Yrso09nQ_SrhADO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|216.0|0.83|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|ZgwzIulnVYsO_cx0IFsksA4FhL9c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|231.0|0.73|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/bcsj.20190241|Zgygt_OsuzRvQjJB-SgNITHL6Xl-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.78|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'tetra-TPA', 'Au']|['tetra-TPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6sc00876c|ZgzXx4vMPgmbNx_5EQtZt63nutLS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'tetra-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|176.0|0.6679999999999999|16.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|Zh1eYGn7ykj0bVPRKaSdIRo8JzSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|133.4|0.531|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiPc', 'Au']|['NiPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.03.005|ZhGPOW1i0e3dv3QjBYhgph2xRlfO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|166.0|0.64|9.6|['SLG', 'ITO', 'WOx', 'Perovskite', 'PCBM-60', 'Ag']|['WOx']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.10.005|ZhLoyDt_1vFIUg9TCG-6bsSkInOi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.07|221.4|0.727|17.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|ZhO--mzn1Dn-awanZeHf_lUsZ8It|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|170.9|0.65|9.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1038/ncomms13938|ZhTHPUQZyo2p129YdtgGnfSuXx1K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.108|220.0|0.76|19.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|ZhUnjByAAL5zf-xB_W5pgrVIJrMf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3000001386204838|0.26|199.3|0.4|2.07|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|ZhX_7aEkv8mkUJ8baW4Kjhz5eQrF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.7|0.58|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/4935265|ZhY8WRA4A_CscA59KKQKFn-4MfWo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4C9CsH54I6N9Pb10|CsPb10C9N9H54I6Br4|Cs0.1MA0.9PbBr0.4I0.6|1.8200001940686776|1.16|161.20000000000002|0.755|14.15||['PEDOT:PSS']|['PCBM-60; BCP']|not processed|https://doi.org/10.1002/solr.202000384|Zhhow69ypHJCXJDJ4uO-VKPNX8ji|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1MA0.9PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.5|0.6|12.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra01430a|ZhzArdZSciTefLYwkP0jJVVnJAAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|160.0|0.48|8.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|Zi0h0VRZB-mDGmSiyu73NLbmfg4c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|137.10000000000002|0.62|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|Zi3p9JzIWfoyR_SC6bcf7ZWbfFca|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|77.0|0.51|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cp00416k|ZiG7njqF_PM2eO8ERbHcdFj84I4S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|112.0|0.61|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nl400286w|ZiMknX_MvCfl2F2EKtx7RMcVVrIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|ZiOkM4mLfkZy6m0vxn1LyQ6T0S1k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|185.2|0.55|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|ZiRtDmIXwnnzugrWnpclONbj7BSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.09|223.5|0.7390000000000001|18.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|ZiSAoz2iJxLpXqsqK_bTuJXEtWyK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|88.10000000000001|0.505|3.54|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|ZiSdJixO_HuftF4dBlgJ7E8azFKx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|215.0|0.72|14.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1117/12.2213249|ZiX1Pp7Q9N5BpGHcKh8Gal7SVZr1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|180.4|0.72|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1021/acsami.6b03724|ZiYeIwVY10wMTzWq91D05KnUhk4y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7140001827657765|1.218|192.8|0.783|18.4||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|ZiZApZTwMuR9B1j0lzizxflbIeDS|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|177.0|0.7290000000000001|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|ZiemwMDmpxcFS7EX-2yoGj961G-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|184.0|0.76|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta11128b|ZifPO4-jcSI6VAzkiKDwUfNRXUde|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br45|Cs0.1FA0.76MA0.14PbBr0.45I2.55||1.04|233.3|0.77|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'CS05', 'Au']|['CS05']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201915022|ZijUf2e_vFbua07VSJoqsyCEPVcm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'CS05', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.45I2.55. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.047|207.1|0.69|14.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|Zika5kpTB3HBsOLMrXxfliUTuqJC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.101|218.4|0.703|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|ZinWbBro3n8ulWd7VXqyI4Ee7wDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||15.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|Zixp9SsXC4oLIhy1mPwJUjyMcdUF|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|205.7|0.49|8.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|Zj8rKp7YEcegRsoWMRZmiHO7Y5Hc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.3|0.773|16.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|ZjB6C92sscLs0tyw0XPvC0zoQDRx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|231.1|0.755|18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'Al']|['PTAA']|['PCBB-S-N']|bulk|https://doi.org/10.1002/adma.201903691|ZjM3S1q-Loz1c5Hh5BQNGE7fNaa7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|214.0|0.64|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|ZjP6Tp1MWlUCNeo0lar7qyyBXnhL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|114.0|0.4539999999999999|2.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr03366c|ZjSCiU3BIlKmheBuc3vIDVRoDF8z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']|['XY1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|ZjTiePyiGaShEHDwNolCWKOyb0U1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|ZjwnixEMdWCNpWHCwl2do4JSOTqw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||0.62|189.3|0.546|6.38|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201900198|ZkDjksa6zhwGEb82HnLkZDuk4ZdE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|217.6|0.64|12.62|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|ZkEOYo7QBm0Xr8wen5HztjVfK-K0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.7|0.747|18.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b13701|ZkFRa19ykJUIPY1f4D7JxuuJyZqG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|52.1|0.34|1.2|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|ZkMjrf0wQgIHit6VZ63plwDmA_Y6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|168.0|0.64|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn502115k|ZkQtdk_zmUh-2hl4Vcvc6hN7Kbzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|203.0|0.69|13.07|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|ZkWWZPPTGsQKskFqf0_flgDk_Dlf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|178.4|0.58|9.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2019.04.003|ZkYQ_ahJxcqUo4stpSsLXG3JkaiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|198.8|0.65|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta03684k|Zk_g26FUumNpaLWBGZQtff4CeSda|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.91|136.8|0.591|6.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03481|ZkbqFsc5hsTtCQw_AnwNX7Pjn1Oe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|128.2|0.504|6.26|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aa6e47|ZkeA--05ZpU6UmzEjPm3_e8Osomt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.976|159.0|0.75|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|ZlO-urUUlguR50_chOr4sSZ-7mLm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|ZlTgHiP7tGSz1SAimB6ag9-_fsnA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.4|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|ZlZK6SEnK4q8obFCVGrikWVVlrjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|222.9|0.71|14.13|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'Al']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6cc03740b|ZlinMkVx1XZYMm1O3yC2Rjl2vGqY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C80H440I148N120Pb50|Pb50C80N120H440I148Br3|FA0.8MA0.8PbBr0.06I2.96||1.032|209.8|0.6809999999999999|14.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900491|ZlwBp3oT8SlJW7O5oRan7b7YyVbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.8PbBr0.06I2.96. -Br51C100Cs2H517I249N183Pb100|Cs2Pb100C100N183H517I249Br51|Cs0.02FA0.83MA0.17PbBr0.51I2.49||1.11|180.0|0.67|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-00691-9|Zlz5hkm9bpdxeI9U2MsLZ18SsLDe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.83MA0.17PbBr0.51I2.49. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.097|225.9|0.758|18.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|Zm0n4mEZGwYGBI1c9-BLE5mmWtp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49|||213.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.10.062301|Zm8Iznfq1WwK-_XXtXBjLwk2qX6w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.0|0.614|10.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|ZmBg8ZI55tmlJ4enuTGiEsYJ7qaS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|10.2|0.77|17.05|['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Al2O3-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505140|ZmCVtzHmA3MsrxScIMpQWNxGdEX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H273I150N77Pb50|Pb50C50N77H273I150|FA0.54MA0.46PbI3||1.06|220.1|0.6409999999999999|14.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110110|ZmFKCA_cfCrZieiQ8zxye28YtRdG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.54MA0.46PbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||1.05|226.0|0.55|13.05|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7EE02288C|ZmKCaoxfm_4ms-Ocr3q21zEPzRI6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|209.4|0.79|18.0|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201800645|ZmN5tdnALml8FEEqEkir31V8ZHfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.9|0.7120000000000001|16.63|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|ZmOBUhqrGq2pOo2T7_TLwKjPDCHA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.11|225.0|0.81|18.4|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1091', 'Au']|['V1091']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|ZmXjtgl9nq5AdS28BwRgKQD2i47l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1091', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|182.0|0.515|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-6928-0|ZmXnYH4SXJSLNqjQGVYGNWcZZFzw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|205.0|0.63|11.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-019-9452-1|ZmeWC9GCvB7F3Dr1Zyv27ObndhPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|197.0|0.74|16.0|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1246/cl.180616|Zn1f5M8fCJjrNYfe_iy37K2opr2U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag2BiBr12Cs4Sb|Cs4Ag2BiSbBr12|AgCs2Bi0.5Sb0.5Br6||0.67|2.4|0.41|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2019.04.023|Zn3zRelPwJ1m-ZDekn2yEgbh4MnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2Bi0.5Sb0.5Br6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|226.0|0.7559999999999999|18.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|Zn6vDGWhZeZDqiB7LXtCcdkoQiD-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|208.0|0.743|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600401|ZnGAuQ_hw7Q9EWeId4QNh21Ofuw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|229.5|0.728|17.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|ZnILIcZw0GTHX8Y4O_xSCw1AiMBh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||16.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.07.039|ZnJ2-1Yo9-tjVMcDJxKHtGVmTbjR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|ZnQ0E4WueWan_H0je-qcXqVrxBux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|181.0|0.74|9.87|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.08.012|ZnUXcUZRBHy7Wyyw_ScHcxwf2Rcy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|224.0|0.61|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'NaI', 'Perovskite', 'PCBM-60', 'AZO', 'BCP', 'Ag']|['PEDOT:PSS', 'NaI']|['PCBM-60', 'AZO', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b07368|ZnnNyC4xP_qUZEcqTvGwQRVCyn9F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NaI', 'Perovskite', 'PCBM-60', 'AZO', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.13|131.5|0.78|19.2|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|ZnwWfz-HHnwX3_kwNLPvSjAGo7gs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.961|184.0|0.67|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR145', 'Au']|['KR145']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11076|Zo8WthR0tKdad8SOZpdAxXotqjMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR145', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|1.06|230.0|0.7809999999999999|19.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|ZoAf64dOcgKGe18KOcBCxjus5qgg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.7|0.607|12.27|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701144|ZoCV0500FsiLF2HByjQ5etdJ49YZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.23|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|ZoQJ4q0KHOxezxtkNmxbetcr-OV_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|114.52|0.304|3.47|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|ZoaSowjk7kN_fSxeVBYJO268H-qE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.02|188.0|0.584|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.06.013|Zoe6dPjKh1MtFP3DxFlNV6bFkX2n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.9|222.0|0.537|10.8|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|ZofcSsvAuSsvmrTdjbB1K8IWTLfh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.03|232.5|0.74|17.72|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|ZoueOu_Z7yNRpGTkeLrd2vJuDar6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|234.7|0.7490000000000001|19.15|['SLG', 'FTO', 'SnO2-np', 'OTES:APTES-SAM', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'OTES:APTES-SAM']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227161|Zoy89aa32UI94hEomM-suC_G_eLC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'OTES:APTES-SAM', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.0|0.6|12.2|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'NPD', 'MoO3', 'Au']|['NPD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00270|Zp6MF7z_emLD7-U_IkMVXfq7G_b0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'NPD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|205.0|0.68|15.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|ZpEofRnhyK64iXVDr6Mv6YSe1AUp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.037|92.3|0.47|7.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|ZpQen78qL3zsffI-2gzQhKgPlpLd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|80.8|0.309|1.38|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.04.071|Zpi7-Yn3C3kt3Qy5jVcGjIXNTNJf|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.0|0.71|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601433|Zpj3U-p-AgtqHS9J_0K8_Gy9-3ks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|206.0|0.8|16.6|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603747|ZpkQ1ivBW-AJBdidWzStG-9g9tvj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25C48Cs2H248I125N88Pb50|Cs2Pb50C48N88H248I125Br25|Cs0.04FA0.80MA0.16PbBr0.50I2.50|1.632000174022023|1.01|145.0|0.59|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|ZplioAC-zkW_UY1r1ftkcKW6HTNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|239.1|0.69|11.88|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1016/j.orgel.2017.04.024|ZpnDsInplJ_fW5asQjAxnN0dKasG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|113.0|0.603|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.12.045|ZprIZdvFl-RPuFRffTRlXAE7E5QB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.39999999999998|0.616|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110029|Zq-xIZWzVKZbfTVYeTTwiYsPa7XC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|147.20000000000002|0.635|10.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|ZqIiajld1U_XapIeTdBP6GAii0HN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|180.0|0.54|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201600581|ZqQleYZP8AVKs2Lr7K4YE1s2uJTt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.091|221.0|0.8|19.3|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201802012|Zq_ATPukMWyy4hCzie7bhzUYYeYK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|126.0|0.613|7.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|Zq_fPSkR_U8ne6u_cj71kppXjOnJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|199.0|0.48|8.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|ZqeOwxniA_ugeXW23hdMzY7mo57B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.139|217.0|0.73|18.1|['SLG', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|ZqfRGCyCSDCAOPX2S0IKAKN4DQlW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|180.3|0.662|11.72|['SLG', 'ITO', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|ZqfyBaWzQBeTqgIuuU4t7IuIUfqi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.7|0.6609999999999999||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|ZqpkBOPT2civrQH-1MWlmiWhgmC1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5500001652782691|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201707583|ZqsoOqymd2GzbaAaQo19qTenPbRw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.041|212.0|0.7929999999999999|16.9|['SLG', 'ITO', 'V1036', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|ZqtgEgVa1IYX9OceHAaLcKnF0mY5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||15.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-020-1306-0|ZqzcPVAGFUAy2zdHRUN0a8EISHFE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.96|177.0|0.61|10.4|['SLG', 'FTO', 'NiO-np', 'Graphene oxide', 'Perovskite', 'GO-Li', 'TiO2-c', 'Al']|['NiO-np', 'Graphene oxide']|['GO-Li', 'TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2017.10.015|Zr485AxNx-0rCGE8c8QcKonmepJd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Graphene oxide', 'Perovskite', 'GO-Li', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|Zr5WSGokC98CS5A1JdQhjIrcKP8f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.17|204.0|0.7170000000000001|17.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b13740|Zr9sVmuytdt2O3QsEQiQWxeBo9cr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.8|0.78|14.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|ZrCcTpTOTMPMNjgwf8mSbInMM10c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|1.06|222.4|0.6629999999999999|15.63|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135197|ZrEqqZlUeRWDeGtqsmqCu3n_W3O8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C40Cs10H207I125N73Sn50|Cs10Sn50C40N73H207I125Br25|Cs0.2FA0.66MA0.14SnBr0.5I2.5|1.4200001514162208||||0.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|ZrHj6DCvZb27i_aMxciO6N9XMTWX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14SnBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|217.5|0.78|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-OMe', 'Au']|['ATT-OMe']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601674|ZrVOCsDnAag0_4vl2BQovU7PRM5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-OMe', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|202.5|0.59|10.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt; P3HT', 'Au']|['Carbon-nt; P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12200-016-0566-7|ZrWPiAZkspQ3BMNHvE0SY905xFru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.98|141.8|0.66|8.84|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.mtener.2018.03.006|Zr_7TqlpZDWiRnTQIC5V2M7mSZQ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|159.8|0.695|9.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1674-1056/25/2/028402|ZrnUaVnNa4yGeajSNtzYQpUaTVQk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|216.0|0.69|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0957-4484/27/50/505403|ZroXv0YbymWuFqBBzIIlUdeTUOop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|206.9|0.638|13.49|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ra12126h|ZrpKtOgYyA0qtYMPEYwPrPk2Ac0A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|203.3|0.54|10.18|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|ZruqoYWDCB4kLV7dNscx548dFKuX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.8|0.6609999999999999|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|ZsBIyNeZQH57_Mm7Zi9bYXZ-DHrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.863|123.0|0.594|5.87|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'ZnO-c', 'Ag']|['NiMgLiO']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta05802h|ZsCXRspoTBLjPgbbNcDIu8V-2QP5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'ZnO-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|171.5|0.67|11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|ZsDhXcd6wuFfwKX3sbgpi3v2dO3z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.044|76.0|0.601|4.8|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|ZsFMnv0s3vyuedCki97YzfqwsU38|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.95|193.4|0.64|13.8|['SLG', 'ITO', 'Aniline; rGO', 'CsCO3', 'Perovskite', 'PffBT4T-2OD', 'Ag']|['PffBT4T-20D']|['Aniline; rGO', 'CsCO3']|bulk|https://doi.org/10.1021/acsami.6b10278|ZsFnsW-o9sLccMeVFPrmmOqzIv0k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Aniline; rGO', 'CsCO3', 'Perovskite', 'PffBT4T-2OD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|181.0|0.53|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23062d|ZsHsbFOMYNCReHrtr6ZNrZO46_Jl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.0|0.713|16.2|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/cssc.201701262|ZsKWXs6GfOl2Z3uC_J3lXimruPLv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|173.0|0.66|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8081|ZsQakAsGYCPqNG6-WsGozrQ-p3Es|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.933|203.0|0.75|14.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|ZsROeKB8Pk5U5Z5i9oE4eazM6eVX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|157.0|0.691|10.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702872|ZsRYqgmNqcriono8hR0BrEuKbZD5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|238.2|0.68|16.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|ZsV97GBT44I_7AsuPsL2X7zpSuNR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.0|0.71|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|ZsXQtDhK0HqwrpaC3IeMOqo34b7f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|ZsXn9Z0qEeSgNjigRKqWUj-VjNcQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|214.8|0.754|17.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06879k|ZsYrqx9ffgVzZHZ1NbS7Ld5r6Jo4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|212.0|0.52|10.3|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/acsaem.8b00106|ZsZN7qeghWH-W6IJvQJ8ewv15KR5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|231.0|0.7859999999999999|20.5|['SLG', 'FTO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/aenm.201800138|ZshFFUn-VksL00SiCaWNRqxYqdtn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||2.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-420', 'Au']|['SGT-420']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|ZsvA_39Yu5bUhLUSwuHEVIsUpLkY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-420', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|211.0|0.778|18.3|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|ZsvZlKQ-xLnuZM1wZIFF-TbS9Qms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2500001332889268|0.273|173.6|0.391|1.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00513|Zt1CkEhcH9gIRzDVqs59xxzuVYif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.804|289.40000000000003|0.4|9.34|['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'PCP-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|Zt3RIVECaT5iwtaJbOPiB_Xgg9g2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br39C95Cs5H491I261N174Pb100|Cs5Pb100C95N174H491I261Br39|Cs0.05FA0.79MA0.16PbBr0.39I2.61|1.5900001695435149|1.03|195.0|0.65|13.0|['SLG', 'ITO', 'NiO-c', 'EPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'EPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.04.035|Zt3e6JXwoLC-Pl34WyaPmb-AlZlI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'EPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|210.7|0.77|16.93|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|Zt5HGNpGbxxRejKQwcYcqkIHAG3z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ag']|['PTAA']|['none']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|Zt7K2WgQLxFZqI8d8Hk9y-jhF6ir|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|217.0|0.69|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|ZtKUcJY5kx896yeHiAOw9QCPEy4O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|211.6|0.777|17.15|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|ZtTey2LDx0F_Hx9l_vQc0vaOPi2D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.2570001340353447|0.66|206.4|0.59|8.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202105734|ZtZXytLhrOb8OJDGNxzimnCUVei8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.847|132.0|0.63|7.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta10605f|ZtadwlT5UWcfTYrcQ74N5wNFRolE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|119.0|0.66|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.05.004|ZthekfAs2ytQtWOr2O98vLE04_Hv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.93|191.0|0.65|11.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|ZtqwQwXsv7If6sVWAO2UpQ6CfNpG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|136.7|0.738|8.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|ZtzaZ7sjChwp62Tp3DKIDSM8gS7p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.599|18.0|0.452|0.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|Zu91s8RhMyYp2MUzF4l83e34uIvr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|141.0|0.51|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|ZuCysXFiss8GnrhMl-8FxvZgmolQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.98|206.0|0.77|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P4V4', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|ZuEe36h8CqIbSjEoFDFUGW-2Kwfn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P4V4', 'Ag']? The composition of the perovskite layer is MAPbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13||1.08|166.20000000000002|0.7|12.59|['SLG', 'ITO', 'PEDOT:PSS', '4-bromobenzenediazonium tetrafluoroborate', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', '4-bromobenzenediazonium tetrafluoroborate']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1038/s41467-019-08843-5|ZuHe4LLosGwq69H5yEwLzhiMNK53|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', '4-bromobenzenediazonium tetrafluoroborate', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|185.0|0.73|14.6|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|ZuJDSe9KrGoK-ZlorPvLGnMKRsf9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|219.0|0.777|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.039|Zuat8rd2RKc7g2fXz5JtLgvN353u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|110.6|0.52|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|Zv0UZgRCyzfnXsgkOlQIWlo8N_34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|Zv9Vp-vLrSDMVWezcfM2WsF0o1xZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.29|150.2|0.78|15.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201900311|ZvAsHxy9QmxBXNuhL8KatBf4uPjJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|175.0|0.37|6.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4917238|ZvGKmd08ty0jh5ZivoonEgayUmng|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|211.0|0.8|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201706895|ZvIiTq1L_nA0PDwD6QHIYARbYWYk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.0|0.653|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|ZvN1RwpJzEujlB2UEPySbfN8UUX3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|213.0|0.69|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00447|ZvSKF3f5vXOf0GSmm-2yGKSaBGL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.9|0.57|10.36|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1038/ncomms7700|ZvhT59xTid9423Thp0342hl9ZcNb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.3|0.75|17.43|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|ZvkWdPmNczNYpTauJbMAmCqdp44h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|156.0|0.51|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|ZvxQMzjy8JxgObPkZNSmQOY0Y7c2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|130.0|0.527|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|Zw0LzGYGC3yUf4xjXGO7dGaie8BU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|198.0|0.73|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801076|Zw2z1mudzgjzJ3yAsPhrPANhLIE3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.122|222.4|0.7340000000000001|18.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|Zw30z2t9vR-ipoY9lg4qeSm0N_8C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.67|53.1|0.33|1.18|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|Zw5QMXaGP2WXtTcT1fhLJzQHgi93|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.75|212.3|0.74|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|ZwAAEYsF_Ho-RDVQHjk11reR6SpD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|205.15|0.631|12.36|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|ZwDcBcupTf0yzc_zXwH6PDyw0J5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|0.964|144.4|0.5|6.94|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|ZwGftbkoIm_9wvKNgBcMPunzeG3M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.698|175.7|0.449|5.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|ZwKZtNMf9RobEkQTLac68A6kxTDz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br52C100H517I248N183Pb100|Pb100C100N183H517I248Br52|FA0.83MA0.17PbBr0.52I2.48|1.640000174875072|1.12|182.0|0.62|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|ZwLI9MzyzsW2S4bV57-rhVb8SbsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|116.0|0.49|3.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|ZwVHnhdLiWmcYig8F8MdkBpKPoGo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.9|0.618|14.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06372|Zw_YgK0zUeQkSvoF7vGzd6GiqEEf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|230.0|0.58|12.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|ZwcLJBaFGSa5Ravy4pllVCo58VKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.3|0.74|17.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.009|ZwgmOZEAbzpNPxK2IgIb5qQ9jk1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C6H15I4NPb|PbC6NH15I4|HAPbI4|2.05000021859384|0.79|17.8|0.5|0.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acs.chemmater.6b03054|ZwmIZhJiOkBjZYnQmxJa0B_Gbt3x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is HAPbI4. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.96|204.0|0.64|12.6|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|Zwz57wxSZWcOXZRo6YVFkxGXxj05|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.01|196.0|0.695|13.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9tc01741k|Zx053QRAjv97Vwr3vtW01__vyP0C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.91|221.8|0.55|10.98|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|Zx3PvD2TAzsruLVjXbw85iu8fez5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.3|0.41|8.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'po-TPE-4DPA', 'Ag']|['po-TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|Zx5zf5V_tXK6nAB8rxxjT8e6j45Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'po-TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||0.69|120.0|0.26|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|ZxAMfuiFEgZY2xf5e14LHpjBnd1G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.7090000000000001|195.0|0.484|6.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2019.06.015|ZxAiMD8_gp9XzVfwbqg3WSMYeHhm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.71|119.3|0.69|5.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|ZxFppMGBOl7DEUuoYpLv65XGSJAG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.0|0.8079999999999999|19.5|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b02611|ZxHJmv-LqURhvn7tRTpusuwzZ9Yr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|219.9|0.565|12.62|['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|ZxJZ6EUdr_Qs_G2jSl5_Nzl4NxFY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.223|87.30000000000001|0.255|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|ZxU6UBqPdVmGCB4vEGcvvWHG97U6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.2|0.733|14.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10588b|ZxWeUM7BE4kJ5Y1ax3BHDLb3yEU9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|164.20000000000002|0.7440000000000001|12.13|['SLG', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|Zx_5iGfdxsOcBoMWfl9J3k1E_pge|a perovskite solar cell with the following device stack: ['SLG', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.1|0.6|13.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.jechem.2018.01.007|Zxa2wKg5NMDsH6g9yJKJmhYC1oVT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.105|235.0|0.768|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8EE02404A|Zxh52b6yDJaTTcP92bSQ22S03x7_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.500000159946712||||20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201801169|ZxrzP4Xy--EuViOSJpM8YZ0r_2Ae|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|147.5|0.727|11.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104241|Zxs_NCAtkBoLgs9s7NKg8RWGtIte|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.9|0.737|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|Zy7FEK_TmTyIQ-vlwrSZ1HUaAHF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.0|0.73|16.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201700169|Zy9IKSGW7t3eckj-v6ypQZmW6x_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.131|231.0|0.79|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|Zy9sCMwI6rmJwV6yR2lIzxG7MqeQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|232.0|0.77|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105403|Zy_VbuaA91md10fY0O9YpreaG4yD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|156.0|0.632|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DHPT-SC', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00032k|ZyaNMf_ES4UC0KrxJTsXg0i6-sak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DHPT-SC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|185.2|0.66|12.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|ZygDZ8DQmfKcIHY6tTe9PCwihb7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.99|204.0|0.57|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03577e|ZyoDyjKGWpKdwU2Jq_ImIr64Bcei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.88|117.0|0.74|7.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|ZyoR00v3u0hT6O3ezI8F2KYt2cju|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.92|210.2|0.78|15.04|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|ZyopyCxWBXpgZZE-EphrVkDkselb|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.6|0.75|18.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.10.036|Zz-ZqK8kx8hOwvUVXgCoX_3nTovZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C16Cs99H24I301N2Pb100|Cs99Pb100C16N2H24I301|(PEA)2Cs99Pb100I301|1.7300001844718749|1.05|159.70000000000002|0.65|10.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|ZzBURo884aiFvL5HOTpnxlKNDlBH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs99Pb100I301. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.2|0.73|17.41|['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-mp', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jssc.2019.03.028|ZzEcI92sbJt-uym-RqpN328v_ViZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.011|164.60000000000002|0.67|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|ZzMSskzsoaptqVuJEe9k1tU5Wjct|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.01|0.01|0.384|2.54|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|ZzNdOYj5qThWe-Ki-Jcyho10mWl1|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H10I4N2Pb|PbC3N2H10I4|(DAP)PbI4|1.3100001396867953|0.746|2.85|0.662|0.141|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1246/cl.170494|ZzSVA15C0VnoIekwFawoZnvdjq2l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DAP)PbI4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.99|160.0|0.57|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR122', 'Au']|['KR122']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11076|ZzTBjb4SKve8FycW0yzqt_T3X42C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR122', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|184.4|0.58|10.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|ZzX-dBPsfbfV2oWVERnXAzeYhUcT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.2|0.69|15.08|['SLG', 'ITO', 'TiO2-np', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06343|Zz_iwWqr1TACQGElV1L0itLbLNYG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.55|37.6|0.48|1.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|Zzo6ag4CCZqdZ5Q3WQMK4Fabp2ng|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|213.9|0.652|11.75|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|Zzph3EnzEepMOmFY1mNnWA0pDQ2t|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|213.6|0.76|16.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|ZzzPUQIlsi0dnJB30MITorZfwtdr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|128.0|0.64|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.05.004|_-1CVlzuCxptfAp1uXQTJ3ey9pOn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|117.0|0.66|6.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|_-546I67fNSRlBMRVGy0qqt65PVJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.61|95.5|0.61|3.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|_-8ZBDdxptxmpD4F1AlfxYgZ5W1R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|2.027000216141324|1.105|39.78|1.4340000000000002|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|_-9KC8h6HPAnGF3uSdcv7gBVXsph|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -Br3C19CsH101I57N32Pb20|CsPb20C19N32H101I57Br3|Cs0.05FA0.65MA0.3PbBr0.15I2.85|1.5500001652782691||||18.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|_-Dp-4r1g70Sop7kvAUQ5JeYggc8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.65MA0.3PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.036|198.5|0.76|16.37|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25449-x|_-T7GKFwUxF1Hz-j12VKXOGsZ8kC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.8|0.76|15.01|['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['ZnO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|_-YDuBU4j8dNgxp7DNuXuY6ObKD9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.02|4.22|0.575|4.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|_-ZRSZwUsxKAamsCVW8bByVpQHId|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.4|0.78|18.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|_-bNnevQFmO9UsgmSP_G1JckZiPF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|166.29999999999998|0.48|6.15|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|_-lXqSaNErL0i94lFBkVWTALSvP9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5500001652782691|1.12|224.2|0.76|19.08|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adma.201706023|_-su9uDbDEaqNRrwzBPkx2nWcnu_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2800002431190025|1.25|47.5|0.5920000000000001|3.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.6b00517|_0AbXdbVQ38YQtK9_AhD7fjVLxBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|165.2|0.7|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|_0EqinVxEtc2eTCGUwU8TFR_VXXK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.1|0.56|10.63|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np', 'ITIC']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|_0P_zGEXZcRfYLYQ8ep0EHY3BHE1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|220.1|0.7|17.46|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|_0mduhlfoixoWuc00heaGDG6_gOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|239.0|0.784|21.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee01500g|_0mlZdiguCObkFjo0MoSskI-CcHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.0|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|_0vp8RqYVslyvjoWWkCyUQpZsG5j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|187.0|0.636|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|_0yUfJa65QD-_fleX5Q_vv84sQrV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|173.9|0.74|12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|_0ykJSirryfC3d7McwKzWNSxNNuM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C95Cs5H491I200N174Pb100|Cs5Pb100C95N174H491I200Br100|Cs0.05FA0.79MA0.16PbBrI2|1.6100001716761378||216.0|0.738|15.96|['SLG', 'FTO', 'TiO2-c', 'CSOE', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CSOE']|bulk|https://doi.org/10.1002/smll.202001551|_1-YdtBCfRpKnUswC96fokz2UfmA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CSOE', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|146.6|0.59|7.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C70', 'BCP']|bulk|https://doi.org/10.1016/j.mssp.2019.104813|_10euhJB-PYmAv-6MblSkHRfSEDk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|191.0|0.38|5.22|['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1007/s11051-017-4081-6|_12-ioXyJ_QO6goCiZ5SYAjbuMSg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|136.2|0.4539999999999999|6.05|['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1021/acsami.8b05560|_12N2wdZJVP32yiV72656Jk7HHh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|237.0|0.805|20.51|['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBFMT']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227488|_12ir1vr5jY8rxfF5meJjqOeiL70|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|183.6|0.727|14.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|_16E6rO7dccogEY8Q2CSA-07Ydmy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|131.4|0.65|8.65|['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['Au; NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201504621|_16e5oMINnxoaLYscyjCk6QVCcIP|a perovskite solar cell with the following device stack: ['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|183.4|0.7559999999999999|12.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|_188Slb3bp5QD-3NPbQsrzqmiEwN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|231.0|0.56|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'PMMA']|['none']|['TiO2-c']|bulk|https://doi.org/10.1557/mrc.2018.142|_196Uqyq-A4trKt7zhrEIuOuq2yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'PMMA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|144.60000000000002|0.37|5.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2762585|_1BGZ_acQCvJ08asy3SXhyLL9GHn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.005|198.0|0.8|15.8|['SLG', 'ITO', 'IrTiOx-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['IrTiOx-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201800191|_1EtqNvBGYBQ-UM4xiVTytCuP2Ki|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'IrTiOx-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||0.93|211.3|0.6609999999999999|12.95|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|_1WJffgHjmZoB12O4AA_V-ICixBM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|156.8|0.72|10.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra22023a|_1awb3bQVInrJ4RLIfsCW0P-fVGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|209.8|0.67|13.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-FA', 'Au']|['OMeTPA-FA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201403807|_1hxYp6JTEg069OvDtSgzfzu_XV6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OMeTPA-FA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378||||16.38|['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']|['P3CT']|['CPTA-E']|bulk|https://doi.org/10.1039/c8tc01955j|_1jCcZ905Vp8JhTGQ-qpvtO8FYoq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.3|0.7709999999999999|16.13|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|_1rueoPXfDtRP81JSpvZ2P-_ldBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|194.0|0.5920000000000001|9.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01118|_2ESKYWOXV2A5UDieSGNL11iRJXF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I50N83Pb25Sn25|Pb25Sn25C50N83H267I50|FA0.66MA0.34Pb0.5Sn0.5I|1.230000131156304|0.77|290.0|0.72|16.0||['PEDOT:PSS', 'PDAI']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202100454|_2IrEYttPGz4x4w_icPKJ4g_sK0X|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|229.17|0.68|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|_2UHMaN42JKkN1B5taa2M5PU6COM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H543I261N157Pb100|Pb100C100N157H543I261Br39|FA0.57MA0.43PbBr0.39I2.61||1.1|224.2|0.777|17.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.035|_2crpit3OCELPn95SOXPSux9fnuC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|243.0|0.765|19.57|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/ma11050778|_2iWEVbCBk4TC59lSRiI9Yk-Krrv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|244.6|0.466|10.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16219|_2pLudyN8VLlXdybHhmz70TgCLR0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.0|0.75|14.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|_39I6AwDomnhxqOnaQGcWkfE-DM4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H85I51N34Pb20|Cs3Pb20C17N34H85I51Br9|Cs0.15FA0.85PbBr0.45I2.55||1.008|213.8|0.6890000000000001|14.9|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c9se00448c|_3JOuJxQk7nSLjBJJUCG7ymfMrBp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6300001738087604|1.11|232.0|0.79|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10049|_3OHvhDCslJn2uUGk7O-IjGBEI0H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br24C20H120I36N20Pb15Sn5|Pb15Sn5C20N20H120I36Br24|MAPb0.75Sn0.25Br1.2I1.8|1.5900001695435149|0.91|172.5|0.76|11.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|_3mPyJYy57DZMv30Qaw__MrKXgPz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.725|121.9|0.58|5.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b22285|_40jMwzobioVkdSZjPF67qT74BGq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|192.8|0.7|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201703060|_42WhOzEUq7GpJ6kfZoMPjC01Z6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|133.0|0.607|8.21|['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'PCDTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5796/electrochemistry.85.276|_44PqlMXdmihOpitRYU8iAMVnKbN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.60000000000002|0.5|9.46|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201600027|_4LAcoVc3F3bkJe_LZP2DBBwa7nX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|192.8|0.628|10.5|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|_4UPvlccRZeejF_EdTw6nxQZI71K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5500001652782691|0.957|247.9|0.752|17.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ta14207j|_4aBYcYwWvkduXXN2f9Ues_4p40v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.5|0.59|9.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07497a|_4dPPJ__LgsWr_JYSSywsePd8SWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.0|0.7|17.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5012135|_4gG7qZ1jfSFUYWEJZrYvBAdlHsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|139.4|0.544|7.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2019.08.042|_5-WhaTg4Uqw6rMNLNjc48HGwhQN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|186.7|0.72|11.33|['PET', 'IWO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5054347|_50_05w192IDpck5kWOiOYTzudtv|a perovskite solar cell with the following device stack: ['PET', 'IWO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|0.6629999999999999|13.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|_5Alf4dYOh6PjdnkGkWhWc2Z8RkK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|161.0|0.75|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|_5G-Jh73QL7ufO_JbKaJPBt9y3_0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|191.0|0.77|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|_5UeIMEKRgK5EoXELctGePRx1NRv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|188.1|0.48|7.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra09110a|_5ceFJB8lPjDLm_Nv4na3lLX5hII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|181.3|0.69|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|_5kfxrEUfZvkxSxP0B2m9wnj_XYn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|214.0|0.82|19.0|['SLG', 'ITO', 'MoO3', 'TPBi', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TPBi', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b01396|_5kwCygHOJb2lQ0uA62sDGaTgEx4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPBi', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|205.0|0.77|16.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|_5lSvB2Lrb0QxMxd-ogBCv9grT49|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.0|0.606|13.3|['SLG', 'ITO', 'PMA', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Au']|['PMA', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8dt03680b|_5oeivVuLP9jAPYQsjvsq9rz7ZWj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PMA', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.648|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|_5sCrJFderExPaMt10dTVqAof-dJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|215.4|0.802|18.61|['SLG', 'FTO', 'NiO-nanowalls', 'Diethanolamine', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-nanowalls', 'Diethanolamine']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|_66wpTegsLlvkHnwpVkT-B6TlbUH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-nanowalls', 'Diethanolamine', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|221.4|0.759|18.01|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nanobipyramide; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|_6D8HyEt3P3sFOa6jAy6sakZOOsD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.07|226.1|0.738|18.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|_6Y_hPLT92oDltomOrYVXU6xZdnt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|174.3|0.74|12.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1039/c5ta08015k|_6ZcdR1nSWG4duB3ExH6UWfP2wpD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br27C100H600I273N100Pb100|Pb100C100N100H600I273Br27|MAPbBr0.27I2.73||1.001|191.7|0.7829999999999999|15.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|_6bmCS3duTRxPMWWk1YEVGrfmYOs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbBr0.27I2.73. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|181.6|0.69|11.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|_6fO4YvObRRiEfii6-3bHtueX8Yv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|208.81|0.645|11.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|_75xcMTLt0-HY69erRFIULeZQKc1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.5|0.65|15.03|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.03.041|_76zkr-7kRz9qZ6sb9doB2r_xPUh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|49.0|0.375|1.2|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|_7BfqHFtXaZ8Mr4xeP-wpfZVrWF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|200.7|0.55|10.6|['PEN', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1021/acsaem.8b01405|_7CM3bFuwwvjHEnpn7S-XC3Y7l76|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|166.8|0.639|10.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|_7J6Ggv1nPYl8BOEWX5Muz8fjdnC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.72|17.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201910530|_7JiSRs4wrPVKVGI1jiWh3wPnP60|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.0|0.62|9.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|_7K5FE6LthIilhfuJaRa-TF3VIm4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6859999999999999|0.279999999999999|0.703|19.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|_7WIaK1UQ4PLu5kFg9Hy2uKpHmrI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|106.0|0.34|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|_7iLL-zBnEmY2xPvYY2qefrghsh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|_7lgEb-C1ENgRp72mtDRyr00Jlkm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.8|0.659|11.78|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|_7nCu0mwRyKPD6TsgJFb2FXQSfqI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.28|123.2|0.436|1.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|_7pdvzY9gVTzm4N4mfsb0V2SfPSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|236.5|0.73|18.47|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|_7wy0MmOKpww86s9taEUXOyXnL65|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|156.0|0.77|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBH', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['PCBH']|bulk|https://doi.org/10.1039/c5ta10574a|_7xv40RrbNeS0HpgiGwxk69QEWWj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|37.0|0.606|2.21|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2018.06.019|_81mXT8sEJM6ryR_uTOjYGZD3whD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.6709999999999999|111.6|0.3329999999999999|2.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|_88DtHHWLdd9qc82ClqvRcW_5qC2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.85|191.0|0.6609999999999999|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1872-8|_8GRBe5adEat5VH1bxNm-O6W91Sw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|230.5|0.73|18.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|_8H1pEsaqJf_nW0NoK0P_y_6KAG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.400000149283598|0.372|237.4|0.605|5.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|_8VJ6uiF9BcWXeXv-1aFLTJJ8Yvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.16|217.1|0.79|19.78|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|_8in8fKPadbqU86hIMZiXr7a489X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.0|0.693|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/jmr.2016.272|_8j3AKOrl3oaGYGIkX9dEP5Oo5d8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.3000001386204838|0.62|186.5|0.55|6.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|_942tM_9eMQMhLqrb7SRpqBHsGYS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.1|0.723|14.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|_95Co0H9HzxWXejrmnHQt6aOoxLh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|98.1|0.72|8.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|_9SNzg4iYLpAa9eprF0zzdFPLUo0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.075|218.8|0.769|18.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01221|_9n2oT3LDfISHGVvfs3woybMBNuF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5670000000000001|138.0|0.452|3.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021920|_9wYCfOt9pTTNNN3YT5TkMsxbhkS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.01|178.4|0.62|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|_9xrs0zRp0MYzveDwcIE7jXTMOjd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.01|205.3|0.58|12.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Zn(acac)2', 'Ag']|['PTAA']|['PCBM-60', 'Zn(acac)']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|_A-AfcMeHMndoEFxLPLnQDAtUer7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|178.5|0.765|9.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|_A7REyOv9rJ4q6HuvRAtlguf6kj-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|176.29999999999998|0.5|7.37|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|_A8KP9I-3diWz83dRhKNDadHcneq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.003|188.5|0.585|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b06633|_AGsLOQskSdqY8afr-u85hBaW-yl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.3|0.7829999999999999|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta08081c|_AIue6juHc6ESqtpUNn-b1ZQBBV3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.0|0.7390000000000001|17.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']|['PTAA']|['C60-SAM', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms12806|_ARhXWBT2oQJoTtQNvS2FEtgYLbo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60-SAM', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.3|0.703|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.039|_ARq6af0uoiN9WS50c46jBWtg1cm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.12|226.4|0.75|19.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py', 'Spiro-MeOTAD', 'Au']|['Py', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803573|_ASx4CmltOXiOyPd4LZVv_An2BZw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|1.7199999999999998|0.754|0.11|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PTPD', 'PFN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|_AWp1nQNLXXknewvtMLIaxlQ0whX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8490000000000001|149.1|0.68|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta01715k|_AZODfDWxdaryEBcy8uaj8UHnKt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|96.9|0.34|3.38|['SLG', 'rGO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.05.005|_AkdO49SF4QId6HyN_NB8S3szKr1|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|71.3|0.49|3.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.171|_AlVrTIizStiF_S1fXGA5NyIRuZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.097|226.6|0.706|17.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|_Ams_H5IDXNG1DR25VXSgvHwRVfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.07|217.5|0.77|18.52|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiCo2O4']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201702722|_AncXsGl2tk5BjaKTfOCFV29ycCE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|206.3|0.98|15.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|_AnmU6K8yMTbqSXOevaXlN5wVIPY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|199.5|0.72|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|_AutB3PR0p-llKAzYAkIwfKb6Znb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.344|246.3|0.43|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02711f|_Ay4J0jcXbdRirjgiShtsVMvFExw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|228.0|0.66|14.97|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|_B07eK58_ybAlmxppF7CMn29sqRn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.01|203.4|0.62|12.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|_B3GCf6c91GTBFS0ftK0VnPtu386|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|192.0|0.62|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|_B40ZterkY9aoUx4TNNaNy75O9m2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.79|44.900000000000006|0.56|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc07298a|_B7cEjzFiDQjmHkCGxzMpi2eJ4UB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|210.0|0.73|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|_BIcdPtTe6PU6R1kpDjG9dEoe0NK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|224.0|0.6940000000000001|13.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|_BPbs0oKCGr1LdwFxQ0j3pgdm4wl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.7|0.68|13.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA01824B|_BQMy3BSS22Surja68n3BIFdfJc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.02|117.1|0.705|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|_BfS65li1JENggR7qWWhXtLOR_-t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|201.7|0.62|13.09|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'Zn(acac)2', 'Ag']|['PTAA']|['ITIC-Th', 'Zn(acac)2']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|_BopFEZFPnYOB44Qx7vqa6QmmtPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.23|95.0|0.62|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|_BsUXaHen1LEvU4U0bUBor1yE0p_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.13|235.6|0.778|20.09|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.084|_Bv6YU02WQR6wvWeoVmSKNON29QL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I300NPb99|Pb99CNH6I300|MA0.01Pb0.99I3||1.09|227.5|0.77|19.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|_BxN_-zXjVkdlyVtNfk8pz14oPsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA0.01Pb0.99I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.37|23.0|0.45|0.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-07655-3|_Bzsd7_CeGN3yQdzorp8SLJBcbmv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.5|0.69|14.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9sc04900b|_C8qvTJU83g_ZkqlAXXqs5TMv3GI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.009|217.2|0.69|15.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|_CHDmJHl-yq3u8PkM9-spjZHK5ey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|198.0|0.4|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|_COJKwPnI9BG3O_lN3b-48gUw23h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.5|0.7070000000000001|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|_CSCP1lUuUlgbkvJtSti5_nNRM1_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|154.0|0.412|4.25|['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5ta01532d|_CSHlImSXmeTvDCpJlFb-4gGv47Y|a perovskite solar cell with the following device stack: ['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|169.0|0.48|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|_CYNPTD073WP9RfE6obPQdivkel1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|226.2|0.723|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700377|_ChkTPGxnBshGxBfUEsHfblv1-jt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|152.0|0.75|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01050k|_CuFGTQIdC_sQkyfOy5UMImo5008|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|204.2|0.65|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|_CvwijKZv2L-DHB0qly-dEg3OiPT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.072|222.2|0.7190000000000001|17.1|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|_D18YsJ57d_gJMlp46cmE2Zsmz3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.87|6.7|0.53|0.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|_D2nT-rcjPJJDsegSC6mz9r0qI8s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7859999999999999|142.0|0.65|7.26|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/jz500645n|_D4Vh_KN5xNZyNo4TSAzbPTnbkG4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.0|0.63|12.7|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|_D6Xmw4YRDgl9f8_33NIGLmAtl9y|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|163.0|0.72|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1186/s11671-017-2401-5|_DBnwBaM_qkbpUKlb1ie9HIZmKH6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs|CsAgBiBr6|CsAgBiBr6|2.3900002548484283|1.07|25.8|0.69|1.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.202002342|_DERTPxZrd8VFNn6styS2kLaJ85q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is CsAgBiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.108|224.18000000000004|0.7490000000000001|18.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01904|_DP16oqwnvqk7842n28387hmFglG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.79|17.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.12.012|_DPyjuKLcyeKqwA9Wk68FKOFBJRV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7709999999999999|142.0|0.6|6.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|_DTvFRYqv1y1rKY-ayYCGaHesjvu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.9|0.774|18.25|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']|['P3CT-Na']|['ITCP-M', 'BCP']|bulk|https://doi.org/10.1002/solr.201900565|_Dn_QQfYYqd6mk1hI6hcK9pJp7uM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C55H307I38N78Pb50|Pb50C55N78H307I38Br12|FA0.46MA0.64PbBr0.24I0.76||1.12|224.5|0.74|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C9RA01625B|_Dnr9dontpGHRxW-_tXlGA3fxlwr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.46MA0.64PbBr0.24I0.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|172.0|0.65|11.3|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500312|_DoE_KFUpfUsMqlOoaWF3hc0XtRU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|161.4|0.4|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|_DoWp10MM47itLMfkcPs1kA6-h5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|239.7|0.49|11.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/479/1/012046|_DtOp4XRy_O9eESpXCBXzJ0S22pl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C6Cl2CuH6IN|CuC6NH6ICl2|(C6H4NH2)CuCl2I|2.010000214328594|0.21|33.1|0.38|0.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201901185|_DtYNKXUBoNs5hZBINhb7EhAbe8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (C6H4NH2)CuCl2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|149.70000000000002|0.637|8.51|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s10854-019-02199-8|_E2bkJV7r9Jv8ReFKnfdbZm8uP5N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|178.29999999999998|0.67|11.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|_E30bOfW1TrSSXNevwodrfvLDwQa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07625|_E7SFm0pEzEWqRp1yUW0y1mi-N0O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|195.0|0.675|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|_EF9l5rW6FIR2FetVSHsinONj7dI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|228.7|0.63|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|_EMU5zvVCvlqxFMW58Rp7mITQQYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|173.29999999999998|0.6|10.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|_EROkvktLM4asrW7o01rugL1jWFx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C890Cs5H2265I249N215Pb100|Cs5Pb100C890N215H2265I249Br51|(TBA)0.5Cs0.05FA0.75MA0.15PbBr0.51I2.49||1.16|228.0|0.6940000000000001|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|_EahiXOFrKLsB22F4PovYHKwKi-w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.5Cs0.05FA0.75MA0.15PbBr0.51I2.49. -Br475C4666Cs332H23662I4525N9000Pb5000|Cs332Pb5000C4666N9000H23662I4525Br475|Cs0.0664FA0.8668MA0.0664PbBr0.095I0.905|1.6300001738087604|1.05|220.9|0.767|17.78|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|_ElEACHpF_jiVrXJKS5bNviQGaMA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.8668MA0.0664PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.08|224.6|0.775|18.81|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|_EqXjUUyzwVbB3UPe5BoYmzRLiy6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|92.9|0.2319999999999999|1.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2014.07.039|_Eugvq2UVh7nsdUv7d7MSrGw9yXR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|215.0|0.64|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.7b18643|_FBzNVFqPyrxsyPvnQKb2nJ3_ei0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|222.8|0.71|17.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700597|_FIP5rWUf8s0veDZk2HoQy0eiJsB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.9|0.79|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta06718c|_FXgHIWbJM3CJ0ArpPI66Y4HA_dI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|200.6|0.79|15.92|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03984k|_Fd-KMw0VbwxfprA2E8B1WrvF5Q0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.0|0.74|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta03710d|_FjHqKKUQqhbBetGDImJR9Nzikrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|196.3|0.5|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|_FjVfNb_ZOYdAnToX5XUT-SJ-hSf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|127.5|0.685|6.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|_Fn6ouW-Uo3sqnVvs_B5cVVlXAxb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.45|137.7|0.596|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|_FxwZwkgjCsfr6FNqo1ipwd5EETX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.0|0.81|14.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra02556h|_G1Rlimgb4mItJaZhJGFcGBCU0Ib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H25I15N10Pb3Sn2|Pb3Sn2C5N10H25I15|FAPb0.6Sn0.4I3||0.79|190.0|0.695|9.11|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903347|_G20Qoa23pAGJ7NlnJbnxRB1-Sih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.10000000000002|0.49|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|_GBLwoutIjDJ432P6vXdVAcs_yIm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|220.3|0.7|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|_GHq7fLauMG3xO4aZY6IJghya6fC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4|||||11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|_GQZyDy6iKCrrqJred2fOfPObhgb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.0|0.78|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.150|_GU8ms2naRcl-4AEb4PSDx1Hk0SU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.6|0.7090000000000001|14.3|['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|_GVwIAH9A4LhEYUdId5S4VppYaNt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|185.0|0.73|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|_Ga5kiKkgqgtd6jkerAgy0_735Yg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.779|114.0|0.5660000000000001|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|_Gri4C10RldXYLBA6ScSno6cvKwT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|157.20000000000002|0.7190000000000001|10.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr06033d|_H5iqguL2n9dwfeNEoKHWjJt4VxX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br113C500H3000I1387N500Pb500|Pb500C500N500H3000I1387Br113|MAPbBr0.226I2.774||1.0|178.4|0.7|12.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.20964/2017.12.71|_H9qJUYdfuNIdGyzV_-2LdRlllGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.226I2.774. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|159.0|0.69|10.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|_HDZ0J8BmvnYt8YWC5SHWNPbeKlh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.0|0.45|8.5|['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np; TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01331|_HF6rxNyERisYm5X0VJIXYXror7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.7|0.662|13.63|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|_HW3ujGUZHO-j862lB7MBSl1eH8N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.0|0.7709999999999999|18.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-np', 'Ag']|['NiO-c']|['C60', 'SnO2-np']|bulk|https://doi.org/10.1002/adma.201600619|_HaTF3L1YX4TQltcDrMv1hYR1c1d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|||||3.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08347a|_HgJ1XrLYDk1_YhSQuhXoK96yJPB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4||0.88|134.0|0.28|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|_Hj1j5F--Okq_GQPpcQarR6AMynR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|218.6|0.7020000000000001|15.79|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201805810|_ICeA5rv4otySOzP3IAPZ0V9n5fH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.5530000000000002|74.1|0.828|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Graphene oxide', 'Carbon']|['PVAc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.9b05631|_IGNZsYopDwgJcWahKUmroXtoP8-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Graphene oxide', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|222.5|0.773|18.63|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|_II4j4M2cSVC25O8hpybv0euqnV9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|212.7|0.75|16.35|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b04060|_IM0O6aLkq4oklMpvuYErV4Ix5Bz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.2|0.7290000000000001|17.16|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Cu']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.synthmet.2018.10.004|_INDX7ALXnCKGKG8AwhKOiJt4-Mg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.093|223.8|0.7190000000000001|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700576|_IYrmjX-UhmPxuOd6WLUO1n_PO_X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|222.0|0.72|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.09.024|_IkKb5VXx0FWDHzzV-XfYO8aoqZs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|229.5|0.62|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']|['S5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|_IlIk032bwDkEyjYwJKNK51q1y-3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.84|113.2|0.534|5.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|_IlRpqsdmgUhrBJWDsi-0b-b8n_H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.22|17.1|0.27|0.08|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Carbon', 'PEDOT:PSS', 'FTO', 'SLG']|['none']|['TiO2-mp']|bulk|https://doi.org/10.1051/e3sconf/20186701021|_J1dBT5A758BAVlh72IXIFSOSb6q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Carbon', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.7|0.665|12.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.06.112|_J8JJpv94iMH4rl1NaZnMaV6Ekzm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.17|139.0|0.66|10.73|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|_JHMmAEK1iGU6hSMVCrRfr8zIE28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|248.7|0.48|10.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|_JIdKUNvD9_oYka_k-eYxLjknvu1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.954|230.3|0.6629999999999999|14.58|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|_JKC0d99hXrmxD71dPVeBRnra_Dy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.1|224.0|0.78|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800192|_JTubHAfC4JmHigY_pRSwVuK6Fu7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|192.6|0.64|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|_JV_WFqTdihNtKprtWS2OGTw0Dd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NSn|SnCNH6Br3|MASnBr3||0.5|5.699999999999999|0.49|0.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21291j|_JXU5CYw4eRzVx-Hnt1SRisvl5hU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MASnBr3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|226.0|0.794|21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201900243|_JYkSRKDDZISloVuTp3ZgcdDyIku|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|224.8|0.71|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00280k|_JaP99tcvK68A3HT3EBfYTeel14E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.955|227.4|0.78|16.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-1', 'Au']|['dly-1']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc08985f|_JbirmYfG6O-6njaHLlEEz0cVSZC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'dly-1', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.08|249.2|0.76|20.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.056|_JtpZoS9Imx8Ce-INrwfhf1RT9Zh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br510C900Cs100H4653I2490N1647Pb1000|Cs100Pb1000C900N1647H4653I2490Br510|Cs0.1FA0.747MA0.153PbBr0.51I2.49|1.7300001844718749|1.14|223.0|0.77|19.6|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c9ta09584e|_K6nWdaS5ntzoCgpe5bspRi6uebU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.747MA0.153PbBr0.51I2.49. -Br7C20H100I53N40Pb20|Pb20C20N40H100I53Br7|FAPbBr0.35I2.65||1.02|158.0|0.627|11.5|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|_KGccy1PugT76DxUAIRl3BFePG34|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.35I2.65. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|201.6|0.41|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4MeOTPA', 'Au']|['BDT-4MeOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|_KGoOx-1tWCp3yUtNRfa6VCTwB2s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4MeOTPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br41C94Cs6H480I259N178Pb100|Cs6Pb100C94N178H480I259Br41|Cs0.06FA0.84MA0.10PbBr0.41I2.59||1.14|220.0|0.73|18.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|_KILHWLBOaeq1VCYgRyvp7xQbFIm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.84MA0.10PbBr0.41I2.59. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.109|225.7|0.752|18.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|_KPcJMoZfYudVYEasEevkdoSWqgE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.09|69.6|0.462|3.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|_KQ-0PD8AHIfmOMXDx2AfidrKiuo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.0|0.722|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|_KWBpYMN7M3mrXnEHUVqSL2udNPf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.7|0.787|17.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-2', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP; TZ-2']|bulk|https://doi.org/10.1021/acsami.9b18757|_KaYnq7ytnqVxcbY0GtTA1tY_CXp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -C36F4H68I13N8Pb4|Pb4C36N8H68I13F4|(pF1PEA)2MA4Pb4I13|1.6000001706098266|0.359|107.7|0.445|1.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|_KfTqIFPEYMJIidLeW6aEYe1P5UO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (pF1PEA)2MA4Pb4I13. -Br3C4CaH24I12N4Pb5|CaPb5C4N4H24I12Br3|Ca0.2MA0.8PbBr0.6I2.4||1.06|172.0|0.7|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.053|_KgPvXPnL-By_UQV-el_LApye_VP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.643|193.28|0.63|7.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||_Kiu_2NDv57h6XXZSsDdQfXaGQPo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8||1.23|124.0|0.66|9.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']|['NiO-c']|['bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.8b01480|_Kk7qFXgXJueEWK7Yua75bOqtfF9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|217.7|0.78|21.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.019|_KvWnb9KxRx-fQ_Bmeg1yRwvC1do|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.106|197.2|0.679|14.81|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee00462h|_KxBrABiuKFz4MvW7NKRbu66-3kr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.84|208.1|0.547|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06673|_KxXyql14DN1BrpRVCasKGM1Pi6_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|177.5|0.7509999999999999|12.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|_KzdI4Nd1ULEvhFy9s0yGp90oxjh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.65|208.9|0.64|8.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|_KztcSMlqP7gPC_f8A-XBwy2hGzg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|227.2|0.7509999999999999|18.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|_L5d2FmGFHZxCUwMi9rIPWbXhFM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|206.3|0.736|16.56|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|_L9buzYsgBJWTOCRW1IVkJLnAK2W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br37C100H517I263N183Pb100|Pb100C100N183H517I263Br37|FA0.83MA0.17PbBr0.37I2.63||1.103|219.6|0.627|15.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|_LB9cxL7OnczOn0G9ZJDMO9rN7Y3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.37I2.63. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.8|0.6859999999999999|14.95|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|_LBC0VgLy7ocaE8iZYNMJwTUUiRF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|142.10000000000002|0.44|3.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|_LHX52Pncd3xg_FtOeFu21az3qEJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|178.4|0.581|8.88|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|_LJmVl6LvjdhsFY5yQFbf2baLfRl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|200.9|0.6|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA02306H|_LTVL76Oc_fXsYo1OZc9_UEQiv7R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.2|0.799|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|_Lag4IaE3ujNa3WbKCt1Z7U3Ys80|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.2|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|_Le7Hc4jbeCge1egkl8M3ybUWJa4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|211.5|0.57|12.18|['PEN', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1021/acsaem.8b01405|_LpJ_oyNiFdHR6UsYpF7kcPf24e6|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|196.6|0.716|14.08|['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1‐benzyl‐3‐methylimidazolium chloride']|bulk|https://doi.org/10.1002/adma.201600446|_Lr__ZU3nMLiHXvq8PloA1ZlM6_g|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.84|212.8|0.63|11.17|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201804067|_LrqTnbU73NBw3VNpapZYAxbsJnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.0|0.57|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|_LtK2hvrgZ3bZJo3LoTKsG0Ekbnj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H487I250N178Pb100|Cs5Pb100C95N178H487I250Br50|Cs0.05FA0.83MA0.12PbBr0.5I2.5|||||20.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.05.016|_LtXi9vsAOXcxl5TqulQwv94iIZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|215.7|0.5820000000000001|9.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|_M-V4-zI-j8iVNqbD2L1pHor4cvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|170.0|0.61|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|_M6Lw11hbzf9qThZvtFJEnOEqeHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|191.7|0.7040000000000001|13.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.04.153|_MMNaI8-jL_9YhCJBhORjKWg610S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|196.0|0.4029999999999999|5.8|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|_MPKy8Z5EmXSqasy0WhxdLrPo3xd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Cs2I6Sn|Cs2SnI6|Cs2SnI6|1.4800001578140891|0.42|30.8|0.431|0.56|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600166|_MQVVCKO2CgRyEqQg2kYk0_WDa_U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is Cs2SnI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|156.8|0.667|10.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|_MfZYJZJz11Fm8xIXKa_Bxojr2ZH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.105|218.9|0.7659999999999999|18.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']|['NiO-c']|['PS', 'PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|_Mh90R0CxAAyUmcuaLLGuEjSA0aY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.5|0.677|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7TA09721B|_Mxc52kSpzTEtARuB3jYTzIPTgoq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|221.0|0.68|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1002/adma.201405946|_NE47mtqpo0j160FKfIps0Gw0cIC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.066|182.04|0.779|15.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||_NNmlJY1wssa_roTmSacK2EZ9w_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|156.3|0.755|15.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-020-18015-5|_NOz3OXnWZ9ClteLSvxauFO74o6v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|214.0|0.75|16.8|['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'WOx', 'Au']|['PDCBT', 'WOx']|['C60-SAM']|bulk|https://doi.org/10.1126/science.aao5561|_NPvEoVnrjDx2nOcnSpxecLhIUoC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'WOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.0|0.65|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|_NSsoF2nmcgSHrXJtcXXdhd-mi9E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|0.98|118.9|0.59|6.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|_NavpzdBcNqX1OWO-dKQAYZPLw4P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|229.0|0.68|15.2|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'PTAA']|['SWCNTs', 'PTAA']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|_Nf_BFisNqrHvgtaXm-zXDYNr5T6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'PTAA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|240.0||16.56|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s00339-019-2383-5|_NhGyKgON5pmhzfQ1svNrWb8PhWF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|216.0|0.72|11.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA00739B|_Ni32rnDBtzFHu_H8kzerPzh78nx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.6|0.7340000000000001|18.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201805810|_NlFxwdg7yQUW8IGLKXyA3NyPvhL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.7|128.9|0.53|4.79|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1007/s11082-018-1652-4|_NoJ49kGwbDCbuShC3RdIT6K1MJK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|16.4|0.15|0.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|_NtOuHWyEOAOsLJcDNPTWIvidSdA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.06|185.0|0.688|13.5|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|_NyRMCbgHvecqK0GPZf1s9Jreksj|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|193.6|0.6459999999999999|12.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10040b|_NzyL5Ce04rkt2DLs1vvo7xBVken|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.31|34.0|0.38|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01452|_O5CoqE9ANKZaaZogb-YPLdKVw-T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsBi3I10. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.38|19.0|0.4|1.05|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz402706q|_OF_xBpIxICNd9-eGghWmvlVq2xI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|187.0|0.518|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03443d|_OQBBC2x9QYgn0j2Jp3_bVH9xMvS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5800001684772036|0.96|207.4|0.726|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']|['SM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900011|_OQoZqFhbxHFLSai6siaEwkPcLrr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|126.15|0.57|7.27|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|_Oe7WRwm59D46okPV3meWbRownwW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs2H517I249N183Pb100|Cs2Pb100C100N183H517I249Br51|Cs0.02FA0.83MA0.17PbBr0.51I2.49||1.06|195.0|0.62|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-00691-9|_OjlQrMjrWIqJKDo5-tRh8V1To3M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.83MA0.17PbBr0.51I2.49. -C61H256I121N41Pb40|Pb40C61N41H256I121|(NMA)2MA39Pb40I121|1.6100001716761378|1.04|195.0|0.7|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/s41598-019-57015-4|_OvdyLUH-kI9iaydrWcPtJg-qLFr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NMA)2MA39Pb40I121. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|1.627000173488867|1.0|150.0|0.75|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|_PCd9gP2vSa11ylcMYlRwJb5mby2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -Br300C100H583N117Pb100|Pb100C100N117H583Br300|FA0.17MA0.83PbBr3|2.2960002448251005|1.372|62.61|0.815|7.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|_PEhqrDrow7OwQ4RL5vLvAhRUF5u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.88|119.0|0.45|5.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/ph5000067|_PHo-qk1QituOan9nPnBVULnrA4C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.16|235.5|0.752|20.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201902472|_PLNaSHaXkYVRITXATaG0hzxQ4Mi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|227.0|0.677|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'V2O5', 'Au']|['NiPc', 'V2O5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|_PNwV53GhqqBiBFNpe7LspbusFsq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc', 'V2O5', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|12.0|0.67|0.7|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201401808|_PPZzrhBsqTEcUL1rKzWvGX-pnZC|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.868|182.1|0.5760000000000001|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/6/068803|_P_23HBC4sf9ppvhxYK9wydK2wEr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|166.70000000000002|0.579|8.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|_P_jcz97ShVz2m6HbuLki9HumUfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|183.0|0.629|11.89|['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'Au@poly(4-styrenesulfonate)']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800061|_PbQ2Il7U0jXl54_sj0gDddZkcSW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@poly(4-styrenesulfonate)', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.69|76.0|0.57|3.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|_Pcp29GqDIWPnCNjcb9UFhUuZuAq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|132.0|0.4|4.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.055|_Pe9pKkKivjHjoNu5Y0eQOv4j2aA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C7915Cs6H39590I255N15815Pb100|Cs6Pb100C7915N15815H39590I255Br45|Cs0.06FA79MA0.15PbBr0.45I2.55|1.640000174875072|1.091|217.0|0.7|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00127h|_PrT7MBw50XN8xRHCEm5yzU1QAhk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.06FA79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.6|0.604|10.25|['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-MeOTAD)', 'Au']|['TPB(2-MeOTAD)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|_QHa3ffJrK_0mKGjWuTWUuFomv2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-MeOTAD)', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.1|221.5|0.74|18.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|_QNnx1MQPKjup9Yd8ixi5cqoi64G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19Cs6H95I75N38Pb25|Cs6Pb25C19N38H95I75|Cs0.24FA0.76PbI3||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|_QQcoCKdoigkL-pPDTG3TLNooreQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|225.7|0.763|18.09|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|_QUtFZMVTy7D2xIdRdF2FEExVaFV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.16|238.0|0.74|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@SiO2-np']|bulk|https://doi.org/10.1002/adfm.201606545|_Qa6N-dcvz9isli7l9mGMjnOTlmk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.9|0.77|17.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|_QhX-ioyQy5XS_r4nYAu5eODDF1O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.079|152.4|0.721|11.42|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|_QoDCkiBSSKTIAabDHK1RZL4Io0A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|186.0|0.7|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03773a|_R5yP4DxF4-5gh_LnHPNTW5JMZw2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.46|8.4|0.5|0.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|_R7NtzjcVfCelxGyqhWjVnNWAxY6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br3C100Cu3H600I297N100Pb97|Cu3Pb97C100N100H600I297Br3|MACu0.03Pb0.97Br0.03I2.97||0.805|163.0|0.636|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021923|_RAH4XPFvsVKpy8vOpfc0xxARGFL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACu0.03Pb0.97Br0.03I2.97. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3|1.2700001354215498|0.76|276.0|0.74|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8SE00314A|_RLjqKJyLoNCfTsl1haTRPdnA-og|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.3|0.57|11.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']|['S5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|_RMoR6ul2qn-C0Ar7A_OsYIqM6lc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.109|202.0|0.67|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|_RT2i_JiJl6JV7bW4_L6eb3Jd-D2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|197.1|0.69|14.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep38150|_ReFZweAzvmAYRhc2GeH8M3Dm-QV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.6|0.72|17.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b06933|_Rl6WeAVX_smS-ykDWt2HHqYvUaF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.740000185538186|0.92|105.0|0.38|3.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201400960|_Ru5SOF8JmgaplUHaIhIDxyW2t-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|84.5|0.44|2.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.5.057410|_RyjsjVBAmZZfhfvAh6joeKrPJFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|53.9|0.3329999999999999|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|_S6_IZI4ixLilc1o86bcb2dkkxH-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.96|86.5|0.5|4.16|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c8nj02238k|_S9tJh28I9D0Mv6njnee0oyBwzY8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.14|152.0|0.77|13.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO', 'C60', 'Au']|['NiO-c']|['ZnO', 'C60']|bulk|https://doi.org/10.1021/jacs.7b13229|_SHmJfRbl5UcJf3ej_fnkA_LgobJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO', 'C60', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|108.5|0.61|5.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.09.018|_SWFz8k8eUWbaGcb83e18VLDPl0_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|220.9|0.67|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|_SYMmUS6M-XCNVJYIiuhf4nPmYgH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|227.0|0.63|15.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09687e|_SZGTMzqp_R8s8rOvYFLvifUtRm-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.217|152.6|0.742|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02277|_SgcebRIBdnOdafxrrqT4VCEkm_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.0|0.667|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|_SjrqeuDHb2rsgdIeQMYtQvQ-FJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.2|0.71|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Me', 'Au']|['Azu-Me']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|_Sn0RtldYaPBinJQbgD8ypi9vDKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Me', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|212.0|0.7490000000000001|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.003|_SpONvGaSgBvxLNy8XOU8Bd-DBJq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|185.0|0.674|13.93|['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|_Srj27EPFkbB1VCXBoHC1AUIBkDU|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|118.0|0.54|6.2|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|_SsWMBwGfcv6gXkkEB_xk6bgoOju|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|219.1|0.7559999999999999|15.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|_SswnDOv0FaoOAkQRkUwRX_etE3I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.88|216.2|0.594|11.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|_T3ZBx-wgkNGslsE26hKTpiOFa0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.023|11.13|0.764|19.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806015|_T5e3jA_iifT8uhUBdoPn9hgFGPl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|_T5ee9O8-8LQFJYeXfxzHgOi6x6a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|154.0|0.6859999999999999|10.9|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b11141|_TAtFimIZGzKo9wLYFKFWHyVxie8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br99C95Cs5H491I201N174Pb100|Cs5Pb100C95N174H491I201Br99|Cs0.05FA0.79MA0.16PbBr0.99I2.01|1.7200001834055632|1.23|195.5|0.76|18.1||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2021.106537|_TB_5xoP6y4O0J9zrZWdHaTH2ahr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.99I2.01. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|182.9|0.613|10.76|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|_TH3jGW85Xp2rMdak1evt64NMiKk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|225.7|0.72|17.17|['SLG', 'ITO', 'Z7@MWCNTs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Z7@MWCNTs']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc05410c|_TMDjIwQ7Cf7xKPVpymfEh8OGECM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Z7@MWCNTs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.46|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|_TNHAj2L3v7WBhLOXYzaMmYapC6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|161.20000000000002|0.62|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|_TQ_U84Lg7izB2mkadPQOPP1MZgT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|194.6|0.687|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|_TYtISFDZX_dlbUdU85JF1P_fs2g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||0.991|96.0|0.55|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02613|_TchFW8mxx7gqAwHGYvbyqtyfJp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.0|0.7390000000000001|15.57|['Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903108|_ThWm1YZia0_eU3Zif09rV466o9o|a perovskite solar cell with the following device stack: ['Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|144.3|0.69|9.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|_Tk7lCFuLEQt7JV6Zlih2OI7DXgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|0.15|0.6829999999999999|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|_TlHYuHtgk3e5wpuHixnUANxkicX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|9.0|0.32|0.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|_TlkWkWQjaWgdiEUKrY_S2GS7wSF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|_Tn7kunzgUq9ccHoCP8uMjxSaHxz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|235.5|0.728|18.75|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|_TxBvvk_HtbeN5ccFh1lA-gvJZ_v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.095|228.4|0.706|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M7-TFSI', 'Au']|['M7-TFSI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.041|_U-DeIIwltjq8gn0g75AOzSwID_8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M7-TFSI', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|_U8l1XMf3LYesXLu-WxKrVEXtXuM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br640C2333Cs166H11831I1860N4500Pb2500|Cs166Pb2500C2333N4500H11831I1860Br640|Cs0.0664FA0.8668MA0.0664PbBr0.256I0.744|1.7000001812729404|1.113|155.2|0.5720000000000001|9.88|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|_UAW9gacoMkmtExgUxVeMjTRO40P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.8668MA0.0664PbBr0.256I0.744. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|183.6|0.518|9.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|_UEGI7oeHQzxIbRq1eeqmn6tOZsl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.85|31.1|0.489|1.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|_UMwvawaBHaezReWm6WgHEWlxB8a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -C36H101I52N23Pb16|Pb16C36N23H101I52|(3AMP)FA0.75MA2.25Pb4I13||0.98|65.6|0.6509999999999999|11.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|_UhZt2J3w-Yal7hG_LF52ulpP5L9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.75MA2.25Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|156.0|0.58|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Au']|['SWCNTs', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|_UlCho4pXrWzVjR62qNQg-Uhvc-D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|220.0|0.76|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.202000197|_UnXKWJXwhQZCqh16rIFZotEAsgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|178.0|0.68|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.012|_Uqybhs6iVvvtaHxbvl6gBT4X85P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.3|0.7|12.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|_UtSOf9zbCJgq40255UO66YawB-T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.122|223.4|0.764|19.15|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|_V6zyZxOD_N5EuVQiMiFsROSU3kA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.989|156.3|0.68|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|_VBbb_rKfGrLHYcCEwVKs6ecjXnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.1|0.701|13.25|['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|_VCu0Zgakdq0GlrXn8aXO1oAaCGp|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|226.2|0.7|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|_ViWgXF5_5fk-krfZXXqN9K5o2K1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|171.0|0.64|10.6|['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['rGO', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.10.013|_Vi_eyv_T0GF5A1YLX2rqsy1gnoM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49|1.6300001738087604|1.12|219.0|0.76|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|_Vq1H3uihEHXuSrqXN4NjltB8OCY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.1|0.6809999999999999|13.38|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|_W1T-eRN4mkuDe48Wk2JVpHKOzZo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6890000000000001|29.4|0.38|0.79|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|_W48UxMZyjodUB0faaKAl6qZCHty|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|193.7|0.71|12.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-016-1467-9|_W6wxj_uq_IkDLpxsLaJJz5sSs7F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|182.0|0.7140000000000001|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|_WKuOfLlZBZvlsN05Syft_tPWuY1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|168.0|0.55|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|_WKwxO3uxgvlMEN3MuFHlddgZBGQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.13|197.0|0.7959999999999999|17.7|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.8b02408|_WLJkl9AcoyEHTriB9A8eCeBZOU5|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|217.6|0.69|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700365|_WWsqs2xXxJbgLQ4ff9euS8MB6hh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|211.3|0.542|11.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|_W_IAcMrh17OUJxgBIDYIUi1XTTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|198.7|0.75|15.9|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|_WcY9o6922VlJsvgXj9xmwyABnTu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|_Wcpo5VKZZFJiQhx1vvgztHQycbx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.0|0.748|19.27|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|_WeFDONwxDa_8-uxOkU3aTLAoorO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.536|171.28|0.477|4.38|['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.orgel.2017.07.047|_WfJFiTD4q92lc25LKriQkBTSjjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.07|196.0|0.69|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']|['X25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|_WnsZA89J3i5X3o7_tCBJwMHT2nS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X25', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|82.30000000000001|0.561|3.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|_Wy0j9N636UmgIaEpECmrUGE8osJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|224.0|0.63|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|_Wym-bhEa5dtWHQ6TjXtubqithkS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.4|0.58|12.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Spiro-MeOTAD', 'Ag']|['Al2O3-mp', 'Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cp04685d|_X-EvhvxXvSiiwT1LcVTM_aCJ1SE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2ClCsH11IN3Pb|CsPbC2N3H11IBrCl|CsFAMAPbBrClI|1.7700001887371206|1.18|200.2|0.789|18.63||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/smll.202203319|_XG3j3max8bhE2e-XetdnhW1znhJ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAMAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|235.8|0.728|18.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|_XGwvFpC4oe2Lm_M2_HHR_FzVZp2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.16|246.0|0.73|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|_XI14XsVw9K02iQ8xWYLxT6lO5lW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|183.4|0.6759999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-OMeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/ab1e2b|_XKM5pG03iELzuN7ZyyIEk-4f_4x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-OMeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|208.0|0.75|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|_XO4vQmY9Ley3sDXs59GQO3STs7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.23|71.3|0.68|5.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2018.05.004|_XVWfgLmrp3Uk6CP_Zd_x26UBg8L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -C2H12I4N6Pb|PbC2N6H12I4|GU2PbI4||0.64|12.2|0.4539999999999999|0.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.7567/JJAP.56.08MC05|_XkJ0hha7aCKcge_Zpt4dLMA2OjO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU2PbI4. -Br16C95Cs5H490I84N175Pb100|Cs5Pb100C95N175H490I84Br16|Cs0.05FA0.8MA0.15PbBr0.16I0.84||1.16|228.5|0.797|21.13||['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.3390/ma15093185|_XnuMccm8SBzOHeZiTDbgt98wKIR|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.16I0.84. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.0|0.74|16.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|_Xqbk3SfNt8k4r-h0mcof9v70au_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.67|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/nature12509|_Xsm9SIeZE85Ca7EYmXUsJcoq3sa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.08|210.0|0.63|14.4|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|_XtwQMaeeBpJUcnMcZzxbERFxtNS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|196.0|0.57|10.5|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1002/er.3485|_XvUVfwhtYPFC_0shAlMKmaJg1xM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|194.5|0.75|14.93|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|_Y4oOM0_oASyX9Mz8JN1A88A2BaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|_YKj8Vr6r7c5BNK4Ko1y-I2DWE3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|218.1|0.71|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|_YQZmRjhVmuaCWAEQm4hUJxKxhRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH97I50N36Pb20|CsPb20C19N36H97I50Br10|Cs0.05FA0.85MA0.1PbBr0.5I2.5||1.09|204.0|0.752|16.7|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'BCP', 'Cu']|['NiO-c', 'PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00135|_YUiVkLvUEU4A0ROz9P3ufSOWfhf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|135.0|0.45|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|_YmwFMX1bfIfRHl2ggTEISziw6AA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.061|205.1|0.711|15.46|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|_YuAGy2T1NUl-sQy8MudMTp13G0-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsISn|CsSnI|CsSnI|1.2700001354215498|1.0|196.6|0.759|14.95||['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1088/1361-6463/ac1e4c|_YuX9MOrJJ9E3icOHq4AllEjY6YW|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsSnI. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.249|115.9|0.62|8.98|['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']|['none']|['TiO2-np', 'CsBr']|bulk|https://doi.org/10.1021/acsaem.9b00944|_Z0jv0tP4y0TYElolmQsTP5iMmOT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.2|0.38|7.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|_Z1WKl6IQDhC1zOWwqUKWEK3AX2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.108|159.70000000000002|0.7170000000000001|12.84|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|_ZCh4JMQydDMJvEQaK27R78mjA-2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.8|0.73|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|_ZD0qitHQ5fEzzMN2vLvayNtn3_C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3100001396867953|0.759|223.5|0.745|12.63|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|_ZSYrb3-M3b5ZDr8rnwokkJVD5OV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|185.1|0.48|7.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|_ZTqJu0pfvgVTXngN2PwdteJwHna|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.908|199.83|0.723|13.83|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|_ZWfSzR4Is0ciYnIteWMo5tFkqzL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|122.0|0.46|4.4|['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'TiO2-c', 'Al']|['Graphene oxide']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cc09876b|_ZXoCzGRbLkyhDmt9ZfhM5oHzdHD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.01|136.7|0.679|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|_Zd1Ul9C_qqEOyYNulI7UI-sOmaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.75|0.67|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|_ZgpAuyjkBEfxi69airxnbf2M8iR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|153.7|0.514|7.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|_ZnvZz5VzLg7PKa4dF9RoSJw62hU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|211.0|0.74|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b11011|_ZpazfJ9LaV8aggtXOI9RCc4_Vs5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|225.0||19.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|_Zspa6zaLL1Bn7WViRsvgx7GH9mc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br75Cs21K4Pb25|Cs21K4Pb25Br75|Cs0.84K0.16PbBr3|2.240000238853757|1.41|68.0|0.752|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|_ZuqwLIR0ce3YoEJ1SdCQiOZw15s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.84K0.16PbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.993|235.0|0.72|21.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700872|_ZyUhy8DV0rfBlQRs5hdVEbGpqIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|153.7|0.62|9.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|__gcLJAYNLGoVQXYB2VDcHOdhpCw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.2|0.72|16.49|['SLG', 'FTO', 'SnO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/adfm.201700878|__kSIzN4Eb-t1AEBDrkQS5lTRgtc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|189.0|0.68|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00450a|__moQw2FTcgrRmajZwrd11RJqzx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|__sn0D-dGKhCzqWHXaNmY8ABr82R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|214.2|0.67|14.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|__x8dOeAwBVRtMEKzrRjwTusV7IM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.7|0.733|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']|['CuP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.inoche.2019.107701|_a0BwHDNsjflF9cU0AMyEj8u1xPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|222.0|0.653|13.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|_aElE8fGV3hri9uD09T9apOr5chs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|201.0|0.59|13.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606656|_aHaCRkQDs_ZDLUPdCNaOgFcbhkv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|224.6|0.7|17.01|['SLG', 'FTO', 'SnO2-c', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15665|_aWajcgJqDbhNM50b6xTs9lBQrYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|234.5|0.733|20.36|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']|['DTP-C6Th']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|_aoFavAxr8GcRJ3lbPMO5UGzulI3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C331H798I300N100Pb100|Pb100C331N100H798I300|(PEA)0.33MA0.67PbI3||1.12|164.20000000000002|0.67|12.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adfm.201901652|_as42lA01yxWwoILDtart2AbVvw_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.33MA0.67PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|63.3|0.6559999999999999|3.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsnano.6b00225|_atUYp4Rbb810SaLdM7KXu6Vajh7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.79|188.3|0.71|10.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra15210d|_b21F4pvNYliLK7dT8ei5KbNwRvi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.3|0.727|16.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|_b7I4WSTPlx3cBBWLTV4SfJOTmoU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.4|0.612|15.2|['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1002/adma.201706975|_bBZTONZTC0mwvUa4NGAJZvuDHTV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|211.7|0.7040000000000001|13.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8ta00308d|_bDbtfasLAYM-kTkr_gHIH8VGVSa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|133.0|0.59|7.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|_bEYJXXR8nSRojXXqc391-gVICz_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|56.2|0.39|1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|_bIwgUax7U-WKIzCR_wsJePdXbkH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|135.29999999999998|0.452|4.77|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|_bJ_car2DCKe91wRN_PQfx9U5P2b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.97|211.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|_bLjq1K98fvkphmA67iwavVgutET|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|53.2|0.736|3.09|['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CZTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|_bML8bbI4IsKRv7YIpXiIfuzE7gp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|197.0|0.727|15.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|_bMzPqApADzcDAqAKJ6DHWPZFdWu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|136.2|0.695|9.83|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|_bOt_EZkHk8zsTGhJL71I9msPgti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||1.11|197.0|0.713|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|_bPuZbjNhLM89511irJd3gzaPqGT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CsI3Pb|CsPbI3|CsPbI3||0.73|63.7|0.65|3.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|_bVwZxiArYp46PAR_rv5qLfHfkWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|178.0|0.7879999999999999|15.4|['PET', 'ITO', 'ZnO-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-c']|bulk|https://doi.org/10.1039/c8nr06586a|_bWLjslH4Qn0wdUzVwNxlGB04uk9|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|198.2|0.647|12.56|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.12.047|_b_fIaS9Cru_mGL3Xt0u4zo8Y2WR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.8|172.39999999999998|0.73|9.98|['SLG', 'FTO', 'TiO2-nanoleaves', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']|['Spiro-MeOTAD']|['TiO2-nanoleaves', 'MgO']|bulk|https://doi.org/10.1007/s10008-016-3262-z|_bfv_K9NsJwnVevT2A03olDb_Bva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanoleaves', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|227.6|0.68|16.17|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1002/adfm.201600910|_bkyelegsdti_bXTgwILUKbW_ZuQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.0|0.79|20.1|['SLG', 'FTO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800278|_bxPL9btCJTxXoFj9KkpHgcX-bRv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8Cs2H40I30N16Pb5Sn5|Cs2Pb5Sn5C8N16H40I30|Cs0.2FA0.8Pb0.5Sn0.5I3|1.3000001386204838|0.7|243.0|0.6829999999999999|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|_bxU-4KsyTwX4De8htLG8ihoVIQP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8Pb0.5Sn0.5I3. -CsI3Pb|CsPbI3|CsPbI3||1.19|82.6|0.775|8.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/science.aag2700|_cHSA7XF64Rum4YnRqzWyZTvNsth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|180.9|0.45|6.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|_ck4H8606PvFkck1us8ZONJdUjKt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|185.0|0.54|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|_ckTAM9X08gKKRoeAmkkvoyyWveI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6300001738087604|0.901|189.6|0.462|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.03.236|_cnjW7MsbJ0K_TCUI4kgYRyqHHmO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.08|225.0|0.774|19.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|_d06D3Vc_FX91kA3V5Ditl5T6WpJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|200.0|0.664|12.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|_d2JzN7rPg0rjkNGMqq62WHenWsL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|133.0|0.56|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp04749e|_d49ahL9wLUW7KxmbfHTZeuLgka_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.2|0.551|12.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']|['IEICO; PBDB-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09467e|_d6e6dAwN3UMWGL1rnJS9bTWy4yV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IEICO; PBDB-T', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.132|235.9|0.75|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z26', 'Au']|['Z26']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.035|_dBhnRKZhESsimMu9vigo4cE6Azb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z26', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|235.3|0.67|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|_dDbuzzhg0qvM-KPeX519dOhAsBb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.58|13.7|['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3-c', 'SrTiO3-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|_dIIvGIyxsBlQFAfHFQGfTEPFQKw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.5|0.7440000000000001|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|_dLSBAGwSPDM1TcsP-TdrHI2fk36|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|0.921|37.0|0.421|1.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|_dNXPwtbH5NGpyayxq_NCx9UsKHM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|206.0|0.79|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F4', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F4']|bulk|https://doi.org/10.1002/solr.201900223|_dVuLtKrhLyFGrtdBubnEi2L0LOY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F4', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.51|84.0|0.82|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PIF8-TAA', 'Au']|['PIF8-TAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201403140|_dmBtSyl_H6ExHYhc9QpD6Q3AUhA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PIF8-TAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|171.52|0.5710000000000001|10.51|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|_dxshGsy0-0t31lUPAgUi5lynO7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.2|0.75|17.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800048|_dygBZJGeyRJa9uQIRjixPEcIZml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|199.0|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|_e5DrA0gJjLaKy_0P1Zhk6T1xDA6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.0|0.73|15.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|_e5b-t4Tz0pUxvTUyLjTTkIO_fAb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.17|138.2|0.763|12.33|['SLG', 'ITO', 'NiO', 'Perovskite', 'Nb2O5', 'Ag']|['NiO']|['Nb2O5']|bulk|https://doi.org/10.1021/acs.jpclett.9b02644|_eETkTJgvEmsab3KHvpWT4IEaCpb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'Nb2O5', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|129.0|0.65|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|_eGFchQEtbYFuIFa5xC1gC7jvs-n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.89|172.0|0.55|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|_eIJeskfGZdLIz0QI196hMS6zPYL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.21|11.8|0.4379999999999999|0.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.7b02314|_eN8o5jWxn1J4IUY3Esn_HyizzlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|28.0|0.69|2.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.126619|_eOH6NK0lGkUOl5xWxKGsbndJEGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|116.0|0.31|2.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl5006838|_eRIjsogPbhATJXMAVtDDmbv3qz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|196.1|0.71|12.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsnano.6b01904|_eVh2DWwIobseqdKyrBYzIUPVJt2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.078|203.29|0.728|15.95|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||_eVnb6oT9DIHsKlSKr35ZV843xiT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|47.400000000000006|0.38|1.36|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2019.05.055|_eW0SXYy5zw75xauONzSm2wfF0pl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.8|0.7|11.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|_ecZTYpVt0hsZbDqmnSyin4bfTM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|221.2|0.747|17.39|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nw; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|_eeCpBOkxBHlO8JQZPQZhKV5atPK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|150.0|0.58|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|_eh-OlMeD_nRpDtFEvVk9FWtmbw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.08|211.0|0.71|17.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|_etzQcCNcCpvgsuPwTkeaUmMFUUQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.8|0.7|14.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|_euFTqz-vTVmTx2mSz6JUxMkx31m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H102I51N17Pb20|Cs3Pb20C17N17H102I51Br9|Cs0.15MA0.85PbBr0.45I2.55|1.780000189803432|1.11|112.7|0.69|8.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901863|_euwDO1Gveoai_T5wm03liW3h5vU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|11.7|0.29|0.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|_ex9jm5LnSb6TaVLGv26cXtMZcyY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H30I14N5Pb5|Pb5C5N5H30I14Br|MAPbBr0.2I2.8|1.6300001738087604|1.02|211.0|0.77|16.6|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|_f6dhEFH3OVrrQNGaQ2eSXFC5l5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.2I2.8. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.12|148.8|0.6940000000000001|11.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09855g|_fB9wiJnOxm69t__NEBt32-unxj9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBrI2. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.112|228.0|0.731|18.54|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201802646|_fDR2BdMHrdfktNdHMGKAmHtPsvM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CsI3Pb|CsPbI3|CsPbI3||1.04|161.29999999999998|0.6609999999999999|11.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Au']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201903751|_fF-lRKlWNi-9PSI8LqWyYX0dIHp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|159.1|0.61|9.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|_fL-S0Frhc8X1fLqrvduhUTn70qV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|234.6|0.76|20.03|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|_f_1ZOZLuSYLiTvLD8GEZjuFB6zU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|231.0|0.746|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02721|_fc7Q27rIN4OVxEUesh1TBJUFaFI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.05|167.39999999999998|0.71|12.48|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|_fcrCN7BzTb4zsZPM9f-BRiRtL0p|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|229.2|0.703|17.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|_fixqPtse8bT_7JfkYH9agXG8s8y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|134.0|0.7|5.7|['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanospheres']|bulk|https://doi.org/10.5229/JECST.2018.9.2.118|_fn4HIXbdiT50jU89GV2MzlyUEvL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.7|0.772|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|_fo_DEt8YYVHFdu4Aij8CnpyC7Ex|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|178.29999999999998|0.45|6.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|_g41oCpJCyqgteeyRvcj_OXiO1ep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.6|0.78|16.22|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|_gA6PcMDMiegw0vefzOlCyF7oEZT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|151.0|0.81|13.5|['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.081|_gBqE5jL1i-ErXn4kqzRe3dFftsf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|76.7|0.5820000000000001|4.71|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|_gPkFT08QJWYTvV7hOzqzY5p-Vfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|225.0|0.835|20.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|_gSXP09es7CAR1hGMe0SXDpzRw91|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.29|153.1|0.804|15.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909972|_gU1qP_q4txe311ay0PRESke3yUo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.08000000000004|0.773|19.04|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|_gc7OesfYfjrMT6jMa8qdzcp2vAV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|226.2|0.674|15.26|['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|_gcEzHbRnHc-NXwjOMBJw42dt_r2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.7|0.54|11.29|['SLG', 'Zn0.85Sn0.15O1.15', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO0.855Sn0.15O1.15']|bulk|https://doi.org/10.1002/slct.201702419|_glWN4uiOZ6Y6XBRBBaGTOrr47S9|a perovskite solar cell with the following device stack: ['SLG', 'Zn0.85Sn0.15O1.15', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.7|0.732|17.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01636k|_grKxeEynSqoySmeZisUpJT2wIqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.82|192.6|0.58|9.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2015.08.021|_gsH6P1-I-uDS6j6IqJKer_EaOGX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br150C100H517I150N183Pb100|Pb100C100N183H517I150Br150|FA0.83MA0.17PbBr1.5I1.5|1.86600019897371|1.155|156.07|0.634|11.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|_gsUItd70LyjT7Ua_E46yZ1JwPLx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr1.5I1.5. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.11|229.7|0.743|18.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201903239|_gxr9mhNNNjcTtq7PDalFrFWPzqw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25||0.961|194.0|0.695|13.0|['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Si-nw']|bulk|https://doi.org/10.1016/j.ceramint.2019.04.221|_hMBpa1QIbIRTgMtGO-y1SJ2VsnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.04|220.4|0.609|13.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NO2-PEAI', 'Spiro-MeOTAD', 'Au']|['NO2-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|_hVtVDePobp6obvpxpc9WA7A-7qF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NO2-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|174.20999999999998|0.7190000000000001|12.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|_hmj5hlKCu5U1cmg94x8YudG-s1H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|182.5|0.755|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00488a|_hp4xbOr_yaNnLwg2NrCALOPZr6B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|178.2|0.701|12.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|_hsmUGWjEsKjABogotuVcANgLfpr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|_hviLSSnZwVW0obS9YhrmMpdyRrB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|170.2|0.46|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H-PheDOT', 'Au']|['H-PheDOT']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501423|_hzPDYNGC8akM46X8oee9pSnIflb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H-PheDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|220.0|0.68|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|_i1vODdu46PHMl0Gm62f5Za86b4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|188.6|0.738|12.01|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|_iO2Wg8fx2ogExKBeRkbBsEK8D5K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.5|0.7120000000000001|15.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.12.004|_iXNliUp3H5ISk8wkQk2B0uEF97s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|216.1|0.688|15.76|['SLG', 'FTO', 'ZnO-np', 'EA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'EA']|bulk|https://doi.org/10.1002/adma.201705596|_iaVO6nk6FFsM7TtjwHfMyqKj7vm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'EA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|216.1|0.779|16.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2018.08.030|_ifc-IiKq3PyNxPikcvtTyO0MG-G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|199.8|0.483|8.3|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Selenium', 'Au']|['Selenium']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.05.022|_iiwSlZU-UhIswniWXJ1M11KDtiU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Selenium', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|183.5|0.52|8.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|_in9N8vjkxeMCFmfjlw6lqVdXXtG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|188.9|0.6859999999999999|12.34|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|_ityiIN-uVZVNKIHDgsXy39Wp9ji|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.082|201.2|0.6920000000000001|15.06|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|_iycIrb4_iL9Gp3gixB102Zs8oU4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|230.0|0.82|20.9|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|_j8CCNaYkCPC8BM2Yrf7Jkcbx6pb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|188.0|0.67|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.019|_jA3vVZsl1-5FUUmZyV08S7UbDnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|189.0|0.79|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|_jGdgMKE2FO9xWr2eIkQ9jP60bJ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|_jnVkYxCBOaCBe0TorzMDyrBfcl3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.858|141.0|0.7|8.4|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|_js47jdSOxPG2lmJ1FD3C0NPdNSM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.07|218.8|0.66|15.47|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|_juYDXNFIkrGZ6h3SqViBt8NwyB-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CsI3Pb|CsPbI3|CsPbI3||0.825|140.6|0.545|4.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|_k0Hp68knpi1o-1RgaWykv2KJry9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -C83Cs17H415I300N166Pb40Sn60|Cs17Pb40Sn60C83N166H415I300|Cs0.17FA0.83Pb0.4Sn0.6I3|1.2500001332889268|0.61|246.0|0.5770000000000001|10.5|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|_k67iJbC3bnWrC00pTn_r-ZB-coF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.4Sn0.6I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5800001684772036|1.06|217.6|0.648|15.06|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|_kDpkpxZM8hPfU92I4Isu1THheXJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|158.8|0.59|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|_kEaNB3438pWY_y6J3uY3pBW9nOz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.68|135.0|0.66|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Ethyl acetate; I2; LiI; NMBI; Urea', 'Pt', 'FTO']|['Al2O3-c', 'Ethyl acetate; I2; LiI; NMBI; Urea']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ta12240a|_kHtkFi9V-EIZTbh772C44lmFTUF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Ethyl acetate; I2; LiI; NMBI; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|198.0|0.75|13.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.orgel.2018.06.043|_kbp8w2_08cOsZBtaBYpCpXa_XsV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.13|214.9|0.736|17.92|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.044|_kdU41Mnt6Hv2KcwZXyX_WrAwfgc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|179.11|0.73|12.98|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|_khPYa4dnWO1ooRsLEpezKtvWRaf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.76|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900164|_ksXRkv771Kl9L1YVaE_Gfr_B8dW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|200.0|0.54|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|_ktqtsEd_SxgljPrsAopiDTN6N4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|211.3|0.7559999999999999|15.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|_kuEaZR3Egea6fOGL4QSQiTWYcOq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|160.0|0.73|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/ese3.180|_kvQiiVTp4LfJ4Z6lGM8j-CeOTKJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.569000167304261|1.06|208.8|0.67|14.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|_kvYrAV8YJpVsHPUTHCBA5NcHnYU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|174.60000000000002|0.72|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|_kxDndGQoEHSRcWD0Xr8opsZ3iAM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|113.2|0.37|2.85|['SLG', 'ITO', 'SFT-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']|['SFT-TPA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8nj01082j|_kxSUPyVLQYZY_Mx6Atd2gWf8IbE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SFT-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||||3.2|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|_kzryDoygotMrgoq0VHobfwhaKS7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.966|217.8|0.65|13.68|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|_l8Ro_6xYqxnvcP71tDnm_OR0Ajo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.95|203.0|0.78|15.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|_lKrCKbUiuzmzkO25crFZ7fgecSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.94|131.0|0.47|5.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/ph5000067|_lNSKiI2x-VMpsbWfhrYstrNRRcA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|200.7|0.599|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|_lgJFZOWP3fEsCS6zBB_LsT6VZCR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|184.9|0.6|11.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|_lnVNVlF9xEEu7HFx-C14HanxIPz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|191.5|0.56|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.02.011|_lvZcYev16I5GbpbbOr1791KcRSS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.0|0.79|18.2|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|_m0aY5OIfmKDgmUYn8c8uc45Wr_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C18H93I20N33Pb20|Pb20C18N33H93I20Br9|FA0.75MA0.15PbBr0.45I||1.02|227.0|0.69|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-OBu', 'Au']|['CuPc-OBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803287|_m89IbjQcwWdLKNz0cq1GYwTCc8z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-OBu', 'Au']? The composition of the perovskite layer is FA0.75MA0.15PbBr0.45I. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.15|219.9|0.72|18.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|_mGx78TsaUjOo8PzEg5GlKDnxJ4J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7170000000000001|151.0|0.62|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|_mS_fUa1BH1xkg0r4YDdxKguxL5_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25EuH150I75N25Pb24|EuPb24C25N25H150I75|MAEu0.04Pb0.96I3||1.02|215.0|0.764|16.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|_mUufzkaEk_wtQ4YQVM0sj7Akfh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAEu0.04Pb0.96I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.202|93.6|0.609|6.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|_m_I05mUuNlcGjDSY9X23aAyk8CS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|13.6|0.27|0.3|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|_meFrlJDUQzIjwlB4cNqtbOy5aRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|75.0|0.4|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|_mjVQIhM-7qSse8WKf3gR92_YsAh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|20.4|0.17|0.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|_mlRNCI3xj8NCpvyP0-LRVmpCZue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|156.0|0.68|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|_mnF5esXZRiDaCC8dn0v0qei_onv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.78|43.9|0.77|2.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2019.04.113|_n9Z0EpImggJTyiIHmo-kEQm4mAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|237.1|0.747|19.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee01500g|_nZuuOeacq_1l6UnMnoq82T9GP_M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|_n_7XH-xzdEx_9S1fBIWxfQHgl01|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|219.8|0.74|15.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|_naEGEJ5SIs1Ue6APrCX8_yffi_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|216.7|0.71|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|_nlZPrpCWs4rYiszkvZuzpxzsWzC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6600001770076949|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/nature18306|_nmu2HgsyjGNUTJJ93O1zZVhWEI5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|104.3|0.37|2.43|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|_nruc1JUmEXrizXq-euIJbzZkA-j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|141.8|0.6|8.3|['SLG', 'ITO', 'PCBM-60; PEI', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['PCBM-60; PEI']|bulk|https://doi.org/10.1039/c5ta08744a|_nxqUyR22kpdatKXrl3X-r8GuSjC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PEI', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -C100H533I300N167Pb100|Pb100C100N167H533I300|FA0.67MA0.33PbI3||0.912|124.0|0.68|7.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2015.11.058|_o-hlTZUDO0htl38ew-zAPrcBisP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.67MA0.33PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.765|139.0|0.522|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.03.021|_oJD2y65bTHW5CiZj_wxByi4Br8W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.73|20.8|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/adfm.201804356|_oLAXLj8IcyLWvNpeQ-p6ZxbeqhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.626|4.4|0.386|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|_o_EFY3q6HlLfrDxFh7aKb_MFPFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br3CsPb|CsPbBr3|CsPbBr3||0.8590000000000001|85.5|0.57|4.21|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/acsnano.7b04762|_oqUBN0pvcJobVu8FOITjtVp3DKL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -BrCs2I5Sn2|Cs2Sn2I5Br|CsSnBr0.5I2.5|1.3750001466178194|0.444|65.76|0.55|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00100b|_ozf-KOyyDCgKUds8AKd2LNnnnG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is CsSnBr0.5I2.5. -Br3C2H11I3N3Pb2|Pb2C2N3H11I3Br3|FA0.5MA0.5PbBr1.5I1.5|1.845000196734456|1.088|155.47|0.7|11.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|_pALqvm0iNVfsKBjTj5_q8eHaN_m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr1.5I1.5. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3|1.5400001642119578|0.83|226.1|0.51|8.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12939|_pCDmqYJl6OOmZIJV-YtMr2lVepJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.879|225.3|0.659|15.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/cnma.201900097|_pF7-zf6aBHKpT2eJPUTYNvG5f02|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|224.5|0.679|14.15|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|_pMCkjQOyghCU0XluqN1v_VcSnRM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|184.3|0.75|13.76|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03984k|_pWSYnQp4sXv0mw4HyuET7kKCjBZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.5|0.72|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11835c|_pcKSBbBswFihEHiFaZX2rzXy4qa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|144.0|0.49|5.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep25648|_q1TQfzIz9vg6MLBFXZmeCoDVgKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.7|0.7959999999999999|19.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|_q2tflUHWfKoqvNEwd1yQIQQ-U44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb7Sn3|Pb7Sn3C10N10H60I30|MAPb0.7Sn0.3I3|1.2000001279573695|0.15|150.0|0.34|0.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5002117|_q5-u1Jc24DOAGtehddcpqHjJiV_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|223.0|0.7|17.07|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad685|_q8m4CWdQ5dJPHS-NEv_ZJw2YBpY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|228.9|0.62|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800002|_q9IQSDTat55mu-SLe6MZW3XUUhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|180.2|0.51|9.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.electacta.2016.11.132|_qAJpr_Ly_Bv8iJXRsBvgDwNYVR2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.853|58.5|0.49|2.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|_qBrBJgMHW_mW4obsCjuv49GDctq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|138.7|0.6679999999999999|8.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00843|_qKdzT8lUwKKt8dTeLZfp4CRDv5f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|236.0|0.562|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03686k|_qMykyoSkQpgONECNmrBjcMuDN9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|175.0|0.628|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.014|_qQnExSotEjba6xpaF0n93mLhfST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|204.7|0.755|17.62|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|_qVBVlF-dK0QXiDsioWtMyMqZraY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.607|12.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuEtPc', 'Au']|['CuEtPc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.019|_qVUi8VpJg7EJUjHPvM7PM3xhFDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuEtPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|||||5.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|_qWvL14sK0yIyBPxS1JK58VdWLuc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.95|108.0|0.57|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.8b02157|_qZZLTSE9RO7pJ93vMrKUQIWQ5NS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|218.3|0.596|13.87|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|_qau6y7_TtZOE5Sbt_mtJO5IFXmn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|181.1|0.7|13.2|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']|['P3CT-K']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03444|_qauB5kpsEnjppkhQVaJURfGHDQL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.145|231.2|0.64|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z25', 'Au']|['Z25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.035|_qhHmp-_S5oWutxXLchrZ_gkmzJx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z25', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.0|0.57|9.7|['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cs2CO3']|bulk|https://doi.org/10.1021/nn5029828|_qjaNcJ8dazMd8A9mZ1hhnkppe10|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.818|183.3|0.71|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja509245x|_qnedzEaMI8e9JEg3IZ56KPF1Ke4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C8Cs2H40I15N16Pb10|Cs2Pb10C8N16H40I15Br15|Cs0.2FA0.8PbBr1.5I1.5|1.8200001940686776|1.15|119.9|0.624|8.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|_qoiQQgFPAg3SgreT4djg0b4glcl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.77|119.9|0.49|4.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-017-1264-6|_qqoB4HixQbEAQEUPOw1XhzmhwvS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.13|201.0|0.781|17.7||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|_qrO_qDxU11o0mZVHj_bGpB6_-EK|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||0.92|143.0|0.182|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|_qtUufl5jROdDismPXSJ-5-BP0Rh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.7|0.66|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|_qvIRI8nrRn01YpfNcC53EWVXM9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|0.92|165.0|0.705|10.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|_r-HREGewExwzhfueWd27oZki8Gx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.104|216.1|0.7120000000000001|16.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|_r3CNRp1_j2A1tVdi4rH35-I3R_X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|157.0|0.608|8.69|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|_r3lZNqkce5fMqx0OmUjhdtEyB7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|213.7|0.78|18.13|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00169|_r6qGle_7Uc2ovZ6-IblJi2AeOSC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|179.1|0.573|9.83|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|_r7J9rvCnwGP9bXoJ6gU8jdDeD-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|39.0|0.38|0.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4941217|_r7KCrGuFKCsIR-5VMg-Y762DOtr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|160.0|0.8|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|_rItdILQqu38DeMyGJWkcPR_EgHR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|223.0|0.7|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/celc.201900688|_rIx95w7qw0_Uap--utpC9HxqGaV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|80.0|0.65|3.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2017.09.100|_rM0GfHG-oMh4G6FIYs6GcVI8K4I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|206.0|0.64|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01924|_rOBULTgZWQ9kCTB-XGjAxbkgRcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|122.1|0.54|6.38|['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ra25149h|_rVnFT3tcRJwmQVwt0p7a540tcEK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|189.7|0.7240000000000001|12.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c7ta00203c|_raFKH5lUX9ReEyZgeXbekTXoHv6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe-QDs; PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I5N8Pb5|CsPb5C4N8H20I5|Cs0.2FA0.8PbI|1.570000167410892||||12.8||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|_rc-rWGJvAAU_z5OMqu1GvOW6jXo|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|_s-A1ySz1lfVr9VyoFy5Z7_gO8yo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|174.0|0.631|10.32|['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|_s4X85s-e1N7SBXgB_S_3-N7qZLD|a perovskite solar cell with the following device stack: ['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|228.5|0.7609999999999999|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12217b|_s4i67vw876Uw0xPEARS-L5-xmgF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br11C19H98I51KN35Pb20|KPb20C19N35H98I51Br11|FA0.8K0.05MA0.15PbBr0.55I2.55|1.5900001695435149|1.11|227.2|0.7120000000000001|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|_sG9m92cHc0780F9JhQ33jsdc4xI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8K0.05MA0.15PbBr0.55I2.55. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.19|225.4|0.78|20.92|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|_sM2MY6ZB_XaxVTpLiEt1xdd9MNr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|89.0|0.52|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra24247b|_sU2PxOOzEegLeU7Qh1kN89RoOK-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|185.0|0.72|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|_sWstI2iGn4URD5nfc-tBg_JL67k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|187.0|0.6829999999999999|13.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|_saIvS5xqsC1Km5nX-3xJdmrwshl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.56|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00490|_sdctRANklhBzoAqhdySaMKurQXc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|199.7|0.606|10.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|_se3ntjFSCWU4gPAthB31_41T5eV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|226.4|0.778|19.38|['SLG', 'ITO', 'C60', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ta02094b|_spjr_peM9VU9jzLj4A_nbml2EoT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br42C100H529I258N171Pb100|Pb100C100N171H529I258Br42|FA0.71MA0.29PbBr0.42I2.58|1.6200001727424491|1.1|226.0|0.79|19.6|['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']|['TAPC']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03454d|_sqBnGeQ9vwXSMSklWTm_YBD_9lR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.71MA0.29PbBr0.42I2.58. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.032|205.3|0.688|14.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201903216|_swdhkWF6XLhtJIz1JSpQr2CCUxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|168.0|0.701|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|_t27qYTx-Aemgw4_NyeqxuciXgSp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||0.98|221.7|0.747|16.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06044d|_t7nTdpwrzil_3cbnm_sPdYTL8Iw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|213.0|0.728|17.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|_tAFTSIRNe7ojPrQLSr9ZUdgaegS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|200.0|0.59|11.06|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1063/1.5004627|_tDKbnhTh9zza9JGUbFp18oipYTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.37|194.5|0.7|4.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|_tIJBGfwJdbEI_n5vfZBGx5ZMbtI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|218.1|0.8029999999999999|18.05|['SLG', 'ITO', 'NiO-c', '1ab', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', '1ab']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|_tNzLBx45e2oFf34ZVRj0FP531tf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', '1ab', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.0|0.7|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06362k|_tPdeJ151cO51vO4UoVct2YNjAi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|227.3|0.7609999999999999|18.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cplu.201700471|_tPidu617ODcpvDe3rWDJ6Vu60Ps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.13|206.6|0.7120000000000001|16.61|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|_tmdfVQmYxMEstIt1eDUdq9xF3Sb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|213.0|0.75|15.0|['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.202003422|_tuJamBLVq11X9t5baVfN-VoCh8O|a perovskite solar cell with the following device stack: ['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|165.0|0.61|9.3|['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|_u-FMPRP1E1_qmoFQ08DMuH3GJJq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|190.2|0.7|12.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201601616|_u4wdeVVPEKbBHP_tns7EyQ0ypIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.81|182.0|0.6629999999999999|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-29363-0|_u8hQVs0sZMX3hnzsw9xa7m0MsfJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|189.3|0.66|12.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1557/mrc.2017.52|_uJUTnrbQAcd9p8jUk4CU9w8WuyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|170.39999999999998|0.65|11.55|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Spiro-MeOTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c6sc00973e|_uMy6gqXJhibiIygTWQv84un9syb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20Cs2H120I51N20Pb20|Cs2Pb20C20N20H120I51Br9|Cs0.1MAPbBr0.45I2.55||0.921|156.0|0.67|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|_uhM_XnqdgvJ9q6nq_28XXp3D0NU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.056|191.6|0.6890000000000001|13.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']|['Montmorillonite', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1002/cphc.201500163|_uiWhP65ukqWRyCttj52krxFc-sB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.01|19.0||14.01|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Graphene', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; Graphene', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.07.030|_ul90rcayU7F2ppEuqFhFhEAqh8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Graphene', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|228.0|0.667|16.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|_ulcM_E4z0ZzOer8UoBBFzCobi1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|159.8|0.6609999999999999|10.45|['SLG', 'Zn0.75Sn0.25O1.25', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO0.75Sn0.25O1.25']|bulk|https://doi.org/10.1002/slct.201702419|_unb__atY-EhpWaZpSzyzIhsQTy2|a perovskite solar cell with the following device stack: ['SLG', 'Zn0.75Sn0.25O1.25', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55|1.6300001738087604|0.02|9.64|0.6970000000000001|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|_upQpF6eid8Bh-0QuFuupAFtH36l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.04|238.3|0.794|19.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0284-y|_uum8OWUJcIEM6E-VCY8fidhLXB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|145.39999999999998|0.68|7.65|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PTB7-Th', 'MoOx', 'Ag']|['PTB7-Th', 'MoOx']|['ZnO-c']|bulk|https://doi.org/10.1039/c4ta03954h|_uxUILk-juCcLVTGys32zfOkMPm1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PTB7-Th', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|220.0|0.74|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-019-9452-1|_vJ35aj2y5bJmDBf-n1rHx_I5R8c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|236.0|0.7290000000000001|19.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT; SWCNTs', 'Spiro-MeOTAD', 'Au']|['P3HT; SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15396|_vLjpgXRHJjFc_wYNuLjMi7T7hYm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT; SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7200001834055632|1.18|202.0|0.754|17.2|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|_vM_kzqBAiY9dEeaSbJ5qAoduUrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.24|141.4|0.799|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|_vPpNFc3-16woifCzZORxqK0sCo4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.07|226.0|0.773|18.7|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|_vU6JOWQGw0sKs5rmyNkE0JywUm4|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|207.4|0.5820000000000001|10.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/chem.201800460|_vVfdFhzEDBKuXyiSHNqJxOhBCnT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.2|0.74|16.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|_vZmyQkZriNO09HwS7z6C1IHlL4J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|188.2|0.738|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'TOPO', 'Carbon']|['TOPO']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta09646a|_vdcnPFKcjeC77IbazhTWUVXyBuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'TOPO', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.1|0.71|13.79|['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|_vnSv_crRx40_mDZs0qbo_v663y5|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|158.7|0.745|11.72|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|_voDB_MvjMxJWr6l4gLIYDjrU2wF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|134.70000000000002|0.6|8.4|['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c', 'PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|_vrVyhgsEdMkkVrOH4fNg4kg6qB5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|_vw54v_ls3gkrD8c99sFrfIYh8A4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|140.8|0.785|9.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.002|_wBd_sVcmycIvbyq91oTRxg-Zx7a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.9|0.736|16.15|['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2019.107630|_wX-FSfUBK6T7lizru9gYCwBUXUh|a perovskite solar cell with the following device stack: ['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|232.4|0.758|18.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02721|_wXQy1Ha4DklJ_SHDecsmutYgjVX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|168.0|0.644|10.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'H-DIPBI', 'Al']|['PEDOT:PSS']|['H-DIPBI']|bulk|https://doi.org/10.1007/s11426-016-0147-0|_wlsCf7l7gXP6ASQ_9CVNzgkutoK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'H-DIPBI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|205.4|0.8029999999999999|16.58|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|_wo9WQ5TsjqLHZb8PlT1yWqNDLCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.569|142.10000000000002|0.353|2.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|_wrZ4WQvCwSFoBGK3SgxXdQ-3PZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.01|86.5|0.636|5.57|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|_x0YTJaN1Buh2mXukteAPnHqq4iS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1989999999999999|11.8|0.25|0.059|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|_x6CcZOk9PwYQJyKHEGPP0_yw7NO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C19CsH97I58N36Pb20|CsPb20C19N36H97I58Br2|Cs0.05FA0.85MA0.1PbBr0.1I2.9||0.021|247.0|0.785|21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b13701|_x8AyDxJG-DAT3yr6A61QV05YFtl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.1I2.9. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.74|38.8|0.3|0.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|_xD-PFUnRTQTUVJ2e4PEzw_Ibq1h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.042|200.5|0.7|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|_xJjiaqdNNCY_MfLpC8E6guu_wDP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|243.0|0.61|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-31184-0|_xM7kptxK6axYHafD6YASL8InTb5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|199.8|0.77|12.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201503160|_xV1woyk19M51W0z7k5ZG7lc0nBa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368||||10.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|_xWI9wLLQg1BeWyvV7M7U9LuyzUN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.039|216.0|0.706|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-1', 'Au']|['BTT-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|_x_krGHUyqE1xBFNCIDcS0jTCrqg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|140.1|0.6|8.07|['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|_xjMWcDFIiRKc85reG0wYhwBlUDM|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C50H300I129N50Sn50|Sn50C50N50H300I129Br21|MASnBr0.42I2.58|1.400000149283598|0.38|134.0|0.322|1.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|_xlhuBxOjWT-Lo5oGQlV-veiKQoN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr0.42I2.58. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.07|224.0|0.78|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NH-2,6', 'Au']|['NH-2,6']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.050|_xu7g9JWJpbqHMIKAlSi-iFQrhQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NH-2,6', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.1|0.6|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07307-2|_xxj0Cbjm3TzMCo8m-clv_dsdAB5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.0139999999999999|10.1|0.616|8.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2018.08.005|_y52qFk32Bhaw8i79U6Ra6ig8wos|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br5Cs5GeI10Pb4|Cs5Pb4GeI10Br5|CsGe0.2Pb0.8BrI2|1.8890002014262264|1.27|121.5|0.701|10.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/anie.201807270|_y7RfnRuU0Ke4cSXhAfrTbuFlNHG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsGe0.2Pb0.8BrI2. -Br3CsPb|CsPbBr3|CsPbBr3||0.65|6.44|0.401|0.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|_yAuH6wNo1EThxB-ZrCtm8A4SVV1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|205.0|0.79|17.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|_yB7GDGFCer5RLJxP7FTPKlqVIRR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|173.0|0.62|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|_yCVIklCWjVPhkoD9cwxxUYb39hg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.09|227.1|0.76|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b18230|_yH0VUYOPpv3v-nfhByKKYJyVbiR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.82|224.1|0.65|11.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cp07461e|_yHCx_jFM8vqKn1X7n6xURkoeXXg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.0|0.6759999999999999|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02388b|_yYYqbXYVD-0vKsgL3gH-14KbD0x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|124.9|0.647|5.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:ON', 'Au']|['P:ON']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp91904f|_z4Psx4mDkTKfDwCemarHizw7fS2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P:ON', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4700001567477778|0.99|238.1|0.757|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10468a|_z5gRdb5g30ABJDcHo_P92nuWRJY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.435|200.4|0.588|5.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|_zJVOL1viQ_mpywQfOhYAohlK__h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4980000000000002|72.5|0.7959999999999999|8.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdZnSe@ZnSe-QDs', 'Carbon']|['CdZnSe@ZnSe-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc05517c|_zKEeI8f4GomqYxfcR3lRTcjLLT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdZnSe@ZnSe-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|231.6|0.7090000000000001|17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Co(III)P', 'Au']|['Co(III)P']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|_zQd1wA8b-Bh6sMEo0IVkULRUnig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Co(III)P', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|197.2|0.72|14.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LHTM-2', 'Au']|['LHTM-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.085|_zSJjR1xvr1qEGB-5K1GajvhxWGw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LHTM-2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.1|227.6|0.72|18.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c7ta04128d|_zTgDLqKZZ5PY-5HaF4df-nqnheT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.095|226.0|0.71|17.72|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/adfm.201805168|_zXHzhrEwizJAQjOzd7x2Jrd6u2R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.7|0.565|10.59|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|_zY_QgPnZm-rTL6WtWC57ShI7IpO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|144.4|0.64|9.1|['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201306271|_z_E_v8k3NorV8QpCoByQawhcnda|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|234.0|0.76|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2017.11.015|_zjAtpWcZsJsUY5wdnaS5qrXhIHk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.06|213.2|0.456|8.83|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'H6Bu-ZnPc', 'Ag']|['H6-ZnPc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900182|_zjfEYry6vqiO9ZTkdP5eG2A24Kp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'H6Bu-ZnPc', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.8900002015328567|1.03|124.6|0.56|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201903448|_zonW6WbqyZn4RQ2nPU8-negSJTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.0|0.713|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.6023/A14110823|_zqBLNxP0yhNYcSq38GgMBHKrTfh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cs2CO3']|bulk|https://doi.org/10.1021/nn5029828|_zsOWJicUc8yZP3QtQdQS1prfWY7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|165.6|0.49|6.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/ente.201700030|_zuot-f65usZezOVL6WNaeVRWFST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|207.0|0.79|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2920727|a-26Hw5RxB-xXhuJStXLxuYekRs6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|160.0|0.578|9.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|a-71044FatOa8qTJdhJNgCopM7oG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|74.80000000000001|0.5379999999999999|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|a-7YRMvcPGMxGtsywd9KYOH5qDdh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|142.0|0.69|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|a-HU8TRAXAWNdEWeVUFgVRAWynz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|196.3|0.7|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0tc02078h|a-I7-NUj96XezQsLGmxYoPyirI0v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.1|88.10000000000001|0.6559999999999999|6.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|a-KgaSP6fbo0uNUPJ2sriV5l8akS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5800001684772036|1.04|196.6|0.7340000000000001|14.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']|['SM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900011|a-a_2d0Ez_0mnl3qt-SsvFoy8UoB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|210.8|0.7759999999999999|15.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|a-lv66jzadKuNV3nnHosntIUPyr6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.01|206.9|0.616|12.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228210|a-rF4CNU0FRm7qoHAbN9MXYWyjYr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.03|216.0|0.72|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MPA', 'Au']|['MPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pi.5545|a09HcYChpjjlPC576cjP-CLG-Kec|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|49.1|0.43|1.64|['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Al2O3-c']|bulk|https://doi.org/10.1002/adma.201505140|a0LakiGzKP1iAwBYjneEbzOnJzD0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|78.0|0.375|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|a0Q_ZXEQQd07Gt0Mtr-UVGmBxyEg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.122|224.5|0.764|19.82|['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsPbCl3-QDs']|bulk|https://doi.org/10.1002/advs.201800474|a0Wk10IGYr5D4PTTUolyyi8swCdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|181.0|0.72|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|a0Z03Y5HUZphZr8kvI2FF5egfUwg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C83Cs17H423I261N158Pb100|Cs17Pb100C83N158H423I261Br39|Cs0.17FA0.75MA0.08PbBr0.39I2.61|1.6100001716761378|0.91|183.8|0.491|8.01|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'ITIC', 'BCP', 'Ag']|['NiO-np']|['ITIC', 'BCP']|bulk|https://doi.org/10.3390/nano10061082|a0_yyIiSLIwV5eSIBpNNfdEMc5Ib|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'ITIC', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.75MA0.08PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|60.0|0.55|3.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201700089|a0fRwIvlAlyUthTULEdlRSPNlZPT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|164.5|0.644|9.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2775162|a0yTryBqa0VgMS5effqiVsxHYXZ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|186.0|0.45|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|a14S8jTf_zBSL5W7Rm2QynnmIrIC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H116I57N24Pb20|Pb20C20N24H116I57Br3|FA0.2MA0.8PbBr0.15I2.85||0.92|181.0|0.6940000000000001|11.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|a14mk3HDrW4HsJejxf8AqN3xu60w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.15I2.85. -Br81C100H600I219N100Pb100|Pb100C100N100H600I219Br81|MAPbBr0.81I2.19|1.710000182339252|1.24|174.5|0.77|16.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60MC12', 'AZO-np', 'Ag']|['PTAA']|['C60MC12', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.8b04439|a16VugcUVcTuaC1qgraRehwI_cys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60MC12', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.0|0.69|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201310877|a1A_lJbOq9B28miTYSJL252amaNj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Sn50|Sn50C50N83H267I150|FA0.66MA0.34SnI3|1.450000154615155|0.19|9.0|0.52|0.1||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|a1KbKDLpgH4q-XUKJv_EHTzBdVcu|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|185.0|0.588|11.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1063/1.4917238|a1Qr0zArYUCmS0eH7rNnc8GBvCea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.0|0.67|14.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|a1UAccl5xt82HsTp9lh7PIrseBHU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|127.5|0.62|7.16|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703236|a1V00SJ-mnha4NVsaOIqd7ALStPI|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|142.6|0.52|5.08|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-016-1259-2|a1YFVVa5I9eFTCXbtrLs_KORul4E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.2|0.65|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104246|a1h36xZhSaj9Madb7lYvG-GV8KU3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.05.019|a1oWwX1apxAkL75lWhldZgt5RXM5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C1000Co63H6000I3000N1000Pb937|Co63Pb937C1000N1000H6000I3000|MACo0.063Pb0.937I3|1.5600001663445808|0.99|131.0|0.674|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|a1tuu4_IkJJLK3x0FkVUeUafoHKT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.063Pb0.937I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|202.0|0.6|13.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|a1wLU4AxWob1xEjLhjFmOlGaS9MH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.0|0.77|16.2|['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-np']|bulk|https://doi.org/10.1002/adfm.201702090|a1wYgJ7wnIUoeLVy0mLC-fEpxjD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.022|10.7|0.759|22.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NH4I']|bulk|https://doi.org/10.1021/acsami.7b12721|a272phRqzAZac09I00TeodZ1fSh-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.013|66.7|0.741|5.04|['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np']|bulk|https://doi.org/10.1039/c6tc04639h|a2Er-51HwYqquHvEiT0OESzz5d1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br27Cs10I3Pb10|Cs10Pb10I3Br27|CsPbBr2.7I0.3|2.320000247384248|0.99|33.9|0.53|1.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|a2SvexMl1R5hnfyRp8aaOkC8BRol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr2.7I0.3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|171.1|0.61|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|a2Y4GOx3N27U5ljNByTh91mi3Tof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.376|62.3|0.711|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800060|a2b08Pe7LqxGZym3uNjq5Jk-C8yS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.12|224.6|0.743|18.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|a2ebw7zQ_U3-g1CwtrPsoOGB9yrV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.22|46.0|0.58|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900737|a2iLEOhvmGpCY3b5iAQvJlzFTEA7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|a2j_0EzHZncNusL_hSx81qV9ozoy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|223.2|0.71|15.76|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201800361|a2jk2Ff8ggFYWJJcejzdQnATwGFY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|54.0|0.5|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|a2mrBHF58RVe9-MOlhLWfrLKIaTV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|151.0|0.67|8.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|a3AkELWmciVLBp6KV_A28klbkACj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|124.0|0.545|6.22|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201500373|a3CpXJ4uAM_smiPI8P3_QUShIyzd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|0.97|208.3|0.76|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|a3HO-Rx7fPnAl-6Q4LUy5OxCs_DJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|160.7|0.46|7.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solmat.2019.109927|a3MUdqzGRF71Zme2cZlqpmy9JGgh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.041|194.0|0.59|11.9|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V873', 'Au']|['V873']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600762|a3QOjDHBK6kLH7AIaC89J-GJax4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V873', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||14.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|a3T9tBXxIebwJ7DrkS2vbVUKm-R9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|11.2|0.767|21.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00583d|a3TdvZvde8_7ydOvJvzdvep43HXx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|208.6|0.68|14.32|['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|a3ZMHWqUSMAc0L8wdjAbfLHdmyBj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|193.0|0.63|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|a3ctxdoESiIDNd2nPnpr_r0uG3hN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C190Cs10H1083I600N247Pb200|Cs10Pb200C190N247H1083I600|Cs0.05FA0.285MA0.665PbI3||0.968|233.8|0.645|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|a3fGvZutfnhUKhuulUnmo9e5OwJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.285MA0.665PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|151.0|0.55|5.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|a3g8PNPl3_rXiT5CKtsBYHfeOc00|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.02|184.4|0.758|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|a3mBQyGROFyPbEX8EXmQNGkvSUNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|172.0|0.46|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.7.003322|a3pDufRpDidJVga-3sIyAXVeftEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.2|0.721|17.05|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b03304|a3tcORZfVIDi37t3oczqrvOR2wt8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|221.7|0.7979999999999999|19.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|a3vIoP9EaQ82o2Y_aiYScC_UhlcO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.352|69.4|0.745|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|a41DNhGudTo6uL84Ts7dECeE-mFJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|194.8|0.721|13.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.043|a43P8OWjsFI4Irloavqmz4bJi8lr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.114|230.0|0.74|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms10379|a43fCNWurrMhWKcNauAhmUVQEAyG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|191.0|0.71|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.09.165|a4DLls3aSXtDScBnbLXn4N5DwS9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.0|0.7|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4994085|a4MOALgMozuBJp60hWmQ4rsciht5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.4|0.607|12.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2391-3|a4OzU9XELkIKr3LEAGEnw-NlTPRZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.9|0.72|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201802109|a4QWxnysKCexbNKLxWWsvLm75ylh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|231.5|0.73|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105403|a4_61mYvNa4DML-vUkpg1h4aklde|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|167.0|0.66|11.0|['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']|['TAE']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|a4kqHKsO3h5tDbLf8nZ2_bKkeNoU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.82|187.0|0.56|8.7|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|a4mf2cTOviURXJzi3NtozI3NaRAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.2|138.6|0.66|11.02|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|a4p3FVpgWhPYMURIzpnRGI8nA5it|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.5|0.73|13.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.017|a4pTgzWcOKIo0UpDzqztz1Wiki-I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|130.0|0.63|6.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|a57P1FvZIJ1a4oXvmmqL2qBhbA2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.148|218.6|0.777|19.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8tc02133c|a5IXGxd3gqFIc0ISFsm5o0i-GUNu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.861|98.69|0.68|5.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|a5Kc5PkR48VC4EKqfmEx61xb48Ma|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|214.5|0.74|17.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|a5Vg_mOFXAKPqO_41BSxETb8Taz9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|211.0|0.6|10.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|a5WR1F6uEwdP6wnQ7wwbt_Wu5JRg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H494I255N178Pb100|Cs4Pb100C96N178H494I255Br45|Cs0.04FA0.82MA0.14PbBr0.45I2.55||1.113|223.9|0.778|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']|['PBDB-T', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201706126|a5pxiw1XtkC0NAKU2ZOszl-8hMRU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.0|0.599|11.7|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr01927g|a5tpuSFuJnHEbUfDZjDmByT75SNF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.0|0.78|17.25|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|a5whcmBETHvW0iUZnmTZVA4nN25R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.27|77.0|0.65|6.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|a5xBiuGV-0b3i6e0cNZBI5WHtwBs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|127.6|0.72|8.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.21272/jnep.8(4(1)).04004|a6D89wtzgNUPI1Dw5bTj_27IefbV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.03|234.0|0.7120000000000001|17.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|a6I-q3bLdRabN5x_VkFkW-BsdvQ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.86|93.8|0.971|3.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5127275|a6N2uiGXh_t_2U2kZrqCiXKb3gMN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.0|0.68|15.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PN-F50', 'Ag']|['NiO-c']|['PN-F50']|bulk|https://doi.org/10.1021/acsami.8b19036|a6QsjauEhNhcL5kONNwVefW2wjvo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PN-F50', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|a6RHrV9btSSAdVfU1KHYb7S6fpSm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|192.5|0.772|12.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|a6VnV0iLMPIMFbiApoGU03zhLC0B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.0|0.71|16.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00095f|a6XwsKdK8HamPSWcdibdHPXIKYHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.15|145.39999999999998|0.67|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|a6ftWpdlmERywRgNdzrEpP9WvRHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||1.02|246.0|0.72|18.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|2D|https://doi.org/10.1021/acsaem.8b01964|a6hAF2_4qr-9sUm2ZqcNFI2d-ZAl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|235.0|0.75|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|a6hquCb7T91h8ZlJvlFVIBUyyUE0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|222.6|0.69|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|a78IKem_poD2e3G4vtkqxOO0PzSG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.40||1.1|193.0|0.82|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b01201|a797ooY2WQzEbPwnC2qfeY3ave6h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.8|0.6|11.69|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|a7Sdb7NDvlUCjZ3Jze34RsWDqIqf|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.02|197.7|0.7040000000000001|14.2|['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|a7x29TDu-_CJF9b52CnFC_jBWVdu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|32.7|0.03|0.01|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02808|a7x5on9eqtjm7oDmt9PQovdC_Dy-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|219.0|0.653|14.21|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|a8GP2CzkO18mbCtu-oVuyu9WoGnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.6|0.773|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra25753k|a8NY7AuChANZpW_sBV1NNX5ut44z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.88|191.0|0.59|9.9|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|a8T9n4-t_iFQvc7VK-5Knov3PHl4|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.0|0.52|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602600|a8Tnnz41MmZTggH5lMvgKOaglr2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|a8gmU3ALE9FGFV_qYWiagWYXgbAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|177.10000000000002|0.672|12.7|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'PB(NAP-Th)TBT', 'Ag']|['PB(NAP-Th)TBT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2017.12.017|a8hO4g6uLTMYxcY0u9PA34mQlBo9|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'PB(NAP-Th)TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.15|220.0|0.775|19.2|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|a8i1EbFLrOe4lJkVxyLtT5-ggVW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|1.780000189803432|0.79|93.0|0.52|3.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c3nr00218g|a8s_UVONY_Dxy1ZJkkUw05nKNWaw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|186.0|0.487|8.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Au']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05104|a8w4hybjcFUO0kCM9vNPOATXUNnS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|179.0|0.62|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b09537|a9B48aLVXxPZFtUUlcaPmpes49bo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.71|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05576|a9ET8I3MzSNkYZWKSdxM7ZQQUt_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C86Cs14H451I200N151Pb100|Cs14Pb100C86N151H451I200Br100|Cs0.14FA0.65MA0.21PbBrI2|||||15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|a9HAV0ha6boiA8HvcpYWTLaDSHUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.14FA0.65MA0.21PbBrI2. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||1.03|226.0|0.628|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']|['TB4-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1088424619500457|a9LTVrBNznNSCD4bSSuhTv_-Ay-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1016/j.orgel.2017.10.037|a9N4bLlwqTUq1Ka1RMzJ3Dd-IbdW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|234.6|||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab4f2a|a9XCtYgkriwFgp91HdiDKug2CThN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.100000223925397|0.6859999999999999|3.72|0.32|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2017.01.047|a9bA_RDP5lmMFv9NPGSkeignjEIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.1|0.69|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.013|a9k-GZH6LwQgY7aeHH3EA9pPEyMK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.011|19.5||15.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP', 'Ag']|['NiO-c']|['Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.07.030|a9kEElpQaXAVEYpE12uPJ3--t-zU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.03|199.0|0.64|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04538g|a9nTLguHR1Pjo27sv8aqECAfTMz9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.05|202.6|0.65|14.63|['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; TiO2-np']|bulk|https://doi.org/10.1002/hlca.202000044|a9sFVycgJCPS5WJjzJaF1xXovhzA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.85|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-017-1896-5|a9ts2E0c_yIge8UoFpz9GjC_TTvA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.075|212.1|0.725|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|a9wAmZ9a4l09c_QYZqABgEfXP230|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|a9wotLNY11isbfyTAPQQpasrxsvZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4||1.02|164.0|0.69|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; ICBA', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60; ICBA']|bulk|https://doi.org/10.1021/acs.jpcc.7b02411|a9ytPH_Jo27oiLoVOoyZIEGqr_UJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; ICBA', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|223.0|0.7|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|aA0IpMQQB9SMl9lqaTdXDJYhruPi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.6|0.8|15.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.034|aA7xgDRdA_7YEBqlIQe0Xs3AInUL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|0.54|24.3|0.605|0.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']|['DMF; I2; PVA; TBAI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1362889|aA7ybxNGRJyphwdsCTj1_qbu-KRW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|222.0|0.51|13.48|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|aAAEsb42is-uYMJ86t06CjB9XUPU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.0|0.61|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.028|aABiKBnV1BXoASKfyokNNaIwTSGj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||1.01|40.2|0.78|3.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.003|aABoaSb1V9bjse45nYzJurDp0ibe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc06518f|aAVrHtjJgnMY43I2crPSGzmkCtbi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.725|5.8|0.38|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|aAYXucUReVCSS0lmFS-P7t_-Mm5D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -C43Cs4H234I121N37Pb40|Cs4Pb40C43N37H234I121|BA2Cs4MA35Pb40I121||0.93|224.0|0.525|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b01196|aAfOcGlSrqQGPqJvFmhj9fy_YLnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs4MA35Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|199.3|0.52|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|aAi_VeoXXpu_TH5xFQo7nLGdYvcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.86|83.5|0.593|4.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|aAnjcrV-D6ATY1-48vBR3UmJwtBx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|170.3|0.64|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4999630|aAugoq_cI5myK8TPKMLtJrF4zfoH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.97|189.2|0.68|12.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|aB8hT9z1esqJ8kI3ZF6AHGRlbDmZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|154.5|0.581|6.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|aBP3HOBHT7vCGTwmv8aBLXK9FOou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C1000H6000I2970N1000Pb1000|Pb1000C1000N1000H6000I2970Br33|MAPbBr0.033I2.97|1.6000001706098266|0.955|157.0|0.48|7.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.matdes.2017.04.010|aBYqb7yboTmGQefAPSlNfT270TBZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.033I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.0|0.68|14.6|['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|aBZ-0rPYkavvU2eMT25ec_ifAGqc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|235.2|0.7|16.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2018.05.025|aBqlRI4sLa3m2EKQWLvllRabxUlV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|196.0|0.72|15.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|aBv-Ki1IIUHT_BZ8FKBPFFEGwYnU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|134.8|0.655|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|aBzQd1YJ6OKLiuAMeInf_t52El42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.03|210.0|0.58|12.6|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|aC1MXAI3m5wAfLNRVYHZfGughPB0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|220.0|0.7559999999999999|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|aCCG4yrjcFyzufag8XHxcQyOEZyl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|233.1|0.762|19.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05892|aCPekNlY6IUP19Rqx57u4lr_KM4A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C87H210I65N25Pb20|Pb20C87N25H210I65|(PEA)1.6BA0.4MA3Pb4I13||1.07|151.0|0.6829999999999999|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|aCQAL0SU02Ev9NDGVqfrJm9g4ijj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)1.6BA0.4MA3Pb4I13. -Br3C18Cs2H91I57N35Pb20|Cs2Pb20C18N35H91I57Br3|Cs0.1FA0.85MA0.05PbBr0.15I2.85||1.061|220.2|0.716|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903009|aCU2F5fcJX6Q15Cey3xKcfWb-D7g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85MA0.05PbBr0.15I2.85. -Br4C95Cs5H520I296N145Pb100|Cs5Pb100C95N145H520I296Br4|Cs0.05FA0.5MA0.45PbBr0.04I2.96||1.144|236.9|0.7929999999999999|21.48|['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'B2Cat2']|bulk|https://doi.org/10.1002/solr.201900217|aCYcGFGAK8GnVstPk683OIR_Y1-d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|130.6|0.446|5.36|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||aCcxE0PnyxFcxriV86301RxixS68|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.067|197.8|0.726|15.32|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|aCj3vxeCcPTAgrw1RGbwxSwwcDNC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.0|0.603|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|aCohFOktamNtAOmvmqWFjTX1C97d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.0|0.77|19.0|['SLG', 'FTO', 'TiO2-c', 'Ba0.5Sr0.5SnO3-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Ba0.5Sr0.5SnO3-np']|bulk|https://doi.org/10.1039/c8ee03672a|aD0js-6AP4Ba0X9VVqoDV26R4nEW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ba0.5Sr0.5SnO3-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|162.39999999999998|0.7|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|aD9dvqXuRhLiedRcMP9vVJ7g6i2F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|203.1|0.43|7.45|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|aDSIjJIQJARILwSYhhIaTBG9Ig4E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.4|0.75|16.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2017.04.059|aDbRpnXTYgtXMP7TK3B5PzmVDEeb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.2|0.69|13.8|['SLG', 'FTO', 'Cu0.2Cr0.8O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.2Cr0.8O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|aDbgWg5a0yAvT6aRd6S7Ox6fXlY4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu0.2Cr0.8O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|221.0|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/nn505723h|aDeTOpQGCZ-eZGe-IIgveRBtpRSi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|175.0|0.385|7.07|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1246/cl.150246|aDjI8cwiwB1-w3Hi7iDePLzR_9yB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.058|175.9|0.6779999999999999|12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|aDjWT6Ae33jD-c4yCyLla3MBLcDa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.230000131156304|0.638|179.0|0.612|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ca', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1007/s11434-016-1147-2|aDlDn86p4wqMU7WquwlrDmOz1F4K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ca', 'Al']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|176.9|0.764|13.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.052|aDwGEzeAEPgV5lKGNy21fGwZvacw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.902|15.7|0.226|0.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|aDxyYh7AXYLkqW99ZlqzGtoqot_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.028|176.6|0.7040000000000001|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|aE4IqPpYibTf8j9lPToV09UxS6HX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.908|187.5|0.555|9.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc00128e|aEEu0YPUneR8J3DZKNeuilPoLQs5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.76|16.2|['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Au-np']|bulk|https://doi.org/10.1002/aenm.201500038|aEI46ULTXYAQW0-w8CaSx9u3wzK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|191.5|0.8|15.75|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|aEIbUzjaPr4j_ALtErJxO6xNKK3q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|228.9|0.7|18.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|aEJzqXD3pfm6dFxaHq0MrV2K4cZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.1|0.7|15.98|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms11735|aEK-6hdoNV8W4i9j6UcG8nk3mHX4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|118.0|0.3|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JEDS.2018.2820319|aENHLmlPCr6NXh7AM6Cki7N2nfWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.777|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b17701|aEW9yWyuC-tdUdXe-tZKsCaZ5XZw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|0.98|119.8|0.48|5.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acssuschemeng.8b05734|aE_eZHZmq8WyqngZtxuGDAW8r8uv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3400001428857296|0.74|235.0|0.73|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEIA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201807024|aEhTq9wQ5QJ4b94djRtKEw-4sH5B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.8|0.72|13.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.150|aEhXhi3J3kO6A1IDSz5lX3MQ37dG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|224.1|0.74|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12139g|aEhpyDMKTUQqbTd8FJA3pZnjexIG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|151.9|0.674|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1674-1056/25/2/028402|aEr8xt6XEq2vqpU1GgslNE6ulGGo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|163.0|0.546|8.19|['MgF2', 'PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/adma.201600446|aEsLWe1Pmt3UCBmeIqfLjbalMvu1|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53|1.5900001695435149|1.0|193.0|0.487|9.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2020.110517|aEwQOPCLUWesNx9WJph8KxQu45LC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|209.5|0.6|11.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|aEwk78vr6-7RngbW7nOiOVuQd03v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.4|0.68|14.91|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|aEwz1mWn9bWLc34XgT3ez3H9XWPu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|214.7|0.745|14.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nj04978a|aEx3oj_GNrfrvirO1tIoVDQzuLf3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|aF3nGhfkQI0CKomcH0c61gwEOCco|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.77|78.0|0.59|3.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee00896d|aF9VU7ChI0UmeKybXWIcawwRcbeu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.0|0.74|17.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05892|aFChx7ioOuOELsr9_7L1BzzZN57-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C100H600I294N100Pb97Sn3|Pb97Sn3C100N100H600I294Br6|MAPb0.97Sn0.03Br0.06I2.94||0.826|111.0|0.5720000000000001|5.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|aFF57M5lMST40Rtsx-PKF6DqPD6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.97Sn0.03Br0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.5|0.69|15.74|['SLG', 'FTO', 'SnO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/adfm.201700878|aFNF9SFmmITnGcwxlL9B5TdPejR3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.09|240.5|0.8|20.86|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|aFgW-6zTM7-F__IM4aRdFCGszmjy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|208.8|0.75|17.07|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02044|aFh_gu0ee5088p2UWVlxxz59tfee|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.26|100.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|aFqCzgEbFFQfusZCohZ4hwO_ljvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.25|158.0|0.73|13.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|aFuIaBLdGadcJeqwCm5P8nTcbZ81|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.556|9.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|aFv2tJQpJMMd2GOx9NvgQK3tTWEZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|174.5|0.7|12.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.03.088|aFvCivp0gq3Sv_mMZqIXJRc20Xep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.0|0.6679999999999999|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|aFx5o4vcMBMbcE55PtJ4hLLurh33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|235.7|0.769|19.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab55a1|aG1bIRwp-c87UE2qKK-w5U17BtZj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.0|0.769|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b07346|aG3Zd0TLQZxhVk8U0qfVW4SF_MCy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C15H39I13N8Sn4|Sn4C15N8H39I13|(PEA)BAFA3Sn4I13||0.6|212.8|0.667|8.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'LiF']|2D|https://doi.org/10.1021/acsenergylett.9b00954|aG5vMBBmgKeKZcElanAysdh9QJrk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)BAFA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|161.1|0.5489999999999999|8.82|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02562|aGAjyDreDOYeKkJNMYL73NxLXVoz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.123|228.1|0.75|17.16|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|aGFAQw5uwpRH6PMvzPGT03DJ2sYn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.158|223.9|0.7929999999999999|19.97|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|aGMrWVyDhOPPS-oR3Eq-IJE3G4EY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|217.5|0.7490000000000001|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|aGNIPMSrQV2uD03jvhoCYZdKi3-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|217.5|0.6679999999999999|12.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|aGNOMyGsfIKmANCiPMA9XFcl7PPi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|220.0|0.66|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|aGrQLhxidCy6YaueJlQt7lp_Eww8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.7|0.733|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']|['CuP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.inoche.2019.107701|aGvoe5IIjBgFB9woFpxELOi_pLeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.8|0.7|14.56|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|aGyoXMOg3MZXoewCQ2QAvFB7ZgJm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.740000185538186|1.15|184.7|0.71|15.07||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/solr.202100906|aH4hsTzyU-axQbqkbfjWiUOm-aB1|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|209.0|0.6940000000000001|15.61|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2752-z|aH5jXwa9IuaVN4iihcvB9ijlbKeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|91.3|0.5579999999999999|5.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|aH8NN0woJoM_emFXkWlBTE7HhQVS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.87|234.5|0.36|7.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/slct.201701479|aH9WSdYIKPc7VvRX0k1GaEJDe0r3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.8320000000000001|126.6|0.622|6.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1757-899X/303/1/012002|aHPKei7UoPwwJs_ka79SW4cBP-us|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.627000173488867|1.0|172.5|0.7070000000000001|12.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|aHVLepffgKEwB1x5PPNJAhEAWYSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.13|205.1|0.785|18.13|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.014|aHkNM-9eJ1DA8vmQ5UAm85t7r6dY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.0|0.73|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|aHlnmD_-AVoEMR8UuFQrNcd7ZHMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|178.70000000000002|0.71|13.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06558e|aHmlpCDn1q5lIUgFcQXVcKTF3aAa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|137.4|0.63|7.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']|['PEDOT:PSS']|['N2200', 'ZnO-np']|bulk|https://doi.org/10.1021/am506785k|aHsLqEFxoITwUSydbkZFfd3RKF3C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|197.2|0.639|12.99|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|aHtDYVwn9CMgzgp56adiRaEREWGd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|182.1|0.738|13.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/coatings9110766|aHwQjeFTpCGANBKCrLxPkmajANrV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|203.73|0.72|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|aHwT4BYEw7z1129wILwDM1W2lsUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749||||14.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|aHwpOjC9t3A20EdX9HhzjghifT6m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.9|243.0|0.598|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|aICoHLJOSJzVioAa7zpAkBho9b_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.99|80.9|0.5|4.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|aIJyPxY1mLGayqS5xrqxcxG4Kd6K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|158.0||6.62|['SLG', 'ITO', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['none']|bulk|https://doi.org/10.1021/acsami.5b10555|aINHRHMIYR0hHdesbJ0xbgQnu_Dp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|193.0|0.71|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|aIPDtJa2C3IuhQaLri1bQVL159-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|217.8|0.725|16.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|aISEtZcojjuBmJEaCt1Qj80GtEBl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.12|234.0|0.78|20.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|aIWtfRKM3Ic9JSqZgkFES_xn9-3-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||13.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|aIitvA8yH4BDshuVl9MF0anBNxfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|223.5|0.6990000000000001|14.57|['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS', 'Au@SiO2-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7se00472a|aJ2LIeWFZrX0ZcSMrOXCjqAq_-W6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.17|150.39999999999998|0.71|12.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09855g|aJ2P8DLoQJyGxZ8RVc_HuYR8ac8U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBrI2. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.02|167.0|0.71|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|aJ2Qq9SwoLHaYIvKU1F2xIuD3Fhv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.71|16.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|aJ4KaB-kmKd30Jn6oSe1E9YAB8RR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.536|74.5|0.802|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|aJ7IkpJEbfei_Ke4brwjDp3TDL9u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.11|240.1|0.7979999999999999|21.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|aJBlBQDnA4jMV1U55hHnEMboLpMl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|129.0|0.6920000000000001|8.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|aJDWdnmtT16aDtAYRr7GIamiaxAo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|195.0|0.61|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja511132a|aJIOqw38Jgj4rCFUZHPJD2ZNgGci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|224.9|0.7120000000000001|16.84|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|aJLAYEW5hBn1kdUoPQR1uXXZXaM6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|||14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.017|aJZvOadUInY6ie3rd7CkkM4Oc_zK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149||||8.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|aJkIy7Tr0WgnGh7xCYLMKC6Micz5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|217.8|0.68|14.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00377c|aJnXZ3TCc6AT7mSbGbFQOh8B6GqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.991|179.7|0.62|11.05|['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']|['MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201800476|aJveIA7n116mNudpjCjyZesM_S1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.7|0.64|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Glycine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201604305|aK4uBl0zFEIVPUkW1o69vf6kPnaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Glycine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|224.7|0.78|18.69|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|aK5hzzt3Y_o6Z6XSXKqv73F4R2iH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.1|241.0|0.7759999999999999|19.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|aK9XxHSl8gg1lHKUEoKYzL-COcEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.081|214.8|0.784|18.21|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NENERGY.2016.148|aKBqJgcj6MbtBnFqt7oiyUW5vHfO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|193.0|0.67|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|aKEVEy_QNDX7RWgW0CXKrzMj-tpy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.0|0.59|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|aKJsDq_cwSshz1hV5SMNhwNEWjo9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|144.60000000000002|0.445|4.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|aKM9e3L1RqaSoM-tJDZA_3U3c9Of|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4||0.96|216.0|0.797|16.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'V1061', 'Au']|['V1061']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201700811|aKSDdvkOUwxpvx40SVKpcFfV7jgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'V1061', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|230.0|0.71|16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.6b00039|aKy2i1SKGjJZ82tCwZ_6CsYHKKxL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|171.0|0.6859999999999999|10.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C6TA03755K|aKyOWpQc-6sjKpD2iTYROA9xfD5f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C20Ge4H105I60N35Sn16|Sn16Ge4C20N35H105I60|FA0.75MA0.25Ge0.2Sn0.8I3|1.5300001631456466|0.15|118.4|0.46|0.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b00275|aL91rnRU39niMt5Nv2R7VEbzZv3n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Ge0.2Sn0.8I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.3|0.72|14.03|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501994|aLAzH3epzCmlYpQaJzzRbHnGPpSb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.0|0.69|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|aLEU7FKc6MKR4vP2U1eNJcwHTVQ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|1.06|229.0|0.784|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|aLvu9B0jRRJKA1dg9evj8zOiZMvc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.07|209.4|0.6609999999999999|14.74|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201900720|aM1Bb7bU49ozlO5Nt7InPQttnKqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|227.0|0.767|18.57|['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PDI2']|bulk|https://doi.org/10.1039/c8ta02584c|aMCYUHtgCUd71ysa8IsnnwhbEnUM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.042|188.5|0.722|14.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201910800|aMHEZAXBLrWizsiSeQwUnJ-R0CG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.043|214.1|0.634|14.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.8b02079|aMd3T1bwqyNTaQvUdmEkb6A299mE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.04|130.0|0.63|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|aMjiaj4mcCTjSZKrUOL3ox29eiNx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|130.0|0.7|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2019.116178|aNFPT409ttenj-8a1VoUaLwvtPIx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|aNOt2Lg8WRegaGwRW2Vw2R-eVUgF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|227.86|0.7120000000000001|18.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14619|aNVI9w4X96SgViR2qgSzR5WB8FS1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|aNnJ0UETNcs7w3wxSbYYJWx3EkO6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.146|211.3|0.706|17.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|aNu-M0CmGP9XD2KsRQS-dBZzbXrF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|170.10000000000002|0.68|10.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|aNuRY5dZwk5WOrJ8HmyFGRUo2Ssn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|207.0|0.4|7.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']|['SGT-405']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|aNx1_e6i45Q1te1trLNqBgHdhUTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.5|0.76|17.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']|['CuGaO2']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|aNxR0vGYAYT-QPL4SS1_UPgnbNfH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|222.5|0.7020000000000001|15.93|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9ta02094b|aNylFRYuM9dPI8SBDY1GgW4xIHuI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.2|0.68|15.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|aO0MYdNRfP96mb9xJwLU8Mt4IZSK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|53.0|0.2789999999999999|1.2|['PET', 'TiO2-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Ag', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|aO5FmYw7LBTWvVZJpvIqouqOYE4n|a perovskite solar cell with the following device stack: ['PET', 'TiO2-c', 'Ag', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C20CsH103I45N37Pb20|CsPb20C20N37H103I45Br15|Cs0.05FA0.85MA0.15PbBr0.75I2.25||1.193|191.3|0.728|16.62|['SLG', 'IWO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1039/c9ta10712f|aO5oK3szOkG9czFbs_jqxmd0u-sj|a perovskite solar cell with the following device stack: ['SLG', 'IWO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.75I2.25. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6200001727424491|1.092|219.1|0.754|16.8|['MgF2', 'Willow glass', 'IZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|aO70ZNS7cTksP8e_Qkt1xBcqZSFY|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'IZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|203.4|0.71|14.95|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|aO9np2t4QB7jwVfoAPIAFW70g1aj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|218.1|0.605|13.07|['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Li4SiW12O40']|bulk|https://doi.org/10.1021/acsami.7b05146|aOWMmRvzPIyr2_xa90Tp-Ey8ApcV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.915|119.6|0.61|6.67|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|aOX4JpYm6d5oUcFsKRK6cy89ImWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||17.95|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|aObH6BBgXqjSJ4XWL3dM_2w2WBD8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.16|142.0|0.69|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|aOcduY9l83BFYa7fiHA8I40_nqGa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|194.8|0.691|14.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-1', 'Ag']|['WY-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|aOeBC2DRGtX1kNLljSeNxdAAEUBJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.94|212.2|0.637|12.7|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.01.021|aOlE-_qPTIjPZ-iWxO9rMs9BYM9Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|222.6|0.44|9.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2751506|aPDiQP-ofKwbPeavOc7vwKz7RHeS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|107.0|0.61|4.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|aPG2dCOvoAF5TafQqVOG4zIL5KlR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|237.0|0.7709999999999999|19.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']|['WO3', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201801386|aPGlmQJ0ifElSaJFX53PNNnJQ27u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'WO3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|aPH5ttdH0lTJfHfmIF7ZdEJR5TVI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.86|200.0|0.4039999999999999|6.94|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Cu']|['P3HT', 'MoO3']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|aPcQBRmJhlLOz_xvx-1xm0h5Uh52|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||17.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|aPideolFdEZAoPlcPwanLwhCHRuQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.31|18.0|0.28|0.18|['SLG', 'ITO', 'rGO; PMMA', 'Perovskite', 'PCBM-60', 'Al']|['PMMA; rGO']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5029198|aPrSi-lM8JoSglKlLtzfOON6pS7d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO; PMMA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|214.1|0.628|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|aPsjnfGo_iK4AqIsGpDCrV0-a9XJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6se00029k|aPvSPDDyVuKHtGOS4tnUgfZRrFvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7959999999999999|81.30000000000001|0.657|4.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Sym-HTPCH', 'Au']|['Sym-HTPcH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp03396b|aPwgqcEU5NPCDMmymyXvhhnMsP93|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Sym-HTPCH', 'Au']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3||0.8|171.0|0.64|9.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra04742a|aQ2UKqEVEsiXsythfvQhWEx_Hfk2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.15|151.0|0.6579999999999999|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.07.015|aQBDgQUQXJ4A8nQhkFPuzJp-Xkt6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.0|0.67|13.2|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ta09202k|aQFV9JF9IjH6wOQjW2Kt4lgNn2qI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75Cs23K2Pb25|Cs23K2Pb25Br75|Cs0.92K0.08PbBr3|2.2700002420526912|1.514|72.5|0.784|8.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|aQL83GTIKpiHDl9tFVCRCC3y1oZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.92K0.08PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|207.3|0.649|13.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|aQd1NYBZ8b8XJN7pGBse6JYWOCxI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.8|0.607|13.31|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|aQkEZ82ugn4zq6mdkyUNo6vhEsFD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|184.2|0.63|11.94|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|aQtt7vbaeFpf_2a2OwUWsZFupAVr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.018|236.7|0.75|18.09|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.0c01297|aR27WAv1XxcN7lAkxBi2TcChCktw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C50H273I150N77Pb50|Pb50C50N77H273I150|FA0.54MA0.46PbI3||1.06|216.3|0.626|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110110|aR58VeVv0GMWpxVDerNQ2yjJA2j3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.54MA0.46PbI3. -C57Cs3H205I85N44Pb15Sn12|Cs3Pb15Sn12C57N44H205I85|BA2Cs0.6FA3.4Pb3Sn2.4I17|1.2400001322226155|0.7|242.0|0.63|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|aR7JzgP30xHscCs0Gf-wcYE0K2g_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.6FA3.4Pb3Sn2.4I17. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|aR7NTgabJUVuv7pJjwyFsELKdcVk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.7|3.61|0.302|0.076|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|aRBRS_EYorZdZUzhc8CTBprLAtRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|196.4|0.48|8.01|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|aRSfpyNe4ffVq-hVLiPUwYT1pwKa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|210.7|0.72|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07446|aR_eLjf0z--kK3Nskq0ercjHuLKA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|199.0|0.39|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra14321c|aRbFTx7XEiutI37lfHWk3B4tbYZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|151.9|0.6|8.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.3390/polym11060980|aRcz-EnA70P0GsrB_GdHGVXzmvj_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.921|209.0|0.67|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta03741c|aRjNhNmlQFc61PfD0hBC5MeR8KfM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.cej.2019.04.192|aRpaSqN5xQj1mjrpWBI1w1_h8uKp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.847|132.0|0.63|7.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta10605f|aRsTBohaECHhY1JY9Q79hT127g9U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.738|139.0|0.52|5.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.01.041|aRziIrDFOjA-oJUL1N-vp3uRmQ2x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|224.0|0.682|14.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4998630|aS1tVdvAIbfVGDX6vwLwAvLljy4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H300I150N67Pb50|Pb50C50N67H300I150|GU0.17MA0.83PbI3||1.08|217.0|0.78|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|aS3fidtHd9gWXTJbF6EPsExL-ezQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.17MA0.83PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7700001887371206|1.25|132.10000000000002|0.76|12.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1039/c9ta07143a|aSB91JAb-tKih2O7JrzTp32cnbYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|112.0|0.35|3.7|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta07008b|aSKLQVGWgjk-WomyxzMaebcx2mKa|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NSn|SnCNH6Br3|MASnBr3|2.1800002324558885|0.307|12.2|0.368|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00513|aSLiUvp0Uk6-6s2zy1Ocf5qq_cm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnBr3. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|81.8|0.765|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']|['CsSnBr3-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|aSQhP-cJBDht7ecJOXK4zRBDAN_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br6C15Cs5H75I54N30Pb20|Cs5Pb20C15N30H75I54Br6|Cs0.25FA0.75PbBr0.3I2.7|1.570000167410892|1.051|222.7|0.6809999999999999|15.93|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201805660|aSYZggTexI2dBUhCfrL59IWuFirw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.3I2.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|142.5|0.6409999999999999|10.44|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|aSjVUctGNhzwM1d5Xm_AhykKjktG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|226.9|0.747|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS; V2O5']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2017.10.034|aSu_lsKL7mH08j3lwjIIS-7BjsjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|133.38|0.259|3.58|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|aSyqkRNXG5QlDWDkDQQh1Mk1v5Z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.141|207.73|0.631|14.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|aT0qUKbYBdIyTDBj1hQk5ulmU9ZS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|179.0|0.68|11.18|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5ta09067a|aT8jx0M_sFuPCBaAyOxYWgwuGvym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.476|59.8|0.727|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|aTC8_yMqDexSfLUIoAqQLMDvB91l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.0|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.9b01352|aTF7RRLMh5_mUrgmCrFDChwnVlaf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C900Cs100H4653I2490N1647Pb1000|Cs100Pb1000C900N1647H4653I2490Br510|Cs0.1FA0.747MA0.153PbBr0.51I2.49||1.1|236.0|0.77|20.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/anie.201909291|aTMcoT6gtGB-0y_IwRXj3cOwzb36|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.747MA0.153PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.158|47.6|0.633|3.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|aTMrW0uRITaya-MmcWy1S7fXItot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|219.0|0.66|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene; TSHBC', 'Au']|['Graphene; TSHBC @ 5:1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|aTSMDyTyAryGO9rbEAVcchMsXOFK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene; TSHBC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|212.2|0.742|14.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|aTi896ac6jM0y4wFq37l70pROVsG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.0|152.20000000000002|0.716|8.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201503160|aTrtPFuYYBH-elMufBfz1VY20C7A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9747I4980N3553Pb2000|Cs100Pb2000C1900N3553H9747I4980Br1020|Cs0.05FA0.8265MA0.1235PbBr0.51I2.49||1.04|211.1|0.64|14.05|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon black']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02391g|aTsAzlFL6-ZSL_3fAAn7wM0Lvmh5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon black']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||11.53|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|aU0kiGlmjH4fs2RQ9dgNSBK6-vCY|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.7|0.75|13.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c4ta05012f|aUN9DEOc_juTf326XN9mfEYKgVGC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.452|2.7|0.492|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|aUTW5PpAt-ut6_vnjG88lEt07gT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|220.4|0.738|19.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']|['CsPbBr3-np', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00925|aUe8JVJvCa0otAzNkTN4zDN5zjIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|175.0|0.66|10.6|['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Polystyrene-ns', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201700418|aUhlytp45_m4CV_IGuwbaNNp_fCr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6980001810596783|1.179|198.0|0.765|17.86||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|aUjA0JIfUV4Y1HsjXfjL_sTAtpne|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CsI3Pb|CsPbI3|CsPbI3||0.44|3.7|0.49|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|aUrzahyA7uq7tN7UimYDPxtYHN3M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|171.0|0.71|10.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|aUtDTOPbOo68kcVGxqAZC_fLUe6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|173.70000000000002|0.69|11.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-2-MOTPA', 'Au']|['TPB-2-MOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|aUwwZyGIkDn6Q_Iuk7fUeEiNW9SI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-2-MOTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|210.5|0.75|17.14|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|aUzCR2s-BypLP8dFI5EX1ZuoPTzz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|192.6|0.57|11.78|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|aV-FN42PcDVoAoRNYbnoq-bOnzn8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.72|55.8|0.62|2.49|['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['ZnO-mp']|bulk|https://doi.org/10.1007/s10854-018-9273-z|aVAHIAtQt6_0x6gkinCxCL9fomhA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MASnCl3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.0759999999999998|224.79|0.779|18.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|aVG6tDuOO1UMBes3MT-7iAOIT7GE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|122.8|0.385|5.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.6b06291|aVQFqOTzyO_PBwIo2lOxYYAcT-_m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.062|222.6|0.733|17.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|aVUTYOuV5cu0N5wiVgFuXWS5KAhU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C90H251I130N59Pb40|Pb40C90N59H251I130|(3AMP)FA0.9MA2.1Pb4I13||1.06|124.5|0.759|10.03|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|aVcG4WVyYbHcvBECgEBf-bCbxGfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.9MA2.1Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.0|0.698|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.140919|aVduSwNTXgPBLenVuuTK3lKcvKeC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|165.3|0.63|13.56|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PBT', 'Au']|['PBT']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02071j|aVpOrh7CMaix3iQ-sfSfoneyvOyP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PBT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.13|219.6|0.794|19.75|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|aVyT8RBwnQtgBTL9nnXgHrHGG1US|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|161.8|0.73|13.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b01553|aW23L7SPhNisx53IYe0Ky87xIpFR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CCsH6I3NPb|CsPbCNH6I3|CsMAPbI3||1.06|201.0|0.753|15.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.0c00497|aW2_a5skK9GbGpdaoX0FiRwtQBVr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsMAPbI3. -Br2400C1900Cs100H9823I3600N3477Pb2000|Cs100Pb2000C1900N3477H9823I3600Br2400|Cs0.05FA0.7885MA0.1615PbBr1.2I1.8||1.16|180.81|0.8059999999999999|16.92|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|aW30RJRJWkShYBFd2PJ8hqmj-emW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr1.2I1.8. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|184.0|0.53|10.4|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|aW9ZfW_eElT7-wpEdv0_ncg1_4lf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.16|191.0|0.6729999999999999|14.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|aWFkU1fQgG2j9cV7paZ_rPaRdzv1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -Br4033C1600Cs3900H2400I8067N200Pb4000|Cs3900Pb4000C1600N200H2400I8067Br4033|(PEA)2Cs39Pb40Br40.33I80.67||1.1|143.4|0.71|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|aWLQGmR3UpI9NhxoFM9k-Q-Lb5dt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs39Pb40Br40.33I80.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|218.6|0.778|17.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Ag']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|aWahGmxNJS6Z45z5fKw0Qcg54qOg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|174.5|0.608|9.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-015-0711-4|aWdUipROXfuZ-9YnnFxUejYwC934|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|181.0|0.85|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b07295|aWmdtfitx-cQ6_YdGl8Au4jPZQsl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.945|190.0|0.62|11.13|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanodisks', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanodisks']|bulk|https://doi.org/10.1007/s00339-018-2251-8|aWoOCZCmId_Z1hRUIJmjf5OzG_EI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanodisks', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.158|223.2|0.792|20.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b04776|aWpEb9jtzJcS6eq3xfT665LO4I9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.01|['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS; PEI', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|aWwoml15XJ3pU44dO_Fwlc1gKcw6|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9|1.6000001706098266|1.01|198.3|0.66|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700480|aX0HpFUMu9LqRRuISU5WU796MDGs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|174.3|0.696|13.68|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|aX6iVw255asm1b83ZXGxG46dWxLa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.0|0.56|11.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793604718500807|aXCj-8sAx9TjUsAeEH9dH6xsvxwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br10C90Cs10H459I290N171Pb100|Cs10Pb100C90N171H459I290Br10|Cs0.1FA0.81MA0.09PbBr0.1I2.9|1.5500001652782691|1.13|241.0|0.81|21.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41467-018-04029-7|aXF9jQ9GIcGJmWS1XoKcSrGtXIyR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.81MA0.09PbBr0.1I2.9. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58||1.06|223.8|0.782|19.0|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adfm.201908408|aXJzG4h18mAlO4whVxs6ULMPHEqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|229.2|0.6579999999999999|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201602120|aXKPP5OvbPYblGwHibSZocRLlMJh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.03|227.0|0.69|16.13|['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226981|aXNufQQ0GVVwCo7wBnA5EL0qLsD_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.78|79.0|0.43|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|aXY8Wzp4MFPUo7aCZm2jddrLX9P3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|||||19.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|aXi3GP2WZuy7QQOUG8JnfqftFtCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|aXmXqmUmufIoqP1BAZu2etBABMdD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|80.3|0.45|3.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']|['BzTA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.004|aXqHqAct-fAMX1pAUKy08kRTz-zV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|66.0|0.36|2.0|['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2015.03.016|aXtStcMbPIia5-yQOAaTVqfKUc-H|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|163.0|0.5|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|aXyQ4FzHVBP4WFU7AUDdvZOMsVuU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.0|0.0|0.0|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9044-y|aXzZlUQBdS12OQrME-2DB0IS3CTi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|185.8|0.688|13.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|aYT7G3OHHoHBjueP2p8mOZAMbj-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.05|204.5|0.66|14.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|aYZi_N86Q4QpYTfVud7iU54aOKDH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|196.8|0.6809999999999999|14.75|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']|['Bifluo']|['ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.022|aYgLNTZQBp5h8FP-DsrWxykogmMu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVK', 'Ag']|['PVK']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.034|aYhnz0Qusd91aBcmKH2si3I5ASgy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVK', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.4|0.721|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|aYlrUNehQyttSy_5vSBzersv2Uq8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -C18F2H34I12N4Pb3|Pb3C18N4H34I12F2|(F-PEA)2MA2Pb3I10||1.09|86.4|0.619|5.83|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acs.jpclett.9b00479|aZ1tiVh-seckbQ2xfLHYA3_nm6lx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F-PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|235.4|0.76|19.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201704181|aZ7-u6KpIFRQ04puS9SsYx61Pedv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||0.96|246.8|0.701|16.72|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|aZD99e2KrUOREK2wGTLkkjPU5Cjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|225.0|0.77|18.5|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|aZE4JWPnh9OOUjZ4gyF9UUTdkaCT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|177.0|0.58|6.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|aZNWP0inCBp08Q3XYtbgIIXaDQt7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|191.1|0.722|14.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|aZWlgNMKCpUDEhROjo0xTl_vVIfz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|99.1|0.187|1.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|aZkBVZ20hYPgGpAxk-Cq3WaFbBSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.026|212.2|0.76|16.63|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['NDP-V', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12675|aZuPYkznRIFHUsbtmij_47PqkxkK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.03|211.3|0.7|13.09|['SLG', 'FTO', 'NbOH5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NbOH5']|bulk|https://doi.org/10.1021/acsaem.8b00681|a_AJ58bDNyt-xXocCELysoyaCo8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOH5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|178.5|0.63|10.42|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|a_C9TKa96n3eRsWPGYsn31zLlwqR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|241.0|0.74|19.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ee02542h|a_DSnMbE3IYlfshJcgmcUHaoEnuN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|42.0|0.52|2.0|"['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione)"", 'MoOx', 'Ag']"|"[""5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione)""]"|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|a_UEX_8pwRfY4tagxKH0CVVRj6fk|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione)"", 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.6|0.767|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ACE-QA-ACE', 'Ag']|['ACE-QA-ACE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11361k|a_ZWCdRymuNIoiolIMi2tAfvAhOk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ACE-QA-ACE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.5|0.639|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms8326|aa1wN21DaperbJKDkeG4uswWUo1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|17.4|0.35|0.2|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|aa2eVnM_BID7lx8kvoXdnieOKlAN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|218.0|0.773|16.7|['SLG', 'ITO', 'Graphene oxide; MoOx-np', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide; MoOx-np']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201803200|aaB80cydpcGLVIFxr2UwJX2cIjfH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide; MoOx-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06766f|aaHuk0qhO0wfmZx2jxFUWDgCRMHm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.08|228.7|0.762|18.83|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|aaNc8cx1td2PRN-dvF8oLY4us-Yj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.2|0.741|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta08426e|aaOHvpn3sJNhLVzX3hDGcRY6KQhG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.01|201.4|0.579|11.85|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.380354|aaRXk8yLTIYEkv98Vk-alyrU33oo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.8|0.675|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2019.104247|aaSEDEh20iL6LvcGgGgYno4ZNtrh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.8|0.7|12.94|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc05328f|aaWQTi_B5j68BSe8Ll1I5iUEJxhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|160.6|0.637|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00457|aa_drlFr3D9DjwxzaluEc2EvhCep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6300001738087604|0.924|214.0|0.674|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|aacJaaHuaNRaaMPUK3Diy4oObIUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|102.0|0.45|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|aaeTkMNLxTugoyw6DKLM7webZC9Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|181.9|0.6509999999999999|12.05|['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']|['Lignosulfonate; PEDOT:PSS; PDA']|['PCBM-60']|bulk|https://doi.org/10.1039/C7TC05276F|aajVGlq2-8MYPvJYdFqASUcsUsOI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|154.0|0.672|10.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|aaslY80Yz47H5hxI4tougM1BSZOc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.807|131.6|0.575|6.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|aauUhnIvHM8-XEU2jFUCkqnQ3oPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.0|0.78|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-NO2', 'Spiro-MeOTAD', 'Au']|['HS-Ph-NO2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|aazDjBEPPyCdVTSKs2uEtMECjbBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-NO2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|ab5ay0vgto2ratEFJZNxDnkak1Fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.4480000000000002|72.6|0.8|8.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']|['CuCrO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|ab9sAdi4JX2EAkqC1m9FwEHHhp8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.18|51.0|0.43|2.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T80P', 'Au']|['T80P']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|abB7G8_pFQo_UUlYA3x-SCaRzCQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T80P', 'Au']? The composition of the perovskite layer is MAPbBr3. -C95Cs5H477I300N192Pb100|Cs5Pb100C95N192H477I300|Cs0.05FA0.93GU0.02PbI3||1.14|241.0|0.7959999999999999|22.2|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|not processed|https://doi.org/10.1002/adma.202000571|abCQLnNtl5py6PDjzWelPrf4e3qb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.93GU0.02PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|191.0|0.63|14.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|abGlgpZ7TSlRGVQHuY8hl7FHqarJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.58|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201400231|abOM_qmqVRuUfYDUmTaqa02ihuj5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.1I2.9||1.032|224.2|0.7509999999999999|17.38|['SLG', 'ITO', 'Au@TiO2-nw; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au@TiO2-nw; TiO2-np']|bulk|https://doi.org/10.1039/c7ta02937c|abQ4RHd2n9kmhGpF045hLM_MThye|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au@TiO2-nw; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|156.0|0.645|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|abRS0-f7pALolD-RNxznji11bCJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.11|137.0|0.56|8.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|abVbmoDyJv32WDVp4onFxusdXOz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|198.0|0.519|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|abWizQv1YQkqH-QKj-3leXaQtbmM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|161.4|0.66|11.17|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c5ta01200g|ab_uCcNb7b93z82LOcJqyyhwwp0C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|194.6|0.639|11.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|abf8ybzm7EpdGGDOWUqAI6jCpbuP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|183.1|0.636|11.3|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|abhpAoDm-Hrj4_zIbVPtv-2fv9NV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C16H32I9N4Pb3|Pb3C16N4H32I9|(Anyl)2MA2Pb3I9||0.77|67.0|0.7|3.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|abkGEZGSX7PNVS9cP9Gwbe5Map4_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Anyl)2MA2Pb3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|113.1|0.61|6.28|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.15541/jim20160041|aboxdHpMHinjsc7mBiQowF3txfdZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|abqZhcJaEps9o-q3j8s4AMnTV5Px|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|101.0|0.382|4.1|['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ra16865e|ac8UbqARoNlIpTg4eVRwsr_tZQer|a perovskite solar cell with the following device stack: ['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.2|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|ac92CMQKolo0WeOHGxhGzxUs6O1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|131.8|0.4|4.47|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b00544|acEVpDnsWNCZXf5S9Jiupz-40bdk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.05|241.2|0.805|20.53|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|acNeNiuZJk5LvLI5LPXIB3V4Ki36|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb3|Pb3CNH6I3|MAPb3I3||0.92|199.6|0.65|12.16|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b04895|acQfMkEdSB25bnP1xpeKkTWwvlFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb3I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.13|225.6|0.75|19.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|acSRecF4er0e6otshgz4UBUUxKe5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|208.5|0.79|15.7|['SLG', 'FTO', 'NiO-c', 'DEA', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']|['NiO-c', 'DEA']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1002/adfm.201505215|ace6Aqs1yfGqQEI17rVI1Z27lW-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'DEA', 'Perovskite', 'PCBM-60', 'PN4N', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.763|145.0|0.54|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|achMyTq7YcPyE6Sqp85b9hm_yYig|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.637|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|ad3QLy4Yvhi51wduSGWVfCp5AyYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|229.0|0.79|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-NO2', 'Spiro-MeOTAD', 'Au']|['HS-Ph-NO2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|ad4y-D6F5UWtSYhg7brJOAO-ujAi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-NO2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C100H600I300N100Pb93Sb3|Pb93C100Sb3N100H600I300|MAPb0.93Sb0.03I3||0.888|167.0|0.551|8.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/met6070147|adCeNvO0Ys_1gCpZxYjWLODQvOrX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.93Sb0.03I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|164.7|0.57|9.61|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|adDIx6rJ6JCMKeNuISz_NBr-cV66|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.4800001578140891|1.06|243.1|0.741|19.09|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|adQKiP5AN6gS82Ut4D_aA-Ow9EO2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|213.1|0.754|18.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|adRZoIGzmyctS44mXGrGB1MriXrI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3|||||6.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'BCP']|bulk|https://doi.org/10.1039/c9tc02003a|adTTX8k_aGFCqCNQHyL4ynHXM1O4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.1|0.71|16.19|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1021/acsaem.8b00726|adUZxeKlmPuZxPjec6ANIyPooZ6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.0|0.74|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|adYKTkVtVxsqu4C96-frdLNApGf-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|191.0|0.51|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|adbL-GgwTX0iYGvC1nHdb1QN4JjR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|234.0|0.77|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X55', 'Au']|['X55']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2017.03.012|adfhtybHh-BtAPngPNsPnNjRvBmc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X55', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|advMJ0iCQ-ozXs0V6jCJNrz93UwT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.7300001844718749|1.224|175.39999999999998|0.784|16.83||['Spiro-MeOTAD']|['SnO2 Nanoparticle']|not processed|https://doi.org/10.1002/solr.202200252|ae-bfx7EFWia_3FP7OMK0bIck3gz|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.5|0.525|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02843d|ae4N75Hyc4V3d-tGo8Fj3iv0Hqjk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|156.5|0.44|7.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'DTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|ae7vBWj6wjKKlVJoaf6tOs2Wow5n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|163.0|0.44|6.17|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|ae8ZBIIJ0iNm3hvF1OIQXfwos0l9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C90Cs10H459I283N171Pb100|Cs10Pb100C90N171H459I283Br17|Cs0.1FA0.81MA0.09PbBr0.17I2.83||1.024|235.6|0.731|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1221', 'Au']|['V1221']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b23495|aeGGl--l4FntHNJdPvSsCRd-T25u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1221', 'Au']? The composition of the perovskite layer is Cs0.1FA0.81MA0.09PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.732|191.8|0.58|9.12|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.279|aeGJK5u3lvdxPl5zOHDbt4RK2qOo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|191.0|0.59|9.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.04.009|aeX0MswqJyWvW7VHz-PhagC8MHVQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|173.0|0.619|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00573|aef8MGf82iRsvECCPoN7JxH3sY2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|86.4|0.72|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|aejYPJlLdXSmMqB8YqwH7-NuHvC4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.017|218.8|0.6729999999999999|14.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|aej_bju5ICtPPb42wGT14-I9Emle|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|195.7|0.672|13.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226699|aelcBZwVeF4a0vItqIVMfABcA0so|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|178.0|0.65|11.4|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|aet4OzDyVcYAEBf8034P0u0uboH1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.0|0.677|12.67|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'Polyimid', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['Polyimid', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|af1EqKYGX2JIscu1gVPopmNB4FQ2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'Polyimid', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|187.5|0.787|15.62|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|af5TGDXbd4D5GhO2ijAXiMwShffT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.71|147.0|0.54|5.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06232f|afIQYEfDDA6750aeh2NHPEXzcQuG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.586|12.1|['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Graphene-QDs']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|afLC_87HvFNF1v4DUTq1dmleQ9sO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|224.5|0.79|18.75|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|afRWAZ2JPTZqfFh4fXpNmG6jVH8R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.0|0.68|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Cs2CO3']|bulk|https://doi.org/10.1039/c4ra08565e|afSL8FeLoAH2J5Ma0jKYGs4G0KFt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.6300001738087604|1.0|84.5|0.5579999999999999|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|afanXS6r7IlsIh_kJKy4swSkWanZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|183.0|0.67|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01606|afiyC284EwxAl810TH2FkNWgogW7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H515I279N185Pb100|Pb100C100N185H515I279Br21|FA0.85MA0.15PbBr0.21I2.79|1.5600001663445808|1.07|229.4|0.75|18.39|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta07462c|afmI4gV6fCSKINXlZXQFHAxKHrUP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|77.69999999999999|0.67|4.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|afph9gaOFp84ybebQXVL3soKphyF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|240.0|0.456|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|afqWr_pG52k6xVMp3FS1riFevk54|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.4|0.7859999999999999|16.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA-TCNE', 'MoO3', 'Au']|['BTPA-TCNE']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.6b06291|ag-BYkmScdemSlYB2TCX5BNZpasB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA-TCNE', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|165.10000000000002|0.69|10.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|ag0btQlo-NLChI3DSEA6rNFEw7Lt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|189.7|0.609|8.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|ag0fERbpsg0QaBSRHhQAUHEC0b4P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.04|195.0|0.629|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta07036d|ag6xoq0k3IopXFO1gR-RPB18nVb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|180.0|0.58|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|ag9gfQxhNjiWqsP9VUnduu3DsTdK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||18.25|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|agF6qsFYNYpE0NQQtXBoqjTxyWml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.05|230.8|0.76|18.36|['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|agGTJlCl0lJEnj3k9PakZqoPQUbB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|208.2|0.741|14.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03658a|agaoK06s4guSYDtAujCqV4IpV3S8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|50.0|0.608|2.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|agge1T6s1iDjUaJ_mlVgowXocDx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.935|77.8|0.555|4.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TC01781A|agmdVn7zI-XCtsqMGotlBTfoUomH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.097|212.0|0.6920000000000001|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr06278e|ago6xsNPBgy4sjb2O01AIVySg54I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.0|0.6759999999999999|13.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2018.05.114|ags83AD5sumo8oWKIWGswSZoT3v3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.76|105.6|0.71|5.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|agzano1nqUn-Pmby9Zxxtdd16xrv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|219.0|0.655|16.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.037|ah7R9AcOEcotHRNikCTDVDlv8jwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|124.3|0.45|6.48|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|ah8vYDR1iDfnuzIdegQ-XPzLnpQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.9|0.79|18.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b01663|ahCP5V6fBwho7Z3fQOdeLQK4yOua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|188.3|0.74|15.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|ahU-0W7eLuV_DT5PU44tZEpwI_un|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br87C85Cs15H425I213N170Pb100|Cs15Pb100C85N170H425I213Br87|Cs0.15FA0.85PbBr0.87I2.13|1.7200001834055632|1.21|140.0|0.7090000000000001|12.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'AL2O3-c', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'MgF2']|['AL2O3-c', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02179|aht4Ylaw_ViluiWEeT45RQZ5luuV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'AL2O3-c', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.87I2.13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|0.952|208.0|0.57|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']|['TiS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|ai3RPx20gMndaTLoIn0AEUA0eQrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|173.1|0.57|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Ag']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|aiDceqLYDLY_1c23qonhkQeYodjP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.155|228.0|0.76|20.01|['SLG', 'FTO', 'SnO2-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nanospheres']|bulk|https://doi.org/10.1039/c9na00192a|aiDpIH9IOcGv95ISwa3usBoV6cLG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|144.8|0.57|6.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA01824B|aiEsodbF30Rw1margycLhezKzRcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|42.7|0.3|0.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.170942|aiFB5zOpZnXHRZm8URyKRohDtc03|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.79|181.0|0.73|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b10334|aiKHiCK4OSfpQsvaU7Um_vwoqAzD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|202.1|0.672|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b02848|aiMNA3YOFZg2rMe9PSW83ng2Pr-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.5|0.64|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|aiNLSsI2pGcd2tpmfSCUOBROZKyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|75.7|0.75|7.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|aiUfKOF4cQ-wE3szBTxx_Npw-lcW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|114.2|0.77|8.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00660|aidQyRG2fXnHagc_Ahq_fi-SNuBq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.735|17.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|aik7eA7QfsKaLu-8M6tMUXzaT-s9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.104|224.3|0.764|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'V885', 'Au']|['V885']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201704351|ail2HOYYMq2pm0zfE395sN30ZYaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'V885', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|194.0|0.58|10.28|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201500616|aip9to8CRAO7mu7cMnUiZStmawoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.0|0.68|16.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|air6tbqVliisNvN_OfCU3V-iUzVs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5F2H30I13N5Sn5|Sn5C5N5H30I13F2|MASnF0.4I2.6|1.850000197267612|0.44|166.20000000000002|0.4|2.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6tc05069g|aj7BeeHZHQdy8ntnJxNcGzy2JKPZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnF0.4I2.6. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.75|268.0|0.7609999999999999|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/adma.201907058|ajJ3yrRouH2UXjj2G-gf104OwOhx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|200.9|0.68|13.54|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'J1', 'Ag']|['J1']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2018.07.017|ajNtchXXkaR8v4pmLLlqz5odb7dX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'J1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|197.13|0.73|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|ajar6F_OadMcUOaj4COdSSQg02Wo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.7|0.556|12.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.067|ajlZ7maZxaUMDTfJSVWyAGELJhb1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|116.0|0.612|6.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151723|ajqOTk7sFLEVI6CC2u1HcCvLZS7W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|198.2|0.35|6.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|ajx8cvTfP5jyudOVMfae5LXQkAOe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.77|16.6|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|ajxj9clqZheOadZaUHIgLHmXquoM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.623000173062343|1.06|196.0|0.757|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|ak36wsfu2HwKHvX5vCv50EzY-gwI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.634|40.0|0.614|3.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|akBOhibZ5kgQiE3i-CybF1r-4gcI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|214.6|0.76|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.11.071|akJ_GnUYKGcUEZTsH4F1goQcIgVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|128.5|0.63|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|akQ71sWaTzO8fvg5RifkA098myqK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.0|0.703|12.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|akcALmNuMiNHLCy0KJvrDx5yscEY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3400001428857296|0.78|264.6|0.79|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEIA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201807024|akf2Uv4g92F4Ev3cWq3gZLZN-LV2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.7|0.58|12.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|akfzJRzpQg59hTkM8T3DPnm9Qe6u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|227.4|0.615|14.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|akq2Ci3CO35fuUiEw9ya4uTWuCBC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.87|18.2|0.39|0.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta07036d|aktlX2gFCRQDFSBaYRU4RIRK8jfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.15|136.3|0.758|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|al3dEDMY-B8Y5aTC5oFH6xeSlh60|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.6|0.677|15.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|al7l0QYg6ZMAwaCdIU0h5UOmFzSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|198.0|0.56|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6cp07733a|alAKXzUz47BM66VQ49QIymJT9z13|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|164.5|0.613|9.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.10.018|alBaBXlrJOt5St0nFHmGnemzOXQX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.39|18.0|0.513|0.36|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|alR_3QQ3kIGa39XhQ8xOQX5UuT6j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CsI3Sn|CsSnI3|CsSnI3||0.16|235.0|0.3|1.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']|['m-MTDATA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401991|alhOrIk2B1NcFDHZNiFVjrPzEsFq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'm-MTDATA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|169.5|0.596|8.48|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|aloNv55rfoE9QPIMXiUHqgEXv26z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.12|228.0|0.75|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201701077|alszEjLm0XMF36Tbw_URA367y8En|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|189.0|0.775|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|am2Lx-JfU6aP5nrZ5ZiKgnuWefeQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.19|114.9|0.69|9.49|['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'N749']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b23532|am4XzJkAuju-yS5EKgLbFVNvaPkY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|150.1|0.57|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.04.082|amBR-VReeOT7oq37SHMvj_77-xGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.84|213.9|0.6|10.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.047|amL_IcjQbYdq9RcVkgE_wXQ6nZlz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|179.0|0.74|12.3|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.06.018|amMWeJZ_cgb78IqAq0fIMu4Sci5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.506|198.0|0.6970000000000001|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']|['PEDOT:PSS']|['BCP', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.0c01216|ambmQ7W1Su2x9-CUSIVBn-g-dwQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']? The composition of the perovskite layer is FASnI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.026|149.0|0.7020000000000001|10.69|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'In2O3-c', 'Ag']|['NiMgLiO']|['In2O3-c']|bulk|https://doi.org/10.1039/c9ta05802h|amcMtmpvd7DZiEDFcitzHnoxQJ1x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'In2O3-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|135.0|0.58|7.13|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta10605f|ameCdSAkxrdvCqsnjxliTtTwEAUF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.103|202.2|0.782|16.9|['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']|['P3CT']|['CPTA-E']|bulk|https://doi.org/10.1039/c8tc01955j|amewD8BJbWAmeJ3KMAg98GRa8ulH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.5|0.7559999999999999|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|amh11WNKAqTqzwY6satzI5xZ05i2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.1|0.644|12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|amiLJqsbalbumLhwQB0Kr15D9cHq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25Cs25I50Pb22Zn3|Cs25Zn3Pb22I50Br25|CsPb0.88Zn0.12BrI2||1.15|144.0|0.687|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900896|amxNRusX-XHXiHq09hHgVyPYguVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPb0.88Zn0.12BrI2. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1||1.05|219.2|0.61|14.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta12561a|anL6T21gediC2yigCF4dCSFcGU51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -Br3CsPb|CsPbBr3|CsPbBr3||1.53|67.8|0.8|8.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']|['[BMMIm]Cl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20831|anPgMcy0HyE9pzXbtS1MvmsAwXb0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|167.2|0.439|6.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|anRWPohrXqn_8W6aD0KcwGKfp5TT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.5|0.7809999999999999|18.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pi-PFE3']|bulk|https://doi.org/10.1002/aenm.201901257|anS6AUmrdO2F8VyiDsRNjt0jiwzn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|216.0|0.72|15.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|anUvTYU2_Po403uHA-2zdhHWVU0l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|224.5|0.685|16.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|anjmjLtgkz6l572OVIm54QvSwf12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.892|69.1|0.302|1.84|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00747|anl3uXH6rlS0Gw_n8l0yjw_HQztr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.71|271.0|0.695|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|anmQPeij-LsdkfqQQiARdGTw4b-M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|130.9|0.8|9.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04482g|anogGlLQUGNN3bMQvb_qrcmAKhoY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13||1.085|147.6|0.629|10.08|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/solr.201800357|ao3jOMSvTvQ04Wt4VebO-rUo-uUV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -Br57C50H300I93N50Pb50|Pb50C50N50H300I93Br57|MAPbBr1.14I1.86|1.777000189483538||||7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|ao5eKEs8Cnyus6FES-F-ZDR0H75C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.14I1.86. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.05|222.0|0.708|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2545-y|ao6vXgh0eOGcyPhXDnAOd79QP2QA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|186.4|0.65|13.04|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b15710|ao7VzliedvTUS1oWu0Sp1mbt4TN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C20Cs5H100I68N40Pb25|Cs5Pb25C20N40H100I68Br7|Cs0.2FA0.8PbBr0.28I2.72||1.04|219.0|0.743|16.4|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|aoJN8QQhlXambzHSrSAclU5kJOmy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.28I2.72. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.1|0.773|18.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800230|aoSl3CTM4jIwRPcpZnH9QFVmKzLk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.847|11.8|1.197|0.371428571|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|aoa7WecyHm-twMGB_uITtZqDSDIs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.518|197.9|0.6890000000000001|7.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|aocU4RelhFCg4lUa0BPs-qXHp0yp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.5|0.77|18.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|aom9F3l-HOTlIzt7TcGDilSRmuRl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.1|0.61|12.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01558|aorGNO-jE94yvrasr7TlzBfNM5Yc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|192.9|0.491|7.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|ap-h2wf7WHg4V9vw2TZ9lU2k2eJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||0.99|32.7|0.539|1.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|ap5w5hXMKUsDxRfiBpAxO76yoArY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|191.2|0.721|14.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.5b00046|apFPtgAoe5IcwcZX7sKj48GOWPLT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.73|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Li4Ti5O12', 'Spiro-MeOTAD', 'Au']|['Li4Ti5O12', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05762g|apLWQhUkjzykedP5VGJpP1-JwjhK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Li4Ti5O12', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H57I29N13Pb10|Pb10C10N13H57I29Br3|FA0.3MA0.7PbBr0.3I2.9|1.5800001684772036|1.008|194.1|0.6759999999999999|13.21|['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104036|apV-2Mr866UJRP3BMrCupIEhNZl3|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|48.4|0.64|2.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1039/c5ra08102e|apdtPNrtyIJaT2k4lDlm4s8tWJqk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|174.89999999999998|0.49|7.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8060416|apqc2lJZAg8yc3hZCUNalIfpvQQn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -C17H66I30N10Pb10|Pb10C17N10H66I30|(PEA)0.1MA0.9PbI3|1.6000001706098266|1.07|180.9|0.764|14.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|apu_rRhWNXUiFg6hNkKNdJZ8lp5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.1MA0.9PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.3|47.3|0.63|3.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900737|apxXhhOLLtkl7jcdVs-_ge5CnhRi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CsI3Pb|CsPbI3|CsPbI3|1.500000159946712|1.06|185.6|0.73|14.42|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152887|aq8Ejd7B2MZCQOKSkey1YppgOqQN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.129|206.7|0.736|17.18|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|aq8IdsIA-jtPhJuVJhKqitvQ1C8N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.09|87.8|0.67|6.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|aqBA1BKNJqFIM2-YtSHEYmWzAVit|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.72|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|aqJRkiEDDzbIwIlK0kXhQ-cnTV-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|213.2|0.6729999999999999|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08741h|aqKkMdP5N6tq-0j7LAUzH9-Aw6Ec|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br57C190Cs10H969I513N361Pb200|Cs10Pb200C190N361H969I513Br57|Cs0.05FA0.855MA0.095PbBr0.285I2.565||1.05|236.5|0.7240000000000001|17.2|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Sm', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Sm']|bulk|https://doi.org/10.1039/c8ta09362h|aqKmw8F2zG0umW1G2ui45fpjgg_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Sm', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.855MA0.095PbBr0.285I2.565. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.15|168.1|0.76|14.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.07.015|aqPtKJRfrP4N1gqkbdpvBFFaE2qC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|150.29999999999998|0.432|5.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM03', 'MoO3', 'Ag']|['KM03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|aqSvYzMh8SoNOge_C265FTJtEbva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM03', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|167.7|0.529|8.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra21698b|aqYnPYy6JwFrlMZc51zXujBzLh6B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|176.8|0.4579999999999999|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|aqckCTx53p4QiDJmdD4YagvQ_o37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|142.0|0.8059999999999999|10.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|aqeYoJkJqCPraDos0ijENGJqh42a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|162.0|0.73|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']|['PEDOT:PSS']|['Unknown']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|aqpDO5rJbs7fm0TpGI1SCpK_OeaJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.995|237.3|0.731|17.25|['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'SnO2; TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.097|aqsIfIcV6VeoOskBL59L0ZKLK4rR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.05|186.0|0.738|14.3|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|aqwQFD7XG4zDkd_1OpLz5PEaGZm9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.0|0.7509999999999999|15.8|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']|['LiMgNiO']|['PCBM-60', 'Carbon-QDs']|bulk|https://doi.org/10.1038/ncomms15330|arLgAN5MW84dPUjfeicRUWdmOcu2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.2|0.69|15.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|arLn9qmATerscjRq5_A7DzJxhq39|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.742|16.4|['SLG', 'ITO', 'PPP', 'Perovskite', 'C60', 'BCP', 'Ag']|['PPP']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.024|arQHH-AO8AmVhTkOPCv6EIkvFeTN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PPP', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|223.7|0.7120000000000001|16.73|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.cej.2019.123677|arSBTPHm0vcC6dxh7OJvWEIknSME|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.02|120.8|0.7070000000000001|8.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|arVO6nc1qx180rq8JuNKz73ym1gi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.2|0.65|14.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|ar_w5E91eGY90ceQXYyCE_4ryVQt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.11|241.5|0.741|19.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|arcjvfqajPCSendj5rdLMnI1ZTN-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|192.0|0.748|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|arlHpS2N5a5B06qNX-kK_-WPOXvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.132|156.85|0.7190000000000001|12.67|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|arqzJXHQNWFMmXN5SxiAbxasOt3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.0|0.8320000000000001|21.12|['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBTMT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900421|arwoVWyO40y-QvzknjhYF9EAlX1j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.861|25.1|0.67|1.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|aryVr-K4wQBQxEyjC0Z5ktuFQRvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|222.0|0.733|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|as3CKMFhWP46_OCuwhP0mkjzPIT2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.83|156.0|0.47|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|as4cavk_E7tfrtBCR78XiP5mk6Rw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7829999999999999|116.7|0.357|3.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']|['ZnPc(tBu)4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|as5rAFPP9h1k49xSZEIko7NpKKRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I90N10Sb19Sn|SnC10Sb19N10H60I90|MASb1.9Sn0.1I9|2.000000213262283|0.72|19.6|0.52|0.73|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|asKN5cCniZl_BQHFY5W5Hku9hdMB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MASb1.9Sn0.1I9. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.39|15.0|0.205|0.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2019.04.023|asLwDhWdhFtTTI1ziaIbpbaZ8N_r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.034|193.4|0.68|13.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|asRuIizvYh1g-CU9dIo5LE1Zs79j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||240.0||15.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|asYjn4r9ODg1YBquEgasOL8gp2LL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.6|0.742|17.85|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901268|asYt7ZZ5GoTlm67M1Y74KJl5LayK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.872|106.72|0.4639999999999999|4.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|astylZxO0xd4Py6QucxrzHmQjLYB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.4|0.64|13.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|at-KH4PuaKWxLdUKTn6GA7BhCOfB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.7|0.75|16.8|['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['P3HT']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|at2bP71fdua2Z0Z7MrrSwgA-iI1A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.023|201.4|0.76|15.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|at2e5VQP2PJzXiJ_0Fnv4ccO4l8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.7000001812729404|1.17|224.7|0.757|19.89|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']|['NiO-np', 'Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2018.10.032|at3n772cJwhR_QvayKUXDFnrYcr1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'NiO-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|187.2|0.604|10.79|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|at680XS4VTgT-rqUHVsSr-mpxqvk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.14|77.0|0.52|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|at6LicgrAVCFjbx3G0PHtdoW03WA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|178.79999999999998|0.687|11.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|atScDVy8Efe_Ih6Z0JaxzI8Sj-cE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|210.1|0.784|17.79|['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|atUxcyg6F27MNnDHJFUVw5fIVr-q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.0|0.7|15.24|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|atXPRdBUvDA4Bbn-wnkZfxyRrEf-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.125|134.4|0.67|10.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|atYabjsAKJ73nSyyyXa9N3yAg4uG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.092|198.0|0.67|14.47|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-07099-9|at_DydaP6ggnHCL1yuzOrzVICMFe|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.1|224.7|0.73|18.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|atpOu6jvOFHjK8727ojMrJQLzkFa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.0|0.7|15.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.059|atwVhSZF5VG1ZxwmO4Peat06hbdk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.4|0.612|10.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|auAYGSbiBhWEEgCXphdsueuPVqTu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|157.0|0.55|5.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Au']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|auU0-a-9i32IvcyRIxcXFS6FlPlf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.32|87.0|0.36|4.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|auZQGF6uakLoQaqRZ3ksayj9rCRv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi19Fe20LaO60|LaFe20Bi19O60|Bi0.95La0.05FeO3||1.69|41.8|0.768|5.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Au']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00722|auZfVfz7SbS9FJR40d8BXSisMSSJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Bi0.95La0.05FeO3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.14|133.6|0.62|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.075|auexRCKYKQShT_ASTibkDpYGjkBq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|150.0|0.635|9.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'PbI2']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|auwj13JoQwGp2CbV3DylgNqKsTO0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|220.2|0.688|13.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2016.10.025|av-WqFXatNJucYc1CgEWPvEHum4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|154.9|0.7879999999999999|11.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|avO6ExfeOfgfaTge8blE9eW1b1a3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|126.0|0.62|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|avPyyo6d2A6_ePvPT3N_EZ6B4Br0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.5|0.79|19.65|['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol']|bulk|https://doi.org/10.1002/aenm.201702934|avXciE7_ifHahN5bn6g6mkJJPU8G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|176.70000000000002|0.693|11.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b03525|aw64CMS0AbU2VhmNzuig9XbB6iJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|230.0|0.539|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700484|aw91aihWY_aimAcOCn8y2S-FsY1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.06|210.1|0.7|15.62|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']|['PTAA']|['C60', 'ZnSe']|bulk|https://doi.org/10.1039/c8ta08306a|awG3eFbvP7msjSilwHdzuSUD8hVo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'ZnSe', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|166.4|0.677|10.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|awHGPpRTzw3dXAoxJr4qwX_nic2u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|188.5|0.659|11.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|awISxJIrJlLzK-mgkIUgkqbpNhNe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|120.5|0.613|7.21|['Cellulose paper', 'Carbon black', 'Perovskite', 'C60', 'BCP', 'Cu', 'Au']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800175|awKQNyl2u3NLGI4dcZs1dYHVK3ao|a perovskite solar cell with the following device stack: ['Cellulose paper', 'Carbon black', 'Perovskite', 'C60', 'BCP', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -Br204C380Cs20H1957I996N703Pb400|Cs20Pb400C380N703H1957I996Br204|Cs0.05FA0.8075MA0.1425PbBr0.51I2.49||1.08|220.1|0.737|17.64|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']|['Co-Porphyrin']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.9b13278|awLgF0Pc6RKw566_vLvCO8m-6a2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.3|0.64|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.087|awM8M8WBRqkQ08wE1-28eIGbPfm4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.43|187.4|0.5720000000000001|4.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|awU8PwRNoWCJqAuxKQnd7sx5q_S7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.0|207.0|0.54|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|awtffgbTjUOfceBRiPRdk_nHlj2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|214.0|0.62|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZnO-mp']|bulk|https://doi.org/10.1038/s41598-018-20296-2|ax4W0wcpfTY6Ms4rJ14wzPIvXcH6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br41C95Cs5H491I259N174Pb100|Cs5Pb100C95N174H491I259Br41|Cs0.05FA0.79MA0.16PbBr0.41I2.59||0.89|165.0|0.284|4.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201801403|axBbkOnZGBAkIcj0GHmLaayjAtfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.41I2.59. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5600001663445808|0.98|210.9|0.65|13.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|axMG5KhD1WdETm1UUZqj2o3vlpiX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|0.86|52.0|0.68|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b09300|axMpN1vK_Y_ZRX_G7X6fSZApruhu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CsI3Pb|CsPbI3|CsPbI3||1.08|168.2|0.603|11.01|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.201901787|axP-9COuM2MXeqyYgK9ZNux8Gy74|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.12|196.0|0.69|15.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|axTXzwewf69rM1yUNc7rbxqOfxF6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.42|0.76|17.43|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuO']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|axZdMNi7vfw_nFXnkNpu-i7goG8a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|206.0|0.69|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602785|axg8apnzx23Mme6yMqW4Ew877xiP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C10H57I27N13Pb10|Pb10C10N13H57I27Br3|FA0.3MA0.7PbBr0.3I2.7|1.5900001695435149|1.0|224.1|0.8240000000000001|18.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|axiotfqXeyeBOB60zPAQiL3fQm4G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.013|202.4|0.716|14.68|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b02612|axj_KSHAvtKfehIDgO-2ZIdrUY4a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|164.1|0.74|11.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-4-MOTPA', 'Au']|['TPB-4-MOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|axjhMXk0uRV0RyiuOTz8txGnQH5g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-4-MOTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8029999999999999|201.0|0.644|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|axtR-DyjqET6sIVItItbjlIDgDYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|198.6|0.59|9.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr02866c|axuk6FUSvC4iV3gErSIzFAEDao6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|241.4|0.71|20.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|ay0SWXvJVXqclMYB3-lfNtalDRs1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|ay0pUhk0cNMPkQY3k3all6Wv0TXl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.353|0.8|0.42|0.02|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|ay400QEycy79fPXuGS0xRZxFcVie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|145.7|0.603|7.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|ay6fRMjaDALU6YqamuHnBiiiKqCH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|198.3|0.6559999999999999|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M6', 'Au']|['M6']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.041|ayABJEv-0TXaKLkWdR2Bq1LVYdpK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M6', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.0|0.7959999999999999|19.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700484|ayO_6VyS5AUO8Eq-rs2ARb32hIAk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.933|216.0|0.61|12.21|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|aySVUzj8Sy8l2CLw5cnYh6JboPxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.9|0.76|17.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp06953c|ayWfHqg3hVtXCttV9d5gQykvIHvX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100Cs5H517I255N183Pb100|Cs5Pb100C100N183H517I255Br45|Cs0.05FA0.83MA0.17PbBr0.45I2.55||1.14|212.7|0.73|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.010|ayY5TTLC2K_cMvcaBAbgrnTEab8a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|179.0|0.77|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|ayfsDmFgJJU2CT1nH1FNpyo6Rg81|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|175.7|0.6|8.79|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201800669|aynITMC8QJEdCZH7R-uXtQWto7XF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|0.85|118.2|0.57|5.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502458|az0HCPqUyb1DlEeZZoBzSOzZihZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.8|0.5489999999999999|12.96|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|az6LNer6YZH89yUWyxklOah-d6Ln|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|159.0|0.6990000000000001|9.66|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|azCZor0Yi5jaQN8IRebcx5mjt3qe|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|210.2|0.67|13.73|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|azJPTyxj6CeXt8ykTLlktUsLMKHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.3|0.69|12.95|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|azLjquny0CZwOfs9GYuKzXKQ-QXV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|223.6|0.722|15.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Carbon-nt; Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b18530|azX2hX-IOSKfFQHnz8Wer_wJptG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Carbon-nt; Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|230.0|0.705|17.2|['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'n-Butylamine']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|azY6PSvlfw1BUARZ5n7U8X9BRfaY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|219.2|0.737|17.17|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|azdIJNiOKmzIOYf_yl4CC2Du3PUl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.08|210.0|0.66|14.9|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|azdQB4MQg1RBlRURDRDnozrXNOqi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.48|8.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|azqfyEkNrvylTre6ufDTc7nHZSD0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']? The composition of the perovskite layer is MAPbI3. -CsGeI3|CsGeI3|CsGeI3||0.074|57.0|0.27|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05741h|azsp7Cby6R6_jMEtVxILC6X4SGze|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsGeI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|173.79999999999998|0.5|7.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|azv2ArP7AEL-czo5eQfeb6wvqvWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.15|221.0|0.8|20.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'TAT-t BuSTy', 'Au']|['TAT-t BuSty']|['SnO2-c']|bulk|https://doi.org/10.1039/c8tc04231d|azvpm_sfdB2NVtnZkX5FIYUgGqd4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'TAT-t BuSTy', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -Br27Cs10I3Pb10|Cs10Pb10I3Br27|CsPbBr2.7I0.3||0.67|17.0|0.31|0.38|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00103|azzlrivpKjwCvnrh6KNd5VMOK2A0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is CsPbBr2.7I0.3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.11|207.0|0.727|16.7|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|b-8wCRfwQDT6DEL5NH9f0u8oRfd-|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|209.0|0.73|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|b-I41QNf8S-ogQ4hk7ozXPvVGJwV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|187.0|0.73|13.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|b-KxESgHBsLc_grtQiZm3OUo4fen|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.022|10.6|0.75|15.7|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|b-iX-1lmPeAsZhjhvJWDImj1f1eX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|209.0|0.66|15.25|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.005|b-ywqhgRyQDKpTCDWYkytbgwG8f0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.0|0.66|15.1|['SLG', 'ITO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['c-OTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C4EE03907F|b00uI-SlktFfKZe-V2OOuISr2WyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|155.5|0.58|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|b06fUkNDHmn87IP95TJ1AcRPsuAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|205.0|0.73|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01939g|b0DhcMjrs9CZwx2JKYtXlzAnF1nF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|225.9|0.595|13.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|b0xq2hAIlREyoIZFNrfQzp9tJLeN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|162.60000000000002|0.56|7.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3cc49458f|b10piVZ0knl1x4JZ-T4JjUv9dn-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.86|184.4|0.76|12.0|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|b16FjBxHB9TY7sBS57tkpnd-2Ay5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.280000136487861|0.47|203.0|0.4429999999999999|4.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|b17sJkWasdmMA9HOIYc7UlldYMrr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5800001684772036|1.04|235.0|0.77|18.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|b1888jpB7ahckt6DM4QygEmZ8DHI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.0|0.685|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60SB:TBAI']|bulk|https://doi.org/10.1021/acsenergylett.7b00147|b19NjMHvDRidy2UgHIrs5JLPLbya|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|232.5|0.78|19.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|b1Adcr1oatq2ZOdXhhlz-qvh02S_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.0|0.62|12.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201906017|b1FsvavEDWKLJAu-UhHuitQ50oPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NPb|PbCNH6Cl3|MAPbCl3||0.66|0.25|0.296|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|b1GcOK_Zns7IcvqdNMK4JG8DOp6f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|194.0|0.6890000000000001|13.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-016-5196-8|b1H2jgOmkQ0eAT1BBBhiQrfujzpJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|132.7|0.63|9.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|b1Ho379a39KtdQ1hBiPRy-9uKHxW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.731|53.7|0.37|1.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/2953592|b1Odwtfmt8w26Mvp2CRo_TNnh6zO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|0.77|15.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-SH', 'Spiro-MeOTAD', 'Au']|['POSS-SH', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00050|b1Pqyb6hFAAPxqFFSWUUyGszAjz-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-SH', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br27C47Cs3H243I123N86Pb50|Cs3Pb50C47N86H243I123Br27|Cs0.06FA0.78MA0.16PbBr0.54I2.46||0.98|180.7|0.65|11.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201701225|b1WhcIEJjlvptb_EhRbbQKAfLi4X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.54I2.46. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|60.0|0.73|5.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|b1iZJ-lS5jivOjO2p7PXC7DwmLNF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|180.0|0.742|13.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|b1m6JqvBLVGQYzjsCHgf3wART-d_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|b1zMgmtX2aTy3Bu9IDSXfOHZweK7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.6|0.74|15.34|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|b2Ar3rxf_Su8FqeHSlytNQsBBgeL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|220.0|0.742|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00801|b2LRuwbgUJaJ_jz0NEG43DJo8IU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|179.0|0.687|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']|['5,7-bis(9-ethyl-9H-carbazol-3-yl)-2,3-dihydrothieno[3,4-b][1,4]dioxine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.5b00283|b2VpOqwUL-xPVOeZm8GrKAhjI0Yq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.44|0.8999999999999999|0.25|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|b2a7qfmStKqFOFoU4KgwH0JbSu2I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|157.0|0.77|8.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovsksite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra24205g|b2aoEairg1N3I6bJ4C6IStmp0kiM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovsksite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|201.5|0.74|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.07.112|b2jLghHrTfyu5OroK-cqR3P9CstV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|148.5|0.7|7.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.034|b2kkJ8nPg0bBmdqjl0Nqd6EW2BOz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|159.9|0.445|5.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2017.07.069|b2lp4BYjkJcXZIvQzxG3lFpj91An|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.01|210.3|0.71|15.32|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|b2npmiTbmI089a2fzWIPiT8X4ZXD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.71|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|b2rq0rAcmkmf_aKSXAUbTSlctK2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.25|42.7|0.449|1.3|['SLG', 'FTO', 'C60', 'BenMeIM-Cl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'BenMeIM-Cl']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|b2uGcOo-sUyrZy7bmRb7EEMyE3vO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'BenMeIM-Cl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|191.0|0.68|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05667|b39AQjTh_xYtSJNBcIAgUMMEvF-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||19.3|['SLG', 'ITO', '2PACz', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz', 'MeO-2PACZ']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|b3JDkuXucLaCfSNR-Y9Y9h7toex9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.894|168.15|0.737|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||b3V71ve0g8QrvTSYNAXtibwO7KFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||1.07|230.0|0.736|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-BDT', 'Au']|['TTPA-BDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11314e|b3VJ364futjZm1RDyNMpglWsgmam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-BDT', 'Au']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|202.8|0.755|14.5|['SLG', 'ITO', 'CoOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b10803|b3b2FwL84bc54tMPk9y56Wzw-mKf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CoOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.009|4.72|0.053|0.000225144|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta10901j|b3h-LtYPCjfv-nkO1cWdSvLW-zj4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|168.0|0.7040000000000001|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01563d|b3iz5N7iYl9sriYHXSvpE71uEAEC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.3|0.73|13.48|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793292019501261|b3oEdG4cPxv5cs8UNH8uREd1Sypn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|137.0|0.67|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201814024|b3p9WMb7TRSXB8Ot6L8kzE2zGexg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|192.0|0.6|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|b4-AAwD-iGR4NJrVWCuF_yGOzl4-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.363|59.5|0.244|0.57|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7nr07001b|b45dsAFOjLwSUFZdfu-wKT_YMNY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|118.0|0.352|3.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|b4BZx0jMNniWqXfHfTT745SS-eOt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|134.1|0.72|8.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|b4KY4cARqEqUk55mNdrpVcbGoRny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br20C18Cs2H93I40N33Pb20|Cs2Pb20C18N33H93I40Br20|Cs0.1FA0.75MA0.15PbBrI2||1.13|200.0|0.6|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|b4ROc3aoXuRYRKCiAYLb37shy9Z9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|230.0|0.63|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07369g|b4UL_YYniYM056Kflcb-9KjyXNu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.071|223.4|0.792|18.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01221|b4fDzBgz3sdyLZmCr1-L9zH64QE_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|125.6|0.52|4.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|b4jd-UZc76PyOzCeHNYFjNEdgyAN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.6|0.66|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|b4lOA6zrpiWrqDfZ1DTYsh7sDzRC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|208.0|0.644|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|b4pns7WQkevp46eRn4j9w1Ee_kwH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.14|1.4|0.37|0.01|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@SnO2']|['NiO-c']|['none']|bulk|https://doi.org/10.1002/adfm.201703068|b4twLp7FywAe6z16AKLBI2ZD4BtQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|199.5|0.755|15.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18402|b4yFp4L_eOfKJRPZVhetiBmqYPq8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|222.1|0.72|17.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|b50mnjQ4iTjhtz5eTp8TKwSKkOut|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|204.81|0.61|11.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15218|b5183gbWdQZWZf8vR1lHITHJrckH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.142|165.3|0.638|12.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|b56TXWFjnM917j8pUs5-i30wkqGM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.0|0.715|16.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|b5CdILEHBjhD0230XEK6xz-SOUfY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.91|230.3|0.66|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|b5HmXlNuE73hxhzcOzaNrFOMVjk1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.7|0.809|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|b5POaTgoKbJk9NF7a53rUVmgKifn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8|178.0|0.53|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.1228604|b5PtVPBjhr6HAQyXZHSXKKk_jNDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH54I28N9Pb9Sn|CsPb9SnC9N9H54I28Br2|Cs0.1MA0.9Pb0.9Sn0.1Br0.2I2.8||0.7879999999999999|110.0|0.551|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|b5Ug5YvakkixI2qCghCcondrt_57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.9Sn0.1Br0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|121.0|0.6609999999999999|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2557|b5cR54twO603czzHojm2VszTq6PT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.4|162.0|0.35|2.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.026|b5dLu4nmN8PP4RnlCeLataphuivp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.5300001631456466|0.96|198.7|0.62|12.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|b5jzWYcIpUGqPMf-uxwwzr9s2jWN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.8|0.75|13.01|['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CuO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|b5lvP5T-Z20zXDyDpZx7hUrYf6n4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|212.7|0.73|17.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta01755k|b5ojmlMCCMq7fZvNMyiBEcqPeZzH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|64.0|0.55|2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|b5qtOmJowbVF5lVBkNvboIq18yT_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.077|195.71|0.773|16.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||b5wgTv9sObxXTE8iWnKh4rgRA0Gr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6040001710363507|0.88|184.0|0.4629999999999999|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|b5ySXUYaUfVPzepE65x6rlYiHR7y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.97|209.1|0.578|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|b6Im_l4DqJKvUQ3zn6HXFF2xz91j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|166.1|0.7|10.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|b6PgNC-wkgR6rs0yXdM5SPWP_-Vd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.51|9.4|0.61|0.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c6ra28190g|b6Ve4ubPpDLgdHuJl7c_6lj0uxBd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.0|0.777|17.56|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800173|b6aPdHxptIfd1PibtM3KLNA3Iuv_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.118|224.99|0.7829999999999999|19.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|b6sCez3TjB7p3yYDVM6MJXCb2soO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|169.88|0.648|11.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz5005285|b723tH5K_Safqrq6MX8tAM6rxEoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|174.7|0.73|13.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|b73ncEuiMDiVLUcBAhyDjwXpJ3uh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|201.0|0.613|13.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|b74gvy-yxAxZWdsRsf207oy8fL6w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.6|0.67|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.016|b7Ka1goE3mecECFcicq6k2vFQQUa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|204.0|0.77|16.5|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|b7NqFu-myWOHJYvAGJOwdkfWtSOP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.8|0.65|14.11|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.105|b7PT7N0vmOh0tpfF8q8ytAXSbFyk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.081|220.0|0.721|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr06278e|b7_O6nOFgLhdQNhCpKC8gP_00D08|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.0|0.738|16.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|b7aYY4mHsm47bo8HAvNai0kaWGrX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|149.0|0.39|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|b7i0XESlIP4JITVBrAL5drl-5y7e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.412|72.0|0.777|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|b7lNmxWFJ2gI7y6p-0x84dgXv--j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.5|0.732|14.42|['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|b7xj2S3Nj-zzW3jJEqu-A0-xbxlU|a perovskite solar cell with the following device stack: ['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|b8-__1KMryFC9obArJoxNS_Y-e0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.083|210.2|0.622|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|b81Xzhhdk-T9pA913KeSjTttSIAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.05|232.0|0.7|17.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|b87zqkexV6_ZiA-OqKhk6bIpkwFz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.909|151.0|0.71|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']|['FU7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|b8824hHT6gkxzl84zwZRYVkXSrMf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|170.2|0.488|7.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17338|b89tEwCI-ss-_3Dw2WXzI6rNqHKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.928|175.0|0.7|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta03741c|b8A9TnlQANwMx3c4KlL_SwhQop30|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I10N10Pb10|Pb10C10N10H60I10Br9|MAPbBr0.9I|1.7200001834055632|0.975|154.8|0.59|8.91|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/C6NR06670D|b8blyrIPLhgGo2WoYTppqIYlrc3T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr0.9I. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|220.0|0.72|16.7|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|b8gnKDd2izI0KK31DPJOtbb6sESa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.18|227.0|0.733|19.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|b8h_d2tqxd23xsUL_5V_pGqMJZwL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.843|85.7|0.721|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|b8qIEWI66P8yxBQXK0vH_8fFiLu9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|221.6|0.648|14.26|['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Li4SiW12O40']|bulk|https://doi.org/10.1021/acsami.7b05146|b8sfhC4OCRYM50gRORcZjVDDJFie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|165.6|0.71|11.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nj05941a|b8tjVls4-tlzNPUbDhSRoxwP6Xex|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.963|137.10000000000002|0.61|8.05|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-mp']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.mattod.2017.12.002|b99hbizqk6UutOx9pWSnYip0xk8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|174.4|0.49|7.2|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/adma.201306271|b9MjyxXk-k4YFZTwjygmjbE3JMUQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.2|174.3|0.693|14.45|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|b9OCNUyorMGOb7GtzIuwozo5HaLD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.016|9.3|0.47|6.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']|['3,6-cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|b9Ph8O04XCpvXrtAbqb98RQvvNEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.50I2.5|1.6300001738087604|1.02|208.0|0.73|15.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901372|b9QxtrtX9fNqSGiFu0DCY2Ja1px0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.50I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|147.20000000000002|0.43|4.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|b9QyCoPAyfpL9jTExSNGUp5wrJdL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|136.0|0.63|6.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|b9SXtrSxqkJT7NhrPMTFynR2h6DF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|221.6|0.77|18.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02556d|b9UVN0N0bPZHB3avOF1fTbPvb-qI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.4|0.73|16.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|b9VsTM4KofkcKKgm7YUp6MsDtwpa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.4|0.585|11.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|b9WPNtuoIsWSVx2W_C8h3Ete1roD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|117.5|0.61|5.97|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|b9aElHS1ddh74AZSBF3olVZEgfHu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.348|217.0|0.515|3.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|b9fnkUxsZ0sqCoCq2d-pmc6ZnY0S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.9|0.759|18.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|b9occ7FpYucvrEv93OHyd9WR8k9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H542I300N123Pb100|Cs5Pb100C95N123H542I300|Cs0.05FA0.28MA0.67PbI3||1.093|227.4|0.7879999999999999|19.57|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|b9x9YI6E-54RiEG_KokgE4190fdo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7500001866044976|1.248|149.60000000000002|0.7559999999999999|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|bA2E66D4dB234wzR9xZkxwt16QlJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|219.4|0.7809999999999999|17.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201702248|bA7pFCKxQjNQGPKK7rtJ3ds7V8Sz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.08|226.7|0.78|19.07|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b09238|bAG6YXtcRUrxjy0TdQbtBuCatZ9w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.04|203.5|0.74|15.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|bAIfsfx37QRyxnpzWQsZs1fvEoGC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||1.02|141.2|0.645|9.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1002/adfm.201906615|bAMS40dLUDlIZE_7fBe05go3U-ad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.616|144.60000000000002|0.406|3.62|['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.047|bA_lMowN8gl-NZ7DfhRUmrU4hxnJ|a perovskite solar cell with the following device stack: ['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|bAj8oQEatOO_ziPRq3_OAlJasa0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.1700002313895768|0.72|43.0|0.56|1.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10739|bAp4XB6GtJSaZhT9Q588-Dw8qq6p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|197.0|0.6459999999999999|14.38|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|bAqIDe_-p-aVcnTJkKf8G8XXuoAI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|208.41000000000005|0.7490000000000001|16.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|bAs4pvNQ1HBlUGmtHQoSXzXWPj2y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.0|0.69|14.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|bB7XEfGXRd33Qsc7JvbkBDy0zpcD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.4|0.7809999999999999|17.46|['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']|['FTA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|bBF5kmaNcKJmSo0cxMBP1co0fsri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Sn20|Cs3Sn20C17N34H85I60|Cs0.15FA0.85SnI3||0.37|162.8|0.61|3.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b03194|bBFgxc-Ac-SHfzS2ilkCp_meDr23|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.5|0.659|13.99|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1039/c8ra08940j|bBPuoI80lss815SiF5z4Vg9QUqMe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|179.8|0.7|11.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|bBW_cqgdsJ31k14TquHUjOjBV0lo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.02|192.1|0.617|12.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|bBb6ahgneaAS6h3uT2qgFz056qRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.8690000000000001|219.6|0.527|10.06|['SLG', 'FTO', 'PEDOT:PSS', 'TPA-NAP-TPA', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS', 'TPA-NPA-TPA']|['PCBM-70']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|bBb9YmoXuY1RrhIUh9wcuRM14dEj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'TPA-NAP-TPA', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.892|200.6|0.55|9.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA02306H|bBdol19cvuqOfO_TZRHw-7lVTG1i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C16Cs3H24I13N2Pb4|Cs3Pb4C16N2H24I13|(PEA)2Cs3Pb4I13||0.921|102.3|0.46|4.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|2D|https://doi.org/10.1002/aenm.201902529|bBghjlyMUp_w2rCHb48_VlSWVs3m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is (PEA)2Cs3Pb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|226.8|0.7290000000000001|15.87|['SLG', 'ITO', 'TFM', 'Perovskite', 'Carbon', 'BCP', 'Ag']|['TFM']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900189|bBmO0kjRveiB16vzyT_Elk44g6y1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TFM', 'Perovskite', 'Carbon', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.1|246.9|0.763|20.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201901241|bC6zMj7GxM_EeLh-M66DgY8ctpU2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|217.0|0.74|17.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105552|bCBAbdrqYqievNxl868897w9uogp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.57|150.0|0.6729999999999999|5.72|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|bCVbZL-bIQ8F6x-x4aoNcplZzEcA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.39|52.1|0.15|0.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201801824|bCVgclLqqvVTRCaK2ypZbgnd-Vxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.106|201.57|0.779|17.36|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.204|bCd1V9Se9-_0-EUygmJ1R_8rGior|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.223|75.8|0.42|0.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2016.04.025|bCxfFOIa58NM7vzrgdV9p7IeIn3Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.088|205.6|0.685|16.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|bCyV1d3l7TiOQycFYM0rEyHTMp2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.09|220.0|0.78|18.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|bD0YRsQbUpku7HwDpYaTEZttnDHb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|101.0|0.43|3.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|bDH0-nNJHY4ouppZB3dNyv0r6b3z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|76.39999999999999|0.75|5.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|bDLQHjIQw29U3yZttsH-Dpty_59E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.01|138.6|0.57|7.98|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|bDYOFAFbNwIe20ao63_bzTYc0Z9e|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|182.0|0.72|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502009r|bDYpFWG5lTytGCVPeHbm-xEK9E5M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|bE-emQqloHSn1YG9Gq0WifzTl4n8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.2|0.61|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|bE0CIWEf302m8MpaMzn4dsGMYyhS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.3|191.1|0.481|2.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|bE2bsB4V0b4dKjKJcprB3ChBii9M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.8959999999999999|58.8|0.623|3.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|bE7OELIEI6quYnjktm954U9BsxA1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0800002217927744|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']|['NiO-c']|['none']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.048|bEORrY_QCSX-nFBiQGAWCgq6qw0b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.04|4.699999999999999|0.184|0.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cr']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|bEbnBlS2AqSGIS2yjbl7aTuye8BW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cr']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.5|0.71|16.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|bEjJBRKSDVr_A13sgf66I7uOXZl-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.0|0.703|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.15541/jim20160584|bEk_yUBGmJcKxozkDUlA2NiIZ1km|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25C100H525I276N175Pb100|Pb100C100N175H525I276Br25|FA0.75MA0.25PbBr0.25I2.76||1.1|225.0|0.75|18.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsomega.8b01817|bFGowby1O35XnNU91dOOiF-U252b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.39999999999998|0.58|9.79|['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSe']|bulk|https://doi.org/10.1021/acsnano.8b01351|bFIhtaMGDQ2n3rWdjMPjCFMd9U-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.084|58.2|0.27|0.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|bFPY_qp6Er5HQm4E_Q_IWLa9Y_aJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|200.0|0.581|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|bFQs6V0z9xTkygmwsgBXn5zD7OQt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.0|153.5|0.688|10.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|bFVyfzvjNJHxYhA-873utV9ej3QS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.8|0.6579999999999999|15.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b01061|bF_uPdfbsmSbJjOAoB_m0hDif2Pt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.948|132.48|0.667|8.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|bFlnnskppJ1sa6rXL9PDh30Ez77_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||1.28|53.5|0.542|3.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|bFrv1V8RBQjLrVJuTt_K-ZCnsl46|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -Br30C95Cs5H484I270N181Pb100|Cs5Pb100C95N181H484I270Br30|Cs0.05FA0.86MA0.09PbBr0.3I2.7||1.15|246.0|0.78|22.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13876|bFwGYJaMPVMnPMeczhaTT5ZF3V42|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|142.0|0.6509999999999999|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2557|bFwXWfHL87rJ4-XW_vWtI2HLtkcl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.71|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|bG2hgyC6nKBAyC9IRb8kG8Np9td-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|218.5|0.72|17.07|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|bG5ospmxZp032Vvg67OkWvb2PxnC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.3|0.74|14.41|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800222|bG9iswpS9-2Ue2z_lmXLyR4yM0xX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|228.2|0.6|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|bGGaUmASHQLjaLkdXLGDB77K5VwZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.6|0.74|15.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3; MoO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen', 'Cs2CO3; MoO3']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.057|bGTFRIASFVd56KDYFKfbZgaW8Gop|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Cs2CO3; MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.97|236.7|0.489|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.099|bGWQs0EPeg7hQGoJ30rbyqRmXhJI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.132|226.9|0.748|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|bGYR58I4KgefrMQTsg2xhTIDCcU8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.19|174.8|0.69|14.41|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|bG_9U3g4Has-Sh8Irc4N0tplUS4B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|203.1|0.723|15.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06716a|bGhsaSJA0YY9r1_jFGHijdgt1r-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.82|285.0|0.66|15.0||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|bGnRfm9G8DMiC2nqybifo38rWnp4|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.539|11.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|bH-78dnz4YUjsj8ILnLFRisXqMuY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|126.4|0.65|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|bHCgzY15omVitqwszsDIO76HxG52|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|161.20000000000002|0.42|5.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600848|bHLmd5BAZC3eQvph-Tj8xgf5zgdR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C50H300I141N50Pb50|Pb50C50N50H300I141Br9|MAPbBr0.18I2.82|1.6040001710363507|0.887|172.51999999999998|0.594|10.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|bHNBN9ZXGjKd6pgldPq8npHRg1Av|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.18I2.82. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.15|210.1|0.71|18.17|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02901b|bHSFOiQ5QBZibJY9YuTcvjdCKucb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.125|223.2|0.696|17.98|['SLG', 'FTO', 'SnO2-np', 'Choline Chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Choline Chloride']|bulk|https://doi.org/10.1021/acsaem.0c00038|bHT0LENW0R91EUT2T4FDviIvUnNW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Choline Chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|159.0|0.722|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|bHapBBQhUgGRItilIvVFv7YWicVV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|173.2|0.573|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-14920-w|bHchprUqWu9-7S3w41xAREgq-t70|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.93|198.0|0.57|10.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|bHeobYtzTo6jDnYyovULOqLKC6Pl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|143.0|0.64|8.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c5ee00645g|bHsIRty-N9QdIM0ad6dUgRXqy-67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|153.0|0.78|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acsami.6b02169|bI0FsQ1kXmq1OyS22OnBakIgw5t7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.71|134.60000000000002|0.46|4.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7nr09657g|bI2wTwE7CrZEjjL7boCC-gEHrvC9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|221.3|0.736|17.51|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|bI6-6u_8duztoX_QYBw-8rTVaWSl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.104|218.53000000000003|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Li-TFSI']|bulk|https://doi.org/10.1002/cssc.201601070|bI9QDTdSjHHlwRHR-TAqOib-eVC9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br27C100H600I273N100Pb100|Pb100C100N100H600I273Br27|MAPbBr0.27I2.73||1.017|204.3|0.782|16.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|bIC1cCXLeq2YGjIydGL3l6l4AKt-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbBr0.27I2.73. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|76.5|0.3379999999999999|2.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|bIHzKpIGoKYTg_H_Zgub8S_tQOfA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5500001652782691|1.058|228.7|0.626|15.14|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|bIIStucr7NWuY4v9F8CAq2UPYlS5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.187|129.1|0.6609999999999999|9.46|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b03742|bIMUN7ozFW91nXc3qcfO5URuKqSn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -C10H60Hg3I30N10Pb7|Hg3Pb7C10N10H60I30|MAHg0.3Pb0.7I3||0.257|66.0|0.31|0.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|bIS_9rPB6inPEEAoutmXK2j8F3Z_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.3Pb0.7I3. -C7Cs3H40I30N9Pb10|Cs3Pb10C7N9H40I30|Cs0.3FA0.2MA0.5PbI3|1.640000174875072|1.14|117.2|0.71|14.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|bIVl1p_aYwOR1D87ZhLew2IyNQat|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.2MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.2|0.69|16.16|['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-mp', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jssc.2019.03.028|bIWLk05jZJ5Y7jCe_GfUnWg-zB4X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.5|0.76|17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp06953c|bIXpPU2Ba0cs6Hl9ArQ2516kq9kf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.021|214.0|0.72|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|bIY1J7cfRo2LPvMXZB9KxjMXFA86|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|192.0|0.71|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|bInnGGrZZ9erc5Kes_XWwa7XPGa-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|0.87|194.9|0.47|7.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|bIqynG6n4_N8tTr-AwG1bNzI9bv7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|148.34|0.701|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|bItvPyPVET4s-mEzNJw0fbpNTFS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|239.5|0.77|20.14|['SLG', 'FTO', 'TiO2-c', 'bis-PCBM; DMC', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'bis-PCBM; DMC']|bulk|https://doi.org/10.1021/acsenergylett.8b00217|bJ9RrSngQAMsmnirCMB92G5ogJkL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'bis-PCBM; DMC', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|191.0|0.736|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'DPO', 'ITO']|['NiO-c']|['PCBM-60', 'ZnO-np', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|bJ9knd6bVqbh-vpAM8pBMBgBn4mL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'DPO', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|174.1|0.74|12.52|['HCLaminate', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PEDOT:PSS']|bulk|https://doi.org/10.1021/acsami.7b03126|bJG0HuAmDpIxmjb5g7RJF0UW0gbV|a perovskite solar cell with the following device stack: ['HCLaminate', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C6Cs4H30I21N12Pb10|Cs4Pb10C6N12H30I21Br9|Cs0.4FA0.6PbBr0.9I2.1|1.760000187670809|1.14|158.0|0.78|14.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00314a|bJJOLsz4hEhcU4Z1OS6yV36LhYxM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.9I2.1. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.09|222.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|bJQdPQnEOszfgrs_ye6DiFhIULIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368|1.23|136.1|0.722|11.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|bJSCUyjX5A354bKGACieQNX_8MfM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.3|0.696|14.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800275|bJWzsKqyszVuMp0_TY2vh7t5g1GX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|151.8|0.5|6.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|bJaHn5ku5_kXz99lg-urr3cU3pdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|5.96|0.12|6.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.011|bJd9MVTDIf8qJ-feJkloYNYfxNms|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Ag3Bi2I9|Ag3Bi2I9|Ag3Bi2I9|1.8600001983339236|0.67|29.4|0.51|1.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|bJloBCU9rp9816zIzMUS0SA0WYW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.6|0.64|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta03796d|bJt301hwaJD5H20aaEtPENiztAYf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.6|0.78|18.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ra01186b|bJz72BK8eUyMkbn00kWmkO8g4gM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|179.60000000000002|0.68|13.06|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|bJz_AOoT76vEHpZvL3D2-dWiSG6d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.84|30.0|0.16|0.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO', 'Ni', 'Al', 'Ni']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|bK-34DxdhblGhvz2ZT1Mbnhl5yWk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO', 'Ni', 'Al', 'Ni']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.081|219.5|0.725|17.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201807420|bKKUvuAMLxQk1Onoo5_ifDUAl1AP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.55|211.2|0.56|6.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'BCP']|bulk|https://doi.org/10.1039/c9tc02003a|bKMoY_CK24_3N79Dk0QbGlMqb40M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1007/s13204-018-0836-3|bKXA60HEC6yZUw4yTBJ1jVgSAh2_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|230.0|0.8109999999999999|20.1|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['CuSCN']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|bKgjfqJr7W4UAkDWlYgDiZlfvjyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.07|226.25|0.78|18.84|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|bKzTk5eM43MdNze5VkPl2M-smwIk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.016|235.7|0.632|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1088/1361-6528/aa5172|bL0EwPIUug-FItj1TTrsHB8UTFfk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.76|142.79999999999998|0.5489999999999999|5.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.033|bL8lUTmCYktRsf2-SVH-324R-pAS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|149.0|0.43|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|bLF3jbMdWb1QkYMmrOgTqPq5LgPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.122|232.9|0.78|20.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|bLH0iywXTmCVlSiJbYSXqrjI8ylX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsSn|CsSnBr3|CsSnBr3|1.7500001866044976|0.42|91.0|0.57|2.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00402|bLHXXQmm96hjksxYqhBr1OYcyZIR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|132.0|0.66|8.9|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|bLUXQH67ZS-PAogWEczkOUMEACJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.03|187.9|0.662|12.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|bLUqHtWh4XSm1XMXr8Ml_dBeliVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CsI3Pb|CsPbI3|CsPbI3||0.608|108.9|0.504|3.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|bLYWDcak2Ou4vVc-jj7PokNqKmnH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']|['Carbon-nt']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900302|bLdJfMFB5uugiFG9KZ3o4qgJNRBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.121|232.7|0.7659999999999999|19.46|['SLG', 'FTO', 'TiO2-c', 'CsPbBr3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsPbBr3-QDs']|bulk|https://doi.org/10.1002/advs.201800474|bLksayPmA9vQTPfPpb9o9eTgj33G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsPbBr3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|213.0|0.64|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT-MoS2', 'Au']|['P3HT-MoS2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.09.055|bLma9fpv1ZcoMu0xS_tMO-xdXLdm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT-MoS2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|212.23|0.763|16.95|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|bLvZYpmolyqeZenmEAdMH5vowd7S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.05|202.0|0.35|7.37|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|bLvaiQgvzRYxtYag36vd-aV5kL1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CsI3Pb|CsPbI3|CsPbI3||0.84|78.1|0.67|4.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|bLxyQSziih59L33NlUO4azKEngCe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.0|0.769|18.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|bMLK-sv8-BDoMUMsuy3w0_2OaRZu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.556000165918056|0.56|125.0|0.35|2.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaa616|bMMYYdZDVmwoS2RvKk8Mmtuf_FMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|229.0|0.757|16.6|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|bMZ0nT-d-80oG-ywZq7bFizIpdrD|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|171.5|0.66|10.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|bM_c8aw3WNJfE2PT5RsI7-5h2E5t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.868|73.97|0.626|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|bMyPu0_i9v9bJk2h6e5XycSDokK9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|146.3|0.43|6.27|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag', 'Ta2O5']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/adom.201801409|bNRaJDlDP5WpuM6C8NaBRJebsu9Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag', 'Ta2O5']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|152.10000000000002|0.6|7.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|bNaN1QjdxtilNKGrK20KI1UGZJ4T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|198.5|0.67|13.9|['SLG', 'ITO', 'MoO3', 'TPA-3,6-FLTPA-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3', 'TPA-3,6-FLTPA-TPA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01681c|bNilhM5Y_0sH2xWbc56k6Lgl6c_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPA-3,6-FLTPA-TPA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.0|0.73|15.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.010|bNljygehSkatGrZp9RdzQgg2YlvD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17H30I4N3Pb|PbC17N3H30I4|(PEA)2MAPbI4|1.570000167410892||||17.79|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|2D|https://doi.org/10.1016/j.joule.2019.09.020|bNqm0ZQ3lyRYdhl8ibaLytNFZbQA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is (PEA)2MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|212.6|0.65|13.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201502027|bNrZj_umzJzZYkVi4ErPUI-dZAj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|101.1|0.482|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTTP', 'Au']|['BTTP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2018.11.024|bNrliUbhMSChIQaxuN7JDhhT8hGW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTTP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H87I48N32Pb20|Cs3Pb20C17N32H87I48Br12|Cs0.15FA0.75MA0.10PbBr0.6I2.4|1.6600001770076949|1.11|189.0|0.765|16.0||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|bNsjzRkNhj5kJWb6O3Y9syQtC-9C|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.75MA0.10PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|204.0|0.7240000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|bNtNUK-kqld7mE2cx7iFQsqLedeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|112.2|0.6659999999999999|7.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|bO-cDuIl5ObUVnsOo2zwGhl8zgNx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|128.4|0.597|7.76|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsaem.8b00733|bO0Chp53ptpvinV4KfRvL66oEjwU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|170.7|0.65|12.39|['SLG', 'ITO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c']|bulk|https://doi.org/10.1002/advs.201700031|bO_zMTQhcnuua0ZoXJ3OTgVpM1V8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MgO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.87|37.8|0.5529999999999999|1.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|bObZbrIE8eSyFiEtC2II1LUdHIef|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|217.0|0.68|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|bObagtdUugxmqe2oEer2sAJwZ0w8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|191.6|0.642|9.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.172158|bOh2q_aK59eYyUkuY4N3VwKUNsAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|133.9|0.67|9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|bOjH9-zcPYKlJcwPQya8pSYW3yh1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|133.0|0.495|5.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974790|bOsL_YBd70G_54rp98VUsGS4uM4W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|217.0|0.6|12.97|['PEN', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1021/acsaem.8b01405|bOurICa2CQ9fDxJKzrEaNKjVlSaY|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.71|292.0|0.76|15.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|bOyecE0Wn41vpdxcI53egPmXJjTR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2||0.362|72.69999999999999|0.5429999999999999|1.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s12274-016-1051-8|bOzXebCaJjbiZ11PWdVlb5XF7ygJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FASnBrI2. -Br45C219H4699I2924N1084Pb950|Pb950C219N1084H4699I2924Br45|(NH4)8.5FA0.15MA2.04Pb9.5Br0.45I29.24||0.98|181.4|0.6409999999999999|11.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|bPNL1L_VoPHoZvGsVa8FFymo8wif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)8.5FA0.15MA2.04Pb9.5Br0.45I29.24. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.06|210.3|0.75|17.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|bPaXiBCAKML-iU50IKE9we-Iwc0q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|150.0|0.4|5.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|bPlc7935JOpfpW8EG0SChtXRhdT4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|219.0|0.7|16.6|['Transparent wood', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b06248|bPp2Kkf08ybSwh1UoWfS64MJf5g3|a perovskite solar cell with the following device stack: ['Transparent wood', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.949|189.5|0.746|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201501489|bPtSLHMi-gGz8VsrkpzutRTB8TJc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.092|222.0|0.736|17.8|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']|['Graphene; P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|bPzxHT0bhwJq6kc4scR4r83BPwgV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|39.6|0.369|1.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(1,6-di{3-[2-(4- methylphenyl)vinyl]carbazol-9-yl}hexane', 'Au']|['1,6-di{3-[2-(4- methylphenyl)vinyl]carbazol-9-yl}hexane']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2019.04.003|bQ0R2ynLBbtkj913wqCy9F7z2Xg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(1,6-di{3-[2-(4- methylphenyl)vinyl]carbazol-9-yl}hexane', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C85Cs15H438I255N157Pb100|Cs15Pb100C85N157H438I255Br45|Cs0.15FA0.72MA0.13PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|bQ4Z5-TZ3SnmOP5I4aGMVyxCAJQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.72MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|208.9|0.6729999999999999|10.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.172158|bQEOx6ZjNtbReQrJ8PlIHeGRgGj9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|234.0|0.755|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00496|bQOQw7Kodm5tJCHHYLgQuVMadQya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|200.0|0.489|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793604717500497|bQPUjxK0w7zRDQwVm7EtWxQ1cGM2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|217.0|0.7609999999999999|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|bQap2FXIwgNQduX13kGl2owTipSP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.2|0.79|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|bQfAJ7882U4-sbCkVGIHpwuwS7Tp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H507I279N193Pb100|Pb100C100N193H507I279Br21|FA0.93MA0.07PbBr0.21I2.79||1.09|237.1|0.7290000000000001|18.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.05.018|bQkACdTepyC2YcWjoLCBzU1BuFgw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.07PbBr0.21I2.79. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.11|232.6|0.775|20.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TTE-2', 'Au']|['TTE-2']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201811593|bQkPocnypjBXw5Qcux8eQ-zv-1YX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TTE-2', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.07|222.1|0.69|16.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201800521|bQu0mYf8kKgmgAAWF5_Gx_Z77hJE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49||0.955|155.0|0.583|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201802899|bQuUSIsGQvvVZlhEb-h0GJ5miXPm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.12|232.9|0.72|18.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|bQv7qM0NS1e-080VwjXSeO_fEkNv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|171.6|0.75|13.63|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.0c00067|bR-ueyUmDARR7r8lPftnim83BjhH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.0|0.6579999999999999|8.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-np', 'Ag']|['NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201600619|bR43oAR8H4QkeamM_oPioA_-iypp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.8|0.71|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|bRAuxsSVq_4hxz7Sd_75uzgiF8Dt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.2|0.74|16.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|bRHwme7bXZP21VDacXBUyxbGZK_Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|218.5|0.664|13.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06700b|bRJqw98KpXL7QGI5Sve5HMwz7wiV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|224.9|0.68|14.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2019.03.257|bRRXQFyni5SQa5M1fkqRFoHnXzif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|44.0|0.61|11.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aaf158|bRbYSh7RgxcHyhQyq3JW8t0y25RS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|210.8|1.0|21.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|bRg7zh_qGXEAQIKpXYk6UBfyuKz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.1|0.664|12.5|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|bRilewWhqG8bGwoWpSKIEceat-SP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|bRjIa0AOtG2t36KEThSzyAETkOeS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|219.6|0.503|10.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1038/srep39132|bRlKG0EN-gXSMw49oklryM7VDodd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|224.0|0.772|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800324|bRlT6hYmM_g6tOkEvZoT4hi75DSF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.118|231.84|0.7609999999999999|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine', 'Au']|['N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806015|bRp5kmJnhmCz7KEMebHeDzDivX9r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N3,N3,N9,N9‐tetrakis(4‐methoxyphenyl)xantheno[2,1,9,8‐klmna]xanthene‐3,9‐diamine', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|165.9|0.482|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60-DPM-OE']|bulk|https://doi.org/10.1088/1361-6528/aac293|bRtYEb7HdjWcX5gMQZUK6NwGPYRx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|157.89999999999998|0.6729999999999999|9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2']|bulk|https://doi.org/10.1039/c5nr08344c|bS5DSOzXR4eUetXkHPZNS52uDvo8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.998|228.0|0.733|16.68|['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'SnO2; TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.097|bS5f3_N6vdEOzGYp1OGAxAMSkNqe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'SnO2; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|227.2|0.662|16.09|['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1‐benzyl‐3‐methylimidazolium chloride']|bulk|https://doi.org/10.1002/adma.201600446|bS6_LUc9FC51-8l4MIBdG93yxeu2|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|bSAXE1k611sWhxv5iECeCBa9RGEE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.062|215.2|0.7340000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|bSHWSyod-uaJVmH7EOS7yMQuhZAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|167.60000000000002|0.655|9.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|bSLjZT4UGE0g1xsX5iJYNFKTzO7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|135.63|0.58|7.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.203|bSXPCQJOPMqb7UGcyGLmsmjL6fLM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|192.8|0.723|12.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|bSoZIwXhaH7mdUhUxK0SEk-KQiL1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|199.0|0.78|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|bSqJuzphxpV_eFmn3SO1tXd3Av_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCs5I14Pb5|Cs5Pb5I14Br|CsPbBr0.2I2.8|1.8200001940686776|0.97|163.1|0.691|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.9b01822|bT-uRHLKVyASu6lAA0f8KRwDHnJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|203.0|0.64|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201302090|bT1YDRfsMWcdyohCY_XJYaIuPlzv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C7Cs3H35N14Pb10|Cs3Pb10C7N14H35Br30|Cs0.3FA0.7PbBr3|2.28700024386542|1.338|70.6|0.7879999999999999|7.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5087246|bTCuhV_wm_p3Em-26YneqDMDO-zw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|117.3|0.35|4.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'DTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|bTKuYLF41N6GvkC9XS9PZNXjGTNt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|206.0|0.794|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.017|bTLeGrIVVBPz7WkUiKeBwF7XdkX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb4Sn|Pb4SnC5N5H30I13Br2|MAPb0.8Sn0.2Br0.4I2.6|1.2600001343552385|0.62|193.4|0.67|8.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2018.05.047|bTUkA7J5OiHdWhDSYpV0yMNoQkQo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.8Sn0.2Br0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|66.9|0.34|2.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|bTXc27_DkfOaz1C7Hk816TEQ7JHn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|183.0|0.58|8.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|bTYMz5OANBBS5yq1ZB2Z37hmswyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|202.9|0.7240000000000001|16.8|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.163|bTZfjYd03C9NLM1V8N1lnYgny2wK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.71|15.2|['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM', 'SiO2-np']|bulk|https://doi.org/10.1021/acsami.8b22206|bTbhL7KiRXSuhU_c3R5SKXMWejUA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.0|0.68|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4994085|bTy55gJrL9FdPjPZ-TQfyl-7eJ7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.63|13.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|bU1JL0gCPt12AU8qJOK7n6dqiK4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|216.82|0.7|15.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|bU90oMDslUwNskifoDDk7PgzagLE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.782|285.1|0.73|16.27|['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'PCP-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|bU9I_PCq8Qtkq16ym0hZM66b-PLB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.68|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|bUEFAKGZRerK6GMehlijkL7ILBkx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|223.0|0.74|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|bUEPNliMz-R-kUFRaHbqRT6zGzTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.2|0.71|14.85|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuO']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|bUHfH6sCY8DT06-Jasby3GbzuP9U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.8|0.7879999999999999|18.24|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18867|bUL6U9Ak-aLVQQl6i2pWyEMuiCAf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.0|0.66|10.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08563c|bUPfLvYBn6Osgq-uo1HKa_7ap1ds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|193.4|0.76|13.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jechem.2018.03.001|bUPjEk8ZmcjqJh4qZPZWttAyEBgi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.52|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|bUS2iROgFk_kCtQViqh2vspcGaIT|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|162.0|0.617|8.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201600183|bUVvc8k3XoP7btDExhLXEHlCJ51U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155||||7.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|bUXvhq79lpOnY9l4RpU9zdyrgMh7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.0|0.65|12.7|['SLG', 'FTO', 'C60', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00902|bUgCDffqvyIl-Y8Mfyag2CxvgQeU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|179.0|0.41|5.63|['SLG', 'FTO', 'WO3-c', 'WO3-nw', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['WO3-c', 'WO3-nw']|bulk|https://doi.org/10.1186/s11671-016-1670-8|bUqdxMo6EfRGiwgj5UOQc8DUKLWd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3-c', 'WO3-nw', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.78|126.1|0.54|5.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|bV6qCUiX3ehrokoU2Xs3HETVIF-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|108.6|0.62|5.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.06.007|bV7DCCbLWbRerEntw-bhIAWvi99y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25|1.6800001791403176|1.1|190.0|0.74|15.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b01255|bVAHwyggm-dWdBVjB38pUI_2SYM7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|172.0|0.67|10.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|bVBZgncwi77v8fwNWakfsk0MuotU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|175.10000000000002|0.542|9.29|['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.09.017|bVEHYhNcq_8FbDgVByO-feLD7kUy|a perovskite solar cell with the following device stack: ['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|207.1|0.69|12.43|['SLG', 'ITO', 'MC6Cz-TPA', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['MC6Cz-TPA']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.005|bVGERjRV0WOMTjGXA_xFWZta4mNz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MC6Cz-TPA', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.993|176.8|0.523|9.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00747|bVLxrfIU9clbjkcK4RiNwvE3e8fi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C25H150I21N25Pb25|Pb25C25N25H150I21Br54|MAPbBr2.16I0.84|2.010000214328594|0.94|31.8|0.485|1.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00435c|bVMtuiZY6V7Rx53v5Tax9aGTGhKZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2.16I0.84. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.08|228.0|0.74|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800232|bVUVdv8rB4lRBlq6P0we4kBvJ2Iy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.1|250.5|0.773|21.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201901241|bV_WS4qw6J3DvMYd1_AnP6EByrOe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|0.8|180.0|0.6|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.013|bVdgJvPsHcTm2-KLuYXboSKHl9JH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||1.146|230.6|0.7979999999999999|21.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.100762|bVksj2ain8N-yvx4Syf9wYgF58_v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|228.9|0.76|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|bVsDGSipKsWwz_OakpSvyLh2f3HF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.136|220.6|0.79|19.8|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|bWIpxrQzSrhsUqJr_d-AQm_lGMpo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.85|237.7|0.59|11.92|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|bWQGGrsDu8VpilE6jJbxiNakT3zQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.2|138.37|0.592|9.83|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||bWT6UY6D96HGTIb2IMMk6mSNEx1j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.2|0.74|18.48|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'PEI', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4', 'PEI']|bulk|https://doi.org/10.1002/adom.201801409|bWWh2TnoWb9PTryv_4A1WhhD6yCZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.03|230.4|0.77|18.42|['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|bWcSpWY11amLxb9pSBtDTsjI89dv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|211.7|0.67|13.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|bWif7aG2iekdZV91mjq4e8cxzmuA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H515I279N185Pb100|Pb100C100N185H515I279Br21|FA0.85MA0.15PbBr0.21I2.79|1.5600001663445808|1.03|226.6|0.68|15.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta07462c|bWmYhuHe6RkAGZmgpvav7AVizasm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|150.0|0.43|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn507345e|bWsEjrOCiSQsiIbTymRdE3xb4IhJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.0|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23062d|bXIi6-MskXcaUw7btDuRktj1ybiS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|218.3|0.81|18.84|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|bXdvpvhC37lzq-CGvIIrBWZIjWPR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.994|209.9|0.659|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.006|bXnZ1VCfOfqXgvbG6JRimpS6nj0l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|214.5|0.693|14.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.069|bXpqf5EoOqjUbPhMfSBhT52rgtJs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|160.6|0.67|9.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/C9RA05357C|bXsGqViMNNCxj3tRjcVyUqPuI-8V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|231.6|0.73|17.16|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiCo2O4']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201904684|bXw8YTXxsFH0ZvX8ztWVAyjEYMLB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H58I27N12Pb10|Pb10C10N12H58I27Br3|FA0.2MA0.8PbBr0.3I2.7||0.95|200.3|0.7659999999999999|14.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|bY1fbt-sEbWXkd5-tEKpYLSLpHqp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.3I2.7. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.03|236.0|0.69|17.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|bY3BbuVwWmzgV2LJZxe2Tseg7j7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.105|188.9|0.753|15.72|['N-Graphene-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12519h|bY688jTPwfav5cWItmSu5zhvcIvH|a perovskite solar cell with the following device stack: ['N-Graphene-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|124.0|0.63|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02868|bY6kzmONLT1pgDQ8Ty4xqo_gW0r5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.6|0.69|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-W4', 'Ag']|['TPE-2,7-Carbazole W4']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605187|bYAGh3umb2SZFmNYPFCWIDhHRj_D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-W4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.045|179.60000000000002|0.6459999999999999|12.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|bYNDDy4hbbShQ6TV7H3nwVH1xTfJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.032|154.5|0.33|4.89|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|bYSGHdFUBWYDRFbUOb_nc65xcsiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|198.7|0.687|12.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.007|bYWhtykyT6FU7Oc5-_PuDPoTQJjF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.067|214.6|0.695|15.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|bYYbT7KVaCJLCSVvET60dAFGO3KZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.0|0.728|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.15541/jim20160584|bYasixkk_vP_WFhC1EqI1ZsXBlP8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|233.9|0.8190000000000001|20.85|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|bYkhk55JPvcfWImqox096ePqF2uR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|0.5|126.0|0.4379999999999999|2.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09855g|bYyL4122NPSzRrfzx909UCWltq15|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.0|0.7490000000000001|16.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|bZ1iVfHBzhON1rP6IIM3rLPQ4yO7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.97|212.2|0.73|15.0|['SLG', 'ITO', 'WS2', 'Perovskite', 'C60', 'BCP', 'Al']|['WS2']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b06403|bZ3cY_JkNKpE_lYnXsEcY1HMTHQq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WS2', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|106.0|0.708|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1021/acsami.5b12740|bZ8mO2oP8U0r12qygnZ_-eA8ucsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.1|0.528|8.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1080/15421406.2018.1456072|bZHGJvAB_36x5vCNs4GtlDqqIkbz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|237.0|0.76|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X36', 'Au']|['X36']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701209|bZRZsLN_mYPkGs1XJsuv-BS5RlVO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X36', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.0|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|bZcmwQ1aTuuNP2kHAz5lZ1kC9SPn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C47Cs3H282I150N47Pb50|Cs3Pb50C47N47H282I150|Cs0.06MA0.94PbI3||0.98|204.0|0.797|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/solr.201900406|bZek3RlBKYjefKw0BU_ypxvDlQRo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.06MA0.94PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|188.9|0.696|12.75|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|bZkZ-_P-9-8wyD9saSvevR3c_PF1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|218.6|0.613|12.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01038|bZri5PKklCe__Eo-E68OXGKtfY5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.8590000000000001|102.52|0.674|5.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|bZs7UEiRJFV8-V5glwOgC8CXs5SV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|bZumTuPwpDne11J3CmTYmO0D0r9w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|193.0|0.657|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|bZuzM8H248WKDF9SfbIR_ZHzzjmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5240001625058597|1.04|239.8|0.727|18.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|bZvpIXkjh6ZBhlkfrQuPJjS58WZS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|202.7|0.643|10.99|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2017.12.076|bZx_3dux0LLGhVWOYO6SqaZAoBcc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C65Cs5H341I249N114Pb100|Cs5Pb100C65N114H341I249Br51|Cs0.05FA0.49MA0.16PbBr0.51I2.49|1.7300001844718749|1.11|222.1|0.708|17.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDTT', 'MoO3', 'Ag']|['PBTTT']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903146|b_CEP7l7W7mfR1UZwvDU1ywoui4d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDTT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.49MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|204.3|0.797|17.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'CeOx', 'Ag']|['NiO-np']|['CeOx']|bulk|https://doi.org/10.1039/c7cc08657a|b_FfChcu8B0HZj5R2NIHacm8zVpK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'CeOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|226.0|0.7|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/ab938c|b_LxQdg0U_NnNIl1fDWPYBei7lM7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|234.0|0.7|14.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2018.01.006|b_T4NhHDvJa2Ed9qD7p80KE5I-bz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C900Cs50H4653I2490K50N1647Pb1000|Cs50K50Pb1000C900N1647H4653I2490Br510|Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49||1.07|213.3|0.644|14.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b07610|b_fqa2w1nSEqr50T1XqzoUjpPqwN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.914|185.0|0.64|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|b_rqQ4SMq_vxUZ4dLp8k3DZVyBB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|197.0|0.693|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05104|b_xhLMKwvrz8cII9w7vxRyFESC3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|ba2YP8GQBh0Eu37HdHhZwKv0TQhf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.9|0.662|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.09.138|baBZqmm6xVWjrM-7RwXVr6SVxa7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.1|0.74|15.96|['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-2TNDI']|bulk|https://doi.org/10.1039/C7SC00077D|baGxXExSu08swWbQCuIPRRiI2u71|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|204.3|0.7340000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|baHViIP6zMPmf7paHre6CCDv3n6h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.58|21.0|0.39|0.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07694d|baJCNIEYAix1UP_K6cqyJLSqHIDn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|203.1|0.636|10.95|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07828e|barZrobhmyHryjTTcfLmsisRR98T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.622|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.092|bb-5tH0wEKTx9erB6d-7oKYc2cmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7140001827657765|1.225|194.7|0.791|18.86||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|bb2Z_hRnWpZCM-ztfCZiTgEQ5_Zb|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|229.0|0.361|6.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|bb4IYItnFHdjkBQ_f6TYQ_9gafce|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|171.0|0.573|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-2', 'Ag']|['HTM-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201706104|bbMhVA6BDTXkyAD5UNp3kLuXNick|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.3|0.73|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|bbPHhbfu-NNjF6qRwqeutYxWVB8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|222.6|0.736|17.23|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCA-1', 'Au']|['PCA-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801248|bbPfRhsAN5fDb1Hhpd3AGrJMuIDh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCA-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|193.0|0.746|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.08.015|bbTcCGcNvJfW6ZeggO7kpdGaqynM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|182.4|0.65|10.58|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|bbY0HiKWjp3bGXDEopQDVnXyM62r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.93|197.9|0.752|13.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|bbhS2H6TRVzPkDVxfoOIFlBCbWn6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.29|124.1|0.769|12.34|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800188|bbo3mzqVCNE7yrAnpYVyZmIVxN1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.272|144.0|0.75|13.73|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|bbyi0rr8eafPlkv6rGjwBg2BO5ay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|180.7|0.71|13.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep38670|bc3Rx0tTvz3L885U5_RpApzB_9ST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|95.8|0.4579999999999999|4.49|['Regenerated cellulose film', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ra01301f|bc4vaDv5JnoMgWAhQm0xYUWOA8hC|a perovskite solar cell with the following device stack: ['Regenerated cellulose film', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|203.0|0.64|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501379|bcRY_rlq2ofdqUWyc0_deV4aolk4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|212.7|0.754|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|bcS9s5UoCoTiKpJkAuFNOQjU2K2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.8|0.667|15.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ra08940j|bcgTR6jgGN-95g9Xzi-rAm5zAt9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|bckEDtOzfHa-SyF5bFvr1lNaTt8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.01|205.0|0.629|13.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta08824h|bcpo_GWO2I2dsaKWCk3pvJ3idxCo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|199.7|0.6409999999999999|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0tc02078h|bcwnqkhWoXvm0s8pwWo1wOzugRPp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.137|213.7|0.755|18.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|bd5m8_xYMTurrs9DKqv2SUlXt_xI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.6459999999999999|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|bd7WDtc6V5_lrgfdERF3F4SxSZkX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.12|222.0|0.77|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVDF-HFP', 'Spiro-MeOTAD', 'Au']|['PVDF-HFP', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|bdbQwuVa0Q14PxbWqKr069U9fmy2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVDF-HFP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.67|13.9|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro TTB', 'MoO3', 'Au']|['Spiro-TTB']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00270|bdj-MxMbyomoB3-6L8tDM6wulaLJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro TTB', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs|CsAgBiBr6|CsAgBiBr6|2.3900002548484283|1.06|26.0|0.64|1.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.202002342|bdopNZpvhrCN7Udxn_CoVVpmJjE8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsAgBiBr6. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|210.3|0.68|16.05|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|bdyCfcQC82QLHkMKFuJTgVdOCoic|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.6000001706098266|1.02|223.0|0.51|11.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700302|beBf_xq2K6lZ0mrmYTnQidgHrXpp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.82|204.6|0.62|10.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|beNCuthIJOez1JWLIKbJtCb--k3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.72|16.8|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|beUrgkS4pHPiN-FB2NCM82NZve69|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H494I255N178Pb100|Cs4Pb100C96N178H494I255Br45|Cs0.04FA0.82MA0.14PbBr0.45I2.55||1.073|227.4|0.727|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']|['PBDB-T', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201706126|beZMsoA5qX8QwHhq2aJ1vh9yZHVA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|bepqedgjDAdgtCupfZrpdFKLrxi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|179.5|0.6|11.43|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|bf1RRISb6WGpj2hitOWvUF_xU3aa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|204.7|0.66|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.03.152|bf3oLN2PeMJAfVGr_4q_ZC5PSpH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.095|216.0|0.653|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|bf6q9BZpXsSAnsHLgQlqir68NmPk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|134.70000000000002|0.64|6.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|bf77QOzolutZzwk972txObHXJFgu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.143|39.3|0.701|2.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|bfAyHFKrcsb_ghlNcY8mBC7DI9bH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.6|0.76|16.32|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-np']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800004|bfUYGZ7pfjwnU6e_QuExywCAF6M8|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H273I150N77Pb50|Pb50C50N77H273I150|FA0.54MA0.46PbI3||1.06|228.2|0.66|15.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CsBr']|bulk|https://doi.org/10.1016/j.solmat.2019.110110|bfWhItywZkHr_d4OCLFsZkZS5XgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.54MA0.46PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|212.0|0.77|15.8|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.035|bfZLjFB1qJ5k1Pd_JRP0ZQ5Ljnke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.36|47.8|0.58|3.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07739g|bfb5ziMKb7Pi761vtgfMSzqy136t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|195.0|0.674|13.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700096|bfdJttYb_HE3iC5FU5OQxJNFv3sA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|226.5|0.63|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DS2', 'Ag']|['PEDOT:PSS']|['DS2']|bulk|https://doi.org/10.1002/ajoc.201800385|bfkpHOEbl-pjW01IIuNj29NIQoXW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DS2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|214.2|0.731|16.68|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|bfpLK9TeqEzC-1LKXVPrh50DjX0C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|224.6|0.67|12.19|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1364/OME.6.003651|bfySVSiz_GjUuYGiLmVbCC3PuuVH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.05|221.0|0.7609999999999999|17.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201900243|bg4T6wgALry-j0iVWXzd8ywrF53A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|180.57|0.6509999999999999|9.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|bgYSQ2uR_2WPqGyzCl-2t86TYC8I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||0.96|227.0|0.625|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|bgd8hBZ9YpV3e38mAVWsTyV2YlWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.471|86.0|0.5|2.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02711f|bgdCus0mIWCNU-1zC05lsnpMqWsB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.9|0.75|17.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|bhEzn6VXYHQ_iCbYOsEfSxouzi45|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C80H440I148N120Pb50|Pb50C80N120H440I148Br3|FA0.8MA0.8PbBr0.06I2.96||1.068|211.3|0.716|16.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900491|bhG6meEn9GQ5PZylrbRaxNph4wOy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.8PbBr0.06I2.96. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.04|219.3|0.703|16.06|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|bhLRBmMI8tLB9nUXJfgktlh5HIi7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|226.8|0.7709999999999999|18.84|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nanobipyramide; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|bheuCNUYECgDbqo4OnvRtfQgbHQu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|178.9|0.6970000000000001|10.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.11.026|bhjAtvRYS4ilMuzwkVig1RN5rV1N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.3|0.627|11.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|bhk3ZS3WUgJYzJfGLCqYyNoHwMEw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|203.0|0.75|13.9|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsaem.8b00094|bhqFrsZ43m98wMfywQKtLl3i-QKo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|113.0|0.66|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|bhqoSX-YVegWqEf94zoDSTkFsbiD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.24|140.2|0.69|11.85|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|bhvGP9ivQwEvy-CIHFdntlF_nxjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||1.06|190.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02405c|bhxNWffRCofvynt6kpDY-m6_j9Hu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.101|217.5|0.7040000000000001|16.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|bhyPIroCnU2t2-4hQn0vIxyCzMdb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.96|120.3|0.52|6.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Asy-PBTBDT', 'Au']|['Asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|biBD2kIFQFgP44kvS-hUmGQPPs_S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Asy-PBTBDT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.16|226.1|0.774|20.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2-MP', 'Spiro-MeOTAD', 'Au']|['2-MP', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803573|biHk7Jw9to9ADEzmWqdux3QgG-n7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2-MP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|228.5|0.53|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']|['Cu:NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|biQYB8r90CpJSv6O-PiJycYyXh_r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|160.2|0.7|10.99|['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'Ag']|['CrOx']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.150445|bi_oEidH1qd-PXsWugsXZhlHEbyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|205.0|0.735|12.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60SB:TBAI']|bulk|https://doi.org/10.1021/acsenergylett.7b00147|bidrHD0RMDBMgRX7CepoMGjMODND|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|156.0|0.56|7.94|['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene; SrTiO3']|bulk|https://doi.org/10.1039/c5ra09001f|binVRJixiTbQY6ljfPeqET6pTpoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|164.0|0.614|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|bivpAozjm8RDn8H8jbxBZIQ23iHr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.26|11.9|0.43|0.14||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|biz2xWiI_CYTJQIA6SniVheqOyAA|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|176.70000000000002|0.726|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|bj8wYY5JnDMXxy-Zo4943lXWmW_M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.13|225.0|0.79|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|bjCev9FRwfuYuwkY1Y-NBsQhTEAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7|237.8|0.42|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|bjSx5SKyxfvVdvu05KvqZNG25hIQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.28|147.0|0.764|14.4|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'H-Z2', 'MoO3', 'Ag']|['H-Z2']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900265|bjgqj15nZ-8knLAa656qpNKInGag|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'H-Z2', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.142|207.7|0.7170000000000001|17.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|bjke46YExeMTHwBUzpZ-Rh5-AqaS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|229.5|0.67|13.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1117/12.2286301|bjtfd5jy0_JpjLg1hYrvosgcq9wy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.082|222.0|0.813|19.52|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-V', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|bjuVLorhIaBhfIX4I_HuqfJLZEpn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|180.9|0.728|12.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|bk5R2H9Mxy1ZLYpNMNFWAeGiw7rP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|224.8|0.606|10.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|bkHq4B0c_xnyQoeYb8KauUvQ70Y0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|218.6|0.51|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|bkOeBR1gxIEDHL2NoZNRGSM5LMGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|179.0|0.58|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.027|bkSOHAuNfUciDSJwfnDLaCQzgpGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C200H1200I597N200Pb200|Pb200C200N200H1200I597Br3|MAPbBr0.015I2.985||1.09|195.2|0.718|15.3|['SLG', 'ITO', 'CuGaO2-np', 'Perovskite', 'PCBM-70', 'Al']|['CuGaO2-np']|['PCBM-70']|bulk|https://doi.org/10.1016/j.mtener.2018.03.003|bkXa8g5nGQkVXueAs6cJV6_9K9hb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuGaO2-np', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr0.015I2.985. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.556|76.8|0.78|9.34|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsCuBr3-QDs', 'Carbon']|['CsCuBr3-QDs']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|bkb35tnbiraIa55bzuEJRlM8s9zd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsCuBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CsI3Pb|CsPbI3|CsPbI3||0.73|41.5|0.5|1.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|bkgIGVtnFYGOlwwI0rHxxEDBFBAc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.4|0.611|14.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc03259b|blAM9C-D8kxJkVmZV5SQ_2PIC2Z9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.895|195.0|0.69|13.18|['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ZnO-nanospheres']|bulk|https://doi.org/10.1016/j.jcis.2018.12.001|blFj2YeokFtJDTEbqD_IKP89Bud8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ZnO-nanospheres', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.0|0.51|10.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|blM4qSFsa6RzBhTJnDVaogRcdCxC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|190.4|0.73|12.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|blax7SHP4j7jE2cHLQ2c6CrEemTv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|226.1|0.711|15.09|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|blbE1xYv8-Af-KxzqFqreTSVwhI4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.995|216.1|0.6659999999999999|14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01364j|blhdo36xDTJanJy6s_dhAN_qCpPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.0|0.76|16.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b05588|bliYOOzCAxbu4iEJ-ATGDxDTxzd2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|160.39999999999998|0.66|11.13|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|blqG17Q1vcuSVVEfX6r6HiUY8aqG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|243.8|0.595|12.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1038/srep39132|blvLRRtXX9EPrg8NspP0MHUEt6cZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|136.4|0.58|7.09|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.15541/jim20160041|bly3Sbt8vl29sPDxHPvH-NCmgfEv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|142.3|0.537|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|bmY6vrMhw9xlC91G8Km-_WVyPnup|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|164.0|0.4679999999999999|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|bmmgv_Ls7_ojV1YlvfHcSSX22ng2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|198.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|bmo_xNZwmkpiaUN_9fSZrCxM3ZQi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.670000178074006|0.77|180.0|0.624|8.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|bn1ijsdA5yimJC6LvteszzNba302|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|108.28|0.6659999999999999|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|bnAZDnTKNyTgelsT44XZpZS90oqh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|121.0|0.73|11.0|['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201900221|bnHBzowDx_HCPskJSptkFySjPTBT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|219.4|0.67|14.63|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.3390/coatings9050320|bnK2U44oIiD9XAkdRbHK4bU34wUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.4|0.74|15.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|bnK3WTmpzPpYQpRdexIZ00y9nPlg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.821|219.2|0.57|10.24|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Py-C', 'Au']|['Py-C']|['SnO2-c']|bulk|https://doi.org/10.1007/s11426-018-9331-y|bnMEem8Di1ZbZTBBPOSP9FEMZbFc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Py-C', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|219.0|0.65|15.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|bnMufDldlYlN0uryXXc1HXbKyAgV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C15H46I13N6Pb4|Pb4C15N6H46I13|EA2MA3PEAPb4I13||1.09|135.0|0.62|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901566|bnNgtkHEEJfEzhpjgjo8m05IApqH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is EA2MA3PEAPb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.089|237.0|0.78|20.5|['SLG', 'ITO', 'SnO2-c', 'C60-5a', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-5a']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|bnPsDVIr-XhNMJMJXkfR_lAvXDii|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-5a', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|232.2|0.654|14.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solmat.2017.04.035|bnR8K03DWeh0mpcEPpa7gPAQM84A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C100Cs5H517I264N183Pb100|Cs5Pb100C100N183H517I264Br36|Cs0.05FA0.83MA0.17PbBr0.36I2.64||1.04|184.5|0.7879999999999999|15.13|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b21290|bnUrHE-LHj11HF6vMezqu-KFSTrK|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.36I2.64. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.086|226.4|0.757|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|bn_o_Syu46ghy5Omr2qTrGOd1-6_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|1.8000001919360546|0.562|9.3|0.41|0.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra07123j|bnbBbk8t0QDGAq0wozra4GVkeooA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|212.6|0.722|16.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adma.201603923|bnq8Jv69vRjECx7j3VVyPdoGFU4W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.04|210.0|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-020-04896-w|bo6RUED-l4KGUqFKkyYgejxicWUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.05|220.4|0.75|17.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10854-019-01446-2|bo8ohOSSywJUorLdf7GU_kd2SjSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.0|0.72|12.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc05328f|boGinMhkoKXRXvJxuMI7lqjVFPNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.98|197.7|0.71|13.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|boLImfYX_13Nl8KSId_GD9iCw9f8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.0|0.67|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3-disubstituted azulene', 'Au']|['1,3-disubstituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|boL_6TE2cZqBiabQOWoN3pffo7Sw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3-disubstituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|95.0|0.25|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|boUbZ2ifsgKENG7ltsC4HLvLpm2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.69|81.6|0.74|4.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.202000223|bogYG9rcOtlm57lwvwOzKtnzZSqj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|205.8|0.75|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04794d|boq9I6KFEy1fRQWQtFqpd9_VTcDE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7500001866044976|0.88|172.0|0.565|12.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05948b|bpBQiHKuHm6ZYQb8jIh42OJ07XGU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.8|0.7959999999999999|19.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|bp_cOMohG3bCw6G4zyDWpdf4J1tT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|181.0|0.606|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra11286f|bpapt9VBd4AcrBJI3vaaIE6ep5XD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||1.02|229.0|0.65|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|bpcI9yfk0ehbw4UzaEiXjBVH7F0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|75.0|0.28|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|bpeSvMMtagSn1C99LCvDIJS7AQaY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|215.0|0.74|17.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|bpmfmx5G_K3DL89uO9yp-AtZyIMX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.5900001695435149|1.145|227.0|0.7759999999999999|20.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.08.012|bqCPXi3B-iCnJcihbMUir4Mq__Bm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|110.0|0.7120000000000001|7.54|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08565a|bqHjQenOPc-l8BipDKpKoMKg1iD7|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.0|0.7340000000000001|15.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'N2200', 'bis-C60', 'Ag']|['NiO-c']|['N2200', 'bis-C60']|bulk|https://doi.org/10.1002/cssc.201600921|bqKEY6Xwig8TOhyrRDiIs3brMgWO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'N2200', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|158.6|0.65|9.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|bqVwP9DyGumg4jyQDxwciz8gYSjU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.0|0.51|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|bqbG3Vi7KQJpSRwENcyvFBd6bkJ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.042|207.05|0.743|16.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105406|bqc_6NWlnklPg67M0EDnQ4Y6QQQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C13H46I13N5Pb4|Pb4C13N5H46I13|MA3PA2Pb4I13|1.6300001738087604|0.83|190.6|0.55|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.joule.2018.11.026|bqrjgFif1ldkv2MDbzBphFXPR8fY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3PA2Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3||1.005|226.6|0.835|19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|bqv1iJS2rrLnsRWxtc_2hK9Z1oDH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.89|51.900000000000006|0.69|2.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|brPgRXPGKxykQLsMzIMmG0bykR2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|225.3|0.7120000000000001|17.45|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aacf7c|brYJ1FFSuqlQ0rvsTo6x3WprV_TQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.792|182.0|0.58|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']|['PEDOT:PSS']|['PDI-HE']|bulk|https://doi.org/10.1002/aenm.201700476|br_7H-OHe6IOIOKSS8EjqoShyvOH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|226.3|0.77|18.99|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|brf2s47-GVKs_2eDKVTtdoF2Jjn_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|73.1|0.55|4.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|brkHYMvNXHJmSjO36PFljZcwf2nx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|123.0|0.85|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.019|brnG4VkwsqgcLTtcDGINL49C3dAJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|131.6|0.73|8.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr02903b|brnbf0OMO75h2mL0JdrRCGIukDdV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|46.0|0.27|1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|brrYI6-6B_BiRssQ261b0Q5N4aaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.0|0.62|12.4|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|bruwfreTyH0otozdaNBmgtT3bKOO|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|241.6|0.67|14.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|bry46yr7KsvaZu3fZ0dy5VVNFUPS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|237.0|0.727|18.9|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|bs5_EQ6rRxAzKu63knPM-L1IWNAB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|224.7|0.655|15.37|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7nr07001b|bs63hG-xrEsJd_izHIfoEspfzMlZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.0|0.733|17.8|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|bs6KAdQyo3GyXzCJ0UmYqETcYEuQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.5|0.68|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c5ta02265g|bsETpaZgdWbAjt2ddwTWjAIph3iH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|204.4|0.657|12.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.007|bsQyqZIOgw9hZv18fC3XGWbEdpeV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|184.8|0.68|13.32|['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|bsRo2l5idLu2QCmMtenqSP9sbg7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.8|0.45|11.42|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|bsWX_q32iKD2cSch3v1F5DRxoEeH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.2|0.67|13.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW4', 'Au']|['CW4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04405g|bsabET4to0iTpF5EBjIjAYhJLPo2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.0|0.583|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00160|bsdIBzLxmo8KlKZG6TEx1VB5DxEJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.02|202.0|0.75|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|bsgxyIaRsJUFjLn6HP_bEiUW5oZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|218.0|0.74|18.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201602785|bt5O3lV8tpydKmCNBgUr1fjISjWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|148.0|0.65|10.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|btIaFYgsrR8Uqk7pJ29bE-7GClY8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.975|251.6|0.5870000000000001|14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|btOhBPtLRWIprMxJ20v8w6TuU9Mh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|178.4|0.72|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201501024|bt_JfylrBzEK8QUuqwxO_cZgAdwe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|188.0|0.68|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|bteXnuel9hiFzeebkrp3_JfjkqTe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|151.0|0.69|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|bthQlZxAMlM8UAgSeGHoq8NqLBJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|152.89999999999998|0.54|7.93|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|btw2zrLk976-k4AMWqUxsxL3b8td|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|193.0|0.55|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|bu-wb2lKPDDHmZCDsSqafI-GRewo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||0.98|165.0|0.57|9.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/er.4695|bu52OhwbI6W6R9Ywspwb1yDM0MWw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.8|0.6409999999999999|13.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|bu7Tb7N-d9g_4qPbCPqGOOV4_KfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|175.10000000000002|0.6709999999999999|11.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401943|bu8CTQZzWWH7qsP5d0s7Q2DdXQGR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.124|222.5|0.782|19.54|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PMMA', 'PCBM-60', 'Ag']|['NiO-c']|['PMMA', 'PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|buCGXX70uEg1UVEyFAMvUvm7IHPk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PMMA', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|92.0|0.32|2.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|buLzU-de_FOIqeFofcz6XnNYAC_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|179.7|0.61|9.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|bufvU8mfoVIi-9J2zbK9QvV2A1NQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.67|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02013e|bunPYgytt0pvZHf-P-lVMUbkmz1C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|246.1|0.6679999999999999|17.01|['SLG', 'FTO', 'TiO2-c', 'TiOZn-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiOZn-nanosphere']|bulk|https://doi.org/10.1039/c8tc06218h|bv1GVBJe_LAgqbgYyGWOTHy0QqDC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiOZn-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||7.0|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine"", 'Au']"|"[""N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|bv4gkPxRn0PSLXJIbzSzjq--YnGi|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|172.0|0.65|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc01962h|bv4vR1719Ao4bNuHPCH4HtA_3Ba3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|143.0|0.61|8.4|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|bv80xOI_2oGOYYypH0HEgiBITOSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASn1.0I3|1.400000149283598|0.289|230.4|0.547|3.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08790|bvHH6fn05k5gm75_LASeSxwgqxnQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASn1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|159.2|0.79|13.75|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBH', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['PCBH']|bulk|https://doi.org/10.1039/c5ta10574a|bvPHBL3MKdFnpptuZ1JGWA7Z53f2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -BaCs10I30Pb9|Cs10BaPb9I30|CsBa0.1Pb0.9I3|1.7200001834055632|0.9|131.9|0.606|7.23|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta07827d|bvY2oIa6M5BjvLGgSEhQX3JPSdlS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsBa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.2|0.775|16.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.052|bvmmweqn8fxaI3UFypRW1YtK-7PQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.8|0.7509999999999999|18.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|bvrl0zwY12MFJe_qOoonoqb1Lnhm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.74|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|bvv8axIcK_XFGH5fdYGC1iXsA7ht|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.0|218.0|0.5720000000000001|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201500768|bwBc1H3kRhkfYYbBgSoc15KWVzKc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|174.60000000000002|0.51|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b03687|bwcAOpcmnyds7nMViqgxS9j-VyDV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3|1.280000136487861|0.644|42.0|0.381|1.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04840d|bwoK6x5yUMdTjPs2oY_35F4ihZpg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|226.0|0.7340000000000001|17.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02317k|bwtLF85cvmJVXcVNXABV-hSbW6fd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C1500Cs500H7500I6000N3000Pb740Sn1251|Cs500Pb740Sn1251C1500N3000H7500I6000|Cs0.25FA0.75Pb0.37Sn0.6255I3|1.2400001322226155|0.76|256.0|0.72|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b04981|bwthi5VpS6WqOE673LMH60Ixs-0T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.37Sn0.6255I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.5|0.551|11.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|bx6tFmQ7xCBucjbKta_A0IxmDFAn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.0|0.68|13.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201801541|bx6unP350hFjztPuDzP8eU8O8_qX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br551C950Cs20H4910I2490N1740Pb1000|Cs20Pb1000C950N1740H4910I2490Br551|Cs0.02FA0.79MA0.16PbBr0.551I2.49||1.112|183.6|0.586|11.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104009|bx9OaB_r24sDC5Sgu02jCMuKcpIs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.79MA0.16PbBr0.551I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|bxNOIjc6XCPCcGGdjcKSkP95DgcL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.740000185538186|1.22|187.0|0.7559999999999999|16.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-05531-8|bxU7EVfBx-PZ_FUODmR-ADNj3ezn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -BrCsI2Pb|CsPbI2Br|CsPb1.0BrI2|1.9200002047317917|0.73|79.4|0.2689999999999999|1.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14039|bxUCMLOBIhAvcMb4am7PMpGV2TYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0BrI2. -CsI3Pb|CsPbI3|CsPbI3||1.04|134.0|0.55|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|bxc1Mjbx52_e7SMYdoXVuJLRIT3Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|151.0|0.74|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|bxlAvtDXdqZq83DiPBwOdEgqWTib|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.84|115.6|0.552|5.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|bxm0LxO1AMKRLungh1NOiHDRQxAj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.137|242.0|0.807|21.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|by33xl2yndShSFUuJiWm_wulBSOs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|265.0|0.624|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3303/CET1652062|by4WQArHUrzc8xoek_mpxO_GVjUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.0|0.763|19.1|['SLG', 'FTO', 'Au-grid', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|byXLTtYn6RE4cr-9Abl5hGN3z3h1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-grid', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.998|167.5|0.575|9.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|byZCF4Soeotyx7gfuxy_QgwTpr3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4810001579207206|1.11|235.4|0.7|18.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|byae6dx1ibaq8MVw3Z6194ze2Gi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5970001702899328|0.96|105.0|0.5|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|byg_zyr1d5FVV-83PS8E-Tb0f8lN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br41C95Cs5H491I259N174Pb100|Cs5Pb100C95N174H491I259Br41|Cs0.05FA0.79MA0.16PbBr0.41I2.59||0.86|207.0|0.469|8.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201801403|byki1WYtt-8uLw8zs5_OVTpPgV8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.41I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc03624d|bymYjBAnBZWMfT8RP0if0M2WL7Dc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.959|196.5|0.767|14.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|byoFkrlrzjDrKQLSItZyL-9wesXM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.500000159946712|0.51|130.6|0.588|3.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|byyGYJTbN6-nv3KbjX_Wt7pacwl6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -Br9C17Cs3H102I51N17Pb20|Cs3Pb20C17N17H102I51Br9|Cs0.15MA0.85PbBr0.45I2.55||0.86|154.0|0.601|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1429-3|bzBfj9RFEQFr6zTJbvIZBEdx-3SY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|263.5|0.67|14.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|bzFvh9TgjURphR_QmbPn21iWijKv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5750001679440475|1.02|211.4|0.72|17.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|bzKuoenpnfyjCeOkCOuQrwAA8LTX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|217.4|0.64|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05298j|bzWNp4C8wUt1URQBvHFnsTKsXQJM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|139.3|0.562|6.42|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2016.09.014|bzgciXVlOIJYnmBbC7juNxOc2Ptr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|1.900000202599169|0.61|3.7|0.2769999999999999|0.06|['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['FPDI']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.185|bzpwluvZSVAWPoJwlWq0BhmSz6sW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.05|206.0|0.46|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|bzqloMtAURfsNardTBNgRa_n-eNo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -BaBr10Cs10I20Pb9|Cs10BaPb9I20Br10|CsBa0.1Pb0.9BrI2|1.8930002018527508|1.27|139.0|0.753|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-12678-5|bzwPAFDxYBtLJ3nE1ufiWbQj4mFT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBa0.1Pb0.9BrI2. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|c-5PAZc18ogxRL3vOeaJlzJK--Bs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|232.0|0.74|18.95|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|c-8sD2ZQVptyBulN9-bPqFW9C6iD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|85.5|0.57|3.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201901186|c-AUiz3eOVal0x4iKAYab52Ms5Zx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|224.8|0.61|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|c-O3yonUcbIi50itLH0Evty8Lnxm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.879|142.6|0.5|6.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|c-dzXRSHwZlrPye1G4A6mMqFAyqn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|74.80000000000001|0.25|1.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4913549|c-s5Mf6B5-Hbt8lwZwexEa8ifvYe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|173.2|0.69|12.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.03.088|c-yIAi2vexxRqRrvq6F0YDk8oksY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|232.2|0.78|18.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pPh-2MODPACz', 'Au']|['pPh-2MODPACz']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b06933|c-zxI_JdQZOpa8a8NqyjTDxPA7G9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pPh-2MODPACz', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.254|111.0|0.67|9.33|['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|c0Av-k-60HfO7SwIzmkw41qgpvYg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3||0.87|113.0|0.8|7.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|c0FkNTgTqtJ-386qwD9pm2MA5kVq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|219.7|0.77|18.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|c0MPEKvuNm9jokoG93_MkPMYZuMx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|139.0|0.56|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|c0OPpTKJfjbf2iHvKrtOW7ifr7Vb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|225.26|0.6559999999999999|14.36|['SLG', 'FTO', 'TiO2-c', 'ZnPtriazine(gly)2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZnPtriazine(gly)2']|bulk|https://doi.org/10.1021/acsaem.8b00447|c0Pes5H2BaIaUkJ1AvMXiKvLGy4K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnPtriazine(gly)2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|1.08|20.0|0.58|1.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08848b|c0XRyU_eWn7EcxNT5eehq5srWNn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.07|200.0|0.64|13.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900474|c0YAAADfwFAoSlPH6WQu86LJfi6R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -C100Ca3H600I300N100Pb97|Ca3Pb97C100N100H600I300|MACa0.03Pb0.97I3||0.95|171.0|0.659|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|c0d6vof2iszitKDh0j-PcQxkuJcZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.03Pb0.97I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|193.4|0.596|8.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|c0k_1QYS5uKVIxyoIfDOTnekWe2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.85|7.5|0.6|0.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|c0ogymkZsInQUafMTIh00LkXHMic|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|222.1|0.6970000000000001|16.72|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.01.021|c0uI3JhZRPBXeVO2ddty45DvKUSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.95|196.0|0.669|12.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10854-017-8094-9|c0zLU3i1lr_GOx9hAeu-H9XOHn0L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|136.0|0.43|4.8|['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'NDI-H']|bulk|https://doi.org/10.1021/acs.chemmater.8b05237|c1HdmEc6dF4zn8Khs6IVsZBPywkD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'NDI-H', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|226.5|0.76|19.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|c1PMySK1pzYhdZKrkvPFH0rhxnTA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.9|0.79|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta06718c|c1VQgMERU6MDqLFiVZYN0gMhacgh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|140.85000000000002|0.78|11.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04919j|c1W6CEgYcAc74ZmVVwSNCgNZDXsP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.73|168.5|0.35|4.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8CuPc', 'Au']|['(OctPhO)8CuPc1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|c1ZK_OLhoxaXuoLQUy7cAWgsxMzO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8CuPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.957|150.1|0.34|4.88|['SLG', 'FTO', 'TiO2-c', 'TiBaO-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiBaO-nanosphere']|bulk|https://doi.org/10.1039/c8tc06218h|c1iivCr4TMiEYBmuCpiWN54m1Qw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiBaO-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.653|76.9|0.79|10.08|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|c20_0gJFo5Pq2YtxJOrU0IxMzTvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.0|0.745|18.4|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['CuOx']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.044|c24QHx1N4LBo_afbx9m8DGuJKuFL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|189.3|0.64|10.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|c2AuucmBO2rCQr01im1f1J3lKF2N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|131.9|0.74|12.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']|['poly(DTSTPD-r-BThTPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|c2D5AMjcjBWzqMvC9-MeCMGr5PCK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5650001668777365||||19.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|c2ERW1wPIo_Ij8NLmlTGtYWFpUmK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|203.8|0.4679999999999999|10.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|c2Htc3uIgUjmZ-naQVUjNRg6CmM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|224.4|0.7040000000000001|16.71|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201800568|c2JOYF5_M1In271v3AJBneNQ8zN_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|225.4|0.7190000000000001|16.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900265|c2Ly6A_j8O4b_DyOtmFWNS9dq6WG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.85|188.0|0.6|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43822h|c2N77fYu2KbN9P5HoRf-6zem4vRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.45|21.0|0.52|0.49|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|c2Vi9OCScqbIEw5DPgPlSn0688EM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|159.1|0.62|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|c2WB0JW_xg0URI3QnnKWTujp_cFz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|c2aA16YDgOLTjPlF7Z98LvvYwbxU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.106|210.0|0.606|14.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adem.201901217|c2b2qkqvTMGcAcugVfM-q-xexG95|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|174.89999999999998|0.64|9.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-015-0711-4|c2od7E4Pz7wDN3byKJ3Vkee0MsRK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|215.0|0.742|21.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c9se00448c|c2rjBQEQiqVNpdv-MhF5mARu55OP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|c2vqXxs9YOE6F-u0AihSt-XDxLks|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.0|0.63|11.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.11.058|c38LkrcUChty59qdNNtGjSb_cCBQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6120001718894|1.054|217.0|0.755|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp08022g|c38hMzbSK9WTt3vjfPWqFrwvFD_S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|131.0|0.38|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8081|c3Ema-kgybBP7VkUwtQMthnQfrON|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|142.10000000000002|0.63|7.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|c3h0T1GgxGveQZdPmYwMz11VSYt-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C95H532I300N133Pb100|Pb100C95N133H532I300|FA0.38MA0.57PbI3||0.971|236.9|0.624|13.65|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.030|c3qUwB9ZxBGzpmKY7Ek4OcjGgp9O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.38MA0.57PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|221.0|0.607|11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.06.149|c3vMpx93GHnHvV_-ZnGrVvzVX9j0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||0.937|198.5|0.523|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|c4A77Fbwot-ml2rEtVGHSGbdQWMr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|164.0|0.75|12.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|c4BW3jNRmu2BhvtXmsXpJfB7B9lA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|209.0|0.6|11.2|['SLG', 'PET', 'ZnO@rQD-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO@rQD-np']|bulk|https://doi.org/10.1002/admi.201500790|c4CTF-j2fl3-XfVDPWSnrxW4qPCs|a perovskite solar cell with the following device stack: ['SLG', 'PET', 'ZnO@rQD-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.033|199.8|0.69|14.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|c4FeJliQxFvMS2OpADNkGD2wBouV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||1.02|222.0|0.7|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04569g|c4NchuFPc-MaMbgbbYHiw7nfd76B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|147.0|0.72|10.3|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|c4OagPRGPmti8zS_KydXOmWlcWwr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|217.0|0.6|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6cp07733a|c4Qc07w_-94I1yb0E74HnQaYFz-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|144.0|0.7440000000000001|11.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b11141|c4eUTHB1nLImGdkM557tAx_j5kHY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.02|204.5|0.746|15.56|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.02.020|c4i3WL5ghj92Oq1B60yNjP1JIHyO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.76|187.6|0.4|5.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8ZnPc', 'Au']|['(OctPhO)8ZnPc2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|c4mq9jxsfyhkR6wcdtZw6T2s65r6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8ZnPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0069999999999999|157.0|0.639|10.1|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01300|c4sI4xBGGWHrshD2-i49ysqkZekj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2CH6I9N|CBi2NH6I9|MABi2I9||0.584|7.0|0.38|0.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03582-w|c4tOmwHvoDvxixseOhr2GkIHgutt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|198.9|0.8|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1007/s12200-018-0847-4|c4xr1c55jCjXZkLWu71pHT34Lv-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|213.0|0.765|17.2|['SLG', 'FTO', 'Al:ITO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al:ITO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226907|c4zzaC8qiibkMaQPPVeIg7ixVFCj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al:ITO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C49H294I150N49Pb50|Pb50C49N49H294I150|MA0.98PbI3|1.5900001695435149|1.14|216.0|0.769|18.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901840|c51gE5ktTVcAIYU2lvpmaocet_JH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA0.98PbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.906|188.4|0.45|7.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.02.007|c53rt7NBzTCTl4HVYbdsY9VZKfy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CsI3Pb|CsPbI3|CsPbI3||0.99|179.89999999999998|0.6459999999999999|11.53|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|c58TJJlhNTsY2WDfYmwIWA8DSnLS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.125|228.5|0.752|18.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|c5P3AQl9LtloO3mysqZ5b0DcUt_M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|170.6|0.54|8.76|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c7ra01110e|c5svvz8dH1-YdIIJ2g-vLh5W0iyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.98|215.0|0.555|11.7|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|c5znX3ipmQ11Arq7l_sKrS_Whovn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.76|19.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|c67_kU6jMyTYgDluNpWD4xeypIu0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.7|0.701|15.44|['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|c699aOkUf63RZbqxSGpsCsTOJtWk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|167.0|0.52|6.8|['PET', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|c6Gc-Dkc6ZidSzbU3Q6MVibTSfsq|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|166.1|0.701|10.88|['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501406|c6_8f5BpQC-tHWuT7Al-sRo4c2B-|a perovskite solar cell with the following device stack: ['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|185.2|0.67|10.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']|['NiO-np']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.019|c6b7eCUYFGWAipTcyj6kG4kQf-k0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.929|173.0|0.696|11.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-4-DP', 'Au']|['2TPA-4-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|c6c1cROTPQ3vLxw1hYwkBjUWXZYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-4-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.941|247.8|0.5589999999999999|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|c6dteK6c5rn9OpNYgMopjN5H_eoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.1|225.2|0.7559999999999999|18.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTT', 'Spiro-MeOTAD', 'Au']|['PTT', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803573|c6yg6Z4HIJ68s9ni6mIPYGjMuxsl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.116|224.84000000000003|0.782|19.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|c71aR2duhl3LgOYYU5dDP-EhnITm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|173.0|0.53|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5017069|c7Ijdx_NOVc3MjMlK5ikruFmnQpy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.1|0.79|17.96|['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|c7PRPVPFW8b_GSGlFq6Ex0StHqOt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|206.4|0.67|14.65|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1002/adma.201801496|c7PwSWVxGVOu9ueuvYZnkbeuYxJW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|197.0|0.737|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|c7Usu7UKWhJvCmP3wbC8u0Dd567Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.1|0.715|16.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|c7cGl2q1UbcA248Z4aA7-35C-OuS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.0|205.0|0.51|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|c7kK8C-LswXrIHqhkwrsDhZzetKw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -Br32C75Cs50H375I93N150Pb125|Cs50Pb125C75N150H375I93Br32|Cs0.4FA0.6PbBr0.256I0.744|1.6500001759413832|0.573|29.4|0.26|0.44|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|c7ojeHEXuoCSdB2ez2gjyUGsqwZi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|219.7|0.617|13.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|c7sOLZMkqqkeFiFrKK1Cn_E0M0u0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.01|223.8|0.703|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|c820NH93X09Lfy4BQ9eMIVDk2yxD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|149.0|0.63|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|c883el52O2Taf5sEMwJ5qa0AJNbt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.081|208.82|0.7609999999999999|17.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201606831|c8Fk_YVI-Kp3QazzK7eQWpqdPB7e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.879|191.0|0.53|9.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra07579k|c8Qg9BoTpjPLij06sK0nSXjOhE5B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|168.1|0.44|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|c8fMAYuGfvl5rrMbvw46Cnl982PR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|50.2|0.4|0.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Ag']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl401044q|c8oKiDCPvEuWle2Y5gvD9zb_8CEP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|221.1|0.78|18.14|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|c8thcQe_pXQEQ_4vZW3C3fmhltc9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C77H415I147N124Pb50|Pb50C77N124H415I147Br3|FA0.94MA0.6PbBr0.06I2.94||1.187|247.4|0.77|22.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Theophylline', 'Spiro-MeOTAD', 'Ag']|['Theophylline', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aay9698|c91IDhwp_05c614RZwMmJu77OlPy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Theophylline', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.94MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|211.1|0.7759999999999999|18.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104224|c91IynURcs5sKs08ir5dsmxbeT_g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.240000238853757|1.5|75.3|0.809|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|c92zAf2_PrEVSQoy05JL-rLzg4zM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.55|10.2|0.17|0.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|c97cCLqliPfCtkjqR_Ph50li4dDR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br237C1000H6000I2763N1000Pb1000|Pb1000C1000N1000H6000I2763Br237|MAPbBr0.237I2.763||1.01|189.0|0.71|13.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.20964/2017.12.71|c99cR6Fj4NhwBUW8vKOTdnH3U_bz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.237I2.763. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.89|222.0|0.71|14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.carbon.2017.10.015|c9G_iYwEp_H7ebmXRe_FoGAj7Sz-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8540000000000001|181.0|0.56|8.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.044|c9Ge3l8S3A9I6NawH7jYdVaggbeD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7959999999999999|169.1|0.45|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|c9HUwu3M7iEtpY6Xn9YZUUD-pE0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||0.98|245.9|0.595|14.36|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|c9Ky8QlM3Z2Qt7Y8IdxQcTpPpQnp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C43H246I120N40Pb40|Pb40C43N40H246I120|(DMA)0.075MA0.925PbI3|1.5500001652782691|1.09|196.2|0.76|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17068|c9Nmja1bDxkFLeIhfkLQrlwcx6Zt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)0.075MA0.925PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|26.0|0.17|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602600|c9SwwQ9s1PoeXLdcEHiSuGxVuQBS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|c9Wp_5YvDgD-9aT_0sd_i4mJ0plt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.0|0.44|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4890056|c9YfP7-VYcUE7SgWvqe44JiDFweS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|141.7|0.55|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.171|cA0GzLuB6W5Vzr2fp-uD2GB1JQa5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|209.4|0.66|11.58|['SLG', 'ITO', 'Al-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['Al-np; PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c7ra00274b|cA7aiQ4jvxAuF7btGkNf1l0H0Q-a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Al-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.4|0.76|17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|cA8f0vKYT2N3gqIVT14eSJPn2M95|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|141.0|0.7929999999999999|9.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2); PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2); PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b02478|cA9wm3J8CNaAialaH9OI7e9Zuj3C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2); PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|249.1|0.75|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-4A', 'MoO3', 'Ag']|['Ph-TPA-4A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|cABmd6SBrOpHLfKA3ftHrxducA_Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-4A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|212.7|0.735|17.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12305|cAIv0ILgleQT5hGoaOJ7AKhnPSes|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|208.9|0.6890000000000001|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02242|cAS1UJjCyOYadihPZ2G-iaFAoSFL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.1|235.0|0.69|17.7|['SLG', 'FTO', 'TiO2-nw', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-nw']|bulk|https://doi.org/10.1039/c8nr06899b|cAhqq1TKSjLNd2u1UhEkW437IGrh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|209.5|0.72|13.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c5ta02265g|cAkx6SmyBgfjCGR1AynN_lAEhLxN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H30I14N5Pb5|Pb5C5N5H30I14Br|MAPbBr0.2I2.8|1.6140001721026624|1.02|232.2|0.655|15.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|cAl9Fxn9mxHpxCtmgpTW7JPQmlAt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.2I2.8. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|83.6|0.61|6.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|cAw4-h9eU3CTIlHCYq8iS50suSjd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.107|228.3|0.76|19.21|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|cB8HtaE9kP_MzubK0Prlk3wVpeZY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|243.0|0.75|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X26', 'Au']|['X26']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201701209|cBE6BNBS9GpLSl5wKLYkWbY6ze82|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X26', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|176.6|0.816|15.36|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|cBKDErjv_9tYmSH37apEWHvIGPla|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|216.7|0.742|16.84|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201706276|cBOKPo3KL8aYIkwtBshV9KEuWq6_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5500001652782691|0.98|224.8|0.82|18.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7EE03113K|cB_ZA3YJLCZuZxqoJmpTuix37wiV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7750001892702758|0.81|121.5|0.634|6.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201404427|cBb95Q_tZsKNrcGMWPzgznvR0Z_0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4|1.626000173382236|1.127|212.8|0.766|18.37||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|cBbRO7RVFrCzfOvaKqwaCl8xexsu|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.1|0.628|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|cBm4DEbbcipVDi-6bfqfJq3tWPgy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.0|0.738|15.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700159|cBnq3BAyFdsLZ8ITDxF5W9U2eADp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|||||3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700740|cC5JaWk6uUnqMvpMV6iKhzNGWbiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5600001663445808|0.97|208.4|0.63|12.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|cC7J3VSIrto9KYzDmu6NCVnBkea6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.04|208.5|0.732|15.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|cC88jEzyNX4vf5C2s1QDGdf5d5RZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.09|231.0|0.78|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.02.011|cCM1lbEYaMO733Pd85FWNltFMdiV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.08|214.1|0.777|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|cCOU4gJVTWqXSf7vAHnvDePEwj2A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|224.26|0.747|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|cCUIoDsf0dE4BXPbrM24QpEcUZXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|203.0|0.64|12.27|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|cCYNOmh9kBKXmzmQwea2Nzalrm-6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.9|228.8|0.54|11.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|cCclI9dRhaMEL9nXp97vcXa-NpUx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C100H533I300N167Pb100|Pb100C100N167H533I300|FA0.67MA0.33PbI3||0.95|210.0|0.77|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201601543|cCd1ey1CJavMgxJ62W_h-Wb21uBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|226.4|0.7759999999999999|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|cCrPBGeuKBVH-DMY9pEM2I2PfV0B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|23.1|0.28|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,3′,5,5′-tetrasubstituted 1,1′-biphenyl', 'Au']|['3,3′,5,5′-tetrasubstituted 1,1′-biphenyl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|cCuxtD5UoP649xpUNbVWKyAkZNi5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,3′,5,5′-tetrasubstituted 1,1′-biphenyl', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.4|0.74|15.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|cCxpLeXzn2DGzLiGMe44_i6XxdAI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.4|0.7|14.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|cCzxaCzYzZ8kS6-gEiShRA8xBu6d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4||1.08|224.0|0.779|18.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201700811|cD3c0IFUiEDYNahTo4bKyIzzZWMX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|95.0|0.62|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02868|cDKL2QAzqpU9Kft0zPtPh3X9gndu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.65|219.6|0.57|8.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|cDStWeHiKd6ogL1AEfzVQigMVO3C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|209.1|0.39|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502537|cDVHq0zYgUCOzVdAw15BmQdrjc0_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201700018|cDZWpfALSfaPTXMyGOLB0B4fqak-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.33|123.0|0.456|1.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|cDcDDws2YmfNMSYYl3NQnli8Ob7B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|140.2|0.23|2.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|cDme5wArzEhqz5UJOAxmPoxM7RaR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|178.2|0.508|8.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|cDqDsXkA-lYv1jyTULirgykylxjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|239.6|0.763|19.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706401|cDu5PrwdhYi-Famg0NxvkQC60xa8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|220.5|0.8109999999999999|19.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|cDzP_lTu_Dfz8rJrgRQK25V5c-EG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C96Cs4H505I249N187Pb100|Cs4Pb100C96N187H505I249Br50|Cs0.04FA0.71GU0.1MA0.15PbBr0.5I2.49||1.19|236.5|0.75|20.69|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9cc00016j|cE-DZbrr4dPBqXvWxwSXGinyANCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.71GU0.1MA0.15PbBr0.5I2.49. -Br17C83Cs17H415I83N166Pb100|Cs17Pb100C83N166H415I83Br17|Cs0.17FA0.83PbBr0.17I0.83|1.6000001706098266|0.978|208.0|0.73|14.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803600|cEDbXhqnJpkyvmvEM8QDojVESAQf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|181.0|0.66|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3nr05884k|cEKYE91naXjNr0jPeGC4JEQP8_JM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|224.2|0.72|17.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202001788|cEMYPMoGntgunOpnU7P6BqPldWsI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.5|0.67|15.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201802109|cEQO-fsyNl0o9yt0VpKDLP7dx6-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.3|119.0|0.367|1.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|cEUptGkKzZrG1JFY2F0Pprc3jTOT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.095|223.8|0.7979999999999999|19.61|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PTPD']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c9ta03896e|cEVliFV7QLz4GqlZPyDCmMjyq-W2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.9|0.65|12.28|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|cEZY6ODTby81ZL5rzdbcP4X6sa-0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378||||11.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c4ta02637c|cE_4YIfvt9nsdnas2K3ShkfosXPk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|186.1|0.7340000000000001|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|cEctZT5mfVLTTYbA6i-WjdyUoQET|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.0|0.623|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.062|cEfPFak_qmV2pVWIYREEDeZbIr25|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.0|0.77|19.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|cElAaNyqIgFmXSCb0_5LiqWUFAia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|0.0|0.22|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|cEm7j4jvd_rGR6Y_QzZqtFki_sWL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||12.17|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1002/adfm.201600910|cEu9tkSroPlnf0vRy2GOD79ApsVV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.903|67.8|0.5489999999999999|3.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']|['Montmorillonite', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500163|cF--WpC0jaGv-DZSjNQZZLn7AKpE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|222.2|0.722|17.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|cF-OqNvp2BfO_Nmn2gY0ygjRxpl2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|160.0|0.51|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|cF6iv1vVCoSACV9s_GOC7rZRvoLm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.03|217.2|0.66|14.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|cFGz7ulOumSalEufL4v86k-dPHpu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.5|0.583|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2017.08.045|cFLyQlKBGysNK8S_-C689ATZ5As-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br87C50H300I63N50Pb50|Pb50C50N50H300I63Br87|MAPbBr1.74I1.26|1.924000205158316|0.843|84.41000000000001|0.5489999999999999|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|cFQrkjHk8cfPyxsADxwHxFW_uWCw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.74I1.26. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|182.9|0.757|11.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc02928d|cFUPv_4STNujzQRYMuFuHz1hwhka|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C91Cs10H468I300N169Pb100|Cs10Pb100C91N169H468I300|Cs0.1FA0.78MA0.13PbI3||1.044|238.0|0.7|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|cFdB-ZNaejSamnfoxPIpqU563NO8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.78MA0.13PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|209.0|0.731|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|cG5GMN8KRHfVQOdPEprCSltaXuXs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.9|0.74|14.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|cGOaEsDldMtgrJFZnVaxdnZWueZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|cGfGgbhPPk3-YUGRrZm54P6Oq7ik|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|217.6|0.6559999999999999|15.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1109/JPHOMV.2018.2877002|cGfiJvFmdIKu1PgUtuCxgleEd95L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|223.4|0.51|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.renene.2019.07.162|cGnGeqztr27A9DPbeGIU9LjBJpDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.0|0.69|13.9|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acs.jpclett.5b00902|cGq6XbiIYvyZgMgrfQpCfC8xPZJc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.101|201.0|0.7170000000000001|15.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|cH6uFewes3NG0vIQcW3N_J3OTvx5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|222.8|0.713|16.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02555a|cH9f9dS40S5VCThH-yfNZ6HnPnur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|180.0|0.718|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra07359j|cHCafJmmHylf8J-KkBvwmk6VEPH3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.09|210.8|0.746|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13145|cHEAvUYDzhk6yhmbTPbnmqOedePz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.082|181.8|0.693|13.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|cHEH0W4csg_Xm5TXEt_b4cJhgHC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|224.0|0.7879999999999999|19.1|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|cHGN2k3Qc7ZuII_naiHK_taMemBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|190.9|0.647|11.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra15512j|cHauNSTBl-Q5nNW9bkzGt8cDhvYP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C39CsH215I120N58Pb20Sn20|CsPb20Sn20C39N58H215I120|Cs0.025FA0.475MA0.5Pb0.5Sn0.5I3|1.2700001354215498|0.78|327.70000000000005|0.72|19.65|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01237|cHdkAzmTov4lFJkpNN8v5BVQoPtL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.025FA0.475MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|210.7|0.67|13.13|['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|cHeQ0CkzT5QX9GuXkIZeXAgATmnl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb19Sn31|Pb19Sn31C50N50H300I150|MAPb0.38Sn0.62I3|1.2200001300899923|0.7959999999999999|255.0|0.6920000000000001|13.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201705998|cHgCD1B0car1JcMXMVDHIYMcADhN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.38Sn0.62I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|211.0|0.64|14.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|cHhNMpg-4SJ2MTyXnLWxt-WiUVJ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.132|156.85|0.7190000000000001|12.67|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|cHq1iqLLyokqpQ8hOl7C42P-ZSZA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|105.0|0.437|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06338d|cHwQAR8eg-mAFUi8z4AhCHnI5Tpn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|226.7|0.77|17.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|cHwYjIDUN368UHrNWy2Y38egjT_Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.997|214.1|0.65|13.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtchem.2016.12.003|cHzRm05-ixd1jdHMyKsKeYs4bM-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|220.0|0.7|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|cI4LleB9-GobZwQc57XfTlixF1hC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|138.7|0.59|6.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|cI4f1RexwbhyiyVYtzxmrhc9xlbK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.78|55.07999999999999|0.4629999999999999|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|cI6olMN3Q-KU2F0krvpP6g7KDJtO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|211.0|0.73|14.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|cICakj59lw56tzhZNFfdWadwioJy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.128|222.0|0.765|19.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|cIGVsQDOlUK4bXQKGmZ-ZxqcSQAx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58|1.5800001684772036|1.08|215.6|0.7|16.43|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1039/c8ta09026b|cIH5IAqI74S4e9o7hvgwR9BTw91K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.1|0.6890000000000001|16.1|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|cIIJdAdmMs3wT4zdOYW8TFwZh6RL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.043|219.7|0.763|17.47|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|cIYKTJUA-VB0Py82Qwj0qSj3TRi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|198.8|0.57|10.38|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.024|cI_89_JFfnQyMKH2dzepenaoAFZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|164.3|0.698|11.59|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'Cr2O3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Cr2O3']|bulk|https://doi.org/10.1002/solr.201700245|cI_mj4GKiOEtAX-l838l6YnkZWbd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'Cr2O3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|1.6000001706098266|1.14|201.0|0.78|17.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126518|cIdHQOpBJbxzuV-w6SKXQi_d7MCj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.549000165171638|0.95|198.6|0.65|14.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|cIfkaX8dJ0BPitELeer8YgiF7-UM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.5|0.7040000000000001|17.75|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09336b|cIg34TZklHj3vPSJBuN4VqYAKSaJ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.0|0.77|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01760g|cIgjSA07t2d94aaz4VXvJ0b_2667|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5Co2H30I15N5Pb3|Co2Pb3C5N5H30I15|MACo0.4Pb0.6I3||1.04|187.5|0.705|13.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|cIln6xeqU6nrdu3D7a1OagTH_jh4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MACo0.4Pb0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.8|0.7509999999999999|16.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2019.134924|cImNTCGeksz-Y7KNHTrPG-ZVyTCM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|174.20000000000002|0.65|12.57|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c6cc00522e|cItppzOocgVcPGVKValj3wTugJUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|220.3|0.778|18.39|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|cJ41UGn_KlewCiQcxqnNpzB1AAN-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.84|184.0|0.67|10.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Au']|['NiO-c']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00926|cJBrM7jNbNntERZv15wwsqr9JTM4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.87|186.0|0.56|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b02858|cJZCxZSbmVzBqQzHdtSxo_XWwCD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.721|4.91|0.318|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04657f|cJZPnndZSohMTys-WfvIVW2Uu1hB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|194.5|0.7|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|cJd58xQio7FExmFtGzQAWxtvZUxv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|223.4|0.637|15.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ee02685d|cJidJ0tUah6Ma8KpPy5DH6Nubb1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|176.20000000000002|0.61|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09565h|cJlnEtOI-wlYk3thSuBBCOVG3zHn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|209.6|0.648|15.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|cK0dG4f9aEi6A7oSgaoa0657FHeV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|223.5|0.713|16.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02603j|cK9qoki3_Il2VNCDkNSlOB6x0OEI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|85.7|0.5|4.37|['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'Al2O3-c']|bulk|https://doi.org/10.1002/adma.201505140|cKDhc_E_FWW7GlSGmvpgQV7K1a3K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|166.0|0.55|8.7|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201601974|cKE8bn4AymXpvS19owRw8bFvn3Aq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|233.2|0.6990000000000001|16.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|cKEAZtu5IlFsuQsduNDMGQ7W4thD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.04|173.0|0.79|14.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|cKEt6-u6niCot4uUkL3fq28cLb5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|207.2|0.71|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|cKEuA88CswEYwaP-m6bvs-VHZLMT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|153.4|0.62|9.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-018-6531-z|cKIHcwBlvNQdChMS7MPo_WnPrEBl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.8|0.779|17.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['NiO-c']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|cKInLZTb4NAkzFZiOmu0LpL39rO0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|120.0|0.39|4.2|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms3242|cKLyHgYg9Sr2P40ur4IyF6uBKk7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|223.6|0.7|14.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']|['Thiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|cKSrq5gg-EWbquW9sMCThENZhBWf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|218.4|0.7170000000000001|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.09.195|cKbWa5N8pT1xJOtRVxDmVOXkWeYF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|173.0|0.679|10.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.010|cKbsPB4v59Z0kyoV3gybDUhnEkIN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|194.0|0.67|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|cKcEFtSOrqmN3DdhIbt4FfrYg_iQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B-MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.4|0.757|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|cKhNDpUXEmcQLh7TR-4lQggmCXTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sb|Pb3C4SbN4H24I12|MAPb0.75Sb0.25I3||0.7|15.3|0.636|0.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00241|cKsEcfaFtX-EmlTGiBUZ9y19-2rD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.75Sb0.25I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|218.9|0.76|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|cKtj3FuBgpQbXmmY6_Z6PZQP-FYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|186.0|0.62|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta07545f|cKyAJheBenz6trrzsuIZISHULA01|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49||1.13|233.0|0.757|19.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Alkoxy-PTEG', 'Au']|['Alkoxy-PTEG']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902662|cKzYEu-CJX2od-_P7g8OGHjel4uI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Alkoxy-PTEG', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|197.0|0.706|13.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F-graphene; P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra03466g|cL1ym54M7okUmgOx46CPxQy_U-Wt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F-graphene; P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|171.0|0.103|0.56|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2014.12.002|cL3grt_mqED5Bx17R1Q7PZ0Mgeak|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.85|135.7|0.73|8.42|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|cL6Rb_pxPktAKoIANof8uf1wiS4F|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.6|0.488|8.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|cL75cK-8upqQ8dGQxUvUwd7MX3U7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br13C13H78I287N13Pb100|Pb100C13N13H78I287Br13|FA0.0MA0.13PbBr0.13I2.87||0.99|208.0|0.5|10.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|cL8TXvRJZs1-Iry4Gp9c9kQ0_APn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.0MA0.13PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|218.8|0.797|19.17|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|cL8awomK9nQMKNf9bO7fg17x4isZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|222.5|0.703|16.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.6b13362|cL9rZ7orwPbQdEZ7btOTDg2wNMbP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.75|15.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']|['PTAA']|['TiO2', 'C60']|bulk|https://doi.org/10.1039/c7ta09178h|cLSSeYwP7Hu1NY7V9CJuhpoA4Aix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|153.9|0.5539999999999999|6.42|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/c5ra01540e|cLWi3KlACPq3s0xd0cISHm7ydiCQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.65|200.0|0.51|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp02113d|cLYvNbaZiHZk7xV66Nen1SOdQo20|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -C22H68I16N6Pb5|Pb5C22N6H68I16|MA2PA4Pb5I16|1.670000178074006|1.11|179.3|0.478|9.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.8b01153|cLknzGFBtoKZ4CQR0JMxmHnOYvps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA4Pb5I16. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.04|211.8|0.76|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|cLkoNVAPlE5er9i_OAqPYy1LF7Sn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.94|217.0|0.628|12.8|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|cLoJyCG31e-B2UgAshC3yHDTbGTF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.1|0.738|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.inoche.2019.107701|cLpWrT1aAI17BzvGRpSr-EAHMeVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.013|209.4|0.73|15.43|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|cLrVj6vVd0x87w62Ctpa49hmz5HT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|cLy2mVVe_u63K1Z_QAL2me_mihI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.887|196.0|0.504|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|cM7hbE-7jAdt2PuMMzInwd6dCSyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I13N6Pb4|Pb4C20N6H48I13|(PEA)2MA4Pb4I13|1.6000001706098266|0.888|127.9|0.643|7.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|cMF2Baa5jQ-cwWoka2sy8_Tjz6ca|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.3|0.71|15.36|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b02406|cMI4MeMD4RC8wkcNFjaZ056fbCQO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.0|0.7979999999999999|20.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|cMIwKM5JvD0Gu7grz2yIKnLyu5Mn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|201.0|0.63|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|cMNE3qy94u7HRwUrJbJSUJ5uDZ8I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|174.1|0.72|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|cMQHLZtoNWG8PwJuEGBNojnFiiZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|192.8|0.731|14.23|['SLG', 'ITO', 'C-PDTON', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C-PDTON', 'ZnO']|bulk|https://doi.org/10.1039/c7ee03275g|cMS2Zt3H6BY8uAyzmu1KMUqv3cq9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C-PDTON', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|157.79999999999998|0.562|8.43|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2017.06.185|cMbobiNkf5-af8-mGqyWaeOcuw41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.968|188.9|0.5539999999999999|10.13|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|cMpdCN0RoaOcbMH2pKbcwZ1MREx3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|160.0|0.42|6.4|['SLG', 'ITO', 'IBF-Ep', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IBF-Ep']|bulk|https://doi.org/10.1021/acsami.6b00635|cMrcXXZ8hg_gszV2ezqKulXvi-Jp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'IBF-Ep', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb2Sn3|Pb2Sn3C5N7H28I15|FA0.4MA0.6Pb0.4Sn0.6I3|1.3000001386204838|0.75|288.0|0.66|14.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5126867|cN8BlsCqVtFgEz_wgwkKOS4ZJAsF|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.4MA0.6Pb0.4Sn0.6I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.096|215.7|0.7390000000000001|17.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|cN8ogT3mNVg1f8Xj30IQnFOYxJ6d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.86|212.4|0.38|7.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2']|bulk|https://doi.org/10.1016/j.sse.2018.02.008|cNGb_4gGei9xyewuqWEHM0MaBGi6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|106.0|0.67|13.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aaf158|cNGz-PLBhOeivltll2qGgQcseV2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.3279999999999999|127.0|0.31|1.1|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|cNJZgWoZan0j21GZC8bg2PNwwZ7E|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|232.6|0.782|20.33|['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c; SWCNTs']|bulk|https://doi.org/10.1002/solr.201900415|cNNMYCx3rODRfQ6yw3MLAFnqRC6W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|86.0|0.4479999999999999|2.46|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|cNOgf1hzYo-qrJwVOhSa55s9YQRO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|174.0|0.54|9.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1149/2.0051808jes|cNUoXeFk9OOiLjsiQ4GJzZ85Nlgl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8||1.01|202.1|0.71|14.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|cNYQInfBdTtlJ4d54SDp447_sXJO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|195.0|0.628|11.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Ag']|['PDPP3T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dib.2016.02.021|cNZQA8Rp2-Wi-9Yu-J5HWLmxHGuz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.0|0.74|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|cNig2MSyx0mINJ6x4C_P4Y0sZaD-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.0|0.55|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|cNsm9nsF03dDhX81zdrTx7exJy-d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiFeO3|FeBiO3|BiFeO3||0.81|20.0|0.5429999999999999|0.99|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1021/acsaem.9b00722|cNtdRp74PXklibrCN_mSHK2NRCnY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is BiFeO3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.017|194.9|0.755|14.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|cO2UoPoPIEC-zGclxigULAY-m-76|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|189.0|0.56|9.0|['SLG', 'ITO', 'TiO2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4tc01875c|cOCHx2lWTHbpkbRiQUYiRgjrFSWq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|180.7|0.76|12.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|cOFotnyAWq6KL6AYH687RNaCOE8s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.103|234.0|0.772|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|cOLAVCRUkCx-M_c9SYdmcwicMaGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrC25H150I74N25Pb25|Pb25C25N25H150I74Br|MAPbBr0.04I2.96||0.8859999999999999|200.0|0.635|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2018.07.008|cOUFCS_yQLYvafVqbMeOeop3qxvt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|127.0|0.68|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04051e|cOVMUaPohJvKA0eKDdl3lXVfqqeJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|133.5|0.5920000000000001|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110029|cOXBe-0poUNM0Tyn-PQgMwQkCDVa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.1|0.74|16.56|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|cOYVF2J9i5zKttN5vVJKAowv4L-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|237.4|0.75|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.05.024|cOZ-YUWcAXQR9eTGl-u96QyFyo5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.227|96.9|0.674|8.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700946|cOZAFHP42wWdZ719JA79zctXB_Bf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.0|0.602|11.41|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1364/AO.59.000552|cOff3qrTRClcDCSmpq5eiNSDQnHX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|201.4|0.5820000000000001|11.8|['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|cOuBc_fODir_iEc_u7T4ebm5_NVk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|227.0|0.732|16.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|cP6X3Td6a5ShAVRl2qIaLi75gOx0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|240.4|0.201|20.14|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201901964|cPHxY0kMTgOOdErNXe2Jk5_RBnQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|155.29999999999998|0.61|8.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2016.03.028|cPORttsofIhHQ65CfGyXeqfucBDB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.013|7.7|0.39|3.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-F', 'Au']|['DPP-F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|cPRd__ZoMQCYbJnq7GOoSZgfDliN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-F', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|178.79999999999998|0.56|9.4|['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|cPUWmGJHaIYS3Si-gRSnr7vuJQuc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.35|82.2|0.7|7.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06115j|cPZEtUAoYP1S7vpNTdX3ICtVRdkn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|214.0|0.71|14.9|['SLG', 'SnO2', 'SiO2', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801773|cQGI3eAauWvuTIK2_ofUFO4BEdZQ|a perovskite solar cell with the following device stack: ['SLG', 'SnO2', 'SiO2', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|200.0|0.61|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|cQHo_eeXiS6XmF0E8alPWYzvMUJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H87I60N32Pb20|Cs3Pb20C17N32H87I60|Cs0.15FA0.75MA0.1PbI3||1.08|186.0|0.7090000000000001|14.29|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|cQN6wLsZMy-1zNNRQYZGm25Pm-zF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.721|160.0|0.493|5.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|cQNH0Q4Xs4vibxhNByedUn10I8zi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.0|0.74|14.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08783|cQNXgXbpvlcc8KP6mBdFoSVen_iJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.986|199.7|0.545|10.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|cQOj1yEVh6e8w52hj6r6m1D8ZkkF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.0|0.64|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|cQTQFM_L-hhne0HUCoGD-Ooyp_Z4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|202.0|0.46|7.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|cQhmNklVuiy2fmqG0vT7fg6KMZfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|189.8|0.45|8.29|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.044|cQiDS6eAHe0CbOAmJoSzi2B_mluB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -C16Cs79H24I241N2Pb80|Cs79Pb80C16N2H24I241|(PEA)2Cs79Pb80I241|1.7300001844718749|1.06|161.9|0.68|11.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|cQl-f5T3sDGkVKmNaEW1tex_-HNw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs79Pb80I241. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.1|208.9|0.8190000000000001|18.5|['SLG', 'ITO', 'Graphene oxide', 'PTFTS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['Graphene oxide', 'PTFTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.072|cQpRHZ8DrdNVo5jeP0p5zrquk36X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PTFTS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|0.99|212.7|0.72|15.16|['SLG', 'ITO', 'NiO-np', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|cQpxu7eMIgwGlsdNCVpxP-z8pDvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|189.0|0.63|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.140074|cQtOolpsxWFbqrM__U8l_5JrTsNO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.093|211.9|0.736|17.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3']|bulk|https://doi.org/10.1016/j.orgel.2019.105426|cQyQaza583tJbjNxAW2xmEGBb0hF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.01|169.5|0.62|10.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|cQyhU_Gv8ThK-afrj0UBDzJvZwmz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|151.5|0.647|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms11105|cR9PJ_LfvuRO2A1jLLDvr4D8KfKP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.04|174.0|0.44|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|cRKI3-79TMWToMUfFAYUD_EdDIIz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.1|0.78|18.86|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60-MCM', 'Ag']|['NiO-c']|['PCBM-60-MCM']|bulk|https://doi.org/10.1039/c8ta05636f|cRU6o_wX7kzRvovttMmopHT7eWhT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60-MCM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.52|85.1|0.51|2.27|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c6se00070c|cRWrS6j0n1aK-MBSmRWNocpkHIOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4ClH20I6N8Pb4|Pb4C4N8H20I6Br5Cl|FAPbBr1.25Cl0.25I1.5||0.774|64.2|0.487|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|cRYOjWM_A6D8aleU71scFNJ7RT99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr1.25Cl0.25I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|117.0|0.67|8.8|['SLG', 'FTO', 'Nb2O3-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O3', 'Al2O3-mp']|bulk|https://doi.org/10.1246/cl.150167|cRtUhq5Tworylf5_ubW5gRi2P8Y1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O3-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.948|178.79999999999998|0.5579999999999999|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|cS4KATo3fZBIncs6KwWFADkHC-Xy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -Br8C5H30I7N5Pb5|Pb5C5N5H30I7Br8|MAPbBr1.6I1.4||1.017|229.2|0.75|17.4|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|cSAKLxZIRZlHgVTbRfTHzqKjAa2_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.6I1.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|230.8|0.7759999999999999|20.05|['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO-EA', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|cSC37wT-fiYte8o8ynh5FNraP9Rv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.1|0.66|13.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9091220|cSN3tUhyX-2dXYZFyOAkRnww7N-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|203.0|0.5820000000000001|11.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201500471|cSNFggeytHOW0Wv5Ai6vg4bitYIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|184.72000000000003|0.775|12.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|cSVs4QxR6c2JW6ICG5TGFydpRUp8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.08|135.5|0.65|9.48|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/advs.201801117|cSbC6OgxCBQuaKgUsKe4D0VlLnj3|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.0|0.65|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2018.01.006|cSf3bbJ495imguGcxdiLY9R_OdyT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58|1.5800001684772036|1.1|215.9|0.75|17.82|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1039/c8ta09026b|cSivKWF0M26ZohUPL660tnDkj3_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.7|0.772|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|cSlVZO-SKmWW7v2IGSMxmjtZZU2j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|226.5|0.742|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02721|cSphx3nVPTIbGLDqEwnp8eA9J4H1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|211.0|0.62|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|cSqKIrLvm9wnQQI5m2Lh0OIpoxl0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.057|cSu70IPv9Ak6zazDPGGT6JpYTT_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|180.5|0.62|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|cTC0VT3X9Cg_gZ_vmhSs00-MXZRf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|188.2|0.7120000000000001|13.89|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.01.025|cTFZg6UxBVG3ATp02jztftNNRiTS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.0|0.62|11.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5002117|cTLWhwS8U9EqqlOBTmWdPL7660-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.639|15.0|0.208|0.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|cTOPTjCr_JgvblX5Jb88Asnc_vWM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|197.9|0.6859999999999999|14.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|cTPg1XrBNGTvUvZVUoqY9exme2NS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|183.0|0.402|7.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|cTPnj1KDf9_x_iHafsqcYBykuV9H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|210.6|0.775|16.6|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|cTSu9fLWLIrASep2sL76fUY-VPnc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.5|0.807|16.04|['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['MoOx', 'PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|cTYEZaJaV81dzt-tfk9_O58TiiVz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.0|0.718|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr01186e|cTn1FruZxvrn3JrN_Zhft3kjgxO7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|62.8|0.376|1.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|cU1iGcMA9Ei0uRy8h39DCi680RTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|130.0|0.38|3.6|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2017.12.027|cU7REr_IlCisSBu5Ozzkzcfwdo7u|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.495|152.31|0.417|3.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||cUEwYywZI33y7rSGP8MEqAioN3Ec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|138.0|0.49|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|cUMKwooCjKKmdDApNqzHrxeK4DXh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|177.0|0.779|21.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b15867|cUQesvH57Dv0t7sBUEK7Z7tjTZgR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.169|194.8|0.677|15.3|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|cUU1hhbhLcVM6Ua_NQGPcEb3oMEA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br7C10H60I23N10Pb10|Pb10C10N10H60I23Br7|MAPbBr0.7I2.3|1.6800001791403176|0.99|186.6|0.56|10.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700480|cUWFW4870YtZ4OhVbJ809vnyEx60|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.7I2.3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.774|149.0|0.5589999999999999|6.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974796|cUW_4OUNwYVnuoYZzk-D0ZpOJBog|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.0|0.78|19.5|['SLG', 'FTO', 'SnO2-c', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'Carbon-QDs']|bulk|https://doi.org/10.1002/adfm.201910530|cUWkRaqJtoRmKfjpatFLTNdirCNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|250.0|0.54|12.82|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|cUiG-5H91DVz97oTZHzKohoCiRK7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.958|225.0|0.594|12.8|['Cu', 'CuI', 'Perovskite', 'ZnO-np', 'Ag-nw']|['CuI']|['ZnO-np']|bulk|https://doi.org/10.1039/c6cc07573h|cUkN19bB0IGZVfTW61JdIzSNhth5|a perovskite solar cell with the following device stack: ['Cu', 'CuI', 'Perovskite', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|220.0|0.72|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|cUoUM883ItsnRGVyMrn5UmSBYyLP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.055|232.0|1.71|17.25|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']|['DTP-C6Th']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|cUq4nngsONlb2SDOSOel2K7lFsjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.9|0.75|15.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|cUs-ExqnrQagWen6hm15A72LEAXj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|1.154|196.6|0.818|18.56|['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|cUwkRqpuwplVJ_NrxNlksUGPEw21|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.164|205.0|0.63|13.47|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606656|cV0-NeXLj5Oranx_oFQorHjBGcNu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.08|227.5|0.79|19.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|cVJQvCgzPxEYPl7C1pewh8BpTbq7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.08|194.3|0.69|14.73|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PBDTP-DTDPP', 'Au']|['PBDTP-DTDPP']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra10009a|cVUk4ZHz6-j0-BQF8CRYY-L2rdfF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PBDTP-DTDPP', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|248.6|0.3929999999999999|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta07671h|cVXSUKumAvfKJW3p3SvCK-_jfi96|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.24|95.0|0.6|7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00311k|cVZVjeCQXAtGo4iPaJi5sVYvg0cS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|0.691|153.7|0.2|2.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'InP-np', 'Au']|['InP-np']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|cV_A4K3R1NJTzrQ6XlEiugsqJgg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'InP-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.005|204.2|0.7959999999999999|16.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b02612|cVdK4JpIV_mcHBaVZY1jnZesHXoL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|201.6|0.608|12.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta06813d|cVh_qMFOrADNmWgZi00cPFGMZUYS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|166.0|0.6509999999999999|9.72|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c5nr06692a|cVqj0TkDhxWFVvxwYuqR_h_hCEUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|182.0|0.69|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|cVuInuxC5M2EL0GmiyHlrUAXMuPx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|197.4|0.72|14.35|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['B2F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|cVzLI3QSDJdmUvoRjWQkT37r45YY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|149.0|0.478|4.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm503828b|cW0qWHmg9CfNvOQvZuv5WCNOHy9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.8000001919360546|1.05|143.4|0.74|11.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|cW4nWgUGev5NSJuN9W6u-hvkKlTC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|222.9|0.693|14.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.09.011|cWFWunMyBHUPJFItOIw0RP5Cf8FN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||0.91|154.0|0.53|7.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aa75ab|cWI6bJXdgIvTk2JbRKNwO4BH83y2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.67|112.9|0.61|4.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.09.041|cWIVm3TCwPsaTst4Nf0XoH5VkFUM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.98|178.70000000000002|0.6579999999999999|11.55|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/ente.201901042|cWM2gMxgEYw0BQNwanfSbFelR6-Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.8000001919360546|1.22|176.6|0.63|13.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/smll.202001772|cWN5ociBu_22bTWtSrpsVzUPC1ul|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|145.0|0.38|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|cWOKnoFS0Og4LCKL_Ytkvjknz89B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|cWTAHO12Srz2U7pXx8lpuPAkvDGh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N11Pb10|Pb10C10N11H60I30|GU0.05MA0.95PbI3||1.07|224.9|0.782|18.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|cWaJaHY483QSLUea1FtbEbAIZIFf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.05MA0.95PbI3. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.44|163.2|0.63|4.52|['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['LiF', 'PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|cWh0RiBfUBolW82kXNc9hUaFC_l3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|225.4|0.7490000000000001|18.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|cWhGUGvPtgdcqCBlVEEBd4BvQ7Xb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|||||20.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']|['DCZ-OMeTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|cWlANpcRIKtYPoNGYr6VTBkdBth7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|227.5|0.7440000000000001|19.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804028|cWsFpTt9WAAtb1IEEj5W0GW8WoHB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C44Cs6H239I102N69Pb50|Cs6Pb50C44N69H239I102Br48|Cs0.12FA0.5MA0.38PbBr0.96I2.04|1.7200001834055632|1.14|166.70000000000002|0.619|11.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|cWu6DZ68WNEdJziFCT1sehQ6Z_yf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is Cs0.12FA0.5MA0.38PbBr0.96I2.04. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|185.3|0.76|15.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|cWv2F-dPN38tEmAHqKvcPh9wKqc1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.031|132.54|0.313|4.3|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|cX0oYxoD1mHDhijK_MZIvnB-nw03|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.125|221.0|0.7559999999999999|18.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']|['NiO-c']|['ADAHCl', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03131f|cXDOiazGX95jSVLAwRL8shNS7Swe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|207.2|0.636|13.1|['SLG', 'FTO', 'Au-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ta10715j|cXPxPIkRLDY53SZlyGSe6TAGZQ-E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.05|135.8|0.6829999999999999|9.73|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|cXW_WX6o78TWR8ZNefHGmQzMXBQp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.93|176.0|0.74|12.1|['SLG', 'ITO', 'MoOx', 'TPTPA', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'TPTPA']|['C60', 'BCP']|bulk|https://doi.org/10.7567/JJAP.57.102303|cXo3FMc_z4YkdX0f1RdRGmCxnkou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'TPTPA', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|214.0|0.679|14.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM05', 'MoO3', 'Ag']|['KM05']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|cXqxyRGh_CK129QlVUmY9hPisJUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM05', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.616|143.1|0.589|5.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c1nr10867k|cXytCm9ORtS4mmUFYpIuAAwb_kn4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8PbI3|1.500000159946712|1.04|194.5|0.7070000000000001|14.33|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']|['PTAA']|['PDIN']|bulk|https://doi.org/10.1016/j.orgel.2017.10.028|cY-z3EL6zLVnsRYiGM_qtZZra5-_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8PbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.15|232.0|0.7559999999999999|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201903368|cY1K_H4A_VNdZDztLkK3YEO04lNR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397|0.897|207.0|0.7190000000000001|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|cY22CjfW2WRQgkZ3QrTMGRB44Qkq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.736|16.8|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|cYA4CMmrOpPxMSPInzR8N0Z19Dna|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.78|4.5|0.28|0.09|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201800346|cYISpLKksMxpxM8MTP5Z8IM2CnD_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.0|0.74|16.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1155/2019/4360816|cYTC38Us2bt8fQAkOyjzv3X921u_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.81|104.0|0.5|4.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3938/jkps.69.406|cYWJsV8jTwxBh9GdOapVomwTss4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br10C9CsH54I20N9Pb10|CsPb10C9N9H54I20Br10|Cs0.1MA0.9PbBrI2|1.7700001887371206|1.13|173.0|0.8220000000000001|16.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06315|cYbu0MeD3kz-vd4KvIoEtkt7gR7J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|218.8|0.7809999999999999|18.46|['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']|['FBA3']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|cYg0To133zY4aIzAyamytDhP2mjW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA3', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|138.3|0.62|4.41|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|cYne6caL5nGKLTKnYtaMUJ0yWhhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.640000174875072|1.15|227.0|0.774|19.6|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|cYoVKznAbofZtp7idXUICVKyxhC7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br3C23H135I72N26Pb25|Pb25C23N26H135I72Br3|FA0.12MA0.8PbBr0.12I2.88||0.873|132.20000000000002|0.67|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|cYxIoNqF2wN8XDFFOjl1v-z5x9WC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.12MA0.8PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|222.0|0.693|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|cZ1Uvui1VP3RyDuLuB5-JGS_fqQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|221.3|0.747|17.39|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nw; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|cZF2CSXHxSUZKHs7YuQO-wM8a706|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nw; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.15|99.5|0.644|7.39|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.049|cZdXFDQYfMdqhKrgYTG1fwQ8Z0Px|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.75|277.0|0.71|14.5||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|cZhxagqCNX6hEtvOHok6Lb7zwtiC|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.986|206.0|0.8|15.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201702775|cZi4fwgTx4Xfe4HtE6Lb_A360rPT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.011|197.5|0.593|11.84|['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|cZrxIUcQHboZFZgpa6MV2ZVJpbWo|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.12|221.2|0.77|19.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|cZuKWnqeQvj-EuaG2AiihHAV8fyg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|231.3|0.78|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|c_-MzEYvsBAXac8JfVB3Mr1_EP7I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.028|c_76Btnuu0EkNqIAjxOqgU1D_qE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|201.0|0.589|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06189j|c_9uhxOPLbAk4aRgqrNTeRtJI8ua|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.99|64.3|0.54|3.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smll.201700611|c_BjVHCIJBIOx4jHIChFDs0eVk6h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.916|235.2|0.652|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|c_I7rj_DFuCJV9mItfRHGpbG2yFQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.622|78.7|0.8009999999999999|10.71|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|c_SRL6Athy2nBJSz3OBJ-6HOOMOE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.2|0.763|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|c_dakc0fznEyte1S8IVy9QnwcQT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|145.7|0.505|6.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|c_eyNbA5PcPvU0uP_dgVxEvrcJCT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.0|0.748|16.5|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07586j|c_hhFNsMgBXKYzyQpv0w5ZQ-02IR|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|176.0|0.35|9.3|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201801434|c_i6s8JsGCB5GE6zEl1HGMpF3Aec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.039|200.06|0.776|16.14|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||c_okjqfE8hJdPn5a8yDaya8pnkkI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.99|177.0|0.43|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03577E|c_pnqNbHWre0-FtdV3r-hJ8uveOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.951|107.4|0.48|4.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|c_pw4ILS4pWAgKwhPMFc5IWIruWZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|223.0|0.69|16.0|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|c_uuZaJg1m_nQeyU3CCxbAXcm6-z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.75|14.7|['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']|['Polythiophene']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-015-0755-5|ca5FiLWeJuVnHZElIlDArW47ZBdC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|211.4|0.708|16.27|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|ca5NOm7IEf7vbnAxQpmfU9K9wWK1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.99|185.0|0.7|12.8|['PEN', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.04.055|ca6YQrN95JwxHVYY5j4DjMincKYb|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.039|208.1|0.67|14.22|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|caC6bCFoCxelE_UfLIRAFlOrO9w0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|175.2|0.7|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep38670|caK1VkRHNOAZPa1oy3pARCJOLSTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.11|223.0|0.77|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|caKDQ4bq9jXz_4IclV3E4CNJ21l8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|230.4|0.737|19.4|['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/solr.201800338|caKk-HCtK5OkqFRegyvwLbB_X05M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.09|242.5|0.77|20.32|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|caQCno5_CSH6Kcem0fFuahg_7MKJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|231.1|0.746|18.59|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9dt00930b|caiMxgw4BW6pQFxeB8ruQSYO5lWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|70.0|0.254|3.6|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['Unknown']|bulk|https://doi.org/10.3390/ma11091759|carlepXCNvwuFVcPTIjY2vu51aZw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|151.0|0.621|9.6|['SLG', 'AZO', 'Cu-nw', 'AZO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'PEI']|bulk|https://doi.org/10.1039/c7nr04739h|casTWWVugCx--VF9oMV-GkVdSZ9V|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Cu-nw', 'AZO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|100.0|0.465|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2185997|cats_gFFvntP3_P6zf47nltpzMJz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C19CaH114I57N19Pb20|CaPb20C19N19H114I57Br3|Ca0.05MA0.95PbBr0.15I2.85||1.02|223.0|0.66|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.053|catzte-eEqGXFpukXya0JKbyveol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.05MA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|210.0|0.61|12.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|cax4e62LACjRjbjW_TLUTU-YyR-l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||191.5|0.53|11.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CTZS', 'Au']|['CZTS']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b09572|caxCJ16Z3Ki90wSL4H_bM2uDSOmH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CTZS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.1|228.8|0.7759999999999999|19.52|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|cb5Fv0xlmxnWcpT9HY3aq0iFQV22|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|103.0|0.64|6.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Graphite']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07714a|cb9-saZSPsYHs1YBO8dYGxE21D9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.0|0.69|14.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta02502h|cb9GDK2VPphqDvA6b8ambxOFu2I3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|178.0|0.74|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b00447|cb9vacR_XBbykp76-qFtc-eYtKkb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br19Cs10I11Pb10|Cs10Pb10I11Br19|CsPbBr1.9I1.1||1.22|133.4|0.58|9.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227389|cbOgL-epd0FxfzqwVNL4SZjDkLhe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr1.9I1.1. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.07|212.6|0.74|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|cbRNSzrOGAeiT3BAS0iuojbwR0Cr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.696|11.0|['SLG', 'ITO', 'PVBT-SB', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SB']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|cbTNq_hd5QIlQByfP4JN6znIwuMK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SB', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.0|0.74|13.87|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|cbW_2XxmJ6c8x0SgNnz6Ov6Yd4d2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|195.3|0.415|7.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|cbYWJAaajJHz7by59fNecFMkGv7R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|156.93|0.505|6.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|cbwyN44fGuSFzPZWDuzrZ-DMGXqZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|200.2|0.62|13.13|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227405|cc18OkxZoRheDSgZcGx4Ll-0BfUl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|235.8|0.757|20.84|['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/solr.201800338|cc8DrPa93_5xRJtlmrTg4FTaClTr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|188.0|0.77|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/adma.201505279|cc8lJHjnOb-ZZ1Lby8MRiztAeChJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|229.2|0.784|19.96|['SLG', 'ITO', 'NPB', 'Perovskite', 'PCBM-60', 'PDI-Br', 'Ag']|['NPB']|['PCBM-60', 'PDI-Br']|bulk|https://doi.org/10.1021/acsaem.9b00164|ccGkcZRLfXTBfGrn8HTXkdbraIxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB', 'Perovskite', 'PCBM-60', 'PDI-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.2|0.7|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|ccKrTnCryjuPFACFohLClNrlX9yA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|216.8|0.741|14.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|ccbCTcktd52Sbf0_ylVvtjNYMiAV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.0|0.674|12.43|['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|cccdXdG83WgjZeA8GixsDBpyo8lR|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|167.0|0.37|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1002/celc.201500031|ccpJVc-c4MkvT5fa-RVxQWB15bmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.23|5.760000000000001|0.3289999999999999|0.044|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|cdHZ8wKBiqEfmWeqUidfaMNBOka8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|cdNi6k3zvssCqrgCLYlTOKFCWJBH|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.09|208.6|0.5920000000000001|13.55|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|cdZwqAPRZobVTp6jiQuIbUYvwwuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3||1.05|214.8|0.69|15.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806479|cdlhHQ9OaFlbxXj5R4-pfPr-gjUU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -C125CoH750I375N125Pb124|CoPb124C125N125H750I375|MACo0.008Pb0.992I3|1.5600001663445808|1.02|211.0|0.774|16.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|cdwbozB8VgF9bSSthNpLcnVULhIf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MACo0.008Pb0.992I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.0|0.736|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4943019|cdyRK76p9LfVP_66ajvTkU1DZaL3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|198.0|0.612|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01864|ce0ThkcgH6WbuPKOmaKgDaXsHDSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|159.8|0.618|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3']|bulk|https://doi.org/10.1038/s41598-019-45374-x|ce1ZJZA2hIosuytFl6FWd8evik9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO2-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|160.6|0.748|11.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|ce39-4xmLXaoFLFtDkfCTGZCX7MW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|176.0|0.59|8.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|ce3lqvnhSph7AEC9ReToFER9fNhD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.2|0.59|12.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|ce4F4qODx8DPHMZJYYQ_Y7ZV_YHb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.0|0.78|16.5|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|ce9P7SYUAq4m3BJeWVDpAJqDL18T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6000001706098266||||14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800554|ceByAyHiQASpb8XGJRiapEqkBggF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.51|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|ceNDYHyDJznheY1E-_C1yrBQCccj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.589|110.0|0.47|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02711f|ceNb83SXuVr4eypbJ-7E8R9TkXNA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|173.0|0.54|9.0|['SLG', 'FTO', 'TiO2-nt', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt', 'ZnO-c']|bulk|https://doi.org/10.1088/1361-6528/aae9b6|ced469z0Y_lEWs0RUpaq4WwSQIdm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.006|235.8|0.72|17.09|['FPA-PDMS', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110135|cefQ8n88E9FC5QG3vG19lsjkSECI|a perovskite solar cell with the following device stack: ['FPA-PDMS', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.0|0.701|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|cery_qNVrgxSN4la3iDU92BwYKWU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.67|137.0|0.52|4.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|cetWJ4eMIuiTCs9bMjlxWZkBGnRU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|208.6|0.71|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|cexdwZ1GDqZPGnQRbEmGAHjot8wN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.6000001706098266|0.77|30.0|0.5|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1179/1433075X14Y.0000000252|cezLtMFO5_UpHDIXG17KLm4uDzeR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.78|139.0|0.64|6.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|cfLGu1wAlKrz6W5nBApcTALZ2oTI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.976|205.0|0.73|14.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|cfVyJKloOJVGA21ZGE2MtNLatoNc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.112|235.9|0.762|19.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|cf_uLZKAH-IBBpGnuKK7KKzUVUab|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.69|41.0|0.19|0.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|cfa9_pByMyujQZQsm9dhLfe14qgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|215.2|0.66|12.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.7b01490|cfaK8TZuXwn6V0q6idf1lGK7RLuo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.871|187.0|0.556|9.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01154|cfl3y408Sc_7iZ7IGK8cRjKpveeN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|234.9|0.62|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|cfrm_DNZRBIiIBk36u2SiLDJNtrw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H22I10N4Pb3|Pb3C18N4H22I10|(DAT)MA2Pb3I10|1.8700001994002349|1.01|21.7|0.44|0.97|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1039/c8ce00999f|cfxbjTRxEKf_dW6YCn4plGuj3qWX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (DAT)MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.8|0.695|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|cg179n-Rmx9j5Rp3TYdzLCFO8VEr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|106.4|0.5489999999999999|4.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600229|cg2rAlpGdrNscpEW3V-fYTWtZtsn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|186.0|0.5|7.2|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|cg3q88mSibgtY3FnlP06jb8xL4x_|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.6|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF002', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|cgBtupvDBmrFIBXJEJeosGBXtVeE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF002', 'Ag']? The composition of the perovskite layer is MAPbI3. -C47Cs3H235I150N94Pb50|Cs3Pb50C47N94H235I150|Cs0.06FA0.94PbI3||1.04|215.38|0.75|16.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag-nw']|['PTAA']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903897|cgEreGJON68pvBG3w5GbWRYQrevf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag-nw']? The composition of the perovskite layer is Cs0.06FA0.94PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|164.7|0.75|13.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra13289a|cgOHXEoPgj-gfxNvbmnJbQ48STgt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH105I60N28Pb10Sn10|CsPb10Sn10C19N28H105I60|Cs0.05FA0.45MA0.5Pb0.5Sn0.5I3|1.2600001343552385|0.71|320.90000000000003|0.76|17.29|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01237|cgZRNbJoi49cH291sgcC4_iSWBor|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.45MA0.5Pb0.5Sn0.5I3. -Br45C80Cl9Cs20H400I246N160Pb100|Cs20Pb100C80N160H400I246Br45Cl9|Cs0.2FA0.8PbBr0.45Cl0.09I2.46|1.6600001770076949|1.23|207.9|0.823|21.05||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202107359|cgaCWARt6-P4G3Ks1ExWKGH5u6c3|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.45Cl0.09I2.46. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.08|225.0|0.774|19.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|cgkmLixglUL3YaO8gWr0geH-NU7F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|cgoCOrDgQlCYGjwCzamCAf1leKSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|126.0|0.54|5.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|cgoMRewwLmm_aF3akBCLz4SmKaX-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|178.70000000000002|0.64|7.39|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|cgvZx8WGmQnFcsRqDGZZRM9mTLYy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.2500001332889268|0.17|307.5|0.349|1.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']|['PTAA; TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10734|cgwYyGuWAj7RdKETq-k7TZM6wDio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|222.0|0.72|15.66|['SLG', 'ITO', '2F-SAM', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['2F-SAM', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b10445|ch3oLvrTUn5CyUnrSIiL1cZ-UBxl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2F-SAM', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|209.6|0.7020000000000001|13.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPBTD-B[BMPDP]2', 'Au']|['DPBTD-B[BMPDP]2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05814g|ch5SHnqKqchVp-s2tA4GjFa4oBgd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPBTD-B[BMPDP]2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|173.1|0.7390000000000001|11.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|chCQwXXQeOZJLtEyOOCKb1RudlCZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.617|137.6|0.557|4.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c1nr10867k|chQV3zdGd69drISJlodzr61SqQBI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|62.0|0.58|2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00122c|chcrJYshE2VGSjRfs4dO9az0Wp1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|224.8|0.78|15.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1166/jnn.2019.16678|chfDuOsUr80Bz3b_O6Hsak2b0GaR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.0|192.0|0.71|14.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|chitNNohDP3YUK6o8Z807lznKSkv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|233.2|0.74|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Poly(TA)', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Poly(TA)']|bulk|https://doi.org/10.1002/adma.201905661|chobT0AbmetleVJUJhUWXmYBVTcY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Poly(TA)', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|chuGlYSaWtlN-CE2j8AuD28EGPrq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||||||['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|chyE9zdPpWluxuMb1h5ckCiJIufw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.0|0.75|19.0|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']|['P3CT-K']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b03444|ci03QQjukRFxWx8RseHUEo45A1Hf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.12|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|ciIHFbWSAPc-NGfPIIhBN2jm6pdD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.0|0.79|16.8|['PET', 'ITO', 'ZnO-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-c']|bulk|https://doi.org/10.1039/c8nr06586a|ciOD4J5CMw-0xMlMGLzo721HdoS4|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|200.7|0.778|15.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|ciSmM3bQuw5ieVZP1iwRB1FC-qIh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C37H1171I782N278Pb258|Pb258C37N278H1171I782Br9|(NH4)11.9FA0.15MA1.7Pb12.9Br0.45I39.1||1.08|221.3|0.753|18.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|ciVYegBXXgJutNm_u8G8ZuG8407Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)11.9FA0.15MA1.7Pb12.9Br0.45I39.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|219.0|0.473|10.28|['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw', 'ZnO-c']|bulk|https://doi.org/10.1002/aenm.201400932|cifC8yY1kS4rcgjmqNIifHjFjtiy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|106.93|0.598|6.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BL07', 'Au']|['BL07']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.008|cihYsBjvqXElH6YY08JAkJUCRla0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BL07', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|188.0|0.785|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1021/cm5037919|cijR0CmK7koTTQlrd0okvfd0gya4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.36|79.2|0.29|0.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.molstruc.2018.01.037|cijmcQJay_ez6FTaTBaVtVBIbSAF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.083|216.2|0.7440000000000001|17.44|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201700722|cin-oIMxgpA0wG4fH7TAjg1vYtY9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|146.0|0.49|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0957-4484/26/49/494002|cip_6Fmiy0A0vzm0PDTxbq4Ruk8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|99.0|0.48|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|citK7fqqPd2bDQiCbeO5wVyhq4RO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.0|0.62|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10228|citeqfDc7Dqz2d1NMcnSd0kkVdRG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.91|169.0|0.528|8.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|cizJQqZUAzPVsRupA5dbQHiQJDgS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|167.60000000000002|0.6890000000000001|11.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|cj16o3sO2BJM1jeAeL54-5-N5NzD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.92|201.2|0.746|13.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|cj7UAOdQa_cI63k8pyfXDQy3uCWE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.2000002345885115|0.09|5.1|0.84|0.39|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6641/aab455|cjMLamsEP7OecYM9A9JqHALmbtSy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MASnCl3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.477|68.0|0.785|7.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110317|cjNtdYBNjhL1MdkgGV5AhS9UeEnz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|177.7|0.71|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1038/ncomms13938|cjdA3pQfnFpkeu9rJaPAW2UoST8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -C23Cs2H115I75N46Sn25|Cs2Sn25C23N46H115I75|Cs0.08FA0.92SnI3||0.44|204.8|0.66|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b03194|cjkiXFaKRY2xPNeraWgfKwGPivik|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.92SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|217.8|0.79|19.27|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|cjmq1bIQaXgyEt-1K_NDgy8tcU-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.4800001578140891|0.985|233.5|0.688|15.83|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04190|cjr54Gfnu2iMZ9mrFaYMae85lDEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|207.3|0.688|15.21|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|cjrvZ9e5OmWk1rUlAkdKG8YaPB40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|243.3|0.48|8.19|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|cjtQAyraCkMH85HVhFFJYuIWwGSu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.4|0.664|14.15|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201600594|ckBCn12rSnPzCUZ05c0qvYa3_DES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|165.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|ckF0t9dyGuW6MNbemt-zWjQH0YBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5CsPb2|CsPb2Br5|CsPb2Br5|2.580000275108345|0.82|57.0|0.59|2.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.018|ckJX4jgnAEj9vFMPk53dezhqxq_4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is CsPb2Br5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.0|0.6|14.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|ckMVEKhmZ7n3c2mKLJylccEt4qkS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|186.0|0.63|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|ckPEGXjQquIblVHBfIoocu7YRGO6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|201.6|0.595|11.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|ckSQWir_idVoHwslLyO6QGnoh6LD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.01|215.0|0.76|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08398b|ckjfCFUzNHjfkVpxvd0OgXh9v5Rg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.085|220.8|0.7509999999999999|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|cklNCi58l8uI4kjxviWE9Ec-YH4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.94|149.0|0.71|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11082-016-0819-0|cknYOAln9nixCEdRTsiAwHoMlas5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|210.7|0.66|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)', 'Au']|['ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05254a|ckprW371dcKH1BA_mjSD3ZLf9kzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5529999999999999|181.0|0.647|6.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.0c00923|cl2V5sfJocgWqyqway6dxVWYrp6T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|170.0|0.75|12.88|['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-QDs; TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b05177|cl59WkIQNUQduI1vZIBbVcqNcSKY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C100H600I297N100Pb100|Pb100C100N100H600I297Br7|MAPbBr0.07I2.97||1.03|235.5|0.75|18.2|['SLG', 'FTO', 'TiO2-c', 'H3PW12O4; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'H3PW12O4; TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135428|cl8hPhlFy4Gut0P0DQPTVZgVoJmn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'H3PW12O4; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.07I2.97. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.0|197.0|0.601|11.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|clIw7q1W6handcwKVGEax7Wkdxyq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.7|0.74|14.49|['SLG', 'ITO', 'PTB7', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTB7']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|clM_COw4fQ_LV2cSZVzUYW45K1gJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTB7', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.69|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|clPgRZoqB2BNUSxqWdVT7eyBtWBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.82|105.0|0.44|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|clbaAA8ikUa7evf3hkVwkE41KDRu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|213.8|0.754|15.36|['PEN', 'ITO', 'WOx', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.021|cleW7IL2aQGjoF7AAfkseG1qTHNF|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'WOx', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|147.0|0.635|8.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aa6e47|clnnKW8WzJSBtmMyQCDQdpjv5GTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.08|240.2|0.762|19.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|cloOhbkRUbtz1Njec_SIpbR1IDMg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.9|207.6|0.48|9.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra10007d|clxQUJuU7Ma0fTqybgY-gLrog_vC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|200.0|0.73|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14557|clzAdSB-AIA5Urn0Fgv6OB1AvKeh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.6560001765811705|1.099|182.87|0.6559999999999999|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|cmB3WlX_v02s_yTor-KfUwBQKZb4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.5I2.5. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.048|197.03|0.778|16.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||cmCqYeXZ_dN1CW23-D6_qsx8cK5n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|206.6|0.8059999999999999|15.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7tc00597k|cmETctQnHUryu71Xh7vB6x6xzfy_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.061|207.4|0.726|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|cmEVycN1gI79iiPxtFc0EEQUclEg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|cmEjvgcw1pQtgG6AFbg7TkvpKdoQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|235.2|0.68|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05653|cmHphGnckrBEC7lRE1cJdy_Rty0s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br15C8Cs2H40I15N16Pb10|Cs2Pb10C8N16H40I15Br15|Cs0.2FA0.8PbBr1.5I1.5|1.8200001940686776|1.18|130.2|0.7390000000000001|11.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|cmHrLArA183-WTJ67ZgLVt1KKH5P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|171.0|0.73|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature12340|cmZYFF7RdRqSbqLn_bmawYzL5XX5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.07|241.8|0.785|20.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']|['SrCl2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20054|cmZx-iuL73qrR-7N1qoulL-wAqr6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|142.0|0.44|6.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|cmpYyOHXF_eM4lpp4-T0X4SLZVXc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.0|0.478|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|cn0_vgJDluqbIz3IIMZFrYiMNjko|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|178.0|0.56|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-1', 'Au']|['PEH-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02014j|cn1_mySWfvRjrJ4rInadSThFONJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.0|0.63|10.3|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|cn5s7Gk7D-jTg4QBLkP7XXQA9Oc4|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|128.0|0.779|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']|['Spiro-CPDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|cn78wNEcbkpqTYYlTUuDkYdnXAFv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|201.0|0.64|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700271|cnFlIFm5l4Xtp-CZ8tdwqsDVwg_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.7|0.768|15.68|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.06.011|cnN9nCyRD4Xx1ToGbWvT2v3rnzjf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8240000000000001|138.5|0.63|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|cnV-gVaRkpr2r7qwoeaLh30fbsvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.761|236.24|0.48|8.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||cndRquwaeChrOopchAecx7Lnw6z-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||0.81|184.0|0.54|8.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta00239a|cnmSB4ifcg_sBOvhZVpftpjfBV5S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.054|203.93|0.594|12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OPh', 'Au']|['CuPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|cnsH9L4aM8qMoYvH7kfw-RM6pmyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OPh', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.421|121.0|0.366|1.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|co3j149TF5zLtFGg9e3gE0PvWklI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.13|242.6|0.7809999999999999|21.42|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|coD1WmBQVC5DfRv4eiRnUvEydref|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|201.8|0.701|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2020.137786|coDX13B6Df4dV30L2WQy0t096G6X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3|1.5400001642119578|0.97|220.8|0.624|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|coL6BdkVuWsFjwx0uAvsnzjktyx0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.09|215.2|0.74|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|coNSuDUf8Mapevznj41m_xJzFfnH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|201.9|0.736|16.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|coOBwHGqv2kqMo4fwxTZWKVewoSx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.108|224.5|0.7390000000000001|18.31|['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|coOqJkn3_moWgAjjENl252a0Qnsc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.968|221.0|0.68|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04600b|coTmDemduwGTacJm0gp6n-NEqTcF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||0.95|137.3|0.42|5.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|coWfh8FX3PzmoycL9GdqTGwrlYdj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -Br10C18Cs2H93I50N33Pb20|Cs2Pb20C18N33H93I50Br10|Cs0.1FA0.75MA0.15PbBr0.5I2.5|1.6300001738087604|1.06|194.0|0.72|14.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110080|coWk9RELD-ZwMAzLSUCSK4Ova0u9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.5I2.5. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3||0.7959999999999999|287.8|0.7390000000000001|16.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900467|co_2Dr3W44BtQY81tmv8W_l3bC85|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.9|0.65|12.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01090-w|coqzHdbOfkW1v4l5zYQAPQ8Mdf5r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.5|0.71|15.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|cotXMAYuAzi-r1tZjZ5cR3FcciBL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC9CsH52I9N11Pb10|CsPb10C9N11H52I9Br|Cs0.1FA0.2MA0.7PbBr0.1I0.9|1.6300001738087604|1.16|218.0|0.817|20.6||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41566-022-01033-8|cozRo-GF9kKtGGmhP3jw3Cc4qsAe|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.2MA0.7PbBr0.1I0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|136.0|0.727|9.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16963|cp-qGCcYYpny1JdiJ5YYR1F1W3r4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.664|102.0|0.487|3.3|['Stainless steel', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201404973|cp2e-QygrHZcIqoiD5JzdH-RN6aa|a perovskite solar cell with the following device stack: ['Stainless steel', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||0.95|234.0|0.679|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc 1', 'Au']|['ZnPc-p-ZnPc 1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1088424619500457|cp9D2ugSyG5_BLx61JJ_wV7dyGSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc 1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|154.70000000000002|0.504|6.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|cp9h4OQe2SBJbj7pIHvk2ElmomLQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|202.85|0.654|12.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-FA', 'AU']|['DMFA-FA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01471a|cpBH9HMZwG7mHpUBJ0M9PZZNMjN8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-FA', 'AU']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|220.0|0.64|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.09.091|cpCYpc6lrUZjA8BeUDOry4ShnSPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49|||||12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.02.052|cpFWFGoDUz91S1PReEkqED1ZDm75|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|192.2|0.58|10.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b10070|cpNIINeehOfS46oL5UG383EoaOk9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|129.5|0.61|5.92|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']|['NiO-np']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.019|cpTWz4Wblg2EuGCv1OAe-274PPB_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|219.4|0.696|17.82|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900263|cpeG3yhs8QomVEhfH7Q5u0aF5EyC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.622|128.8|0.366|2.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|cpiTqZPpaG4YoiRNWkSXJtHpGaek|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.0|197.0|0.6|11.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon', 'CuSCN']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b07318|cpvITq7MnYQmPx18d07G8bAZiH1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon', 'CuSCN']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|170.3|0.61|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900446|cpvtxyFMwqix0baZ_WIiPxRDP0zI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.246|142.48|0.64||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||cq-1KQy96LJV_ZAkgLfOACFesS80|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|158.0|0.735|11.0|['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra02556h|cq74LQ4adIhxnoM3XUfuFVAgeOvH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|210.0|0.7|14.55|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanowells', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanowells']|bulk|https://doi.org/10.1007/s00339-018-2251-8|cq9rvrPndxQM9D_34JbzQlVRkz8x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanowells', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.7390000000000001|17.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b01063|cqnigZa26CABi8ca9TfpkFQF-4kb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi3Cs50I150Pb47|Cs50Pb47Bi3I150|CsBi0.06Pb0.94I3||1.05|166.6|0.68|10.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201900517|cr2OI6OqRcwExVD94SS2USPgNm5K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.06Pb0.94I3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.98|181.1|0.633|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|crOmYh_QxoaSRXZNKSpUdkAFhRg0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.115|101.0|0.25|0.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|crSYw1T3evHUIsWMzxCZ0ttrTxLt|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.857|207.9|0.59|10.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|crn4l8r5mcIOA5J3hx76sRziykfP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5529999999999999|181.0|0.647|6.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903721|csEHqhkghpMkkHqUuiaNX-rK8SVG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.41|65.4|0.615|5.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']|['BTPA-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|csI4khvd-R_F-G5JoQnUxu3bbB0L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||187.7||9.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|csM_S-atesdA38eDmwgb82XnfD_A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC25H150I74N25Pb25|Pb25C25N25H150I74Br|MAPbBr0.04I2.96||0.88|189.0|0.542|9.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2018.07.008|csRDC6VI1y_gn_Ff-hnGmN4DIUJg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|97.0|0.59|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|csRP4dzuBdEXl2nBbcWmZI015AJq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|178.0|0.54|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|csVmEkI5J7KHoeNKn4pOaNaWFiIe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|201.1|0.7759999999999999|16.55|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']|['P3CT-Na']|['PCBM-60', 'HDAC']|bulk|https://doi.org/10.1016/j.orgel.2017.06.006|csXtCERZ7WyEtLT1QsFSxEi3e6WN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8|108.0|0.674|5.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/8654963|csYq82ey69bU-247vLZxMav5536M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|207.0|0.47|8.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'Al']|['PEDOT:PSS']|['C60', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.03.016|csdXLr6Px44zBuLXRJrh8pd9yVpj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|150.0|0.33|4.2|['SLG', 'ITO', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2014.12.002|csgXOhYANjUvuPjZ5o77PNTp2Lhc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|205.0|0.7|14.4|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4929435|csh4BQlUq7smuAlr3yYtiDolehlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|119.0|0.561|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|cshMVeTR0FTQcRPOTg-Od573vINx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.121|181.7|0.6|13.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|csqmU6NnJs9cH4mGuSErBuXcRfno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.0|0.72|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2018.07.025|csqvdDoS9VKz7v8IsWP_S8CP-pBQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.96|213.9|0.622|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF1']|bulk|https://doi.org/10.1002/asia.201901452|cssQ5F4dPcfJcGtEsqn4WVEI2Mm7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.3|0.73|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|cswrN1aJfGfYP2SYYj4iJCwSEiJu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.1|0.713|12.61|['SLG', 'ITO', 'PEDOT:PSS', 'Dex-CB-MA', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'Dex-CB-MA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ra04907j|csyIBOjGEriVhIhjq_L3CJmbzQUS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Dex-CB-MA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|201.8|0.61|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2941181|ctHRvttGf7ajTclzE4yT1Su2EJK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|216.1|0.67|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|ctLAPUbKE6lPxi2PGbDT8LE101qM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|161.0|0.645|10.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|ctNeBvt-FaDQ666LfYvEltp2Dec0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.09|220.7|0.71|17.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b19030|ctPdbe2Ptft4L5UIEQ1uVMANqNe-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|ctTycmkN14wF1eJTdi7nZxhrM8qc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|185.2|0.561|10.61|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|ctVu_IHcTA_6zrHqopXsArfpE01Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|233.4|0.701|17.41|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|ctYDikYDLyicc44DZ2a5AhmkGol3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.0|0.76|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|ctZo16INgvU8jOuIyj2upI8Fogth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.07|176.0|0.72|12.7|['SLNOA63', 'CPI', 'Cr', 'Au-grid', 'EG-PEDOT:PSS', 'Ti', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['EG-PEDOT:PSS', 'Ti', 'SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b10190|ctf0-DlfO-CEpSmnIPHxY1eSSYro|a perovskite solar cell with the following device stack: ['SLNOA63', 'CPI', 'Cr', 'Au-grid', 'EG-PEDOT:PSS', 'Ti', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|229.0|0.73|17.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15563|ctnF-dS85Znky_iks5UVvhb61XYf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7|180.6|0.54|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|ctp1zCDPoEnXOIcunXWbhsrNaLrC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|217.1|0.7440000000000001|18.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b01061|cttqIbKs0bZ9DEH-HqRAELaxfNjn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|0.882|216.0|0.653|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|cu65p49HesU0VK41R1dmz9ssc_F-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|238.4|0.524|13.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16219|cu8PjPljh30uKGb77cmxclGIDBcQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|109.0|0.41|2.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'ZnO-nw', 'ZrO2-mp']|bulk|https://doi.org/10.1155/2019/8348237|cu8RYZNQI-5WPW5eSqpheRCh08-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||0.98|185.4|0.667|12.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|cuD7OvpvzbIMEv3kb6X3gOtcFIJd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.7509999999999999|17.12|['SLG', 'ITO', 'PEIE', 'CDIN', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CDIN']|bulk|https://doi.org/10.1002/adma.201601745|cuDfrCIB3PD_FjNw836lnfkO_6pq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'CDIN', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C27H126I36N20Pb20|Pb20C27N20H126I36Br24|(PEA)0.05MA0.95PbBr1.2I1.8|1.8200001940686776|1.29|138.0|0.64|11.5|['Unknown']|['HTM']|['ETM']|bulk|https://doi.org/10.1021/acs.jpclett.8b01152|cuZDvry0liCpjzZVvnoZmCo-1_jY|a perovskite solar cell with the following device stack: ['Unknown']? The composition of the perovskite layer is (PEA)0.05MA0.95PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.108|220.7|0.78|19.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b03586|cuZF45eBP4X6WTPCfu805wxRgcyt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.0|0.73|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|cuqW7JvVn7L4SRUTnGmDZHmdHbaa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.07|233.0|0.75|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr00180d|cvFOBO2yJD4L_ZdkxSzNZk7FayNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.8|0.731|14.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|cvZa6GsP0CfM_OFNVgPmqeNFzc3o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.012|180.2|0.726|12.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-3PA', 'Au']|['mm-SFX-3PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|cvdCPYsmPojBt4eSaIIJKa2XutYU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-3PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|225.4|0.78|18.75|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|cvjfs-oCvLfjRwDlpxTEt_CghS-6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.039|124.2|0.69|8.91|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.3390/polym10111227|cvnAzdAGj7iriI590pggQ9w48xXJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.810000193002366|0.311|133.7|0.525|2.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/anie.201707037|cvqnvJqfDBVfIl4VAIsV1pqZtImK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MASnBr2I. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.055|94.0|0.562|5.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|cvrUfbMn8BokfJIuE8WTvIcmjwnW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|180.0|0.5|5.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.010|cvuM2xb6Ocyec07ZG__qEEqrzYH6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|169.3|0.53|7.56|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']|['CuIn1.5Se3-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|cw6Aa0oSVCHI8TEGnkEKh_IyrA5W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuIn1.5Se3-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.498|208.7|0.44|4.57|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|cw79n8PvByms6s521ReWKEce7ixn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|131.2|0.49|6.02|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'Bphen', 'Ag']|['Graphene oxide']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra08680f|cwA335yZ73ZFIX1WokO5-QLHHRdV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.7|0.63|14.54|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Spiro-MeOTAD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900389|cwE_neu9kroLuYDKMcq1CuJpFQhq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.0|0.68|11.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|cwNhcQeLbh5vT4BnzRulBcVR3GHc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|200.2|0.51|6.97|['SLG', 'ITO', 'H4', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['H4']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b10070|cwQx_Y2-iK5GozngOS35DE5xguBu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H4', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|188.0|0.71|13.1|['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'Ag']|['MoOx']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.10.005|cwaLLOE3KuxBDXTGxsV4pKPtdYz9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6300001738087604|0.912|214.0|0.6409999999999999|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|cwfwR9QVPnQLyNJJEBCZteEwaxSD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|195.0|0.71|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F4', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F4']|bulk|https://doi.org/10.1002/solr.201900223|cwhKPYDQQ-XOKE5oulB9yQQF3Rrn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F4', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.7|15.36|['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSe']|bulk|https://doi.org/10.1021/acsnano.8b01351|cwh_xL347PPubjbvPT8xGHhrX5bY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.061|215.3|0.721|16.47|['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/acsenergylett.7b00644|cwjRr-IMCIMLaV80-XwYvOgLYclN|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.114|222.5|0.71|17.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|cwpDHTZNQdbg_03YUKriH_yrBPlk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|151.0|0.43|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|cwwwvxcZBucllO4D_EBkObVGoAYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.128|224.6|0.79|20.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b03586|cwxffkrQrvH2UdmIVBgKn92NEMqI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|196.8|0.64|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|cwzXy9ceIyVj5AftiFDxVCsnpYD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.677|4.98|0.496|0.1669999999999999|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF11|cx-ziwn21b6rHOGk98Xsc7H28_em|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.02|218.0|0.787|17.6|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01411a|cx2A4jFB4hGB-kNPLfUXDngenldy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|195.0|0.8|17.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']|['NiO-np']|['PCBM-60', 'PrCMA']|bulk|https://doi.org/10.1002/admi.201600593|cxDqkdFQFwI59VLWR4pK-qDvbIIl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|214.2|0.536|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963841|cxuujxk27_ehtP8r4D14w61aHee6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.6|0.65|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|cxwFokFPtWfqirkwLiWiz2olRTJo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C9H18I7N3Pb2|Pb2C9N3H18I7|(BDA)MAPb2I7|2.536000270416575|1.07|16.7|0.617|1.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta11744j|cyEKkIBuLBjYh79Er1CB44TB_RXe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPb2I7. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.15|115.0|0.7240000000000001|9.57|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|cyJyC2evUxe11ICAg0vKuGlkWoTB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br4C16CuH24N2|CuC16N2H24Br4|(PMA)2CuBr4||0.53|0.7000000000000001|0.55|0.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|2D|https://doi.org/10.1021/acsaem.8b00372|cyNQ2fypbhsbbJ5WsMby_14s9B4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is (PMA)2CuBr4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|197.8|0.73|13.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsta.2018.0315|cyZAbrj92veXZZlLrYR5fUfoBMCX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|cydE9FZsqxeGJMl7POJiZQEwaltU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.7|0.71|16.94|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|cye9KdQvOFQo9nKVKfQeW1lk_u3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|219.0|0.75|18.72|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|cyeynhwlbalW89wkAO9bTLBM4G_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.04|222.1|0.6629999999999999|15.3|['PEN', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800399|cys1JxTVsfo6iEyYsUpYLuOC-FPB|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.94|242.8|0.38|8.64|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|cz1IyV-qsKP8nIMkLthXGVHLkN2f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|226.0|0.815|17.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|cz1KJTzYoKovQNBAROIGpQ8kmXBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.77|16.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Zn0.8Cd0.2S-np', 'Ag']|['NiO-c']|['PCBM-60; Zn0.8Cd0.2S-np']|bulk|https://doi.org/10.1002/solr.201800222|czQv2m1ZW38zl3dvWamVhFKd-A-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60; Zn0.8Cd0.2S-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|160.0|0.745|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/cm5037919|czRx_dVN-UlmIVKX5r3R_GPnakaT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|224.0|0.7759999999999999|16.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07904h|czVoVbbrQMz0xKG2iZCBRafogV3l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|147.0|0.6|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp00008e|czZxdGV5QU3aWEXVc-zJN2dql-bo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.0|0.7|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM09', 'Ag']|['SM09']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|czgGElckqCtaQAfWXiBf-VDr8Se6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM09', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.2|0.76|17.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC06', 'Ag']|['YC06']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9qm00309f|czqJqiwbvODMSN8T-GaOSHtbPZe3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC06', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.83|164.4|0.75|10.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12023|d-6u1hnnO6EWELNFyY_NyT3Nh6NO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.8|0.755|17.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|d-BRGkbH5kbyTxHzrhv9h0dtwJSB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.1|0.752|17.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']|['DR3T']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|d-BYmBsHicNje4gdfzeyOmbnBl3F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.804|189.0|0.63|9.5|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['Spiro-MeOTAD']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b05484|d-XbAPpmwEZvnRJZmrxhBwMntqlD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|152.89999999999998|0.69|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|d-dCSexGVcCBZgKQ1-HBOqUQ2ClC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.0|0.742|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/cssc.201701262|d-jA8rZ4HpPQqMTXUsXKiNng5tL5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.0|0.597|10.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.02.012|d-lZZh7xmbLFB3_62y-ZvNYTDmrP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578|1.05|191.9|0.617|12.42|['PEN', 'ITO', 'TiO2-np', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'C70']|bulk|https://doi.org/10.1021/acsami.7b08429|d-vA43d_--UgoSnal35iETX1dXwJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.7|15.4|0.76|0.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|d-x8sMRg9heony7MGcyEeoMkfcf8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.042|222.93000000000004|0.775|18.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|d-xjhNEWUneYagRLHOL5luxGu-Cb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.01|211.5|0.77|16.37|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.002|d0AGHlkVtYF6g4CIhojrA1QKlo6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.7440000000000001|185.0|0.489|5.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|d0F-eL4GX07sXKZGODvv9CIKY-pF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.6|0.61|13.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.048|d0FyMkCRtaukax6SCL-8bVFGyQbG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.038|217.4|0.753|17.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|d0GS6dl4ZqrV9FUI5FSTZVxTxtKR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|190.7|0.792|14.21|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201900198|d0PmqtfoRu9fuJof-G4qVZZAMvY_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|150.0|0.55|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|d0TOJDMwAhEIHAhQF6RNriSyqB6N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|d0YnSti0ko7aVVBTbCMTgq-fp5YA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.1|0.76|15.32|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b05588|d0Z6VNRXhSziV8k4uv0ShiRbBrYE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|128.4|0.53|6.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|d0ZoT5UO7DOLRA8J6Zv9FnMS5Iwn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|193.3|0.52|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104798|d0bGUY7JQ89mVqv043k8QFcB5IN8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|161.0|0.5|6.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2016.07.033|d0bMCpyl028FDtvaYgN9YHoUyEq8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.04|235.7|0.735|18.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|d0cgsJoGP7ZljFGW1s4roLULcI4M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -AgBr150C50H300N50Pb49|AgPb49C50N50H300Br150|MAAg0.02Pb0.98Br3|2.300000245251625|0.809|27.8|0.705|1.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|d0k1PCPvvVazkDs8w2Wvk5tu6xbJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.02Pb0.98Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.6|0.77|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06084g|d0kNCO-OUy_LYtKbcmMahS5a5LFl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.78|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|d0xeH7u073kNoba3jzhqTEUjfJ4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.1|0.77|17.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|d12KatzBBAy-c_MCawejnW6Ps8jO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|235.1|0.68|16.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.036|d1JHMRXhVRqFIxhR7pA68t60PWz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|179.60000000000002|0.642|10.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3']|bulk|https://doi.org/10.1038/s41598-019-45374-x|d1LyiAL6WqZRmjRGYOmhu3DxLC4n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon; WO2-np']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|d1YiRwx30Sh_UwOvJ7inBU_UU3uw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|187.3|0.75|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|d1_LnSlQl2tk_dnrrOhi3IHCrwKa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.97|139.60000000000002|0.593|7.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b06050|d1_kxt2jkKKNUzVr8oPSP8Cn1415|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|188.3|0.67|12.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.07.112|d1n3AuAvAZ_KhMixQa1U4yyn1SjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|211.4|0.758|16.77|['SLG', 'FTO', 'NiO-c', 'PTZ-2', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PTZ-2']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09530|d1ptMTG62bXATZ3GL4kCRmxIot1D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PTZ-2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|178.9|0.75|14.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.6b00327|d1q9qI5ExHibNVJOaF7SAdsuG3sD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.14|228.0|0.606|15.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|d1rEZ7MjBqoHJP7aErndK-xFG3su|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|190.0|0.55|9.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|d22qHk3Ad7dcwQ9NvIPsJ17gmtix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|120.0|0.72|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|d2H80t1DivYgvGrgzdVZkL4njkH6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9400002068644144|1.3|154.2|0.768|15.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|d2LHI2AgxCrowL47tUPze_oWPGfq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4||1.13|183.0|0.79|16.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|d2VRLZHRwZh4e-hfAb-FnvTBWao2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||16.99|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|d2dZpCRNBRRP8sgLUJBRHNvJ-G2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|157.0|0.688|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00480|d2effCmdC6nw4Qqz_UmqjBnsGa8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|217.4|0.764|19.1|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|d2vwWkVvXW6gCdwFRmLsWwY-7Wnj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|d2zD9gs0pZRMxvQuy94y7YjWv5M1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.1|211.7|0.65|14.93|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|d30YU7w5xuxw-tqq0wjRyRBxWGqU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.39|201.0|0.58|4.54|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|d34nQ1UQWHTQLmnGHktKFC9YUgpy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|173.5|0.72|12.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|d37Z_Uq_MWUb_LaLh6JmZfxl80jo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.0|0.794|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|d3TChZufQLNy1gE2XhVRnKqzC437|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|211.5|0.7829999999999999|17.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18402|d3fif_KgWU0jWknHYepgba8hzrbp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|211.8|0.76|16.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']|['JY6']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|d41UvCXlvlDhBc6f4cbzOcuiT3en|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|199.8|0.45|6.4|['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Al2O3-mp']|['PCBM-60']|bulk|https://doi.org/10.1007/s11051-017-4081-6|d46DWR1uKmPhrZt5U-IyIJ2aV4Vp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|199.2|0.65|11.47|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/adfm.201500616|d4Cwhn3JUmR8w0ExMUGflsbqoYKV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms8348|d4HhKM40DBblPe2p36lyIchT3VZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br259C183Cs17H1015I51N266Pb100|Cs17Pb100C183N266H1015I51Br259|Cs0.17FA0.83MAPbBr2.59I0.51|1.640000174875072|1.14|203.0|0.75|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202100391|d4Hu1-zkqsCmy5hBaemLC23cs7Ti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83MAPbBr2.59I0.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|8.100000000000001|0.54|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI:DMBI', 'TiO2', 'Al']|['PEDOT:PSS']|['diPDI', 'TiO2']|bulk|https://doi.org/10.1039/c5ra27620a|d4dbmWR5WHTa1I_XkxP7nvYRLx2A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI:DMBI', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|227.0|0.61|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|d4kF37-Bs3BFiuRu3bgBDiRtJ-EG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|185.1|0.721|14.37|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'F-R-COOK', 'Ag']|['NiO-np']|['PCBM-60', 'F-R-COOK']|bulk|https://doi.org/10.1016/j.orgel.2017.02.041|d4miWJPp0OC-259uJ_0kfRyIwXhQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'F-R-COOK', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|97.0|0.7609999999999999|6.02|['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CZTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|d4nrx_5_CAa6gWq4oIG1UfSHyaQ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.084|204.0|0.637|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b13423|d4ueteKkfYT-Ur_G2ZtVLltZarb_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.4|0.6459999999999999|14.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|d5DEIiWKslsQWCpAdEabtamzjvXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.83|121.0|0.439|4.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']|['TTF1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|d5K8hnNj8PCTwIGbHAJZ_BWCTHnH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTF1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C10H51I27N19Pb10|Pb10C10N19H51I27Br2|FA0.9MA0.1PbBr0.2I2.7||1.12|238.2|0.79|21.08|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CI-GO', 'PTAA', 'Au']|['CI-GO', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aax8018|d5UTXOTUtV4k9MdaHso_UpJLVUYV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CI-GO', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.2I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.86|198.7|0.381|6.41|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|d5Vaj7V_VR6abBuoJuY66mYZGjxE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-421', 'Au']|['SGT-421']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|d5casjYUoju5E6GUO9AzpSK3629W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-421', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|80.39999999999999|0.65|6.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|d5f1gfg9ZO_sfFl3LDcxApTM1HHa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.041|203.0|0.7|14.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiO-c']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/advs.201700463|d5foF5EHVvCl8sy9D13T8Gk-b3PF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|183.3|0.58|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501453|d5ftAVfjORvVtxmpY08aGfV9CPOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.3|0.55|11.87|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1038/ncomms7700|d5gCNQAW8mA2PX1beuUav8gomDoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.1|0.74|17.48|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adom.201801409|d5hODic-NxLb_VptIzGGUiumjir5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|153.9|0.76|13.92|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|d5rq0q4aa7RQt1YQtKRkR97XslDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br24C93Cs7H468I276N183Pb100|Cs7Pb100C93N183H468I276Br24|Cs0.07FA0.9MA0.03PbBr0.24I2.76||1.106|244.5|0.753|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-10985-5|d5xyXZWE0wsQotVk1v2wBz43FLaS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.9MA0.03PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||13.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.07.039|d5ztjLGNXxQchhRLIfjJDzEpDjBP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.97|110.8|0.677|7.66|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.5b02561|d638EUCXnf_O_HGpa5gA4KawngO4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.008|228.35|0.715|16.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|d65DywKdvGriGLOHdTgMWEiaMxZe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|223.0|0.74|18.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|d69UM3vGKzX7UUn-D_lo1lq-IbZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.06|202.2|0.73|15.93|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|d69jxpijTvQcNDiSlK47Dz7zCFVl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.9|0.81|15.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702369|d6GYldWvSU7kArRqG-_291Oz3pBq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|212.94|0.66|14.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|d6Q32tZs4Dgpzr5Apm3vp94xSge5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.9|0.742|19.0|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|d6UIH1En9kkk5Wvh_SFfii9au_xJ|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.4|0.762|15.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|d6eoaN9S2HyDTJySDAuA1HjuOy-_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.6|0.68|15.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b11329|d6fbD3OVubcAmhgBsTn-UiFcG9Ey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|227.0|0.63|15.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09687e|d6mcMEgDpIQAExTaINfQMhUtppYn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.93|165.10000000000002|0.43|6.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|d70PpsUA1-djOW_gbMHUuHMDsxgH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.998|191.6|0.706|13.5|['SLG', 'FTO', 'ZnO-c', 'EMIM-PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'EMIM-PF6']|bulk|https://doi.org/10.1016/j.electacta.2018.02.103|d72kpoArCXrKePxru61HHZlD_b1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'EMIM-PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag3BiBr6|Ag3BiBr6|Ag3Bi1.0Br6|2.600000277240968|0.6|1.2|0.449|0.033|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s42452-019-0633-y|d74l3Psdue8eNDqZdCpApffHMUeZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Ag3Bi1.0Br6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|193.0|0.7|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014002|d79De8t5QfX1NngdLtNMhCsUrtUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br36C100Cs5H517I264N183Pb100|Cs5Pb100C100N183H517I264Br36|Cs0.05FA0.83MA0.17PbBr0.36I2.64||1.04|185.8|0.6829999999999999|13.2|['PES', 'AZO', 'CuNW', 'AZO', 'SnO2-np', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b21290|d7N5_3O1q7HunnzQQ8tRzHHwtTKY|a perovskite solar cell with the following device stack: ['PES', 'AZO', 'CuNW', 'AZO', 'SnO2-np', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|169.8|0.58|10.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.245|d7QH0LEKzhlkd26PpQ2OxheKpCEi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||||0.66|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5sc03569d|d7gV0L-rq_8BRBPI_4WtbidiEMKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|168.6|0.32|5.48|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1246/cl.150246|d7iG6bTz6HPXlYpR56oeMSfnvZG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.97|184.9|0.51|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|d7rqeWz4pUFKPtb0R_rthOCie2Bg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|203.3|0.778|16.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/coatings9110766|d7vFydsG6cXyr5heOOgNCsvllJq8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6210001728490804|0.83|138.1|0.4539999999999999|4.97|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|d82BR5ym8iHPqWCK_IfvnR1ZF1ab|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|103.1|0.6459999999999999|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.028|d8FDvOVpwuA817I4Icz-go62fyqt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|d8IFmZxWwxWKt0cZ2aZP9-Nj5GOa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|169.0||11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402815|d8Uv_ZB2FttFslLOt-fM5zIR98Mx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.974|188.2|0.7070000000000001|12.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']|['2TPA-2-DP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|d8b9gdPxJKAkjhL1OiSEPIOh-iD0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2TPA-2-DP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|217.3|0.77|18.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc05694g|d8cBsNY1H2qYGK1WHOGP1ZZ1z_LK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|159.1|0.64|10.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201500543|d8i2TsRzegXa-tn-xizErkbvgFuf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.1|0.56|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00210b|d8kUl_3bSRrBEMjwdFwoH3bHTyIj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|131.0|0.6|5.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|d8ktb_iZL4BxOsZXBthFJW-p8d0s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|185.0|0.647|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|d8mhDz9XvcI4Ah28a6fEkG7gKyB-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.1|0.8|17.29|['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee02958j|d9-7XWZyQB1D1VgvFpI04X_v5R4M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|223.1|0.83|19.79|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-TM', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|d9Axzu1puHlbny5eQ1maA9gvJoSx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|174.7|0.797|13.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|d9E453IbePv0-c_3UWJeOawrto-7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|192.7|0.62|11.39|['SLG', 'ITO', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']|['VB-DAAF']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b09012|d9GhZS82fmOswkb-nxLBO89R1zwr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.051|213.78|0.73|16.38|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|d9Lg2w3sGAVZmhGFslk8T3n0OgW5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|112.3|0.47|3.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ra03485c|d9Vup0aqGrF_vUbMDPUT0jPn9ee1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|226.0|0.6829999999999999|16.6|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'PDO1', 'Au']|['PDO1']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1039/c9ta00654k|d9dZ1te3d7RzZK_Cgi_DsUJi4iLI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'PDO1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.805|156.6|0.59|7.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|d9h7_KG_kkmA3VsFwFbymIRS-1bR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|170.0|0.56|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201700418|d9ndud_sDzTeFuMQYokHVcmCEzvg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.01|224.9|0.775|17.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b10979|d9yXqzzrqVM2HB6mckvwzOQd8hWW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.09|198.7|0.6990000000000001|15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|dA26Rxwprb85d2KQD3m7hDVSFBdJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.14|242.0|0.727|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aan2301|dA5Kfbm_4N-oR8VvxU5syzZFp_5b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|200.0|0.797|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ra01501f|dA89NfHsw8qcEDWV7TDbCxpIRZ3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.0|0.67|12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|dAGMXYpZnfvjAGijEhkebSvZs5VJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|157.20000000000002|0.737|9.74|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5nr05271h|dALpugVW56zNQCJnguOrHAGC2pJh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.007|224.3|0.44|10.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra06645g|dARV0Y6TWNsa-txYytoyZDjvAtBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|227.6|0.8059999999999999|20.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201902870|dAS3woH77s1Q8o4L0BCLuXPXYoN7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.5|0.74|17.25|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201804286|dAYCGKYLnoh5BXWVFvX3vXU28-ds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.92|200.9|0.7|13.1|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|dAa62LZBVH0-vdxdgxRWKhL8rYaE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|183.0|0.56|9.7|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|dAa6okSTMx630Sp7feGEYXt3eCwD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|144.3|0.59|8.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|dAeyESbSLDcimMOpcmYGz3tL_3gP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.9|0.716|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|dAleewDqVruBxQcMp6-4hRtgblUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|11.4|0.72|0.073|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|dAnH5KU7j--o4q6kGCfRYyifbNJF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.46|24.5|0.41|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.003|dArGBar88BdpFoxmUNp-q4cmQsAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.917|159.60000000000002|0.616|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1b', 'Au']|['1b @ triphenylamine modified azobenzene dyes']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.10.018|dAzmaBbRejkCW1Iau0_BKbNQtPna|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1b', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|216.3|0.71|14.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ra09824c|dBOWXgr691zm0Am5XJp4Y0AQoezZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.8|0.698|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|dBOlGR8ww9T-Ntvd6bJrHCnO0ivX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|56.6|0.5770000000000001|3.39|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01389a|dBTg0m2ibE_cx5ZqRQ6Gbw2nQmqL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|162.0|0.52|8.3|['SLG', 'ITO', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-017-1876-x|dBq_FeiRY6JynmfNeJgaOmWtu15k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|162.0|0.77|14.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b01553|dBriKHc6KawPHoFkDwzX4tVbU88s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|dBwwBfIwR_IgKt7TgpLuQm4xlN35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.0|0.65|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jechem.2018.03.001|dByaPm-ZL-ppypnuQu2nyLOQrHkB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|186.43|0.637|12.62|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|dBzehYvZFoKgLz3pW3frDovmC-mK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.04|214.4|0.763|17.01|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|dC1G7Mq80BMT6vRRPTYTV464WR5q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.84|244.4|0.7390000000000001|17.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.18|dCJMFLSQENSsmtHYutApKB4fhgf-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|141.1|0.564|7.8|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|dCXGJWryYbACLUikAorLRTkbc5LD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.99|207.0|0.55|10.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|dCZzoBmh2EBPpgDWsNDfTL61jvDF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.67|4.0|0.17||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|dC_NURIHlIlEJ3ekhF44aNvwwBWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.058|244.0|0.706|18.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.202000782|dCmBXJlTwqY2c-vaZePG1ru6I97o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|174.5|0.57|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta03796d|dCrq-nTb92ZcQBehZg_zlbG7Tbo6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|230.0|0.72|15.3|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|dD7W53FP1myg4BgzTCTDxu2xdz1C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.845|184.1|0.544|6.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|dD92y_AJjLkpxSWNoif8JvwNsd4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.1|0.7859999999999999|17.18|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01319a|dDBpZD3FXAB5tGCIqiwuEc3JCRFz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|128.7|0.654|7.7|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|dDE2j2rZtZQT9fpBk4o_Zh01diAc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|213.3|0.73|15.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-Aminobutyric acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', '4‐Aminobutyric acid']|bulk|https://doi.org/10.1002/ppsc.201600298|dDGzWp0g64Kf00VairWG67Jklemo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-Aminobutyric acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|224.0|0.784|17.7|['SLG', 'ITO', 'TiO2-c', 'NAMF-H', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NAMF-H']|bulk|https://doi.org/10.1039/c8ta07904h|dDPes2Cf3eGFWnspASPtNEWXG89r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'NAMF-H', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|198.3|0.6609999999999999|12.7|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|dDVD4UNtMOaJW2fE2-04Xj879bLG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.94|196.3|0.74|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.07.022|dDk4HHErkcuokKqYilgMkxvESf9-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|dDnoAV7LOpU1Wu4mu-QLB2gXp1Jn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|200.0|0.51|9.79|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|dDqspVVwGldn0sxUN_JJwpCTBrNx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|205.0|0.64|13.45|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|dDz69N85c6k0kAqEe0PRrc83ssvR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.89|8.2|0.53|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|dDzgTJb5DiD7vxqYX8aFxt2DZzKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|140.39999999999998|0.41|3.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|dE20g6e2ZV3his25y1mcRVGjsyaF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|207.0|0.77|16.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.8b01683|dE2s44UR6nkEh8nSUDKckzxx7gvl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|217.0|0.76|17.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901642|dE4xYCbMpenE3_sYQEja53ZCUThY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|241.5|0.74|19.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11800k|dEBZECiCUU7J0374uSh_Ay7BFN-B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.9|0.79|19.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201900106|dEia4RjVHiqz7qyyr2SMx466V0Dx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|192.7|0.603|10.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|dEvikbj6ZNKcJE01ulOYeFgKB6j8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|224.0|0.69|11.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|dFAmz00kUkz-uCiHDst0jahxV9zQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.5|0.71|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|dFB1ugt6nQAPsFS9_R36stJmTgNO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.0|0.5920000000000001|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07647|dFRgdq8ogZWS3FqS1DiVmZ4kYrEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.6|0.73|12.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|dFcEKw7edc69JB8kU7Gx7Ucpac0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|240.0|0.68|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-0390-5|dFeSP9F2srf0ELyu9jFKcLxkUnFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.733|17.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|dFfmdtSao_JF5B-x989cU9Ul8bks|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|172.8|0.387|5.47|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|dFgNGL7ZrVguyZT7eHgsY65sAcvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|dFw6bXPlcmOyDP--6FFK7BBnihvh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.8|0.75|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.064|dFwAUTnWDyKtm1Vp3_Tc8lujA7jv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|235.3|0.73|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.226|dFy9Kz7YEvn3FpR4GmoIreaEUJ0M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|dG1QJh89l3nh2VUr1FCw8gXp514q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|219.9|0.735|16.64|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|dG38klr2od0umQg-92XYfRLzJl21|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|224.0|0.634|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|dG6iI1dOZ7EjwDperasiRoYr4JfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C55H258I121N41Pb40|Pb40C55N41H258I121|(PEA)2MA39Pb40I121||1.09|225.6|0.742|18.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|dG7O6gSsz-GGhra0bah5WE6SUDnt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA39Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b11434|dGEh5idLJfPar76dbFJt9HPuTWiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.01|88.69999999999999|0.555|4.97|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|dGHqz6AJn6NzuuGFvY3QXZM7iqWP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|137.7|0.745|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|dGMNZOBfSAnTsY_u2pd6eGgpM8i_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.965|229.1|0.58|12.82|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41598-019-42962-9|dGU1MLfT3JoiRvaGK1U5j4AQyp9i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.3|0.612|13.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano8090701|dGvpi9H7-ZxDmcpUDga2e3TZaubc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.978|212.0|0.4629999999999999|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|dGxvFkUdJcrVlM8lpCL2igyna9ze|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.741|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|dGySZqqP_r9rIdPFTUlQqLzJdzGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.500000159946712|1.08|191.1|0.758|15.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152887|dH-PswONs27Pz68LHl5vjCCHbcwI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|188.1|0.48|7.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra09110a|dH-mshYpgavhg92pC_ATBnsIahhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.939|163.69|0.48|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z35', 'Au']|['Z35']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|dH8E5Oeav90Dg6X9xbyHEu_T1frs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z35', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|215.7|0.7959999999999999|17.69|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|dHD67eP0QShEGYiSGj4ZC5_IpDCd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.011|0.7000000000000001|0.29|0.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900285|dHElGT9LxEzMob5xT6gC5hypPand|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|236.0|0.66|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep42564|dHGxNxVmJtQLgvVffcLSCU-UNtqE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|210.7|0.701|13.2|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|dHHaV7Tpy5WoWegat414RpWkIilt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.685|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|dHNWJSVTHpI6o5xP368ziQaYMr5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.148|228.3|0.762|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiN', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp', 'TiN']|bulk|https://doi.org/10.1021/acsami.9b18082|dHO02IWmzq31ewWTfZEWYywG9ZOu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiN', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.5|0.73|15.13|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|dHVlGvOTE1sTzJcZP3V93hIChw5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.91|177.0|0.7|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|dHWxoKiu3uO4QOcXrjaMXMfgi3mt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.243|166.20000000000002|0.6729999999999999|14.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|dHZNgbXLxK26CS-IaiiVcAEoHIQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.07|232.1|0.76|18.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10854-019-01446-2|dHgC6n58iM5kpCoB4Wmtlw9439If|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.02|230.1|0.7|16.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201900509|dHiUFhaVAC3wVRA2sfMRhVQBtQHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CCl3H6NPb|PbCNH6Cl3|MAPbCl3||0.4|4.0|0.41|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.055|dHpr-Sh09wxUbFNWy_hzuyaucTAF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbCl3. -CsI3Pb|CsPbI3|CsPbI3|1.710000182339252|0.74|104.8|0.61|4.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.09.041|dHqSRbSCPTS0A6-itG5X_F2qEDpI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|171.29999999999998|0.715|12.48|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/polym11010147|dHxty9oF2m-D7Ky3DL1kO_Se3VyC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.05|152.3|0.55|8.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|dI1xj6lvVwl8s22LSdmF6Bifx0M_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|174.0|0.7|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature12340|dI4mm5i75YkGFKTgW9WcvA-55PD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|221.1|0.77|18.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|dINLIwAgG_BIEdB9f5LBlAEyp61g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.04|204.7|0.71|15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|dIROZdkePkY_51dJUn-k7xP4yF6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.4429999999999999|209.2|0.5870000000000001|5.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|dISosyEk0JNLwbvVVqwN2DCRxX-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.0|0.26|4.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|dIeatHUC41L7CBRWg0nXB-x-AzuF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|155.0|0.65|9.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|dIhfaPF2CFDhltmEpZzyZORi1V7F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|238.7|0.76|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.035|dIkfuMcY_5CJl8F2u6tJ-H0rTkYK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|108.6|0.509|5.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|dIlTWhiVBNzbhOMb-9jzpgp8LfkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br87C100H600I213N100Pb100|Pb100C100N100H600I213Br87|MAPbBr0.87I2.13|1.7200001834055632|0.955|142.32|0.617|9.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|dImUbOc1OZHjRps-vYfrERjxeUbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr0.87I2.13. -CsI3Pb|CsPbI3|CsPbI3||0.85|98.3|0.425|3.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2019.104130|dIybBTZq1G8ICKXwY76K48yoEHhm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|191.5|0.736|14.86|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.204|dJ0ZJLRJh_pU6BJS8iC07vXfo-C1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H87I30N10Sn10|Sn10C25N10H87I30|HA0.3MA0.7SnI3|1.3000001386204838|0.31|47.0|0.51|0.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta07699e|dJAKWUDv7dqPiz_2McUXWReCJBK4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is HA0.3MA0.7SnI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.06|183.5|0.754|14.72|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|dJDRDxMw3ku9UfIPD_l0N17BJTF4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|149.9|0.44|5.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Me2N-DATPA', 'Ag']|['Al2O3-mp', 'Me2N-DATPA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cp04685d|dJGu5RuwdKnzuZhEutEkSq1JKgQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Me2N-DATPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|212.0|0.72|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01864|dJIPFYrwv0_uQLYQn5lR11Yx4sfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.9|0.69|15.58|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201702934|dJNpdKmBkb7Se4oUjyuYSIOxvK8e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.25|154.4|0.79|15.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201904387|dJXYqNKgou0xRzSYY2rFwQOt8mTf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|220.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|dJg56YQQAa8V5TccHwYRBoRQRdZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|186.0|0.6779999999999999|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b03902|dJqcXqvvCZ_NM_KfYxzPiWXMKhih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.0|0.76|14.3|['SLG', 'ITO', 'CuI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuI', 'PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|dJzQYER7bdaaESFcLtDoD7JpPOEF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.0|0.66|16.0|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD']|['SWCNTs', 'Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|dKBlku-9RWF56gQt5Co4ei1JVlM7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|205.0|0.685|15.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|dKJUdmX38eZfaHGPanORhWNlEiU_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.7|0.7070000000000001|14.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00981|dKS2mrbFOWik4JAqbtknhkTFbfPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.758|67.8|0.53|2.72|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|dKSOeLW-0dAB7k0LDDlgvy3R7npE|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|206.1|0.6779999999999999|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|dKvtghqGicH1ZBDl4ygPlw0T1HrI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|234.5|0.711|17.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801717|dKy8ookcT1r-XCpt9cIitPiZGETM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.0|0.721|15.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|dL6k4rK_dE7AtAANl9QG5qR6tXRG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.4|0.711|14.27|['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c8ra01571f|dLDdq3c1UpkwqkTaSEAjqZjJWN8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||1.07|177.0|0.698|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|dLFkLSqrZy7PFZnHU9LZ8kmLzrad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|42.0|0.41|1.1|['SLG', 'ITO', 'rGO; PMMA', 'Perovskite', 'PCBM-60', 'Al']|['PMMA; rGO']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5029198|dLJe3vB_58u3Bx4sSnTDKO4nc_ef|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO; PMMA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|224.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|dLKl-MjV6f2Q7i2DHAvm24yKTA05|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|dLOOI-yZwXbSOObG2GtkY3KYL5PW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|222.5|0.727|16.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/aelm.201900244|dLPplZ0Y3mIMKjX0q1by9pGC66s9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.43|12.5|0.502|0.27|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|dLV2k2cjelAcc3O639P5PY1fL546|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|215.0|0.61|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793292019500772|dLXerY3joBHK8FQv36oU8Xk_8U93|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5890001694368836|1.08|234.7|0.794|20.13|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Cu']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|dLwTtSIAdaKbtreBrrzIzkWOIZYp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Cu']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.520000162079335|1.06|203.9|0.74|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b04107|dM3LYjgyanEoqt_9RSJbe1zSFL-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|113.2|0.516|3.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|dMATqmZ-JpG_g4Egl4qCj6jGkBMR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8||1.3|92.0|0.63|7.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']|['NiO-c']|['bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.8b01480|dMBDZJLOvCHUypKbjnAzf_0onFgh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|143.0|0.502|7.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|dMFhdAFUmqtJ-1XzWDV6FqhFSyWU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|215.7|0.7879999999999999|19.0|['SLG', 'ITO', 'TPAC-SAM', 'Perovskite', 'C60', 'BCP', 'Ag']|['TPAC-SAM']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b07627|dMFtruu-VAREH0CdAz69UGh2g3UT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC-SAM', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.113|200.31|0.688|15.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|dMUXI3PoiSNDvIz6dx9J4sEPSe1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.6|0.7559999999999999|16.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|dMXeBdLoxsZIgoveixU2vUW-JCx7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.728|7.54|0.372|0.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|dMaN3-hXK5l43Cv_nMxho1CVJ12M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|233.5|0.7|17.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.04.127|dMfnceJVWXaLG7VS9M3lXwfgc8Hh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|213.5|0.65|14.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700365|dMgmLqLxACk2a1BcwtAUx8-ToFDc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.748|165.0|0.47|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|dMgnC9uu6H4zcvrkvd4njF9ZiKtE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|155.29999999999998|0.594|8.11|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|dMiAckJiBcsf6NSPXdiIdIOl60nv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3Cs7H15I30N6Pb10|Cs7Pb10C3N6H15I30|Cs0.70FA0.30PbI3||1.0|180.8|0.56|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b04107|dMiIrHpBsWfmDFP7re5WfYo-FjtL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.70FA0.30PbI3. -Br3C9CaH54I27N9Pb10|CaPb10C9N9H54I27Br3|Ca0.1MA0.9PbBr0.3I2.7||1.07|209.0|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.053|dMl3uhWsw7zxK_Un9tAoD2nzehyj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.1MA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|215.0|0.489|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|dMmgLV_u4oVVrIAV5f4tlMLEfUwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4||0.89|197.0|0.507|8.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|dMrAG6ziMvCGrFsRDFqY0XGFcrvp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|170.10000000000002|0.6920000000000001|11.98|['SLG', 'FTO', 'TCl-PDI', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TCl-PDI']|bulk|https://doi.org/10.1002/cssc.201802421|dMxm8NbTZRAst2XUZ87qht8ZDXfD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TCl-PDI', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.0|0.6920000000000001|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00160|dNA8h-4Oi4a-9nIGd617TnxYH7rD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|158.4|0.71|9.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b04396|dNE_i5xTEU2k4n6aYZ3tag-wUPYP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.969|212.6|0.674|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|dNJBX8Q-2gYnJ6E_s2eygLwJBekL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|221.2|0.73|18.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|dNO6oebFGz8vIXGbYC_kTm3-ChVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.6|0.718|13.47|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|dNc9uGyDG08VFQnKSU9vwrrcDFJX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|190.6|0.71|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|dNlaAnBT9TDtLuM7F-tjjPcqedu5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9|1.5900001695435149|1.04|198.8|0.732|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S0218625X18501378|dNnv1TNkzepKl_huVRCllXzTUvou|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.7|0.644|13.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.112|dNqtXSZqocY21RTB0IUvP5A8DgMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|208.0|0.73|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|dNtpUAQfFEgXoLeBah-P9sJq1BD-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.31|145.0|0.48|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|dO0LfvgDL7PuQjgteJ_fCi3KVF8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|209.2|0.659|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Chl-1', 'Ag']|['Chl‐1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601069|dOBxjDYlx1keEtzKfAPCRHg0p1UP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Chl-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|184.9|0.721|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra25753k|dOKpZTNxMpRiRH_crRVzSm_yuCEF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|211.3|0.74|13.77|['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['CuAlO2', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|dOP3oWt8vliUET1aW7g-C0LAoH5K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3||0.98|195.0|0.67|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra04742a|dOXIGv5FLKmmCHG72zt0uDmF3p1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|189.2|0.78|15.17|['SLG', 'ITO', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']|['VB-DAAF']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b09012|dOcBAZF8H8zcRZJiu7PE4rX-I6gG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-DAAF', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|81.5|0.517|3.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|dOlg1Efb9nlAjmPugibJrtMfk_T7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.9|0.74|15.01|['SLG', 'ITO', 'PTB7-Th', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTB7-Th']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|dOmMVNwIYBCiQAW2MV2zIsHG1Jg_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTB7-Th', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br64C175Cs75H900I186N325Pb250|Cs75Pb250C175N325H900I186Br64|Cs0.3FA0.6MA0.1PbBr0.256I0.744|1.7200001834055632|1.107|183.4|0.741|15.04|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|dOsN2Rw12RKTECkbMJ_MzQsK7c_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.6MA0.1PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|181.48|0.69|12.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|dOsS29CIbMASdSq3YHRuKpmJIvhp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.87|160.0|0.7|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|dOzlFQFl2HA1JYN8aAqZDE2mPKh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.05|32.0|0.6759999999999999|2.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1038/s41467-018-03757-0|dP-d8CVQ45w5hI3cpm6WoHLmjoOL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is BA2MA3Pb4I13. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6370001745551783||||12.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|dPC4-sm6cJXMNWpTIQv-FmzNoHbc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.0759999999999998|215.7|0.718|16.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|dPGyCbr4Z37xglxBTNNNXF2m0Z5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|185.5|0.58|9.12|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/jp502696w|dPRbKuIjz6Um0w24sfsJq-EtMuOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.04|227.7|0.7509999999999999|17.61|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b09238|dPSDLDw8r-Vo55UHiuyqdPQpvOk3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|81.30000000000001|0.52|3.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|dPVSIso8_Wu5496XN5fs-H32inhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|123.0|0.64|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1016/j.tsf.2015.12.001|dPbnZGrV1zYFfK_IbmuOiC9TpiWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|202.2|0.636|12.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FAAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|dPdt0vzV-dMPBxYYojPwN2g6BrS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FAAc']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.058|187.4|0.74|14.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|dPqUbTQKmB3F1kaBwRpIOXa4_Lex|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50Cs50I100Pb47Zn3|Cs50Zn3Pb47I100Br50|CsPb0.94Zn0.06BrI2||1.13|154.0|0.7170000000000001|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900896|dPwMFAz3nEpzknnSmQC7A3wISw30|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPb0.94Zn0.06BrI2. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50||1.054|218.3|0.6990000000000001|16.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2418-9|dPz4htBcvrbDDvDmtUagPMGFjxqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.27|68.0|0.61|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2017.09.013|dQ0BM9pdOjdEZBIbjzr6mEKOWm8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|172.5|0.5|7.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|dQ5ERjjrnKWsJT6QpSrepwZJBCr6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I50N83Pb25Sn25|Pb25Sn25C50N83H267I50|FA0.66MA0.34Pb0.5Sn0.5I|1.230000131156304|0.78|288.0|0.71|16.0||['PEDOT:PSS', 'PDI']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202100454|dQ7srsepgZN5y81CfHVDZG8tV3gc|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|194.9|0.68|15.37|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|dQCe8w86BlfWZiZU_iecamOg9SD2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.1|216.5|0.69|16.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|dQTeBrq26A0ycTl69GO2bKHKd0G4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|129.0|0.54|4.7|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']|['PEDOT:PSS', 'PolyTPD']|['none']|bulk|https://doi.org/10.1002/aenm.201400345|dQWSvS4SSTBCCgHG49iQmdswsQdZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|107.3|0.477|4.68|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|dQYjZ4agYOop_kCiTpSqaJqWGv_q|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.11|246.5|0.69|18.1|['SLG', 'FTO', 'SnO2-c', 'PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'PMMA']|bulk|https://doi.org/10.1126/science.aat3583|dQlCOeEiFuQAwwvhNryXTjXhBPAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.41|67.5|0.7759999999999999|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|dR1UBkjCss4LOTOGHrtbWQga7Vug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|187.3|0.5720000000000001|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra09519g|dR7sYhpo8a-wEAmeidpqgP1dzPot|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.8|0.753|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8sc00731d|dR9bLv4lWHhhSq6CBP5dQB4W03lG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.083|214.5|0.706|16.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|dRNWZWQlTbNale1frywocS8Q5Vf_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.5|0.74|18.72|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201900417|dRUvF3hCmAS7MYDUul7TczeKmG9L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.0|0.8|14.4|['SLG', 'ITO', '4-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['4-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|dRZaBSP1gqHkJCCC1tCU1G42-ufv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '4-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.8|0.73|15.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|dRgKR-0eD8lxgqzcOsE98dODqCWZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5890001694368836|1.08|234.7|0.794|20.13|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ee00580j|dRio7GReuMtb-nqlTdX4NLdn3Lx4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|168.0|0.482|7.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/met6070147|dRyKH6DkYjxUIictNI4mAOsQ9NQK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|214.4|0.67|15.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|dS7atgo5w0j79aDu0e9zusOwoWzN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|215.0|0.7340000000000001|17.01|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['P3CT-N']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta06439g|dSFnt-u9w0zYyXKOCt23879uvTZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.0|0.56|11.7|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['VOx']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cnma.201500223|dSH3I2WfmPBzp4aPRbNGy-l2X5zk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.11|220.0|0.77|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|dSQXQejEnREkvW0e9O1pXeQSNNTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.09|45.9|0.4479999999999999|2.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|dSSPC_GG5oP5qvsipM0DNpjPy5Qb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.1|0.6859999999999999|14.53|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|dSWYHxxOLjIYVDJPAvtDOqzhqnkI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C18Cs2H91I57N35Pb20|Cs2Pb20C18N35H91I57Br3|Cs0.1FA0.85MA0.05PbBr0.15I2.85||1.098|233.4|0.7809999999999999|20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903009|dScbw4oDea0k8xwVX1fa2FlUyueJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85MA0.05PbBr0.15I2.85. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.05|219.0|0.693|15.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|dSkqZnb_mergBcfWmmU4NORx6Uip|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|171.0|0.551|6.68|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|dSsfmMhg_EWm4o49uhLDzP9MMxSz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|216.5|0.7909999999999999|18.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|dT23ax5td01jmIhT8aF6cdQiUFF8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.67|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|dTNzunAFectFB1KQObfJlow79YPn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|208.5|0.74|16.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7-Pyr', 'Au']|['2,7-Pyr']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|dTUFlylQsy-NZGBi0wdmJ8U3gLAJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7-Pyr', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|204.9|0.8109999999999999|16.68|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|dTUZ2kDgF8Q8SahrxdJ-GKYtHC9I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|235.0|0.735|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|dTnD3k4eJL7ljcE6XscLi2MDr3d5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|130.0|||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201600910|dTqaiQMjUdP_-xlIbhbm0qpYF29k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.02|216.5|0.65|14.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201800521|dU-NAfxwLII8T8O0_pVsqOSh_MbT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|148.0|0.51|7.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.212|dU1iEH_9byRpcR_bONwVxwSIOOHb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.16|238.1|0.785|22.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/advs.202000480|dU45bBatQU1ex4ZFZ13pYnpjXeLS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|174.5|0.716|12.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|dUFrVMAIKC0NBYwygtOIS5vl3XpP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|207.0|0.68|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201400355|dUT_ALnHw_BqeZ1647rZyC9gd6Rf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.75|133.0|0.53|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|dUY1Dd_yBUhcr6IE3VLhC3pa3js6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.095|226.0|0.785|19.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WT3', 'Au']|['WT3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|dU_WAjXOPqZZPKtKf1m8prORXWru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WT3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|172.0|0.6|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.034|dUanqoar4qndGX2FZihSV-U9WWGa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|199.3|0.71|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta10212c|dUlU0broDMBYpSXhbAOxvCYwPWK2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|117.0|0.67|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'AUH']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|dUn-gfrx5DoiXQQSux8mYm0JkXln|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'AUH', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|214.8|0.6|12.13|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|dUtBBZRUHJos-mmyfqlYzUDkFzUa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.04|232.0|0.735|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|dUuNQRUbUKUo-EZyNM9vtAbivcED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|183.0|0.665|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V2O5', 'Au']|['V2O5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201602556|dUwkTU9ckvB_fKMogsAhFAiWjVpe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V2O5', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|194.4|0.687|13.3|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'F6-TCNNQ; TaTm', 'Ag']|['F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1039/C6EE02100J|dV2LGen5aVr_pctCtacF7i7Aekza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.01|216.0|0.591|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.108|dV2OYaDIzbsjo2ZYnqJzItjZImXI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|145.0|0.69|10.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|dVAaS3t9SQiIgdGqhsEH0ZDCVsX3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.84|150.0|0.5|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3938/jkps.69.406|dVH-UROKkLRs12FoYizqPUW28yw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.044|215.0|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.02.106|dVK2Zvp_XtCqdRvcr4MTEDshpsoe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|208.0|0.725|16.2|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/c8se00218e|dVQC44SzatLJX2DGeE_mYeB6IuTB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|147.0|0.63|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01099|dVRz0egQzRbwjfj8aHxIgtuLGzy1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.12|220.0|0.79|19.0|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|dVTjU4JAeBzILPcqbrcs-g32lO-3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.07|238.6|0.7140000000000001|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|dV_DI67O63kd12YQCoHVCbnsGYln|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|221.4|0.66|12.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ee02048a|dVaUXkOOnDvRFHsXjNjx9DE-HWSV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.0|0.68|13.1|['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'benzo[1,2b:4,5b′]-dithiophene', 'Ag']|['benzo[1,2b:4,5b′]-dithiophene']|['ZnO-c', 'PCBM-70']|bulk|https://doi.org/10.1002/aenm.201401720|dVxJyK-lSvaWEqHGji9mdeipJqoe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-70', 'Perovskite', 'benzo[1,2b:4,5b′]-dithiophene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.725|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|dW32_prT-njFE7AuGzEXla8MDY5H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.079|217.3|0.7709999999999999|18.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|dW3nzeAuh0UHOFzYE7NCt95b-N_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|0.7609999999999999|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6nr01010e|dW6yl19IiDU0EWlhgr8oOML8MqSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.930000205798103|0.52|77.69999999999999|0.38|1.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ta05118g|dWG4aZo8dRdL9Apzb_Aa2Eu7lL5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.88|213.3|0.63|11.84|['PET', 'ITO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|dWL-OJP_vhun2NrntWhxe8jCN938|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.172|12.0|0.048|0.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm503828b|dWQO3Bm-suC9yhIdMpAxid8GVj0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|228.4|0.76|18.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604758|dWg5CrWHYW72O6gjGnA__VOSN5EV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.12|230.7|0.7709999999999999|20.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|dWjik5TLGrZ-VX2jsIHOqZVIQxMI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|191.2|0.55|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra17197d|dWk6YTj7BjKE8nODtgdmNamgBi6o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.39|4.0|0.296|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Al']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1016/j.orgel.2015.06.046|dWqq31O_CUJrLZoM3Fg3MUlWnv6H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.92|175.0|0.64|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|dWs-Dfl3aqrsP4G68q_ec2r3BLqt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.05|141.5|0.7290000000000001|10.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1063/5.0011918|dX-vi-MVay0rt42vVUi7yGtrbE7Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.993|185.4|0.664|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6tc01781a|dX33HyJRnAoHh6gne4-nP1522Lek|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.77|17.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-019-00842-y|dXMA0DJv9gFEiNZn_TPQjPRBol_j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.0|0.69|15.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|dXNg1nT_e2Sgs1si-VibvGpsK97n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.82|208.8|0.7|11.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|dXWe-3H8pBATmmaGambfKTHqCy1R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.04|198.5|0.736|15.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']|['SDTCz2F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|dX_iQo8m1tZ2qifnsuYA63deFcKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|176.0|0.679|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b03902|dY1hydyxd_RRJJtj-FhQnODrLKjf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|225.1|0.706|17.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|dY8mwYQouUi3toYl1UWsIca1Nek2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|220.0|0.78|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08417b|dYW9CXlZiKYc9MVI5B-6fvKSWBzc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|179.0|0.61|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1038/ncomms12555|dYYb_TP9DsOzIbbVT01MoaJQVo5f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|0.96|62.400000000000006|0.406|2.43|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Au']|['none']|['ZnO-c']|not processed|https://doi.org/10.1007/s11051-019-4545-y|dYmJiNhvlxPSmulKssif63j9Dp-Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.93|217.0|0.7|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01065j|dYn6RlVpn-dgRZN9kIHG7-RBe3EZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C100H517I240N183Pb100|Pb100C100N183H517I240Br60|FA0.83MA0.17PbBr0.6I2.4||1.13|212.0|0.59|14.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5038917|dZ22SmVtxghQ39KGuijMwB1w-VV1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|193.6|0.698|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|dZ318d3Okhr0qJmB_cLaB1YByzlr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.60I2.40||0.79|159.8|0.507|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|dZ4zinN0A6ZXg84fVW3y5Lqm930J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.60I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|120.4|0.25|2.65|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700184|dZ7trIoVzh4RNETVtYRDoNeWk0F0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|217.43|0.6759999999999999|14.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta11295e|dZ7vl1av8aiOgVEH0gRD1tp9BoTS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|157.0|0.42|6.1|['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['In2O3']|bulk|https://doi.org/10.1117/12.2212130|dZBFlOWFnE7wji_ASMUZPXCdP0ba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.72|134.9|0.25|2.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8ZnPc', 'Au']|['(OctPhO)8ZnPc2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|dZByezxzLaHzVY9jJV9NAC49kDWT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(OctPhO)8ZnPc', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|227.0|0.63|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06771f|dZirG3l9WAetgJIz_F-Hlmi3xVr_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|176.0|0.7|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|dZlMZwzxoFCSOKoneMhdSpWbe84j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|216.0|0.8320000000000001|19.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|dZpf2ltSBASWMma1vWaF4HmeGURJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|199.0|0.725|12.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta01595b|dZqDsZFDALGa8ApMTDOQgQNsJRjK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|175.2|0.55|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|dZsPK1vIazCqkYV_QoBW_oE5kqQL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|dZstUFsLU38EXjwSjD6eWrEJInN4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.074|203.4|0.6779999999999999|15.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|dZwdj1hbgEgz5ijN24xIZzJAqJg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.4|0.76|18.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|d_7__1rq9QzCQRyuopm0aoKw0P_z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.180000125824747|0.42|200.4|0.5|4.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5002117|d_F-YGPes90jixCTHNf-2gOe5WcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|159.1|0.56|7.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'rGO', 'FTO', 'SLG']|['rGO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.01.084|d_FaNBGrMVvN9pTGwgBSI-xIcVfU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'rGO', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.052|239.4|0.69|17.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|d_LfDfA_7S164A-XQzjXeatO5zPh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.7509999999999999|156.4|0.376|4.41|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.032|d_SKAy-eENSBdiEyVYlRdCkok5f2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.025|221.7|0.73|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|d_XicSSDlXTuQSIVzcKhHBHdVAqS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.5|0.718|16.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|d__R_1_AE138tcQGo9iBMPtYUr35|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.69|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/cm5037869|d_fM6koCd0_nEcEejpprCtNlfE-3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.816|108.31|0.41|3.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-420', 'Au']|['SGT-420']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|d_gUUsuxrHR2pBL2LRx7j_W3lnHi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-420', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|171.1|0.546|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.031|d_rO3V4vQIanuDJFk8magLLhB0aD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.0|0.54|10.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|da4QNgxnrgfpIH86OxGK6ZJbkxa2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.2|140.0|0.69|11.65|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|daFMNxyuzjisbR7XPmTmlvRkQCKV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|145.9|0.74|9.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|daT6QNySP2_tHajUpHgDQotd_ro_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|83.69999999999999|0.33|2.5|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201700029|daWbJqgZ9JEGmpu5-5HULRvoUlsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|211.9|0.775|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7TC01248A|daXTNBJDoLhXrP-dhJ63kPeIjv0V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I10N10Pb10|Pb10C10N10H60I10Br9|MAPbBr0.9I|1.7200001834055632|1.072|175.79999999999998|0.72|13.57|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/C6NR06670D|dami1xmfmxlP-qNkHgA1JQBSrSJG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr0.9I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.003|214.4|0.708|14.55|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta01839d|dapdIDYA0RPep8anjkJ2TOKeK6KS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|202.3|0.58|8.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|daqUezaFZUSirk-sx0YkmtffDcAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404||||10.8|['SLG', 'ITO', 'MoOx', 'TPTPA', 'Perovskite', 'C60', 'Al']|['MoO3', 'TPTPA']|['C60']|bulk|https://doi.org/10.7567/JJAP.57.102303|daqmC3ene09ZjenMFtPZI5SaBSLK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'TPTPA', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.8|0.703|16.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcou.2019.04.001|db2K8cxj5GwPEnwnlrPO3jPH60fd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|221.5|0.715|16.95|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|db8LuxRaOnluYpklZe18Ixu5Ux2q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.3|0.659|14.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b05775|dbGi0TIzSlw95TUF6FDk6Mx0Nva8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7700001887371206|1.248|136.4|0.74|12.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|dbH1XxsgXATH6kxw2BJh89Vizceg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.97|218.2|0.73|15.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/am.2016.85|dbHN1tu1OTVPutpBzIhhRzYeVN9g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|176.0|0.838|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|dbIim-hFBQo9C34Ne_isq1iyu-_u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.737|27.6|0.708|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2765082|dbWnDDKPfCzxVg9UutwsALj6dOn_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.79|222.6|0.444|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|dbZtsuWcPqzH9cMkbDITJ8HqzPXx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|183.2|0.61|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-9785-6|dbk7X9Scmsvqdwy0pbxpKr2blYew|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|194.6|0.67|11.21|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']|['NiO-np']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.019|dbmQYh8Xgdr2uTLBneI3NqnDCieR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C75H378I181N61Pb60|Pb60C75N61H378I181|(PEA)2MA59Pb60I181||1.09|191.2|0.737|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|dbxUn-CJxwaeVpyXNzqJx0BBABdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA59Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|176.0|0.755|12.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s11426-016-0147-0|dbyFkBJOVTybyDIW7xZEeazK2oqu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|171.6|0.58|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b07690|dc5I7Z9gHRamuvODwLDS2ovs_Hqf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.15|123.0|0.6890000000000001|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|dcK91OrZyYgugyvwzzfjI1BYfiu6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201802223|dcLLJPSDy14rBNlAO9Bsn5fLhnFg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.0|0.74|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|dccV3xokKBTZQIlXTdVgSxB5DH00|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.77|175.10000000000002|0.62|8.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|dciarQDc2Cu2L0LXo-vT3JMS_rSu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|143.5|0.62|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|dcsQqw5c79bs2j_Ho2-TrYLkggIj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b01553|dctol0sqrJC7ojFI6mpramlTkaRd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|188.5|0.68|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.12.112|dcuxm9OwsKQJ1jwK506Ku5_Jkj_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.5|0.616|11.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|dcwLWoGdEXCkIwEFtRttr14CGAEt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.08|228.0|0.74|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800232|dd10lYqzo9GojU2hNDkkXucg28vg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.92|177.10000000000002|0.8009999999999999|13.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900375|dd3LogcPO7nTeJRpwFk5wn3D6t2N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.851|205.1|0.677|11.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|ddBdq_9PdG1c0LKZrksFkKPubUwq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.8059999999999999|164.0|0.298|3.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta05378a|ddSursv_qAdSYazuQw8qMdVeQ6GO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|95.0|0.25|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|ddT5YTEUYxiAieCjNLv8YDlZgc0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.1|0.75|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|ddVwxd9HRI9I9D-jQR9tu4xdp0Hw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||1.07|182.0|0.71|13.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|ddYvNQPU0cGRXUDbJ8BDuAwl9__B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|94.5|0.534|4.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|ddZc7j-TqXUsusoxavTnW5Y-SJ_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|217.0|0.8|20.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|ddhBEaNSFdPH4cVRI_CVdKkVwqmb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.0|0.71|16.7|['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; C70']|bulk|https://doi.org/10.1021/acsami.8b11049|dduNaBccanx0T2UFjnBUPYzhn2aE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.8|0.74|15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201601119|ddznGkXvovPIGqQQgJc9jhozyRgm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|231.9|0.76|19.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']|['DCZ-OMeTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|de9EAhuxGv2QZ8x3ou7B3GiAvn4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.115|224.7|0.78|19.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700974|dePVAluWpvZdDpEik_4d2Xjquzcx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.06|235.0|0.69|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b03694|deRA2Iz0t4waejDbrgDf7r2BZHtJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.74|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b09412|deWGjxFuVuEg1SvMRBg5mEgesC-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.943|195.2|0.66|11.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-4981-8|deWqtk0yHslMjdJjVKPlsUYEIUeg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.09|226.0|0.79|19.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900474|deXQtElObGPrr7zz1MKsAzgAsGga|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|208.0|0.4589999999999999|6.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2015.09.092|debPJGG33cfV3c7D1GFXjsnbSk6N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.05|221.5|0.75|17.4|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|dednxW78jnh2zrQz8sFCSJXk0T9I|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.961|151.6|0.6779999999999999|9.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']|['Montmorillonite', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500163|deqNoI2RPZXPoJFIx_HMqRyjlFaF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Montmorillonite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.62|23.4|0.462|0.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b16349|df5YpgDeCwW9Hj1t_lr8EKDqsHfw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|236.6|0.7240000000000001|16.75|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.014|df7IDgvqtW3B35Ljmxa4z1Aqt4u5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|234.6|0.7340000000000001|18.19|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|dfBy9wkHbA0vI8mT9-mtDs5rRJ95|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|91.6|0.51|4.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PBTTT-14', 'Au']|['PBTTT-14']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|dfGSj-2bywKzody2pNvthu1f-5ne|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PBTTT-14', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|228.1|0.7390000000000001|18.28|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.105|dfKhRXgmKH8n9hd89jKhgFPwNeKI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.972|189.0|0.883|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|dfSCVNY0PrJ5V5KI6RBvsp4ihfO_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|222.8|0.7559999999999999|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.085|dfT2BDkUB9TpCDjYXFVMaJ0YXJcn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|212.0|0.78|16.23|['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'Cu']|['P3HT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901631|dfY7j9Qms6INkQG9_lknaAIe31Ui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|189.8|0.69|14.27|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b13621|dfcEfB3ytrKDkAt9rkNL8tNiq-oj|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.06|225.5|0.72|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|dfnMW0PMFgmCImhTGokPArjfznh-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.139|218.0|0.6990000000000001|18.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02901b|dg7u-d17T9Bej2YncBp-4Xalt0wI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.33|167.0|0.53|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|dgDL1WGgAYu6nLYnLdYp_N2wUFtj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br3CsPb|CsPbBr3|CsPbBr3||1.352|69.4|0.745|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|dgMEr4Sgg4gY1UIgpeizlamBxBLo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|92.6|0.34|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au', 'Pt']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.035|dgNL5UY3KWKtAJ-YTmd0v0awn23n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au', 'Pt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|206.9|0.63|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.06.015|dgOV-RmoGJNhCobsyA_f46MesNxm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C97Cs3H325I100N54Pb18Sn12|Cs3Pb18Sn12C97N54H325I100|BA2Cs0.3FA1.7Pb1.8Sn1.2I10|1.2500001332889268|0.64|213.0|0.6|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|dgSYYPSbIcCyqRoCOUs6GXo42FT7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.3FA1.7Pb1.8Sn1.2I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.2|0.72|15.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|dgX1Nr0ZqFSlRUql5wQ__xS8GzhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|228.0|0.77|18.4|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|dgagQE9vdU9TaVFVFpCC4Yz0V3c8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.01|214.3|0.73|15.92|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|dgjP79_en-H1_ouUoreEFkMM9j_c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.932|173.70000000000002|0.483|7.82|['SLG', 'ITO', 'In2O3', 'Perovskite', 'PTAA', 'Au']|['In2O3']|['PTAA']|bulk|https://doi.org/10.1039/c7nr05695h|dgwj9SvYpH8zz7zedyvxwLr38LQ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.685|140.0|0.41|3.9|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|dh5yijJvbf2SNaUPxhOSC-UIGGom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC100H600I299N100Pb100|Pb100C100N100H600I299Br|MAPbBr0.01I2.99||1.03|224.2|0.767|17.71|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/ente.201700561|dhAlyFGPtm3Xklu_O4To_10P8JUV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.01I2.99. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.95|217.3|0.509|10.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2020.135686|dhDnREI3WcbV26V5ifkHMPyYi5kU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.718|1.75|0.7190000000000001|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|dhca1IifHOR1Gegski37MYM5CSgT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|1.4|0.705|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|dhjnH1n9e0FjVhaEB6GcCcgtG5p2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.3|0.599|11.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|dhkBOgBWBIg1CnfCYYitPdhgc149|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|206.0|0.6890000000000001|13.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.054|dht9YSxPMi6HWvSkIU-fEHo9mdxi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.99|129.9|0.56|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|dhxzyKzfQywecAhaTewJwnM31DA7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3||0.906|215.0|0.693|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTBT', 'Au']|['DTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.09.020|di-NluFKMhq0qJh_p1V6BLzRtGtp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.99|210.4|0.6459999999999999|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601882|diBPi3bvTQmihWlb3c_Pg5eBzsbP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|205.9|0.752|16.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901284|diEAl99Uhcbp_Xw3sGXVTrFvUswf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|132.0|0.6509999999999999|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|diKZG14fpHKBt_wlCG9jd6SujXsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br255C475Cs25H2456I1245N966Pb500|Cs25Pb500C475N966H2456I1245Br255|Cs0.05FA0.788GU0.097MA0.065PbBr0.51I2.49|1.6300001738087604|1.1|195.0|0.735|15.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01893j|diUGvgQ7kyaQBITUZ-MhvEgixADL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788GU0.097MA0.065PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|158.8|0.442|4.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/26/1/018401|diVQPuvP1cfLuO-Jwk46Oen5U1qS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|205.8|0.6890000000000001|14.47|['SLG', 'FTO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c8ta06970k|digE3vQPwOqeXD4JomYgs3DwoU5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.11|150.5|0.715|11.97|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.202000501|dip88_ONPcFzUc7Ve8xMjq9pbCBZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3||0.44|120.9|0.254|1.39|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.201901787|dirY3c2TfTmPW_-I3v7WgZtDUxbX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is CsPbI3. -C100H593I300N107Pb100|Pb100C100N107H593I300|FA0.07MA0.93PbI3||0.82|238.8|0.64|12.53|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1364/OME.6.003651|diu2bn-WstBSsQuYZOsKCPoeKcSm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.07MA0.93PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.77|40.7|0.7879999999999999|2.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2019.04.113|dj2EpHmbFmP16Afc1JqW3RNm8Uzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|185.8|0.74|14.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701203|dj7O9NLf-LycnUq2A6AegTKtAeWZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|208.7|0.76|17.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02555a|djBJQrQTTBmGXac1bbM8rzASUw4T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|192.6|0.675|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|djHL6vd_jB9sPClDKzS5Ys6zXZ12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.810000193002366|0.97|104.7|0.5920000000000001|5.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|djRDTf5DYAAYl0rCFti1NcZfHq6h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.1|0.72|13.75|['SLG', 'FTO', 'CZTS', 'Perovskite', 'PCBM-60', 'Ag']|['CZTS']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.180219|djSQFC2cMn2O5pbuSKbJS5UxyQWG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CZTS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|179.0|0.62|10.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cphc.201900856|djSdK9_gPGjUNZs6wobQMvDt2N0U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.6579999999999999|128.1|0.381|3.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|djtjrw2443mJvnD8dPnbTVzqv1is|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.66|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|dk2XiQ3A8K-QTRDQ43c39bQfCqTv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|204.2|0.6809999999999999|14.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-018-2752-z|dk6LIKCPEDffKp9FnNN8ReKTgdik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.0|0.62|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.01.095|dk8R5JCdYb9tWJxKq-HmfyekaKHI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|211.7|0.685|14.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05814g|dk8t4gn1V5qtioPuESZNOzNL7A7c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|140.0|0.565|8.17|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|dk9feRdaJ6BlILSnEcOnwpZcXj2Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.963|192.5|0.65|12.3|['SLG', 'FTO', 'TiO2-nanoplatelets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanoplatelets']|bulk|https://doi.org/10.1021/cm502185s|dkH5oRGI_tXCS-VNaryJHNzKcMJY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanoplatelets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.065|195.5|0.63|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|dkHOi1ssBnPH0Asv-YmmvPTohQlz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|137.6|0.405|4.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta02617j|dkRMEl1UtzBAMxYqXUUf17lm0b_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|198.1|0.52|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07307-2|dkh6MMKbrfH7-s8BrQ38qRNODcSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.0|143.0|0.509|7.3|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06315|dknJejKj0X9YYltarQP8BvcfuaF7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|177.0|0.72|9.98|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.032|dkrWlQI_cXz3ExxWcODoia4LQFD4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.7|0.789|17.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|dl-9-Owpq2nLzwWqHXVKkqEyXpyS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|209.0|0.662|14.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|dl0HYEERTdo1WZK9IPr9Gh-oXa7-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|102.8|0.544|5.2|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1186/s11671-016-1621-4|dl4-o1lnVcBRIc58AAjJqMc6bF0-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|193.0|0.63|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp506991x|dl7QqKG_KeMHIVF0ypra5_cdma6g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.5900001695435149|1.161|232.0|0.723|19.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.08.012|dlAAFSvtacgjcFlGgnw3VtXRJvmB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -C10H44I22N6Pb7|Pb7C10N6H44I22|(PEI)2MA6Pb7I22|1.7000001812729404|1.08|117.4|0.63|8.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|dlHr-Sigk7tTKhmrWMzdhTKv1dHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA6Pb7I22. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|||||['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1038/nenergy.2017.135|dlUYULdUZgStjVkbexvmsl0gva1e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.9|0.7979999999999999|19.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902021|dlXSsMzeXQxXVmYDxo6S5Hc7Fe6j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C49CsH294I150N49Pb50|CsPb50C49N49H294I150|Cs0.02MA0.98PbI3||0.96|206.0|0.784|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/solr.201900406|dlYerNsRTETLDa5dSxm1cTgdTKHE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.02MA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.2|0.65|12.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|dlklQntrEBqT1l-ch3rx10zzQ2ct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|216.8|0.653|15.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|dlnOgxvfOYw8Drl94a2cbMGrPUib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|202.0|0.75|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201606608|dltapa3CcDWGx3HYbqavxyP90zkh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.93|225.0|0.74|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TAE3', 'Au']|['TAE3']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ee00528e|dm4wEHWqIiDd__gbwWc649gWL3ku|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TAE3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.1|0.753|15.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|dmK70x0qywODI6TDyXEl9dv71UY7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|206.0|0.79|16.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDN', 'Au']|['BEDN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta05121j|dmQnGqgYxwKwwXpq676LIExmvX16|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|203.0|0.64|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|dmbybft5BCwlMfgTm8RjU6MYdKB6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.0|0.78|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta11128b|dmqhOU5gYAzGtPjtG0nsLm9yM3mk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|9.8|0.39|8.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1117/12.2291595|dmqqkrNbzyq_pYl6G_o_uE5JB9rq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|227.0|0.74|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702915|dmw64NyC8YOfweNXwZy5MZv7HTee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|130.1|0.66|9.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|dn0_L8yvN2RsquDFAY42IepFl9X_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|184.9|0.61|11.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|dn0cKrPWAxNeM9l4ff_y0GwC_9RP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.432|225.0|0.6459999999999999|6.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|dn29iLixCQI8M-HBQwgzxgQzg6ho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|234.7|0.75|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1002/adfm.201806506|dn3oiXl4dEh9mVBVsMQqdy2Jxk4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|225.5|0.77|19.35|['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SDBS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227584|dnADsxIUC7XORXdMwCAsLhDsRakJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.104|204.16|0.743|16.74|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||dnFdFKl9Emmt4iYy_sR0HPhS9NWY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.73|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|dnFwhFp01iY1JYRmAR0scJQA31HW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.5|0.75|16.3|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|dnLKYoGH-Y7H8-wQ9QXPkitMEwbd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|196.0|0.723|14.74|['PETUG', 'C60', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'TiO2-c']|bulk|https://doi.org/10.1039/c9ta02094b|dnOVp1dMC8nCtYn-hw-M4MCPo103|a perovskite solar cell with the following device stack: ['PETUG', 'C60', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.01|56.900000000000006|0.5489999999999999|3.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|dnl6DizXvGeeCVWL8J9JFZoprSTt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.981|180.73|0.61|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z35', 'Au']|['Z35']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|dnvmxN3Q4t9mEV-afgzs3dl5PJ-n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z35', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|211.0|0.674|14.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|dnxeSElALxRIHwBkdcTazMdlr8zt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|136.0|0.534|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|dnyNIYnfnP8EAvHPQUMJx8HKVMFT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.785|115.7|0.407|3.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|do4j481DtQ4eSIKV9YuaV-c2H7W_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|192.0|0.605|8.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|doBCGcf1-zrv04WFYreDI-Xowxiq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|186.1|0.57|10.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Ni']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08812k|doNsn1y1NtPLBahSIywKU3-xWWtc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|62.0|0.75|4.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|doblVWygDsnt0QsHRGmpH6ZRIW3i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ph500255t|docvUhhLrPL0ovEab_GUy5y5JV7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.7|0.64|14.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPE-TPA-8A', 'MoO3', 'Ag']|['Ph-TPA-8A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|dogF0shprfhXBhtltuK-mdz4bkWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPE-TPA-8A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6INPb|PbCNH6IBr|MAPbBrI||1.0|200.9|0.79|16.25|['PET', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta10585e|dojMT3WfRQTpQukw3VRqFg9YFWpU|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|195.0|0.73|13.23|['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']|['PCBM-60']|['NiO-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104018|dojwgm6LKe8hAPfjt0TnoLOeW-zf|a perovskite solar cell with the following device stack: ['PES', 'Ti', 'Graphene', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag', 'AZO']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|dojxwQZrNDs5cAQF-tVwZNHZb7Es|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.7|0.745|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800568|dolr9Jgf8-tqc_JxkJnHr34aBuE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|202.0|0.68|13.2|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.3791/59929|dovijDfBq4zqZbMMkfNcwZCw4S6n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|153.9|0.344|4.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|dp1-qOOgZo09j0HVOjOarS6De5Yw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|201.8|0.713|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|dp8htsDKoZjBHLBb10m2wvRJgv1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.935|176.8|0.72|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|dpFn2fLa82qPCKyPTVO5O14jm1Bp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|171.4|0.669|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|dpH2qj7jdsTHSh2pXBUo20w5uUSJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.03|167.0|0.537|9.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|dpKa6UOEYLn70tMnRnyE9xS-fdKl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.4|0.737|13.29|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|dpNYuoLHhPtoxUy8lyiSAbJy2RuZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|205.1|0.66|10.8|['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-mp', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jssc.2019.03.028|dpSoPYuiCZCEn43hl9UCVrHdAYFs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|198.0|0.7|15.3|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|dpUTyB0ndOQIZEJQ6-J1Sh6por6S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|196.2|0.728|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aad311|dpV8UWrN_LsA-E4r8mZiwWV0GgTx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||1.06|190.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02405c|dpXwHkbuBIrCT0kwk9a2tz-sB4tZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|124.0|0.58|6.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|dpc3kmEVBWFXcpB1akcNdP4jZRaZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|208.2|0.743|15.06|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|dpdRbEqGWbomU_Ie0hu4Ua5qA5KQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.78|236.0|0.74|13.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PTAA']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1039/c8ta03054e|dpddzwzCwmDCkF7iis83ihcKQbq-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.100000223925397|0.6|15.0|0.59|0.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']|['PEO; KI; I2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.09.054|dphzuPcflRuErYikYl1I6JX7WShY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'PEO; KI; I2', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MASnCl3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|225.0|0.74|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|dpscLbCNCK-BR-cl5pYy-MevofNS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8290000000000001|194.8|0.625|10.09|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/jp502696w|dq-yB2xPhYBE2NIIHfn05NdlgokT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|236.0|0.605|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2019.07.010|dq1mA0MbpYaP8em52ZPt9szUqQ2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|160.0|0.679|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4ee01216j|dq64w8GcdkgZO-n1Rak5GmB8OBKh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8759999999999999|175.79999999999998|0.63|9.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.102|dq6wHeLxSB-Xo9B_AHqSooc0Ozoj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|99.2|0.7|5.3|['SLG', 'FTO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'Ag']|['none']|['CuInS2', 'Al2O3-np']|bulk|https://doi.org/10.1186/1556-276X-9-457|dqAcEx3mrin8q8FKiAOLjZZaIN-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||9.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|dqVmSZUP0DjVa6eoDQZLua3TbVAO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|dqY9x1vyIa_EjdS_33dxdBvHykj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|161.0|0.56|7.2|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c5ee01169h|dqYXXtdTqTPT6FASTlEsq9rSK1Di|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.78|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c6ta09174a|dqcUYHhn4pBqwyW_6pjYoDM4v8v3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.9|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2732223|dqpEoaFQ4ubsr3SjP9yMvX3mp5hp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||0.987|175.0|0.68|11.73|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['EVA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201902629|dqx-0PFuZXc5j4nPgixGw7v0dHFr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|213.1|0.733|16.78|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nanobipyramide; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|dr0DQ711RfPwctPUd0SKitJh08En|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|208.0|0.65|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|drLIEC21fL2wcEHKVbJa267RUrmZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|104.7|0.64|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Au']|['SWCNTs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|drSlcBQVqK5zXnsv4q1X1v0yc-aA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.2|0.73|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01258-4|drVcaB8wHlBA3CUEvhVnaoU9jVDf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|231.9|0.769|19.77|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']|['CsPbBr3-np', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00925|drWP7FyPmTSO3sYC3QhvG7904vMD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CsPbBr3-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.11|229.6|0.736|18.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201802223|drYDc-ZIPx8BDLEsfZLjKXwOTWFd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.4|0.773|17.57|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.cej.2019.123976|drhs9CO1PWMdS_2uuJGYgxVcPpha|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|114.1|0.6|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['Carbon']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.030|drqjZiMCARP_MSHC2KjrlSiii9mj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||15.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|drsKXLEgq2ddOo6NNveWll0nI3nO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||0.72|102.0|0.64|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|drvCx2A0Q8wD-GL01BtwPdNjeTWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0|202.0|0.779|15.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105573|ds1Xcoqa2afHB-0RAWXKi0WiPiYx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.0|0.69|14.3|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|dsX-3SVZfNS2SjB13TbzwUcnzVj5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|199.7|0.665|12.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|dsa1NUceMPE5rTrjAJoOC-QZcijm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.37|146.0|0.39|2.11|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|dsecfLZz_qLhiVnvbRypzagjEpWY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.11|234.2|0.7859999999999999|22.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|dskkeBIjBUsNEbzcldMxhJmJMjOX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.755|156.6|0.7|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201304022|dsrraNRqcVoq1TiQAl0F2kTpHZXo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.13|232.0|0.7090000000000001|16.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mtener.2019.03.005|dsyYvnpc89hix0YJ-KcjplAiGuj7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.63|13.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5cp03803k|dt4h1IFzSZ9gxWNqqOUzGM2a1SLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.0|0.71|12.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|dt4y8xMgkZ92xIQ-Med-3IW2PZte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|201.2|0.728|14.43|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|dtFtqr7HM1QrdzVDszurvxki1e3B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|181.0|0.63|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'C60-SAM']|bulk|https://doi.org/10.1021/acs.jpclett.6b02103|dtJSlQm7_mw4Q-kvdtcqn8xZADXP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.58|12.5|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|dtL4Cza2695hCuNmRutM-2wqrTxM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.9|0.75|16.92|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|dtU16qitTrfp5-h0zGhpOUoQ2jlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10CaH60I30N10Pb9|CaPb9C10N10H60I30|MACa0.1Pb0.9I3||0.72|14.0|0.423|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|dtVUVpjO-pyypncecNdvN5Ox9jxg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|158.0|0.7040000000000001|10.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201500421|dtX-f618AozcGGrQS3gCzF-pBWWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.203|227.1|0.561|15.32|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|dtZFmyfPnvx1Uqnp8-tDUCtxKI-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.949|233.7|0.655|14.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|dt_jM2HhpYpw88Qr3Ol0PFy46ThO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.2|0.79|18.83|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b22044|dtakFZVLOjbOM3FXnHSg_d3h9lI-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.077|240.0|0.779|19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|dtgms5fPUvsvdlzJ9jNoHD0Mi0Ut|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C15H26I6N3Pb2|Pb2C15N3H26I6|(Anyl)2MAPb2I6||0.75|68.0|0.65|3.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|dthshnSSSSOslCgh6T9uZAHxjTI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Anyl)2MAPb2I6. -C19H39I13N8Sn4|Sn4C19N8H39I13|(PEA)2FA3Sn4I13||0.58|165.7|0.6659999999999999|6.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'LiF']|2D|https://doi.org/10.1021/acsenergylett.9b00954|dtjj017dUtmNOByNsrNKi3e-0SNi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)2FA3Sn4I13. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.945|158.0|0.534|7.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|dtlyzgHv3EFfSpb5YxZI8gNPZm8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|121.9|0.56|4.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201301153|dtoeUy-2Tvs4Y8l-06Y9AFzNIUQu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4C98Cs2H551I296N135Pb100|Cs2Pb100C98N135H551I296Br4|Cs0.02FA0.37MA0.61PbBr0.04I2.96||0.94|174.4|0.486|7.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']|['PEDOT:PSS']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000262|dtvxCRqpGAG0KJHrbVnIADkYDKXY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.37MA0.61PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|197.0|0.61|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']|['PEDOT:PSS']|['PDI-HE']|bulk|https://doi.org/10.1002/aenm.201700476|dtzHmK74eX5HIcg0jPiwTWvo60im|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI-EH', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']|['NiO-c', 'NiO-mp']|['ZnO']|bulk|https://doi.org/10.1039/c7ta07775k|du1WmqPsNG-9vhcIeYUVavmf6ReO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|197.0|0.563|8.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|du6RzJkQmONxKWm2bPWGalaRbLyx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|24.2|0.28|0.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|du7n372QlAwLS4dsE2AsD9-p7cpI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|160.7|0.477|7.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|duLMYXQ0Ncva0XFAGoLTOOC9enfX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.58|6.800000000000001|0.2|0.08|['SLG', 'ITO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE']|bulk|https://doi.org/10.1016/j.solmat.2016.11.031|duMWkttONDLD_zlxNUjfSNpKZl8m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.0|0.669|12.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|dugp67Zl0Du0zM8IRBtyqQs-_KnX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|Cs2AgBiBr6|2.2000002345885115|1.02|18.4|0.67|1.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00871|dujYioPWKM5V56Z5auQUQDrtNmaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs2AgBiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.0|0.75|18.2|['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-macroporous']|bulk|https://doi.org/10.1002/adfm.201804356|duqEp7n-TGNM5jeF5scPgO7-a6rD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.05|10.4|0.26|0.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|dutpZ1N7916GsfFagZ5tCI1pOleP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.72|15.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC', 'LiF']|bulk|https://doi.org/10.1063/1.4928536|duvkiAB3pa5Hv4cLg0V8SDNDVrSm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C298Cs2H1188I400N148Pb125|Cs2Pb125C298N148H1188I400|BA2Cs0.08MA3.92Pb5I16||1.08|168.6|0.64|11.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/anie.201905690|duziDyHa08rHSr0TPIhPdMvjn1rz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.08MA3.92Pb5I16. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.05|203.0|0.7120000000000001|14.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc01741k|dvKgs-QqpiSqHuVHLN0_MSRlfykz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.0|0.7020000000000001|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.256|dvPMoaot7p9XmVdLp257TWOWELcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.0|0.7070000000000001|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AZ1', 'Au']|['AZ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.8b01336|dvTvaImGG151AH2jFV9do6KeeO1N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AZ1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|176.20000000000002|0.544|9.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|dvU1zrLnOMDiUzgJQeLS8bcX-l06|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|161.0|0.672|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07507f|dvk0SiLk74CYaPbIYFw3Ph8hVjz8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|205.2|0.68|12.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2 -np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-np']|bulk|https://doi.org/10.1016/j.orgel.2015.12.010|dvpBwZmij832iT1k30MnOmcqX_eI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2 -np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|173.46|0.73|12.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|dvsQ0yBHwMWZATDRh42QnIb7EXrQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.5|11.3|0.52|0.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|dvyHq0_oc8ITfBiDKYF0fb-2EsFb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|2D|https://doi.org/10.1002/adma.201901673|dvz0Q6wHSut-pYGi1XoIBwmVpb6V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.08|222.4|0.63|15.14|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|dw0CLMMzvWsTfyJyot4b50Bc8qnz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.733|45.3|0.37|1.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/2953592|dw5xiP-Sqa30NOBuDNUduX5D6fIS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4580000000000002|81.19999999999999|0.821|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1002/anie.201800019|dwDpMy-0FzjidWmDCQWk_4-CNZRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|136.0|0.64|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|dwJ58afi_3B7v2HnPQw8Lp5A5gD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|176.0|0.7859999999999999|12.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|dwNQOIC8x6New5Mqbm_SiU6S0Zui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|207.7|0.69|12.96|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|dwShN2Muabpe6sEG5hhQVQHTjM5T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|187.1|0.71|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-TPM', 'Au']|['TPA-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|dwYZydRKpw_jV6uV7RT8-__1gJ-B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.0|0.69|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b06819|dwa0uc3GkPQ8YE5R4TO7DQMJltds|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.5|63.2|0.478|1.51|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|dwibbU4rTd4A1UtQ0KOhktx-bEFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.0|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01294|dxBK1S_E3nbyjPfvZTmcGi72dzur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br33Cs100I66Pb100|Cs100Pb100I66Br33|CsPbBr0.33I0.66|1.9200002047317917|1.106|159.70000000000002|0.775|13.69||['NiO; Zn:CuGaO2']|['PCBM-60; ZrAcAc']|not processed|https://doi.org/10.1002/solr.202000344|dxBZ_b31ExE-p4OZbm5lqFw28aXg|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr0.33I0.66. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.048|188.41000000000005|0.678|13.38|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||dxIO_pxW0IW3QFB8j7aVv7SBOBiB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.12|216.0|0.754|18.06|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-019-08507-4|dxUssgbRvr5mzrOJ8ZKD2hbb3y8T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.91|187.5|0.63|10.76|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr05235a|dxY87ndx8DPV-KSMqBZIQtzi3rtn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.0|0.76|16.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/cssc.201600921|dxbof_3FG4u7yJsO9A-9SW6RqgYT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|138.2|0.59|6.1|['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Ni-grid']|['Spiro-MeOTAD']|['TiO2-c', 'OTS']|bulk|https://doi.org/10.1002/admi.201500837|dxc2I9CW7Yu1hqJ3qLWmIkRRd--0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Ni-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|204.1|0.7|15.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8cc02329h|dxcHgCU3vsv3UfzMwQJdT-Eq-IUp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|24.3|0.36|0.6|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|dxmY-TLRJAt3KMIKdre7f1ajIByM|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C63H210I65N25Pb20|Pb20C63N25H210I65|(PEA)0.4BA1.6MA3Pb4I13||1.126|165.5|0.715|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|dxso8tqxh79rBS5n4sMqFdMTTMYh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.4BA1.6MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|218.2|0.679|14.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|dxtRw2Jxu-vaOHVKvkS1yzXmzoHQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.12|224.9|0.74|18.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|dxugU7d-DuoYrDtoWvqyxGZHPSvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|220.8|0.71|16.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.085|dyHR3_78D-wNjhdqp4hTEGZVfuZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.08|157.20000000000002|0.614|10.42|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|dyNpakDZkQzoUKGgv-AKJthyqqu0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.7|0.6890000000000001|14.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|dyONEPo64-lKtcxXwUgaDipiZrra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.71|69.2|0.518|2.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|dyQxGMBbxlTEGq_tgo4GxqBaH772|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|192.0|0.581|10.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|dy__IDHyjfdsII8JeXgg63rf-rjp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|158.8|0.46|7.73|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01389a|dyat3-OjFyVsSb7SP-hp7Ue-5G9J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au', 'LiF']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|223.0|0.75|18.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b12323|dycNNDpF7SlXO19txa2FaKC8b56T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.1|0.73|17.01|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|dyijX4oCc6aM3hKy3ri1tmcnfP8G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|214.0|0.56|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|dyjdNcF7MeLTD2jkUF9pbjYpwdj2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|186.0|0.54|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TC03077G|dyqsPpH7eDRgWLjNDUINdyPkUkX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.0|0.605|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2018.09.072|dyqwJtbt7fbc4C_hX7oRPgADeC0y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|162.89999999999998|0.5329999999999999|7.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']|['ZnPc(tBu)4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|dyvNgZilIcFIPwCUIS5w0FI5cqaa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc(tBu)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|226.0|0.6859999999999999|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|dzD7JXEZurmIh48BOZkWMFxXlcgJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|225.4|0.777|19.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|dzJafL2INeb53s5CzEac8llMf7F1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.52|10.8|['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Graphene-QDs']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|dzU6VPaVgZMWmBZRAsbP1NykaDF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6720001782872684|0.93|193.8|0.72|13.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b05770|dzVlDB1ZPDx_efZh6z5mv6BH0wYG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.0|191.6|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00303j|dzYZ-guN7umiKgA0ltlISW42WR-Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.02|238.0|0.78|18.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta09369a|dzdqU2-mAz-hgejWbwJtEl8OESDa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|215.1|0.737|15.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.039|dzkFzUdIGRCz2g8NON1NAoSOKcx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.12|217.0|0.73|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|dzrVybVHzhNfczHSRksrGP5BYA37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1117/12.2274438|dztoaLTqMHT2JXMv6olVfIl2XiXY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|189.5|0.6|10.37|['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|dzxPIWZIeFq9j6ohOuY0a397NW-N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.0|0.79|18.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.8b00099|e-13BO53wd-5qxv6M9W4NSOiaQ1g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|135.0|0.39|4.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|e-1S7cTvsbT7IsdMs8gyBfx_kJUT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.1|0.69|15.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.10.036|e-7aHxqq2onh-2hdZXhAjn3D_zdg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|180.0|0.525|9.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-1992-1|e-BaNr7Yigg4xr_gEEzRlLBbK_Ja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|209.0|0.71|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|e-O-QwCiJhT3-PhN_XcKlkW6l3fJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|115.0|0.605|6.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']|['rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.027|e-lmiWArxGeyRcvOe7rpXzPnfbSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|169.0|0.623|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b20750|e-mLN2Z2rYbrkjZdnROwKI-lAYRs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|204.0|0.79|16.8|['SLG', 'FTO', 'TiO2-c', 'CsCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsCl']|bulk|https://doi.org/10.1039/c5ta09165a|e-pWZU8hRkFGKHN0ibG1zfh8wl_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|173.4|0.61|10.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|e-wrq2xI1dXahy3sRzz8WHsks4pi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.125|216.4|0.7829999999999999|19.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|e02j_G0qA4EqFm3dpouWvewja95C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.18|25.0|0.4|0.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|e0cfB314DvWgZK0l5YGkyv_qdr_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.97|139.0|0.64|8.4|['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']|['Cu:Ni acetate']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|e0gB-iDN8YwDL4jt86my5XRADh-C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.5|0.7140000000000001|15.12|['SLG', 'ITO', 'DNA-CTMA', 'Perovskite', 'PCBM-60', 'Al']|['DNA-CTMA']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201600288|e10SwJRwjVbcsfST_-6xGrT9FgNx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DNA-CTMA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.38|175.0|0.581|3.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||e118d7415ldrNWI8re6SP7Q5PLuz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||18.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Butylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|e14BolbHD8HNRT4tUrl7w6A69qrG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Butylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||1.03|231.6|0.662|15.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|e16RSeQDtaQJXpyKWgwr5w4KFXYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.7|0.73|17.74|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta09946k|e18Mqwhci7Ivq9ErMUD6_lvj7HPo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.917|128.5|0.537|6.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.03.145|e1DdbtC1t9qZq0XhyuK1bIdUqLAy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.9|0.79|18.58|['SLG', 'ITO', 'NiO-c', 'Perovskite', '2,6-Py', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['2,6-Py', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta04851c|e1PTyNf7osbRG0jYBOiLqwL66SCV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', '2,6-Py', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|185.6|0.4639999999999999|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|e1kXjWgeuISU77ZXlbQWchL2jopF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|214.7|0.69|13.4|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1016/j.matlet.2020.128174|e1nKAr12MfkRCBrKYyoqxkC4vHUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|225.8|0.785|19.07|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['2-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|e1pBS267hJ2oICwqtbTBlRmMf9r-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '2-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.095|222.0|0.71|17.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.202001144|e1pLFWzQ5puo1PIrL5L1OBszRuq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.05|202.0|0.63|13.4|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/adma.201604186|e1sTonJji88Qd4_z77Iz8CcmtEzh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.1|0.723|14.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|e1t5O3BTelTIl4z7KnUxDy9lceLJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100Cs100EuI200Pb99|Cs100EuPb99I200Br100|CsEu0.01Pb0.99BrI2||1.16|141.6|0.753|12.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.10.008|e1te1jjtWeNSok4KX9AbzKFDDBmA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsEu0.01Pb0.99BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|139.0|0.632|8.25|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|e2GonWCDkO1t50pTgKqALGE7bdNH|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|190.0|0.68|12.85|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b17798|e2IWgzTRivJqvRbW7vEf7R39qAuJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.0|0.69|15.78|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|e2WoOXshiHuP7tNV7XBBnmTQ-8wk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C75H450I67N75Pb25|Pb25C75N75H450I67Br8|MA3PbBr0.32I2.68|1.640000174875072|0.95|208.0|0.71|14.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.06.049|e2Y3blPkFFXPVv72IpH0V2SXL5ut|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA3PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.934|182.96|0.664|11.34|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||e2hpzU6eWBSLDL7y7oZKTKe8W_ZU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|112.0|0.455|4.3|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2015.03.016|e2nEKqZHU6bfAgqe_2OZEQIqd8Pc|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|233.8|0.7|17.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00477|e2oKulwVSsQBLkKKj780-9WpmcXe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.856|110.7|0.42|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.048|e2ofku3v2V8gW3Y13mmcOkjmb65t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20Cs5H100I66N40Pb25|Cs5Pb25C20N40H100I66Br9|Cs0.2FA0.8PbBr0.36I2.64||1.02|193.0|0.542|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804284|e2zMz39Z0qRu1OWxr3BzCbVl7SOR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|235.0|0.716|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|e3MDHWGy1qLRGKIax_mKW7nPNz0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|232.5|0.792|19.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|e3THqRKhykKMmqW42mcpa-vDrdZG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.877|199.82|0.6920000000000001|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P(BDTT-tPPD)', 'Au']|['P(BDTT-tPPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.04.026|e3b3Z7lDahL5YGq44QlL-Onhzd8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P(BDTT-tPPD)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.76|13.53|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.032|e3t7TpljcbnFtowfNKG5QCs-wx9p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BiCs20I60Pb19|Cs20Pb19BiI60|CsBi0.05Pb0.95I3||0.93|173.5|0.6609999999999999|10.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|e3xgy2fHca1xFxsDtYnJOGeV_BZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsBi0.05Pb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|86.0|0.44|2.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|e3xrbpZlEfGN8noZwO1VYbKZkuE2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|183.4|0.71|10.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.06.043|e4-SvHwOln6bE7NNRNlqB37LIwpC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.06|84.39999999999999|0.58|5.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|e47dt-EODygMilJang3zOfJPKWUc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|205.5|0.802|18.29|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|e4L1OC0E3lYRpopmShrQh-INBGdj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|211.2|0.723|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|e4Ml8w4-9KQ7PTIATDUON15YaIHo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.450000154615155|0.49|164.5|0.633|4.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|e4OHQY_wY_xaxtiQkl3G2LiugT7P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|20.58|0.6779999999999999|14.62|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.008|e4PsO2SA013lbqyXFSVfOUUzkjZo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|221.4|0.665|15.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|e4Pw9cANt2QF0coiWNChcyQWvg9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|186.6|0.62|11.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|e4SJyUG3FDV4LuKEgeO2tih3Pb4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|197.0|0.76|16.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2019.03.159|e4Sqs1ABd4uqyhXeJ8vcJzZHkmOG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|187.8|0.63|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700290|e4YSAJ9Y7ICdDrhuF55Y0h_d9aYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.88|199.7|0.584|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|e4_cwgaF30ldES8k4hGC4oCt7WL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.09|225.0|0.8|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|e4jNcjs1fWiuD_1ZJtnu_YsH7kgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.8|0.79|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04465d|e4nM3OzNTN9ayx1MQ490QChuduZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|e4nemYxAWGLXndqnOQCQaTotDqT5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|236.7|0.72|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606555|e4qmuBVNB8NtUM48P-d5althYH0W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Sn|CsSnI2Br|CsSnBrI2|1.3700001460846638|0.289|150.6|0.38|1.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|e4yLHJVzWMSV_EBQHhBJcgMA3Ze8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.9|0.5539999999999999|11.59|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.018|e52BG9wb1rdny-dQ6E3ZGSuDz_a5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.54|203.0|0.63|5.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|e59YMFiG3DpDDfVfzSgtKKEl6g_0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.9|0.69|15.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|e5IAsSIDs95I8RSr4hTPiGmD0Y5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.0|187.4|0.723|13.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|e5J_v41lkScTQtTwXoeSUMnT-NkW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.0|0.74|17.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.017|e5UoyrcxaJBdeHUDUbSLXlKyBjDW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.6|0.695|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|e5bQ08hWmEUooCr5Z2aXlxvOl3GG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.71|163.1|0.71|8.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.143|e5gxs0OFeNgazU831b-2x3enX6lC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|178.5|0.495|7.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|e61C-_vk74ksfBsDDaflrxNGqU5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.03|214.8|0.713|15.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.spmi.2018.03.051|e61TaPT5fN-3dwVWgjlaRwF8q6wh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.871|173.86|0.81|12.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||e679Hh_j6zyLhReZ6mOz1jgfmyWC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|145.5|0.53|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.170804|e6Fh6sEZhAGuO8DsmlcFzZUo_kC-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|136.0|0.5|5.4|['SLG', 'ITO', 'Perovskite', 'C60', 'Ag']|['none']|['C60']|bulk|https://doi.org/10.1039/c4ra03820g|e6S4iOOeuKtD406LHhSK4bXxJfjC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|223.7|0.65|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta09604f|e6T-PmgY26JFmcmcFJe0ksKeN5pX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.0|0.74|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.10.005|e6TdIr9Mr5oXwd2_m3y0yYlCWVU8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|213.1|0.6859999999999999|14.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']|['Ome-DPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|e6YZjaVL68jD2rLyOEIgLMhDChzG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-DPA-CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.18|153.0|0.768|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|e6c3NAkepxFGas4AuKvWWg5qe-7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.091|223.0|0.68|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.040|e6cHmpLJkg6S-US8Q8AcMv7XIYmU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.1|242.2|0.7759999999999999|20.68|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|e6cgsZHfXrUWpY3HT4flMDwLS0py|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.97|193.0|0.61|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|e6fWKQJR4hloAMg98GekqeP0A6Nz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.2|0.7140000000000001|15.92|['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|e6jBtF_XJNM-cPIV45ZxaD9qzlaU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.96|200.1|0.66|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.056|e6oa4PRXrdCFi8dldXUqI8znCoyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|215.9|0.7|17.32|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|e6rGKWR7vN0ER_lHYuJQsLhJ_QYQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.2|0.672|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1933-z|e6sOiYW3b93UpxgI2guDWv5Md3Z-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.7|0.71|15.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|e6szfj3N81kyKuq1Hbd8Hz-emms9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|216.2|0.69|15.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|e6tRVr0UrqcQCxSwUn9UzkVixFEY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.158||0.7|20.44|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|e77OPy5WcZGh7vOyiUCNE4Ggji2n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.30I2.70||1.082|220.4|0.723|14.33|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.063|e7D6OayqjzDfjX_gU5CMejGbg6t-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.30I2.70. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|157.0|0.649|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DOPT-SC', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00032k|e7FVQOLXxjzc6liqA-6ein0NHGQH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DOPT-SC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.179|219.0|0.78|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|e7NqUeKxH3JymXiGMU_cp3WlLmRR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.626|13.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807544|e7OonrCrJuI6kg1rGviBkizkUaXg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|97.0|0.653|5.7|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|e7Qy9oyRHrQzZC4f7ysHHc4BuH-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|184.2|0.429|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601116|e7TuZtlL8ECrLEQO4FiaP97x3XhH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|219.7|0.7609999999999999|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|e7fZ4Vd-h4qlPlh1Ges_31niPJRl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br43C95Cs4H489I257N176Pb100|Cs4Pb100C95N176H489I257Br43|Cs0.04FA0.81MA0.14PbBr0.43I2.57||1.03|221.8|0.68|15.57|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b04281|e7gDRFnrQhmcfew5tipsONhHhsQf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.2|0.8|20.71|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|e7oVVe8D6Qt2kGlkvqCRGDl2vrdT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|183.0|0.75|13.7|['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3-np']|bulk|https://doi.org/10.1002/adfm.201702090|e7qH08Un8mmztbtI_3z_L82P0Iya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.13|233.7|0.807|20.91|['SLG', 'ITO', 'SnO2-c', 'NPC60 OH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NPC60 OH']|bulk|https://doi.org/10.1021/acsami.9b09238|e7qJta2ed1iT3oEggJPLqn9PRBK8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NPC60 OH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|161.1|0.74|11.85|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|e7wqX_Fo69X-CHWJJWc7pJLS86nH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|146.9|0.51|6.69|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.57.03EJ06|e7xP6y3sgPXfMEsu8Hhubgz39JGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.9|0.64|11.4|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'Bphen', 'Ag']|['CuSCN']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr01135k|e87TOaV7VGd_Mj5t2jWojcDD8yJJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.0|0.67|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b07513|e89R_Fw3-sSAhL51Zd5NP5457hXW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||15.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|e8KRhc2cXrrbAOYo2gW-RaWjf6iu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|152.0|0.66|8.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/slct.201700776|e8R8GVaZJR5J1-RisC1o6QmYOei4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|140.39999999999998|0.586|5.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|e8UONxFoqg6ceZ1Z6OawK0SQT5Tg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.922|216.0|0.58|11.62|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|e8kEZtSuPPcTHCxjciFO7rAeCg7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.13|228.2|0.74|19.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|e8vXOd15Qb_gSiOO-F4B30gJfKEX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -C17H30I4N3Pb2|Pb2C17N3H30I4|(PEA)2MAPb2I4|1.5900001695435149|1.17|218.0|0.78|19.85|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'P4N4']|2D|https://doi.org/10.1002/aenm.201701038|e9-L2EHYLrXRdbzaYqxjeHpJLJBr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is (PEA)2MAPb2I4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|113.0|0.627|5.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401855|e9FvdCoENPzw8Z3DRTyibFeGyprq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|173.2|0.7090000000000001|12.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|e9ioQj69RyB8ScMx9qDBFKQVVwAR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.268|69.6|0.6859999999999999|6.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|e9jYXwubtxLC0ucU8INXN2hWIMQN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.0|0.66|14.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b07097|e9q-l3S2NplFoiS9q9GgoP9lFX_k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.01|204.0|0.52|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793292019500772|eA06MtKRFJOASDDVNbm3CSinReUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|4.8|0.17|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|eA1RigroNRDe5ebBc4SlVhs4dQXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.117|194.8|0.68|14.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|eA1npIpO7xJWW6oczJQvrjJNh19H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.0|117.0|0.38|4.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|eA6tltvBmwPjDH1e6KKwC_Ba05Rj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5300001631456466|0.94|232.0|0.67|14.7|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6tc04510c|eAKIKEpMarhonVA5hh4iRYQr8wI4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.03|207.0|0.54|11.7|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|eAM4HpUHruyiV8t-D8KZMVIj3wJg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.943|181.0|0.63|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.07.036|eAg14PymAeNfOJ-C-ZCr3UmYMk_E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|142.79999999999998|0.625|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|eArbk92BUjJclYsvGWJw1VgpN6v1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.6|155.6|0.45|4.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/ab28d0|eAs-mwhPHT9bolYzlPRoP4GJBgbD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|221.0|0.42|8.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/C7TA09193A|eAtN907RkydY95a-QrOZV8styYn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|0.89|188.0|0.74|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502429u|eB-1OgaI7c1srBKO9kmIQVjvGhJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|193.5|0.42|7.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|eB2E0gk1SKBtGfJ7TvwvnDL2Tbfr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|158.0|0.762|14.34|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|eB2xWTR7ihtfsTLIUZ_mCFsBQYAH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|205.1|0.74|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Tri', 'Au']|['H-Tri']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.71306193|eB4_aMlfAJubLi0kfHiMDrNP-Qz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Tri', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|147.6|0.5579999999999999|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra09976a|eB7syImjJo7IqWCxIgU2VXR5CwJO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|94.0|0.7|5.0|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['WO3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8cp00645h|eBJIK-DtbSij_4JZ85kaGdLoAtlh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|202.0|0.706|14.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|eBMIqipgZqGFC60Zgg2R1oFoERiT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|213.8|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|eBMc89RE7KFlJYDyGbjP4aKGIrAb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|150.5|0.65|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.037|eBQ-cbniwDe1vX5bFEBBDMoCUCKJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.3000001386204838|0.736|235.0|0.79|13.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7NR03507A|eBQ5rqi8fLlPvR7fWWSXDSFdg8aJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|208.1|0.74|17.01|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'mDPA-DBTP', 'Au']|['mDPA-DBTP']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|eB_Yw1wbJya5RSGBz6nH_T6ZwHI2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'mDPA-DBTP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|0.3|0.252|0.004|['SLG', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|eBdyjyQuMeU2RL4vX35LYR-8_liJ|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.124|182.0|0.503|10.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|eBebgO7Ef2EZN7F9mdthXPWHS_7d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.01|3.0|1.3|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|eBhGYVgX3PFAHGHCouj4wUIxgo2G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.13|33.1|0.424|0.7|['SLG', 'FTO', 'BenMeIM-Cl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|eBm091THncibKXhFmntNMYUKvh5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|180.9|0.37|4.01|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|eBxwfeWhCQA-IUfF3VgxsJUcyb2z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.888|153.5|0.64|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB-DCB21', 'Au']|['PTB-DCB21']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402033|eBxxLHAr7mehocEoYG7pg7CnYA_-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB-DCB21', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|205.0|0.74|14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta09249c|eC4Y07EEv7eQDroAO__314SPPimN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|225.8|0.83|20.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08995k|eC8z0VSvKTP93Hn-JHDIQHe6Ji__|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.6|0.66|13.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201502741|eC9bRZsZ_s6Mr_AvLZIa6d_HbA1e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.8|0.7909999999999999|17.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.043|eCMNBMbjbubT6cp8tT11cGrULIUD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.61|12.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|eCT0thG-wxeZABq3a1d7J0emFDht|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|165.6|0.626|9.62|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|eCT1ZJoMhrVzU4-_IK2iZvHD87rL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||0.92|213.7|0.72|14.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc09905g|eCT57EzfCMGmwedyRchHwCaR7EWM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.023|10.54|0.797|18.96|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|eCXCgKhw4hHgMRjN8OMsijE4mn5A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.12|243.0|0.77|20.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|eCXEpKM1oMP99ZJQ1gMYWwCPGAT4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|213.0|0.794|17.9|['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['F6-TCNNQ', 'TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/c8se00218e|eCj-F28Zj-1X_Ey5XymqwS3C8cXk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|205.2|0.63|11.53|['SLG', 'FTO', 'CZTS', 'Perovskite', 'PCBM-60', 'Ag']|['CZTS']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.180219|eCmEOl9wNnCguSDgOp8Onh3JJh_Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CZTS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|183.0|0.57|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl5006838|eCx3FwLinDpNZ7vPgw0Jnv_hGX2k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|225.0|0.73|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b01783|eD-D6Odw50qUsLzK4hoQP2PfVF19|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.258|100.3|0.638|8.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|eDAgrhRNdxyHfb5cY_f6VL2ShVHk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.75|191.9|0.63|9.07|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|eDB-G4YiZOzCrTnf7r5QnREfEWXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|64.0|0.544|3.8|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1021/acs.jpclett.8b00964|eDGCcUTQSJVxFfBSxe596hDQJZF2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|162.5|0.778|11.06|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|eDQHwITLEEDT9VDXAfDSA61KJ4Mo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||1.02|234.0|0.65|15.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|eDSIB3VdzO-6RxTDl8EaEMBAQ2dd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CsI3Sn|CsSnI3|CsSnI3||0.58|91.0|0.58|1.56|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|eD_rPXT0Yn6UXzmHCPItDPepGgyC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|215.0|0.755|16.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|eDd0B_5y3Q69qYLwpvjg-MSM0_w_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.504|70.0|0.68|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201800680|eDndSqrtvBAZ9J3TbtdRuZUspiPV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.0|0.708|17.07|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|eDvFhtk_1opJ-WPRo9kRvvzNnGZl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|214.0|0.6809999999999999|13.4|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuSCN']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.5b00116|eDxlI0Z8gEpRIvcGZmcAIaNynOQj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.0|0.63|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra01149g|eDyaLUzVl0ptLOirLvsPItlN_p89|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.82|65.3|0.41|2.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|eEF1VtrjvO03YCKlKfsf-y_1FABF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.11|230.0||19.67|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9tc01770d|eEFCuGdm9AgYmW3EA1o-y4Q247wc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.14|131.9|0.782|11.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|eEMFJbkrbeSyuIRqqec8SqHCwQNO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C10H55I27N15Pb10|Pb10C10N15H55I27Br3|FA0.5MA0.5PbBr0.3I2.7||1.03|195.2|0.73|14.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b18663|eENpJSDFCRlfZ3N-QxeS-eiJAT2k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.3I2.7. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.88|154.4|0.69|9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6ra12205a|eEWq0I1-is5koay4DPJUH8mUxlK3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.08|240.0|0.74|19.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|eEhH9V3tPWGP7ZfgOQJKWwsD07kd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3800002537821165|1.4|64.0|0.74|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b02597|eElqrf3Md--bY1lElTTMuE4NK9Bf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||1.308|74.6|0.773|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1002/anie.201800019|eEzbiOb6rRcHrHZIClTM9-fLWH3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.1|220.3|0.72|17.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|eF-JXfcdawoVO-RouffGHRKzbqnS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.168|150.0|0.648|12.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|eF1ZJF7bpTTNl-6DrBLEC_2vilrS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.2|0.73|16.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|eF4mNx-H-7hPoyohkJ4svGPpPp1E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|219.8|0.75|17.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|eF77ahjHrlCeighiWOV1Bo3Jsr0z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.0|0.763|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta10288j|eF9SLP2Dkn24a_Cl5RYvqlKx-Ags|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|245.6|0.8|20.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|eF9fwnjVjtUXa2dm7H_0NXymctzr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.9|0.7|15.12|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'pTPA-DBTP', 'Au']|['pTPA-DBTP']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|eFC9Dl7gm5aSn1TEeJsmBzHDCEW1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'pTPA-DBTP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|eFH_15sHDn8zc7ZvDcKGSbVD8kKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.500000159946712|1.0|207.0|0.575|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201801169|eFOwTREOIGVDNs_92pFGuPUlv8Mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.13|176.1|0.6920000000000001|12.86|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.202001832|eFSgWbzKXz_N7sWVqZRYJV7WDzQA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|157.0|0.8009999999999999|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|eFVoR9rsVzWImaxNiT2DHyeP7mkm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|eFZn2gugIkB3yLeW11GpNoqg3ims|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.2|0.7140000000000001|14.57|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2019.134924|eF_Cq9578s6c7Nu0xV52J36RRSE3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|202.8|0.35|5.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-Nme', 'Ag']|"[""N1,N1',N1'',N1'''-(ethene-1,1,2,2-tetrayltetrakis(benzene-4,1-diyl))tetrakis(N1-(4-(dimethylamino)phenyl)-N4,N4-dimethylbenzene-1,4-diamine)""]"|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.10.022|eF_IoJGsVLMStmUvxh1WF_3u9X68|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-Nme', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.9|0.62|10.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cp05006a|eFb-au0B7bdSj2Zkkdy5ZNBPOVlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|229.5|0.54|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|eFejOS9yZOttxv6mn-gIEAoxkyeY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.1|120.0|0.7|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']|['PTAA']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|eFoQJ2eWUYSYZ31Yzzmm6Ys0mGk_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'AU']? The composition of the perovskite layer is MAPbBr3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.03|169.7|0.74|13.16|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|eFpB9lk43HuNrQrzTqtspu5dOou_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|143.0|0.57|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b09412|eFsQwTQ3We-lbWHwRt7WoUv_-fNT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|183.1|0.63|8.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|eG1cHZmQ4yF_WOI0d5NP7UzNIrNY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|216.0|0.6759999999999999|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-th-ZnPc', 'Au']|['ZnPc-th-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|eG35wYne1l3Yzlc6oH8LG0-Ij1Nt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-th-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.7|0.66|15.27|['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09101g|eG7aruOwj-g3J40R7zSogd6vUerh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|17.1|0.743|1.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'tris-PCBOE', 'ZnO', 'Al']|['PEDOT:PSS']|['tris-PCBOE', 'ZnO']|bulk|https://doi.org/10.1246/cl.160881|eGHnrORbi47CeDVI24YY0hV2YNsL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'tris-PCBOE', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|121.0|0.63|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|eGLL8wAHIrlWsFKmE67spoxF_Ees|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|188.4|0.599|9.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|eGNWjtDxC6h0XkZOA3TpAZdykSyR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|213.0|0.76|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|eGbIEI3QlyQEmgtAl7xnk3bRKzZ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|184.0|0.691|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'IZO']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.12.020|eGepYdMAQkq-49qT1lWOxJn4nc5B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|190.5|0.7140000000000001|15.5|['SLG', 'ITO', 'SnO2-np', 'PbF2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PbF2']|bulk|https://doi.org/10.1039/c8nr05504a|eGgnT1Bp3mBtYWdPGFqqpeKYNfhn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PbF2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8240000000000001|161.4|0.7020000000000001|9.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|eGlcWQqdUTRgiWp11TmLNtyvQhQx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|232.0|0.7490000000000001|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.017|eGsBz0-_ebtMp2ZRVuUzlA4u3qkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|201.0|0.71|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00129|eGwoG_8IHNQ47MYxlqgzqRbWQKoP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|eH2TUXAKgDJZYyGCTptDFJPbHjcP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.0|0.6809999999999999|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-017-1876-x|eH33WDjpQSNXQCaLgabJ89J1dpRy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|62.8|0.58|3.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|eH8Bw5usUABIrPzDMM_LDpniauyR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H20I12N8Pb3Sn|Pb3SnC4N8H20I12|FAPb0.75Sn0.25I3|1.3700001460846638|0.525|107.44|0.594|4.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|eHDmEJp9bH9BZCoPNJfxBpoGg3Iy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.6|0.782|15.34|['SLG', 'ITO', 'PEDOT:PSS-NH2-OH', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS-NH2-OH']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.049|eHGJUWIjWKNoZlB2pHuL7AaPJ_aM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS-NH2-OH', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.07|195.0|0.62|13.0|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|eHKFmak77Zfs42qLD0nJY4lHidoF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -I9K3Sb2|K3Sb2I9|K3Sb2I9|2.020000215394906|0.3379999999999999|4.13|0.5|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b00676|eHLsznNl6Ha45cw1GtOmQsRR12So|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is K3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.831|203.3|0.588|9.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|eHMfSvFbRrzlEWJdQwI_ax9kFfyb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|239.6|0.758|19.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|eHQqMovatid9OnOlWllXARnkHJXx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|151.7|0.71|10.29|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793292019501261|eHUFUGg3guf14hXqddApMmNPZtaU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|170.6|0.635|10.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1021/ja4132246|eHa7K-4g0AZcTZLB0as_nzCeI8w5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.6|0.74|17.02|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['NiCo2O4']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201904684|eHaUwtIDqeivZ3xKb6oqgQnFaW45|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|188.9|0.67|12.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|eHeaFWHYxg-0vLHc_GlmmHvLB3FK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.0|0.72|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']|['SWCNTs', 'Graphene oxide', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|eHfHS1h4hGmmfUx_5VEALl0bRh3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.16|63.7|0.27|0.27|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|eHhYnv3okA89EiUauYPDADIN50rm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.012|8.4|0.51|4.94|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.6b05862|eHo4-otmbE-FXUh9IGkFDyf3u9N0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|eHoR-JX-PfV82z5rh1KwutCmKSsA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -Br9C20Cs5H100I66N40Pb25|Cs5Pb25C20N40H100I66Br9|Cs0.2FA0.8PbBr0.36I2.64||1.08|201.0|0.664|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly(ethylene oxide)', 'Carbon']|['Poly(ethylene oxide)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201804284|eHrHlwcUsrRKgEVRsD24gcEFVdvC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Poly(ethylene oxide)', 'Carbon']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc06290c|eHy7Uzb-ogyM8-XuOeQqr9yZhEA8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|211.0|0.67|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501358|eI0Xq5ptGBEsIasCbAvdpEP0SspS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I10N10Pb10|Pb10C10N10H60I10Br9|MAPbBr0.9I|1.7200001834055632|0.96|173.0|0.71|11.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/C6NR06670D|eI688kTDiW0srnJkSdTS5BH_EFNA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr0.9I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|235.79|0.72|17.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|eIDxIi9FEyhNU0JjXO6-P4EVLBeR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|192.0|0.73|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-OMeTPA', 'Au']|['EDOT-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|eIIcA91l3nBoA7dEijKmPS1VAm_E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|220.8|0.782|16.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|eIK8ljfa8TEfdSTnTetrLBMJ6O0y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|227.6|0.747|17.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|eIOXn6ZowAf891eDyOS14oE-9j_p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs2I6Sn|Cs2SnI6|Cs2SnI6|1.4800001578140891|0.51|54.1|0.35|0.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.09.022|eIOkINe7nMp6Toyj-EeCrIj90y-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs2SnI6. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.12|233.9|0.67|16.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|eISjf5G364ZiUTuBdQm7uSJDvRkt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/srep30759|eI_z58jZsntJiFx53yEMe1xCO5GI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|109.0|0.37|2.6|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04272g|eIn9q_1iBXMe8zdem-P2IHv0uqgg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.128|224.9|0.708|17.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|eIpfYIG0VVc8bQsN0fxxfZ-Mhu74|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.2|0.774|16.72|['SLG', 'FTO', 'Nafion; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Nafion; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b19053|eIxqYNUwPvRV3RUq1eeTqUv7tFIz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nafion; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|188.8|0.62|10.58|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b00520|eJ-_nTVIOgYFrgWTQYCd_uI-QyO5|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|194.0|0.6779999999999999|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|eJ-rUpcE3wIHwXHrOyVnUncv8CdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.0|0.6729999999999999|12.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1557/adv.2018.413|eJ1GpCdIErfRTpKSeOOOmVCC_C49|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|155.6|0.64|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4890545|eJ4cOMnCyyexCd6VMD-GcX3C3Mzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|216.1|0.73|15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201601616|eJdOVGh7fMzXWQEDpnWF8VJ2n4bI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||0.99|180.2|0.523|9.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|eJkzttv9OddWJ9bZ_66mfd9nzP8a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|eJy1i7UGN-rjkNGUbR_oclDCGqKv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.54|70.1|0.789|8.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|eK-z4_9U-NCS28DN0WuSY3D4coIK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|188.0|0.7559999999999999|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b17701|eK0koemXbiAOJH1eZvHGx5piBr04|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|114.8|0.782|9.21|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|eK0pKBxj_VPTBAu1yyteW8kl2KKI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|171.0|0.49|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphite', 'Cu-tape']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.043|eK61NWtuRELowwSv9sTo1PIkVKAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphite', 'Cu-tape']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.05|228.0|0.703|16.87||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|eK6N3oPBv8hJS2fvHoVyp3eWq3J6|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|206.1|0.6729999999999999|15.25|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|eKGGEKE67jMu8372GEwr_Cj4-roC|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.98|79.6|0.48|3.76|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|eKW4Lu9TgHo2p2ePV85Oi6y5f9-l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|182.0|0.7829999999999999|18.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsami.6b11757|eKnJ9z_ObjKk-r5kZDPUtYpYjXl9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|222.5|0.75|17.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|eKtPHZTUj02TZGPqztmTx99-0tRv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|214.9|0.569|11.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01598|eKwOhY-ltjwCEgkpwEN_kNMiHt5i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.89|136.1|0.32|3.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|eL1Jrxm5f2kBCiETsDHp8riY_8Yf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.5|0.71|14.05|['SLG', 'ITO', 'TPA-NAP-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TPA-NAP-TPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700105|eL2Q8vrfqiIwkGLGRG6wlP8L402Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA-NAP-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|204.5|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1049/mnl.2017.0477|eLBAwe6OB6C_M0iGe8wKKt2NVi4d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.06|208.0|0.71|15.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01515-6|eLEEF4GidovGgzyUHLqFl3fCu8cU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|145.9|0.4639999999999999|6.31|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|eLLhSK_rGBx2b71SAeDzBjnr6oNc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|237.3|0.748|18.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|eLPjbuobuAwUp6OW-u5FpAJcpJTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||||||['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900331|eLYIA4ATjWScxaZgUdL9uO-RY2JW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|139.8|0.624|8.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3']|bulk|https://doi.org/10.1038/s41598-019-45374-x|eLdSzvYEGmEIllk14X24Mu4jYPw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149||||2.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/solr.201800147|eLdYc5Lo5cA4wbTsjA6OMDrUOdPX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|135.29999999999998|0.62|7.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNVT-8', 'ZnO', 'Al']|['PEDOT:PSS']|['PNVT-8', 'ZnO']|bulk|https://doi.org/10.1021/am506785k|eLspDnjJvsVjsdg5SCx6Obish3m9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PNVT-8', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.78|151.0|0.68|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/cssc.201402566|eM-gdAfLcqIRnCgrS5j6PRykm3Xn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|116.5|0.45|3.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm402919x|eM15dc5BcVGOcGZvYqYex13gAexd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|224.4|0.595|12.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.024|eM6cUnOAxyK50z-JOTdynL1vlghS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.5600001663445808|0.99|185.1|0.7|12.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|eM7j4sWew8PC79DpvzZM0sKpjdkN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.82|74.6|0.57|3.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703682|eMB_O35nwuQbe4rGXj8rAuPrQBrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.01|15.6|0.29|0.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ra01869j|eMCg_56AVwfso4eAaVypzv5PJy8t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.1|88.10000000000001|0.66|6.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|eMG0lGXUHwipP4CLdBH9XUJB7cbA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.8|0.69|13.58|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|eMK5V-__rScpLWIcLwN9X182LIBD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.73|174.0|0.65|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|eMK5w1GC-4lBZ33thAAyCptPc0GG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.0|0.74|20.29|['SLG', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['CzPAF-TPA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|eMKCj5Lzq_XGDjIDN3Hp8pN99YcE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.8|0.718|14.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|eMRJ0TeeZI5IkR_1JVWv9XYybLy8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.67|136.2|0.412|3.77|['PET', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201800205|eMbEL4flD5RfUskpY-tiwem9QbGN|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.89|44.0|0.68|2.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|eMbwegIkyN4c3qmP1MZepirEg4pJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|150.0|0.67|9.6|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|eMch0xGeq2Jt6WtFE8CEMhR1bHKT|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.073|214.6|0.7340000000000001|16.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06879k|eMdDHJrun5wEFD3P1xartr4vy9Cf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.08|217.0|0.773|17.8|['SLG', 'ITO', 'PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|eMgBm7ZsKXgMD7vtY6YgUo1Qowxs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|231.0|0.662|13.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|eMhKys8tdm4PwAnGTq_S7tUaAMOv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.57|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|eMrktMPfCtQJ7ur02UdJ-9ppnnm1|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H35I30N14Pb10Rb3|Rb3Pb10C7N14H35I30|FA0.7Rb0.3PbI3||0.9||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b12799|eMsXB7DTuZyUqULQQEUrt30SSjab|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.7Rb0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|218.5|0.75|18.22|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|eMtjcmlQbd7q27AY59J-dqe2ymG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|209.9|0.7140000000000001|16.65|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|eN55W323VK1XDQige3_AFyOmJq6Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br57C95Cs5H494I232N171Pb100|Cs5Pb100C95N171H494I232Br57|Cs0.05FA0.76MA0.19PbBr0.57I2.32|1.690000180206629|1.11|218.0|0.763|18.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'IZO']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee02469c|eN7r1IIxnwriT3ubQ8gy0NNoObgF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'IZO']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.57I2.32. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.98|201.0|0.61|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']|['CuPc‐OTPAtBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|eNK3Y0F2HsZ8Kibx1cRR8gEHCX7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3||1.09|133.7|0.568|7.57|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta06719h|eNP7pRKWoalYg5aJPhR7S52iRTWI|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|eNXJAl11oy2Uci_mPube4gT6BQSs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|171.0|0.74|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'PFNBr', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['IPH', 'PFNBr']|bulk|https://doi.org/10.1016/j.orgel.2016.07.019|eNc5KBMqjfGam1WjCKaaxU9yB0wl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'PFNBr', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.264|54.7|0.6920000000000001|9.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|eNn3QEVcxpfbszeLdA7UP3Qjh-y3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.13|76.6|0.62|5.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|eNpqrZashv7OeeQWZDyGuI1ncp5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|190.2|0.6659999999999999|13.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.097|eNwnEBZCXNqd6f347TOtMGzKhdRN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|222.1|0.59|12.84|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'TZ2', 'Ag']|['TZ2']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|eNzTzfLnb-UJKhDEvIHhxSvH64Xo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'TZ2', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.116|145.5|0.722|11.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1063/5.0011918|eOPPlVtEv5MAwrtGrTt7cffhj6BR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|174.0|0.47|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|eOYL9SvRpqsETDyFXHa7Ryid2EUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|141.9|0.46|5.56|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c6cp04793a|eOnlky2fB4kYFPz9FqgrTZLQ9B7l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|195.2|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|eOq1E2ec8N184hG9VE7WcqCVJ_X7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.0|0.72|14.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|eOrhE6mid9aeeQEd7Y9-hXjOuKBc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|70.4|0.39|1.68|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|eP3F_SJs1-auNuO_6cwRfFrM2wSb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.073|199.68|0.727|15.58|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||ePAt-33a7URtdNUycbilWxKMwDs2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|172.8|0.711|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|ePGtIQS9K9qDw5_XV9XZkBavEq1v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.4|0.61|15.38|['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1002/adma.201804637|ePJFWBXQDmOmFXGNw79Mbex9vwwJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.0|0.69|12.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|ePN60q2NdlanDyBrnO2CYqo40Ibz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3300001418194185|0.78|234.6|0.68|12.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|ePT4WPf-vjrjqdZahhtUUaGCqYWp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.05|150.0|0.3|0.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|eP_KNgimyexWz2BuISJ9giqkP1pK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb49Zn|ZnPb49C50N50H300I150|MAPb0.98Zn0.02I3||1.057|220.9|0.6890000000000001|16.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.chemphys.2018.09.032|ePgFIOx0OYHCsGVi9DZToe7r2YXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.98Zn0.02I3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.07|243.0|0.737|19.22|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|ePkFCEdgW5WwlKI2-HGOm68qU-kI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.94|111.47|||['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201902708|ePoPJhyghp6Y8nXP65QhUpaZrYp8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.6970000000000001|208.29|0.597|8.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|ePpN3F5ypFJBkgujMe0wLGMY59sX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|226.5|0.732|16.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.190|eQ-c20MSFLVTU-XbKMxHscFlhAwB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.969|234.0|0.65|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b00787|eQ6xbp9Oxz-gJhoiUOqRBNCzqvQl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|203.7|0.6709999999999999|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00948a|eQFgus5bs063lwwadB4zrwkXKyqq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.3|0.654|13.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-HPy', 'BCP', 'Ag']|['NiO-c']|['C60-HPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|eQH5tEVGb3qRTTcbOmD0V1b3QS6T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-HPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|159.3|0.723|11.75|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201500543|eQIxASQZFi3Lls06He3CLPAGOCbM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.0|0.633|13.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c6ta02918c|eQO-OAG4qCHrEKAoX9O9b-jvugS5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.640000174875072|1.02|96.4|0.565|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|eQRKUv6Lmq7vVWk_siYKjHgcvAuM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.145|114.7|0.5479999999999999|7.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900374|eQSvVTVZ3_zjD8ll5ZSfmGdIPnHL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|1.014|202.0|0.71|14.54|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|eQU6_g2k9ZpZTXrGgSGXpAjlmRdK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.520000162079335|1.06|227.7|0.7809999999999999|18.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.8b10520|eQXwvcUpJ5sS9fkLRBMry6QbdN1G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.972|86.7|0.727|6.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTB2', 'Au']|['TTB2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|eQiSP1pWMHoqkGtkVze1kapsjrCQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTB2', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.06|165.0|0.802|14.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|eQsBze1ErlVEANp0GMHpWBgzFGDj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|143.0|0.64|7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Ag']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201601186|eR9QfE7beKLKRVXSoc4gxYRTltZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.94|152.0|0.59|10.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c5nr04179a|eR9arhy3NdUdcz4XvVaujgB1tWcP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4580000000000002|69.6|0.789|8.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdZnSe@ZnSe-QDs', 'Carbon']|['CdZnSe@ZnSe-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc05517c|eRCk4VXiLK4zFJV76NLeref_ythG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdZnSe@ZnSe-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|219.1|0.5660000000000001|11.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.024|eRcEeKj5fGceeqhQYfO4o5O7p0Jn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.986|199.5|0.624|12.26|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05955a|eRgjt8ICYCNIY1VJZ6eYIktJH1cu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.09|222.3|0.755|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|eRuRo-0mbbDtoA5Qv_MKgoDBzEKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.07|||10.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.12.002|eRwLhxT2uo420DK6m4ut7unpTZwB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.3|0.7|15.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00215|eS1X9wIgyfOw4_okDZAW3cvSQzi5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.2|0.62|11.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|eS4v8O2QD8aXhxDV7Mt11F4MlWc4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.8220000000000001|20.05|['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-Na', 'PASP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01947b|eSH7Y5IS8OCbFvqZpjiaUXKkBrmM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'PASP', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.0|0.76|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|eSHeMCHsJkwZtLa1pNLSHheU-YXd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H464I249N166Pb100|Cs10Pb100C90N166H464I249Br51|Cs0.1FA0.76MA0.14PbBr0.51I2.49|1.6100001716761378|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee03513f|eSOfctk6OceF2M-1RxhSj7O4xsZA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|198.1|0.6859999999999999|13.76|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|eSPD37vSsRfkWBxPhz_WlpB6qehY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C20H103N37Pb20|Pb20C20N37H103Br60|FA0.85MA0.15PbBr3||0.862|24.8|0.6890000000000001|1.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1757-899X/303/1/012002|eSTqKgSCkOxU4l763k69lwnPCuzl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.12|167.0|0.57|10.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.10.003|eSiZzVceXty4yQGZJmImuoM2Jcv5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.943|215.0|0.62|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201501460|eSuol2lh8t30J6ysn4BbXfY4UvEL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66|||||3.41|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|eSyvlSF61LysQB3UIyLJ2-bYKlAF|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -Br11C16Cs4H83I51N29Pb20|Cs4Pb20C16N29H83I51Br11|Cs0.2FA0.65MA0.15PbBr0.55I2.55|1.850000197267612|1.11|219.4|0.606|14.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|eSzxls3Nv9D12bDglRQkMjAkygni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.65MA0.15PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|136.4|0.42|4.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep33649|eT-BxIbJa0jB9pJPAxtPYWdb8DiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.525|77.2|0.335|1.36|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|eT0z_hAu3gjNHJTNTorUHt9Qn9PD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|195.0|0.67|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|eT1aADsk6lKU8M_nKtfHmV6T3wa5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|140.0|0.74|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|eTBRyn8qwZ0E05GqaiioYwdUp1Oq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.0|0.69|13.5|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.024|eTISXeaj3Sl8BWTj3j2G3P2XqJ_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|161.0||9.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402815|eTJCV1r9ZGDZZV2GmMvD2U2qj2SO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|198.1|0.54|11.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|eTKrAM2XrnJSvvDGRxWAtooHQtGk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|220.0|0.72|13.5|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|eTTy1taNSv-Tj4AlNmASgOMAqW2U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.5|22.0|0.26|0.25|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Eu']|bulk|https://doi.org/10.1039/c9ta00551j|eThL5y2UksisfKlZDQB-e_VoArNR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.81|190.4|0.54|8.33|['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|eTmcaooHk2EB80UpGEzwAR-_aK4b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.6|0.73|16.26|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227584|eTp4rqP3m9exO5mmzGfbgiiGg1wr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|149.0|0.72|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.044|eTreskWagsZs4-lg5u6evdJRrzaJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.1|0.5|9.46|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|eTs-79hHMDF63lwCQjIguJ06NgK-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|234.0|0.81|21.2|['SLG', 'FTO', 'TiO2-c', 'Ba(La)SnO3', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'BaSnO3-np']|bulk|https://doi.org/10.1126/science.aam6620|eTt11IiuGaMbsEn3zRkTXP2rzxaT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ba(La)SnO3', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.68|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b12137|eU3P68cr9lDuOVBxn8WHu_IEgicN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|95.8|0.4|3.45|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.08KF02|eU5z4Ems2zdS4LhOh6qQ32Vv_Qui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|189.84000000000003|0.672|14.05|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|eUAuTMNTKVRj9GnfK_H0JttWQgTQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Cu-CFNs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.77|18.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201702157|eUOlRJJCux8x5zdtViV_H1IkK3E-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|eUYNVYbkLIUTJj_UFUKEH9RMtCuK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.845|93.8|0.452|3.58|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1007/s12274-015-0711-4|eUaQjuobr-nbnMxWVfWH6Fb2d1ci|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.69|163.9|0.531|6.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153272|eUbtezaA4yQvsf4GA6B85CidDM9u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|221.7|0.73|14.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.04.019|eUpxVE-FwmcslARlb2cmnsiU2qN7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.0659999999999998|224.7|0.682|16.41|['SLG', 'ITO', 'nTi-MOF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF']|bulk|https://doi.org/10.1021/acsnano.8b02079|eUrs2z8pFtKU4QMfQc1cD-hFMyWB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|229.4|0.812|20.18|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900529|eUy80aQTSF9aYb7xXFiD2Q7bwDUT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.126|234.0|0.7340000000000001|19.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|eV9EXNd18R2tmKh-_iV8d92BNTGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.5|0.68|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c8ta10892g|eVAXXSGrP7D4yjo_SgFuQx4kQwPP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|1.12|241.3|0.76|20.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|eVC8czvAkzZ2NnTgupI7rNgeNvJp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/srep30759|eVP-sS2TkFtwJaB5aooRuNCMKSbx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.6|0.728|16.44|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700038|eVXfERs6O194xqJfgPb-Y4CDv9Br|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|183.7|0.74|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2017.06.079|eVYg9SbiD79P1aMQcGB2skB1mMwx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|17.3|0.69|1.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.037|eVby2Aw3eCDBI4oEifFryEPr8vV4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br3CsPb|CsPbBr3|CsPbBr3||1.602|76.2|0.8340000000000001|10.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']|['CuCrO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|eVspn8CwOjI5Hkl92ahsB22fafTw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|eVvxeSF3deUCmzQOirQQZ9O_qH4k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.0|0.73|16.6|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.07.050|eW1LTjwZnrO1ypdBcyB2gO2riaZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.5|0.586|10.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2775162|eWfEc-kbVxR4h2d59FGVEN--JSBX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|182.0|0.6|10.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta01839d|eWfMu9GUvQVB35K7WrD1PfoNx7ZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.039|246.0|0.6859999999999999|17.28|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.153730|eWfcslhubwn2YSRBBgROdqgOME7y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|191.9|0.49|8.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.02.011|eWhMP6SrdRxsV5t4ujWdRlA4Fdp9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.113|231.2|0.774|19.91|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|eWlWn-nS0LfObQOpScOK8L1oPoDJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|208.93|0.725|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|eWsJiQXa2nZEYWo586v1kN-wqxVO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|179.7|0.71|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|eWssFBdJ1D2gvpjmLLdM6l0Q5iq-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.004|229.0|0.67|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700872|eWw11gY-KWBV1gDf21QQUAOniWMX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.355|52.0|0.79|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']|['FDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|eX-PhVEd9G6PYOeEKwQS3P3GuO82|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.15|218.8|0.7440000000000001|18.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|eX109cKaG5A-h2G8QhZZsKjD7xTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|217.0|0.6|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1126/science.1254763|eX3xzrBCwCu8i2L0pFXi6HnBa9XW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.94|212.8|0.69|13.89|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1674-1056/27/1/018804|eXAyZeBtObSK4pmFZUedR13bYclS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|57.5|0.679|3.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01202|eXE4AUGa8pdriBkYHk8t2Gq9ZvbV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|146.8|0.48|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.037|eXKfAXZDjsBmqQ8TecuHEZpe85ET|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|213.3|0.7859999999999999|17.68|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|eXQBlKJrIM1SatEIgz1PtVV9MtCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.065|149.9|0.52|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|eXicuehSX5i5m-WyW6-UcjBYbr48|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|214.0|0.55|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.028|eXjyIeuwYhNnpbceuJ0vQLfM6s-j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||7.0|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1557/jmr.2017.264|eXl9ynXUGe49C0y_c53PyBHaGA5f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|160.5|0.59|8.24|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|eXrB-mmI6qjmezCrnSEb-HzOu4dQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3|1.5100001610130236|1.01|86.89999999999999|0.72|6.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|eXsce8MtihrnrBebz34rEnK0CyXq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -C6H31I15N6Pb5|Pb5C6N6H31I15|(Ace)0.2MA0.8PbI3||1.128|220.1|0.71|17.63|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|eXyhYlLQKrB2JAIZXyvi32gSBS6w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|174.89999999999998|0.57|5.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|eY3q_mKVUfDM3fhbAAKof-ICnChm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|176.0|0.596|9.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|eY6atGpfbJQBezQo5BJlyTZ463jH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -BiFeO3|FeBiO3|BiFeO3||0.77|75.19|0.53|3.04|['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']|['Graphene']|['none']|bulk|https://doi.org/10.1016/j.optmat.2018.07.071|eYD2UhbztwinXxCA0pJidjZPgwsb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']? The composition of the perovskite layer is BiFeO3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|136.4|0.63|7.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/en10050599|eYVRdMCf-pZELuzal2xK7fYtCWAt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.06|194.3|0.7240000000000001|14.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|eYXoYIEcb-7IOkYbggwIiYUM_u4S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|170.0|0.75|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.011|eYljz43qpnh4QfvNPrcY0SjCwt3i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|0.8190000000000001|211.1|0.583|10.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|eYr3T1tqFwmh_mQ9kf69JFc9Kh0q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -O3SrTi|SrTiO3|SrTiO3||1.1|32.0|0.25|0.88|['Pt', 'Perovskite', 'Al']|['none']|['none']|bulk|https://doi.org/10.1063/1.4766279|eYroUsDxv0DX-6gAJNHcczZyrEJc|a perovskite solar cell with the following device stack: ['Pt', 'Perovskite', 'Al']? The composition of the perovskite layer is SrTiO3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.015|233.5|0.698|16.55|['SLG FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTX-OMeTAD', 'Au']|['BTX-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/hlca.201900056|eZ6SOk47CWrWDqChWWOtNJlv7DPC|a perovskite solar cell with the following device stack: ['SLG FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTX-OMeTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.06|203.2|0.61|13.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|eZ6lFSO22LXCTTk2XSLlrX8-lguV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.4|0.77|17.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b06788|eZDn4Yw0hqXVn_LlQdTrah2Yt-pj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.841|290.0|0.7440000000000001|18.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0278-x|eZJOjxrIS9Q6wAyFJErtRwRb0Jiz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|221.5|0.7879999999999999|17.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-04342-6|eZJn91EaUwpHS2eH4HZXDRKcIGp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C44Cs6H239I102N69Pb50|Cs6Pb50C44N69H239I102Br48|Cs0.12FA0.5MA0.38PbBr0.96I2.04|1.7200001834055632|1.15|172.60000000000002|0.6629999999999999|13.16|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|eZSq9H9-LCSlVGcsbDydImv0YfnA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is Cs0.12FA0.5MA0.38PbBr0.96I2.04. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|129.5|0.73|8.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PDPP3T; PCBM-60']|bulk|https://doi.org/10.1039/c4ta04482g|eZaa3MpX_ZFON7P6bNw_F5lcxR4w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.0|0.732|17.6|['SLG', 'ITO', 'P3CT-K', 'CuZnS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K', 'CuZnS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.inorgchem.8b01030|eZoG4IYQTjibCl-ysQHbkABnnb5Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'CuZnS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.0|0.625|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05352d|eZsVrfkdhiR3v947CmLZx7rF6Sua|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|164.0|0.473|8.2|['SLG', 'ITO', 'CdS', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800056|eZt6KAwtkEaSUvwx4maPn7r384O-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|138.0|0.51|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11144|e_3JXNwJ_U54RH54wSZuN6xr3ybw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|202.5|0.73|14.5|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-Na']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|e_56wehnbqXrIrxeF65oN7R4dUem|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|214.5|0.711|14.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|e_9wdAbhzL28nndqNBHzf0kg-Kto|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.0|0.584|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|e_ELzL605hjZsTh1etOKDGzkEUXr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|1.8000001919360546|0.38|5.4|0.35|0.0073|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c9tc02181g|e_PD5WGE2ljaNMzKl2sYStZ1dXi8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|200.3|0.608|12.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00948a|e_TtnP7UEf0-gEkeDinyiRBvBQwH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.984|195.1|0.728|13.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2020.110553|e_Xex0MgMnujNjSLewQyjnkclIrI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.07|213.0|0.74|16.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900789|e_aVtb1J-gsIGXbk6lktgvT0kpPr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.0|0.7809999999999999|19.08|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|e_p_sZeMDlwWYvPCnHTxpkWkfVQT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.128|213.2|0.752|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702379|e_yWlHtab1-4lVATSxPzxcKPqtK4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.338|71.0|0.77|7.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'Carbon', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']|['Carbon-QDs']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1039/c8cc04271c|ea3Z2XOXWynBc9FqFZp_WD8a7rte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'Carbon', 'Carbon-QDs', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691||||15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-DMP', 'Au']|['CuPc-DMP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11426-016-0393-5|ea7CjEhCnmI3Bkmvty2hMwoDMfh8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-DMP', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.99|223.2|0.748|16.12|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'C60']|bulk|https://doi.org/10.1021/acsami.8b18807|eaOX_EZK2Qgj6cWhPTuZnZntxPOZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|188.0|0.52|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TC03077G|eaQmfu7EADIpbqHu0yZEPE8AHg-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.06|200.8|0.76|16.16|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|eaiFDIxu0KP429lLB5qSVjIOmRcs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|125.1|0.56|4.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.1254763|eamUKCLSHoDGskLA-zKpiZztphM_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.122|244.7|0.82|22.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|earuCm5AHBF76MOw51AWzw9KCIEs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.0|0.73|16.5|['SLG', 'ITO', 'N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15147|eaxbYh6pp70rx6vg7odGu3l02TGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.0|0.586|12.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|eazeqEfqAuqQAmhxti3s9p9jY4Mu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30InN10Pb9|InPb9C10N10H60I30|MAIn0.10Pb0.90I3||0.96|216.1|0.77|15.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201600626|ebDXk2d0gjI6_amC_MsEDfE0o28D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAIn0.10Pb0.90I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.9|199.0|0.76|13.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|ebO9__2kPyhzdwrcPWiaBkw5T_l-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.68|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b02145|ebTt1Tpjnr9DXUug6KtXgyNxTTqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|182.9|0.638|11.09|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c8ra03119c|ebh6FmR2k3dGabEWc-rgADzpDgYv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.443|60.7|0.772|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|ebhx2G6JPmk2ZsHaBDIPZBsxdQEF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.5|0.638|12.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1364/AO.59.000552|ebjSIDGqt8ppOx7y3IxHPrdgTUDs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|206.3|0.87|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTEG-1', 'Al']|['PEDOT:PSS']|['PTEG-1']|bulk|https://doi.org/10.1039/c6ee01337f|ebk5b6Ubz7ECuiz4e3GAJduR0qte|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTEG-1', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|243.6|0.738|18.03|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|ebnuthis3s6vMbt2p8RXoLUlCmo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.1|0.6|11.77|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|eby39bMw5YL0cFP4346ncXr221f3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|185.8|0.56|10.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-2', 'Ag']|['WY-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|ebyCvG4qAb__lsHb7PtTDNhdObDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|194.85|0.7|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|ec-B7pXFGU_GJl86W3DdlMWPp4Hg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|196.0|0.78|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-OHex', 'Au']|['ATT-OHex']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601674|ec2HRXWaGxgAXw_MmDISHHt2DXWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ATT-OHex', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.052|197.7|0.687|14.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|ec3Em44ZPjyQspHNLIVHKN8YOmwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|147.89999999999998|0.596|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|ecDrfYOVp4JXoDYIYdUqswMw2wwL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|164.8|0.441|6.22|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|ecNi6wuCReMwy_vGskkk7RLkgPLR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|176.0|0.73|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|ecQjrwItPbQnXP5-0gk48N19ToGZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|183.4|0.62|13.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4916345|ecTCBgSafDJBwGtG_A7xFiYbbYYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|184.0|0.7|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'apv-EC', 'Au']|['apv-EC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.09.165|ec_IeUhEe0ag9czpYLGFIShh-s05|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'apv-EC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.06|231.5|0.72|17.66|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|ecoJkopteb65Y-CDCqL3egnKgF2f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.633000174128654|1.16|175.7|0.684|13.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|ecwzaf3ERCtGvgv7Ph7IH8lJDoXL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|188.0|0.71|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00989a|ecxfR8zvfG6N2TrLqDLzZNuJY58x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.1|0.64|13.56|['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Nb2O5']|bulk|https://doi.org/10.1016/j.orgel.2018.06.038|ecz0KhAL5S8HZle7-tK2a5o1WBNj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||8.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|ed5HxRiZ3VLhhJUZ_FvgvRO6Pz4e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7120000000000001|79.80000000000001|0.626|3.56|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|edIfwJJLsShOSLyolzr432fu38UB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|156.7|0.52|7.41|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-np; TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.049|edPRrqIF5v3QqsoUCm7sP74SSdTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-np; TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.13|235.0|0.72|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06709-w|edTnNdxtXpxjcj5LEt1xUyYji_ds|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.192|140.7|0.675|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c08006|edW-w1yN5snhuW-N_k6xEf0ETauy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.8|0.57|11.9|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|edeBAtrHunVcWUbgP_Qjr8yLEDaw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.46|196.4|0.72|6.55|['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['LiF', 'PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|edelKgFNnMxa-dP93fXbw_QxWh5J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.7b08561|edr2uG2LpkfDl-p2lPWaaFUEg1de|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.94|209.1|0.672|13.24|['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|ee3Q5H4YdSUjA6GzAYwBNuigt_-g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|89.0|0.66|5.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|eeHfDV7n0bJA_9KIbxtL40cukKe7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C45H127I65N28Pb20|Pb20C45N28H127I65|(3AMP)FA0.6MA2.4Pb4I13||1.09|123.8|0.7490000000000001|10.16|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|eeHxCjnUtcM-cCI6k4ey6CM5NywN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.6MA2.4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|206.6|0.7440000000000001|14.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|ee_50eWZbvLOBEfnRdWxtOXkcEet|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|202.0|0.71|13.1|['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'TIPD; ZnO-np', 'Ag']|['CuInS2', 'Al2O3-np']|['PCBM-60', 'TIPD; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.04.007|eefg4YJG8GX2sQ-LirZRQw3zpUJQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'TIPD; ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.02|213.8|0.65|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc07785e|eehZzrqyz5bCKYgkm9OdSix6CeuJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|184.9|0.634|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00125h|eetzGejCGg_sOWGihZst8ARZR0lG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|151.0|0.75|11.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|eezqV6bnhyWr6usozIgwKIWhX0EJ|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.069|223.0|0.544|13.0|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adem.201901217|ef6AffV3qEpHwQFdbv9QqrPWO4pY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.992|150.6|0.4479999999999999|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|ef7Q8bt4Hn4z6Wscsoq2IGZxmoXu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.1|0.76|18.73|['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SDBS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227584|ef7smFVPHodu1thMUqYpAQz29nRE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'SDSB', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|113.1|0.41|3.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcrysgro.2018.03.030|efAuh9BbFPztSaRiwy_S7jZIq411|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|148.8|0.55|7.04|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|efOMybKu0HSgy3Tz8JLTbMpQQg-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|118.0|0.64|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|efPh5yL8Nlc2TOG9JiqWibKe3z7r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.866|38.7|0.562|1.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|efTNdFbBIh5gJ4eiRcWdQ_-Ex8lC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|227.3|0.63|14.21|['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Li4SiW12O40']|bulk|https://doi.org/10.1021/acsami.7b05146|efVz69Xiu6opV7JerbVlZox5fBly|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Li4SiW12O40', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|1.12|200.0|0.73|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|efaKeOPOhfx4u3iQgzeuHpURo-CJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|192.1|0.67|12.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|efcSdCbTkDVumzqtBdXVewpnle_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.1|0.63|12.87|['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00098|efez66alPJ2Y4-XoqlciU3pfOZAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|202.1|0.535|8.62|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|efgiAhdNo9ltyy5zxD3CfwGVh986|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|222.6|0.77|16.27|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/c9tc03684a|efrMibqkWjj6ynIDCwzGXkSwKOUo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9||1.1|209.1|0.701|16.13|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2910192|efyCOpW7V7K7XPDNc_pxoetF_F-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|201.0|0.711|15.1|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1021/acs.jpclett.8b00964|eg0PtkmHWGRgiBAMmQfuAi1irC3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|191.1|0.74|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1002/adfm.201806506|eg9qtYGUPzMWcSR8c6tV4ICxYXpv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.0|0.62|11.7|['SLG', 'ITO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1021/acsami.8b11049|egGe773aUt23c9srBPdmbOxWe6jL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|207.61|0.66|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|egHoVbYv_UCmMq4QVklpEQq8C-F_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2900001375541723|0.81|264.0|0.7140000000000001|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201605469|egLipaCw_5WchA_fOWKGx-HI-Iwq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.11|233.0|0.77|19.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|egMAh3bQ78F37p4z7yIb6o83N2Z8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -Br3CsPb|CsPbBr3|CsPbBr3||1.11|95.6|0.347|3.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|egTTNNHuMD3Hd37vS8yujKQvlJvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.05|214.0|0.7709999999999999|17.2|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|egTcInFZ5awjUJuHxsqYqe_x9FTY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|215.0|0.49|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|egZyujbANLO4FRZkst1IEeuX2o6L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.0|0.738|16.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|eghF1I_C914FyOJE7VqsgnD8mLi3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.638|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|egmSdvy3nITZcWTTcrMBYrfgXCVF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|194.6|0.68|12.75|['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|egmtR5clD1Csv4JtV-_u2VO3XGpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.14|228.0|0.6629999999999999|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|egncD76SHX-v2PREVydyhoazV3_L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.085|229.0|0.7|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/ab938c|eh-LfPnUc2G_VeValbadNeZiLFrh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.07|185.6|0.7170000000000001|14.23|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|eh6nO-9ZP-ETfZlYeAY3LZPD61GN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NSn|SnCNH6I3|MASnI3|1.280000136487861|0.5920000000000001|177.0|0.441|4.62|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201705998|eh8ZLZOm43NcI5l9PHxvzMKo7XB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|161.1|0.65|10.91|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PTAA']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|ehCI3iCV5ZS9IlKtRJ9K_2wan5ut|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|130.2|0.65|9.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|ehMwKy-0CPn64-G3mFxW2jE1SHrw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.03|202.4|0.6559999999999999|13.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|eha4uxLyg4V-BHawxf3x_2A2elPc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|172.0|0.66|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|ehbHZbg4QMSKOTlqoyDKo_A4Wd8G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|193.0|0.507|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|eheiHSphREcvtkX4j49xoItPF0Qw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.5219999999999998|73.5|0.843|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'CISZ-QDs', 'Carbon']|['CISZ-QDs']|['TiO2-c', 'TiO2-mp', 'Graphene-QDs']|bulk|https://doi.org/10.1002/anie.201801837|ehpOHU8kp7O-2vM9JERiZpnVdDTN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene-QDs', 'Perovskite', 'CISZ-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|173.0|0.63|10.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ra17316c|ehsPVkAU13Fp6r_GPrrwz_SZMZpk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|0.58|37.400000000000006|0.5920000000000001|1.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']|['DMF; I2; PVA; TBAI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1362889|ei83dhDg4b4iPY8u3Yo6I5YrBSL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMF; I2; PVA; TBAI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|178.2|0.45|8.3|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|eiOQ_u5Z6-RxqgwuwUlo7Bp_XokA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|eiPPOO7g_gWC8b7KMH47_AaFni88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|226.0|0.71|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/aenm.201502027|eiSF50rcqaTIeVhWudJUfCMOUZEB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|207.0|0.77|16.24|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-Na']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|eiTcbtWyMdSPuplnLEC42Ec4fqxU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|55.5|0.413|1.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp502696w|eiZBe7dwWpFNDPhI9gZjAZxS5FX7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|206.4|0.62|12.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|eiZotwR4MRCwkiJQkKzBiBbQ1BEY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|52.0|0.71|3.1|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|eib-mV_ks_-hp2pYO8CYULd2ZipM|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.3|0.727|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.108|eidFkTPfBYFdIhlSpJitF586tzX4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|173.79999999999998|0.66|12.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201404189|eidGvS0jkTvzC8AiwmHR5A79MwtZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|122.3|0.386|3.78|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Ag']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta11238b|eimafQdHezFOoMjj57lEmW22IXOo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|221.0|0.68|14.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|einmN4nrByq316wGTeoRsbntcsrL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.5|0.743|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|ej6yHgM2fkDVoZyMPUjlhXj6ZqLj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|149.1|0.4639999999999999|6.01|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|ejIR_O7sUUDu3ZB6CNZy4J9sA8QO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|211.0|0.68|15.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|ejPfLW76eMRKQMm5DHIxjre21haS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.06|225.5|0.753|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|ejRuzJ0y_Xf1xKoF78Za87FgS4ms|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|215.1|0.71|17.87|['SLG', 'ITO', 'ZnO-c', 'Hexamethylenetetramine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Hexamethylenetetramine']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.011|ejV2kDVTR2xvEkKzlJdImfYOO413|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Hexamethylenetetramine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.0|0.675|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|ejYKREkD3dnyIhNqMG_stByitCaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|229.0|0.79|18.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|ejdzTJz6NFllPIpLQko6a8Lc-Sze|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55|1.5900001695435149|1.05|226.0|0.73|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature25989|ejj2sjs0b2EbdW9kI5uN9ym7uIp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.88|160.0|0.77|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|ejv3VQ1xtDxSRhRSNe4Oyx94-7d1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|220.1|0.65|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'G1', 'Au']|['G1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800809|ek6Kh9k3TkNsWFMW28rrCb0sKCgt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'G1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Cs4I15RbSn5|Cs4RbSn5I15|Cs0.8Rb0.2SnI3||0.43|87.89999999999999|0.45|1.7|['SLG', 'ITO', 'Perovskite', 'C60', 'Al']|['none']|['C60']|bulk|https://doi.org/10.1039/c8qm00159f|ekBoDp6POGte4IYQJLlMNbQRlbJ2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is Cs0.8Rb0.2SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.77|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.09.293|ekDpUl6Om4FQRQs1lfroGQE3vEzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.05|230.0|0.69|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11426-016-0393-5|ekG63TQ54rpwA_w4IyON0DERrhzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.55|55.0|0.77|6.44|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA', 'Al']|['NiO-c']|['ICBA']|bulk|https://doi.org/10.1039/c8ee02575d|ek_42R3YhDfOIVQvw2zGENndqk4G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ICBA', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|182.0|0.64|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene']|bulk|https://doi.org/10.1039/c8nr04441d|ekmxTNm2KRqjl9-SujZi4hXXEu62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|201.7|0.765|17.9|['SLG', 'ITO', 'VB-Me-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-Me-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|ekp29Vap2ShYZGRqBnKY07RLZNQN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-Me-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|160.10000000000002|0.35|2.8|['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'Al']|['CuI']|['PCBM-60']|bulk|https://doi.org/10.1038/srep33649|el-vO0Mgn-iCfCFT7DV8EHO7r4NF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuI', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.1|0.79|15.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PTAA']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|el4eGpg-KOPqt97YWdizeC0Yjd9J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -C34H129I60N23Sn20|Sn20C34N23H129I60|(PEA)0.1FA0.15MA0.75SnI3||0.39|117.5|0.6|2.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|el5khIUZ7Ko-SqIgk0mLwz4fQTQ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|215.0|0.685|16.1|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b00900|elOTE2lA8pHs9XMNM7UxJBn5P5u2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|150.39999999999998|0.6629999999999999|8.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|el_de2jLLtqE1lX8cbaP9iIOATZi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.94|167.0|0.53|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']|['CuPc‐OTPAtBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|eliUbveEUa_8fqBAT80tPlfRPAwN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.03|209.0|0.648|13.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10827g|elighCY3e6Bi1QE9RWvUUTpnbTgH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.863|149.0|0.69|8.7|['SLG', 'ITO', 'MeO-TPD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['MeO-TPD']|['C60']|bulk|https://doi.org/10.1063/1.4889843|elkcQzkqgsTb5B2S33e3O4g44Pak|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-TPD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.08|166.9|0.75|13.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'ITO']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|elzTFfo0x_oxn0Vhx4DEbelxTjWe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|189.7|0.72|11.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA3C', 'Au']|['TPA3C']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2019.08.036|em-p_2Xn6v-hatSmf54yzCYUnOeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA3C', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|223.6|0.738|17.64|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|em-zv6KhL6EFs6PzXPsE8HpJAHHz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|154.0|0.588|7.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5nr07457f|emSW3b5CI4a9DuI15BIa1TYqpNKc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.0|0.727|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|emXnfHQ0iyDVYvAUiWT94f1Plf_z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Pb4|Pb4C4N7H21I12|FA0.75MA0.25PbI3||0.971|237.0|0.65|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00094d|emg9WzTruaYdxjjSbpa-jobHE4rF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|63.2|0.36|1.1|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|empIqdMy9KcoBOuhFW5qvGcLU0tz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.0|0.7070000000000001|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6nr01010e|emsa6ANr0sNP5ruNkt0kyIgOe2H2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|178.9|0.68|10.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|emvaJUjjocS10R-qSjNnI5LBVc_Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|184.3|0.73|14.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.01.006|emyGFZdfVfuViiiSbFCZtKbx7JOn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.888|81.5|0.54|3.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/am.2015.86|en-6pEeGCJgPyqQE642rWzICHHOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AU']? The composition of the perovskite layer is MAPbBr3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5500001652782691||205.0|0.73|13.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/C6TA05095F|en-xheM3Zgn3h_bS5CWcOLRn6NwZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAPbI3. -Br45C96Cs5H495I255N177Pb100|Cs5Pb100C96N177H495I255Br45|Cs0.05FA0.81MA0.15PbBr0.45I2.55||1.12|213.7|0.77|18.33|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b02624|enAJqKZb_2f7W54gdFBJBRbVenIW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|142.0|0.55|6.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|enCKavp9-WpNYT1CQBvaKhRqV7O-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.11|227.0|0.79|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|enDd9wOiXOD48hWbnUB6zE2yCn1r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88||0.606|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.002|enFhkNavx5TSdGQ7I_dJJfld-4fC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|160.0|0.67|10.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4nr02065k|enGvyWg6bpgUXNqSb-cTrEbn01l7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|238.0|0.659|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00697|enJ5shCjcBo-weEMjRkaN1D2I4h1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.0|0.742|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICTA', 'BCP', 'Cu']|['PTAA']|['ICPA', 'BCP']|bulk|https://doi.org/10.1002/adma.201700159|enJ8_gVksLqNKV9S1Y-XdLe0mBbw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICTA', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C36F4H68I13N8Pb4|Pb4C36N8H68I13F4|(pF1PEA)2MA4Pb4I13|1.6000001706098266|1.015|167.60000000000002|0.652|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|enK7JgYUXN9P2Elaasn935vSTnsP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (pF1PEA)2MA4Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|235.3|0.785|20.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|enO2RaoyFqcFoOUi1EegzMtjd5cy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|11.2|0.42|0.042|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|enR2CpfAvaGgk8oSC8u3nZJ3SpBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.1|0.735|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|en_KazaF-02PIOPUW58Vt011BkK9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|180.0|0.68|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|en_XBDSBOOyxIvC3bxQyKIS9LAnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.72|142.0|0.61|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|ena_w77Puyacp-mZm3xR_i3aoGJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.2|0.59|12.21|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|ennePEFhG4a0hzcYBeHF5XPV54Us|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.55|164.0|0.58|5.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|entn6AL27lTNq3yA55u8Ohbk4YOY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.0|0.58|12.95|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2019.104285|eo3qf1LdbULwN_YKZTI7BHuf564V|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|164.89999999999998|0.665|9.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|eo7QPde8HoHV1D1eTES_ThCeg9JV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.0|0.6|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']|['H101']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03046c|eoCaTD9Ts5apcTaJkmIUHlINcYSV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|217.5|0.767|18.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701117|eoE3XboIoXThAknyTtjBnA-Zu_UN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.7|92.6|0.563|3.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.molstruc.2018.01.037|eoGQaU3nWOF8DDtn3uRiyaieBP7K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br57C190Cs10H969I513N361Pb200|Cs10Pb200C190N361H969I513Br57|Cs0.05FA0.855MA0.095PbBr0.285I2.565||1.02|212.2|0.711|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta09362h|eoUMCsTmiYtjLvIF6vAA-6lh6l0y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.855MA0.095PbBr0.285I2.565. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee00689j|eoldtnr9Sou1dyLLAYkwtd2hHK8w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|193.3|0.71|13.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Lif']|bulk|https://doi.org/10.1016/j.solener.2020.05.028|eoq7YM6xvwQVjVAkaMZAvezwSduc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|177.0|0.596|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|eoqaRMGAKKUcXeTU279nXd7aCOju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.9|0.737|14.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2018.06.068|eotcv8IB-g7gOIduHQGkRSqxtXjM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|254.0|0.71|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06946h|ep5Dc4XtfZUyKmpCD6LNDSplSPbs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.0|0.645|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|ep5aMQfVEAQDd9XXHI2L4DQbnC-q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|98.8|0.335|2.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2014.07.039|epO-HBZubXBtwg5fcz0yxHSOV46H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|213.0|0.75|17.43|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|epO_suEO9JrvLKuDfUZt0IaT6z9G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|208.3|0.7|14.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|epPVHhXLH95dub0ZsSmqoHLbbFZf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55||1.175|229.1|0.752|20.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/aelm.201800500|epUM25AAEhS1y9wtwZRqj93kvrtK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.1|241.2|0.7290000000000001|19.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|ep_e2QOCKXldZLrb9CaUnq95UhzF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br27C180Cs20H900I573N360Pb200|Cs20Pb200C180N360H900I573Br27|Cs0.1FA0.9PbBr0.135I2.865||1.077|169.0|0.6759999999999999|12.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'ITO', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pip.3153|epcU1J66RC2Y3vExxDr2sdpQNvRV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.135I2.865. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|140.29999999999998|0.3829999999999999|4.42|['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1016/j.ijleo.2018.12.157|epd1yAGZlaZb2dapocBbJNZSn_WH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.37|29.8|0.32|0.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|epdJlz_BIPjOFZMWaNIe4gcsiZUh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.0|0.73|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|eplGpHNfAKVOejVIlRfzUEiu_oke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.026|222.2|0.708|16.14|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|epnGm-pDPICyZ8HPHcArRyRLvh2b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|217.5|0.6679999999999999|12.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|epre0nVMOZG0Wseh0xExjWGSjf28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.626|77.30000000000001|0.863|10.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.202000199|eptBzGn_fUNwnFyjafxCBkD5NgTw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|186.0|0.59|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1088/0957-4484/27/50/505403|epy3zbS_vb_lIF7i5S9pqgASoFr1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|121.0|0.53|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00718|eq9bAEVr7kUECt82PFIii0runIKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|135.7|0.591|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06198e|eqN4TpUkW7ug0RuP50DMuaGZfsUu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H11I3N3Pb2|Pb2C2N3H11I3Br3|FA0.5MA0.5PbBr1.5I1.5||1.04|217.7|0.516|11.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700118|eqPtFU7U9o_A_EB_JsATh6gYUjnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|186.7|0.64|13.41|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-018-2633-z|eqWj_js9R5sHjO8Gmks2ZS3zjooI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.117|231.3|0.7709999999999999|19.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|eqePjxTiO86MGZ-8mbNFU5SfDLR9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|1.14|230.0|0.75|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|eqiDP_I8dfj82YtIm1IHmjnUg4Iy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.1|0.78|16.24|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|eqvYoqcwA0b5fNbDBPttbo4g8ZM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.0|0.65|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11824|eqx6RS35n20GZaTRPrq2rEJO4_BC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|187.0|0.731|11.6|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|er2yGhmc0y54Z7FnPO57xFUiWz0n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|181.5|0.649|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra09519g|er56-k2-8ZTyh6Hu1-73PaPc3zjm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.05|2.1|0.226|0.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|erA9Bn5I8QImHJYOQ1fbMWLw5qT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|138.0|0.48|5.2|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon-tape']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nj02847d|erEiDKiQD3AinbLMcpiUj0giCjve|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Carbon-tape']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|206.3|0.56|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06673|erEqqJ4AxpYoTh-7IXDCt2NUwz3u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|112.5|0.715|16.39|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|erJKOxVaNFEE9n9lBMBP40_IkugJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.5|0.6890000000000001|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|erOZIoy0HidEInwRTmrLVjgiAyhX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|154.60000000000002|0.61|10.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|erS0KWnY0bRNgRYdf9kBsjtdKo5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.186|225.0|0.77|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|erVzwaCR-yEr8rxcAB4bL9Il7ROU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|183.26|0.755|15.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aax7537|erWBh7CkF4VmD7eUevZchTMYUd3g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.97|['SLG', 'FTO', 'TiO2-c', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-ETA']|bulk|https://doi.org/10.1039/c6ta07876a|erbGcRHO948qPf__S4Ty2QlK4_zC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi3Cs2I9|Cs2Bi3I9|Cs2Bi3I9|2.0700002207264627|0.68|2.9|0.33|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.inorgchem.9b01233|erqAtlnlWYja-e3KQXoWkKuk-lAo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is Cs2Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.056|ersEonvi7a7GkN-_lFIi9FPd4j9y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH5IN2Pb|PbCN2H5IBr2|FAPbBr2I|1.9690002099567177|1.138|127.69|0.518|7.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|ersqAbaTUzEtZlOD6KoRDa3wCevk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7340000000000001|153.0|0.55|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|erxeCirmzOzSQ5V52qlHraU8TXXG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|140.39999999999998|0.515|6.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|eryjazkOQELa3pMv9YEeD21zjOF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.7|0.6859999999999999|15.73|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ra01186b|erzFxmtmFSt5S4qQ2hLnJs84vbfy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|241.0|0.755|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|esBaBg4ClnkUwKlwo51P7K0Kq48E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|229.9|0.6|14.84|['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti3C2Tx']|bulk|https://doi.org/10.1002/adfm.201905694|esEJhVtzrO1gQYofxDGsp6tFET0l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.4800001578140891|0.978|226.7|0.716|15.87|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04190|esIB7qJjdjD9G79EUGqgZCnggBTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.1|228.3|0.718|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|esOVpjko0yk1HGHpDJwPKREyavKS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.0|0.746|16.4|['SLG', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['Au-np', 'NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta05973j|escYe3_sfdhoGtT4pWM2wQZY5ElI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.125|218.0|0.67|16.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|eshUUh4K5L2RsWj4M1dc0VvCv0Om|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|177.39999999999998|0.6|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra27704g|esj1x_fgwWF7eQfWsWlcBDrJMuM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|157.4|0.49|6.86|['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|eslKftmoRT0_69EhN34xvDGBQEZY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.993|204.0|0.684|13.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|esm04KRI55WUymEl_KU_adwTepuU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -C11H42I13N5Pb4|Pb4C11N5H42I13|(iso-BA)0.5MA0.75PbI3.25|1.740000185538186|1.2|165.39999999999998|0.535|6.43|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|2D|https://doi.org/10.1002/aenm.201700162|esp-VwRRneAcfCkcHOSt6L2PfIZW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (iso-BA)0.5MA0.75PbI3.25. -Br3CsPb|CsPbBr3|CsPbBr3|1.7300001844718749|1.23|71.9|0.731|6.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta08465g|etRG5X9k7nX_xVDL1v5kaIjzcnx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.4|0.568|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|etY22UCmJlF08cwhQSeF5y7W2osn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|198.0|0.51|10.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606656|etfk-OJtX4okJchJg2kzbRmEwXWM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|206.2|0.72|16.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b17580|ethHVDTrc9ynNznahJhzUfDqNSry|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|94.0|0.59|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc01962h|etm5GCCOtSxvGsN_LJKu2_zpWEqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.04|206.0|0.65|13.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.006|etnnoVtJALpdnwGexBiHku0tg9rp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|149.9|0.647|8.77|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2016.09.014|etsWWGy_zFFZHBa9-Kro_KSxKKO8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|193.0|0.685|12.3|['SLG', 'FTO', 'TiO2-c', 'MPMIC60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'MPMIC60']|bulk|https://doi.org/10.1021/acsami.6b06164|etuWQ57KyreamWJ3RlqzQGtFP6Kd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MPMIC60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.053|207.0|0.652|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201532442|etx6ZTUU5SNsXlQvHUdaG65LG0VU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.914|215.0|0.561|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|eu3qNga4jJfCwFv7KO76Vi3WrY3y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.1|0.67|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|eu5XMUCIkObySmt2S-oNZSkEidLW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.0|0.7|14.2|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|eu6qXC2c5ydThYR81MZ4awcDPUr-|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.081|222.32|0.774|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|eu8XriufhtfRt6Gr7QKxdHKgidQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.6800001791403176|1.129|197.1|0.79|17.57|['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']|['PolyTPD', 'PFN']|['LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO']|bulk|https://doi.org/10.1002/aenm.201902353|euAQpX2PwJOvCvaN4yCTMFKiAWfZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'PFN', 'Perovskite', 'LiF', 'C60', 'PEIE', 'SnO2-c', 'ZTO', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|192.0|0.6|13.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16662|euF1wa0vV8A9LKBU4VMguVdv9cth|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.0|0.71|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|euFAxlnKbXlI-eYpfC9Iw1S7yEgX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.569000167304261|1.03|206.3|0.7|15.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|euIWUyeSmcGdEKm0upWGJx_g8ULV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|243.3|0.74|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi01020j|euLTS3VX-roPpkqjzzp5fVEMwWY8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|107.5|0.562|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03593g|euLhG8qmaYnDuuvkcVXRieTpBnfh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|145.0|0.58|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|euMnuHQZjPUUliaUarCaW8CA5KBy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|128.0|0.54|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|euMrO0UU4q2TeGoXvthXf530rSIh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|151.0|0.648|9.8|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acs.jpcc.7b11141|euMxqo7O639shJNyiP6u1T4ZXO1N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6300001738087604|1.11|188.1|0.743|15.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Unknown']|bulk|https://doi.org/10.1021/acs.nanolett.8b04842|euNKc1-i_DCJGnmxFOsZF7S_UX47|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|147.3|0.6990000000000001|10.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|euPWMPCRRa1ONHKuhAM4-49f_GMH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|93.0|0.359|3.0|['SLG', 'ITO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/solr.201800056|euQn9efW2DFCfMr4eJ8aKybmChJx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.01|232.0|0.72|16.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|euWowUsobf4hjASnlyLFzPVIa2cb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -Br150C47Cs3H235N94Pb50|Cs3Pb50C47N94H235Br150|Cs0.06FA0.94PbBr3||1.453|64.7|0.812|7.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|euXxEreplGR7lxURuNRdNwY_5K9e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.06FA0.94PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703068|euZHLNj_ltlsIJLaCtPdVjg4fc25|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.51|9.31|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.07.057|eucBpq8MaeX_Z2bgQ5CCURJDcQDJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.023|205.4|0.58|12.19|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'EH44', 'MoO3', 'Al']|['EH44']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-017-0067-y|eunhBs-MrFMl9zQMFefE2aEGQyJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'EH44', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.126|233.0|0.753|19.75|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|euz8R29tZChH2WA2DYHgWQyJl6KG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|212.2|0.742|15.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|ev2usF42MFTDFpCgScqhTh1TmMrH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.78|96.5|0.34|2.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma13102272|ev3kqLc6ng4aDlbS3sLmAemyEYsv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.2|0.715|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.09.014|ev6CDpea4GS6tbuss1qGSIYq7G9_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.5630000000000002|74.6|0.828|9.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|ev6THB4_hsQ1udFdD5spVf6a7NR8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br4C95Cs5H520I296N145Pb100|Cs5Pb100C95N145H520I296Br4|Cs0.05FA0.5MA0.45PbBr0.04I2.96||1.148|237.0|0.81|21.11|['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'B2Cat2']|bulk|https://doi.org/10.1002/solr.201900217|ev7RMMl4w2hRP4tPkbkOqJ0qBbvr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45PbBr0.04I2.96. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25||0.956|199.0|0.705|13.4|['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Si-nw']|bulk|https://doi.org/10.1016/j.ceramint.2019.04.221|evJbGl9WLeBmrJAnYf4oVWQcGzDH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.5|0.7|15.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Ethylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|evLu-CZi7X2y1Ze67zcckfw40KUm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Ethylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|203.9|0.768|13.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Mg', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201700007|evQnzHCNs8cmZmpG1KiUhZwij_e2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Mg', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|85.0|0.48|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|evWdGZclxaJNZHDQlN7JxHnGO0-w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.867|178.0|0.604|9.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5087796|evYlN8tdRPAYq_FYyPfS4lePJ1Vl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.58|5.5|0.5|0.16|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1071/CH15245|eva8IB_gVEBntNJ4eSe1eZ0jhYxM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.06|225.4|0.75|18.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10876e|evo4gD-gulj-NmlutBRoI-JEJ9lq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|1.05|224.2|0.69|16.34|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|evr-HQAJvdviVAQCmRukYrcDLRZC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|163.1|0.581|8.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc02928d|evwK7qSxXRfMdH9svxqKcry54Fvd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br75Cs22Na3Pb25|Cs22Na3Pb25Br75|Cs0.88Na0.12PbBr3|2.240000238853757|1.318|65.9|0.7390000000000001|6.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|ew-Z3jchRrRIp4BXoSyRNohaJb2F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.88Na0.12PbBr3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.50I2.50|1.6500001759413832|1.12|216.0|0.73|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|ew2ily2yM5-P8OEiuKGxRMX4_kRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.50I2.50. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.95|219.4|0.67|14.06|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|ew6hmAHorcIjtxT03xF9PVXrxllW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4Pb1.0I3||0.96|221.8|0.495|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|ewAAYJJ80gBQq_k-YPWdR7rNO0eK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.6MA0.4Pb1.0I3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75|||||11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.161|ewHexEFnpV3zlGRQ9EhvtOSw5Ybl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.78|220.2|0.64|11.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|ewKIxQy0sagVPyafxkD8moI-epMy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.7|0.59|12.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cap.2017.11.010|ewKSFh6zIt1TCSL9Hk6MnFh6ekwT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.75|15.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2', 'C60']|bulk|https://doi.org/10.1039/c7ta09178h|ewQ71ngpn1sBXdm_JURl7cnfG0d2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.0|0.474|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|ewQeG-ey3i2Cxul7hD0PiAC27ccD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6090001715695066|1.06|207.0|0.73|16.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802139|ewRO5Z4kXZAsP6JI0HL6tQ3oUMJz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.4|0.741|16.33|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|ewVnm_oKpexzP_wwpitjedBbkokt|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.5|0.68|15.28|['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/admi.201600122|ewVw0Ij-EU4we6gyga_QvlLvCtjH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.4|0.72|16.53|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|ewZw7PcdcTW1VtCPO-FbKfmhjFIq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|192.2|0.4|6.3|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b00541|ewb9JVjMjIJGZ0KAJzAwcGZ5TGTb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.05|210.5|0.7|15.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|ewxL0RRK_kowbsLRBuNuG7wh-Jlh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|150.0|0.75|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.09.293|exRsX-JYJ63NTnMaJbhgOgK4f0IT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.0|0.722|13.3|['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEDOT:PSS', 'PEI', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.10.032|exS3ckrLKEbtBkS-vyLfyBPpDNoH|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.097|227.2|0.76|18.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|ex_ZBkGKZr48voxe4RDOPxES0474|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.1|0.713|14.15|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Er-np']|bulk|https://doi.org/10.1002/anie.201600702|exrY1CyevjHSkV2xzuHniU3EwCsb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|139.1|0.49|5.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|exy4eN6o0XV1VRG-Kt36F2En8Cld|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|136.0|0.49|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']|['H101']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03046c|exyTEI5cjqVXOknT59q_Fx3Lw5Md|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|230.0|0.73|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']|['N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|ey40S0KE6mHLDs28XEJtPdppq0JL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|232.1|0.76|18.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|eyF95Cze_gz1d5zEGvXi7-7pQCOV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|110.0|0.41|5.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|eyQzOik8IBrJkUhdiYS6WeHOtlyj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.053|219.0|0.72|16.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|eybJ1xgxBu93Iy8_lupgrhEYH4x7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.57|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|eycshi-e2rFWG6hQtJxX3cFhWKTK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|159.2|0.638|6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|eyeuV7uhbV2YGhRt5LW277MUygM5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|164.60000000000002|0.54|9.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|eyfEb6UkL-QQTyP_Q4b4EErA6GBF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|185.0|0.667|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|eymLU57YfQc6ffB5OOE87UVG6coe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.103|224.0|0.763|18.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'V911', 'Au']|['V911']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201704351|eyooqEongmKfHQQZ18qy7TvoTt_g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'V911', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.8|0.68|12.89|['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-2TNDI']|bulk|https://doi.org/10.1039/C7SC00077D|eysaQcOnhVDx_tmtBRvYLiJ2R8Xj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br29Cs10IPb10|Cs10Pb10IBr29|CsPbBr2.9I0.1|2.3800002537821165|1.23|37.9|0.54|2.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|eyz5BAzyBYTirGFVcC76U_FGLD7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr2.9I0.1. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.85|197.4|0.687|13.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|ez-ZzsnqX8ROEqDrSKfUR96DJZk1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.880000200466546|1.03|116.0|0.63|7.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152768|ez7fCPZ2sRlURAJn0_-F86JleVvZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|147.0|0.76|10.7|['SLG', 'ITO', 'EGO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['EGO-PPV', 'PFN-P2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|ez84MwUrmNH3ihXsh2jT6yOBskYx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'EGO-PPV', 'PFN-P2', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|155.0|0.52|7.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|ezE9h2rfa6DUmQPXdIDllYV5Getr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb50Sn50|Cs17Pb50Sn50C83N166H415I300|Cs0.17FA0.83Pb0.5Sn0.5I3|1.2600001343552385|0.76|271.0|0.624|13.9|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|ezEt-49vgw6lv3wG6pps6oEgalte|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.5Sn0.5I3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||11.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|ezIYzh3EiYEW7RG7WGGM1V-dg1GQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.002|81.5|0.486|10.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|ezMSFgGRNwf0TLaT2RBOmt1nptS6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|189.0|0.728|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.05.012|ezNKyoMxmt5akxRN4_a-Npa0MgQa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C77Cs23H462I300N77Pb100|Cs23Pb100C77N77H462I300|Cs0.23MA0.77PbI3|1.6440001753015967|1.1|231.7|0.79|19.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04501h|ezQDSODJ5jR9az0qI3Uqm3hDTklT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.23MA0.77PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|150.0|0.49|7.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|ezVHB_r-B_f5-Ee_rYQwN2bcN5zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|157.0|0.688|11.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.027|ezgE6yvRgFDMs6v0FCdD-W4ToaPl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|210.6|0.74|17.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|ezhQVmtMt7GfX1DMEYNdaW3w8k-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|154.0|0.63|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'apv-T', 'Au']|['apv-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.09.165|ezkW9AnFdl6i9Wbyzi9SmK3UnOKF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'apv-T', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|188.7|0.8|18.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.089|ezynjVTvAg9vhx90v3KfNB4QN4Rr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|229.5|0.608|15.15|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1515/zna-2019-0127|f-3Pm8fmYOQMTLQNjmcqp-yORDtu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.06|132.89999999999998|0.726|10.22|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1063/5.0011918|f-6ahmJYr-T1_ztdX3JIFfXORUzc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|219.8|0.462|14.52|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.060|f-85GNgjEM3dXtyPQCq6pvuxhDnF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.095|152.6|0.76|15.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|f-LzDX-qza4FpaViRxM8HEwGP62D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.5800001684772036|1.02|211.1|0.71|14.54|['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228320|f-OOwBSzFHiyp92SEaf8hlBDeo8i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|140.1|0.56|6.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|f-QD_tptSC72tCL1UXUXSapiiuc1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|163.0|0.67|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.10.013|f-U3Z6w8a45lpxJ_k8bBrP6KGXOy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C20H117I9N23Pb20|Pb20C20N23H117I9Br51|FA0.15MA0.85PbBr2.55I0.45|1.5300001631456466|1.06|187.9|0.66|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|f-WDSNxo953TkzlqFIiMH9lL3e9N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr2.55I0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.924|228.6|0.6|12.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|f-nryZScV78GCBjNjah1y6gSndtR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.625|105.0|0.42|4.0|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|f-zHor2cJAqpUvkaokCZxlGtWs4Y|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|75.0|0.5329999999999999|2.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|f01WIEEFDDDJWuxYx-CXLNPIPRtn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.01|248.0|0.6559999999999999|16.5|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.actamat.2020.03.036|f0ANzL7IfFQZh0fXGnAJlbOU70ny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.2|0.8|20.71|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|f0OsYF42shrWtTBhKJ5OeN_M55ZK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.701|173.9|0.534|6.5|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/c5ra01540e|f0TgHxj446SWoDgVM6naKpznon5X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.03|250.8|0.72|17.91|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'TPBi', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'TPBi']|bulk|https://doi.org/10.1016/j.nanoen.2019.103962|f0WUfX4nqpycOiQHeDWjnJ7WhUCD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'TPBi', 'Cu']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.07|240.4|0.787|20.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|f0ZXj7LirGxkENzT6pZSamsyC_sN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|205.2|0.612|12.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Ag']|['PDPP3T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dib.2016.02.021|f0bcHrv-Cq1eHQE6yC-keo2_H7f2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPP3T', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I4N2Pb|PbC2N2H12I4|MA2PbI4|1.5600001663445808|1.06|210.0|0.76|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|f189-DZXHSHrRf-1avG0lVl68sJl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PbI4. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|1.01|7.3|0.377|0.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|f1BOh1pTcnatr__echnUtlqE0jQl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|227.0|0.78|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-OCH3', 'Spiro-MeOTAD', 'Au']|['HS-Ph-OCH3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|f1Ihlv61FwBoqxVyYE0HMc6dw4X2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-OCH3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|163.5|0.46|7.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'KAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|f1J3TsaZTHPnvkyREXdtzfizb10y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'KAc']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|178.0|0.71|12.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|f1P9iGebqLM3UjNkae7gbhoC94m2|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|211.8|0.79|15.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBDANI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBDANI']|bulk|https://doi.org/10.1007/s11426-016-0085-y|f1Po7KHyupQ_NiNC0VQIO6MZRXuW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBDANI', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H543I300N157Pb100|Pb100C100N157H543I300|FA0.57MA0.43PbI3||0.98|189.0|0.54|10.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9044-y|f1Tu-zrYuaIbLBmhPiA3V9wzh5X-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|92.0|0.57|4.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|f1al7BVfjlE1jvrdRUf6jimTXbmn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|194.5|0.7|12.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta05053k|f1lW53AXkDzh4zgDU9i176_I4FU0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.1|228.0|0.73|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903654|f1vTswk7_oGVO6C5TbqUHpdZoBMA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.04|195.1|0.73|15.04|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|f1xC-God2w8o64sUJgbwgGL5muUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.0|0.61|11.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b02799|f26C5QQNttk-wCsUyW6HeUWtBUmv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C50H270I141N80Pb20Sn30|Pb20Sn30C50N80H270I141Br9|FA0.6MA0.4Pb0.4Sn0.6Br0.18I2.82|1.2720001356348118|0.888|287.4|0.745|18.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|f2AXFnUpjTtxcY5sF9YwxW3uDvgM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.18I2.82. -Br3CsPb|CsPbBr3|CsPbBr3||1.296|73.0|0.732|6.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|f2E-IbVjtjmqG5Jd6RHhXfXf4RBt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|||||16.79|['SLG', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['PEIE']|bulk|https://doi.org/10.1021/acsami.9b03298|f2FbqG8bnFoOChIHQ74Nef1lqdkl|a perovskite solar cell with the following device stack: ['SLG', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|204.0|0.638|12.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.06.149|f2ahrVkgIFUT0W9xphOMCg4IkYwI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5800001684772036|1.125|226.3|0.75|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|f2h7uu2yvHDiMytrkJYJb3T4KWTv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.13|198.0|0.779|17.4||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|f2jsQpLqVhpTzXofJ51D2ZrkgVpY|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|213.1|0.75|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700147|f2laDkt_gLYDHsm-d1rr6RHgRlAY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|61.0|0.44|1.9|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c5ee01169h|f2v3fxw_BD6eUh1LzYztwli9Uaqg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|202.2|0.691|15.6|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|f2vjz6TBICbIjhIaUvfxEqiSLE0E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|150.5|0.6|9.55|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c5ta01200g|f3Epip7S4n-ti0ljq96DaVnl4d9B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H11I5N3Pb2|Pb2C2N3H11I5Br|FA0.5MA0.5PbBr0.5I2.5|1.6120001718894|1.04|203.63|0.608|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|f3F7NP6I2qzVTKDL4cE7FH3s8EkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.0|0.754|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06718b|f3JER9ffhIMvuZHz3hvIr5-eP7AN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.133|167.10000000000002|0.655|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05730|f3KC8xv1ULYT4eRWfdcd3_-GjJ1Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|209.5|0.75|18.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|f3NF1e0NNPvXkJKyaFcsV7xNrvzC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|181.0|0.664|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta03169a|f3NHfgIsETuPYg9n7eoHit-C42Ty|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|f3R-2OPhwetPpP8wBfJHJBuV5jAM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||0.98|210.0|0.65|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|f3XrqZXRACR9V4Me3usw9xcDXJtt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CsI3Pb|CsPbI3|CsPbI3||1.05|180.0|0.71|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|f3c_adOB4hGDk_5MtgSi14sBtszF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.403|196.65|0.491|3.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||f3hzqIAUjabGieOBk1SFJxGsyaXj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|200.2|0.731|15.8|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|f3t6uDUejAf2QoXz-bty5fdx95bB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|106.0|0.43|4.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|f3tDVHO91si-1amcwSKidikB-iYE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|225.1|0.76|18.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11651b|f3wJjJsjlNeTzkkokmfXms40Yhyv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C9H18I3N2Pb|PbC9N2H18I3|(PEA)MAPbI3|1.6000001706098266|0.84|96.1|0.721|5.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adma.201801401|f45wgAh_YNOPVVsXDSV7HI2gTUni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|179.0|0.71|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603326|f463KZbpcj3iMwO-l_5aiLPu5Agq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|80.19999999999999|0.56|4.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|f46Rw0qSAvJMPwABKCP7N7cPEUeg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|229.0|0.78|20.56|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901631|f4DZGj-PApbL1qGC1F5UZVrjv-tW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|172.0|0.7|13.0|['SLG', 'PEDOT:PSS', 'Ag', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta06657g|f4Em072mNfHH00VGNn53aTTcLhbq|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'Ag', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.07|176.4|0.77|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'VOx']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201504555|f4F1ogm0D5IozR9lVZilvCYbHZRv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49||1.011|179.1|0.665|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jcis.2018.09.045|f4GM28f0UHEG5nKXQ542RG8KUv4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|232.0|0.74|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|f4KEEH9div_1btWaNMk5ZqBB8B-S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|0.965|39.0|0.58|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|f4KlXDJf7ykXhXCMEYPLpOfemnLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|f4O3Wx4XoaI8vnb-wvWYxbbAxkJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.8|0.643|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03276|f4PBZ3Pv94XjOYQmOy_yDPr4Ss4y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.570000167410892|0.983|243.0|0.76|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00178|f4d4uA_SULs4XX4qzVaaA83lZ69P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.128|229.8|0.772|20.02|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|f4gq1Go-wC6Bts90BBXHugs9lCPW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.9|0.723|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201903691|f4salaQSkFfSMlY0o_UejlcX2WZ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.948|221.4|0.643|13.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|f5-kz1v8-jI3UdkOSvfsQIO3Bpfn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|184.5|0.77|13.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|f50LgzLwRnD5AY1S8VOlNI5RP5BC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|214.2|0.71|14.69|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|f50eJFqGmkjnqLE3QSeeRsq2tH-P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.7|0.73|14.49|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18402|f57Yd1z03wBzQnZCgzwAW2aPpQbJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|193.9|0.66|12.03|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b02706|f590Iak9RivdUVpCGjfcbD7cFA1B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|135.6|0.183|1.54|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|f5CUbq4f1EcN85YQ2IekQ10rsWjg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|185.0|0.45|8.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta11985f|f5ESf3Ub2p5YItVHCKnJGO6d7Tql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.4|0.725|15.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC', 'LiF']|bulk|https://doi.org/10.1063/1.4928538|f5H9_QmAeXzcmVuxikDWgWJxFMXF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|161.9|0.77|11.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201800054|f5HJ4WVPEj2kmLHjNuXP8SuUQ375|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|108.0|0.86|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.03.038|f5HcJWU4aoGo0w7TtrazzbeV23a1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.2|0.69|11.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|f5PVfMTN5FQSDSjKO2dENwwi4q4b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.0|0.7609999999999999|17.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|f5V_4KOVN_v4iECvdoQqL4BlZuf_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|181.0|0.62|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.6b04478|f5_FV_qZnadf80y9z_mgRPYy1J2V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|225.6|0.748|18.13|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.01.021|f5drEanHgBE7bbT6GH45bjETxBA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.01|197.0|0.56|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|f6-Vel_J7YMP9u7z0fXLtVn1AUsV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6000001706098266|1.1|200.5|0.63|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226914|f60O9uchKHgQYXWNR2s4nwtMve-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C20CaH120I60N20Pb19|CaPb19C20N20H120I60|MACa0.05Pb0.95I3||0.78|163.0|0.632|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|f6HhUYYORIhDC05EYeXUzVSP9kwR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.05Pb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|124.0|0.54|6.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cp00416k|f6IMpuOZtshzbX7YJAy8nZ5fuDqZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|f6PoacKgl_jipEINh4-LriXoT2KI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|140.9|0.552|7.44|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|f6Q5GMHRz2mirvAJ6rBQwqnrOQqP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.0|0.597|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|f6k_An3KEi-tt2nLJyooBaplUp-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.0|0.62|13.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra25160e|f6xQmg5jnPsQDh9-jOCegWlXwgcM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|183.2|0.54|9.3|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|f71cyv8bMe5MRX1tN9kpc2cbNl5_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.01|163.0|0.422|7.0|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.jpclett.7b03361|f71gG8TqiezdVIzQjbU9DBpY26JD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06766f|f72pKraCaVHV1okV65_TbGas7IqD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|160.0|0.75|12.7|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ee02833c|f73CmQYgrHb64dqd1zKivDCJfARs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|67.0|0.28|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00718|f764EHSsxsTSli7HgTtH_uvBVpL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C90CsH464I255N166Pb100|CsPb100C90N166H464I255Br45|Cs0.01FA0.76MA0.14PbBr0.45I2.55||1.125|225.0|0.755|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c8tc06297h|f76b4tAiig-CqIA-94kO6JthgwYc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.76MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|168.0|0.642|9.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HPDI', 'Au']|['HPDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra06876b|f7Ia8hIbEbE3F2MndMxEWnPDGc4h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HPDI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.61|135.7|0.57|4.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|f7Rj8c82wtvvpQBUloBaZSBv4nL_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397|0.99|226.5|0.669|15.01|['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']|['AgI-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b14023|f7Xc6pJ8x7DDX-v3ihDCz8jq7HE8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AgI-QDs', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3||1.1|137.0|0.69|10.5|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta06719h|f7cZj7GATgIqbkyw-RKIGC0owe50|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|195.0|0.61|12.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00545|f7g8pAqQHW1LDz6rZJ6u412rLNuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.8000001919360546|1.175|30.1|0.71|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'TPD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.5b01716|f7gfI0U619Q8815x0oDeFf3kly89|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|58.7|0.29|0.17|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']|['Cu2O']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.08.013|f7i7VMLdlQSKhDlGfeeU5ZB0VjcV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.0|0.73|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2018.08.021|f7kSk1tqIGzn9WMlVzu-4HLY4LhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.8|0.672|15.29|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|f7robM2JhJcymtTePqEx76Fx5mUz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.82|24.83|0.693|1.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|f88uayADxw1dc6Ckt6ib7SkuzcWv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|181.0|0.772|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6cp06709c|f8Hzsl8PKrbXY_NrVWC0NoB4C3um|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.02|190.0|0.54|8.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']|['NiO-c']|['PCBM-70']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.100|f8J9i-Gpls-U0dtL6F0sINBDna4b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.588|74.7|0.848|9.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|f8OhPcB-aXuTu5GM05HxzdRHXDAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.34|13.9|0.42|0.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|f8QVcgQwrwKdtNxn_JAHDQ3UALV1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|196.5|0.71|15.0|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|f8Z2Fh7YbJRcsCl6Xd133BWbDLAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.05|202.3|0.659|13.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|f8eDELis4awk4ssGXLXYpWBH0aQt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2400001322226155|0.848|289.1|0.6890000000000001|16.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|f8f1wnpXAQ0sihxbiTnjvTEfEnUf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|232.0|0.753|20.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|f8mwgZR4L-vu8193M337MvIheVbu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|123.0|0.53|5.7|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1016/j.solmat.2016.10.035|f95gmosZX3Z-7TUqCMP21Gojyffo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.2|0.7|13.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01535|f96Dk6-NaEzA65AxJc0NAeD3b1uq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|143.0|0.433|6.5|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|f9gklZQJGHKnBV27KIhpA2O7ak3-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|237.0|0.62|12.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']|['Cu:NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|f9hSDS4U0qg1KJxk_fYvoux7oiJP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br75C42Cs8H212I75N82Pb50|Cs8Pb50C42N82H212I75Br75|Cs0.16FA0.8MA0.04PbBr1.5I1.5|1.8200001940686776|1.18|130.0|0.767|11.76|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|f9i8WtNdH74qB32n1z3_H6QxtIEr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.5I1.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.073|235.6|0.773|19.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801717|f9p6uN_UIfiJ4B8R8FBzERqZ7uVp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.4|0.654|13.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|f9pVuDIcFNFOTZotrt1uOTWgy3D8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.8|17.4|['SLG', 'ITO', 'TPASBP', 'Perovskite', 'PCBM-60', 'Al']|['TPASBP']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|f9ri5Wem8iPznyhS5fuMreoo5Y67|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPASBP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|204.0|0.4|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00573|f9xi_ps550BUrMTo-ixKv_8h99yx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|184.3|0.6729999999999999|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07876a|fA9YhZ6c5iGvQngmajMk8dG8JkzL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C83Cs17H423I261N158Pb100|Cs17Pb100C83N158H423I261Br39|Cs0.17FA0.75MA0.08PbBr0.39I2.61|1.6100001716761378|0.94|191.2|0.609|11.19|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'IT-4f', 'BCP', 'Ag']|['NiO-np']|['IT-4f', 'BCP']|bulk|https://doi.org/10.3390/nano10061082|fACN5TcogHNpdhtdnVj70cjDDeT6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'IT-4f', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.75MA0.08PbBr0.39I2.61. -Br3CsPb|CsPbBr3|CsPbBr3||1.29|65.8|0.528|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|fAFB11HNidodz3N3bgnc2fTQZKGM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|178.5|0.562|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|fAK_WLbjxqASTrRJBgUTpselhOXE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|173.1|0.62|10.59|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|fAN4ZkTIjEdA5LdxQtJhhhaoSJX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|103.3|0.57|3.9|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|fAOjP6AVJhfIX1_DilmAvJPoz5WS|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|194.0|0.63|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.05.039|fAQwbEKhLoMiWyn5Q5h4zzcEomwk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|190.0|0.68|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|fARweYXEhXOkZTYiPUDMfmpmNqWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|221.0|0.69|17.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b03948|fAVVWpcWKH1U0WsTATH76B6oTzv1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.9|0.64|12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Ag']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|fAfDaVBvmt5Y0QW7bg7ZxRZ19-wK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.177|229.6|0.78|21.07|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|fAnRRNirh_ouHwwUb25-7WWn9sL9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.047|188.97|0.784|15.52|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||fAoHqVhH1_FZ8k2T2qiAbh1obFNO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|232.8|0.68|16.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00477|fArZO4vWdWD8hu04ijA_r5Div0Nf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.1|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|fAwVoGElEN3bZWaAT_ediuw4VA3i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|175.0|0.73|11.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201400231|fAyWr2ZX1ETJnoHMSGt8Slwp86w7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.212|142.79999999999998|0.7440000000000001|12.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|fB0CClVN-JrMeNK130I5Xa8uBCx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.5|0.65|13.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-10', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8-10']|bulk|https://doi.org/10.1039/c7cc09452c|fBL8f-ezvmvdHFLrNcsJ7n6dF6j6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-10', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|176.0|0.54|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14850|fBQJWUqvz4S1R4Nnl3yy4DnnCae-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H507I279N193Pb100|Pb100C100N193H507I279Br21|FA0.93MA0.07PbBr0.21I2.79||1.13|241.0|0.804|22.0|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np', 'BSO-mp']|bulk|https://doi.org/10.1016/j.joule.2019.05.018|fBU-uj9emARKV3PzCBMgoNnaPWW7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.07PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|204.0|0.74|14.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201601245|fBhSFAPPyqLdvyqW2cPfJeUeLVF_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|197.2|0.662|13.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|fBjz6mO4x3ttXrH4EbkEgKszS6GL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|228.6|0.65|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.04.127|fBo1TIWeyE0r5YUIGe3rqqhIXfmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.0|0.34|4.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|fC7S3cShiPBt5RYA3ua5ghfx8bvl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|111.1|0.47|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.09.112|fC8mpxipfCxCydFWYO-5njD9fUax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.4|0.773|15.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00488a|fCL6DT8_hhdewHV3gpSOwfjIDzHR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|174.0|0.67|11.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01598|fCMMUJg-fxKZUDlXgrwhvE3RlkdW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|121.0|0.6|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja411014k|fCNI3xsaKJNhDVSwphUgbEt84ZzH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|238.8|0.716|18.12|['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Dimethylbiguanide']|bulk|https://doi.org/10.1002/chem.201804799|fCbQvGdYzxNOyLdlAQrJf1RU1o8m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Dimethylbiguanide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.7|0.74|17.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|fCyJaXD5eu0UUespzTp_ex3xn4VZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|120.0|0.45|3.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|fD8r19wQuO4D2FEcD9AiO2G17lla|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|98.8|0.45|3.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|fDDPnv89tC2hJ-7iLxqhzynbP0ll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|163.9|0.603|9.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cp01140g|fDDm2Ib-GwpfG1VmL0dpDLdZo80m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.6|0.795|19.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|fDJht9jsjGJ-OIMHV2TtAtpo6ZLZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|199.0|0.8009999999999999|18.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|fDNyCF0XZ1PVDtxP4yG9mHWkmO9q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|1.14|203.4|0.66|15.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00856|fDP9YGm20TVW4itJtS8wddlGEwJK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -Br45C80Cl9Cs20H400I246N160Pb100|Cs20Pb100C80N160H400I246Br45Cl9|Cs0.2FA0.8PbBr0.45Cl0.09I2.46|1.6600001770076949|1.22|199.6|0.797|19.39||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202107359|fDRBaFcGWHovvmlq05XtzsuoDv9l|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.45Cl0.09I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|192.0|0.46|5.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|fDS-xxIpDGVATpuUbsj8wW1dsf2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.11|154.0|0.61|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|fDbsY3Fqf3K9HTTgnToOxhBla5h4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.06|232.0|0.728|17.95|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|fDdh-MifeVCHsezkRWsMy9WmAken|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|180.5|0.6|11.04|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['NiO-np']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ta09845b|fDlvnhnxMMqKDdjc26TIwgKolRzN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.19|214.0|0.3429999999999999|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|fDoauoXyApXI_hKBcruclIZHnhee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.744|214.98|0.65|10.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||fDxlxEMxXdJHuCmi6v3BCoQvAcDo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br3C100H510I291N190Pb100|Pb100C100N190H510I291Br3|FA0.9MA0.1PbBr0.03I2.91||1.11|239.0|0.733|17.56|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903347|fEGzGZczQTpYAoUZQUaZZOY2QYMU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|206.4|0.68|14.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s12200-018-0847-4|fEMf3WrtQKdpmSX7FPkYaxszmyIW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|99.7|0.741|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|fEN9fAy2dTMfX1FpPrvxhl8Zu8Lj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|136.0|0.53|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|fENEBfSTSbkbK36j0gZg8GkO6HeK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|165.9|0.61|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/C6RA05893K|fE_RJrVBIBwmjSkYxxxKfCAuko4t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|225.0|0.6729999999999999|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms9397|fEfhJMMh_I32K8i9rjd-IofnZ8Sv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|163.9|0.75|12.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|fEfw8Y2gfyG0j6Wuiu17Xf3ruW7L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|242.9|0.75|19.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|fEiwxlySZksip7jcimUUWZfX5IPa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.012|214.4|0.701|16.99|['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|fEm9fyd4nDG-rlfaHUxuyosoRo8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Bi2CH6I9N|CBi2NH6I9|MABi2I9||0.588|11.8|0.48|0.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03582-w|fEnY4BxQNpq_Vr4dIwBIGRByhI_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.8|0.7509999999999999|18.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|fEyiAud90JFR9RZrPfhQLzNlNCfK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|218.0|0.7659999999999999|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903166|fF1Xg3yEXo29c1dw74_4aA1gJi3c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.3|0.75|17.25|['SLG', 'FTO', 'TiO2-c', 'C60-NH2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-NH2']|bulk|https://doi.org/10.1021/acsami.9b07097|fF1kcl8-Ang4RTJgM422X7Tnby69|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-NH2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||20.54|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|fF8FMKDiUq-5EZUjIXRhIcUMGdQ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.98|223.6|0.684|14.3|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7nr06812c|fFDmmch3t8CFGvzEp2QVNIWPSWkQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C104H579I300N133Pb100|Pb100C104N133H579I300|(EDA)0.04FA0.29MA0.67Pb1.0I3||1.051|203.7|0.74|15.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|fFGvDM7aieaCTpsW19oTsVv0sTmr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.04FA0.29MA0.67Pb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.99|240.0|0.64|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04611a|fFN2geBKY6eHiyXlHnfd23NdHNqK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.07|134.0|0.64|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|fFOzzY4PWa_L_OMTCs1utggMS36k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|0.011|125.9|0.647|9.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']|['Co3O4']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800315|fFX0EMmD129KJJ0nwbb4UCJL6wJq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Co3O4', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|217.0|0.8|20.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|fFuEqbp35URHMsH3DrRh7ZXHNrbd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.01|['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene-QDs']|bulk|https://doi.org/10.1039/c7ta02242e|fG4ry7o_Oky9b3ZbfAmHs38MWHzu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|207.0|0.68|11.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201801541|fG7HikIFaFfdXsNqiQNy7FPPTdQg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|231.3|0.62|14.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solmat.2019.109927|fG8A203YtAq3Yo5VdiO9dGUTtaA-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.93|55.8|0.38|2.0|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00934a|fG8y3mI0mYSnXoLabsOyqYxkuSqL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is CsPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.37|120.5|0.61|9.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'YD2-o-C8', 'Spiro-MeOTAD', 'Au']|['YD2-o-C8', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900212|fG9tMHw4z1VtK52zC-tayb2IZXt9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'YD2-o-C8', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8PbI3|1.500000159946712|0.98|199.3|0.615|12.01|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']|['PTAA']|['PDIN']|bulk|https://doi.org/10.1016/j.orgel.2017.10.028|fGGO2aGztCT6dlVsk5zmOaz6vU7F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PDIN', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8PbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.06|218.7|0.753|17.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.10.143|fGKmS3J8I4-ssMgAXQFEI9AJ6cEJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.900000202599169|1.08|123.2|0.62|8.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b07949|fGNoydqC3zGBSZNS5r9h6Vsf9HH6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|90.0|0.4|1.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2016.07.182|fGRtRlHvOz7EEp-yjBfmi6IV4sx7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|266.3|0.6779999999999999|16.26|['SLG', 'ITO', 'PEDOT:PSS', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.10.024|fGhSEFL6JvYHVByqbco5oEj_2CWu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|180.10000000000002|0.7070000000000001|13.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b08421|fGjTHMklEI9-jvkGZXP1Na8a34Ru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12067C1600Cs5900H2400I6033N200Pb6000|Cs5900Pb6000C1600N200H2400I6033Br12067|(PEA)2Cs59Pb60Br120.67I60.33||1.19|115.2|0.69|9.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|fGjq9G7iuSUbIynok8eE1YwQmUQM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60Br120.67I60.33. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.2|0.72|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201604153|fH6igIe9bhQpgbRligVXtxQFByuS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|184.69|0.7120000000000001|7.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|fH8H2rrzQWxO1zIKOYykLXAdQtUI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|fHSH-_Z4fW0ZgsvZux9XgjZB-qfz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.055|192.3|0.61|12.29|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V873', 'Au']|['V873']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600762|fHThCaDPqNv9ihFTubOt-F4Wq7C9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V873', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|178.0|0.7190000000000001|13.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ITO']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/admi.201900434|fHiMRDHQ7YlLsCNYHYFvOvexBfZz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ITO']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.117|152.6|0.735|12.53|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|fHptlqrTbOn8nxnA9Yy0Zxr6upUc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.08|188.81|0.7|14.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||fHsT6UGDosDiD71ZyxVCt4CFdKZS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.17|144.70000000000002|0.674|11.4|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/advs.201801117|fI3V7nYO5QBs7SCpkhVYwVPQaw_K|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br251C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br251|Cs0.05FA0.79MA0.16PbBr2.51I2.49|1.640000174875072|1.092|218.6|0.7090000000000001|16.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.093|fI5BygRsBYDrAJfmLyeDrl58PPEZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr2.51I2.49. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.101|242.0|0.78|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04246b|fIT6cOByM3Zg13eS3fHRbp_ApTOi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3||0.8290000000000001|183.0|0.46|7.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ1', 'Au']|['H-Z1']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|fITWmFOPjNCNbw8DFARPIt6Q5gSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|194.0|0.68|12.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01026|fIX9X8zHgHzcny6sdJNxv0DiM8Qz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C95Cs5H484I97N181Pb100|Cs5Pb100C95N181H484I97Br3|Cs0.05FA0.86MA0.09PbBr0.03I0.97|1.5600001663445808|1.08|235.0|0.776|19.7||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.jallcom.2022.164722|fIbDMjyAYmFKCnhsnT39GfkKFpFs|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.03I0.97. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.13|190.1|0.7020000000000001|14.23|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.202001832|fIrbg7XVWuSZqAHMcX9M0mqw6CsU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|43.3|0.68|2.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08418d|fIsshtv9tYRnps689KDqjfQXHQOx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.06|237.5|0.7709999999999999|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|fJ-KKIoJbXFDqLFdzRwMXlMuCIWO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|172.7|0.61|10.33|['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Nb2O5']|bulk|https://doi.org/10.1016/j.orgel.2018.06.038|fJ315XPcR960_-nk-2SQF6lMQacn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.23|152.0|0.77|14.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110052|fJ5rC_m36tl2NUFaSq0EmXiUXio9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.59|32.9|0.29|0.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|fJG5lKVxSdytYkKO9CmX65nxoUlE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.1|0.8009999999999999|18.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901719|fJLQvNhbpNNRFXccCs5bdE2-_WKf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|181.7|0.73|14.06|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|fJT-7Hx1lZcn2Qoh3MpqF1JCB8Ed|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.0|0.787|19.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|fJb5QloOfN_4-Tef4djD_WaOp6jx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|170.0|0.67|11.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cu']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms13319|fJcJD7OfRcVXMDw6f7ye0tM6Oy0c|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.9|168.0|0.53|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|fJhxTPGRUZ3EhSUfEWbzVXEiuVkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.85|206.2|0.5529999999999999|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|fJplGNnawjjyughYiqjPprheLLqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.08|205.2|0.72|16.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903221|fJyv5DAz2o2etSuRFQxW030t95n6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|112.0|0.624|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0042-1|fJz-YBK9hBPqxAPvfQqYZ-FBhimw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|173.0|0.68|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|fKDTeihWOWkz3Wnprk4UNyO3E048|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|223.0|0.79|18.8|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|fKDnypcEsvdDmaS9ctIThmc7Kdh3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6130001719960312|1.12|213.3|0.764|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cs-oleate', 'Spiro-MeOTAD', 'Au']|['Cs-oleate', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b08026|fKEOdnOh47K3s_0b39tgZNObxH0y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cs-oleate', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.1|0.738|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|fKFGbXXyYLMNFD7mMOBQ6ebTJENd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.7|0.757|14.73|['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']|['NPB; PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03120k|fKMAheN3_u1PXvf3urDjceHosJag|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB; PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.44|135.8|0.3339999999999999|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|fKMGL9zR0XPbbQBxfxqlBDwez5ID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|198.4|0.67|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|fK_SFNwEcgQugTlGfVwTt9k0Im_O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|196.5|0.585|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta05674e|fKalG2ZUJX2-lHTZhLlCAO-aWxmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|140.0|0.631|8.1|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']|['Graphene oxide']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C7TA01752A|fKiIv41-ehcSwISLXy8f9d6zfaJE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|170.2|0.488|7.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.spmi.2017.12.015|fKpNKkflOOPuRcOoU9zVR7e_RAal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0759999999999998|198.6|0.757|16.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01306|fL1fqrOtAWM6s552FTGzScDPPtcl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.6|24.9|0.43|1.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'Ca', 'Al']|['PEDOT:PSS']|['ICBA']|bulk|https://doi.org/10.1039/c5nr07739g|fLDcnf_I0vGLK6lokPPB5lu4dcZL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.733|15.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-14920-w|fLPVd3Hu_sXMdEtmi7tYbWNE9jv9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|176.0|0.59|8.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|fLZvPoLBsPnU7YMBvWDLvus8_8rc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|174.1|0.63|10.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1364/OE.23.000A83|fLgt62D2KmvqbETRDYq-Zwqp5y4U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|185.8|0.3|2.29|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Graphene']|['none']|['ZnO-c', 'ZnO-nw', 'Au-np']|bulk|https://doi.org/10.1021/acsaem.9b01675|fLmoJWbsxafRNIk4eteXpqILaR37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|224.0|0.787|17.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2018.10.025|fM2zPvHFSbGW6elmvYDdQVRQnXSn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.59|21.8|0.66|0.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|fM5JwAj_QBETVrZZ0B290Grkv6Hq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.089|216.0|0.75|17.7|['SLG', 'ITO', 'Ni', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['Ni', 'NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|fM6Ihms1uWV2De24p2K2-AsK6Vzn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.402|165.0|0.596|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']|['PEDOT:PSS']|['BCP', 'C60']|bulk|https://doi.org/10.1021/acssuschemeng.0c01216|fMA5jbEOE_SFu13JBVo0aMzOo3BL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'C60', 'Ag']? The composition of the perovskite layer is FASnI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.768|212.2|0.42|7.07|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|fMMokWdaEctRBu-GhlEatUII0eGk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -Br3CsPb|CsPbBr3|CsPbBr3||1.558|76.39999999999999|0.841|10.2|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|fMNcQEfiR_d4A8IH9it66HhFb2dq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|165.3|0.578|9.4|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|fMVD4PQ_N-kmxKSUI2WKvBT1A1Gn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.32|2.2|0.26|0.07|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|fMfzl3Qkcgr59JyWzSdh92UoNQBi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH97I50N36Pb20|CsPb20C19N36H97I50Br10|Cs0.05FA0.85MA0.1PbBr0.5I2.5||1.1|206.0|0.779|17.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00135|fMjv1-PFIkT5tZcoRGLZ_e6-n2DB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.5I2.5. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.96|241.0|0.78|18.04|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aay0414|fMmYpFZ82m5UpwRQpAnx_ZtHl-0H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|152.89999999999998|0.56|7.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'PDI-C4', 'BCP', 'Al']|['PEDOT:PSS']|['BPTI', 'PDI-C4', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|fMvVtt-YTk0rf1Mo97Jb7iUdKZ7K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'PDI-C4', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700484|fMx-EHllcw7DRLzrxTQXUgYk9v6w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|2.100000223925397|0.4|98.0|0.24|0.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.08.022|fMxSYSDewv088fG15TYqRwv01_jI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|180.2|0.75|13.08|['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['ZnO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|fN42NH4TnUcnT6p0_IJ0nzeHEMbS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.500000159946712|1.1|229.0|0.745|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|fN61QcDx2wk9sYpohVB-5yf_geXb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||0.99|141.0|0.563|8.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1364/PRJ.393647|fN7iwXIii5IB5YHi9XXK2MaoAzw6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -Br5000C4741Cs250H24096I10000N9091Pb5000|Cs250Pb5000C4741N9091H24096I10000Br5000|Cs0.05FA0.87MA0.0782PbBrI2|||||13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|fND0qs5y4f735KuVqoLfLIdzxmyZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.87MA0.0782PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|228.9|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05689|fNFQKqAN8o3zbMmspGBokEnQAvNS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.72|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.09.293|fNQsaert3KhWhSjWBeIFfLjblivR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.69|14.77|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|fNa9tgEXAVGPk3fyfjH-Bt5g8nko|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.13|139.0|0.677|10.64|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|2D|https://doi.org/10.1002/adma.201901673|fNeruMPe7OcJQXOIfzFEobTo2keX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|220.3|0.736|16.71|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|fNik_VpdYvsPUsj2Si4moN38X4Qd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|190.53|0.534|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|fNnOJbhz9i7gvIcBzoLgGIx56HIt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|94.0|0.626|5.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.11.025|fO1APwDlO2xWuNxENlrhl_Fui8Q3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.132|216.0|0.68|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|fOBdABje560z3NbGEuddYLdAJjGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.105|207.0|0.753|17.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-QDs']|bulk|https://doi.org/10.1016/j.scib.2019.04.009|fOFP24GnGNAYbYgx_knQaDdSw9b2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|73.7|0.42|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7-TH', 'Ag']|['PTB7-TH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-8932-4|fOFUiIEZJKQYYxV-kZM92OoMhWNo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7-TH', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.396|69.3|0.713|6.9|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|fOHFNfpAoTSB83T8-OcaNIivpqnP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.8590000000000001|177.0|0.64|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|fOSnUQvLqiGPKWunIp2VSkDFlGEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.8|0.73|16.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|fOTeyVwhBrTAws0IQjpyrgrHy0f4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.029|214.0|0.73|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|fOXE4y7Jxbxvz-hD_3b_QO5bmRPC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.12|209.7|0.66|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|fOcZWmYJ4q5BPXo237J43xmH7jMk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|135.5|0.47|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polyrotaxane', 'Au']|['Polyrotaxane']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.eurpolymj.2018.06.005|fOm-_Sr_qZFoTqUdCtbvJCZgb9hH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polyrotaxane', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.3|0.737|17.71|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|fOmGJlqTU8cQSI41i4wso74xPh1H|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|212.3|0.632|11.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']|['DPPS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.136822|fOqsBamNO8i0K5JWMYRSekKYB_uk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|167.3|0.68|12.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01593c|fP4VREZkqYXZmzenjh665b-6H_U8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|216.1|0.7859999999999999|17.63|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8TA08499H|fP9XSy-sam_F7JJUOKLRWxm2l6Iu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|212.0|0.47|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.028|fP9l_E_BO4STUIhw_VUZWzVudUWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|75.0|0.53|3.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|fPJAZrRRXCzURzGUpHRXAJWANhDK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|219.23|0.76|18.26|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.7b07754|fPMAZ9bvmpDbyWPVaa_LholaJY3u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.6|0.735|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MUTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|fPTgnaJdeoZ5e_QptdFRhLGUbHQz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.5|0.763|18.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|fPX6VSGqz59U-Ax57ohyYGVMAP_X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.81|104.5|0.6659999999999999|5.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|fPkO7ULxofgSP1JshfJdQg1rai9-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C122Cs5H640I291N214Pb100|Cs5Pb100C122N214H640I291Br9|Cs0.05FA0.92MA0.3PbBr0.09I2.91||1.09|202.3|0.755|20.23|['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PEG; SnO2-mp']|bulk|https://doi.org/10.1002/admi.201901866|fPvYVEHXMoT79gFMdsDrF_Ozt-yP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.92MA0.3PbBr0.09I2.91. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.12|222.8|0.7509999999999999|18.71|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|fQSyybdXBu0ulVqgewaNh0Z6271W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.6|0.764|16.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2018.10.025|fQchrnkZj0V2PdmhTMUqDcl4XKOt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.0|0.64|12.2|['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cs2CO3']|bulk|https://doi.org/10.1021/nn5029828|fR5R9_LSw2FlvlGLReyXu-1ZG5Ze|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cs2CO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|110.0|0.4|3.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|fR8F13BchQUgVpS6CdPN8FjyNGfq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.38|257.1|0.491|4.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|fRGsT4E8z-xnyw4YE7BDRL52z88H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|201.3|0.574|11.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta06813d|fRHdfrUU0OBo_uLfC0jpfSIb_xc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|186.8|0.635|12.4|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|fRI0rZXxhPzDlNcMLS8Nhv1bdTXr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|146.4|0.55|7.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5026797|fRLhLb5sEmDAGvwxcTtpkaOsEs_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|155.0|0.36|4.7|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|fRO7qTp9XCX7DHFWfqttm6RKZq7o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.016|239.2|0.653|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanosphere']|bulk|https://doi.org/10.1039/c8tc06218h|fRRTof0sMklSDqKh8_GOLREuF5NW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|224.3|0.649|15.58|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|fRSLBVQ5CL96P5tljFQ-b533o7OG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Au']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc06290c|fRc3T5k0jhaAP3whVadJ2v0ViqPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|206.1|0.69|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO', 'Perovskite', 'Carbon']|['NiO']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/slct.201700776|fReck40SjefYjPykD3H-ZtGl3eyo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.4|0.73|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']|['DR3T']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|fRmjYzwatNSDY_KkLYlO2DnAbWZD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3T', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.019|10.4|0.7809999999999999|15.7|['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.04.021|fRxMwGQC7lNOwp_UKxWJhaN8iKvF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|206.0|0.682|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|fS1fA5dydeK5cqumJy3OR-IYQVQ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.5|0.79|16.34|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|fS2yptR22fFMr6J-ZasMexDDj08V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.97|173.29999999999998|0.537|8.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|fSSGgHXgXbUVJgw_BFe73XJ9TY8z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2185997|fSXFm0KOnrEaMIULa7ReTII9P8G8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|209.4|0.715|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700959|fSXIJI2uZVPrTc0bGEhD3bSab7-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|214.0|0.7140000000000001|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05236j|fSYJcqNsb-sAM1PqevEX_RmnVkeF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.09|223.1|0.71|17.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|fSgXATQra8KkywGD7_OUmt212b6A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|67.9|0.762|3.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:ON', 'Au']|['M:ON']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp04162h|fSiZodiPPHihO8nNbrN-4VxKLZdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:ON', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.012|207.8|0.7|14.76|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|fSkgyxDwc7QL4-rgNt9yVik6PHPZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.1|0.61|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|fSooBOgrCn1m2Q0Y_jkh_ogZo5g0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|75.0|0.45|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|fSvon-AkeiWtapm-52q-83s4d1tD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|200.9|0.607|11.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']|['DAHI', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.8b01650|fT2e8Cw0occ8g9se3n0LdcrNaf-I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|176.0|0.77|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1002/adma.201504168|fT9hBJU8sYulnXOEYK51dNnxeBHg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.9|0.72|11.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|fTAXkrC4rW2GFWs0pNtx6EnrU1X-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|191.0|0.74|14.18|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|fTBfoAFsImCZTq2F2ZfmESzZ4oR6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|235.0|0.78|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PD-10-DTTE-7', 'Spiro-MeOTAD', 'Au']|['PD-10-DTTE-7', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800232|fTTy_56AelG1MQ88CkFqhJ-1jj6r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PD-10-DTTE-7', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||14.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'Ni', 'Al', 'MgF2']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/advs.201700675|fTgQqooG98dcd3BCQw2hIAp3LNAl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'Ni', 'Al', 'MgF2']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.09|235.6|0.787|19.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.024|fTh6wpnLFcYO5dRFEUVjNqj5CO_s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.752|201.0|0.599|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3,4-spiro', 'Au']|['3,4-spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.10.014|fThaykeeCxNYPZ-ftird1_Aukwh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3,4-spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.87|179.0|0.643|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s12274-014-0662-1|fTitFMlLnqdQg9WtOGoya3nEfTel|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|126.0|0.62|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nl400286w|fTprqugsVlQrnPDR9BA14m1MmKcS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|161.1|0.63|10.15|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201700184|fU-DEs1qWz35nDExmkfXlpmT8TRP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.973|163.95|0.385|6.1|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|fU-TkYhSqiBWbjb5pDbPBfLA-CBl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.0|0.77|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DMAPA-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'DMAPA-C60']|bulk|https://doi.org/10.1002/aenm.201401692|fU1vYfYU-WQgSoy55jnpKBRUeuxR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'DMAPA-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.662|12.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01136|fUJI6i4zHkcXoJ3xXzN1TfPYWEE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.14|234.4|0.828|22.13|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|fUM3fQyt-klz5vNjT6Y5k-T7mkN_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.5|0.68|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr05974g|fURkNsq3bIN5tFqTReSvgiZ4cKwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|156.7|0.693|11.51|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag', 'CsF']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.synthmet.2019.116197|fUTkht75tpbPvXBlnIM0Qty95MJW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag', 'CsF']? The composition of the perovskite layer is MAPbI3. -Ba2K18Nb19NiO60|K18Ba2Nb19NiO60|Ba0.1K0.9Nb0.95Ni0.05O3|1.450000154615155|0.97|1.4|0.366|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1367-2630/aaf8eb|fUXDg-vgrOv9HQYznuZ34i3fKb27|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is Ba0.1K0.9Nb0.95Ni0.05O3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.1|0.58|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800282|fUgxOOjie7wSTWd7rupXP-ixInKE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.967|176.0|0.523|9.07|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01154|fUpcEUNV5NKN9RTdSrhWDjpmBfhR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.074|191.5|0.804|16.54|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||fUzgWDoBeLVTsZ_BKjTp-cEn_IXH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|128.0|0.27|2.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-019-2556-8|fV7M5cdlp-BedTBnHyxNLxtALApo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.55|202.0|0.606|6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|fVD9IuulpONQvCoxTE33uC6Fd8Fy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.280000136487861|0.54|220.0|0.51|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.015|fVVLzdeoNty-Cdl_U6cKG3E5gaxs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.1|185.4|0.738|15.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra10009a|fVbzHAL9DjcstW7YPHFFsS7B2DUR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.79|155.0|0.7|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.01.132|fVo9KOFNMVTDqD-j3jNFAA7sFx2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|148.0|0.48|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|fVquuStsxmK2R1SpvYUY89gmdi7Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|173.1|0.25|4.27|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|fW2tf935nPrluCZtffpmf-bkT6Xx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.688|123.39|0.625|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|fW4wc0atS6YBsKI1mAYMHA7N0Apg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.121|185.2|0.78|16.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cplu.201700471|fW58e6FnPrQeqbe-3zzGKOoftOTq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|223.2|0.728|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b04469|fW5DxsWuT7vbgas1RhRoSmQ12HeE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|135.0|0.55|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|fW8Qgm29zP8K0uak1uMBAQYdTZ9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|201.0|0.62|9.3|['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|fW97LmtJXSm5gVchePrHMOtBqwLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|224.0|0.7190000000000001|14.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|fWE0Rs-rvAIsRe1bJwGMk0RMGsal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH23I15N5Pb5|CsPb5C4N5H23I15|Cs0.2FA0.2MA0.6PbI3|1.6300001738087604|1.11|205.0|0.75|17.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|fWQoUI9SQd2SIrW0RI6aXIdf_S5p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.2MA0.6PbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.12|239.1|0.78|20.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.06.004|fWXZxUeDePfsq4o5V2IUV8UnvEpg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.083|221.4|0.72|17.04|['PEN', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201704836|fWcBjEQo0iOyP11uOhR-cU5aQK4o|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.9|229.7|0.684|14.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.047|fWgMtIHweCoEfTcMoOHf-JVD7T9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008||||10.22|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|fWm7Kpi4K5YhcVlfprCpr19Vp6bD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.06|217.2|0.741|17.07|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|fWtqTAJs4h1UJtQdF8HIi55QIPzh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.5900001695435149|1.107|222.9|0.758|18.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7cc07534k|fWxVvyc3xdNbLqmYuxCzRnYElVl2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.0|0.733|16.08|['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|fX-Cfu9UGJxchMYJCuhvvYgNvbcd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|210.0|0.47|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1557/mrc.2018.231|fXC7_KBi5njTq3n1rQ7DcbuWgXUe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.51|1.5|0.415|0.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'HTM', 'Metal']|['HTM']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135173|fXTfDbaE6-gipXLqnfe3veNj6Tma|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'HTM', 'Metal']? The composition of the perovskite layer is MA3Bi2I9. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.103|217.5|0.71|17.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201701864|fX_5KzwLB56nWqeoCG0VH9m_Hxa1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.1|213.0|0.72|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501310|fXdb0Lox1KBUzOXjbqy25PKHJ7Fq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.92|189.2|0.8079999999999999|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']|['iDM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en13112897|fXe3OcfFJ_IMgFkvIXShJPiwnITm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.0|0.58|13.5|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.7b00526|fXeF9jF0lWfo1vGYxvt-y7luXDnE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|128.0|0.636|8.23|['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'PCDTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5796/electrochemistry.85.276|fXuI3-jV_ZcLBLZnpNWCKtNp7KZI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|97.9|0.45|4.2|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|fY4V3VxTmJa6KhSQVjmQZO4PgEyW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|200.8|0.67|13.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12274-014-0592-y|fY4d5UCJrofAwrTDrjkYSauyWtrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.29|78.7|0.7|7.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|fY7L846BZsNAXW-E7l43n6iJ8ADW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.82|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|fY9wJbOcxL651SkVX-6yQTSqWqP3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.7|0.78|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801496|fYA_C9MSm_o1HLVoPWFW2YAbVTYV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|228.0|0.44|9.45|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra02637h|fYFlbAJ7HZr84oWcGJDKOPvskYyb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|228.0|0.7|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|fYGqkzSngDH5SB65U6y5zLayQmuu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.135|203.1|0.7240000000000001|16.68|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.059|fYHYc9d8Q8vz86TmJey6gZOAaJVO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br600Cs200CuPb199|Cs200CuPb199Br600|CsCu0.005Pb0.995Br3|2.2700002420526912|1.53|69.7|0.792|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|fYLRE-WbFI9oaOi71lKJHBy-Edw4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsCu0.005Pb0.995Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|114.0|0.433|3.99|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|fYOKngCXQED_jv53Aey6I7UtoYRi|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|161.70000000000002|0.7120000000000001|10.94|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|fYPOi4lAwUblmcLmHURMmrwqxbvE|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br78C185Cs10H960I522N365Pb200|Cs10Pb200C185N365H960I522Br78|Cs0.05FA0.75GU0.075MA0.10PbBr0.39I2.61||1.16|197.7|0.652|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|fYS-7kSyzXLAvorc2MvLQjP8mP67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75GU0.075MA0.10PbBr0.39I2.61. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.076|187.78|0.761|15.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||fYgdBmsEwM5-xHAholGNKwunpF3s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|109.0|0.23|2.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|fYghaLyYLUiYLhQnnis5nTQBqja6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.15|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|fYzadv2HPa6moyI8bMmzmbWglf8e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.27|146.0|0.75|13.9|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-np', 'Sb']|['NiMgLiO']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.9b17464|fZ7-QNRuiWNNS8KtQckgSlKPJGMi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-np', 'Sb']? The composition of the perovskite layer is CsPbBrI2. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.768|154.1|0.698|9.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|fZBej2E9oO-NplnbEJI0d8L1Sd33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|157.0|0.5429999999999999|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.04.015|fZeXh1hehvKByWxPHyUyH_1AktMi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|182.0|0.74|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.123|fZmGNeKjwdFgY4kJ0909o4oL4bCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5|1.6100001716761378|1.05|205.0|0.6459999999999999|14.22|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b00830|fZnHMk9xHsuHiReRzPnfgjwBuHmC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|190.5|0.66|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|fZsd_JR7BfcwBVeIdU477D9_WCGF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br13C95Cs5H488I287N177Pb100|Cs5Pb100C95N177H488I287Br13|Cs0.05FA0.82MA0.13PbBr0.13I2.87||1.05|229.9|0.736|18.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903696|f_DEj5GuO0gWiogAao9N0arCGODM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.13I2.87. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.029|211.36|0.757|16.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM5', 'Au']|['HTM5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00271-z|f_PvsEEeBUOzgNTFCsQIZDBkloRs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM5', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.0|0.68|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.07.050|f_YWg5zFuRmeZi0py8ztFJxw2ZDz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|f_cKOxztdq5CfBpFYXumZOlOeA2l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|208.6|0.74|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b03586|f_nC8KqnRZCZ0VBcl5Y764laTSrM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|218.5|0.45|9.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|f_oq7mowTdjgX0hIRiFS45DboYoa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.77|19.9|0.3989999999999999|0.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|f_qXZ94iEIad5AunV4AfL5jr2Bvi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|145.29999999999998|0.53|6.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|f_rnQfe0_7nP2-I84QEa2saQZuqE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|229.9|0.758|20.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|f_woBlrRH3QNVCXaVvEDUYAvjJjj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||202.8||10.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nj04448h|f_zz2HNHGU_aXvjQr07_I0wUrdmR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|134.0|0.53|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|fa0K8v4PIU_bymLkggddgng79qXq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|175.0|0.54|10.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|fa0vwGzTLzZyBi9s9NkjMnfzWvlS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.085|233.0|0.83|20.98|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|faDFkHcZInU8B3L4jNHcDM0fn5xp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|186.2|0.48|6.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201600074|faILNLtbOGgI5bFzNpP-qmAYwJsx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|150.2|0.455|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00125h|faUFyFpODrJosZsq3lvHZTkb33ss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|117.0|0.43|3.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5029198|faa-3ZiBOv83cc0LwRNikzJka4m4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|133.6|0.3379999999999999|3.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA', 'MoO3', 'Au']|['BTPA']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.6b06291|fadLFDRb5-hZ4E1PrCG9KYuVU7h1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'BTPA', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|232.5|0.44|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|faiuGmu70V04SNVgXwj1l1FF6Zgz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|208.9|0.73|17.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|fawQ8ct0mPGRjX8PTa8IOKqnfp5B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|faxdkmhTpHPRj009El01S93giq1B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|139.4|0.575|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|fb3dZYh3EQJqb2aJMzu-LZwzrfEu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.67|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/nature12509|fb5kpGpntJ9TSmaQDXNIFj4oYWFK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H8I3NPb|PbC2NH8I3|(DMA)PbI3||1.068|173.0|0.7|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.04.024|fbD_Yg3Y68SAFdbFuVJFfEkcQQ9B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.0|0.75|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta03710d|fbJSZM1kvQMxsMe9gwie0fVvyviH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.96|188.2|0.68|12.4|['PEN', 'ITO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']|['Graphene; P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|fbVQPGhlD2hkjdIRvmp39jMsvWuI|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|90.0|0.71|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|fbbVQpnDjE1SzKJv_tpHKKtvJ5A1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.1|231.2|0.71|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|fbhdsFW6bVWPCFcyJvmCMTsESj3w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.0|0.56|11.6|['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np; TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01331|fbjzsmOhw6zSPBN4bG49_VgFnS9T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.048|211.3|0.7120000000000001|15.5|['SLG', 'ITO', 'PCBM-60', 'EGME', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60', 'EGME']|bulk|https://doi.org/10.1016/j.nanoen.2019.104098|fbnSFxLXjaxWByvt8MXadwuCT2oC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'EGME', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|208.2|0.66|13.39|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1063/1.4989560|fbxLgMR0D2RN_AoKHOUqzLLVeiZ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.14|35.4|0.677|1.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|fbxP3odREgMQ-GBonFoZ5zrNMITY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|221.1|0.58|13.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b02323|fcDoxpNAhLV0iASZ_wlwJYhNdrd0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|0.964|220.3|0.75|15.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|fcEz4PUyYAt0aIccfDZ86zNLbbJf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.02|214.0|0.58|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|fcSeo6e-BbX6etk0OkGDdDIHtgrf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.075|228.03|0.7|17.21|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|fcUEIYXjDUhTdAotNEq2cR2cwYIZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|217.0|0.68|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp506991x|fcVnIXJ4If8yUDuAlhd1Wft_niIr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.51|53.2|0.579|1.57|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|fcWcudkC21qX-pH5E8u1Ct5ZJV57|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|196.0|0.66|13.3|['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b09322|fcYMygL_3lgajDPVkoJPvPat45wf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|225.1|0.7829999999999999|19.5|['SLG', 'ITO', 'ZnO-np', 'ATAA', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'ATTA']|bulk|https://doi.org/10.1002/solr.201900489|fcciZ0zpPl5XIq6JBPy12VknBI0R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'ATAA', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.01|192.8|0.61|11.84|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jmst.2017.11.003|fchjP_Qagwn152drHAIiiFOy-AK1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br475C4664Cs332H24655I4525N7994Pb5000|Cs332Pb5000C4664N7994H24655I4525Br475|Cs0.0664FA0.666MA0.2668PbBr0.095I0.905|1.6300001738087604|1.103|240.2|0.7929999999999999|18.57|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|fcieHNDW-1pFl_GOBqhRsN5399Or|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3||0.635|145.1|0.525|4.84|['SLG', 'ITO', 'ZnO-nanoflake', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nanoflake']|bulk|https://doi.org/10.1039/d0nj01559h|fclUUKPs_DWkwrmD-DUZE8tXBFIr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nanoflake', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.0|0.742|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2015.06.046|fcuBLK6fjG44byTyBBQEVCby_mgC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||1.01|199.8|0.696|14.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']|['NiCo2O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|fcyeeisMSDJWkAA5fnvejgPb7FUz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.11|228.0|0.7859999999999999|19.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-019-08507-4|fdAr9AH4zre7Hby2Ft-fECIJJmpG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|134.69|0.6|7.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.203|fdkfZtZM5TWzwAf81gy6-vGdIrIb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|216.0|0.79|16.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PMAA; Spiro-MeOTAD', 'Spiro-MeOTAD', 'AgAu']|['PMAA; Spiro-MeOTAD', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201902474|fdnCZ7gSL-yAJz5kdYH-bj1kvU_D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PMAA; Spiro-MeOTAD', 'Spiro-MeOTAD', 'AgAu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|16.0|0.55|0.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp', 'C60-SAM']|bulk|https://doi.org/10.1021/nl401044q|fe5R0sJEjjmGisdC91bBJoHlYdlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.03|223.0|0.74|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|fe6JCHTRWvTjy8ICEiMoH-dUEIny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|211.8|0.483|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|fe9-jo0YVuv75Fn8nnOeskUyQmgv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.98|129.1|0.59|7.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900233|feAuKPoIpt0zjDWiNOgfakLHU_-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.57|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|feBk0gmoXjuZRa9eAL7Kco_sv5P8|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|220.0|0.557|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|feW4tzqyJTP9vxtSCUAnQcDX6OZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.4|0.66|11.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|felQSiQoQuwNEV0hk1xGaDsMgIbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|204.0|0.73|12.9|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['Ag-nw; PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|feofhNvm7EEm0JBmb7Ybb1Jb3nIp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|242.1|0.61|14.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|fey-HjnCxHWIITLaTJzsRxsK7YIN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|210.1|0.731|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03658a|ff1OZVTaTLC2dZD5KJLHHSAdfTOh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.03|225.3|0.77|17.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901352|ff3h85Fg4XsMBj48JRWnUOoxqwSY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|150.0|0.67|9.3|['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501406|ff4Npj1GuW7dfr0tj9ZOwe5K-kzs|a perovskite solar cell with the following device stack: ['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.4|0.69|15.63|['SLG', 'ITO', 'Cu0.67Cr0.33O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.67Cr0.33O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|ff5QLGSP77G846Akgx2y1YjaHTEA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu0.67Cr0.33O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.0|0.43|7.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2017.09.100|ff9Pe_s3UImthIm8Kw9uy-E2FXGJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.91|177.0|0.743|11.96|['SLG', 'ITO', 'BTF2', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF2']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|ffAwb2jOFBNQcwjywM0hRT_L9y6H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF2', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6300001738087604|0.96|193.0|0.74|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta09967c|ffFGNqrmB3CXzVDdsfFhVS48cAir|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|209.0|0.58|13.38|['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'MgO']|bulk|https://doi.org/10.1002/cssc.201500518|ffLMxksd-rKDzwmCYzS41ROVZA0_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.1|0.7809999999999999|14.5|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|ffOPm8xerBmNwSGaDllvdqF9Rs7a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.85|139.60000000000002|0.66|7.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6ra12205a|ffQdB231zqnsa8Z0kiJ6uEWtMLSK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.906|202.1|0.713|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|ffZlnL-2Fkng2UO-QTT-aCZjcuCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.77|119.9|0.49|4.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-017-1264-6|ffegvUdk9bEciOJqAXsrCFbpEp3u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|182.3|0.61|10.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja504539w|ffhdXJILTv7E7EMoiFIKTmUSDhyx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.691|142.0|0.43|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.108031|fflJurwKuQkVh6Ma0gAAxtz2tjzh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|210.0|0.57|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|ffmXqIxlY_IQcxa75U_e0nKejW77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.5719999999999998|74.5|0.8320000000000001|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|ffrVM3n3TLsqGdQiwuLiZHDyWCki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.08|204.2|0.73|15.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']|['AQ310', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|fg3MCZrBhelhUQrGX5BgOl_kFPGl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ310', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|224.0|0.732|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|fgCabzw0MFIooljG4TwQRuEoJabp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H661I459N159Pb156|Pb156C20N159H661I459Br9|(NH4)6.8FA0.15MA0.85Pb7.8Br0.45I22.95||1.0|185.4|0.645|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|fgIGkjj6Ix4sYWms3h2tk5eyEiq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA0.85Pb7.8Br0.45I22.95. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.067|206.0|0.74|16.29|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06595|fgJC-qT9JubPjk_uyfDR5fJ607FU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.05|156.1|0.57|9.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|fgKEnv8GUdIuY82PTXqysybqyjM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.9|180.04999999999998|0.75|12.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||fgKi2pGnDBktdpPQSiw3gPYXW8nt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.7|0.78|13.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|fgNL6okNjmReXURnNf5pZ04XEm9O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.6|0.67|15.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|fgQiNMeepOtsCTfOOPfkTFCK9Y51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.972|210.6|0.143|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|fgUWOZ5wsHlYBYtYNS4TWunZE2ZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -Br3CsPb|CsPbBr3|CsPbBr3||1.398|46.7|0.69|4.39|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['Nb2O5-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.069|fgVqaLurDlqWTMD2oksOSY22Y2zt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.04|248.2|0.7340000000000001|18.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227586|fgXht57lRCTstn6F1g0l9viHMft5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.108|230.8|0.804|20.56|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|fgaSYE2DsM1PE0HG66ciDoLZO6xw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|149.0|0.35|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV4', 'Au']|['COPV4']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|fgd9IqfiSLK6AUl4XxmnVg3xSh62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.93|165.0|0.53|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|fgui18y61LyhRKQTY9AADcE0Q8bZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|0.72|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1039/c4ta05196c|fgyxjfL75VyolxNJRWFjp9S-iYrs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.6|85.0|0.3|2.0|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Eu']|bulk|https://doi.org/10.1039/c9ta00551j|fh3nOB5Yk_l9CnxHVz4C9pfgMuae|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.12|229.0|0.8|20.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|fh8jhwWsC868fnSSLcyMaaEOLKux|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|207.6|0.52|9.55|['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|fhBWyOVOvbheG_AoLCoPMXd6y0Xw|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.96|207.6|0.63|12.56|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|fhBnkIGfPfSUr0LkdCYNw6CPqm3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|210.0|0.77|17.0|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|fhGPW1Zgpg8UInLAwkqfxj71cKnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.73|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|fhKoS13j3qkA3Dk3eKNrZbH6XHH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|225.6|0.693|14.59|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|fhNn6ULtJXQPnzo1r2IsmwVEVOUG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|||||3.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08347a|fhdaB0zBu1BY88L-kvt3sd7CbdN9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|160.0|0.664|10.69|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.045|fhfUtWrDXsqdHunYytt_pehVQwj4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.4|0.75|17.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|fhjUoA3-OzRY_6uXXQ7G5uy41NOu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|173.14|0.6659999999999999|11.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|fhm-3VTgLXLASJMNkCcpR6e2uKqe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|213.5|0.76|16.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|fhn0M19_vdF_eB0EZSePu2-NNC1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|196.5|0.639|11.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|fhryhI_0aNxQlqEg7ICGzk2zSYeY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.99|191.8|0.76|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag', 'MoO3', 'Back-reflector']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|fi0DxN8fmLPLj5DI56ottt6WikYi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag', 'MoO3', 'Back-reflector']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|226.0|0.74|15.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|fi4y7odTsatRB7Dj1Gr4ElsIX2JO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|218.8|0.763|18.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701117|fiRxtFNUfIrRvRn35LBntqN4eSlJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|200.7|0.7070000000000001|12.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|fibxsJ2lLY2TI_-S0e3Kf-5Br0t-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|232.0|0.737|16.6|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr01927g|fiqxD8ZKj8Z5b2xC5aZeX6befCNN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|232.3|0.75|19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202001788|fivOHeAOL9rkHtF8ki-UR1h_Rh4I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|222.0|0.71|15.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|fivXwRmSP2cguLy-WrRQhu8Plx0h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.99|88.80000000000001|0.613|5.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|fiw_sODT6Jk_929KoSCVTpid2U3p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|178.0|0.507|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|fiyrmrefVbGWvMwXHrF9H88glLMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.87|170.2|0.6990000000000001|10.35|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903751|fj-XF22YfuhXY2xTQkIk9EyePG31|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||17.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|fj3NbnrtX6pGX1hZFUDXNnM2C8zq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|56.0|0.36|1.0|['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']|['CuO']|['PCBM-60']|bulk|https://doi.org/10.14456/jmmm.2018.13|fj7hBjeGO2zBHG4rxG12KJancW_H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.06|237.9|0.682|17.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201906681|fjAg9yDx7P64vJX_jNuRwulvVDZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.895|2.55|0.24|0.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04924b|fjBJd1wJ018ARDV6t5JmwzVO4h6g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.747|114.3|0.238|2.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2015.09.035|fjJwj7v_zZIDz9pYHM0JXYqoZtGB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|216.0|0.664|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|fjYOnPayeB3XuhuGamJ78oUmMohk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.500000159946712|1.08|195.7|0.775|16.42|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152887|fjaAKIWfKYY7LOiWbZ3SMBVElSkd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.5500001652782691|1.12|226.0|0.8|20.25|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|fjedaSXPbpQrSgDJkLh4funxINzx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|159.1|0.758|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|fjfWI1-7OEwCTH8sQ06Wb7-8qsb-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.8|0.7|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00059j|fjopEirCG-vF0DA4vGXVi0-v2MUA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.769|10.26|0.415|0.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|fjwjH2dOEYk2YZbxLSOwnEkBwKRy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|196.7|0.52|10.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|fjzV1VST_IqjKcjkgpucsq1pAGeW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.09|217.0|0.69|16.3|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|fjza8s-Nylr8VC7DLLZoBLl0NaqR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.0|221.2|0.75|16.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|fk75LPHH_gXst1hVL372hM4Goy8c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|213.0|0.73|12.6|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|fk7yN8jHEL-Z8wBMIEaZSBmRG65X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|138.6|0.597|8.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9091220|fkDMD1I5LhoRuarN6sBVnkLyejHl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.380000147150975|0.82|272.1|0.7609999999999999|17.04|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b03662|fkKdQtLD8qHz_KCEyFGoHpAzxE9D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|222.0|0.76|17.7|['PEN', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105552|fkVMh36cYdlbEqluRtaomwzirnpn|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.08|231.1|0.7140000000000001|17.82|['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-05760-x|fkWipFV2pzA190ukzn9nzNjO-u1L|a perovskite solar cell with the following device stack: ['PEG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.290000244185314|1.44|82.5|0.649|7.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C8TC02754D|fkgPWiQHtlxhi0i-tYnU992XUR3z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.127|236.2|0.777|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|fknpmtfqaoeEZNy2OdZT404JQFzS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|173.4|0.67|12.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['ITIC; PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|fkxjMoUbwA7BUOVR5WU4q0nsk3Wi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6500001759413832|0.41|6.0|0.42|0.11|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acs.jpcc.6b01728|fkzDrsSA0qkZk0tOrjfitLZrLrc7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.2|159.0|0.401|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|flFbnNDFoYaFDDenZ7Pd3jbE_B2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|232.8|0.61|13.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|flOSHiz08HnwQGpJ4PGM6z5Wh5vh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.09|227.0|0.7959999999999999|19.32|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adma.201800515|flPG7Vue8yJvpO1A2B0pQ7ixVCw8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.48|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700164|flWveEuCtTXx1jd58fnUuFgapZbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|216.5|0.7659999999999999|18.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|flnV78ygUgPpxGQxGraWHVsyong1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|139.0|0.74|10.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|flo6DhpTXuRX1ywHFqprGdpLYFfM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|212.84|0.69|15.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04919j|floOMJ2vPgyaNAWjDjbEOaKLjxpO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|150.1|0.41|3.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2c', 'Ag']|['PEDOT:PSS']|['Fullerene-2c']|bulk|https://doi.org/10.3390/ma12081314|fltTqtd5KIMvCwOrOZYSTDXKl615|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|192.0|0.57|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2017.09.100|flzUQmDFxILt1MwXiy1FYY9DO0dF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||||19.63|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201803244|fm5ROqBaCRyV807_KQoIHgPi4KfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|fm8uAikD_YcyvP2HJ0iABBfuWYK9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|54.0|0.5|1.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|fmCzezKUiw-qtwQeKXO0rLnQHZvd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|212.0|0.7509999999999999|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|fmG1m0tRfmt_u9AwiFrCCGJfNS8M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|180.9|0.649|18.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|fmaYqMwBJBMXzOmXph33L4CN-J6F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.0|0.6859999999999999|16.28|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018807|fmgL9zyuFJx4cxtL-5mTNeB_8UpG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|122.0|0.502|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']|['TPD', 'HAT-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|fmsMEMClOFH65U793nEdHi6xxvqM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|fmvE79dTIoTjmQ5po5ldNElCaOsJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|58.0|0.345|1.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|fmz3py-w3yy_hrzN5r51fyK72qBb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|1.1|190.0|0.65|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|fnJONH1aTEPwgvoup-GAWO6a0Kzw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|57.400000000000006|0.55|2.81|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.02BF05|fnP_CbgLC46i7WqEa2aiG5QrXR-w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.4|0.54|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2017.07.005|fnXiPmF9hR-ME6hYr9VwgOTOGgCg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.8|0.722|16.6|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|fnYt3OOcpemAyJHjyP1-LhXrQJgy|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|165.0|0.55|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02734|fneH_ufJW70OiKERgMJ3jToj47f_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|fnfYdcNHy-uErMLCfyuqeota6H1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|218.5|0.7709999999999999|18.81|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|fnlTSqsFjYNc9XHuUCscx56l1Isd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|222.2|0.69|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.11.030|fnraf9xYlRfu55WoHUIkpj1NxV5x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|1.03|11.5|0.429|0.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|fnt1BA6gqqWsFU6epfgcbRd3BzMX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.02|244.8|0.696|17.37|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|fnuDXzvXz9rSQocDqzW5Hvlw_gl-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|183.7|0.57|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.11.058|fo0v5r084LkpSPYMq5bYcOrdddMu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C91Cs9H455I288N182Pb100|Cs9Pb100C91N182H455I288Br12|Cs0.09FA0.91PbBr0.12I2.88||1.098|244.2|0.773|20.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|fo12iTRbBPRT2LFKqls9GTGqeFuO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.91PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.063|210.0|0.77|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00129|foCEyRGXhf5FebUoTwXvKXKdyGNn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.01|212.9|0.665|14.64|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.0c00038|foJFNmQs7DZVnh5Du-7DEcH4Ff_p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|131.1|0.325|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|foLD81C0xO02tzZJt6S9US_Mm6Z6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|163.0|0.68|8.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsphotonics.7b00138|foMrY4NiK7tsRC9w1nOpTznBC6Ed|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|207.29|0.563|11.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|foSN1adaB7OzVZLeE_PYq4FQzN3R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.912|213.91|0.545|9.5|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|foXKpdJuwO-TWkwGAH1FMQ3Xl0-T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.1|0.706|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|fof5Wy1K-4zW63wgKoc5D5NVMKQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|215.3|0.63|13.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07511|foqiFAfg-6muvsS-LdFvZES3jVpx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.0|0.78|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|fou4iuqF_twsMndwlV-io8SDFbtu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.5|0.6609999999999999|13.86|['SLG', 'ITO', 'Ag-grid', 'AZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.10.101|fowu-yu0EGGvFxEAr79-4sTJG6vf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-grid', 'AZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2200001300899923|0.06|0.2|0.28|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|foz-x6ei3UTnJa99OH2icHkzaAa-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.677|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|fp1x23eXcSHG3heItBK_6O-oNl_a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.0|0.7070000000000001|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|fpBSvRrWcdCKj2i-I9fLtUUDiQ3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|218.0|0.546|11.79|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'CZTPA-2', 'MoO3', 'Au']|['CZTPA-2']|['SnO2-c']|bulk|https://doi.org/10.3390/nano9070935|fpDn6xJKCLI8w0wKMqvc8CEPR294|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'CZTPA-2', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.35|72.4|0.47|1.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01889d|fpE-rtPpFQiPyFhS3bD3m43sQczw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||1.04|194.0|0.74|15.2|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7ta02405c|fpMc1g3gxDY9yXIMZdCjIrnpB92g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.01|86.5|0.636|5.57|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/s41563-017-0006-0|fpOi4XzKSa_I94ke6qJTmHNQRu6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.5|0.77|16.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|fpY99UzRX6DryS1KM2gepxte_5YR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.09|201.0|0.602|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|fpYmUrTiqJoZ6Nj9Chgb64ApS3ME|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.92|194.5|0.742|13.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|fpmN_EgKiUPADBM7JEaAbneiDmlC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|190.4|0.73|14.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16124|fq-25gasW7ospzgQwiUp6QKVwoAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|158.0|0.6920000000000001|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7691-y|fq4ASEjWDWHAcHJBquztjzi4mYAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H32I16N4Pb5|Pb5C8N4H32I16|(PEI)2MA4Pb5I16|1.8000001919360546||||6.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|fqFffG25hAz2EIfNDn5q4U4QGfZg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|228.5|0.66|14.43|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PDTSTTz', 'MoO3', 'Ag']|['PDTSTTz']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|fqK2zTywdcyKBCpXwEnm_N1NzeXr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PDTSTTz', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.13|223.0|0.67|16.9|['SLG', 'FTO', 'SrSnO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrSnO3']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.059|fqLG3g-XgFYkgMP-uRg1FDxTrpZv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrSnO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.55|1.7000000000000002|0.442|0.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'HTM', 'Metal']|['HTM']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135173|fqMdUO_yfce-MF54zSgz_XuFn9vU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'HTM', 'Metal']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.12|222.8|0.78|20.26|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|fqS3XodlWCH3en-Jyl7vkR1J6SpU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|178.70000000000002|0.645|10.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b11679|fqSfsVzU38P0p5n4U0kXuMAMTh91|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|fqeQzs1oFBKsIA3gul4uMykiudVP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.97|182.7|0.67|11.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.199|fqesb_roAF41vWpoXpmkvZ1SHkHl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|162.0|0.58|8.56|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|fqgPkbno2UrlwnJAiOiNN5pX5Uf7|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|10.9|0.33|0.032|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|fqrLMYyusIkH3iK9C4xmdTIEPME4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']|['NiO-c', 'NiO-mp']|['ZnO']|bulk|https://doi.org/10.1039/c7ta07775k|fr0EUe_pNn5tR5r555CwjWoML6Kx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.75200018681776|1.102|178.70000000000002|0.765|15.08|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.001|frAOjKtsVgpB8XJgkIclqCRdAntf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.08|227.7|0.74|18.2|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|frBDCM665DBaZolfxCT461ucVDvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|101.0|0.32|2.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.03.069|frBVzdd0bzyEgjFQN6u44eRt6jCB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.09|227.9|0.787|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|frGFyhzvqe7jxfbE_C4mVI6C2bw4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.670000178074006|1.151|210.0|0.781|18.9||['PolyTPD', 'PFN']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.202100249|frI1mx-BgI7HW0xgzVQvnB9w6iAz|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|222.0|0.653|13.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|frf1FYhauxxsRVvySknaAPaWFoMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.87|12.2|0.61|0.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|frkdP9QeUCLPAHlww_Oj2qo8PHqE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|205.5|0.7|15.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1007/s12200-018-0847-4|frueLZUdYHwesc3mNmhG-ptGzFgX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1007/s10118-017-1891-z|fsaOpsXmuP2WZuHUkxbvDw5BxO28|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.1|0.8|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.6b00327|fse5wcsdtJVHq-lUM06vd--GQdxT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.2|0.652|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|fsi-6R8gdPDIjBp4kcLk7djT6MRw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|221.7|0.627|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02323|fstKsR_AmVlwx3QcktuZwoPQLGT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|216.8|0.76|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ', 'Spiro-MeOTAD', 'Ag']|['AQ', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|ft6g736xKNy8Sx4c0TaZq3wC7A1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AQ', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|171.29999999999998|0.72|11.14|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/aenm.201501453|ftDDqZD1Bpwc2yxHNcg3z6jv-E9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.8|0.695|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|ftErgPa_SfGG7WQgMIt0_QYF4EVd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803384|ftFZB7fO1QdbLMGi2PRCRhqWHcY0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.3|0.763|16.53|['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']|['X1']|['PCBM-60', 'C3-CBL']|bulk|https://doi.org/10.1039/c8nr00898a|ftKKL-JOAEuKs31w1xUZAs21CtrK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'C3-CBL', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|ftOBDHRe-gaqm9gY_OdpjZ3xXVAm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiI4|AgBiI4|AgBiI4||0.45|26.8|0.44|0.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01202|ftPMQrCcBnJw9U5RMPwhpXuaS1H8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is AgBiI4. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.03|221.0|0.7|15.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8se00233a|ftTWrgaqsUCyvqa0DHLf6hlwTK6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.815|16.1|0.407|0.535|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF11|ftU31JvR8j86h0TYwiHedxotzRU-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|182.4|0.8|15.75|['SLG', 'ITO', 'Spiro-E', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Spiro-E']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c6sc00973e|ftWGNk7nq5UdfiaH0XITxfqGkMQj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-E', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.06|219.0|0.64|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.062|ftbe83fVhH9RqjbE4hLcr1Z_O0Hu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3080002461046742|1.4069999999999998|59.09|0.6729999999999999|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|ftfJihsy27lNAMwspHgzoTmDtXzp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.56|73.0|0.37|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|ftqiSYFmP4ZD8wSGqPWPitY6oWsZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|225.9|0.67|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X14', 'Au']|['X14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.092|fttKT__5JsM2I9G7CrnSYkaYbBuI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X14', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.603|66.7|0.3229999999999999|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.08.009|fttaOuIUDrzMZ2C0lLEruDG_cR86|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0969999999999999|225.1|0.68|14.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta01277e|ftuhoXSoWL2JyC3VLZsmVV2fV_K0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.02|221.0|0.67|15.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|ftzXzX8flerX0fjj5VL5tI14ntoQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|219.9|0.71|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700365|fu8yGIjVcGEh_32yBL6LJ_LJTOgO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|70.8|0.53|3.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PTCBI', 'Ag', 'WO3', 'PTCBI', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5tc00622h|fuPTzpm9Vu4xqRZyR2c3sR-ZwKNY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PTCBI', 'Ag', 'WO3', 'PTCBI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.0|0.75|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra19343e|fuaIXjcCu0eGPYr6kuSUtQDEI9tB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55|1.6300001738087604|0.931|206.0|0.711|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|fuf0eQiOpuBr9CA5--CkHx2J5ClW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|188.2|0.71|15.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1063/1.4940368|furgVj7ijubv3M1vGW9XlQGNosUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C100H571I270N129Pb100|Pb100C100N129H571I270Br30|FA0.29MA0.71PbBr0.3I2.7||1.0|220.6|0.71|15.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b17300|fusukeOj3EdRNOULKzj-ZdkfXt_-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.29MA0.71PbBr0.3I2.7. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.08|218.0|0.72|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|fuvMNz2E0PS1j4AaMzgnJS6nsmC5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|210.0|0.69|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.053|fuwsFp53qz551Y4MWSkrRGEHpL4n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.53|6.800000000000001|0.53|0.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c6ra28190g|fux0t_5UDNCTLRP10h-cB5qXuNL5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|165.79999999999998|0.57|7.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b00795|fv3kS4Xccm6asUXhra-2wGm48Cuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|153.0|0.629|9.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|fv6OfgKOc4oCkgQ1GhBb8eav9n0-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.51|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|fv9WsSiXCTys7cYi3QBAMenQOKLb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.97|166.20000000000002|0.7|11.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|fvSaL3bwPOrBkomV5oKmjUus7glR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.903|135.0|0.516|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|fvT1kUeWSoRz_Ioe-mQK1uQ42jaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.11|243.0|0.75|20.05|['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1126/science.aat3583|fvfT2HJNNUFqtJJEUACs-wES2k_D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -CCsH5I3N2Sn|CsSnCN2H5I3|CsFASnI3||0.39|155.9|0.61|3.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b03194|fvwUGK7uB20NUIRYuv7ZtWGM0TIB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsFASnI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.01|186.0|0.72|13.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.026|fvyosw3zBwXofBGzAQP9QlqcVc6a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|158.4|0.5|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2018.07.005|fw25cXlw9jdCtD85Fj-lK4j7DLun|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.21|67.8|0.551|4.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|fw4vKZpOuSCo2qJuQuiiU5Ps3Ejt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|181.2|0.72|11.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|fw9kuxT0gl60a2yB8RwDROhZQ9cq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.96|136.7|0.616|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|fwDJ-y7T9pjglbhm6NyLeGNA59QJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|198.0|0.752|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|fwGPBp8p36N9HVKCWX-XG2Vuy8LE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3||0.35|121.0|0.56|2.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']|['PTAA; TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10734|fwHqRLRyvfkj1z-ulbP6wpP7cDFU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|153.7|0.7509999999999999|12.32|['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-nt']|bulk|https://doi.org/10.1039/c9ta11892f|fwMkAo4IdEvncfhig6FG2U8uKemw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-nt', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|147.6|0.67|10.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|fwUrPucHnAnc0G6aYOD9CPvzxFBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.127|228.0|0.7170000000000001|18.42|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|fwW7fOZBJLKAVhUV0Sx-NvXo3gw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||0.84|167.39999999999998|0.581|8.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|fwYI7YB_OBFZA6kqPGkiAACTPrtK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|196.0|0.787|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.3390/molecules21040542|fwgrgcUd-xf2si9WHmO7Q6mCXKs3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|163.6|0.6809999999999999|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b08038|fwz3BiYVMyITWvV6VysQrFuZGdeo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.68|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|fx191E-bdkwWdJKGs9iLSwuvd_Dn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|217.6|0.693|13.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|fx2rcLkBaTUc_p-2aGkWZ0kq6Ayz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|220.1|0.7440000000000001|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|fx6kqKeUmUFUNMBFxr1NOhiqGe5J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|||||18.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TTE-2', 'Au']|['TTE-2']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201811593|fxAkaqCghp2X9C6KnaipbslAhZwF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TTE-2', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.969|206.0|0.66|13.2|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1002/smll.201501460|fxD_uLGw4GZkVbMKL4snYxFbgaoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|194.0|0.65|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|fxHB9SOCLmCbVuGlbiRgTjrAEbQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.18|223.7|0.77|20.78|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|fxPm7bPEH2TBUU82XxMR4P3HaJEL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|191.3|0.769|17.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ra01501f|fxVyt0r-08KJqPjN2JP6XutZjv7O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H489I261N176Pb100|Cs5Pb100C95N176H489I261Br39|Cs0.05FA0.81MA0.14PbBr0.39I2.61|1.5900001695435149|1.16|237.8|0.72|19.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19871|fxlUmAtEGVx2mHDyTixijEYg1iqM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.7|0.72|14.79|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|fxpJSFy1RdAjjYOLvnfHhencnLma|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|1.003|204.0|0.703|14.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|fxpQcnmQRfAtZS6yGoUfVEgF578x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.3|0.76|16.6|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|fy5Kp_t-IvPEwX2VUh2DZJ4qoZCG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|195.35|0.64|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta03315j|fyBMOma-ELeYqpcGYbio5exETP82|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|181.1|0.547|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|fyCBRHUzbbmx2N2hK4PY6PWIC3Ha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.33|56.5|0.49|3.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|fyEiSfrmMsY9U0kPC2KJdQBzY04l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|202.0|0.557|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|fyJkhom9yQvMvm5yVPzIXMLMhbAO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|224.5|0.755|19.41|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|fyK76snIGfmE6J7tVqHY95FpcxCk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.43|3.3000000000000003|0.7020000000000001|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|fyOyKlqxLiehaeqTrYOyjI5nzowc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|219.0|0.7|15.17|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|fyPJBNWwWHYkUKWMMVo7SNzMfSsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.653|130.0|0.371|3.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|fyPR9FPo4TbIKOEGnh_-SJlyTwsC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.6|80.0|0.27|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06398a|fyQMhn64yJ3rArK8xgRxKyh9fAMx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.2|0.63|12.77|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800325|fyUUOQ3LXCRXz9xPSX95j-MEjsCe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|||13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra16355f|fyXZFeCtORsGKi_lp10rjblSH49G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.834|184.22|0.753|11.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||fz0ypzlUiEwEl-R_dX7Y9lYQvmy_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.0|0.73|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14556|fz9Bm8dn3KnDW8zCl6Ysv8E5bnF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.79|193.3|0.66|10.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|fzCovbR6P8K2Fe-0rgvwEIRSLsb4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8Pb1.0I3||0.89|208.7|0.4589999999999999|8.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2017.09.056|fzEjvzGq_gGx78Ww7n49Hd6GaNks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.2MA0.8Pb1.0I3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.93|106.3|0.467|5.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|fzLlqBsn35L4WpS-CcHJgCHWsf4y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0139999999999999|8.4|0.56|6.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8060416|fzOYB6Qd6kTuOLCYJr1gMRL3yt92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.041|fzPexZDcGXMlk7ZA2bLaKDHs0d5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|162.3|0.685|11.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|fzSwUGHjm1bUyAtzauuBTG-xZhiN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|210.1|0.7829999999999999|16.46|['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C4']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|fzc2m2qynmKaDjL-DZLZ_oY4IMTg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C4', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.0|0.66|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|fzdYByxW8jC3A0AU3gUn-HLR73E6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|142.10000000000002|0.6859999999999999|10.33|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']|['Bifluo']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|fzemc5XuVRLtKnWAZ-11XDlNqax5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|22.0|0.4|0.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2185997|fzhKXtpfk4TigteAGKWQt81yE8MD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.880000200466546|0.99|97.2|0.5|4.9|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152768|fzm6Pn_yAGOwf-_7q5yzRx0-tTGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.02|161.0|0.186|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|fzx_h0FIH5Qqm_J1YFjmt8JiJGPm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|188.0|0.54|9.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|fzyU2IHtV9dgxMP7h3xOAEyc4U5T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.2|0.76|18.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.048|g-5uSER3uwuUPyoDcdc4XILHodPR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.68|14.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|g-958IOgZf-hiPuqZMXYKc_xSn10|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.7609999999999999|17.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b11740|g-BJEciS8DJc7d8slG7FretFkAJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|218.0|0.74|17.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201501890|g-F8FZ0fVcWaC4w0sdwYY7Bm_WXF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|237.6|0.787|20.18|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|g-Z3ft6r6MswQE_-L7xDT79Egqvw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|201.7|0.61|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.010|g-jB6vKwhPhTGs0UaFVVCQqFyBI7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.47|133.0|0.34|2.1|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|g-p2mQjsdZqhpBoCBUqsnHkuw438|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|125.7|0.544|6.99|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|g-pcRpG4oUHp1PgAzHKoC6kDLQ7d|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|219.0|0.758|16.0|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuSCN']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.5b00116|g-py9mU3WGmC0yWsDCR5DLw1uZIv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.462|25.4|0.31|0.3637788|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1149/2.0171802jss|g-yIRuQgzxTkp5GC3eYS-K6Kary6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|127.5|0.602|3.64|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9518-x|g02XvVWfq2uxA10SyrLiSp7Kng4z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|170.7|0.693|10.68|['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoO3', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|g0EHp4DdOZwSuag_gtSvBNou4quT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.01|178.0|0.733|13.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsaem.8b00518|g0FLRg8N3IiINKK9ibYXJ4ue6uEf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|201.0|0.64|11.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.ceramint.2017.06.126|g0HmGguwXFEu99ygFRyAAoMARW67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.06|181.4|0.66|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|g0QhGjTHUvQ7zNFHG8Wflpj9sIfg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.56|13.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|g0TD55KhK97cP9-PIQuHnoAGUo7y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.87|185.0|0.72|11.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/nn406020d|g0WNT_wNMRV5AmEaJ8HCzMKOPb4d|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.13|227.0|0.738|18.98|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|g0Y6WDnjQQVgDIY1AWJ-bZw1Tk-5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|189.0|0.73|14.2|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1002/ente.201900878|g0bNJBu9HISKcZxfuLrZ8Ag1U3Nt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|197.0|0.74|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|g0cZMtUZVfwfL9UXjY8l2Zhr3B4M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|237.0|0.723|17.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|g0dsslvKmh8-bK9ga9uQzGE_vPrT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|199.0|0.536|9.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201701535|g0hTVodvEoW3UiLVgegj6O8_dLRR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.779|46.1|2.53|0.642|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|g0hiwgyZMmoldrWOgTUUoW_eFV_h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|163.0|0.6709999999999999|12.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|g0jfdDVUWym0MZAv7YD860QYtqi_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|184.2|0.4|7.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|g0mLjeRqe8lCIyAK9AGoxC6AeSBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.0|0.6459999999999999|12.7|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b00900|g0niiSRfeKCdtzLd5M0hekr5E0DN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|g0weXNam1pR2tMsn4klGCNxpI13_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.02|92.5|0.3279999999999999|3.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|g1-1iWkEmB_4N1aIXsTESoFUt0Z3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|186.6|0.7509999999999999|15.09|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['PTAA']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1021/jacs.9b03639|g17jjUyJ4qQOZ1wY5Bj7dKWpFifg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.0|226.7|0.53|12.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06715d|g1SDiMunYv-nho4evZApIWDOjQRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.85|112.0|0.38|3.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/ph5000067|g1fpaBMvuZXTrf9_kW7lLE7AfgYc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|1.07|131.5|0.63|8.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|g1h_c7vJfbTDJEqBOt_KgIP6vJeG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|185.0|0.47|8.85|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|g1pGRl2h9h0upIbDWV_ZDrBshXOF|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.06|235.0|0.67|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909644|g1yoyltmPxaIl97mtzCrr-JqmRV5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.997|193.3|0.78|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|g1zExt7rvXQffQgS5l0bYLTHHFiO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H36I13N4Pb4|Pb4C10N4H36I13|BA2MA2Pb4I13||1.21|170.9|0.762|15.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201903889|g1zTdoPPHSCJp_VzEodbOGxeZf40|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb4I13. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|213.0|0.64|14.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|g20xKIoC8j_AewBggvVodBiYq8m2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|214.97|0.726|17.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|g25TQFUwdWRRIhpDk1BLkp1npW4Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|1.004|201.8|0.6890000000000001|13.95|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|g2BasfwpPtaV7KP-NTouaE8qvc1-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|181.0|0.75|14.5|['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226768|g2EUq9G4bp1koK0nHEukkq8Yxvjq|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag', 'MoOx']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|221.4|0.76|18.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta05121j|g2J-bPr1vTbJui67_SE-xCEaUIUw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.83|100.0|0.53|4.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|g2OCt9c1BKHaJlaGi52Z7hLDCx8j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.1|210.7|0.745|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201802223|g2OcgJadDzhYecZNZUOJ4KBA9o-j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -Br54C95Cs5H542I246N123Pb100|Cs5Pb100C95N123H542I246Br54|Cs0.05FA0.28MA0.67PbBr0.54I2.46||1.03|112.0|0.7759999999999999|8.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|g2TPbbwrxekxJxMES7EUfilcSXG3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbBr0.54I2.46. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|1.1|220.3|0.785|19.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.6b09656|g2_EGvn3oO2AqIky-yPs2M0B3WDp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6060001712496133|1.039|191.3|0.762|15.14|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201900824|g2cL1Wm9_YsETxWfWkTqC7LKh5w8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|150.0|0.8220000000000001|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|g2cdq5fPUshjvSlihTMIeoxScRPo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.16|145.0|0.64|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|g2fPMEohO5aa1CeZAlDkS7PsTysb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|176.0|0.59|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|g2gJVDMdmPbSpR_nKCJsGBWcQama|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.07|216.7|0.67|15.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'NaYF4-np', 'Au']|['Spiro-MeOTAD', 'NaYF4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr08432k|g2pEYtdYGjEuHdfadWI4mDx1pRGc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'NaYF4-np', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|228.0|0.774|19.25|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|g30xZDqtolU4GqmEZX5Z-jfs6-xC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|227.0|0.76|19.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201902235|g32k_LMNjbx4vPTjZznRj03NjTHU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.92|234.3|0.65|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|g33mxGRyJlIv-w_-kMbsPArKnc55|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|g3BA-_-25P6RnzUkHsu8WNlNZtCl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br19C200H1040I181N360Pb200|Pb200C200N360H1040I181Br19|FA0.8MA0.2PbBr0.095I0.905|1.6100001716761378|1.118|222.9|0.775|19.3|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|g3DM_EMa8laxlYHIjCWSBibhc65_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|178.0|0.7140000000000001|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|g3FvoDiWjw3QENXDRfw3T-O7P_Wj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.75|0.17|0.27|0.0|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|g3REIaiwChSELaeMXKGlmsTWg_Ne|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.71|292.3|0.74|15.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|g3UrSs5jWO5WIRGPLLOwG77L6XBh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.4|73.0|0.732|7.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'Carbon']|['PANI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|g3WSZneC0Ub4DZBOXeupM3hLxVGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.12|211.0|0.6990000000000001|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|g3YJb1EvY-p-eR58S1eoK9i6e8jx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.0|0.65|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|g3cx8Yie6sZBquzYdOiSmiuXu4b2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|123.9|0.49|5.71|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|g3jFdVL_fhDZ32_aQRKE_HyD88Oz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2600002409863795|1.32|63.0|0.69|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700362|g3jvhIBsWrfdkH66I7RAlcnUeEl6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|206.0|0.74|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|g3vhpiGldxH8EoiDSx2KspQT6eDZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|227.6|0.6|12.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra19582b|g3yLQoWoCXqvMbo7zSJblS5pD9zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.8|0.7509999999999999|16.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.electacta.2019.134924|g3z5AGBPMerf05n1HhXEQY8od-Vi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.118|223.8|0.763|19.09|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|g40YkiDVyoj0jCcEAp0y70Lh4W3Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|151.23|0.462|7.2|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|g48pTsY6-XvgsaUJZ0TCnD1nH7T6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|206.0|0.81|18.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|g4E9akq0v3eP6blPUyOpbYBK1fMI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|191.8|0.65|9.1|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.materresbull.2018.06.014|g4OjKZfCaUVn6zhU--KhcniLZA3m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|197.15|0.742|15.14|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|g4PQaJtldP0z3ePVAAWQdG9TbeuM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|177.0|0.632|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|g4SDB27w6VshKFuIGfR_6cMGDub0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|191.0|0.672|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|g4YNQe8LMZXdd8XgdeUBQHzGt-ra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.105|228.79|0.7440000000000001|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|g4dkPCx7qBS07R_VbFxCVbLBTyIw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.081|225.48|0.72|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601070|g4mHl8i51_LE46Lchl23NjcfwC8b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|212.0|0.604|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.062|g4oiImqwVpT6ZJWhaTs54kAyiv8v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|157.6|0.695|10.66|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00084|g4p5_K0wdVwG5xmcGPOT3IM1DRGT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C80Cl9Cs20H400I246N160Pb100|Cs20Pb100C80N160H400I246Br45Cl9|Cs0.2FA0.8PbBr0.45Cl0.09I2.46|1.6600001770076949|1.17|208.2|0.815|19.86||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202107359|g4ph7HgVGKaq5ifu5tPSyVPQAn0-|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.45Cl0.09I2.46. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.12|231.0|0.833|21.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|g4rg_ynIwN7OMSHYeMrH_Au9qYka|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.061|80.0|0.53|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.040|g4wnm-xRn6y2HL5ME31P2bW1Nsv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|200.0|0.77|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|g50S2TUkGlF-aM2ZCO8wqARxs_Ib|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.01|194.1|0.71|14.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1166/jnn.2018.15360|g5FwKnCvxmTStQMmsDaTQrkR3C0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|81.0|0.49|3.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|g5L_TAcMl-kP_00TGYqU9aP5DoYf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.064|204.61|0.584|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OPh', 'Au']|['CuPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|g5N1qEAK13kSI8wVfWcDfvrDfeCK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OPh', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|133.0|0.84|2.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|g5ZpiT7023GMuYHX6nAJeGI_reAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|184.1|0.66|12.67|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|g5gS9NngzWAY6q0RK8eYqEMPeyhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.89|171.6|0.422|6.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|g5hXs8t4gjKQLQJ_NU-d4Hb9g2Jw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|226.3|0.77|19.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|g5in5uQek9vaTRWwkoYqTC-rKxXU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.0|0.72|16.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.017|g5mdhiif1kPTvondgwZUwzwsHnVy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|186.0|0.45|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08642-2|g5njfgStfxUjutYCeAhmFKHcSTSH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.0|0.73|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|g5zzcYHS72gSAlNlH7pO8hC7AJdJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.953|99.1|0.64|6.09|['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6tc04639h|g69i307bRWF7jq2J3G0DBggoSJos|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.72|15.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|g6GXSWpbIZrIIC-aTsC79fTRt1w_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8109999999999999|107.0|0.4|3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|g6HWt4UR036Be7Iur_oe3SehLLP8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H26I15N11Sn5|Sn5C5N11H26I15|FA0.8GU0.2SnI3||0.56|208.0|0.726|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|g6L7LZBeASKv6JaHH6NwOeF7NFWH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8GU0.2SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.9|0.7|15.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/admi.201801976|g6Nc6P2L5Y8qkKr1YMlt2T_25rB9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|182.7|0.67|11.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|g6P4rjPUdRkWXhvQOmJplNSgE9Jy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsISn|CsSnIBr2|CsSnBr2I|1.6500001759413832|0.311|115.7|0.43|1.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|g6QAVS9wm5NxKWI1uTVQG0u_xHZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|0.65|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PyThTPA', 'Au']|['PyThTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.041|g6S15l9nQEtR1n3vm-BMJfK0ftyP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PyThTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.144|225.9|0.735|19.0|['SLG', 'FTO', 'MgO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO', 'SnO2-np']|bulk|https://doi.org/10.1039/c9nr07876b|g6TO6ao46pPbpumu8_wkm3FQFepp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.042|232.3|0.743|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801734|g6YZcCbJ_T6PkWskwYDY7KcEdpsr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|75.8|0.56|3.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|g6_PXVttweyC32JUsJiOeAk5qA4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|159.9|0.768|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|g6k1UZ4qZQ8H5i_bw8QsFGaKj8o2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|117.0|0.59|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05070c|g6kKDZKm0iDWfnFMG4aPNUwipr3w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|206.0|0.75|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|g6lcZtm3KHHICu12r5IPAj19Dbac|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||210.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|g6uBgb1R7XptyTbUZESdTZ7tB2xC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|1.6130001719960312|0.96|92.2|0.59|5.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|g6xPTbgT6lbOkDs6QnZ-ayAebATp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.19|157.5|0.737|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|g71-oPUV_vhNGBaxKPcVNNktBxwL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|170.6|0.7|11.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|g7Tk8xnOIGZr7v3fjNjHAunLb_l8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|97.4|0.45|3.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|g7WMS3u22TIBbkBIt3F4RTWrVxEB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|181.5|0.7090000000000001|13.78|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|g7XrBMJi-OtzvWk64PKjuBys_miW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.78|202.4|0.67|10.5|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|g7gSZuMIpkGJP0x4z6mMi5ZxkmTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.0|0.723|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07450b|g7zxBv5zGS8zpyPH2mOd8diG8Fxq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H515I279N185Pb100|Pb100C100N185H515I279Br21|FA0.85MA0.15PbBr0.21I2.79|1.5600001663445808|1.05|227.6|0.7120000000000001|17.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta07462c|g80zdAqBWkoIGqQ1Yxyha_wjj-C8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3||0.8|187.4|0.6|8.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4991633|g821cdKd0NfQ97aEKDzfeg3eQJV7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.03|195.0|0.65|13.1|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|g8CpzSQy_yIXRsOy11nRdd-sHHlq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.8640000000000001|108.08|0.7040000000000001|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|g8IRBjkT62-_57T1ltSl5_EDKLMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|177.0|0.74|12.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nj05941a|g8Kp4HLBoAlvM3NS8GpG1pxnWd2q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.23|55.49|0.6|4.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900737|g8MA25EcvxDY9Ge3QFXxivl2lCF_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|188.2|0.672|13.14|['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.136|g8P1-JdLc5eyXjEHt1WqWFuxih4K|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|143.43|0.7190000000000001|8.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.04.059|g8Pu9U8kpl4iZmP9CLS_QidZqZOx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|110.0|0.5|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201401808|g8QmJ3i1UjwGIVNk78dgn56E9Wkv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|169.8|0.511|8.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3cc46534a|g8R4x_MGLySVpiF7NgD6J1H6Zp4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.0|0.6|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|g8WV9cz4h5FSnH5xkZ4ewLIA6PDS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|203.0|0.8|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|g8bT_dnwHiwVsxLI-H9bFXsDzR0t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|82.0|0.597|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1049/mnl.2017.0876|g8m7xNyAeZkeyY0a7w3DRhxsHJ4q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C91Cs9H469I258N168Pb100|Cs9Pb100C91N168H469I258Br42|Cs0.09FA0.77MA0.14PbBr0.42I2.58||1.0590000000000002|209.5|0.701|15.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01692|g8vWMxPUUY3H-B8q289-hr2x2jh8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.09FA0.77MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|150.39999999999998|0.54|7.94|['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'rGO; Zn2SnO4-fiber']|bulk|https://doi.org/10.1039/c6ta04726b|g9-SQLAxqHlZidXgPoXGPM5MXbFR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|181.5|0.649|10.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|g95S-J1pRnH5XgUQRuQlFNlA-8dB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|195.2|0.591|10.12|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|g9KmXBpJGHf0a71PBLOOOU0KSItL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|132.0|0.5670000000000001|6.9|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['none']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.tsf.2018.07.037|g9PYVRb5Iu5FzwTpaHE1Yr_perGx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.83|146.0|0.5429999999999999|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|g9RQAQ5wbe8_Psfwp6sZQ12PyXll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|219.0|0.72|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.060|g9_idDUd1iFPd7Ncr4EkSnUhrPcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.17|208.6|0.797|19.5||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|g9axT4BhMg7TfsRWX98qU7OysBQo|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|187.5|0.6859999999999999|13.07|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|g9gvhseWgp2Ljr0pyvyhblKdGKl8|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.350000143952041|0.025|94.0|0.249|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b00118|g9m2mq7_Ymhhyj9-Km7kD3skJrqR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.72|257.0|0.69|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['bis-C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00847|g9mtZVTMN8Ay7GshdwVWF6auQfXC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.109|224.1|0.747|18.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700576|g9pXqmGdSyWaNA6ke9sbhvEsEXsV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.14|228.0|0.732|19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|g9rDiZGPkywbWd-cd-V1s9bHnZzi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|183.0|0.63|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1116/1.5052287|g9sWkbVq8RyDhD4M7pj23HiMZ29E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|206.3|0.642|11.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2017.02.022|gAMO5xWaGvjPSPN_k7TfDvgeHBvt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|221.0|0.634|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|gAOZHqfUZphULfZJb0mq1s68x-eo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|227.0|0.7440000000000001|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|gARttiKSPA35DGuxa_5b2_7COQg2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.408|212.34000000000003|0.561|4.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||gAXMSgpGLFSFkbRvcuuvTPf6Rq79|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.132|156.85|0.7190000000000001|12.67|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|gAbKUZExbvVK22BZDOKRfYUEPK28|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|97.4|0.408|4.02|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1021/acsami.8b05560|gAeb5aa0007dMOljJPFUJs00vnic|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.0|0.61|11.75|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/anie.201612021|gAlaGuy7z8KXd2LaLKJCDy_4FjxB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.23|48.1|0.79|4.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09353a|gBHWQvSPqmVCAbrn-Uuk3CBEVvPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|119.5|0.57|5.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201901186|gBNClTP6DkMKfWqet7FS-Mq-NMt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|185.0|0.7659999999999999|13.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c6nr04741f|gBO7lzQNy0Qz7SBV664gN7UL6C81|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|186.5|0.54|10.85|['SLG', 'ITO', 'ZnO-c', 'C3-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'C3-SAM']|bulk|https://doi.org/10.1016/j.matchemphys.2018.08.022|gBPKr9NNH_IpXMWS8wEiqhsCISI7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C3-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|217.6|0.67|13.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|gBQ2_6cL_ZTbFaZEJEbjHu0g8Kry|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||14.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|gBgebrJwr0vYWkh_o919eTgcWCi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|206.9|0.672|10.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|gBsaeHRAED7hUQT9DANYLNEpexPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|186.1|0.53|8.09|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|gBtXeLBk9yCCKUkvJp-OmcSFfs7O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.0|210.0|0.66|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']|['CuPc‐OTPAtBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|gBtjsZX_NriM9wZFOijLO2or5Pcz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|203.7|0.76|16.97|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|gBvMJmUPybqigdysIrZXu3EizUSa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.1|0.726|15.75|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|gC5v1ubmNYZowYf6UXAww2M4KVW8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.06|228.0|0.76|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|gC6uO3YNs-ZFlOwNvcKvqYwxp9SE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -Br30C9CsH45N18Pb10|CsPb10C9N18H45Br30|Cs0.1FA0.9PbBr3||1.469|65.9|0.848|8.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01863|gCE73bH2imxDT2BQSjra5-R99uqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.11|234.0|0.81|18.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00293|gCIw-PKAckNwxeRXIC8Bf8LyaWWV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5940001699700397|0.97|199.3|0.58|11.21|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.037|gCgzriHXrI77eq9OnRmXYKABUAJ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.8|0.71|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6nr01043a|gChixHy0V-gxnNupVowzoftJ7A5u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||0.92|200.3|0.551|10.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.148|gCq60how8-x_K27p1guJ1f1BFGpo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|55.2|0.336|1.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|gCt06UazKKt8Y-xrS9U1rdUTWaiR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|224.3|0.706|16.92|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|gD1ODsruySdoUK4E0lZV-tVaJJLV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.3|0.82|20.51|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|gD6e5_DitJUTn_otANGQDBIsQwcJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8|1.500000159946712|1.01|215.7|0.596|13.01|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']|['PEDOT:PSS']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.06.134|gD7u6_7sd6dMRzndl98GNQxzZNhp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.4|0.6970000000000001|15.82|['SLG', 'FTO', 'ZTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZTO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02104|gDHUxmCqShoGgrCC1AI-04Lyg30K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|186.2|0.53|9.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma13010243|gDI1r-es_s7Q-nGUayL-gVooN6Xz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|10.2|0.789|16.26|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8cp03223h|gDJa0WIY9xrTb0xyTWiJ2eIN9s4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|134.5|0.5710000000000001|8.22|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201500373|gDYxCeskSyhZZpR6-fw8k0GJGwK8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|206.0|0.66|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|gD_RE1NGelw0OuOK6Gs-wGoti8mT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.5|0.745|18.47|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|gDae_1GEpHUB9IjLOz05WFOLEE5_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|149.0|0.62|8.4|['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|gDhx4DLcRl1VswGx3Hp0l4lg4UEv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|145.7|0.631|8.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|gDqcT1W5Onik7U6uCyRSSC_I2EzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|44.0|0.716|6.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|gE3GAoFzfnGZGnm0fDmP2FaDQo3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.124|206.1|0.7070000000000001|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702256|gE67rNnYoXmEvV9icNGAdYKnL_KD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|225.3|0.7|16.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137495|gEA9Tj6WPZdlvSkfqxHDHRlKgbAZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|213.0|0.74|17.02|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.0c06211|gEEnyA_umhLXsRqJKEslkDln2cmb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|202.0|0.731|15.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|gEF9ed_CTpl8lK5mu6Yp6bk0lRAF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5100001610130236|1.02|214.0|0.68|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.161194|gEJ85Owq0pm0AqokYBzahRURTmWn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.23|26.3|0.319|1.03|['SLG', 'FTO', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['[EMIM]PF6-IL']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|gENzsyVgWyesssJPre35AiSxfpi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.6|0.68|11.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.018|gEiWGNw7_Ej6uQBkYC4aPxRSWb_G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.04.191|gEm8PtNCBEO_D1vCr93CqRvw0KnU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|216.1|0.63|13.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800909|gEzThK-VldMqSmWAvE-QdIRQEHDd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.21|146.4|0.7909999999999999|14.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|gF9REDNKEXzXvVYuO0dq1GSYBQP6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.07|226.5|0.795|19.27|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201803872|gFJiPxzQbawUqxeOkc7DIUwyGVTV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.87|104.8|0.28|2.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|gFSWIFbhzRmtHF6fEfXmyCyhDHsl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.847|205.3|0.6|10.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-carbazole', 'Ag']|['C12-carbazole']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra10148d|gFZryBH5-rXg8mgepAn-zWluW609|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-carbazole', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|196.0|0.6|9.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07515g|gFbB322Suk3wtsFmHHPxJwpQ-bAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|219.0|0.7|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605693|gFbYPOtdL7mh9FrspiCjo6kW0ReV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.5|0.7020000000000001|14.36|['SLG', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CPTA']|bulk|https://doi.org/10.1002/solr.201800317|gFe0uGhabh_4dXIBtRqArKA8oedn|a perovskite solar cell with the following device stack: ['SLG', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|202.0|0.784|15.68|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-MPy', 'BCP', 'Ag']|['NiO-c']|['C60-MPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|gFgEn28GjvnqisqIFeNv2Vk327xA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-MPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.461|92.4|0.754|10.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900030|gFiOs93BfIE2uz082y1pzhZlXn3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.0|0.72|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|gFnzjFgWu_P9bzdFlKWVBO-V8XRk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|155.0|0.6759999999999999|9.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|gFoW7FCzhhDNiQ0-Vaja25DadIHE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.83|19.3|0.43|0.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1246/cl.170428|gFpPeyKWgyfW13cIouzZAl0lPIKl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.91|207.8|0.56|10.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|gFq-pA0tJP2cqXWwcW9MTPFG-qy6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -C20CsH100I60N40Pb20|CsPb20C20N40H100I60|Cs0.05FAPbI3||0.85|184.3|0.69|10.9|['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']|['s-PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.12.103|gFxZYyb1_vHIYXNFv8fgeRCZbWsz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.61|132.6|0.43|3.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|gG0xnSpZa3a43GxCNFBLECXhKut7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|241.1|0.7290000000000001|18.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|gGCqdIfxFIVbWB5BiDhbODJmWz9x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.2|0.718|16.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|gGN6WMyAvOrp9_GNirtEs6R-Uifs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.01|218.0|0.64|2.7|['SLG', 'FTO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4mh00238e|gGP0hLTUyEjtZ-1z6NlAE7bubXGa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.08|220.3|0.71|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700118|gGiIxzGCmCR76L7j41qdl7LHnAdz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C63H212I65N25Pb20|Pb20C63N25H212I65|(NEA)0.2BA1.8MA3Pb4I13||1.08|||12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|gGkd4Yge4pPxXciOxK0CmGOHkXDy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (NEA)0.2BA1.8MA3Pb4I13. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.12|132.3|0.652|9.71|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|gGsMR_GWR9dfHA0XxRB09yWad0e1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr1.5I1.5. -Br47C100H517I253N183Pb100|Pb100C100N183H517I253Br47|FA0.83MA0.17PbBr0.47I2.53|1.6100001716761378|1.09|222.9|0.6990000000000001|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3']|bulk|https://doi.org/10.1021/acsami.8b16358|gGvb5pgU7q8JAuQfAHLSfH7dw4G2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|153.0|0.632|8.62|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|gH-dUK5mQYsgM_hUHfflh1h9JOlH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C6Cs4H30I21N12Pb10|Cs4Pb10C6N12H30I21Br9|Cs0.4FA0.6PbBr0.9I2.1|1.760000187670809|1.14|158.0|0.78|14.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C8SE00314A|gH96wIpY3bbX38TE1ZdKT4veGgdb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|173.1|0.69|10.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM']|bulk|https://doi.org/10.1021/ja5125594|gHPwLVVr6_i4faLzi7UjCBfE-aNL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1540-4|gHQG7-njkY7aNYlIGb8JTK6tXPjk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|160.2|0.617|9.86|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700245|gHbuky8zhKNBqjk7uClzVU7i--iu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|180.0|0.607|9.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PT3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1007/s11434-016-1050-x|gHlcX8rQkgM5bNubYZdLJrAHYu1_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PT3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|171.29999999999998|0.67|14.94|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.7b00300|gHlx18xv7BawIjabDcxlHYnxIvE7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.26|121.0|0.5660000000000001|8.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|gHnrw44fQQvHAOyIAe6o3SGtE0kM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|222.7|0.7|15.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Dodecylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|gI0T4KFp21_tKLOCNYYLQ-7Gn0yC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.087|193.25|0.719|15.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||gIJn0nB6xfTJLAL9hVMOGl0pIdZB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -C100H589I300N111Pb100|Pb100C100N111H589I300|FA0.11MA0.89PbI3||0.94|215.8|0.6629999999999999|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9070915|gIR-EFxn8cHLl0ELcibS9jUwL-0w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.11MA0.89PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|182.0|0.59|9.84|['SLG', 'ITO', 'PAF-68', 'Perovskite', 'PCBM-60', 'Ag']|['PAF-86']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b14073|gIRe3Doc77An7OkBVxIDcVYNyiW3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PAF-68', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.02|180.2|0.67|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|gITLwGhtttZeJ0nEdhlB0ciOPrI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C9CsH54I27N9Pb9Sn|CsPb9SnC9N9H54I27Br3|Cs0.1MA0.9Pb0.9Sn0.1Br0.3I2.7||0.8|115.0|0.65|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974791|gIUgW2wZNxXVBi1-jQSGpDWnjaLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.9Sn0.1Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|210.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|gIZc-AxBVW6th209gLY0k572giyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|161.0|0.3|4.37|['SLG', 'ITO', 'TiO2-mp', 'Perovskite', '2,5-bis (5-(5-(5-hexylthiophen-2-yl) thiophen2-yl) thiophen-2-yl) thiazolo[5,4-d]thiazole', 'Au']|['2,5-bis (5-(5-(5-hexylthiophen-2-yl) thiophen2-yl) thiophen-2-yl) thiazolo[5,4-d]thiazole']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.07.016|gIbA0Oy_tevXUN3U2oUXoTDlMZcg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-mp', 'Perovskite', '2,5-bis (5-(5-(5-hexylthiophen-2-yl) thiophen2-yl) thiophen-2-yl) thiazolo[5,4-d]thiazole', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|||||3.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08347a|gIcI-y6MWdgki62mIyxAe01emNP0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.8|0.65|13.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9sc04900b|gIdXVLSuOzAKP__FfHxOppJ_lkFR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|121.0|0.72|7.5|['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']|['PbS-QDs']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04272g|gImo2M_jRGgs8GVYLwgbZ2o91kaX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|238.1|0.768|20.13|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|gIp8dhJefuhSESrilVxnaaJQKX8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.2|0.7509999999999999|16.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ta06752f|gJ9kJVkYWBAFTlhCndJOQt2jPW8g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.5500001652782691|0.27|148.7|0.515|2.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpclett.0c01859|gJP9vVPQsIKQzOxEddNvo3WGuKQC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.075|227.3|0.797|19.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta12368g|gJaMsZaXBiubJ4r42PLjF5deNeeT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|201.0|0.76|15.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06394e|gJop6EOFvRb9MBqIGP0LFCd4Pmki|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.6|0.741|15.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|gK4zqOu8DQ1utIcn_prPnZYFjqr4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|148.7|0.7|10.17|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|gK6OiE-hOCdhohTu0ShkBoNIWRaZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.8|0.72|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|gK9u0fZiKzo7SPowR64aLaiWRyZ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.94|128.3|0.27|3.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|gKMUGPBgyjDCnbgvKK_cxYQhIkzb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.8|0.695|14.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5010951|gKNldf3glGyiMip8VVkDObqE-cw7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.9|194.0|0.43|7.5|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|gKQInx2vKqqfh_AyzDdT40QXaNR_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|44.7|0.346|1.59|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta00973a|gKSSJ33JsNul6IUCnPire9-JKxzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.3|0.79|18.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201600887|gKTT6t92JCsA_FFk-RZpFOuSkCmh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|131.1|0.5870000000000001|7.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s12274-016-1407-0|gKTgACekZSeEvubOuVO7tN6dx1OZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|232.8|0.763|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|gKY_rvyLzCGhaY_N_SbGKpXMFxIU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|168.70000000000002|0.62|8.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['BPTI', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|gKdDyusIMrAShxfDdIRelbNxIkIE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.04|217.3|0.6990000000000001|16.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|gKiY0lpFociHCxU1US4s3NUJfszS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|138.0|0.47|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|gKtl68mikANboZNrovADN3g9i2Ek|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|193.3|0.75|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pFN-Br']|bulk|https://doi.org/10.1021/acs.jpcc.6b06914|gKxf44XyjQytV5Er3KIaBapEXK_U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|149.9|0.657|8.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|gL1UfraRqBi1gVdVtZKHXAve43Np|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|89.39999999999999|0.26|2.18|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'F8TBT', 'Ag']|['PEDOT:PSS']|['F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|gL7JuPRJjVYy6zVXdFB5zZZEPlXG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|220.1|0.82|19.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|gLF9aT0sY3FSFTt_M6m4rqDfwx0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.5|0.5479999999999999|10.14|['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['Al2O3; TiO2-c']|bulk|https://doi.org/10.1007/s00339-017-1326-2|gLHM-WGoZKFmk6oFwhn8ckVqeZYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|199.5|0.667|13.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.05.004|gLJdOZtLzrLMbBAD74xJ9NQFu8j4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|gLKc2O6nFQEgfCYMWuO7dEp3dh1W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|229.4|0.746|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AZ2', 'Au']|['AZ2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.8b01336|gLPIdsQNwH0zpKBpK7qJAnEDu0BX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AZ2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.5|0.7|14.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-2', 'Au']|['THY-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900143|gLVyqrMXnD6Y21tky0zDTYWgn33z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|46.0|0.68|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00889|gLo5X5JhZPfF8HA9I39GfNSwIWM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.4|0.7|16.3|['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09101g|gLry8HLKPgOmIcWchtIC7ExGWXaN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.11|251.3|0.735|20.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|gM2j877QKwm7j-ITYscFap4TrM-w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.633|34.6|0.51|1.12|['Ti-wire', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1039/c5ta06156c|gMMcNn_cfyT5WQld5SP_PYfw2GYP|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.7|0.75|17.73|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|gMWyazP3aPDZtyBHi7eUJbSza2pL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.04|200.0|0.7|13.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'Au', 'PEN']|['PTAA', 'NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201907481|gMbSs-Xu9HfZDuxtBsdn0jO9pGaA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'Au', 'PEN']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|230.0|0.75|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ee00528e|gMhVViAoD7HgOcehpNdge8qKhK5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br2C6CuH6IN|CuC6NH6IBr2|(C6H4NH2)CuBr2I|1.6300001738087604|0.32|35.0|0.38|0.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b00086|gMpeVcTUwNkqq1aFNeOchRlR-cwq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (C6H4NH2)CuBr2I. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|1.036|225.3|0.544|10.99|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|gMsMIJU8R3PKCUkzQTPIxr5K3XK9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|158.0|0.59|8.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|gMzqCIFfkjde3pxWQx1kq7HKe0vo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.83|51.6|0.38|1.62|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|gN6YEzjZ6kIk7jfWkStL4pZf6hE6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.082|218.0|0.71|18.18|['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1002/adfm.201805168|gN6y6489Vn-HMvoKieUV9FPSHiSz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|158.8|0.6629999999999999|14.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|gN7XCVY9isg0o0VbSOUKvf293bwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|225.0|0.759|19.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800324|gNADATyn4S--0IugwlK54smhGYFL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.825|125.0|0.26|2.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA02306H|gNAnz5f33ZO2PQhPmzaOUbymCfRj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.2|0.737|15.23|['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|gNBxr80fZDtL9xypind8SJR98qhk|a perovskite solar cell with the following device stack: ['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|212.8|0.32|3.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiS']|['Carbon; NiS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.03.161|gNGagyI29T4Nb5WeABsXA8wh1MRH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiS']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.98|232.1|0.7390000000000001|16.82|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900140|gNLv8Gz45VWuAjARnx0z14KIGdsy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|222.5|0.753|18.77|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-mp']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1021/acsami.9b15820|gNzaq_l59gi__sEPwQzfgkwvmN0f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2Sn|SnC2N2H12I6|MA2SnI6||0.24|29.5|0.351|0.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.190165|gOFZorCnZ6Al599BZSJMn7zsOPgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MA2SnI6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.2|0.7|14.57|['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Nb2O5']|bulk|https://doi.org/10.1016/j.orgel.2018.06.038|gORY2BIu53ZogG29m4GajQSEiqsf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||0.65|205.0|0.58|7.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|gOfUnYFROAvJ9qw4ebceaoLxSZjs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|214.5|0.76|17.0|['SLG', 'FTO', 'NiO-c', 'PTZ-2', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PTZ-2']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09530|gOpIbUc-GXG0mJLT8U7CyI2eqILk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PTZ-2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.2|0.66|14.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01558|gOtmU7ZuCwYbS5g-5HwSDffoErI6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|194.0|0.501|8.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|gOy2ThA9IYAihv2GoMz5YUuS4EP9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|176.5|0.65|10.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl501838y|gP-C39D2JSAUWiRnPc4-ZNuWnBsk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.276|30.0|0.363|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm503828b|gP4QSc_dOba0_kpdOTOezU4Q-YH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|217.5|0.69|15.26|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|gP5aPzUcXzVIoEXowrYG7gSUt2__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|172.7|0.67|12.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.03.088|gPBLyhW291AMW1kPNrbmgFsx-sHH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5930001698634082|0.907|211.81|0.536|10.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|gPFWi-WQYfDpzWLVb9NEC64gG3sq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|2.05000021859384|0.985|82.6|0.55|4.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10987|gPKKKMxJMVl6HqOU6GlKEs-gwEwL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|||161.6|0.59|11.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.171|gPLxTiU5cxVlAQjdWB9fx7YWxfiZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|230.0|0.75|17.9|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adma.201604186|gPT2z_Run9-HKqbxeIfRzpUq_V73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C1000Cs100H5170I249N1830Pb1000|Cs100Pb1000C1000N1830H5170I249Br510|Cs0.1FA0.83MA0.17PbBr0.51I0.249||1.1|223.0|0.684|16.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|gPYkWecEfvYD3jplNBpxIPULJBzW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I0.249. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|76.7|0.537|3.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|gPjRTE1a0NYsQ2KOCEv4ODXguz6B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|235.3|0.727|18.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01894|gPnS5yAnwG_gHSWDHHI0zwYvARkT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.07|229.5|0.75|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10854-019-01446-2|gPpt2wXKijBYpwhPMRP8ccrYKjFB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.96|195.0|0.55|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21775c|gPr56NXCIJdfc8fraEhW0FkFunBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|231.2|0.74|15.18|['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2Ox', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra04414c|gPuDd10otciw8MgXD3b99U0JOPTb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.0|204.4|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|gPvd2rO8vd5xxQz8c7ZxjjOGdSzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.33I2.67. -Br3C5H30I12N5Pb2Sn3|Pb2Sn3C5N5H30I12Br3|MAPb0.4Sn0.6Br0.6I2.4|1.2400001322226155|0.71|238.2|0.68|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|gPyq78iSUmE21duXGb3Ps6PhR9mt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|1.02|159.9|0.7240000000000001|12.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1-Donecyl Mercaptan', 'Spiro-MeOTAD', 'Au']|['1-Donecyl Mercaptan', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b09722|gQ-P8-knb2i-yHpPTEu7PqJtZPGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1-Donecyl Mercaptan', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|173.0|0.575|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2391-3|gQ4bi3G0aNG0lvttjpn4bE0jkwDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.8|0.75|16.13|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|gQE9Rx5R7TX8_A2RV2CWO7RMe8Fm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|201.0|0.69|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.17162|gQIOgM1-vRjaPDkr2HnlR92drVCg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|175.0|0.4|3.61|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Rubene', 'P3HT', 'Ag']|['Rubene', 'P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.jechem.2017.11.018|gQJO9lpL3ARwGrvFcT5cVGRiyreW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Rubene', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.086|218.0|0.691|16.4|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201800133|gQOkUoM6GaiIzj2H4m5CVdpRzmq3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.0|0.74|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|gQPnL4U81pK3pEdHHYn2VaTymD0c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|180.0|0.62|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201900481|gQTzh8Lmd-Ig4fg1ffXYbUfiPuUY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.0|0.8|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|gQWbdAhWT-ljXttM5_uh6SWigg1a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|203.0|0.79|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900223|gQWx7TeOG-jLt8lS7vzFORoI8SCO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.172|166.0|0.7929999999999999|15.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900254|gQb534ozXb7HkRxvvTrqAFXNybhN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55|||||7.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902319|gQbc1PRw1SbwLXyNEakdHEMgtrC9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|165.2|0.7879999999999999|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.11.024|gQmaTt7VNoOAaF9habeS8z4nGnlz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|191.9|0.688|13.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|gQykL5IiZ2W-TrtKv_TnkDEO058f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.3|0.7|13.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|gR-ds_wq3sIX4FYofT9Lx8tuWbvc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5||1.08|233.3|0.762|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201802985|gR1VEg-pCISMvv0qExv_6jEB-FL4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.83|['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|gR5and1gyIbaGjrVb_jTWiaGCeOg|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I4N5Pb|PbC11N5H42I4|BA2MA3PbI4||0.93|107.5|0.61|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|2D|https://doi.org/10.1021/acsenergylett.9b01821|gRFvFCSZhu86EKa6n_wN5BlJBBHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is BA2MA3PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.35|80.0|0.36|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab334f|gRWNH3eQIQOy-L6bBquM4w_HfBZ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|221.0|0.727|17.17|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|gRX8JaRgz2jvE2kT4Qt6WB9d1LjB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.115|225.1|0.7559999999999999|17.63|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|gRhS4XCJCQlI0zghCoBv02xQTACq|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|80.0|0.37|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01600|gRkkbrrs0pnfhPjX0Q58iMO7BLkc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|105.4|0.6|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD2', 'Au']|['PTPD2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra05564k|gRmpq2aOC3U92m5rx2PR-uFRdq9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|150.29999999999998|0.75|9.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|gRnfU07xFSL-OBt_00UTeps-7gjG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|118.0|0.56|5.38|['PET', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b02490|gS2JFBxu7WUI1gltj18THcFYR99h|a perovskite solar cell with the following device stack: ['PET', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|45.0|0.445|1.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|gS8rJvjlP4lGbgs_nxDqcIEKAMb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C2H11IN3Pb|PbC2N3H11IBr3|FAMAPbBr3I|1.6000001706098266||||9.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|gSENGUtP0L0AxjQjZZwD-UnCW2NT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAMAPbBr3I. -Br200C33H165I100N66Pb100|Pb100C33N66H165I100Br200|FA0.33PbBr2I|1.974000210489873|1.084|89.64|0.636|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|gSG8odgZNXplfKToflhV09tJr6iL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|97.8|0.434|3.52|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']|['MoS2']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.012|gSU6uGpkjc71tZoaxCZcUZUl4Kma|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.138|233.0|0.74|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02613|gSiYq5pFaZg6B7jDFya1tGUe9IiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -C20F2H46I13N6Pb4|Pb4C20N6H46I13F2|(mF1PEA)MA4Pb4I13|1.6000001706098266|1.037|134.1|0.632|8.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|gSi_9ma4dfwWK4WWl4pRUmIKfJYH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (mF1PEA)MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|212.4|0.71|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanoflowers']|bulk|https://doi.org/10.1039/c7ta02822a|gSrEYKZHVu1hm0cYJ2FXYyWd41WF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoflowers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|178.0|0.738|13.46|['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|gSrScXKMMz_0vxbyzY8GykfMU3fx|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|221.3|0.6|10.75|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|gSxZHrdfKw2Bk2k9hNOxVtUixiVx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.04|138.0|0.67|9.62|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|gTCXW0l2qPFeHcQJCxLv7mjPSwUD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.3|0.67|14.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|gTQ3CbjWHfBEAMKwqtSV9h2648ax|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.971|236.0|0.659|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.03.030|gTdSjPKvEG8kqeYXwH6yQcpt6Ruu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.2|0.56|11.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b06799|gTk0TNp6LDS-FUFu96M6v8_5Asl0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|93.6|0.5479999999999999|4.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|gTtYY3rAR2cicF9jwuLjCdAgtEFy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|222.7|0.773|18.41|['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']|['PTAA']|['TTC', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0282-0|gU5Zwwnud9FI4BXVVJ0iMdgkziVm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|106.1|0.421|4.44|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12849|gU6daiYLiu3hwI-6yrsOmUY_AoF3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|234.5|0.726|18.03|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|gUEGlrPViJOEty0O68tfLTlgQMvP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|194.8|0.612|17.11|['SLG', 'ITO', 'NP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NP-BC']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|gUEIH2YvexIqNvm7wWZfKVaOk4_7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.142|203.1|0.73|16.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|gUKJkJaLibQPEiULLo1zHilRX50r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||0.023|10.8|0.77|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta05378a|gUM1Cn2RDkF3npEZtkQjwKy_ioit|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|179.7|0.69|12.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2018.03.088|gUPM71Y6RvWhpYQeqiZlR74IjxZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.093|215.5|0.762|17.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|gUVMhOImHNFcTeIT-5sk7vau3ffd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.102|197.97|0.734|16.02|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||gUXMUxXaDHRb1W-Lp16WBJOMRuSX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br24C60Cs40H300I75N120Pb100|Cs40Pb100C60N120H300I75Br24|Cs0.4FA0.6PbBr0.24I0.75|1.8000001919360546|1.263|174.0|0.797|17.7||['NiO nanocrystals', 'VNPB']|['BCP', 'C60']|not processed|https://doi.org/10.1002/adma.202110356|gUeqqARY99r2GaLcco6HtVVQSbMn|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.24I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.9|0.741|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706924|gUhRLzfhcud1WrjoPgq_iKEnHEda|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7040000000000001|136.4|0.63|6.04|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/anie.201405176|gUnrsa71Z_-JwnxEfVjQdWN_yrpe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.11|224.0|0.732|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b04949|gUpKos63HcZ6O9TS5fsoFnqyATX9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.08|204.9|0.7290000000000001|15.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2019.104050|gUvhQbucrcQrO0om8w4uqHhaui0A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.556000165918056|0.92|206.0|0.62|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaa616|gV-E6nfw85W4uGD63fBwGz8O-FvJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|1.072|212.0|0.77|17.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|gV554veHpTBdHx48-6L_ZYgizCa2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|223.0|0.32|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04864a|gVAv4Db-sYlMHy6rwpgnE3UsjM14|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|112.7|0.585|6.0|['SLG', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10853-017-1084-8|gVM_ArDnL5cxkpXsBmV0ANZcU3i-|a perovskite solar cell with the following device stack: ['SLG', 'IZO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|156.0|0.6|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500059v|gVZoeGeVbex1P_IkzY4gJwU3b2kP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|212.5|0.76|14.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|gVfE5TW6bglLUcn9xYVkKrgMui1N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|172.10000000000002|0.675|12.65|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.201901787|gVfNWg98BY_rqCcS89GO58CzGHAU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is CsPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.96|200.0|0.64|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|gVoVlzB1X-XuaGUuseAm1DiuhDif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|141.0|0.67|9.1|['SLG', 'ITO', 'PSS-g-PANI', 'Perovskite', 'PCBM-60', 'Al']|['PSS-g-PANI']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201500678|gVybDRLW-NDnQZlOjOYCMI6bfqbH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PSS-g-PANI', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C16Cs3H80I60N32Pb20Rb|Cs3RbPb20C16N32H80I60|Cs0.15FA0.8Rb0.05PbI3||1.07|242.8|0.72|18.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|gW4gJC2LKAL9VCr8bB9F8QivSUhS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.8Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|157.0|0.6970000000000001|11.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8ta10827g|gW6tDKTqJXrXzYv1XFwSpPr_TyM7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|195.0|0.56|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.5b00787|gWP037-I2rXKnqlOucN96tfkIyw1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.342|33.9|0.267|0.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|gWb4KrAS4dAk4WPmXn1qCbgcp8Bc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|232.6|0.68|17.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.028|gWeceEzHz9pAhbe3GjZUOTOGHtGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.4|0.75|16.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|gWedc6t99oedtxkVDsjCMuGY-E8x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.665|83.3|0.55|3.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02711f|gWo_FySrt91UqHF29vSqLdnyIV1j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|190.3|0.59|11.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|gX1onqdrS7lOWRzsnBrKGjWIjFI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.425|13.0|0.475|0.26|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|gX3rWMilLolR9gRVakRBoRouhfvn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|150.0|0.6559999999999999|9.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|gX8iOJMrOjeqbykL3AD87vL8KTHw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.032|224.8|0.631|14.63|['SLG', 'ITO', 'In2O3', 'Perovskite', 'PTAA', 'Au']|['In2O3']|['PTAA']|bulk|https://doi.org/10.1039/c7nr05695h|gXE3B5QhKIkgQz3Qyflw-9NNJv1d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|225.0|0.72|15.9|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|gXRvZ5zdh5ZOSh03mnxZOfOCx6du|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|10.6|0.32|0.0279999999999999|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|gXXOdQUeQy_gP5uoGmf8JrgYC-GP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|0.94|205.0|0.67|11.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|gXfTJJ6KXZOizR75CjSX8f7pvPVD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.3|0.79|13.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|gXgZyaIQYl1zlkqESMSuuZXdX_tP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br27Cs10I3Pb10|Cs10Pb10I3Br27|CsPbBr2.7I0.3|2.320000247384248|0.85|29.0|0.5|1.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|gXgxL_SzNiOg40ddmAWYATOrp_zM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBr2.7I0.3. -C47Cs3H243I150N86Pb50|Cs3Pb50C47N86H243I150|Cs0.06FA0.78MA0.16PbI3||||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|gXrcOSFuF08oXLDjYLN8Ur0duYJK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|228.5|0.71|15.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms9103|gY2W0-iekRWD0iFGTHF6z7xA8QBY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|212.3|0.72|16.22|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201703519|gY45UFxDDxWcj_oU8-NbOE6pjYH8|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|212.4|0.65|14.93|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|gY5Oq9BK_al5CfXOandrg5fpj1Jb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.08|207.0|0.7|15.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|gY9wdE4h9noaLFRQ9sWd6Ein36A_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.0|0.68|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|gYJqzZeFfI6zvaHp8ki_n6KSziNk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C35H138I61N21Pb20|Pb20C35N21H138I61|(PEA)2MA19Pb20I61||1.12|203.1|0.6940000000000001|15.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|gYQ4KQfYj2k-vJQoZ9Iy4Z7XbXyv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA19Pb20I61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|196.0|0.72|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'C60-SAM']|bulk|https://doi.org/10.1021/nl401044q|gYeOuO3adELQ9WqehLa-BpeTlmeZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.94|222.0|0.59|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5CC09873D|gYkcN_AXDQDG809fIANVgXry1Zie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|174.0|0.64|11.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|gYmaM_nrWmpiNB8ar_rc_E8N2mP8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C95Cs5H489I260N176Pb100|Cs5Pb100C95N176H489I260Br40|Cs0.05FA0.81MA0.14PbBr0.4I2.6|1.6100001716761378|1.142|225.3|0.7929999999999999|20.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Adamantane', 'Spiro-MeOTAD', 'Au']|['Adamantane', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800275|gYn0z5SJ0Z5aLz5mQKXpcMqQaZPL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Adamantane', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.4I2.6. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.06|226.3|0.73|17.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|gYna_L9S8TvXUOX75QDUTRconUgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.25|0.8|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|gYnkDNtDadERaBTyH1TspxspYlP1|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|233.1|0.68|17.97|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.094|gYuPwV96bP53xl85_KKW_evLVy6z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.902|206.0|0.66|12.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.044|gZ7DLmJa7BYNRxS6kW0R3RerIfZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|166.8|0.648|10.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.elecom.2016.04.013|gZEp71ILdovn5WRB5x9EbKtK3IeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|224.9|0.62|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.04.191|gZGd9bclIadMrrnGQ5BrLMItrlhT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.5|116.5|0.39|2.29|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201800359|gZMFnW9_ZwtZE6zjWuKx_ObuqnVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|204.0|0.586|10.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|gZYuGCDJ3RE9W0751sGPcbfD1JnF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.89|73.8|0.41|2.73|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|gZgBhQlJul8aru_697NXUx7eBjGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|139.5|0.547|6.5|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Au']|['none']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.05.050|gZqonbBk-bff8JwPKVPr1GMXqqLF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|196.0|0.78|16.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|gZqwi1ScTa9d9TosMDLFSwGBO5Gz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19Sb|Pb19C20SbN20H120I60|MAPb0.95Sb0.05I3||0.755|157.0|0.575|6.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|gZvYFcVvadEiZN80Lr7BHB-vy0jO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Sb0.05I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.12|228.0|0.794|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b04949|gZvurbNaB1rbDxCRYPknrHHSl6oI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.98|239.0|0.57|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|gZwHFb5SOnPvHfGuOh6zSkxcdx0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.3|0.71|15.25|['SLG', 'ITO', 'SnO2-np', 'Dompamin-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Dompamin-SAM']|bulk|https://doi.org/10.1021/acsami.8b10332|gZz4SUguyvipGV6_UW4jToql2CL9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Dompamin-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.2|0.7090000000000001|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500465|g_1MGF7w9K24nzexu4c9dbUpH_Li|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|171.70000000000002|0.55|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q216', 'Carbon']|['Q216']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700546|g_22YC0dQMgmP_IEtLg0MmLD1HLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q216', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|188.4|0.73|14.59|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|g_7iLPgAiYrh4AuBCxAZ3eF97Qa3|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.0|0.71|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.03.007|g_AtpyUoQRtJLr5N9IbG2M_YM6Pe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.0|0.655|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15434|g_aFbbbGpBOmbSrcCROVTsPx-frj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|108.6|0.61|6.07|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.15541/jim20160041|g_aVw-ifAQx84c6IWp2sgS-Y0CIp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|171.5|0.5379999999999999|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta90054f|g_bPRpDUVUkUQQuWXrKk-wyI-T5u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|220.9|0.76|18.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.105387|g_edVMoZGj5KJP-8LlaWF77MBPnr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|g_fakfrseTievfgbGhkGma4BHeAP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C211Cs9H735I280N142Pb48Sn36|Cs9Pb48Sn36C211N142H735I280|BA2Cs0.45FA2.55Pb2.4Sn1.8I14|1.2400001322226155|0.7|242.0|0.61|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|g_jrx5z5gIOZLU-2T58-Y-IZUnAQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.45FA2.55Pb2.4Sn1.8I14. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|163.4|0.76|12.52|['SLG', 'ITO', 'FrGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FrGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|g_mw3nb5c1WGSDQjMQE6xUxYsPH9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FrGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.97|187.4|0.63|11.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|g_rxlKcWw7VsIof9fiHwkJLqKzVP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.6|0.6890000000000001|17.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']|['YKP03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|ga0L_tBTcZo85hfGb-HAOgWhk4Fv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.06|232.6|0.64|12.95|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsami.7b00726|gaFZ4KWm2gYpK7JB_OMATl3z_FMR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.5|0.45|9.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.035|gaMHBHW-PNd3gdMGH75ZCBk6QAvw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6500001759413832|1.08|200.1|0.61|13.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b01728|gaQgjlSIV3gTRq5yoyeiPOfI7cIM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.72|17.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800278|gaUMTT0sW1TxGcQ3fbhywSf4ogof|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|227.0|0.733|17.3|['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'n-Butylamine']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|gaURVjLDnfBj0cMttAu_36nHc40q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|109.0|0.39|3.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|gaXKjYUdVSjE1cM7kHj2yOLhIEWK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -Br90C190CsH978I510N352Pb200|CsPb200C190N352H978I510Br90|Cs0.005FA0.81MA0.14PbBr0.45I2.55||1.11|215.8|0.695|16.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2,7-triphenylamine-carbazole', 'Au']|['2,7-triphenylamine-carbazole']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b07859|gaYVThBGxtneifIiMtKt5UW0jKTv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2,7-triphenylamine-carbazole', 'Au']? The composition of the perovskite layer is Cs0.005FA0.81MA0.14PbBr0.45I2.55. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.0590000000000002|215.1|0.68|15.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|gaZq8vyCoe6EZfHbvSxYsl6-AVpx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|207.3|0.75|16.2|['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.202003422|ga_bbFMWOKfhzBZZCXntAv6qVqDh|a perovskite solar cell with the following device stack: ['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Ca20H1957I1020N703Pb400|Ca20Pb400C380N703H1957I1020Br180|Ca0.05FA0.8075MA0.1425PbBr0.45I2.55||1.15|225.0|0.73|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900834|gagJyulWlAgniGcImrA-5B2jq52z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|209.5|0.612|12.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', '4-methoxybenzoic acid']|bulk|https://doi.org/10.1039/c9ta11744j|gajmv5W8-63cmz05K0G_A0yA9sA7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|236.1|0.768|19.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|gawlcX0BcCFey_6hzJQ4MINnQ5XZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9Cs20I51Pb20|Cs20Pb20I51Br9|CsPbBr0.45I2.55||0.99|90.0|0.72|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07968d|gbAmrzoUK-hj00uEIOI0qn4pFYmZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|85.0|0.47|4.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|gbFNi3kINKZiNtbSiYmqgEa6MU5F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.0|0.66|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2019.04.014|gbGtzvMfW4GYlrWRZjws9gMCH0Xz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.89|206.0|0.556|10.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.041|gbN5flz3JIa9e-JjNWIjRwpw4jzR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|184.0|0.63|11.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.5796/electrochemistry.85.231|gbQ-qLwEV8f9LstjQFp46o55YXBL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.177|23.15|0.335|0.14|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'MEH-PPV', 'PEDOT:PSS', 'Au']|['MEH-PPV', 'PEDOT:PSS']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.12.004|gbdyvzqJqPSdf7-Lcis0opKf4pMf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'MEH-PPV', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|215.0|0.69|15.7|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|gbffUpBEnx_mV9lQhZ3hpYv9CJa2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|192.5|0.68|10.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ra04907j|gbhfOAI5W0F62oR0ytIHW-vBNrLX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|201.66|0.6809999999999999|13.34|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|gbkDnkpsq4LcZlosN-r4N-SIWdRV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.0|0.63|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ODA-FeS2-np', 'Au']|['ODA-FeS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201601119|gblGv2bRrh94bGVvpMZOGvuKbgrh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ODA-FeS2-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61|1.6000001706098266|1.055|217.0|0.64|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']|['X2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02442|gbxwI6URmXUFBiW203UOTWRm8PsB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.38|54.1|0.63|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b03089|gbyoDsJFGH-OjRRPnIGIFk_AdL3T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|gcB1wzrV-CG1Xx3hs7dqtJlqImts|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|187.8|0.77|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'TBAI']|bulk|https://doi.org/10.1039/c7tc03733c|gcSep4Lz-ptrbdG8c08y9l7LF5VA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|gcZCg1RNvK0WolMtnA5RjbvrLvyw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|220.0|0.715|14.38|['SLG', 'ITO', 'PVK', 'Perovskite', 'PCBM-60', 'Ag']|['PVK']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.040|gcbmo_aCyqXDLj0GNgIdQhuBjCgE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVK', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|160.0|0.748|10.0|['SLG', 'FTO', 'PEDOT:PSS', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'CuSCN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.033|gcdm14JnpENKxm9KuAfO5Tsbk18B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.11|226.7|0.759|18.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b09238|gckTRCjXUxGrjgkn__U9y0IIEB5_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br255C475Cs25H2456I1245N934Pb500|Cs25Pb500C475N934H2456I1245Br255|Cs0.05FA0.788GU0.065MA0.097PbBr0.51I2.49|1.6150001722092937|1.11|217.0|0.757|18.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01893j|gcrQIlye4dkNUbs0X2ojsTU2ehOj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788GU0.065MA0.097PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.0|0.68|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201501178|gcs4D-mLHOSETV2xBnVVLZp_Gt84|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.6|124.9|0.47|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr00420a|gctDHlAOygKtensntzySJNv98uWe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|213.57|0.6409999999999999|13.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00447|gdHqnafxgRJ4dD1CTGw2VkoqBm3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|239.0|0.784|21.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee01500g|gdHzAfF6x4ErlTSR28FHRq-G_Uf_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|197.0|0.6809999999999999|14.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr05504a|gdLgnI01iAf_VfTmndcg0qC7bleg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.1|226.2|0.79|19.66|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|gdScn0Wp4NqNwvDeoo3IIY4zSlBJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.0|0.718|16.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b02297|gdVoye3dgDFhVRwqkDPBGIqXRXrQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|186.2|0.629|12.19|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|gdb9rMgcC0fA4_YL6FY6vCpMSiMM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.87|32.2|0.6609999999999999|1.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|gdbhtwlOWWoFUPQ3h7O_lstHIJxC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|166.0|0.64|10.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.6b09671|gdi3K3dPRPkcG0Co8hRrjfTvIFG0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.0|0.789|17.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|gdnClsStyIaxhRuv6cyb8HD5NzGZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'ICBA']|bulk|https://doi.org/10.1002/aenm.201700226|gdnKtPo2jTC2rG46IpXQFwfiBzN3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.109|227.0|0.74|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|gdwzNHr07-BQg-8fIgzhB4IVGa0K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|239.08|0.667|14.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9030326|ge0N5nnGJkbCMYlpB6MDVE_pAiUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|204.5|0.635|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|ge0nkTyEZ7MhMRCKe1E4qaKtrsIT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.0|0.7609999999999999|19.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|ge2zKL-P6PLuKLK0IFQ6fyqgYEhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|156.0|0.68|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|geFbw8ya77y3h-7jaSvc9b2T_t_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.08|185.0|0.53|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|geVVLDPwEhu1V5SulbHnOgSJGa-O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|212.0|0.515|9.56|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'NiO', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s40843-017-9028-y|geWCCDPFFdfhufunVqZPld-YHIV-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.084|213.0|0.8140000000000001|18.8|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'TPBi', 'MoO3', 'Au']|['TaTm', 'TPBi', 'MoO3']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.9b01396|geZLG6nvdKig3DHBIWKdGxYQtsvQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'TPBi', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|178.0|0.56|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|geevZvKI4ksx99oNqZ-C6DvM63jb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.07|157.0|0.64|10.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2019.08.014|gegiJnODpvC3fVk4fuQ_jXbq_Z1J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||0.925|247.9|0.69|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41586-019-1036-3|gen7N3Eq8DgzxcaxM0ysS9pxm3AL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.6|0.7809999999999999|16.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00119g|getDhcR7_p3M7uKfkh2kJGbMbigu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.345|177.7|0.482|2.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|gexHSK8dV30isOg-EHYKtDJlGFzx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|177.2|0.62|11.44|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|gey0k-kZ4_ouSHuQvppyx-gjElAG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|168.0|0.722|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.9b00060|gf0ebOFbWsCq7aNQ4oLjaOfG7Ril|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|139.0|0.71|10.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|gf1IP-ICxrPX3PJ0fETIuLpRsNDd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|186.1|0.47|7.28|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc', 'Au']|['N-CuMe2Pc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800264|gfB4K_kbsYwxEWDGxquIG_9vegrj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'N-CuMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|209.35|0.615|12.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/cnma.201900097|gfLV8cSoS7WzcFea9aw9vtP_xhw5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|211.0|0.682|14.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-TriSe', 'Ag']|['NiO-np']|['NDI-TriSe']|bulk|https://doi.org/10.1016/j.orgel.2019.01.040|gfPvAgKlx6Izpoy7-iC2XVmIPPdM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'NDI-TriSe', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.17|14.0|0.407|0.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800136|gfRyvEsy60a6llS2leXR7_JMhuMG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.208|173.9|0.758|15.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|gfUHziBKtwFQk6JarmaAZNZPbozj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|233.0|0.79|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam6620|gfZw4--JMTPUITp46HwZk-rKUkop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.9|0.6|12.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.03.004|gfkdbG3czWXWl1lj2nmqwgXVBt7B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|149.20999999999998|0.7020000000000001|9.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|gfmV-A3Dth3tK5-sHJhRIECKNmQh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.02|158.0|0.65|10.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta06016b|gfy_HniPt3XvWQr_9cj_sTxDU5f3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.84|142.5|0.536|6.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|ggC9_cQpHcrQKmCIyLT71D1cT-qZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|163.0|0.28|3.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|ggKDpBob44bopB7Dbikacbbu4maC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|163.0|0.68|10.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acsami.6b02169|gg_ycGk7DZI9LMW1DaRa_V1Z1AE-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|188.93|0.735|14.22|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|ggg2YMykPWk2mLN1iac2QF3nYurP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|10.4|0.38|0.036|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|ggjnzLl5BzcsDBE-EswPT10XzyMQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.9|187.3|0.71|11.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.199|ggl7QVGbwcEOSb5JZnPaHZLkUxYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.195|225.0|0.77|20.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201809180|gglWZ0gJLy_5NWjDfmRFFKOClVPj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|239.9|0.748|18.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b02781|ggqbuGyqWc1-Iqx09JzBbv6uvLsZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.013|179.0|0.7509999999999999|13.61|['Willow glass', 'Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/aad71c|gh6Bep_YaZB-qZOUp_6r_ypFS_xJ|a perovskite solar cell with the following device stack: ['Willow glass', 'Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|gh6aPwn70kSwrj0pROGM7ofxU26H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C83Cs17H415I83N166Pb100|Cs17Pb100C83N166H415I83Br17|Cs0.17FA0.83PbBr0.17I0.83|1.6000001706098266|1.0|208.0|0.7|14.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803600|ghBy1M0fKT6XaD8aK24T80REkswq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|159.4|0.7|10.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|ghLLZ37BrjkxF-CxOw8GR0m-WuTj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.02|229.6|0.72|16.61|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b20933|ghSQ_-AGKwWdDaG6x3rRyM2DC_b7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.016|206.3|0.58|12.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|ghXCbIbHvVSMt5c2imciNy9dpac4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C17H54I13N5Pb4|Pb4C17N5H54I13|MA2PA3Pb4I13|||||3.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acs.nanolett.9b01652|gheZHTbGl_s8QlUET3NT2spSVUZ9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA2PA3Pb4I13. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.05|212.7|0.64|14.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800177|ghuwvFuOFlES82N-RAu9neoG646c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.1|0.78|17.12|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/solr.201800103|gi6RCLQsivwd_urrxQIyYhF0mWZS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.7490000000000001|123.9|0.6|5.57|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|giV1DcOqkaxE13grR3Be_pQD_btp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|216.0|0.59|11.08|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra23074a|giXPWIjX1lZBQ4HAPHyemKbqTyux|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|174.20000000000002|0.71|12.7|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151970|gietsTxVe4vR6mryyqWSOP4i3lD4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.7|0.706|14.94|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b'] dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione"", 'Ag']"|"[""Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b'] dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09146|giq9di3OLUf99IvWPtiSDCWPAZfs|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b'] dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione"", 'Ag']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|126.0|0.68|8.5|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'Ag']|['NiO-c', 'DEA']|['C60']|bulk|https://doi.org/10.1002/aenm.201602333|gitgILqm3thbTkpvy84Un92_9xGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.355|89.39999999999999|0.5379999999999999|1.72|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C5TA02950C|gixQ5OpziAKS3eHDQCJpryScl_Ax|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|203.0|0.63|12.5|['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']|['Polythiophene']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-015-0755-5|gj1GjbP3xX20FObD2fli9fA3lr6Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|0.71|4.6000000000000005|0.278|0.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|gjEUhDFF3wSeiwpNXGbVaFHKjHCY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.0|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201700173|gjRfMf-XGSbSbSQBnGQFnd4E8QoJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.0759999999999998|158.8|0.758|12.95|['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']|['CuO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.012|gjV40xFdWBCA64hHBZglG0WLN2xP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'BCP', 'Perovskite', 'CuO', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|||||14.01|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.061|gjYzRUrdEF6kIQgm0znpkL5D2xca|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|231.8|0.69|16.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|gj_vkYE4szwFzam3R7fslid6AMl0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H600I249N100Pb100|Pb100C100N100H600I249Br51|MAPbBr0.51I2.49||0.84|161.5|0.479|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|gjeMo43YHt-fdSMkBNGuIOSE5IJg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|79.80000000000001|0.67|6.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|gjnXQSZuA9gS9OuYKMcYM1oGxC5G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.0|0.72|17.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|gjoM0llhzVcN02xhYmJh-RKNhbpj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b03225|gjotLKfo6DhDEEGo_3AFRvp_RD_6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4|68.4|0.7609999999999999|7.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta08900k|gjpWZNTZMqLi5hXvqWlAmXHhpdD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C200H1200I597N200Pb200|Pb200C200N200H1200I597Br3|MAPbBr0.015I2.985||0.89|150.5|0.6970000000000001|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.mtener.2018.03.003|gju9d6bi1gukaJ2vC3zEUeKKuxz4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr0.015I2.985. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.05|245.0|0.701|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|gjuSnS6YBnzkpM8PCySBNl1i4b2C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.98|212.7|0.7170000000000001|14.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/ente.201901042|gkGH8iHAyel5kTV_exNb8Ibquh8A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|234.6|||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab4f2a|gkH5zIJJC-oEYVZCgVWDMSRa7mGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.46|73.3|0.284|1.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|gkIluhBl5Wx48mWB7c8hnCDAn14H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|231.7|0.685|17.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.04.011|gkMHA4kwY1NKJNuf3we_BlhT3Ves|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|214.0|0.76|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|gkQj2POq8Y30dcLKeGnAlzqe5Vi0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|164.0|0.6629999999999999|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|gkRlRDO8d5wiK-uY4IaeLPSEE0Db|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.012|191.7|0.7040000000000001|13.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.03.021|gkhTwC3vTOYslc-stJWNmi3_xCZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.526|118.0|0.35|2.1|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|gkhfy21zViTzGh2We-yxG8ux9e0R|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.8029999999999999|18.35|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b02611|gkjJBr_pEZgmStvW0MuQc9LcJZXV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|124.0|0.36|3.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']|['DR3TBDTT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|gknS4Wt7eWUMAdtB5-v3dYOCL4eJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|238.1|0.63|13.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|gkziarNU_LMZdrhFeZ1_fyimAnMx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.78|181.5|0.55|7.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|glK1s0I8ShQOMHuHcT3GlFZt82lH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|185.3|0.502|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01325a|glXUQURlh5gDzBmgJVZyFhPFOH8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|223.9|0.74|18.82|['SLG', 'ITO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c', 'SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|glfrBu2KatXO77-DiLDtTZAG7306|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br251C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br251|Cs0.05FA0.79MA0.16PbBr2.51I2.49||1.17|230.0|0.71|20.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee00421d|glkfsVNLxFykVEHVaKMqSCYGcSmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr2.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.725|138.0|0.56|6.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|glluws9ewY4qrAO3mz9n8AotHxZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.79|271.0|0.7609999999999999|16.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/adma.201907058|glnrHf04oDyY2-G2wYHPo9zwET5O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|230.6|0.65|13.23|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|glu7QT9gl_5ALmgkEfQjf_YKGMt2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.931|159.0|0.491|7.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|glucVQbvF0zihYk-7ujAXssigPf7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|147.6|0.61|8.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Di', 'Au']|['H-Di']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.71306193|gm4FaW6hqUr3DfX7287j-z6AFjKB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Di', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|196.0|0.6|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|gm5_H33qI_1bSlL693nIhqvrUY_j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.785|161.20000000000002|0.65|8.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|gmC7tyw5R3crTFXzsAZtyRCd_FA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.02|201.5|0.58|11.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|gmDWp_S5eRtR9BOkuBAJvsw9LJVz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|99.4|0.481|3.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|gmO3TwqTfYyturXLSYR_L7zvzs3z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.794|195.1|0.52|8.11|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|gmQaV7F9LXmQT6EHT5PhUqVdLDp4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.17|58.3|0.66|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-018-0187-3|gmWrGCbH-6cZq0GbB09ztrFAHtG3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604|0.88|198.0|0.637|11.05|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|gmX4hleK7KWHnnTO1hCICEj7N4Gv|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|234.9|0.67|16.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|gmYXBBFNF1cpak6Y7h1uVsdR_GcH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H32I16N4Pb5|Pb5C8N4H32I16|(PEI)2MA4Pb5I16|1.8000001919360546||||7.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|gmZ5FrlensZ_MWVPxuGzCZZeX4XY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.1|0.67|14.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/38/1/014004|gmbzwsjvk7GGrzVvn2kvd3gf90Vq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.9|0.8|20.06|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|gmsZH48f4gk7L5bbcQTw9TI2tTvy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.6|0.7909999999999999|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|gmu6VcvvuNOTHDMp9Gk42ed8p1RC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.29|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-MPy', 'BCP', 'Ag']|['NiO-c']|['C60-MPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|gmuOwAaNKTe3ZSluiymiNXTNyS7d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-MPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|193.0|0.5820000000000001|9.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201700007|gmutlyIqtVoSI9deb0QAQWigE8yu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|200.0|0.74|15.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|gnEUU5nxj3UY7X7cAa9MoRsiqMXN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|212.4|0.71|14.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08947c|gnGyHGL0s8zs4na9S3IKxpZH_Ifj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|146.0|0.607|7.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|gnUdpNj9eZBNgy8g7Vqdd-Q2wPde|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.0|0.71|13.3|['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'CuInS2-QDs']|bulk|https://doi.org/10.1021/acsomega.8b03629|go-gJL7cK5cz69DaWgzD_sRjiBM3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.0|0.764|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|goEC-EeXAgeB1nE_nB0aJ_-WkRHo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|13.5|0.29|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag-sheet']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01983k|goGW-hx62lq5Y1MPoqdgMwESw8of|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag-sheet']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|goOyhOSn-jeZSpuHrY_y1bKdkm4i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|162.0|0.675|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|goSMSu7c7eaQdtBZ2wn6h6DjyRMF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.085|204.4|0.64|14.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0403-4|goVTI1BnJhc8txgPc6gVQc5P4qIH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|211.4|0.69|15.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|goWQtTkUSoDAFctiLPRAmJYxUafx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|228.3|0.71|16.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta00398c|goZ1u6ChlGs1z9EMZqIbQjJejw_e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.0|0.741|17.8|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsomega.6b00465|goi5lr5RqZWKDvA-_1-DSudXtSJX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01776b|govcL8WbyafvbYUMc4ODgsgNHiQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|gozCKzIlT3YYXJ8Dftu7Zrz52I3F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.068|215.3|0.743|17.04|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|gp41E-jL90ZNGoYDf5BVJK514X2Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|213.9|0.758|17.8|['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-nanowalls']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|gp509VUwdWfy9sdVfuPXZR9hQ4Rb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.7|0.6809999999999999|12.57|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Er-np']|bulk|https://doi.org/10.1002/anie.201600702|gp51eEuoq5CH2PA384cfs43oMdEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Er-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|225.9|0.626|13.72|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cp01140g|gp6NigmKVnXexiyqa2QUp0H1il4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.081|232.8|0.8|20.1|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201901352|gpAMwfX0WvGn24Zn50l88t5nzrSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.24|0.682|14.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|gpI4TPPCu7GCl0SzBcAneVLgcaFT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|222.6|0.722|16.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Preovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201910561|gpNjsEN-wEhWa6DvcCmpB8g8K3Um|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Preovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|147.5|0.611|7.97|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|gpOP_tmvCS3qP7EUfBOBvgaYNVSd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.4|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|gpWkCnDroAZCvmTG_aKUSdEBGvHO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|155.0|0.688|10.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/nano9060908|gpYBIt7yU2w5zeNnpRvXMJPjs0Ph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|157.79999999999998|0.47|6.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA01824B|gpa22g1OEAjcdiHqzfPuV2_I59an|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|215.3|0.76|14.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.123|gpclH9S09FgyTP50QAjGP_d_zEw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.23|26.6|0.29|0.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5002117|gpjiEPsSroC9yqmVKmhmsIaM-cAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.904|173.6|0.67|10.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01129a|gpn1g_Viopmz2d5_uQw-6RlNu7dZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|1.09|223.5|0.703|17.13|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135197|gpn40UAaXECjocvnU1SonM_ukQTt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|220.3|0.73|15.92|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Spiro-MeOTAD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900389|gpuQkPxBLCveH8JGZh2YhE0YPah7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|135.0|0.433|5.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00577b|gpuc_VPbZOEbnVOPwAGPNmf3NUbv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.25|73.89999999999999|0.79|7.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|gpvvT6GfC_z5tqLF7jM1V811kBS9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.68|14.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|gpxa_Z94fsv8J_Qa1cZaklUMdMZR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|180.0|0.632|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|gq_NnJjpnw5qKKhMvjVy1NLmcd0P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.82|158.9|0.731|9.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|gqftZWJF63Z450r1cXGxs35Rp3Al|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6040001710363507|0.96|196.0|0.589|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|gqqOLjwHzWVCZNcRmohT_ACtO0Vb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|181.5|0.6920000000000001|12.85|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.01.025|gqqQqn27bjgSQbmIj03MN-vZ_kog|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.623000173062343|1.06|205.4|0.6829999999999999|14.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b03116|gqs3y-UETpeUiWnCofcEvqfG-Jg_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|227.2|0.691|15.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|gqsg8BEvKmFQDszleY3ImHiMGXnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|141.3|0.58|8.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201404189|gqtu5jPvLudfAJqZi9dleXRPjn4h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|182.9|0.552|10.96|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16219|gqyEjy_SmFFmOG2_J-Oa3YaiHE_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|182.1|0.7|12.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ITO']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|gr5YhKiyARUqxCuTiAgPtGGQGWGp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.2|0.659|12.77|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|grKPUCgipJF11QHD-V1kktDlLdQw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.0|0.705|14.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|grRvVa3qZr9M4gMeSsuOI19ffBho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|137.0|0.473|5.85|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PT-PDI', 'Al']|['PEDOT:PSS']|['PT-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|grSvp1XL7UqXpREBk18dYl6VFwfL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PT-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|186.0|0.504|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|grXTz7uSGbUzJbNuPeapiPo_cPVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.85|180.2|0.746|11.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501773|grevdCJCSTlUvhYyKjWuc-iXf44y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.4|68.8|0.583|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|grfzFkAhzVS8HazBKimEuSDW4Eyy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3C100H515I297N185Pb100|Pb100C100N185H515I297Br3|FA0.85MA0.15PbBr0.03I2.97||1.11|237.0|0.765|20.1|['SiO2-hollow', 'SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.0c00175|grj8I63IrXGAilZbndNgg5FB7McA|a perovskite solar cell with the following device stack: ['SiO2-hollow', 'SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|84.80000000000001|0.52|3.26|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|grq0F_rG-BZfbSuktqVIidePAndA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.49|36.6|0.22|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|grtTKzWcOTN4AJIpxv4OTyxtH94M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|223.9|0.626|12.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08565a|grueFywSYMxN59HY1KWNn1oLoCVw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|144.0|0.7490000000000001|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPPDBTE', 'Au']|['PDPPDBTE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ee44174a|grwFPU3dBXZ2k1YTMwUTdwZpAzCj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDPPDBTE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|197.9|0.73|12.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|gs0CHEE1BJIwFIR81qHtre9stsGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|178.0|0.51|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|gs34a4-AEHgK2EgebNiqll2fOCQG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|202.7|0.8009999999999999|16.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|gs7Pir9ucXm4bgkpnqYTSGl0sDD_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.7|0.76|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|gsKx5BE3p9AoSuUDU6eEK_-1o8v6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.12|229.6|0.71|18.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700740|gsOB-8jB8PfNwcjtWGADD__svyEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|230.4|0.622|14.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano8090701|gsWwWUfe9pP0tBksmrOiJepnEu5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|gsZKms6ZJ1yBj7i5Pl_OmcKJfpbC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.0|0.78|16.8|['PEN', 'Graphene; MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/c6ee02650h|gsjUwo8kUmG8PzNo4XyfeNWiqqEX|a perovskite solar cell with the following device stack: ['PEN', 'Graphene; MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|213.0|0.84|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|gsm27Ak4vOVm2RoJ8uBu3wi_1xBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|188.0|0.695|12.9|['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01118|gsmYHCysTNVIhioEIXztcurtEYEg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|171.6|0.621|8.54|['SLG', 'FTO', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c5cp01534k|gsnbntIo5gOlcfLdtLVBSNq8RsGp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.1|0.799|18.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE2', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pi-PFE2']|bulk|https://doi.org/10.1002/aenm.201901257|gt0J8lc3RQF0ROshqWoejRJNpVAa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|gt2M7IxstChJsO4pIEhTNcvj9M46|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.02|232.0|0.79|18.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41586-019-1357-2|gt52UG8rp_SAR2jvhTUWd0dKzTcW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|224.8|0.77|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|gtF9P9QPhtTMq7Uw8Jl6VGXXaEYv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.4|0.6890000000000001|13.29|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b08135|gtFvLipz8NcUrXqRRiyB6zTacO7Q|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.3|0.31|5.37|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2017.02.003|gtRzLomOrFiwfzvYznmf7pmim9jg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|203.0|0.68|14.5|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|gt_n5zBHWv9z4HOACS62algELxMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6360001744485473|1.07|219.4|0.71|16.7|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.047|gtt8UFfh5lBMxar0a8AymevZnZEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|233.3|0.777|20.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|gttM14C6-gKvUwlhdU34QSXWe4Gl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.9|0.62|13.43|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|guPVrTRMtsEv8jMW8M5V-pNnEXnR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.0|0.7|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b02014|guXntJ6N15kl_kB56PRKAU1QCfQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H484I270N181Pb100|Cs5Pb100C95N181H484I270Br30|Cs0.05FA0.86MA0.09PbBr0.3I2.7||1.1|241.0|0.76|20.4|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13876|gu_cqmWKNQxwnw5p2lQXycfdpLVW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.3I2.7. -Br3000C9326Cs500H48071I27000N17211Pb10000|Cs500Pb10000C9326N17211H48071I27000Br3000|Cs0.05FA0.7885MA0.1441PbBr0.3I2.7|1.5500001652782691|1.019|197.0|0.73|14.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'ITO']|['NiO']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.egypro.2017.09.091|gulpQQYyFmTcDPkn4QIcRH5tqn7e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1441PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.17|1.2|0.217|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F-PDI', 'Ag']|['PEDOT:PSS']|['F-PDI']|bulk|https://doi.org/10.1039/c7ta02617j|guzPyx1gUUC5nlFbZVw2kNHmiuQx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F-PDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.03|198.7|0.753|15.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']|['SDTCz2F']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|gv338dVEc3TBXivM_VPhzNbzAten|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTCz2F', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br9C40H220I51N60Pb20|Pb20C40N60H220I51Br9|FAMAPbBr0.45I2.55|1.6500001759413832|1.04|203.44|0.66|13.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b00144|gvrpEQi6z-qSncDCBSht6FSrS-mA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.0|0.79|16.75|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.8b05560|gvw9LR0_HjBavvMAPqzBbX5vgZV_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|gvzMXSpgx_dbBDP0b5eKnNl7SZt5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|gvzT4mWiOUvA_f9f1YqQ6ztP4kpq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.09|225.0|0.74|18.0|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']|['Graphene; P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|gw-KGvGjWPZS8J1oK7xoTbsOzh2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Graphene; P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.0|0.598|11.98|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|gw5_dW9DczuKTIca-jHyNX8j_n7V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|162.2|0.43|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|gw6esXZKegqGLq0u8SdLNOW12apG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|84.9|0.49|3.56|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.06.001|gwTLj6Sj91x4GaCmk3ReUFLvj__1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|227.4|0.65|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b08981|gw_qJmqJlyV7c4rm7RjhcbaRPOcl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3300001418194185|0.654|227.7|0.501|7.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|gwbXMxi3w9o4t8y4YRYvXcZvdT8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -Br9C96H483I291N189Pb100|Pb100C96N189H483I291Br9|FA0.93MA0.03PbBr0.09I2.91|1.5500001652782691|1.09|248.7|0.748|20.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/NENERGY.2016.177|gwkyyLw_0FCE5kN-6EPUjj4ULgFp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.03PbBr0.09I2.91. -CsI3Sn|CsSnI3|CsSnI3||0.21|125.0|0.46|1.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700224|gwlj_kV5KxHcTUG9cct5uQqZQj-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.18|138.4|0.66|10.77|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|gwlzxV0iNB72mxUVZDlrvSg4-bz-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CsI3Pb|CsPbI3|CsPbI3||0.4|154.0|0.3929999999999999|2.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aag2700|gwtCb5OuWyL6mmsZAuiPT8hRY6nR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.1700001247584355|0.376|175.5|0.5660000000000001|3.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja5033259|gwwP4x3z43-GET131CMHzQbt2b67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.6|0.62|13.3|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|gwwxfTVAGsKQ9rv87eJSN9duvRQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|216.5|0.52|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Spiro-MeOTAD']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/mi10040266|gwzb0_ctoqiTLtHSBFs4O5t0r0ul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|201.9|0.6990000000000001|12.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.10.011|gx2tuYhDNsAVx2sQMgvtNXMaJG8O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|166.0|0.547|9.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1246/cl.160881|gx6w3RVPiggG5WkLSx0fspQ6NTMe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|194.5|0.675|12.53|['SLG', 'FTO', 'TiO2-c', 'Au@Ag-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au@Ag', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|gxLqWrkRblNa1oB-F0jVERQvFb6L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@Ag-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|201.2|0.52|10.3|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s12274-017-1896-5|gxMhiRb8vMCJuXPEf-ex_GrUIvQS|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|235.3|0.61|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110318|gxMvDrKqY65PrjGFOsThf2bdGfaw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs97Pb100Rb3|Cs97Rb3Pb100Br300|Cs0.97Rb0.03PbBr3|2.2700002420526912|1.436|69.9|0.763|7.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|gxQIcG1-MFk7Qrm-kakJ4mHf3sOT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.97Rb0.03PbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|154.9|0.7120000000000001|13.34|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|gxQp7aDlmWRzTn90Dffx4Oxj6rUI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|232.6|0.6809999999999999|17.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105681|gxUznZJnBW-giUo2y7SMV27MTD50|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.72|136.1|0.601|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|gxWO3StWXYDC3RB2v4yj5n6jXhIM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.0|0.73|15.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201900252|gxfceicIDiGELTmrJ5mkLQkJpRWR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|194.0|0.59|10.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|gxnSj3c7rQYTKUuJ3kg9vmmHrbCy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.2|0.25|4.83|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']|['SFD-Spiro']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|gxuca-JuBszLxguGfS7N2Wx85y9Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|164.8|0.8|10.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ra03485c|gxzwyqxbZc4L4idEyV3UxMb9qitd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|176.1|0.648|10.05|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|gy8MT_WxPZrYCajtGBmKyh3nn9lv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.79|19.1|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-04028-8|gyCfBbDjwoSEQ1wAP4eeEEyx9mou|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.97|186.0|0.62|11.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.carbon.2017.10.015|gyKHm16vPMVNbMfMoSsrsjI2-ceA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.88|141.7|0.64|7.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'PCBM-60']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|gyVE4Q8Fvd2U8Q_GfxKT25I_MHVu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'PCBM-60']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.99|197.1|0.65|12.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|gyhsPDYSvv2NX-QYs96uzqwzzxum|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00358j|gyr5T6x_BoNA4Mx_gJtNm5mMR-pY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.995|160.2|0.588|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']|['PEDOT:PSS']|['PTTI-1']|bulk|https://doi.org/10.1021/acsaem.9b00857|gyrEPjA7Fqr6yWtxnLI3xXQgynTx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|153.6|0.58|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4980525|gyrtw8GPewmLdHqVaouLiAy8JSpz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|31.4|0.53|0.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|gyuLtrSudskNg06m7SrL58Gx9fsl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|190.0|0.69|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acsami.7b10987|gz52nMf07ubv7G3UXSoh0-BxG3iR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.7|0.672|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|gz7d4VudwJ9h_4X_TAeOrQllkpXU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|221.4|0.795|18.81|['SLG', 'ITO', 'NiO-c', 'YC-1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'YC-1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pip.3205|gzEtZGLk6i1jLpTldl2xRgSZ21mF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'YC-1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|234.9|0.753|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201915422|gzJh0ZPuQLbbNe9qiia-_ofk7RyK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.77|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'LiF']|bulk|https://doi.org/10.1002/aenm.201600994|gzRhSUFgFcbR9AB4h0nPthI16Ewd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.0|0.72|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|gzfBYfmfklzMPcRSaYT597IHizES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.7490000000000001|16.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|gzg4VGsufmWo1KyZlaNQ2gWGiQN1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7140000000000001|140.0|0.52|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|gzhzlr_nXY5gCDwW4A2SK1jonOFP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.2700001354215498|0.002|2.2|0.57|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|gziu_YE1xi-in_XUa2mTRaalmu6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||12.64|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M108', 'Au']|['M108']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|gzmANO58XpAwG_1pkK-vtW6bAQDs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M108', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.6|0.7190000000000001|14.9|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|gzmMF4QVg069EbOkYKczIME-rZDl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.211|147.20000000000002|0.7879999999999999|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|gzmr0GWHt17YZK2GVkDJiNsxrMBQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br46C97Cs3H505I254N174Pb100|Cs3Pb100C97N174H505I254Br46|Cs0.03FA0.77MA0.2PbBr0.46I2.54|1.500000159946712|||0.467|7.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06687-z|gzrHo69oDTraHVGUXD_FBUSBf4fw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.77MA0.2PbBr0.46I2.54. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.17|226.7|0.725|20.58|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201806095|gzvRVWoI3k-fNxxUH895_4YE66NJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|167.89999999999998|0.69|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|gzwm_AR5tRmc4Q30z9lwmW1kgmrS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|195.0|0.73|13.79|['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoS2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2020.04.021|gzzjoX3_k4382ja1ZpPl4UuYPWkG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H541I300N159Pb100|Pb100C100N159H541I300|FA0.59MA0.41PbI3||0.98|222.0|0.67|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.061|h-0VbsACJmq2YsNdfOU7V6cTtMj8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.59MA0.41PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|169.0|0.71|11.0|['SLG', 'SWCNTs', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|h-HCo9TxtV2zA-vmcQlshZUrRJ_i|a perovskite solar cell with the following device stack: ['SLG', 'SWCNTs', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C14H20I3N2Pb|PbC14N2H20I3|(Anyl)2PbI3||0.746|12.0|0.73|0.653496|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00654|h-IQMAaN8mM1ijqeiuBi402NT02p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Anyl)2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.0|0.58|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|h-LDV0b8rKgJmgX5SIAv-GoYqkGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|217.0|0.81|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|h-bVr2BjvTiKXGWKX4mR5CWiROsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|101.0|0.52|4.0|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c5ee01169h|h-fyecTCspyvU3PtPK4o-OwS_HvG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.4|0.5670000000000001|11.41|['SLG', 'FTO', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ITIC']|bulk|https://doi.org/10.1039/c7ta01636k|h-qX3hWZqjn9JV0tz3IvKBZf1MKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br4C3CsH15I8N6Pb4|CsPb4C3N6H15I8Br4|Cs0.25FA0.75PbBrI2||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|h-sotPYfqm8LhYc4PLel_Q8Mzy0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBrI2. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.09|217.0|0.67|16.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|h02kH6IUMd0kYfnYnIUYIwSiNFnm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|11.3|0.16|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|h03qBr50chT_WLqVlhEl-7z6Sbse|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|161.0|0.61|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja411014k|h04VheWyQO6zrARIl0j9hyDSLblb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|155.9|0.57|8.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01076k|h0BPHNC9_dQiMOHBOdi0xIdaOLcF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|183.0|0.68|14.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|h0EBxN6CVzE1Leco0IdIy84XjATc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|165.9|0.446|4.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|h0VFlgndUp3HFWP740Rbtrnw-JgN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|217.6|0.7|14.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|h0Xdv4lbhTmEPMbxeasNCT0g8yCa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|220.5|0.7240000000000001|17.15|['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1002/adfm.201706317|h0Y6bTYWfs912easQ5-Au2i4-VWP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.097|223.3|0.76|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.048|h0bEVRZ3IiEHWX3I4cF4kPCYHA08|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|147.10000000000002|0.57|7.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4RA17316C|h0fzxgWgGZLX4Pp4-4oELRE9rIj8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|229.4|0.615|13.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01076|h0kCFE-mb8-oxVF_8h_ZFRvsh7HO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.73|108.9|0.7|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.202000223|h0lQkWg6tnh_Ka5UxBx04D7cOtfH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|172.0|0.68|11.9|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|h0zYECFIH7pRnd80EgNHsb6B0AJC|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.0|216.0|0.66|14.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|h17WakVNZH5HbcmBwkTtahZ45iWF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|h1BgsAdq0OExBjeYL9ldveSkGmXo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|153.6|0.5|6.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.11.052|h1FIK3Rt1-d1lk20d1XmAxUMO-St|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|191.6|0.6459999999999999|11.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|h1G3Mk7-PW_32aGyWX_FY5R7O1l5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|157.3|0.679|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|h1HMkMlOC-4X3b7VLVikdMLxPaxr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||1.014|210.5|0.687|14.67|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|h1SWKdV4BoFjRXQ61kf0_NsgUj5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.056|225.55|0.731|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|h1i-TQ7imm8FLEHSirID4uNzMD4i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|138.9|0.67|8.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']|['Yih-2']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201801258|h1qyhIy2Gqb63lfVZx2u6fzYXwp4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Yih-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|174.60000000000002|0.56|9.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|h1tUGAfX9wJDof83IWc7rp1hYCsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.0|0.6679999999999999|13.6|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'P3HT']|['SWCNTs', 'P3HT']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|h286xBo1aRmeg5979buRoSAWpIz_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'P3HT']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.968|209.0|0.7140000000000001|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.3934/matersci.2017.4.956|h288DEz7lCbAESfRhc7A1l57N_8v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.9|111.0|0.588|5.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|h2A64a7gWlgC1EuUio2q_f9e2L1E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|0.936|225.7|0.7190000000000001|15.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|h2BvimOU_rVzgG8tWvUu0mvffaB-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|161.0|0.57|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|h2CFXGdWSs6gW6Vi2I2lSw1Ic8Uj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||1.06|182.1|0.73|14.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|h2FpTFeEs1xUcKXdJnm-oQWaLFzM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.4|0.747|17.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|h2PnE4H-VbYa6FbsTAAruVByyux9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|192.0|0.636|12.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|h2PyCOZIC-SxFsU8MbuAr-4wC4oh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|205.9|0.61|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBDTT-FTTE', 'Ag']|['PBDTT-FTTE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.002|h2rGjsWWo_A9s1WeTI4fLk5MGVLY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBDTT-FTTE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.74|17.0|['SLG', 'ITO', 'P3OT', 'Perovskite', 'C60', 'BCP', 'CU']|['P3OT']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02503|h2uDVo2pFjs955iz2gO2vsgBBUyL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3OT', 'Perovskite', 'C60', 'BCP', 'CU']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.862|104.73|0.6779999999999999|6.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|h3-1dOYgiUu14CTl8tljzBV0nD7s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8190000000000001|137.89999999999998|0.6759999999999999|7.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp06418k|h3-oPX-MlWRXUbM27drIG675Gp7J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C100H525I278N175Pb100|Pb100C100N175H525I278Br25|FA0.75MA0.25PbBr0.25I2.78|||||13.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Bp-OMe', 'Au']|['Bp-OMe']|['SnO2-np']|bulk|https://doi.org/10.1021/acsomega.8b01817|h3BzIkAv6GpA_HEKzFFrT3SsQtc-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Bp-OMe', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.78. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|135.0|0.63|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|h3CR4iuFhS7BOmY4XuX-zwg94Eby|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|153.5|0.72|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn5014879|h3E2hhSEzqE3n4XCjzkE1Ryd7tCP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|198.0|0.61|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-2A', 'MoO3', 'Ag']|['Ph-TPA-2A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|h3EddtkOiE3tB7C03p93uXy8f3ZI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-2A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|220.3|0.7140000000000001|16.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|h3HgQ73kp2OrV9sE1uciFhzh2ezq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|h3OcK1Pq0H1mirz1hGC6H-n7ZsdP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|236.1|0.7170000000000001|17.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra07800a|h3RtKl_BTaAw3eXbp3jeK5koGFR7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|192.8|0.642|12.58|['SLG', 'ITO', 'XSln1453', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['XSln1453']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.11.055|h3WHnNl8TUwB5gaK-LHZq--dDRdI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'XSln1453', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C93Cs7H480I249N171Pb100|Cs7Pb100C93N171H480I249Br51|Cs0.07FA0.78MA0.15PbBr0.51I2.49||1.1|221.5|0.73|17.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01508|h3WNnHoFCd8rYxhzn7PAExjZtYGK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.13|221.5|0.722|18.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|h3Yl_RccIRcAZtqaUlhlBq8IIGSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|190.0|0.61|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b07216|h3ai8OF6sXvpToiUDzDi4vjxUwbD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.06|213.6|0.54|12.25|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|h3grkvp79KlZ6hYwoAzcfHt7AIZt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|160.7|0.521|7.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4926578|h3rxDKvYh4sQq6O8Sv_3i1X8Nq9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.862|208.1|0.622|11.16|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|h3uVHY4xLBbJfx7OiLUTnnvumj7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|138.0|0.35|4.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'CuPc', 'Au']|['MoO3', 'CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b10898|h3wsJTMYrPLXjh1KMMPrU3XAU_Ow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|155.7|0.53|6.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'PDI-C4', 'BCP', 'Al']|['PEDOT:PSS']|['BPTI', 'PDI-C4', 'BCP']|bulk|https://doi.org/10.1002/cssc.201701827|h42VmtHf5iuvFwLrjobIyfkAyjHz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BPTI', 'PDI-C4', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb97Sr3|Sr3Pb97C100N100H600I300|MAPb0.97Sr0.03I3||0.9|184.0|0.647|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|h4DZHdVDE2jRvN_-AXQq-kL1NgIm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.97Sr0.03I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|172.3|0.71|13.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ta02822a|h4QfZXjhmnOAs61XIpp0DvRIUlLp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|90.9|0.397|3.45|['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw', 'ZnO-c']|bulk|https://doi.org/10.1002/aenm.201400932|h4XiFPz9_jUuophAGu6UGjs-I7QC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|140.0|0.64|6.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|h4fy_L-R0YCCC_T1l94vnP1IwLfp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|213.2|0.652|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|h4i_QooyA53UMZJrdsb414bgxKdO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.3|0.6890000000000001|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00220c|h4k9tXQlLFpqMRcRVgumA4h6eRFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|208.0|0.79|18.0|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|h4lAQ1uZv6zKH07ePHctPwjbNgcm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.077|207.8|0.722|16.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.034|h4qbJZRh3IFZOFXx3iRKlvBxxnK5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.145|229.0|0.77|20.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F16CuPc', 'Spiro-MeOTAD', 'Au']|['F16CuPc', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b15870|h4vwcmSyBnMA5Q8D2jx6is6Ua8sJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'F16CuPc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|1.02|218.6|0.427|9.55|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|h55FCbe-om_WlZYf3yGNCqRWkD1_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.09|225.8|0.7290000000000001|17.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ10', 'Au']|['POZ10']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b12678|h5B9GvdFST9mDY_Q6A9ZczJqGcbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POZ10', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|224.3|0.75|18.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN3', 'Au']|['YN3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12139g|h5N3ISLVbAozjwFcbplS1-U52zIa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.1|0.7|16.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|h5OqoT8PgI1cw_AM4Fg7LgW-veCB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.72|190.0|0.72|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C8TA03054E|h5SWW_4kgMIHq8B2UW1B7btV0lzC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4||1.1|218.2|0.7290000000000001|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701911|h5St5OzClkFPJZgMReDBBBdlQ4sI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|166.8|0.62|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/0268-1242/31/2/025009|h5ToMvM9M2fYegswqrnT6Xc93cYJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.777|114.0|0.48|4.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.11.094|h5ctGMS7d4IT2tTDSY1XQWZTp5Mn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|167.0|0.715|12.17|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/s41598-019-56338-6|h5ggylmdoShwCCaDkxtfKcThG6BR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C4CsH20I9N8Pb5|CsPb5C4N8H20I9Br6|Cs0.20FA0.80PbBr1.2I1.8||0.92|157.10000000000002|0.7|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09340g|h5neLwt6fbsff5J5_G_8aLzfCNIp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.20FA0.80PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|193.0|0.6859999999999999|13.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10827g|h5o9G5JE-ZUlmG-M369jHQzUPY1Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.4|0.63|12.69|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA04192C|h5qgmc9ZPSs0Au7PJkC2hZQSZRVw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.6|0.65|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|h5yi2gg20aMRPLYhMk4zxsaxSpMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|87.6|0.158|1.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|h67xEpQZeYasEAzcLTyfyDK6BxaK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53|1.5900001695435149|0.97|213.0|0.598|12.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2020.110517|h68HfVlViK3kwBv3T2U_NFltVrbg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|165.6|0.78|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|h6K6JweCsHHhkaCB3W7hqYZIKcst|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|180.6|0.735|11.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1674-1056/25/2/028402|h6Pm5_2YxeIaj-AP4xbRPvEMJI-b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C219H2659I1394N574Pb440|Pb440C219N574H2659I1394Br45|(NH4)3.4FA0.15MA2.04Pb4.4Br0.45I13.94||0.96|155.0|0.575|8.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|h6Skb6cz_cMbUhfckoP8pIFDK4lt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)3.4FA0.15MA2.04Pb4.4Br0.45I13.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.901|217.5|0.5489999999999999|10.78|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41598-019-42962-9|h6Xf5m_kQGiuA7SBrToXuMe8oMcW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.96|218.0|0.684|14.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|h6cqtthTJ7hSFQWinG05lAxjlOCY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.94|197.0|0.61|11.4|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|h6hrh77mRhP_6lMOw0E841lpco6n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.011|211.5|0.695|14.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|h6wSLdm_l-tWOazOKhHExjUzNlcG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.91|127.5|0.67|7.84|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01942-5|h7GdWjGcjlBriwSg9UZH2RpakSCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.11|219.4|0.763|18.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IDT1', 'Au']|['IDT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.015|h7IkO_e3EfbZj5_WFOR0wxK1ljeG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'IDT1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|190.9|0.46|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|h7Ldh3mRipfSuJkxxSgXRh7z-BDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|120.0|0.596|6.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.011|h7MylUsN0xJppA4qqeur2AMAZNZi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|126.1|0.7|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|h7PxsT1XjawLBHeVixDMglFM2E5V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|174.3|0.7|10.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['Phenyltrichlorosilane', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|h7R4-FODbJ72h4IYHyEmJTFt2_w1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|222.9|0.77|18.71|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|h7l6Hpw_h3TxWf5Xrn7aFBj5BowG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25|1.6800001791403176|1.1|194.0|0.81|17.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b01255|h7mjHxHaDLUq9PuW-oPG9bqdk6Sk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|142.0|0.49|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|h7oWdZRNuiZqaiLlij8Xs9NlaZR7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|197.6|0.66|12.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|h7tg2ysRSgxt_eC3PUIFd59tl1f5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|15.5|0.353|0.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|h7wfFYbqST-Gyx-EQUx-9I0zNAq8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|155.8|0.58|9.24|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c5ta01200g|h7yu0VfWkhM70l_wfaxj2PSG3lyW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.0|0.73|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14564|h8-MFFB255PzgIc9O-jqmJoI-jyQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|233.4|0.644|13.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.OE.58.1.017103|h87BSD5B-hqf2TKxNuUpp03rY8R1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.9|166.0|0.76|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|h88m89UaUfcfyJyqWUBqKi9FL_Tf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|97.0|0.68|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|h8AzxMBs4q5JGGQNoadGWXVgx1go|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.14|222.0|0.7959999999999999|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b04949|h8FWvdERrY5Tce5x8ES05MsC7Pq4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.105|233.0|0.69|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02613|h8MzeifiWiaz0RLgV73laY4-B2TL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.0|0.6|12.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/cryst8050185|h8_PqlAD7y6OCcFvykrQ6i8Tu5JZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.09|233.2|0.768|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905502|h8pLHgjYJ6h0EKd6xFA7-unQhoOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|108.0|0.42|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|h8rjL3cAfdW-_U9bRR-6Mmj-agsV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|201.89|0.6679999999999999|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|h8x8kOTVD6RjkvjDewoBQZChPthu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|136.2|0.4|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|h8yCT5ZVs02gtYK2UEmlUeSVO0j4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|189.61|0.595|10.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1088/1361-6463/aa9df8|h8zN3ZjV1Yqn5-HlFNSbme85nAmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.971|218.8|0.65|13.81|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|h95TOmGBsmh_LN6ovvPeKUDf1fB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.94|149.1|0.52|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|h95t69Ahja5lm4kLxPt2ApN_Qxn6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|216.2|0.737|18.33|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|h9A2nbQ98Mz6Nj3camsEEDh2ya7r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H46I19N7Pb6|Pb6C9N7H46I19|EA2MA5Pb6I19|1.6100001716761378|1.018|211.4|0.552|11.59|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|2D|https://doi.org/10.1039/c8ta07836j|h9BTugE-bNkJqmYLK_9w241UjHic|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is EA2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3|33.0|0.3|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|h9DxJlyhJsE_gc3a3nKYYFbxzUCl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|223.5|0.74|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|h9Ix8Z93Vu06sFbOUr7v3C849SWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|230.0|0.7|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b01949|h9LVmIOv95LvJielUMQ5xDmgXHkr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.582000168690466|1.04|228.0|0.728|17.01|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|h9MB7egu5gtYTmzrrzSyMZWHCX2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|29.3|0.42|1.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600848|h9N--peSRLA4M-TI2qJCgV0dfGdM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||0.985|212.0|0.594|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|h9XlO9SIYONRArqqcjzB3nRnHib7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|164.20000000000002|0.72|10.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|h9Zn9shU4_Q5K_7hRCZt4Yxj-SN4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|196.0|0.726|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.electacta.2016.01.133|h9dHK4l9gTR6Z0MHyYKhkY2UVU-k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.06|243.8|0.78|20.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|h9qeReWt3v3NX8qXPcEC_EXfzf6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|233.1|0.79|19.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-018-9250-6|h9t1n7JZuY3g6kkVjsjFCv-xXoAg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|180.0|0.69|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn505723h|h9znM6ix2F7Zhl-6B_eBdV3oT4dh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.670000178074006|0.78|170.0|0.58|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|hA1VB-Xk2f966zm_1IuIO_UMiMQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|210.3|0.775|15.5|['SLG', 'ITO', 'PCBZANT', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PCBZANT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.8b00919|hACkPsTPMLhSaP9GyQDYK0F4SbQC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBZANT', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.051|233.5|0.754|18.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801717|hAKUZwPYHf0vE-Dd4mIWzVFSxr6Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.0|0.763|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201801170|hAW3Ev7tAqr-wh8eLtrD6CC_eF-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.98|191.0||12.2|['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']|['Cu:Ni acetate']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01308b|hAdts6f3gPtpOJLvLPhOVbD621Ju|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu:Ni-acetate', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.11|234.6|0.769|20.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|hAfMA3PyB7NKKbgkJQaX-L0-_ZrV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.9|0.647|10.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1080/15421406.2018.1456072|hArp4rILkCr5JhYFdyA1-LtkscCd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.0|0.6729999999999999|12.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|hAxFL9GAZW-o0ul9x5S5pAD1hXfo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.795|95.8|0.63|4.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD2', 'Au']|['PTPD2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra05564k|hAyjgwIjrCnkoZ33tEH7aJP3lsrB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTPD2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.36|70.19999999999999|0.68|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.075|hB1uhTdYJdoit54mA9GsMb09gaGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.15|246.0|0.77|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aat3583|hB5EK_P6OtF0K_v6PFC5S5avvKWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.804|265.0|0.68|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.18|hBEBa3LaJyNBy-LD0ocfQWB-pJ9C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.36|84.5|0.41|1.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|hBE_meBMTC2_dP2GYmIJNiot28Iu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|233.0|0.67|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep42564|hBIJHqu3QsW6GbLmXOb_D5j2OzT7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|216.7|0.715|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201702960|hBIvLGpF2MriDU4HqPpJzWimZiKI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|161.5|0.7240000000000001|19.23|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|hBUVjjC2yF8wcprkSqeDGGc1cxIW|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.897|144.3|0.65|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'a-PTCDI', 'Al']|['PEDOT:PSS']|['a-PTCDI']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|hBdNBL2FGh8svvPs2PdZipeYCv7i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'a-PTCDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|182.2|0.5589999999999999|11.55|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|hBhCednOy-1XSurqZmrnMvRBZIsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.962|177.0|0.624|10.64|['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60; PDI-DA']|bulk|https://doi.org/10.1021/acsaem.9b01154|hBjFTR1nPC_J_nEzlpWZW6etfXk9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|223.1|0.64|15.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.solener.2019.06.040|hBmKzGcftwuRd4jTfX3tEg_MitQc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|154.9|0.73|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-4-MOTPA', 'Au']|['TPB-4-MOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|hBnuPBQLbcPonhhz56HJO9wJKFRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-4-MOTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|201.6|0.607|11.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|hBp5p1PPVheIzcctnCHyclIb6N2D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|203.8|0.687|14.27|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c7tc04899h|hBxKW9y7bpyk4D5CSqENF6n7UEh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.1|161.5|0.55|9.77|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|hBzcQltO2OKhGEhkjDf9mjVI8h0F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|193.2|0.58|10.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|hC0QdGLNZlnRazcAHpsy_yM-AR0O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b03455|hCOEEl7OY_hcu7rOF4k22_B1qGB-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|14.0|0.397|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|hCTH81Tstv5xxZYTo-fa6m7QQ9Xj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|219.6|0.5|9.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aaa230|hClpOlqN-wFaRDY3iRhPGXEX_4Q6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|180.6|0.705|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|hCnMgJprSB5NpRa2DwSXhSUdcGuf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C90CsH464I255N166Pb100|CsPb100C90N166H464I255Br45|Cs0.01FA0.76MA0.14PbBr0.45I2.55||1.095|226.4|0.7659999999999999|18.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1012', 'Ag']|['V1012']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c8tc06297h|hCzj1e2dby83OqAEo0c1A0LM3eI6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1012', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.76MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|222.0|0.74|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|hD3ITkwuuZVn0RqUeqBEVqqnTemi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|182.5|0.664|12.08|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|hD4H9aYg7CcpLo9S64HDHpzyO-cv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C50Cs50H260I249N90Pb100|Cs50Pb100C50N90H260I249Br51|Cs0.5FA0.4MA0.1PbBr0.51I2.49|1.7000001812729404|1.089|157.0|0.78|13.3|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1002/aenm.201703506|hD6J_t-I6FuSo15_xnRO68IdFC7k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is Cs0.5FA0.4MA0.1PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|195.5|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00110c|hD7L1tjxhXAds9yz2w8ocZynxxwl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|231.5|0.7340000000000001|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'ZnP', 'Au']|['ZnP']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|hDD_Q4X1GCgm0QLcuysMobJzAd1A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'ZnP', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|221.4|0.65|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.092|hDEL4W_ImsKwMcab10Dt8F0f5M7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.042|211.8|0.612|14.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.006|hDNVMFK4BfTdwvP9AE4IJxlRiAwN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.0|0.55|10.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ra02637h|hDY95EdcqzPopksD_zug6j43BJ7d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|196.0|0.79|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c8ra00248g|hDZMx_UeHJBPRCfw3hT4vGryaBEf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']|['Spiro-MeOTAD', 'PDPP4T']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104315|hDd-wRtTHXh2R-fk6527_MZxZXKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PDPP4T', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.02|201.0|0.62|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|hDtgGXv4N-CYUFVTgZXEK6uvSCZx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|220.0|0.79|19.16|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201805547|hEEEIZRgCVgudREWapDGoBijPivF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.043|225.0|0.7240000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-Heteroacene 1', 'Au']|['S,N-Heteroacene 1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b10039|hEIw8cNFA_mB5uHkR7qXoqAQmyfo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-Heteroacene 1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|125.4|0.616|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|hEXVg3womBDdc6e_uMyh-w7cki-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br75C95Cs5H491I225N174Pb100|Cs5Pb100C95N174H491I225Br75|Cs0.05FA0.79MA0.16PbBr0.75I2.25||1.18|219.5|0.74|19.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|hEdz1QmmNJJX45YuxYuVYIz8003O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.75I2.25. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.108|207.7|0.69|15.88|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|hErRMVue4PSpEKBsKql7WRjIwTIP|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|200.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|hF3HwuHsEz-ZL0TtULBnAeXv84aX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|179.89999999999998|0.6579999999999999|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra03066e|hFFs7_C0tbucT_IwkB6spSwU20uO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.0|0.7|14.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700612|hFI-jK6gFv6LussxYUk5urWz7wEu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.981|181.6|0.593|10.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']|['PEDOT:PSS']|['PTTI-1']|bulk|https://doi.org/10.1021/acsaem.9b00857|hFKcItpD2tykw6ccHZ6kYAlGECTP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-1', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.7|0.6579999999999999|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|hFMi4nZg6Quz2seTde3lddhft8G0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.05|231.6|0.66|16.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|hFNCPZV8uGfAHiVvhbejBm_28X5j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|216.8|0.677|14.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc05252a|hFNVeIhZkRcioZGPRtn355O_f1YQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|172.8|0.71|11.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6tc02307j|hFblY-i_NprWdW_QnSweRsj2KjYK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C36F4H68I13N8Pb4|Pb4C36N8H68I13F4|(pF1PEA)2MA4Pb4I13|1.6000001706098266|0.986|142.4|0.6629999999999999|9.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|hFfbMbGFR77E-seUaL9h48oguSJ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (pF1PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|228.4|0.62|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800002|hFkdf4TrsQPqtWpFRzpfWa0u59mU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|168.29999999999998|0.627|11.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|hFrnPQUyYWst-JNdA3wFJiSCMJxZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|158.0|0.726|11.0|['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Polyacrylonitrile-grafted rGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|hFzhLwSWnz2MpbQo2FBAix4np27M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|209.7|0.75|16.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-TPM', 'Au']|['TPA-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|hG2RPVVr9vg1blvpNAkJqZFBvW1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-TPM', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.2|0.752|15.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|hGD4D643eTdRZKvJsA92chpG6GMG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.58|19.8|0.442|0.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b16349|hGFDpZQD5i3M_EaRUKMEjHOkZ29i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|hGNp2OVIATYerXReQLWNK4QqCbc8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCH6I2N|CBiNH6I2|MABiI2|1.520000162079335|0.22|19.6|0.301|0.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180919|hGiTvUbYB1ElFUImrmGM8-Jh7m59|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is MABiI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|174.1|0.36|6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|hGinSF6jMSujn8aCNuRQt43Mkz1Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|173.0|0.64|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|hGu4kXMaW35mXZyaf7axHIp5MLmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|234.1|0.755|19.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|hGxeWbHZ0IWVl01Hn17w43bzW1aJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|127.0|0.45|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|hGziZeN-u9qUaL-41yBlzYmvFOgO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||19.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|hHKGRwyTDN27QCV6mtNg33bqEzJl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.05|232.7|0.69|16.86|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|hHV7fHBpl71wLts4Realjc5IChpI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|116.59|0.536|5.37|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|hHYunxQ5ZnWO8Noj4nuW3Pk64nTT|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br369C950Cs50H4873I2631N1777Pb1000|Cs50Pb1000C950N1777H4873I2631Br369|Cs0.05FA0.827MA0.123PbBr0.369I2.631||1.134|230.1|0.785|20.52|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201803587|hHb1JQ3uxAfkYC_TwCCP-6Y0zPBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.827MA0.123PbBr0.369I2.631. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.09|167.89999999999998|0.23|4.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|hHkB7U6F6KrLkP5PPOmECsH8AJZ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.725|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|hHlXd4CZPn9g6wUGRYPgcVqwutLD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|208.8|0.632|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00314|hHpF_oD2BMCz9JTye_WWK2j5FV0k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.6|0.342|5.19|['SLG', 'FTO', 'Graphene', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2016.08.013|hHyAuLO_iLe1vztMqi-6dNza0b68|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCs5I14Pb5|Cs5Pb5I14Br|CsPbBr0.2I2.8|1.8200001940686776|1.1|150.0|0.733|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.9b01822|hHy_Bh-IKc700ZUX5q2NtaAO2A0z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|180.0|0.742|13.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|hHzgdbDGPzYrBWShXNG6vTSFhyP1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.8809999999999999|166.92000000000002|0.25|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|hI1mVhqLpCnafigx-s5LUxP7CI1c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.18|154.0|0.745|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|hI2_2xF6fSU5kt90pI7Mqxf40LmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.4|0.73|17.22|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|hIAGQNt41CiY83Gz-ctgSgB3Dbda|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|184.5|0.741|14.4|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|hIDVj6BTA6OVIL54TXF8FomNhdKF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|189.0|0.57|8.8|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|hIGxwm7GmLH7pvZwIJbvXjkc3xYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb2Sn3|Pb2Sn3C5N5H30I13Br2|MAPb0.4Sn0.6Br0.4I2.6|1.2600001343552385|0.8|233.8|0.716|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2018.05.047|hIMfZlKIszP03xVbqQ_WcT5TdUjT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br0.4I2.6. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.07|211.0|0.7559999999999999|11.0|['SLG', 'FTO', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60-SAM']|bulk|https://doi.org/10.1039/c7tc03482b|hIR8MdohXIX9vL1rDB1paUAF5qPv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.0|0.81|18.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|hIXsdOzB3RqqagYe40zRcw3izGGy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.895|178.9|0.73|11.79|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|hIhDsJ781g3MP5wNpcYl7pnnSz3K|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|164.4|0.441|6.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|hInwgxk1pBDxfdkZ7aPSZHpsxI-2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.2|0.57|10.2|['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon-mp', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jssc.2019.03.028|hJ-bFi1Y10gYCWGQpJfurU1rBhID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|180.4|0.722|15.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ra01501f|hJ0IE80cXszoGGrEW1UWuqTgLUwB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900089|hJ138wSkH-clccSi3na6GBgSekxt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|205.0|0.63|11.7|['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-nw; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au@SiO2-nw; TiO2-mp']|bulk|https://doi.org/10.1063/1.4966893|hJ87W3PL-RKoBV5dn1JXmrtNJJTE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@SiO2-nw; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|220.0|0.64|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Al2O3-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c9tc03881g|hJ8ALkpsXFo0Da2zVla6yKedTkZO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.068|210.1|0.757|16.99|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|hJR9ZROCpI9AU2vZWyOZpfAYm23p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Sn|SnCN2H5I3|FASnI3|||||5.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TMPA-Cl', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['TMPA-Cl', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b17535|hJgOu_r_XFqYvuwAJytWBsMe8T9c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TMPA-Cl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.182|38.1|0.601|2.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|hJnHvlRV3pYWvPzZS1UvQzn_mPZ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|221.1|0.774|18.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|hK6DSL1Prk4uCQ8d5uRurBWAxOa1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.672|166.9|0.4029999999999999|4.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|hKEErkBnBJ64Iv76yEY9h9oqhUiD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.91|184.4|0.63|10.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|hKK_jalzmavy3N0yImyKnK11qDUK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|80.0|0.25|1.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|hKMaCPHrPojWDFhWRqXZ83XGR7xS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.8|0.7509999999999999|18.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|hKPmm4-oDRbq6mqkb2ml7MlmSYRy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|72.5|0.87|5.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.5b06269|hKRF499yigmWgXHnqhrOA9cEY46S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.1|223.0|0.71|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|hKSLmBeexenTW5F27LKCPKuTKgXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|185.3|0.6|9.61|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|hKWYhroXLHoCjQnPggqn1UF5yib4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|209.0|0.65|14.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.169|hKc0EWlxSsybEJSx1OtPRX07v_5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|222.5|0.763|18.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801208|hKlMNV_yeypDKuQ3JDnp2kDhQswf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|219.0|0.7|14.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|hKtHy7NGsjIC4-A2L8sTP-ATpyyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.2|0.48|8.17|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Spiro-MeOTAD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8nj01082j|hKvMcefcdWJ5layWgYyLbttIVXPa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|153.33|0.293|4.48|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|hL7NNzvhnhuS92Ea4ZNE8Aa7mw_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.85|106.1|0.5|4.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|hL9MUyrKBvrfEwvNPY8JqD7Y6h0-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.0|0.63|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep25648|hLEu1gzHBYqlKdLc01zFKddBNK7Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|197.0|0.62|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|hLFhJEGAmgdABgZ9jsdzKyVJ4Oda|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.0|0.742|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08117g|hLStUhe6V4l4nMzRV9t94PYZLGtv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|159.1|0.62|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|hLTlajOxKLKAzIHoFSazEi0UPlX1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|88.2|0.416|3.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PQT-12', 'Au']|['PQT-12']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|hLVoCXJ_UPFVxJEAEaiH_SBXeOee|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PQT-12', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|166.70000000000002|0.33|5.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta03875a|hLZeWEulbMUXI-sQYARDW_W2A4hj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C10H60I15N10Pb4Sn6|Pb4Sn6C10N10H60I15Br15|MAPb0.4Sn0.6Br1.5I1.5|1.2700001354215498|0.73|211.8|0.67|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|hLbYrWle0gcyTJXCRL_U47JlOxYV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|228.4|0.75|19.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|hLxuqgd5ME-2X52IbBwV4j0pb4zU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br300Cs100CuPb99|Cs100CuPb99Br300|CsCu0.01Pb0.99Br3||1.414|60.2|0.722|6.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|hM9Gsn43sYsKCsbFd5cuK31PMtyz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsCu0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|193.5|0.691|11.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06041a|hMA7DzhfE5T3Zm5UOQVY_Alu8i2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.884|197.0|0.55|9.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07153-2|hMD6bPclDNYZ1KNxwnSgYMsMTFBt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|170.0|0.53|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02539c|hMDR8a5vSMFmWcUxYLS4yUFPBC42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|221.8|0.757|18.05|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|hMEXq42B_7mzjebphZ5Qlif5iHQr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|120.0|0.68|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|hMFXgNYD4MSUrVYTAhD9fTByqrYM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.76|141.0|0.52|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|hMJsbVUM1CqJQcnPfM0n7Zk9lmkt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -Br900C1902Cs100H9835I5100N3479Pb2000|Cs100Pb2000C1902N3479H9835I5100Br900|Cs0.05FA0.7885MA0.1625PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00990|hMSAKvK7_P26vka5RXulMFZNhMKV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1625PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|223.6|0.682|14.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|hMWJaNRQ7Z4-yd9Kg_yyzUpaQ8Pw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|168.5|0.73|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|hMvend8ihjWxu3f4RissyNaJ5rrv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|223.0|0.68|16.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8me00031j|hMygllZEdS1Aw0-2xrgaHeu0dFx2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.87|96.4|0.38|3.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s12274-014-0662-1|hNB6SZoD7lMPUsZnk99Y7S1--dqY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.831|197.0|0.687|11.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|hNCPGCV9aopeit-REKciyhVuaue8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|184.0|0.72|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|hNEjXy0hi559sYkGIwck_AwjXBNk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.94|118.5|0.5760000000000001|14.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|hNFRuLQxgNKvyLa7F-sP5I88RZE1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.73|182.0|0.36|4.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta10871k|hNJeiXJVeWpGZLkGOMewglE2SSFR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|47.0|2.49|0.695|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|hNJyOk71RcJJ0mQUuhAlIA1KnAb5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.92|160.0|0.594|8.74|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b20933|hNXMp38UU9OrNPgFGagusIuWLJ2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|174.0|0.7|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|hN_p4sdUo0ORIIirGRrWwmsjdS1k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.830000195134989|1.08|173.0|0.633|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|hNlwkXmgL8t5lFC6lTG7dLQ3z87x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.962|191.1|0.72|13.24|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||hNooUTZA3ZvhlIEnwBCvndCKiLDf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|hNryxKzRLIs1u9DvhXut68EtQFul|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.91|147.7|0.64|8.58|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|hNux1fB0py638VLpqfzLFEPsm9x_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.3|0.68|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-04690-w|hNx4vssCynnWhnQh1qEXXGpwDhvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.3|0.754|15.67|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.036|hOS4yrrhbfFW5hIE4Q9ltKdzWT4a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.94|251.4|0.728|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1', 'Au']|['Z1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b13189|hOTDiEL700NRhkFgRtZjNWC0lE35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||17.82|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|hOjOrvoejYrmjHNkvz7Jesjq7pq7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.95|70.4|0.5|3.35|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|hOjUIWr5UXvOh68pnQGd6IMJWR_e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|175.2|0.622|10.04|['SLG', 'ZnO0.95Sn0.05O1.05', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO0.95Sn0.05O1.05']|bulk|https://doi.org/10.1002/slct.201702419|hOvWsMA9kL9G4T0p7Hln9aEJ1szH|a perovskite solar cell with the following device stack: ['SLG', 'ZnO0.95Sn0.05O1.05', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.905|201.1|0.5379999999999999|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']|['PEDOT:PSS']|['PTTI-2']|bulk|https://doi.org/10.1021/acsaem.9b00857|hOxFo_X70Z4CjtE3xrvGPSNlYion|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTTI-2', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.52|81.5|0.555|2.35|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|hOxcS199l1HD00wb32akWc1QtdVZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49||1.131|231.6|0.7140000000000001|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jcis.2018.09.045|hOywTZbilfPBxoIA-h7buM0Xet1W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|217.9|0.7340000000000001|17.39|['SLG', 'FTO', 'ZnO-np', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO']|bulk|https://doi.org/10.1002/adma.201705596|hP1ZiFWOlEFN_8ULnSGTvwMGDcMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|229.0|0.49|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4967840|hP6mnJqh-x8EUT8DMnPTUQsQq2VI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.73|237.3|0.47|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|hPOANtp9UsLKpT5WstGnZoLe0VF4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|0.967|246.2|0.742|17.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.035|hPRmDyDsfoa8p5lSVpnxAMM1sp9B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.828|208.9|0.7390000000000001|19.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.046|hPSQ3a_GZf_QzRAXz9TXXMN0Fp6x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|227.52|0.65|15.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|hPV50oTCuEG2DePe1gEBlDBHW3R_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb99Sr|SrPb99C100N100H600I300|MAPb0.99Sr0.01I3||0.93|186.0|0.65|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|hPWEepg7ad7koSjkpvArkB5W9b9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.99Sr0.01I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.26|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|hPXlGPi-emOqqzBaV9AGo_0ZoAG1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8Cs2H40I30N16Pb5Sn5|Cs2Pb5Sn5C8N16H40I30|Cs0.2FA0.8Pb0.5Sn0.5I3|1.3200001407531068|0.77|256.0|0.69|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b04981|hPbuWQ_UewcEz0bRaydj7gn4o0Gw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.0|0.75|18.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta02868k|hPoQEVGO4z-q-kO_CJo2MOz5qOps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.08|208.8|0.807|17.74|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'TRUX-E-T', 'Au']|['TRUX-E-T']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c7ta08053k|hPtI4KgTdnm1tSNiMndrPZt1HgVQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'TRUX-E-T', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7659999999999999|29.700000000000003|0.21|0.46|['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06011c|hPtJziRwTt7C3IdOFVfYfOkKt7En|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05541f|hPy_G8k97aPF1fjIxq6fJIfBDOVt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|71.0|0.456|3.04|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07758c|hQ14fxWkFAKdZ-wGR8cxPdbXctxu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.7|0.7|15.41|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201701683|hQ5SKOhbanH_meTrmcd6a7qqmXiF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5900001695435149|1.12|223.0|0.769|19.4|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201807604|hQ9OFzAeYCIzrq-mp5oSsBBok7ml|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|178.58|0.331|5.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|hQ9T6LufZuy1FAHozApImueF61df|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.0|0.695|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|hQMzocGUd_-mb1kXLc6eEDzJQtaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.4|0.66|13.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00660|hQTMfJb5t6eHz8KS_wpvtIND0n-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|191.0|0.708|12.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|hQZt65MHAFb2WZEVMW5lADiAUQza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.8|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|hQbi2whRI56MDdFIf1cO4dLLjkRf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.0|0.69|13.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp; Ag@TiO2-np']|bulk|https://doi.org/10.1002/adfm.201500669|hQr74A06dKD1FodKu1BDwTSNzfVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.10MA0.90PbI3||1.043|212.8|0.762|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.034|hQxubcn8wwN0v6L3j7OVC3QuLkF6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10MA0.90PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|129.5|0.6|5.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201306217|hR2Y9THs9csg0dTywivAtLBpuMQ6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.92|9.3|0.27|0.23|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'FTO', 'SLG']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201900157|hR8DEmU-8QfSSIMf24ortu2RflWD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'FTO', 'SLG']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|218.2|0.66|12.3|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.026|hRIS7ZS2zjakeoSY_wG4DsvfNQkL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|222.2|0.625|13.67|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|hRJW5QvSDHZOyEdc8AhIWl7pI-zk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.134|185.8|0.642|13.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|hROfQ3NzXUIYV1yOnEqUwIGmW8up|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|206.7|0.74|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.123|hRTI9AGwR_deXJPpyWJFqeEyK4hD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|172.0|0.72|12.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|hRbiVPbHPU_Aa2nNtrjPFM_0yFmH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.282|116.0|0.434|1.42|['SLG', 'ITO', 'CuI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuI']|['C60', 'BCP']|bulk|https://doi.org/10.1039/C5TA02950C|hRkkeFhPCgmTKkFATiyC5ZlMa1GO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|217.0|0.68|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp506991x|hS-toZgLO5318Dx4IUl2ZWcMX9XF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H533I300N167Pb100|Pb100C100N167H533I300|FA0.67MA0.33PbI3||1.0|210.0|0.73|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201601543|hSC4qIN42gJLPYn277HBQsdqTaYf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|223.2|0.7859999999999999|19.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.09.195|hSKM_ooWc4afKYL6NKpiwKsCiF8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|223.3|0.648|15.56|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|hSKReT4An1EkJE-Vjy2V5L73l5Pd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.09|218.7|0.672|16.0|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|hSSOCfbSFpTo7s9TfhWGERg8FDXX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.88|169.89999999999998|0.73|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.073|hSTGlas88qtg34kP0Z5M_baOPYqD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|145.0|0.544|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03655-w|hSjvAixcJzbAznMqLhWy23JO1ds8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|0.99|198.0|0.504|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b04949|hSnDP2sYsQ41qx9Z7Jt4wnysF2p6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.0|0.68|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-MPH', 'Au']|['EDOT-MPH']|['TiO2-c']|bulk|https://doi.org/10.1039/c8me00023a|hSvnaI96DJ4AhU4PWW3xVvdLSbeB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-MPH', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.41|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|hSwIErUtXj2V_Zygs_uLSvaYd4F8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.038|210.1|0.76|16.56|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06081a|hTD4lV5bxI6PBXbx0EaeflNs-H9-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|152.0|0.69|10.4|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|hTHeO3hfMb_F7RDJ9yRy8-G3YYs0|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br19Cs10I11Pb10|Cs10Pb10I11Br19|CsPbBr1.9I1.1||1.23|154.60000000000002|0.64|12.19|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227389|hTImJEPR8rmLc8cZ06mMG-JaeCyx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr1.9I1.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|198.5|0.7170000000000001|14.15|['SLG', 'ITO', 'SiTP-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']|['SiTP-OMeTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta09716f|hTKaONNSFl09F92CMhnkztiHVpS_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SiTP-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|216.0|0.743|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800050|hTbTKs2LY_qSi5ZHWDr7vk3AB70-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.0|0.78|17.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'CU']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02503|hTiRHk9LiAaNvHTgf8lE6LZL-tY8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'CU']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|214.1|0.76|17.64|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|hTlLTnciXka_Bo3jTmg9a6PmjdcS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.65|40.0|0.371|0.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|hToRrYUKRMfnFueTo32WCJAJAwVC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.725|35.0|0.51|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2015.11.058|hTt2m6q87_HZV4mGcl0wYtnVTfMI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||192.4||11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|hTwD3Ccj_fgutlpbHQHeew9YTNLQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.0||17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|hULH0xjr6Z7xbje8OVq60l8TB4qf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|149.0|0.64|8.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|hULXZ6Q1UqcFRhIyhC9p8nGediME|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|204.1|0.67|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|hUM9txRG1vVLg9fU-9DGgFrKFZz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15Pb1.0Br0.15I0.85||1.012|247.0|0.72|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600330|hUQF-0TjIu3ZfTU4ALB9axc68wvj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|197.3|0.6729999999999999|13.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|hUnuhHa206U7-DuOXfqNbD1ORyex|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|164.8|0.79|14.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|hUwhM8bC4s6-aF2RV0e7OX07ZQMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.996|187.4|0.5770000000000001|10.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|hVCi2Q4-CB92ODwUX-HjEz-34-qR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.5800001684772036|0.97|140.2|0.53|8.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201707166|hVEGSqrF4Z00SEtQF-ZRKyKKpqQy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.09|232.0|0.775|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01096f|hVG5SCQlyx2cV4GiP9fpwBJF3BS5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|101.8|0.611|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|hVMjc56fNPF1xj6XODby0339j1wM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|141.3|0.784|11.74|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['Nb2O5', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900091|hVOmolP5WJx_-vaQ6tU3pIq5aPv-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|118.0|0.73|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201500678|hVQ24WJ0hJawHz48EFXlWL4AKK2-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|201.0|0.733|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|hVYLcs-HUzg25IxuBF-INccprmOE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|243.0|0.8009999999999999|20.0|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.nanolett.8b02863|hVlMJxSKx0Axh6RMZoFh855n9jOL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|215.4|0.6890000000000001|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'PN4N', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1016/j.orgel.2015.08.023|hVotr7PkWfkldEPN7m4gQP488kJJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'PN4N', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|179.0|0.77|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|hVvkuSyBK7MO9InNWXkILoCTWKOH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br21C100H515I279N185Pb100|Pb100C100N185H515I279Br21|FA0.85MA0.15PbBr0.21I2.79|1.5600001663445808|1.1|233.6|0.7490000000000001|19.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta07462c|hVzhWiZDpYX8rVmWh8qHeunuq3J9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|119.0|0.481|4.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Me-BPZTPA', 'Au']|['Me-BPZTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.04.153|hW-hMHDzpc18vT7AhFnMpyctk5I8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Me-BPZTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|180.0|0.73|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms11574|hW5dG-2N5TwGjB5QRgFnGGUzS6Er|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br100Cs100I200LaPb99|Cs100LaPb99I200Br100|CsLa0.01Pb0.99BrI2||1.05|112.8|0.56|6.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|hWLffhXNPY6UcTo25epAfg9YAUvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsLa0.01Pb0.99BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.685|122.0|0.395|3.29|['PET', 'Ag-nw', 'FZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05728g|hWXtUWWk8wmfu-BMldtf6Y2cpaku|a perovskite solar cell with the following device stack: ['PET', 'Ag-nw', 'FZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.01|219.0|0.68|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']|['CuPc‐OTPAtBu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|hWdOJgQyePkviw3eF2p9vpo1bJ4b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc‐OTPAtBu', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|207.8|0.6809999999999999|14.55|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|hWiBgAsZjQGGlVVzNsTlimOamsnd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|199.0|0.68|13.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c5ta04695e|hWwtNrsNuk7et5nMJNSZDKEHtUnR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|224.4|0.7340000000000001|16.26|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P1C1', 'Au']|['P1C1']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800264|hWyD5w7qtw5v61a5ASNDtmUuwZuY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P1C1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.563|5.529999999999999|0.628|0.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC05|hXa1wYysk7gvca8R_Z3xRDbr-8_J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.019|205.8|0.73|15.27|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|hXaLOLOuZKtDe0lhEnJlDXjHtRXZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|161.9|0.58|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|hXgRIRWxXJGCdNEot6RMArif_DSI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br600Cs200NiPb199|Cs200NiPb199Br600|CsNi0.005Pb0.995Br3|2.2800002431190025|1.479|68.0|0.795|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|hXjo4A7la9iKny7JUqkhBfUGtzoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsNi0.005Pb0.995Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|191.9|0.62|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|hXn04_FVMhg7UNQ-tkTONuGHk-33|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.5|0.67|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.024|hY4dkuA_5JVyoWi__Z658VGENizM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|232.4|0.75|19.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227386|hYIA9m7wrG9bTqDjxBqsUFtYfMYa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|231.0|0.7|18.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103867|hYIu7WtpV6x2QraBXBUoG8Ge8W42|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|1.13|157.20000000000002|0.65|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.9b01920|hYQN-MLpXqZowvEtOm6C4DU0CEDh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4|||||7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|hYhYrtfrYP01NCFU4qIzP7CkPtbJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.7|0.64|10.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Pervskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/admi.201600571|hYk-_9e81S9SbEJjOVcKXcE9fkqd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Pervskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.5|0.72|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b01351|hYmIpHulbhElNOaguY_Uz10UuyAY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.9|0.735|14.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-3', 'Ag']|['YC-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|hYuZao56hjmNn3feDy_BGogDM1xN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.08|191.0|0.69|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|hYvwg8PksdPSzVVCPtTl8LJjeXzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|211.4|0.67|13.69|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|hYwPKKdvIH6457af-fGbxQlmcra9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|219.0|0.7979999999999999|18.1|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']|['P3CT-Na']|['C60; PDI', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|hZFtTFZJSZPdh-upc_WRqAF-JMkM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60; PDI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.88|194.7|0.665|11.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11696-017-0373-7|hZLXJMGLURWdNM8vOdbATaK-nYaS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|237.0|0.76|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|hZYvApMTgKdJJPlQ4eRkRPPRvWYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|162.0|0.64|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cp04749e|hZ_LfA1_lzmgNgiWcDsSTJu3PH4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|211.2|0.601|13.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|hZfaUXMFkhcdIGm7cWe7Vrp6yxQa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|221.6|0.598|13.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02323|hZibPf1AhbpAkJ1yLolLeW900u1j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H50I27N20Pb10|Pb10C10N20H50I27Br3|FAPbBr0.3I2.7||1.1|229.0|0.797|20.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID', 'Al']|['PEDOT:PSS']|['NDI-ID']|bulk|https://doi.org/10.1002/adfm.201800346|hZp619uxboiKfR6pl4rd9InCkXdP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID', 'Al']? The composition of the perovskite layer is FAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.07|162.0|0.42|7.3|['SLG', 'ITO', 'TBDI', 'Perovskite', 'IPH', 'PDINO', 'Ag']|['TBDI']|['IPH', 'PDINO']|bulk|https://doi.org/10.1016/j.solmat.2017.01.037|hZxKlgr011yxeQDuH9l-1mYOHhlG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TBDI', 'Perovskite', 'IPH', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBB-S-N', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903691|h_6nlgUYLZWECyaJyP5oSpzaV5kQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.18|200.4|0.759|19.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9se00632j|h_RxwPgpDO7rq1gSB1LU5Fc_d01b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br39C81Cs15H415I261N152Pb100|Cs15Pb100C81N152H415I261Br39|Cs0.15FA0.71MA0.1PbBr0.39I2.61||1.05|171.9|0.6679999999999999|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp03760k|h_Rz9ywG8Uwjw2BaaQVFNQY5ATUQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.71MA0.1PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|229.1|0.64|12.66|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|h_VExDUPXeUFWB6Fzb1I1SjnrzEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|150.39999999999998|0.356|2.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta09080f|h_c31JeNU3kp58w-dwPTZtTFFzTE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.04|200.0|0.7|13.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'Au', 'PEN']|['PTAA', 'NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201907481|h_cEA0CcFUzM5tBkaqFjMC3gn6wI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'Au', 'PEN']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7700001887371206|1.04|153.7|0.69|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01129a|h_kdECpThb-MS1Nrf6On3qjz5D3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|196.9|0.628|11.8|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|h_kr-pYT3EPouiB6FLFANgJmvoM9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|218.0|0.612|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']|['CuInS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|h_oRkn6DuYf90P544EUFhW15XlVs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|157.4|0.58|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|h_z7PEz9ZPCKK3tvSqJhqRvtnV_K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|213.0|0.76|15.92|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|ha9V9CzRFwm76WxpKXc8LG3jyG9d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|218.0|0.75|17.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|ha9relgKHRkzzY6ZRku6OcjbNNZA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|0.86|159.0|0.66|9.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|haCkfz9ata1EuyIhcskd-0X3M3d5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -Br51C95H491I249N174Pb100|Pb100C95N174H491I249Br51|FA0.79MA0.16PbBr0.51I2.49||1.1|177.0|0.649|12.85|['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PMMA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903487|haFMz7w34XF_ciBlpwJ4GBU8wHVK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PMMA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466|1.007|224.0|0.71|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b02443|haGb8GY4MVy_u2Oyl0m67y5xqh_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.10000000000002|0.6829999999999999|11.23|['SLG', 'FTO', 'Nafion; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Nafion; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b19053|haK_FHZbDbGA5JmnRvtlr4MWBCtP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nafion; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.3|0.69|11.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6tc02307j|haUsxXHbAnNKYEqMwiCQdEnq0oEt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.6|0.748|17.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|ha_onJAYQdgD2R1JA_T6EJDuKMqk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.32|91.0|0.31|0.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|hadxLLG1dOGGMhZ0puFBVqQN1mNn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4.0I13||1.08|161.6|0.61|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201903293|ham1W-qDCpZhikJxuvZKCUXA_jgE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4.0I13. -Br13C100H550I287N150Pb100|Pb100C100N150H550I287Br13|FA0.5MA0.5PbBr0.13I2.87||1.08|236.0|0.772|19.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b09300|hanuBWWNhhf9u1zDYnF5MIVHiIN6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|145.39999999999998|0.68|8.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|haySUJcoFuOTApYRqs7B8ZkmVY2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|121.0|0.71|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600210|hb4dbiUL9IVo-r427FFRlW3zEJg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|203.6|0.7829999999999999|17.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b00980|hbJy5nKfKkkSQV3sfgBf_Mm1qMm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|150.7|0.795|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|hbZf27tCpCds3nDljdPLAi4OGHlv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.850000197267612|1.127|159.8|0.779|14.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']|['IEICO; PBDTTT-E-T']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b14957|hbZqfqvkoVTzzZ5JKpcdvzA7tFnk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.038|186.6|0.7|13.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.135|hbpW3qhHtwhqlp7kWVswHbewZ9xV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.2|0.72|15.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT2', 'MoO3', 'Ag']|['CT2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|hbrAs4I-ink_RsijnllXeApmnlMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.9|0.659|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|hbrjWHY8ol7zCYZvu7opD3V_4Vnm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|116.0|0.68|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.07.238|hc45F05sfASmV1XfjoMgSVt1TggX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.09|242.0|0.7240000000000001|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C6', 'Au']|['BTTI-C6']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17386|hcCwGO1EewJ97bXrYULmTClL5wjb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C6', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|189.7|0.7509999999999999|18.97|['SLG', 'FTO', 'ZnO-np', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|hcFkykUYV0IaftHiLqNQYf_m5Vtb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.78|174.0|0.48|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05470b|hcZv4Gas6gPM4yNZjsQiH1c7EJIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7|1.5900001695435149|1.022|195.0|0.73|14.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']|['NiO-np']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201800147|hck-An-nVNaFAZURWPs4-2r_BqGc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO-c', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.21|155.0|0.769|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|hcnmlEcQwn65tbvp5gq5rItNC_QO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -Br30C18Cs2H93I30N33Pb20|Cs2Pb20C18N33H93I30Br30|Cs0.1FA0.75MA0.15PbBr1.5I1.5||0.879|102.5|0.557|5.03|['SLG', 'ITO', 'L-H', 'Perovskite', 'C60', 'BCP', 'Ag']|['L-H']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105524|hcp6Slv7BAIMNqbYojWLAnnk35E0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'L-H', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.4|0.78|16.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c6ta09117b|hcs6TVMftv2xmiW6duIvuK0OAeYC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|185.4|0.71|13.42|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|hct5e0sMeYhxO12NG-VyD5szXDNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|219.8|0.72|17.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|hd-VNgNRV9a-K3mg_BNGoP19B95N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|184.2|0.8|15.58|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|hd0nWJP6b_u1xlv8FFTdFT9O79d2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4||0.99|195.3|0.68|13.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1166/jnn.2018.15360|hd6FT0fbkGR8Mhdu8uCNT-sYatgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.0|0.67|12.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110288|hdF3y8pG4K0lZ2iHuACExSuITLHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.077|229.1|0.669|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|hdFiBOJGPsqfd14hchvU0fN5BN-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.066|194.8|0.769|15.98|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||hdYvjgiPzamhJ_LGHRpTyIeTcQpF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.72|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|he17HBkqu3Aukwfp4vuaPTjhQ-LW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.9|0.69|16.75|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1021/acsaem.8b00726|he7m6NGy3d28T1i7ZpzFEmnZ6zNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|162.39999999999998|0.645|9.83|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|he9ddrS3kvA7XeM7zc5TbeDwhG4p|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|heDyTrCyNGCPI8ZUz9sY3RDds2bq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|243.2|0.583|11.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|heKcZXwXtC6LqteA0HeFcfhFFuRV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.6|0.706|16.31|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|heNzDaC0idBEja2fmAhE2aMOBZaa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|208.5|0.64|14.14|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|hePU9J0HyacebWg-9uu3MhMcuXUI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|236.5|0.39|9.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|heT-6qAPP2PfSOvhC9PxvZ570cHN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.0|0.71|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14566|heT-uEIKaw2QTvAFyLFdOMG7_skE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|59.42|0.267|1.52|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|hey5UVcfAaajIpM_2NNzGA1ruw0x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.6|0.66|14.03|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-0S', 'PEIE', 'Ag']|['PTAA']|['2PDI-0S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|hf0jSnAVxlT5PNbCAlqlB42dXGH6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-0S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.07|186.9|0.77|15.43|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|hf8XTgqJkIputRFh0dr7PpWU9UZE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|199.0|0.547|11.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|hf8kuQlA98vVpgiQQjZEMs9EpWJA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.96|155.0|0.7120000000000001|10.6|['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']|['PTAA', 'PEDOT:PSS']|['TiO2-c', 'Ps']|bulk|https://doi.org/10.1039/c6ta05497h|hfQajCgTFRRksVfavlpbAJiibCCC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PS', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|144.0|0.525|5.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01087c|hfbLpz9DSoCZxnc4NLY03tASBvmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|206.3|0.7759999999999999|17.26|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/C6TA05095F|hfbh-7K2KZ2iaSfQ6z3u-ef2b3KP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|196.8|0.584|11.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.005|hfgcT0ia3LN0Pg8QawnCMCXfz9jr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|172.39999999999998|0.685|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|hfjtwIAzkcy7Ig7aiQzcLJhRiVZe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|227.5|0.6|12.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|hfogkkEEemQCieJrXnYXgg0jghNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.6|0.659|12.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.03.1025|hfrL_c9uTPVRCWF-lUBKW-zmFtF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.533|219.0|0.53|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c02656|hfvnT3da6aoivdyZUiysGWGBnJRU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|103.3|0.51|5.1|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|hfzT6t3i7H7Jbr42ceLQnb869zi9|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|193.0|0.5720000000000001|10.93|['SLG', 'FTO', 'Au-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ta10715j|hg40467IYW9Rlr9ghM9MOvCxXvnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|216.3|0.69|16.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41565-018-0304-y|hgGGZvv7nhDpWtzEisDM3h68rMmW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|190.5|0.69|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta07545f|hgKq8k-ZdzqQY-jJr4PWgsEQIcm8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|186.0|0.55|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ph-OMeTPA', 'Au']|['Ph-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|hgMShVbEm-PFG47ApkXm-_68jZqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ph-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.78|142.0|0.52|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|hgS5GNwD932QOtMrXm-VJ2DstwQG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.1|0.69|14.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01824b|hgTcM66bdAJ47wTudXlYBx76Cg9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.98|215.6|0.7|14.93|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1674-1056/27/1/018804|hghGOZXt2TH1jOK4-F3IaXUkZ-2N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.1|0.7|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|hgn6XM_PDRnqHlXe8A1fQBCSdcKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.2000002345885115|0.82|1.3|0.601|3.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|hgs5cuUAdski7_7k5VG1_5VuS8fr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|196.0|0.445|7.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta02851a|hgtOLYljjXITZu5FRchRFcSc9gpV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.01|204.8|0.596|12.34|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|hgvmgp8tWstmQj6NTJfehKm5yycT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.056|192.7|0.773|15.67|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201900824|hh-6CbMhaHN1sxIYQccPjMmrizSp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C440H2260I1003N820Pb400|Pb400C440N820H2260I1003Br180|FA0.95MA0.15PbBr0.45I2.5075||1.1|225.3|0.79|19.58|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|hh7W3OoUfvctbkvlPLdKoZnEBg9z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.95MA0.15PbBr0.45I2.5075. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|191.2|0.711|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|hhC_3OhxqtPNS5TewujucNsXKiQi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.380000147150975|0.01|13.0|0.25|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|hhDhNJKL3qhLbHDIRKC_4Zzgo7eU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|235.0|0.763|18.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02721|hhIrAhPSiyD4lOUwpu-VS30GWQel|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.089|223.3|0.777|18.92|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|hhLoDSwUEzvLDqNWdG78DcVgq1sG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.15|212.0|0.72|18.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201600767|hhPLYLghL-f7NG8oW3Lciw01JkVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.8|0.61|14.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2941181|hhUJVnULvNlHOb59YPsoGnjSKPh6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.01|210.0|0.624|13.4|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201800133|hhVLb59syerE7bMo9MBs_y24HOn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|hhWEhtRt6Ik3DyYgdN6VFc6mrKah|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|225.0|0.65|13.41|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|hh_nGcwKzSE1XZHX6G-kwYwwiqWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|203.0|0.73|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601175|hhrydSpH6nPEQXCnHjBkAc86cVRd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|165.0|0.6409999999999999|10.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8ta10827g|hhsd28KN-DhPIR8IvU19y5jx4xmF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.97|215.5|0.71|14.8|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|hht29VQSWUb5MlsjZjU9EvdXhfL3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|222.6|0.72|15.38|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110379|hhuPrkEyGSygv7nKGFGph3-5UsTa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|156.7|0.68|12.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|hi-_zGzfioMxk2G-q6PXOgKi9ndP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|127.0|0.38|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cp04360c|hi116CH5wqC61IeuYH3N4y3eY_Jn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC6H18I5S2Sn|SnC6H18S2I5Br|((CH3)3S)2SnBrI5||0.51|140.29999999999998|0.56|4.02|['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'Z907']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|hi4Bbm4lLH5b1rdHFJjQEMRhzUxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnBrI5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|196.4|0.58|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00059j|hi998B1uygQviVJZNQOUOuNRlk3w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.16|228.8|0.81|21.49|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901242|hiAV2Opftnipe0dsUy_IkCupAEim|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|180.8|0.7|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|hiH0WXmSE0J84xt-xT7WHFxITAwp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|159.1|0.62|9.56|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|hiavmbL0lV2TipPwzqqHvUCVCM9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|76.3|0.418|2.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|hifmoAp4AKNTd_kcd8W7QW6IOEV5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|204.9|0.784|15.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|hih4SlXa3-gvDAMVade506UIT26a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|161.0|0.7020000000000001|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201500799|hijjH7BRa5QYdTWZV6ErTPY-Et1g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|228.2|0.69|15.77|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)"", 'Au']"|"[""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|hiqdpecbiqwNxk4AGvz8xQsVVnN6|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|133.1|0.58|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|hittbBmScGtnvXU_q6pxEIcb8DUb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|172.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2017.508|hiu46TQBC3Fma1EDp1kc8ERXV3c-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb3Sn|Pb3SnC11N5H42I13|BA2MA3Pb3SnI13||0.76|117.0|0.625|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/acsami.7b15059|hj9gJX9_ACLIt4EuQ8oMcicfpLn1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb3SnI13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|180.7|0.71|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|hjI52QJUm6dX60dI9zeAAp-os3JM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||0.97|168.29999999999998|0.6779999999999999|11.1|['SLG', 'ITO', 'NiCo2O4-np', 'Perovskite', 'PCBM-70', 'Al']|['NiCo2O4-np']|['PCBM-70']|bulk|https://doi.org/10.1002/advs.201701029|hjQMwCJNh4WEdJ1weWpJeqfpdYjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4-np', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|149.0|0.54|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PAH 1', 'Au']|['PAH 1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7qm00473g|hjVIxyXncl1XMkPQe4FciE0U3FYF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PAH 1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|221.3|0.69|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.240|hjZOx_SDT9Mt7DsDukzvPKlns_ni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7559999999999999|108.7|0.481|3.95|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7tc05252a|hj_azQ1ywqe4oxFArE1dLGZDTalU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|222.0|0.73|17.8|['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3-c', 'SrTiO3-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|hjeuogYhzEjFTDGfteK8BXSUuuD4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb70Sn30|Cs17Pb70Sn30C83N166H415I300|Cs0.17FA0.83Pb0.7Sn0.3I3|1.3000001386204838|0.72|165.0|0.556|10.6|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|hji1EJ9qBA-KWTNx6pui1HlwwSpj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.7Sn0.3I3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.78|13.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|hjiJWzTGqslUzY6pwl_t7Rq11Cy0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.03|241.9|0.726|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807850|hjkHP2UR4W7ucSAa4x5J5vlEoKaN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.09|233.0|0.74|18.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|hjku6PsKS8ygb2hYQbQOvlQ1qnhN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|171.0|0.64|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz501392m|hjqdaFigSDir0wliPzKzjy0chf04|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|226.7|0.7090000000000001|17.85|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|hjqtg-iRtWiEW4PR4-zjj8TY-AMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|154.0|0.73|11.7|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/cssc.201600940|hk06obshoolVRuPWwFIIJaoZmJvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.02|187.8|0.358|6.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/molecules24224039|hk2f_w-f4W-sZLgBaqalklXeIOFa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.08|222.0|0.764|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|hkINHifCBSMb8QeLOcOAIKH_enAs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.8|0.706|13.47|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b02706|hkSniAX1hC0PDxSSvBEcmiNVDBDX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|174.0|0.57|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '0F', 'Au']|['0F']|['TiO2-c']|bulk|https://doi.org/10.1039/c6sc02448c|hkTpx7u8PdwJcaPhzwkNhZnldfLa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '0F', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C50H300I41N50Pb50|Pb50C50N50H300I41Br9|MAPbBr0.18I0.82|1.6600001770076949|1.08|170.0|0.74|14.0||['Spiro-MeOTAD']|['SnO2', 'PCBM-60']|not processed|https://doi.org/10.1039/d1se01692j|hkUGa_dgOVzyCwCfCfvS55uBv7vK|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.18I0.82. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.04|233.4|0.7|17.02|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|hkcgYG_PiZOh1G4HZyd9B6f3j3yY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|118.3|0.6679999999999999|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|hkcvhDNHE-aDHTOdISuRl7zFkSyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.7440000000000001|16.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|hkfOez7Ie4cl9LxhP0l74lgE0ItW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.91|3.5|0.652|0.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2017.09.016|hkkavHxVIiBabMqFxb9jjiyyCIsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br60C85Cs15H439I240N156Pb100|Cs15Pb100C85N156H439I240Br60|Cs0.15FA0.71MA0.14PbBr0.6I2.4||1.13|203.0|0.7929999999999999|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|hklSYleCAxP_YzubV73C7wh4XrmI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.0|0.696|16.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12254g|hktR-uCqVeZLM4zZ64EIcJXxFVnR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.05|230.1|0.78|18.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-020-04896-w|hkwEwCW_NzBdlzcEG3MrAfL9CxGs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|184.5|0.64|12.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|hl6QZ22KitoAhPRNSvXkgsKrlXwo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|||||12.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|hl7xly8tu68jbB1wrFI-l4h64r9O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7|75.0|0.46|2.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|hlCOPujfJzPuqzSfFjEIhoKUp_aN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|162.5|0.745|10.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.008|hlJxSoQPeO9zgd9ldVXR2zE88YXw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.84|219.0|0.593|10.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']|['CuInSe2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|hlQUHBV0Enx8rOTpxT2ljvqHBNqR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.0|0.67|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|hlWY6DXoX4BhQdywQZzA9Dbdqo38|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|182.0|0.73|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|hlbo9Sy-Eile_qTWLwJ5PzGaP8k3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|223.4|0.75|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-QA-TPA', 'Ag']|['TPA-QA-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11361k|hli3Xp8ZC9MdCdMhD4-npO7HhIfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-QA-TPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|159.8|0.65|9.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon black']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07714a|hljxQ1o49z-dKqInvoXxmceBjeZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon black']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.7500001866044976|1.18|187.6|0.727|16.21||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/aenm.202201509|hlkusZ4foV4ze3Ni8oSWq7sUK-AT|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -C95Cs5H491I300N174Pb100|Cs5Pb100C95N174H491I300|Cs0.05FA0.79MA0.16PbI3|1.6100001716761378|1.05|259.0|0.76|20.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|hlr94zK8ZLrjytqWBniMYrisWD-l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.654|55.5|0.42|1.56|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|hlrmeIQHjnRvcuFObPQfkdfadt_R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.74|185.9|0.61|8.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201912051|hm-yK6GUwQRFKwUkJsjy8neBRtIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|187.0|0.66|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|hm6JT_OM0KMU6tmDnnYUd8pdE_hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.62|240.0|0.7|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'ITO']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1039/c8se00314a|hm7O9BsKQKVlpZTpS_XzA1QvlTT7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'ITO']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.11|220.4|0.76|18.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|hmPZjAzorGmlwDmsihkTgKcGu_q4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|241.0|0.72|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn5036476|hmXIsrEwXOFZZ-WwPfuKM0iqOhWo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|190.0|0.77|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|hmgrj3H14bOLVr6QcRDheB2mtPUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|222.0|0.76|18.1|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|hmlNlVfpTkZYd3nQU_hbBW_LxXc5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb50|Pb50C50N83H267I150|FA0.66MA0.34PbI3|1.570000167410892|1.02|217.0|0.79|17.4||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|hn68Wn8NnCn91qggj_HIgiRoRt6q|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34PbI3. -Br24C93Cs7H468I276N183Pb100|Cs7Pb100C93N183H468I276Br24|Cs0.07FA0.9MA0.03PbBr0.24I2.76||1.103|241.4|0.794|21.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-10985-5|hnETiYKQKoX75JJFbOWj17MMSPXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.9MA0.03PbBr0.24I2.76. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|121.1|0.68|8.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|hnWXd5LJV-7pVj55aR9ttRgiH1JD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.088|200.4|0.763|16.64|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|hnctiSdaGt8OZHs2sFfK0uWOZvsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -C92Cs8H497I300N147Pb100|Cs8Pb100C92N147H497I300|Cs0.08FA0.55MA0.37PbI3|1.5300001631456466|0.845|135.7|0.44|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.081|hndmwJS19ctM99uWRBjsRk7xelTQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.55MA0.37PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7290000000000001|178.5|0.451|5.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|hndz9KICMCVsS6PvvsFU3ZI8tOtn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|190.9|0.746|15.31|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|hnfiK8L600OvU5mlon49DXQGKT2z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.7|0.674|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|hnkIT-d9xs6EMV3fEJkKQm4vFR7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|142.0|0.48|6.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b07651|hnmgj40rgANv8Lrs59kzi9YpUJQZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.9|18.9|0.54|0.92|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201800359|hnvM8eSigkigaDMV7feKNkK7Nb1O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|161.0|0.7|10.9|['SLG', 'ITO', 'Spiro-TTB', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['Spiro-TTB']|['C60']|bulk|https://doi.org/10.1063/1.4889843|hnw0aW4pyev3O-a6CrL6cHb5dPKk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|hnwYzXiX1jZNSp8LEO2NWO88YLs1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br100C26Cs79H140I200N42Pb100|Cs79Pb100C26N42H140I200Br100|Cs0.79FA0.16MA0.1PbBrI2|1.7300001844718749|1.11|198.0|0.74|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b06816|ho0tbT45fI3x2sR_lakUkUhWtaE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.79FA0.16MA0.1PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|ho9AqwzWwD4XZIvgTS3kiYAeZPev|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.3|60.0|0.7|5.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00050|hoG1zpEEDvvFR2Dv67HNpJ9I8o0R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.408|185.4|0.627|4.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||hoh3sgs7hbK4M2YsBupUPkVn2yZW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C40H240HgI120N40Pb39|HgPb39C40N40H240I120|MAHg0.025Pb0.975I3||0.83|167.0|0.6779999999999999|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|howp-ryzQ4cio7b2Sh8CM8NAJwkP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.025Pb0.975I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|212.9|0.68|12.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.03.152|hp4HdwvUUVmjp5pgSzoBzwIy-Rsk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.05000021859384|1.07|17.8|0.69|1.3|['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2']|bulk|https://doi.org/10.1002/advs.201700759|hp5ZYz-Ifn5HMBbLm35NP5Y-jS2C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|221.5|0.74|18.82|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|hp8ScSfuWlCR6uvxOEpzxibIhbNY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|228.7|0.6809999999999999|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|hpFBjGSWlirTzqP5Ca4_X_YZta5q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|210.3|0.7|13.33|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3762/bjnano.10.228|hpK-xuO46Ai8fOWQ1dXnDiOUuJRl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.944|143.3|0.625|8.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03481|hpKJ1S8klP0qXmw6kRHXMU6wmfqu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.505|55.120000000000005|0.628|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|hpTeH-OxT0sVbd8RRO4HWzZZTThb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.0|0.56|12.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.12.193|hpXrc9veQf93zTcTfgu1oXVMMU5D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|178.9|0.6579999999999999|17.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.089|hpapKxIUpBLX2lqBWaKADKk9YZ1k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.12|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|hqE-f-KOCXzFuQZPEc4XRCEKpZRS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|216.0|0.65|14.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|hqQ3OYW26teqjnASuBOtd3X4f0fL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.035|207.3|0.7559999999999999|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PhCOOH']|bulk|https://doi.org/10.1039/c6ra16839f|hq_HrkdAlFxD990guT61kMsMSuBa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.06|215.57|0.75|17.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|hr2WuG_WJNKJ8bhShv__BI87wyUM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|201.2|0.72|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H65', 'Au']|['H65']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.019|hrFMdPcHCj6_z2RnsCRZf5VtROLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H65', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br41C94Cs6H480I259N178Pb100|Cs6Pb100C94N178H480I259Br41|Cs0.06FA0.84MA0.10PbBr0.41I2.59||1.15|220.0|0.73|18.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|hrL7IDxV-jydwMk41hzLhBJK4eEU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.84MA0.10PbBr0.41I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|213.0|0.637|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3303/CET1652062|hrVczTbP2XNfCRbRMsQKflgWiJep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|215.1|0.546|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|hr_Bbf-Rf1aKbWZVkF4eoR_guaUo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|165.0|0.58|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta03180c|hrcLDVyWbLUOy9VB2_wWKu8eMy_r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|200.2|0.5920000000000001|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N-Graphene']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00086g|hs3HKzZB4NylOCgsbfxQOkWqptJM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'N-Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|190.1|0.63|12.93|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|hsMS_xTA3PO1UAJNvZSUCSERN3u9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|124.0|0.58|6.7|['SLG', 'ITO', 'Spiro-TAD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['Spiro-TAD']|['C60']|bulk|https://doi.org/10.1063/1.4889843|hsO1gpkJspIP0IbNBPhyNv2aJINM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TAD', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.0|0.77|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00438f|hse9QRCqpIMGitYn7iIvbBKoG7JZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.76|192.3|0.63|9.21|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'CZTS-np', 'Au']|['CZTS-np']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1039/c8ce01337c|hsf1SQvItjI7MR6k91hFYKXXzzO2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'CZTS-np', 'Au']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|156.4|0.545|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst8010044|hsnu39nPYFKzrr-j52a3pVnckLBQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|222.0|0.732|16.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b07346|hsyejhYzx-dwcQLCNL-c3OQCKBQT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.163|54.0|0.385|0.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|ht9fpix6zkotU-pgbob9-gjBkHcU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.636|120.0|0.12|1.02|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1088/1757-899X/289/1/012001|htIMP5JggkYFMKzFXZsfGxb2Ugbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|231.0|0.64|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b15673|htNM2T2viq3TbnwgCI7G0AI1HdeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|204.5|0.765|15.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2019.11.030|htPSBVdbhNEMZ9fFs1_s5il0jVVs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.9|0.6629999999999999|14.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|htQa10TN7gKmOsZKE9aethBJ0Kwz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|110.1|0.55|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']|['Y2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01434|htRfNjcI8GQKrix7GPHbAnoNzSVC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|217.5|0.73|16.24|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'MgO', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ra09824c|htiUesYDCLEstfJbATgULLsXBxaU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|138.6|0.55|5.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcrysgro.2018.03.030|hts2xlECQQ1vslYDYWCR27TnODOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|156.1|0.6609999999999999|9.7|['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Grafted rGO; Polyacrylonitrile']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.003|hu3OhZ2hrHXZXuuHnAXZUmm_L-fP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|218.0|0.67|14.5|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|hu6SpIHdzfaU06QyHJlshNQHbCc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.777|174.60000000000002|0.498|6.75|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|hu7BGjAZRzjiIArEzIz3OaTvVLxH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|138.0|0.62|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.05.004|hu811pHE_I1BAlMsIGm6_JZ2ZCss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.988|147.0|0.71|9.0|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|hu8oE2stgR8tl-q2xSTUwShmzzfI|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|168.0|0.69|12.0|['PET', 'IZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.006|huDK9l_vygQLddqtBrG5bWw80idD|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.0|0.68|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F3', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F3']|bulk|https://doi.org/10.1002/solr.201900223|huGqC7suNLfSqj6s27gCnlU4ITCH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F3', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.913|112.93|0.292|3.1|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|huKOchgtmXMqLHdn4QgHPwf9TAmr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|194.4|0.644|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b18530|huVKPq_OX6ElemsSoBwFJXaenMQW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.12|109.0|0.7859999999999999|18.4|['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']|['Cu2O']|['SiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.077|huYL-fkyEa6eR16zFf49LQv0GryW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|221.7|0.778|19.83|['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|huaP2AZxEmGEskmsQG-tmdO6BBp8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.6|112.2|0.391|2.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.mssp.2017.04.022|hur6IFId1RcW5s2DHCpQ4mg6oic_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|127.0|0.61|6.4|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|hurY43lkx6I3ykuFYx6YM0gBnbor|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|225.0|0.7440000000000001|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1181-z|huv5SG7fnNWaW7MfabZNyjdYTYoB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|204.8|0.7040000000000001|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|hv3lRsna5xpOcoIWskdXW9rr_kRP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|193.0|0.5760000000000001|11.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|hv47sNjCtj3E_ebEjyyCai8phxQt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.96|209.0|0.631|12.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|hvEWYZ0xcTckq6MiGydMe3Ed8cP9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.01|217.0|0.757|16.59|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|hvK93Rz8x22QMh9MpetsshzuY1H5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|156.2|0.62|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-3,4', 'Au']|['H-3,4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700304|hvKAQcw_iCDGllDawlq_J34II5xT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-3,4', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.98|224.3|0.7|15.32|['SLG', 'FGZO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.105016|hvKxbGn_swew2OTiL198zkBH_znQ|a perovskite solar cell with the following device stack: ['SLG', 'FGZO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.98|225.0|0.6|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.11.061|hvTkg7b8HHFjdZ2jCyk-duYg7iit|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|206.0|0.63|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja511132a|hvZ43chFZzVlLKs_3Cc03-_2LOgF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.07|75.5|0.58|3.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|hvZhVQr3p4DuOKLz-adBp50taNeO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3||0.861|15.9|0.366|0.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|hvbpkQF62gL6l-u-3ci4eADxJirO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s13204-018-0836-3|hvbsDmMhezpm-JzVspz8SpujQL1s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|221.0|0.727|17.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|hvsKeBL_5SrpG7QDx1jxAHeu4gKE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|125.0|0.56|7.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn506465n|hvwxq-3aB9FcllFCtOykDW8MMG7y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.454|56.4|0.7|5.74|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['Nb2O5-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.069|hvyTruMZmWn50J23Dm6GYm_oM6aP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.2|229.2|0.65|17.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|hw-58aU6DSYvE_K9nrvuCueVro00|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|181.3|0.75|10.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|hw6GONZ6tN73EOXv_DBoT9zOKrni|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|179.1|0.764|14.65|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.0c00067|hwCW3oAk9tye_094LBEdMdzVG55C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.093|237.5|0.773|19.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900838|hwG80qBlo8zQFW5WFA8vvza6Xunf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.998|192.5|0.6759999999999999|12.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TC01781A|hwGLpy3q0t9TqzM0Qeh0jpwNSPi7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.112|235.9|0.762|19.31|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|hwGbGXWsmN84LSP0Yc22voyems5s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.065|195.12|0.777|16.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||hwK2X48jO9DDMShpYM_u6agMJrUA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.2|['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|hwNJ7lIho8gA6jtnG8OKglpvi7KA|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.02|161.1|0.72|11.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|hwQULb2Cua5K2Q-JzPvbg7emfNBU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.0|0.715|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|hwVH56X41wSgWQHvz2ZnDxxOmi5Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|188.9|0.617|12.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|hwVwX-93IDC4AaR3by_A0dTf_c6D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|87.2|0.6|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12323|hwW2cQ0LY2pqd5TXeG2NNekifhlK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.0|0.46|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963760|hwXtfM6EgsS68PPx_X1mjKi-FzCd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.982|175.0|0.74|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03322a|hw_Vsrq9RSzFDtvtkhRxZs6E4VA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C53H313I100N58Pb50|Pb50C53N58H313I100Br50|FA0.1MA0.96PbBrI2|1.7200001834055632|1.19|187.0|0.784|17.4||['PCBM-60', 'BCP']|['PolyTPD']|bulk|https://doi.org/10.1002/adfm.202112126|hwe6Zz8Q6OMPWDEoxvTlkQfIlKMO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.1MA0.96PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|225.0|0.53|10.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014006|hwlK74LPjirD75sTJmt7Xrj4Qa1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.88|176.4|0.59|9.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|hwnZWIHjFMslD_xOTVWKiQPCt1re|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|233.0|0.792|19.64|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.nanolett.8b02863|hwygNmk6uQ6j8qAeoZpRLWl79ky6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br13C100H543I291N157Pb100|Pb100C100N157H543I291Br13|FA0.57MA0.43PbBr0.13I2.91||1.08|222.0|0.76|18.22|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|hx40AUxe_zZpvjDpQxgmzMP3BYBC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.13I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|208.61|0.6940000000000001|14.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01471a|hx65a0KT_Z7_uus1XdRIMzEQu7uG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.99|213.2|0.7040000000000001|14.87|['SLG', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|hxFwyTIGsPx1bcVEzWGK0ID8vVeX|a perovskite solar cell with the following device stack: ['SLG', 'MPTMS-SMA', 'Ag', 'MUTAB-SAM', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|198.1|0.762|15.51|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|hxJ9Tpa3iJAPirdDgth0UfNBPu2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.548000165065007|0.987|211.9|0.7240000000000001|15.14|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|hxJG981Lcjw-NVqki57o6FajT2pP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|167.10000000000002|0.62|9.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|hxKEuySmoGQSa0Ge3Ppv2_WPhZuy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.99|249.0|0.59|14.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b01196|hxNEvyKd9qaWEIEAP38R4W4t12Ff|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|230.0|0.67|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|hxVcGQzfr5KaOwaHSI4b9iLnmaNY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.0|0.6779999999999999|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|hxX0K3CIfROB3SqL5D7f9UlV1-Km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|45.0|0.682|5.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|hxX9guczJxkxik3p6HG9WAaiGI2u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.085|219.6|0.675|16.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVCz-OMeDPD', 'Au']|['PVCz-OMeDPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700584|hxb-J2MVuPz-6ojfugrcGhaHejoL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVCz-OMeDPD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.9|0.632|11.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|hxbxRcG3rwtk_lkj6ENJBnwpUKdY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|201.5|0.66|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|hxeqd9SEOzL125LgJBO9O1CK6JOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.3|0.755|15.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta09080f|hxjdZtgJNZUcz77V16SlnlLGYU0u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.0|0.736|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']|['P3HT; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|hxxk0-qSwqV-HNAgkGcv8ELMZCpr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.5|0.785|15.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cs2CO3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Cs2CO3']|bulk|https://doi.org/10.1002/pssr.201900103|hy-RcmVaVRd2KDt_Qq8Ah36eZqH_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cs2CO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|172.0|0.643|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PYPH', 'LiF', 'Al']|['PEDOT:PSS']|['PYPH', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|hyBMmYTHLXRHU68x-x0-J5kSBeY0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PYPH', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.29|149.0|0.773|14.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201900311|hyEe1ers4qWgiapLA0ptymSGTY-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.94|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|hyGTy7F3vdh7JnGl5FAnOR6dGLLK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|193.0|0.52|7.8|['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdSO']|bulk|https://doi.org/10.1117/1.JPE.8.045501|hyKL-fyGSBSSnDHIFOQhvXH68tjp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|215.3|0.65|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.033|hyOT1j0NcueLqF3B9wWlMNO3vgd9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712||||18.37|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF', 'PCBM-60']|bulk|https://doi.org/10.1021/acsnano.8b02079|hyPiQamrcAGTnRCW3H8AIaNDnI83|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.077|223.7|0.716|17.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|hyQR4O6WNPe-XUXExWRrortZSVwX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|154.70000000000002|0.545|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110029|hySaWxdN31f1I6COAmdjXkcLk_Yd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.450000154615155|0.58|103.0|0.41|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.08.022|hyflX8JzGoNYnOL9KpM8ys6dwxgE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Cr', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.79|181.0|0.63|8.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Ag']|['PEDOT:PSS']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00926|hykYqKVZP4Mb6pGHvOTGrqVFyfhQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|211.2|0.77|17.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|hzAgaMLv8pAqXX3XjPkTq1XNYDHk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|152.89999999999998|0.768|14.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|hzBctVQEiQm0TUMEOo3oQsURI41y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|186.0|0.6|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00964|hzH2kPjCgVTxF_eaRYewC8ZzNaNk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|230.8|0.435|9.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.067|hzTA5mCmtW8vr_PbnVTeq1SsxWQ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|189.0|0.669|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta03169a|hzjVE6FwkEI7aDdGvHOnyVqFUYVT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|152.5|0.794|11.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00488a|hzp4Ak4gtifHXWmpntLnmTKzSp6E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.11|81.0|0.58|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/adfm.201604733|hzrXEekRoBHfKqJ4KXsKtfzVe_XI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|201.0|0.8|17.5|['SLG', 'ITO', 'MC-43', 'Perovskite', 'PCBM-60', 'Ag']|['MC-43']|['MC-43']|bulk|https://doi.org/10.1039/c8ee01831f|hzx-PdmXU38j7Vw20TS6zG8Re6pP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MC-43', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|233.0|0.56|11.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1002/advs.201500105|i-1sqlcnCBNy7J5tF43UO0cEJTnO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|165.0|0.754|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']|['HTM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta12407a|i-3Lmm4sqDwJU-e3_YMIf152f5F2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|205.6|0.746|15.75|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|i-4Gez5m93ONpWRZu50oidrVBU0d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|166.4|0.73|11.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201404189|i-BTSxyk81GVFYMB-4ZUfAVPRJfE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.71|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2018.08.021|i-Kr0hQit1m8v1AQ8leGJSJWVkqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.7|0.67|10.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|i-X13II0z73-JMAZsA6cpMMjz7T2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|192.5|0.655|9.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|i-aBOkXDdizDTrrh6Am67MauhBzk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|194.9|0.44|7.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1117/12.2286301|i-fSR-CCCuyhJN5JXyS-_6dCg3e2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.8|0.557|12.7|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']|['TPTPA', 'MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|i-gUVVsbdu1y6bhVOgfUlVHK6FQH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.767|189.5|0.563|8.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|i-mIj1is8qM0pr8xIt_Fv3dt3hhz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.071|213.9|0.7|15.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|i-nq7Tq0IB0lnhfpKIKlcunrbIbT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.01|118.0|0.361|4.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.9b02366|i-t3xwNawPdrCCP1bDPSj-vFrU6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -BrCsIPb|CsPbIBr|CsPbBrI|1.7500001866044976|1.08|185.0|0.679|13.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201905143|i0I_ijSLyd-g9RJ_Dt8K__lkkUi2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.07|158.0|0.745|12.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cc05444d|i0KIsTdlOqv8nfhqMT0tUNhq5L_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|144.5|0.4579999999999999|5.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/smll.201904422|i0LlxIFYrjp93fAQTM5BnlWU98Nu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.223|145.1|0.7959999999999999|14.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/advs.201801123|i0S-K3pGxq0yBcOy_itViXKrnzmC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|164.4|0.635|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|i0Tt3SRgHThfmz0kDIqMPJKPEWPd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.483|173.0|0.621|5.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5093873|i0YH38VgBiTx-Qmjzys6imxZHG_N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09174a|i0d9nmM6X9r6X67fwod5OkA_mj4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.0|0.607|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst8010044|i0dwzU8mRJRgs6GuaQVgqRJE5ohj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|228.9|0.748|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12217b|i0lL8XiYc8ZXpFhbKDMEnbf4Ao0B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|189.0|0.58|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|i0vCU5JZH8Dhd-aElrDNe66036ab|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|172.2|0.73|10.98|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|i0xIJzXNa8O6dhJZvpP5aYYeu0Ys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.8440000000000001|131.7|0.48|5.73|['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']|['MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201800476|i1Fmb4kXM6EgSlIEawo4bEfEx75R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Cs5I15Pb3Sn2|Cs5Pb3Sn2I15|CsPb0.6Sn0.4I3|1.380000147150975|0.735|245.7|0.624|12.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', '(4AMP)I2', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['(4AMP)I2', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-13908-6|i1Qued2SBKQPW9B--OuEndWP6q8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', '(4AMP)I2', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPb0.6Sn0.4I3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.15|202.6|0.76|17.5|['SLG', 'ITO', 'Ni', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['Ni', 'NiMgO', 'PVP']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|i1_11IzL_Uskq2itQTPmqnGJj7dj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'NiMgO', 'PVP', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|112.0|0.6920000000000001|6.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|i1pGcJrzSk26oJ-vibz1sRKOsPF1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|260.0|0.784|22.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|i1qGqKzWw2eSYZNZg2D3B4OyEfY3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|200.2|0.71|14.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01786b|i2-YC6M5tNalXcuoUcBxLGqIlVdO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|208.0|0.586|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b15434|i20M9S1fi9HKqQ5pK2gTTyizwYu6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|187.4|0.72|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.052301|i287gMNz6rtqeQh-Td1oua7Ud37y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|213.2|0.736|16.87|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|i28gx0GSGNTDTvyqp-PTXBue0SWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.072|221.3|0.71|16.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|i2ER9GDdEReDuiAYk38hoOi6-I0H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.61|152.89999999999998|0.56|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|i2ERi0p55WRirx37HGoEKdfnd7TB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H489I300N176Pb100|Cs5Pb100C95N176H489I300|Cs0.05FA0.81MA0.14PbI3||1.033|250.0|0.76|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|i2Epv7WRqtQtW_5xqGRa6fM6SaZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6500001759413832|1.08|130.0|0.6|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201907759|i2WiWq8TR2gyAj0d5_J6-R5nQ8AX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.0|0.63|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2018.08.021|i2aPUTEQISaqYwTrdSwYkFN-p3H8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.7|0.75|14.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|i2aeJoc3pxQWLhFATiWm1riBd8lP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC4CsH20I4N8Pb5|CsPb5C4N8H20I4Br|Cs0.2FA0.8PbBr0.2I0.8|1.690000180206629||||11.56||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|i2mJSP0VATdhXdMbHnl2jiSf72NW|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|225.23|0.765|19.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00080d|i2oX4cNTgxRtSvJ0y97isfNM90cD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|225.7|0.674|15.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|i2yuPabLjLfPyoxKm97O8-VY8x0P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|141.4|0.55|9.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110052|i3Eu2ZjxIKCN0Ex3KLKccZqxIPyu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.84|170.9|0.54|7.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Black phosphorous nanosheets', 'Au']|['Black phosphorous nanosheets']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.018|i3Je9QhT6efujlfKV0Ofm_V4qCdC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Black phosphorous nanosheets', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-HPy', 'BCP', 'Ag']|['NiO-c']|['C60-HPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|i3m8gSU-2aErxCkv0RPV5Oyb9A44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60-HPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|167.0|0.693|11.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|i3wLSd9OyFf7QTKb3cRLDrkiTKYq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC4H24I3N4Pb4|Pb4C4N4H24I3Br|MAPbBr0.25I0.75|1.7300001844718749|1.14|182.8|0.695|14.53||['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1007/s11426-021-1306-4|i49WPL_SyHPpqqg8nEeE1jA3y-ob|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.25I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|203.0|0.74|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|i4AQzo5vMNRQ9rcytcRyR-RWt-TW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.36|211.3|0.472|3.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|i4BFPxeNCEpJTwG4FgOozov24GRj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|207.1|0.52|9.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|i4CgHeiDS8zzPy8GfqS5T5zSy6fD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.031|207.0|0.72|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P6', 'Au']|['P6']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.macromol.9b00165|i4QlJ4VW48pSCKAT_bm6Mc8rz6S6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P6', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|198.1|0.69|13.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep15889|i4VVcqJyp0cTx3RhCG_praUgFwqm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.6|0.64|12.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-3', 'Ag']|['ZnChl-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.11.005|i4XxGymkp9AW7bANSqlT7GJoIfcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|192.0|0.7|13.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07446|i4_PbYM7YYySyRj-B9F5dghjGTe1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.927|242.3|0.45|10.11|['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Alq3']|bulk|https://doi.org/10.1039/c7ra06645g|i4ekuiiwWQMTahy-SL2CbGP3sh5z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|198.3|0.728|15.15|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|i4g1gzON804AK44KCB2XRDbkAAU1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.172|217.3|0.77|19.61|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|i4owrgwmZFGx9op0Q2E5mfLMkFzK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.892|167.3|0.602|8.98|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1063/1.4989560|i4pIFNBTmie1Ds2xzCHUrPvCq6Q_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|210.1|0.7979999999999999|17.81|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801715|i4pOyQmArqBuqzxWyw_beunjcN-x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H480I255N171Pb100|Cs7Pb100C93N171H480I255Br45|Cs0.07FA0.78MA0.15PbBr0.45I2.55|1.6100001716761378|1.11|228.5|0.77|18.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801208|i4uZEIv2scL39mFe5d7fMD0fyhWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|147.0|0.66|8.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']|['PEDOT:PSS']|['N2200', 'ZnO-np']|bulk|https://doi.org/10.1021/am506785k|i5CFEsrxpeX04aTDHOOH6uM9-Bnq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.88|158.6|0.604|8.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b03525|i5Eoq8qnPFCAWe62ZPEf-M0DCIlc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.87|189.0|0.71|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|i5G14Rhmama3YeEbrb_PGbVtYi4S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|246.2|0.77|20.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|i5JldMvK2U33dsZMg6bFHE4UnpWF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|222.2|0.69|17.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra08052b|i5M1IRwjwgUsvu6XKAbD0YwMkSeG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.8|0.5|9.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pssr.201900103|i5NS5AW7kCOa6HeSIqCfZ-DSpiWe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|175.2|0.826|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|i5V0DRrwnFWOieHTSiO2KkFJ2I7D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|221.4|0.785|17.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|i5cICHEvXPf-I8DPp0lJw_76LVlI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.3|0.75|15.8|['SLG', 'ITO', 'PVK', 'Perovskite', 'PCBM-60', 'Ag']|['PVK']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.040|i5y26I55J19IpewZo_7xSzWGdarL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVK', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.7|0.57|13.28|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cu']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8se00095f|i5ySh0eE75qGS2GiaEng83tOqf5T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|115.0|0.58|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1742-6596/877/1/012043|i60o5n1XW3wAZgMXZupBwKsDEr1s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H47I8N9Pb8|Pb8C8N9H47I8|FA0.125MA0.875PbI||0.99|200.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11801-019-8118-1|i62HsLNWR6yZttmcR_A4I-L0Qik_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is FA0.125MA0.875PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|214.6|0.75|16.41|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|i63KyngN7M0lbzrn1CaEjq_A3RCP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||1.0759999999999998|238.7|0.74|19.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|i6Gr9HwvWqX_8jM66DfgA7TNM2dP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.1|223.2|0.7290000000000001|17.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-019-08507-4|i6O6c405YcSLVpjNXviJCI-PAHoK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.23|147.7|0.7859999999999999|14.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|i6POHXztAjAf6vwn9Pcg-Z99hxSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|i6QDbtCgfYWRHIH5IEPenSQB1ptL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|179.77999999999997|0.6709999999999999|12.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|i6QqxCYYh__rONW242cN82kf50KV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|103.0|0.37|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7498/aps.64.038403|i6ROXiflf-p8lkdYj1wH5-AJd8D9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C91Cs5H468I255N169Pb100|Cs5Pb100C91N169H468I255Br45|Cs0.05FA0.78MA0.13PbBr0.45I2.55|1.6000001706098266|1.1|221.6|0.759|20.46|['SLG', 'ITO', 'TFB', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TFB', 'Al2O3-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900384|i6eHO6AcLqZPcyg2GWg1HU3tFvhS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TFB', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.78MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|200.6|0.59|10.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c5ta09231k|i6fLJuwAgO5hgfEY6hW_x_UlXcsF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.97|208.0|0.7509999999999999|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cc00268d|i6jhfT-HhZkGQQHqe8eQQPiUl0L_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.625|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5077098|i6r3ulmN_Lxn71Dhx6x4Mbe9990M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|214.0|0.684|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201700953|i7-NkiH9gIYa0J5b4SMffKuXTr-4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||||||['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|i74TjBuh0kL58UaZ9kU7LWPV2-WD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|106.0|0.53|4.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4sc00814f|i7Bktvy5AsCrHbz3y6oXB8s80YfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|161.1|0.63|9.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c5nr01864a|i7XmtpPDbp6l7aMlMKZxtPbze6hG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.921|128.0|0.5539999999999999|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|i7aEr9o8wmbS0PKqp-crmcM5iOmU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|166.0|0.51|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.06.037|i7evQAq611xtO1Mp9VIkGdESRvm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|158.0|0.6990000000000001|10.67|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|i7kNM9JTpJho26B-UfkxtH3Qv8P7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.0|185.1|0.57|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|i7tPgbVsvmVb9Dql4A4UMc9nE7Lz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.0|0.51|10.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b06164|i7uTn_8FAH63nhFYwziKBBtI4H1j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.02|189.0|0.5|10.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|i7v18iTVW3tnzt9XBKVBvnge1U76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|i7va5RY5cRmFGEEEWfiDaRgHZ4Ws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.22|154.0|0.805|14.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000001|i7zcBsGgcVrllUbl-_sreGrF8iKk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06044d|i8-ZI-XmmV5gs1Y3tkHmWOGA38ka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.205|218.0|0.8140000000000001|21.4|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|i84O88AYRhU9K3nhIv1zkUmXWdaC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|121.8|0.493|5.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/molecules24224039|i8BvIRdE0NtPNVokCvifEZ8gA2wr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|152.3|0.69|9.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2016.06.044|i8GX_Ao9873QQE_LOY4vw_tCw7yP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|144.0|0.61|8.2|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01300|i8JNcrvq8WKWgZc70Kl7XwGWSqlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|214.0|0.76|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|i8OPz-zYa4PLdujOnK8aFCslMQbR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.6|0.69|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr04801d|i8QIFL0S69p_LxUxVh4L8lUL8dzU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|195.2|0.57|10.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Spiro-MeOTAD', 'Ag']|['Al2O3-mp', 'Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cp04685d|i8QQg0N-DtU8Y8ZoAehVub5EALtL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Al2O3-mp', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.32|44.0|0.75|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|i8gk-z1B1UV_wbkpsjiTDmRdksJD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3600001450183523|0.55|194.0|0.67|6.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.201808385|i8kT5jUTaNOCKLFbhSmlhA247wt9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|135.0|0.45|9.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|i8tiG5oRj9sGDhPX0ElbDNtWO3eh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|200.0|0.76|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1364/OME.7.002150|i8u_Hz_PT5EfbVylUZI3vTTso495|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.0|0.73|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14563|i8weV4eTOU27sGhEW9g7JLKxJnNL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|178.29999999999998|0.374|6.44|['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60']|bulk|https://doi.org/10.1039/c7ta10366b|i98smFzwgSM6xUM64rELRYKOOd8j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.417|54.0|0.089|0.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|i9HCk7Y4eSJBL8ORTt4cBaTOF5Dw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.06|215.4|0.51|11.8|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|i9Irh6KY3E_YpxOl-aRYfCZ6ahA7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Sn5|CsSn5C4N8H20I15|Cs0.2FA0.8SnI3|1.2000001279573695|0.24|160.5|0.358|1.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|i9WgGYY0T-nQi7moA89Nr3laGExz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8SnI3. -Br9C122Cs5H640I291N214Pb100|Cs5Pb100C122N214H640I291Br9|Cs0.05FA0.92MA0.3PbBr0.09I2.91||1.08|195.5|0.735|19.55|['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PEG; SnO2-mp']|bulk|https://doi.org/10.1002/admi.201901866|i9ermr5I7vK1S44HxfJARFYgdbDf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.92MA0.3PbBr0.09I2.91. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|1.08|199.5|0.635|13.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|i9mUgF8BLfYZQ1kBeu_hDlam4T1h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|i9ud747FJs1PGinf1jtSHDY0o5vT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.02|175.2|0.4|7.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|i9vMOqQzpcCbrDRgwiiRl2_ajkCt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.83|134.1|0.5429999999999999|6.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504175x|i9zIxHIRDzrsFa_tP6ENcmEw6B17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4||0.89|159.70000000000002|0.7|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp03995a|iA8Pdvobba51pOz8KXzfYKwTCgO1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.0|0.74|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10526b|iA95kAgdDj0xZhHa46JpVMvTqP5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13||1.097|190.2|0.597|12.46|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.7b11157|iAFAz4vMHKpvTE7VAAr78jdn0dyb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.16|238.0|0.75|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12845|iARYoQUksSKPtbkJ5oEqkHcJ7faR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -C20H120I60N20Pb19Sn|Pb19SnC20N20H120I60|MAPb0.95Sn0.05I3|1.500000159946712|0.969|206.4|0.581|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C8TA05282D|iAU0MsjA37DPIczpAj5xS59WROIr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.95Sn0.05I3. -C25EuH150I75N25Pb24|EuPb24C25N25H150I75|MAEu0.04Pb0.96I3||1.02|215.0|0.763|16.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|iAUcALzFzY6cWZwwFsOMWtp321Lu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAEu0.04Pb0.96I3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.7|229.0|0.6859999999999999|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np', 'BCP']|bulk|https://doi.org/10.1039/c9ta10543c|iA_UCZ-0hyKgfmhtvs-GUeIq1nfK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3||0.81|87.0|0.79|5.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|iAc8UevswOqH0O8qNFnzBiO2P4yW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -Br3CsPb|CsPbBr3|CsPbBr3||1.25|69.0|0.637|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|iAj8MmxFpqtFlNzSrCE2ogE_Va7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|226.0|0.79|14.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au', 'Ag']|['P3HT; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-9382-8|iAl4X2_EjeeQCX6TS1f83iTCF-Qw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT; Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|182.5|0.66|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|iAsUZDUGg1iw458l3BLsiCBM-tFC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|198.0|0.8|16.9|['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['3-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|iAsXqSyFgThXh8pq5rh3DlbtOyMx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|235.0|0.735|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|iBFAkIlBB1m25pTQzJDaaq_Mt0pu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']|['Thiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|iBVA_pzPCW-72UgJT0EtXq_58cVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Thiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|236.7|0.758|19.29|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|iBWk9Ry2CBTTk-Vuy1ALPTL4048a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.04|50.0|0.517|2.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|iBXvi4nB5rnVWJgHcHT4IiUIZKkO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.127|232.2|0.7709999999999999|19.11|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|iBYYzDQzQEPtWlr1pFygEQm0V5sv|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|144.70000000000002|0.55|6.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']|['PEDOT:PSS']|['N2200', 'ZnO-np']|bulk|https://doi.org/10.1021/am506785k|iBZMVsWr9ueGBEY_AG9mDYVyDoGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|188.0|0.5|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|iBbrifMJHa3cirEuMIbCuW7WsMiq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|203.0|0.7609999999999999|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b04308|iBg0DjintMZ4cZupZVU06lZPKl-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58|||||19.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|iBpudXMFcbpjt33WmMyANAolqg6C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|iBt9pUEwzfMOFYHm8LCtA5_tqUlx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.13|81.0|0.62|5.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|iC6DH94S-ViaK54OIWOYuCIQIWqn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|197.4|0.614|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|iCY7NzX0dK5VRE2RbgJH3-4Z74rp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|154.8|0.742|11.83|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']|['PEDOT:PSS']|['Zr(acac)4']|bulk|https://doi.org/10.1039/c5nr06234a|iCYruG-994-gaUKJmaR4E8AB03hF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.3|0.738|18.55|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|iCZllgRpkI9NDju8em8JMVycy6yC|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|185.0|0.66|11.25|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta10605f|iCpt5aklK6CY8S5DEsk-AIJBMLAy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br66C185Cs15H960I534N335Pb200|Cs15Pb200C185N335H960I534Br66|Cs0.075FA0.75MA0.175PbBr0.33I2.67||1.07|207.0|0.695|15.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|iCxbNlsc64y0oj1-73tDfyC2BO9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.075FA0.75MA0.175PbBr0.33I2.67. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.962|169.0|0.7120000000000001|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|iDBXubf5xyJvDyaQU7jUlvT56tua|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.044|155.0|0.29|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Trux1', 'Au']|['TRUX1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05484|iDFEQPJ66lIaqrBqyfK9fZsHrrIz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Trux1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C96Cs4H494I255N178Pb100|Cs4Pb100C96N178H494I255Br45|Cs0.04FA0.82MA0.14PbBr0.45I2.55||1.075|217.3|0.74|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201706126|iDFIOQoIdOGGHiaM6maLBgl36rBB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.08|232.3|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ETPM']|bulk|https://doi.org/10.1021/acsami.9b00528|iDZCbPqftg4P579VR348flBSblIe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|163.5|0.5920000000000001|10.45|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/coatings7120215|iDe6JzxwUzioNd9NTChvSMpKDfZl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.789|151.6|0.62|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsomega.9b02934|iDeVtMuE79vvibjG3ofvJFB4Aj-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.541|200.5|0.6779999999999999|7.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|iDhUR2il9fGwH0P5Dr-PDCHcgkk0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.0759999999999998|218.1|0.802|18.83|['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene; NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|iDmCZ-jlAidCVpjH0bF_UkWDdZ02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|154.0|0.65|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta09992g|iDwB8FnuqsqrJcI5DLXGr142UYel|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.14|121.3|0.68|9.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1039/c8ta09146c|iE0TnHqYVi7X1JVBYcMWAjUDqsDV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|210.8|0.691|13.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|iE2Toxmygxn-MSO-KU74C_Vrx2Mg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.139|234.5|0.795|21.23|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|iE6ERW7gWoGEvDzMOXTpHoEwz80H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|142.79999999999998|0.341|3.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.08.027|iEH3RLNiCA3c6fCkCMfH-JESrdIp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.07|176.1|0.78|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'VOx']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201504555|iESuls6uqXrAS1gXJJ8rSu3R2YTd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'VOx', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br78C189Cs10H982I522N371Pb200|Cs10Pb200C189N371H982I522Br78|Cs0.05FA0.76GU0.075MA0.11PbBr0.39I2.61||1.099|209.9|0.682|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|iEWi9RHOlsIcr1JuAYR1c4IW533B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76GU0.075MA0.11PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|iEml1bmCAN9HUKibsvUHwK-4HHpb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|188.0|0.66|12.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.5796/electrochemistry.85.231|iEp-E1GPZctdL47ZF2O8eiUIXN58|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC100CuH600I299N100Pb99|CuPb99C100N100H600I299Br|MACu0.01Pb0.99Br0.01I2.99||0.841|173.0|0.647|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021923|iEuPlfkO0rWjM9p4SGFpviVsM3fL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACu0.01Pb0.99Br0.01I2.99. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|221.0|0.7240000000000001|16.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05975f|iEzTaVw7NK1K73IwHbqIEGxCXIaz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|168.5|0.68|11.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.carbon.2018.07.010|iFM3JW86Vrvy4TFVcWveBwNJ0RDD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|179.1|0.58|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc08269a|iFNtYFVnlrD7wJeiCnC8asYfX58d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br288C95Cs5H515I12N150Pb100|Cs5Pb100C95N150H515I12Br288|Cs0.05FA0.55MA0.4PbBr2.88I0.12|1.5600001663445808|1.08|31.6|0.74|15.2|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/admi.202100743|iFR0myTaeWMOJ3DyZtP9l19Beujl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.55MA0.4PbBr2.88I0.12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|198.0|0.575|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|iFZZ91pdrmyGFpHpIm7bzm_zFJgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|209.64|0.67|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta03315j|iFeepR9yFjxNLx1QyaIN5qDv-7oN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.4|0.75|15.92|['SLG', 'ITO', 'NiO-np', 'TPI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'TPI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|iFjk1wEjmxLyKyg5gfkQ-sdEO15E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'TPI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|iFuaTIMCFbYylAgZnDK9fR9jDesT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|132.20000000000002|0.725|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MgO']|bulk|https://doi.org/10.1039/c4ta03684k|iGAzx44ICYjDvhTm0YLBfEYBm22w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|191.0|0.62|12.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|iGItt2Go5veIO6S_S4lS4zxDXfhK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.785|175.0|0.57|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|iGhKuwCQRwD3BTYiDT8lYL44br3j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.94|122.4|0.68|7.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.025|iGlNWO1Xy276nxhdUgAJXTM6lLEY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.350000143952041|0.005|33.3|0.246|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b00118|iGufDlR5ECzAst04hfC5Zoj8aILq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|143.0|0.625|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ee44174a|iH7mnLMh1cuo8Up6OpoOJiYausLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.3|0.629|11.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00861|iHBkXO57ofbne2FMsueoeboYJ7eg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.104|219.8|0.547|12.5|['MgF2', 'PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/adma.201600446|iHDyOuOmxXN_6tQOZAok6CM7igv3|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.06|243.3|0.68|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|iHJSKpQCweoQiJ0GtC5rRTcigh4O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|187.0|0.63|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|iHNf6Ewmb-hzi5QkbQJq-gGmUhCP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|188.0|0.65|14.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b05008|iHY2-TptIKWRXTI0GS1HrtMzutWv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.86|134.4|0.63|7.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1166/jnn.2019.16597|iHc4aztexh4q_1ZPXb3wDOznguSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -C16Cs4H80I60N32Pb15Sn5|Cs4Pb15Sn5C16N32H80I60|Cs0.2FA0.8Pb0.75Sn0.25I3|1.350000143952041|0.84|227.3|0.757|14.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|iHm3Y-UYSo7c0r31j2kJ8gZV1iFx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.072|198.3|0.688|15.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|iHvUFCG5VCjlzhfzHTFC2DpWLmPQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.08|225.1|0.664|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|iI7YD6fQPSq3Ezqawxx83hvcXR64|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|215.0|0.75|17.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502039k|iIF6JFwnaVOSIJL_8CshrHxtRq0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|iIFo-j0hVmNFTQGC0d1YwcTRZcYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|217.6|0.68|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au-np', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au-np', 'MgO']|bulk|https://doi.org/10.1039/c6nr09972f|iIJMbthkutx3X6AtYecEkrO9C9Ec|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au-np', 'MgO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|152.0|0.7929999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.scib.2019.09.022|iIR4yEZELHOocE6XuNz7OPVeydVl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|167.10000000000002|0.56|8.79|['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene; SrTiO3']|bulk|https://doi.org/10.1039/c5ra09001f|iIUIxYe00Xhs2CtNU67nAsl7DNBW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|199.0|0.72|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|iIUVIdeXkK8sfNixdGYvmjor4r_9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||1.028|208.5|0.7120000000000001|15.27|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|iIWJmT1kumh1Je6ykTM3efN_DdFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.1|0.7|16.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b02554|iIgmt8JNmYf_lt33g3oj92YktPxQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.04|227.9|0.726|17.18|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b10979|iIjnsIX_VUFoye67b5VxiNDp8Ccd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|223.0|0.691|15.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7QM00221A|iIxL8AEpvLWy8pTKE5v1dc4jWTKq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.84|150.0|0.55|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|iIyMAu3F2rgp7S9xLTitpNOnndyP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.961|201.0|0.63|12.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|iJ-Einh5WEte9WxUmQDmkjlYJCQp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.899|166.0|0.58|8.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b07627|iJ5AAvivIZM3Vtq0Skk_F7tXBFoK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|133.7|0.56|6.97|['SLG', 'FTO', 'TiO2-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3-mp']|bulk|https://doi.org/10.1021/jp509753p|iJ8L9BoNXWQMCOtgDDMFRn3NmUV8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SrTiO3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|200.8|0.7859999999999999|17.2|['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']|['Cu2O']|['SiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.077|iJBSF0lYXOIIeVX_sv2hWZeeq6p0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.3|0.57|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|iJH8dmp0jjq0AEs-dM3I36tRXzIK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|231.8|0.6809999999999999|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00938|iJL-l2MuXe5qDRshiohVnRBvixVX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|176.0|0.7170000000000001|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|iJOOhEPzgzgQoP8EOInWTq76K5c-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.5800001684772036|1.12|219.0|0.746|18.2|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|iJbc-Lk1G3uj66x8YL32zXWw_LzQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.289|149.8|0.75|14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000164|iJdOww_K6VnIQjzoAHSOdIzOezZh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|170.7|0.69|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; PCBM-60', 'Ag']|['P3HT; PCBM-60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01009-5|iJdWWUFnIZ4Pnz5WjZwYwqmkPRx3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.67|244.0|0.41|6.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|iJeNH6VM88y5lFociohuaM_Qz-MN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|220.0|0.64|12.9|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|iJiJyB1GAKbchUCYTxEaXsv5b7i_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|205.0|0.73|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|iJn4A0Hr6n4wAx5WE8ZrUpPD12vo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.98|243.0|0.7290000000000001|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|iJrMbYMOPkP10fb1giVFVDR54aXR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.982|216.8|0.546|11.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105734|iJwXTzf_PJoFuDtTcgHCVwfeDOVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br41C95Cs5H491I259N174Pb100|Cs5Pb100C95N174H491I259Br41|Cs0.05FA0.79MA0.16PbBr0.41I2.59||1.0|173.0|0.8|13.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201801403|iJx19CbfrWKnNqCUYOUyTEy3VdXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.41I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|212.0|0.789|19.1|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Isopropanol-hydroquinolatolithium', 'Ag']|['none']|['PCBM-60', 'Isopropanol-hydroquinolatolithium']|bulk|https://doi.org/10.1002/solr.201800084|iK293Ne7F884oZcKPEhSWOnZqfrp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Isopropanol-hydroquinolatolithium', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.027|213.3|0.7|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1013', 'Au']|['Z1013']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.08.002|iKL93sgjflzaQc88mnK2Jc5A4WWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z1013', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.1|140.1|0.708|10.91|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ra06363c|iKU_JBHOv4cpKjghTX7G4Ik_ZY2s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C5H6I4N2Sb|C5SbN2H6I4|(4ApyH)SbI4|2.2000002345885115|0.44|18.1|0.38|0.3|['SLG', 'FTO', 'PEDOT', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT']|['PCBM-60']|2D|https://doi.org/10.1021/acs.inorgchem.9b01439|iKYC7BX_A1dqAnGkkxx5jJS4OEoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is (4ApyH)SbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.91|124.1|0.813|9.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']|['PEDOT:PSS']|['PCBM-60', 'P3HT; PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b09758|iKbq9hiWFcZ5BOALQrrFGKVyEuTw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.863|134.0|0.55|6.3|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|iKcDWw1zeW6W1zNXlfDH5hgU9kWd|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H60I21N10Pb10|Pb10C10N10H60I21Br9|MAPbBr0.9I2.1|1.7000001812729404|0.93|148.0|0.608|8.35|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|iKhp1LzzIQ2zctR4PenHOKksz8Ug|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.9I2.1. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.034|230.0|0.59|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04246b|iL1Uy5ey5Tr7aO21dHuKz_6vJQ7D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.8440000000000001|114.88|0.721|7.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|iL5BV8goycHPYVD_fz4Wt_ljCvtD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.72|159.0|0.55|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|iL6IuicFDnIyZs8r1TjFvG7onEvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.0|0.59|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|iL76nd_3slrti5H-w-WCfO78cloo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|168.29999999999998|0.68|9.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b00200|iLMrSXyvGIUagwJFoEpGqxJaNzdQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|190.2|0.598|10.94|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ta09202k|iLN450tIpREj4NdaA6wlZhal0WJ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.158|47.6|0.633|3.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|iLO7uzjKtTIJS3WGh_srKTk5_DnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.774|104.0|0.435|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Au']|['ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF01|iLa1EK-4jXwfbx838Fh8L4rOl_eI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.359|173.79999999999998|0.382|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|iLaAlgtXEdh0yUVzBjPeh3NOP4NK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.006|215.5|0.708|15.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|iLmwYDh5oEF-qJdZx_krfIT1FHgQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|140.0|0.31|2.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'ZnO-nw', 'ZrO2-mp']|bulk|https://doi.org/10.1155/2019/8348237|iLp4MX43WLgqt3foFGv8beiYN85d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I|2.0900002228590853|1.06|63.7|0.608|4.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b09393|iLv47idakH9np2B6XlBOyIlTAiIH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|iM2qKrGwPVmrlor2j7gUwspbKWvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|217.0|0.742|15.6|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuSCN']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.5b00116|iMF4s_D3P8mDIeBrCbLJpWkI9Crd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|222.3|0.77|17.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.046|iMIPUR3lCPH7AlKQyIGontYnS2tX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.1|0.67|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703054|iMIUSr91td9vxjg87i-ZxsnBRPCO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||1.29|73.0|0.665|6.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|iMLvEMIvKbKdinU6wMgmJSyW7SM2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|202.0|0.785|15.98|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|iMOxLC3JayquNMxPFj1IY6hsN4yW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.376|87.10000000000001|0.728|8.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|iMZLnIPi4WFUstQr9A9Ppfa54ic7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|179.1|0.65|9.85|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']|['P3CT']|['PFPDI']|bulk|https://doi.org/10.1039/c9nr03030a|iM_y5pLK8DHdu8J_IYmeD892eqtm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.4|0.7959999999999999|19.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|iMpPyYrxJdF7JAGX_1I0oDcVuXPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|66.10000000000001|0.263|1.23|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PDBS-PDI', 'Al']|['PEDOT:PSS']|['PDBS-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|iMtTxaiJ-VUT-djxV8FCkg37YxEw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PDBS-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.1|219.0|0.787|19.13|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c7ta08053k|iMwlhGlA9zkCWLk25c7eSWgraAyb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|220.0|0.649|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.6023/A14110823|iMz8-ECpiomo4zOEob0NmUlwxbqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NSn|SnCNH6I2Br|MASnBrI2|1.5600001663445808|0.77|143.8|0.5|5.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2014.82|iN9iqphE0PhJqGeFp10bkCjwXKOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBrI2. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||||5.43|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|iNMPuaFuSSKjkvHTDqMURYMw3JSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|208.0|0.7|14.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502039k|iNawPS_xnIz6XkoCKVkjt9paIEB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|118.2|0.251|2.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|iNbv2VjBNPa2vdpHQXYCFag6GiOQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -C20CsH100I60N40Pb20|CsPb20C20N40H100I60|Cs0.05FAPbI3||0.77|150.2|0.57|6.59|['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.12.103|iNgiQa39CHZqy3uUY24e5cZ42nA9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|210.3|0.7040000000000001|13.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ZnMe2Pc', 'Au']|['ZnMe2Pc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.02.027|iNh6tXm4GD8lQHY4VTGHTdYaBday|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ZnMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.38|30.0|0.48|0.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-07655-3|iNrsHj374nAjTN8crVwgV_WT-o-C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.1|0.76|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|iNyFXlTORISlWcbQY0230ugyt4BI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.3|0.75|17.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|iO3iq6YOGFUmi-MQ1viEibRfWvAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|199.0|0.43|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04267h|iO8iAzqAzda7E85DDmr0pmwVOhMB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.82|158.0|0.63|8.2|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|iOBT3jRSzLaC0ld1PkiSU7zcpebv|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|2.420000258047362|0.8390000000000001|64.88000000000001|0.477|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|iOEuqcNHA2EwxnHgYcHvzNDolsSA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4||0.77|165.0|0.44|5.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|iOPCh9srK8kk_3mE6uZ53aqJV0wA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -C25H78I31N11Pb10|Pb10C25N11H78I31|(PEA)2MA9Pb10I31||1.16|186.6|0.644|13.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|iOQJFvKf4kVNhdsiaPsjVDeu0qVY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA9Pb10I31. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|119.3|0.75|8.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01592|iOX9qBSLRhAiXIDIP97-IXcCHPnl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|226.1|0.705|17.31|['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/solr.201800338|iOeG3kFaMDAp-YBnhZ_XjVm4pI-8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|70.8|0.406|2.51|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|iOh2TaY_mT4wl1YbO6AHf4CEJxig|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|194.8|0.69|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|iOufya_QI0F9RUB_6Bdx6nRjKv0w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.025|237.0|0.59|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|iOxB3wnHPNRR-4hLdN7OL9DKA7pT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|163.70000000000002|0.581|8.82|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|iP09VxVhIEFBpgS21xfEOKHWBVKc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|165.79999999999998|0.7070000000000001|10.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pssr.201510389|iPBLPETJlqHUiqxWWsuw-SJ-oGNI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|233.4|0.701|17.41|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|iPNCWwKVrKra0M6WLHgMizVma967|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|229.0|0.4|6.84|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|iPO00kFVr4aoSjkSrYdW3vjcMNl5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.0|0.799|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|iPVxdBi5bIXYl01jOgpPmqkyTqIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.7559999999999999|266.0|0.65|20.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YR3', 'Au']|['YR3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|iPYSuQmbXvQbkSW5RvPsbBYcghGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YR3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||1.04|183.1|0.76|14.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|iPYpH0nNJoj52_l6BcCAwH6Dc6Q-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.45|1.3|0.36|0.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201701470|iPjLzyAp0Vsv10Jk1inOR4ITXd-z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|222.0|0.743|18.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|iPm-iF1AWoanhrqNq-NV8zqKNnRt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.16|38.7|0.63|2.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-018-0187-3|iPnC8m1hO55uIlJo052ydOJG6f5p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C81H376I181N61Pb60|Pb60C81N61H376I181|(NMA)2MA59Pb60I181|1.6100001716761378|1.04|200.0|0.72|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/s41598-019-57015-4|iPwHdY5RgRgEJjFPf4AdMIxL1p92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NMA)2MA59Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|171.20000000000002|0.65|10.22|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nn502115k|iPwOQolG5H_gs7hIzwY759mKCN3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.03|70.9|0.39|2.82|['SLG', 'ITO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1002/adma.201506292|iQ7HW4rFhxCY_szjRNH0ntBgzKUS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|218.0|0.691|16.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|iQCCinIZXw8Os64IMed5rRB6e21L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.556000165918056|0.86|169.0|0.57|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaa616|iQK25uH9fK3DkPvk-x_ErB5NJpPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|1.07|190.6|0.732|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1-Donecyl Mercaptan', 'Spiro-MeOTAD', 'Au']|['1-Donecyl Mercaptan', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b09722|iQKNHYAiq4nK3N392-FYaXxf5rCc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1-Donecyl Mercaptan', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|188.8|0.745|15.14|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta04313a|iQUNSwmIBgfqkmN_KXAtVwx3HC7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H496I255N176Pb100|Cs4Pb100C96N176H496I255Br45|Cs0.04FA0.8MA0.16PbBr0.45I2.55||1.081|226.5|0.767|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703421|iQqHJHOCpV9-uSxU4GOipdTuYFEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.68|14.6|['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-macroporous']|bulk|https://doi.org/10.1002/adfm.201804356|iQrDNfomLVJLrPM2zz_ZBUYR7H9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.143|236.0|0.768|20.7|['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']|['NiO-c']|['ADAHCl', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03131f|iQssprhqvT-W6LgHwlecf0EZEEjB|a perovskite solar cell with the following device stack: ['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|191.1|0.6409999999999999|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2020.137786|iR2rQlTerl1BbESQ-xRWqa-FyrjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.31|52.33|0.6|4.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900737|iRFYWDkwGvClhj-hIw3zvvO5sQPx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']|['XY1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|iRHGDJE-CrPJsWEghHx18zBc3qZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s13204-018-0836-3|iRO-UmabbpWnm64VVygEyzcsP2Jk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.84|9.7|1.276|0.454545455|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|iRO0x3tms9phzOVvKdxiDZqGyJlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -CsI3Pb|CsPbI3|CsPbI3||0.91|109.6|0.551|5.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|iRSgd5YaDDhoVSj0yhwEse7Zi3WT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.968|208.5|0.527|10.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105734|iRcWd0XATaPKc3DHqb7_vfNL9Emj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.9|205.0|0.635|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|iRnfNgcSWyQelxBoa_kOBwkTw-Le|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|1.6120001718894|1.05|217.0|0.75|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp08022g|iRp-cWtHfO3_6OacMuo7-aDOC1a6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.3|0.71|14.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3762/bjnano.10.228|iRpjd-9DqAM4CwBaD-EbSyf8PTYe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|77.0|0.67|4.3|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|iSB3i_cbu7LKSgNVA82gdcW0MSM5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5400001642119578|0.77|95.8|0.54|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05149a|iSEKYieI35VfnKYsH3gaTQYwpSp4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|119.0|0.46|4.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|iSJggqiUGsX_Cbdwk5IivBpuhNrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.014|193.2|0.762|14.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|iSO_Bnfg0LWcqVeOwIDugxl7fzy8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|202.1|0.708|15.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|iSPNpD03nm0ldnhgym-BL7CqW7Sr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|151.0|0.76|12.0|['SLG', 'FTO', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['AZO-c']|bulk|https://doi.org/10.1039/c4nr02065k|iSPWRBfS69i0wAesMdKoIEm9O4oL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.84|187.3|0.68|10.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mseb.2017.01.004|iScNHYm9wpzKwG5_qaiH4Tjcbn1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|174.3|0.63|10.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS0.5Se0.5; rGO', 'Au']|['CZTS0.5Se0.5; rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801459|iSh8feqrghhFUpWx63ayHmQ_XlwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS0.5Se0.5; rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|165.0|0.6|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900922|iSjx9BRRDx2uQgbzwaRrGVna6W35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.916|227.2|0.537|11.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']|['SnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00510|iSq2ckNaBdPCp7VEoMnbWVSJClkD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|48.0|0.21|1.0|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08744a|iT0W6Ccr9TWbE6KD3LzqFtnB5fkh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.6000001706098266|1.0|181.1|0.748|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S0218625X18501378|iT0ptA4N7z-aRxGQA8Elm09YQseR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|192.1|0.58|9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|iT767wn8mtzKceFLUHCnyWrT_609|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.665|147.0|0.61|5.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|iT9Jn9Il23_jMXjwAPoM5VUHZTAp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|215.3|0.57|13.49|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TL- PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201900157|iTKlnDbvSwJMlIYI5EBprAAtu-Lg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TL- PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.0|0.7759999999999999|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06718b|iTVIdfpEO3-vHdSqo6nINNFPH-1b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.49|148.0|0.53|3.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c02656|iTcADBF1clR8HYEfEA4R14pYt3j0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|205.1|0.826|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06689b|iTcVrdC3I-XgWb11CiLtK74r20po|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|171.0|0.72|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b09322|iThgaNEgrbnPub1K-VjQO9J60kNS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30MnN10Pb9|MnPb9C10N10H60I30|MAMn0.1Pb0.9I3|||||8.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|iTjDuClUEFhaJzdcxVWHbBJZDf1Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAMn0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.4|0.71|13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|iUC6Q1ZQux4lS1t7THMB3BOlt8V3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.99|227.0|0.66|14.9|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|iUWO4anKQItWwxc3fg4VM-aYbWBo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.32|69.1|0.54|4.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00968|iUptsMvx9Q3TmfOiSi5CdoyMtplB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|181.0|0.71|11.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|iUrMIEy7ckdWPq5rLBq0ExVuVeWF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|209.1|0.69|14.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|iV2EXMXpy8WrDaSL6-dcjLx4fbCm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5930001698634082|0.98|184.0|0.73|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|iV9tI5zMsqJc0BiVyUpXL199wqtz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C102H575I300N131Pb100|Pb100C102N131H575I300|(EDA)0.02FA0.29MA0.69Pb1.0I3||1.061|231.3|0.73|17.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|iVb5gnfYqdYAgHO4_MlPnEocOPka|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.02FA0.29MA0.69Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|171.0|0.51|8.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b06780|iVggZtyHe3sdlDcA5ixQScSDdIpH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|204.7|0.701|14.13|['SLG', 'Cu-BHT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.028|iViMudfemfhCAZUtxR_TcTMQJvC3|a perovskite solar cell with the following device stack: ['SLG', 'Cu-BHT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.123|229.2|0.71|18.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta01773e|iVkdE8miZIYj9tVWeDyVvayd2JUA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|196.4|0.7440000000000001|14.92|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|iVroq43a8gHlRc5gK66CHYCzVNnT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|182.1|0.635|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01939h|iVsNPR-yF4UYqKLK00g6bUhvIqBq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5170001617594413|0.987|134.58|0.358|4.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|iVxLErHV76t2CQrHGF8YDdDW4eTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|196.0|0.46|6.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/er.3485|iW5MbE8bZ39u-1OYB1mgJGt1JMhR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|226.0|0.6|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|iW8Ef8CrhnEm2MQn9Lb9COaqmAL_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2600002409863795|1.32|62.0|0.67|5.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201700362|iW8gbf9YxoMY8ubSqfFaVhbbvbW-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7509999999999999|145.8|0.73|8.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.01.041|iWLdctxE_hwdXv-ViUOtp_BPPqU_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|222.0|0.789|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600957|iWUD8ldfhAH8a4zv-enMCtjC-4V-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.81|91.0|0.47|3.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|iWqZ1YK2_-McpDRnjZwCvTevb8ff|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|216.1|0.782|18.36|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|iXVBPDKVJaqrnm2BikxC-6GUUz5v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|225.0|0.73|17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|iXVPDNPWuwmcAG1tiK2TmJWDb8I1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.05|228.7|0.7120000000000001|17.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|iXWz0A8CNvOurqcMMEpaS9Qg5mIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|177.0|0.64|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|iXYgtEYbMLUxoO-1-4he-t-XoYEB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|iXjYVVmNzOqcRlO0r3eeJcSHmPmh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|203.0|0.481|8.6|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|iXmuwrB9P2nq-gQHpRTOlYKEo3Iw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.96|230.9|0.76|16.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|iY2Tip6kwf4TLdu9YY4Jki-nf17Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|0.58|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|iY40-eG3BWzPLVE18nYw96RT2TkJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.06|221.1|0.622|14.48|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|iY4NdTbncIsFdrqofTJi8YIQjyam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|132.6|0.58|6.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB', 'Au']|['TPB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5001773|iYSF7L8XjzqwIQSlRzkSX2DZQa1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.0|0.75|17.2|['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'B4PyMPM', 'C60', 'TmPyPB', 'Ag']|['MoO3', 'TPTPA']|['B4PyMPM', 'C60', 'TmPyPB']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.049|iYeqhY_E25aOW_Jp0rFhFFdw3Er0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'B4PyMPM', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.72|26.1|0.7|1.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|iYhhRSnDkkoyizB8-7ipaIZnnTPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.0|0.647|12.04|['SLG', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1002/slct.201702419|iYlzBYEgaZe9jnkFEqTLwHbCiaTd|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|185.0|0.68|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|iYmD3IUA2cQI1VtZQoWreeuKGTmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.07|112.0|0.25|0.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|iYrEdEGm88QgjJeKOuoywvjuPaZV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.5|0.7829999999999999|13.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7tc00597k|iYyBQSK_vNgY_RawFhaUHOfemYTe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|176.70000000000002|0.654|12.13|['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.136|iZ3MK42L836k-Un6KuYzfTP4HdLF|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5710001675175231|0.95|203.6|0.645|12.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|iZVt_ydrwhNPWhiUx_bw5jPuuG5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|222.0|0.8079999999999999|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|iZZyOJ5l3SfUp6aEatn_ncuxmlYw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.12|230.1|0.81|20.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|iZedBZhBlemjpozy694VduiV75Tu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br1000C1000H5976I2955N1024Pb1000|Pb1000C1000N1024H5976I2955Br1000|FA0.024MA0.976PbBrI2.955||1.095|238.7|0.7559999999999999|19.76|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|iZrZ2UgYJmpz6p13jd_0Mg5j3cZG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.024MA0.976PbBrI2.955. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.73|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502720a|iZsM_VvJzX-kZ2kC7qmgYS-GBsrd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|103.0|0.68|6.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|iZyTYqjfkXZUIAusG7GfOdmdQeez|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|157.0|0.506|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|iZzPl2GAmh8h3D3sJBPXhyRZsNN2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|177.0|0.654|9.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504949|i_4Yqq3gJXI2Zw0dhiv9SW4VNLyw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5|1.5900001695435149|1.08|214.0|0.684|15.85|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b00830|i_9TPPdv4H_4GJIfEisPa7k2Gwkk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|124.2|0.624|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.04.031|i_ICZMTgDTmdiDh6t00d7Ylaag39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.6|0.71|16.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201802109|i_ZiGs7WlA1J9dILi7sAuR0b5Ywr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.328|75.9|0.752|7.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|i_eYACL_h_1vA2ky7r4W7YJ0P0po|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br30C61Cs39H305I70N122Pb100|Cs39Pb100C61N122H305I70Br30|Cs0.39FA0.61PbBr0.3I0.70|1.7700001887371206|1.208|166.0|0.761|15.5||['ITO', 'MoO3', 'TaTm']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c02445|i_q4RnL_KlpvQUOrRNOIym2UIrcS|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.39FA0.61PbBr0.3I0.70. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.08|213.6|0.638|14.69|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|i_yBqEmEClMc-Z9gQMa7ay2hKWtH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.92|200.0|0.64|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b04662|ia0ofk14nvjwTo7wgcxoI03wWofH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|205.0|0.71|13.68|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta10605f|iaHh4q7VfOn6xypYueIdovAoXSf_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|100.6|0.5660000000000001|2.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.07.081|iacCdXKarZbkz9oyZp8H19OhYkpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.17|142.10000000000002|0.74|12.3|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c9ta01452g|iasO0ZLKgqSoT1LCwyDOZql27pQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|205.0|0.6809999999999999|14.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|ib09BBChRwcBdXf3a0bpzljcOsRO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|224.2|0.8009999999999999|20.1|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|ib51zwuH5cWS_xpH-p_ySxq9DDIE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|121.0|0.6|6.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|ib9LvmjcvFbCjz--HHXPBTKymbIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|242.3|0.6459999999999999|15.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|ib9cKYZlfaRCe2nC8kdfxBIgvtC-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|145.39999999999998|0.602|8.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06692a|ibCEdgFZevgEeMXkRyA_6L4EDQGf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|198.1|0.601|10.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|ibJvNANpJ1NWBv8uPPhQy7h7BZJt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.294|63.5|0.76|6.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8dt03296c|ibLpb9QvJxINUXb4zKARp5FXDmD1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.9|0.75|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-411', 'Au']|['SGT-411']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|ibObTWGA-nmGo3j53Ff-zrhtp-ib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-411', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.5|0.745|17.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|ibXEFvYXxYPyhNpwlQxslpJwp6VV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|190.0|0.6|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|ibprnapipaZTTSLsJx5Gmxxr13JW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|100.7|0.59|5.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn501096h|ibqksd7ttp1CbVndJgB0jlQhJoLn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.11|231.0|0.726|18.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.121|ibwJEakOjN1tJ0w_g0OlVm1CqpF5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.997|231.0|0.626|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.223|ic7T-c-TpRscDpyLjRdKpfG50jfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|174.0|0.621|9.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|icJxPwnfB6EPrh5J8hz_BDX68VqD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.04|223.6|0.66|15.34|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|icNjGsyzCsoHeOd-AvbGo0R6UszT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|192.0|0.708|14.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|icT6BThhiduzstLYeHcrNJ-ghjvI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|180.7|0.6970000000000001|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|icZH1gejd-Hd6Gbhem56_R95uGRu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|187.0|0.53|9.5|['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1021/acsami.8b05560|icdcq7xwq9BTKx2slo_nD6evKJud|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.085|233.0|0.83|20.98|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|icyCQU4f8YPSDxRzJ39kYL6gMDzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.7|0.693|16.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/aacf7c|id1tvbmRksrgsLZ6dNb5fBvFcwb6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|121.7|0.606|7.38|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s12274-016-1407-0|id2mJCTMsikWZOqFBedNha6tPTMS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2800002431190025|1.23|56.0|0.614|4.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.6b00517|id5T8eLWJt_YRR_rN81V1cn1UHSh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.718|148.14|0.586|6.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.04.026|id5UKhRkutBzQKabctPLvQrSTN9u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.15|163.9|0.703|13.31|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|idIhFMZmmuA1lBi17XfYFK3p0mkR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|idXg8dqna5Y2HZX1FIpgjv1X-z_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.51|62.2|0.802|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110267|ie1M2UONUt-DVsCTouM645iieT6s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; Graphite; PANI']? The composition of the perovskite layer is CsPbBr3. -Br64C225Cs25H1200I186N375Pb250|Cs25Pb250C225N375H1200I186Br64|Cs0.1FA0.6MA0.3PbBr0.256I0.744|1.7000001812729404|1.067|176.4|0.608|11.44|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|ie8PbKLG_KcaprPRoxfIN8o9HKh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.6MA0.3PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|142.0|0.64|10.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/ncomms8081|ieBd86OKiZ-qoG1qfvoW8BuJaN85|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.1|216.8|0.74|17.66|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06424|ieJxyWbC3V1-NiaTGqZ-5HfeM_Ut|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|145.0|0.64|9.19|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr03181d|ieWDx3zDj43nhjHpyptIn_103hjr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|267.0|0.521|13.2|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/am506869k|iecEM5J1SUivwrq-g2jmN-QC4x8Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H30I15InN5Pb4|InPb4C5N5H30I15|MAIn0.20Pb0.80I3||1.04|202.2|0.68|14.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201600626|iegL1kR1zuhn_uWzK3yYil-HqxeX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAIn0.20Pb0.80I3. -Br3C100H600I297N100Pb100|Pb100C100N100H600I297Br3|MAPbBr0.03I2.97||1.07|226.1|0.7829999999999999|18.77|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/ente.201700561|iehlDHHBkGKuuwxul4C4onZ4SxKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|141.2|0.595|7.87|['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501406|iehslrom5WHjEheOnvc3dycZLBPq|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.1|0.65|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'NiPcS4', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiPcS4']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|iereml6sVJcFn-AvJeugwtSJEUog|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiPcS4', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|183.0|0.603|8.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Chl-2', 'Ag']|['Chl‐2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601069|ieuEx4XPhwlv_fqPJFEB5IJOhEqU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Chl-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|1.6680001778607438|0.79|69.5|0.42|2.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/anie.201902959|iexGwR4FhrkA966x2HJQG4_gcL9h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|198.0|0.72|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-11', 'Au']|['SP-11']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09314k|if-U-olx2m_BwsgFunuvFuP_DcKH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-11', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|209.5|0.735|15.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|if1QB2HtDwtMEGDG7XcHQ1nYFuXg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|221.7|0.35|6.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0012-2|if4hCrqVNhhdbfKatp2tyzKDbL8m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|86.0|0.27|0.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|ifAvLqwrbAWJhpGEhmSaGjADSinU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb30Sn70|Cs17Pb30Sn70C83N166H415I300|Cs0.17FA0.83Pb0.3Sn0.7I3|1.2500001332889268|0.64|217.0|0.609|9.0|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|ifIfPLKX_VekkVWSmol67_pFcFv_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.3Sn0.7I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.5|0.73|14.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MUTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|ifJcOn2o66OrNy8pJjyycTtEsK2Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.75|303.8|0.75|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|ifPxBAapss3x2An0Ilbw35_7d8Ui|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.97|200.6|0.6970000000000001|13.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.048|ifgVdl0CqXiokZjPFMATX0u8AxE9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.9|90.0|0.4|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn507345e|iflPXIjAv5w2czLMpkHAtjAQd2EQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|142.89999999999998|0.5920000000000001|8.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1142/S2010135X18500066|ifu4nwIU6_DQBAUbmrwpTAhT4g5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.38|73.89999999999999|0.7040000000000001|7.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|ifwuAWk8Y5ATq_lbxH321YG2wZrR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.0|['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00419|ig-0qy-b89DsKKj9MxI3U3fQ4UcZ|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.410000150349909|0.238|244.5|0.36|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00190k|ig4UmvF0RO3L6DhlBAnA65MApdwf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.103|234.0|0.77|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|ig9DJNIDg6EIibJe1_SPQ-C8lSf9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|226.4|0.732|18.45|['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c; SWCNTs']|bulk|https://doi.org/10.1002/solr.201900415|igBQBvvG-tORrn6pkSpuPcAStUNB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.13|218.9|0.75|18.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|igET35uG-FYhwCr4bqWjrahNYVMb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|137.10000000000002|0.504|6.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|igG_XP6CPl67O45lThKPzPdQuAsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.017|9.07|0.41|6.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']|['SP-02']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|igN7xWDSWN8eRpwCHsp5YAW0jx0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.947|189.0|0.76|13.6|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|igObCCAKNcLFyumv0se5vJgsp0nW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||0.86|75.19999999999999|0.67|4.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|igX1YaFZLK7mSrkdeK1KDW6_ELfj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|140.0|0.55|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|igZ8VbWK_8YCKETCIUcXhd0IRLgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|215.6|0.75|17.65|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c8dt00692j|igcBfX8xy24QsTS7MH-iXJRNa6ml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|198.2|0.64|11.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1166/jnn.2019.16678|igdqdP5jzOMJUO5LlndTN5Ql63e6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|203.0|0.6809999999999999|12.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1038/srep13211|igfO2QFLUNg9Eg2wMYP472AGXivH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.06|211.2|0.74|16.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Au']|['JY5']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201803025|igfhpkYOZI_qRZRi-brOGXR_clU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|186.49|0.5539999999999999|9.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2017.07.069|igreqtzgZGdbT5jAgDLB5wAEvEK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.172|219.0|0.73|18.73|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|ih2rcl_EcDhwj6UWhg0Q-7KVg5HI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49||1.07|209.0|0.7|15.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'IZO']|['PTAA']|['C60', 'SnO2']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2896995|ihHqa6-QyftO4I5hkTGDXzbUfN3V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnO2', 'IZO']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|166.70000000000002|0.6659999999999999|10.98|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|ihLVpDuCqpCnQNA7nykPELBq9poa|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.099|195.9|0.721|15.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|ihURC7QlfUHt01a7Aecd3iYuCHaT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|155.29999999999998|0.743|11.88|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']|['PEDOT:PSS']|['Zr(acac)4']|bulk|https://doi.org/10.1039/c5nr06234a|iheYXi0ZGmLZr0SKSxYPRikB5zxA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.89|191.0|0.48|8.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|ihh4haxMFr4RxeYbNB9H3TZpyceC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.006|226.84|0.726|16.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|ihj_JR-EXe0QbJ5SuqvbnlhCpP_H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|200.0|0.52|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|ii4PDr0rcdWrhNPGMVZDyPcf_eKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|152.0|0.39|5.87|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8nj01082j|iiNQ2OQkqzif49dbw-mY6Kw3xmlZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|199.0|0.6509999999999999|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1406777|iicyy4OoyOND7ci3PspC90CsS_il|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.0|0.68|14.3|['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['MoO3', 'TPTPA']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.049|iii91oDFDSCGxp9K1wV4ChyG1R4o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|161.0|0.68|9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00077|iijpnWxLVapPQrW6gd4bocq2X9Nw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|221.6|0.66|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201702937|iikicmOhsiShnJzsmtV1Xbf_8q9j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|40.0|0.19|0.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|iilOExWj0JRqlfJDRB5WguCGCZTO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|214.0|0.53|12.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|iirq-Y29xhLBfPh3S1wwqm-FXcYq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466|0.95|211.0||13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|iit4XfUjhVXZitPiMM7iakj_c5qm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|193.0|0.65|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601499|iitME-6seAJvyXZ1zjfJCP_Un-Ei|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|205.0|0.74|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1007/s40820-017-0140-x|iiujhVGliDqHOOqMEd8uzB8JpUmQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|150.0|0.57|6.14|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1557/adv.2019.79|iiuvrtwUNPG6eG_5Ue8v8dmSRvBP|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|160.0|0.674|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|iiwyHPkNQMVO1fy_ESBwIVmwqA3-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|185.1|0.75|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PMMA', 'Au']|['PEDOT:PSS']|['PCBM-60; PMMA']|bulk|https://doi.org/10.1002/chem.201703382|ij2K31mTbcDTYyI21yRngnfolShD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.0|0.7759999999999999|18.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01969b|ijCoGTdYUZsgyJnqP4Z_rPTXKNR5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|191.2|0.71|13.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ppsc.201600298|ijFvbxfBqcOZmG56VLzPGlUV3wgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.03|226.1|0.72|16.98|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|ijK-QisL7Ula_AXYKg79-vNJz4EZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378||||11.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc01224a|ijSyvSZP00ub53ctPg_ARcikP7-L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.7|0.631|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|ijUoAyw5hRtqiXKAziId-NdLnxep|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|96.0|0.445|3.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974790|ijVmzKY4zdOo895NFtRnsuWIJQBr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C1085Cs15H4053I1300N542Pb400|Cs15Pb400C1085N542H4053I1300|BA2Cs0.15FA0.57MA2.28Pb4I13|1.5900001695435149|1.05|179.3|0.72|13.72|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.9b00403|ijfc_3bYyKBiy6wOmX60nhCnMmEo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15FA0.57MA2.28Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|197.7|0.649|12.89|['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']|['Si-OMeTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta09716f|ijpajKp5mxmpCL_SGysAC1ORraKY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Si-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|201.0|0.79|17.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta09520d|ijrc8yNOIDu31RhJlkohcIh2Dzrz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.97|189.0|0.5|9.2|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|ik6F7e75rvvFw-07WXHd9gyAiD0t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.1|0.75|18.19|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|ikCbJlHREQsearU88CZPcj3F-KLC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.7|0.79|16.65|['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee02958j|ikDbGyiEq2qKs0UCwtGCCiJCdpQt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb4|CsPb4C3N6H15I12|Cs0.25FA0.75PbI3|1.5800001684772036|1.15|149.9|0.66|6.94|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/s41467-019-10856-z|ikEb3BOvaL0m-LcPA8sRSELbvHpL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.25FA0.75PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4980001597334498|0.099|65.66|0.3339999999999999|0.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|ikJNvD8Jwzd33LUNO1pklDbfeEBS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|191.5|0.6859999999999999|12.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11071073|ikKtTSGNetXU9MbcjvM5e7klBZOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.168|225.1|0.7759999999999999|20.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b05469|ikTXw7ub8_lZWUtfMK72yjikHb1T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|204.1|0.45|8.92|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c7ra01110e|ikTfYSKl6boX_6cxhchKXf_nuHVz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|198.0|0.74|16.0|['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|ikY08huk4M4TuHXxGuj7mXCsmnvl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|110.0|0.64|6.0|['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2BaSnS4']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|ik_YwPohYyQa0qDl1SWwpNIucWSm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|156.1|0.66|10.1|['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoO3', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|ikan7PsXfquPY7lBsL4D3IcT-Jbq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H600I249N100Pb100|Pb100C100N100H600I249Br51|MAPbBr0.51I2.49||1.06|188.2|0.591|11.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05373k|ikdudx0om1QXEkJ5peSPejtTnPsS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|228.0|0.764|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909737|ikj4RPH8khNlCr82z_IfONRfDTqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|134.0|0.63|8.0|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201600746|ikpVEZVQXbkSgWA2AcL27nAxmXRo|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|211.6|0.7390000000000001|17.01|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta12028e|ikqgh3yAnrd1anu_xI1YKl7RGjOv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H26I4N9Pb5|Pb5C5N9H26I4Br|FA0.8MA0.2PbBr0.2I0.8||1.09|227.0|0.784|19.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RS)', 'Al']|['PEDOT:PSS']|['NDI-ID (RS)']|bulk|https://doi.org/10.1002/adfm.201905951|il1xDj51WOAINm6F_9d1y1fuf4fy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RS)', 'Al']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.0|0.6990000000000001|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|ilD2tPcaAhJzC6AO8qRL-UVit25-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.75|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|ilUwd0Wm2JwCyQsAU_sqHs2XzdIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.1|220.0|0.636|15.4|['SLG', 'FTO', 'PCBM-60-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|ilVydDvDrnBqibP25zt3u7UqCvLp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|||||16.1|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8se00233a|ilY6N5cJbfaX6H7hcZw9wNMZaH-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br45C92Cs8H474I255N170Pb100|Cs8Pb100C92N170H474I255Br45|Cs0.08FA0.78MA0.14PbBr0.45I2.55||1.01|229.5|0.685|15.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoTh-TTPA', 'Au']|['CoTh-TTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00437h|il_pPspXmTFPvbKWNmQn7e1EoF_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoTh-TTPA', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.07|56.5|0.4529999999999999|2.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']|['NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ejic.201900562|ilikVjevPvIpbaBWXhC02hfdyev3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-c', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|48.0|0.72|2.8|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1039/c5ee01169h|ilnOc_EOVQSsDrvHQJD1bzxVmpl_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|ilot8WedXSCfCCyM365G1R0ToT3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5900001695435149||||17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.057|ilr1hqyjiKdWnk_I6fxD0aNq_uMd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|175.0|0.72|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta04132b|iltYPKtQgyuFgG0Xq-gpDWcbD2zR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|179.0|0.593|9.5|['SLG', 'FTO', 'TiO2-c', 'CO2CO3', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp', 'Cs2CO2']|bulk|https://doi.org/10.1002/pssr.201409320|imIYPEeUIm9B-GmWEK7FU722IfeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CO2CO3', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|212.0|0.7859999999999999|16.75|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201901284|imSfUD-UCoVizi8oWaNm3ngmLwmJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|176.0|0.43|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra21250b|imTH1RWwUeCQ2o8f4R8_rTCnHqm9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.08|231.0|0.79|18.1|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|imYGkkRzpFJXEbtah4W8EYp7Cfa_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|235.0|0.778|20.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|imeY4UAPGedV9GHe8rEzMOgozPxq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|89.0|0.66|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|imm1TewRbg9uNn8sy3OabPXn0185|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||17.3|['SLG', 'FTO', 'TiO2-nw', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'TiO2-nw']|bulk|https://doi.org/10.1039/c8nr06899b|immK0HDYG_RyyhUe75MyWzhw-S71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|162.0|0.494|8.09|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['LiMgNiO']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms15330|imsRdzdQ7QduJSKzIGVap1owvzdc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.07|228.0|0.72|17.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|imzBuzw6mQJ0fIebEv2o0F8-ivmW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.7|0.72|14.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|inDRDCRE8y9DvVDcavapDcCTSQgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.07|88.3|0.545|5.16|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.049|inQnEBtCQYg6zVJp0uwm3HZZpU8v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.774|192.88|0.604|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15218|inYlt2VnaUxcR8JeCDEGBy13jlaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|166.66|0.6809999999999999|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BI25', 'Au']|['BI25']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.008|injZvcaM71R8wOTp2vRV5e5r3frZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BI25', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|230.0|0.72|17.88|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201800475|ins3CAb6mrpctskZy7l_BhmgvaoY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|89.3|0.6629999999999999|5.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']|['DEPT-SC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.05.004|io85PUJKJpuS8ZlCxYeq6bXk8rla|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DEPT-SC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.0|0.7|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0957-4484/27/2/024004|io8JHMqszBhR9mmc8cP4wGOokxxT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|170.0|0.7759999999999999|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.solmat.2019.110316|ioZJpqfKy2as-Ub1SmYtn-MsSMbK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.777|73.89999999999999|0.55|3.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Titanylphthalocyanine', 'Au']|['Titanylphthalocyanine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.020|iocptgKF-YarHLGH8VdKoNMjAmfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Titanylphthalocyanine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|ionNSMzSDZdtnN3pmojYW055m6s2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|106.6|0.71|6.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|iopj1EejsXoXjdLkS2VQnRXpU8r_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br600C1900Cs100H9823I5400N3477Pb2000|Cs100Pb2000C1900N3477H9823I5400Br600|Cs0.05FA0.7885MA0.1615PbBr0.3I2.7|1.5500001652782691|0.92|195.0|0.68|9.8|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|iorK-vgeQEwUUJHz1BI4API7mx35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.3I2.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.927|112.0|0.613|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|iouNUlXWSn7Sz09M-AmkhfgUti1V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.0|181.9|0.62|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|iowmclrYIGrS-Oh48iG9L4UgXcvj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|189.7|0.728|12.42|['PET', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['CzPAF-TPA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|ip3cLqR7ljP8t_c7iwVfGW_F4PRh|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CzPAF-TPA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|200.0|0.58|8.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|ip4w9__TrkNCphaRKLmxQxsA2hpx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|69.6|0.3|1.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|ip8EHk6plVER-Dko5j5Rg9BMEJGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|212.0|0.434|9.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2015.1|ipBA5N5w3_bP2cWR7D9ok6EOmm8U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.85|142.0|0.61|7.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1116/1.5029253|ipFFW9oS8DBjG684GHF1czQLII5n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|134.5|0.65|8.85|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2019.03.002|ipK5113cU1lKVab7ZIGKagrgQ9zW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|224.4|0.7709999999999999|16.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'DMEC-70', 'LiF', 'Al']|['PEDOT:PSS']|['DMEC-70', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b10668|ipNls5SrVu5Oy5jaqwBn64fJ392a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'DMEC-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.6300001738087604|0.95|145.0|0.65|9.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08848b|ipTU1wS06LApS-Q52S2B31UPApbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CsI3Pb|CsPbI3|CsPbI3||0.96|179.0|0.615|11.0|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|ipXWi-Zj14W3mgjNqIPudxMNqOaN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|165.10000000000002|0.6629999999999999|8.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.116114|ipg-kxVz6YENWFJQCCf0BiyBvJkH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.06|222.8|0.71|16.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|iq3sZcGh1BwGijJiBKBXwMlNp9tT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||1.055|192.3|0.61|12.29|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V873', 'Au']|['V873']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600762|iq48IJ-nBsgCWJnqlAmGr94wkYW0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V873', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|148.3|0.706|10.1|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|iq9DPODBNdr5pZH-s67ufBCUmMJl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.09|232.0|0.728|18.4|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|iqDeAEADfa-RF-yEN3RR9AzHheVU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.61|10.9|['SLG', 'TCO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.10.090|iqDz2NR3mtkWiqIGjaCWViA_nl_l|a perovskite solar cell with the following device stack: ['SLG', 'TCO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|177.7|0.69|12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|iqr4SYu5cNzHTWFUXXLWYjeq8i6b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.759|74.9|0.54|3.07|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|ir8cSD657RCeyBLN4XikBcN_1UN9|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|40.6|0.345|1.91|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'P3HT', 'Pt']|['P3HT']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.081|irRKoi6m_RYo-gFNwMafFleCg8Jm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'P3HT', 'Pt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.0|0.68|14.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh 1', 'Au']|['CDTh 1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00119g|irbTseUnJ_HIBha05K5DJ1Cl1ttK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CDTh 1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.1|0.61|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.08.028|iriwmDW0FVJEKjSuJYU_KJCU7je_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|57.6|0.591|2.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|irrhuBG4qXCIRvQnGBXWVgnFmYWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.6|0.6729999999999999|13.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08827b|irtsi_hQLGDRfqHlcLO20hb3s2-m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.914|206.1|0.52|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|irz5tB2lE-GM00_pE_tQSWI-N2W_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.9|199.2|0.7440000000000001|13.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|is0042cQhjQ69gDhRuiUzcP2CUUB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.9|0.535|11.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5ta08565a|isAAigvfiG7MvzjBwL5vvsNNLw2-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.04|213.0|0.672|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06673|isEtB9-9be0ACSbYcz8V7iln4Kzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|117.8|0.89|11.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst9030151|isUX8DT_HQTTbEUeKnQDQYidEIPQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|204.9|0.723|14.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDI-Br', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PDI-Br']|bulk|https://doi.org/10.1021/acsaem.9b00164|isX7JDacbEFCfcgH-ocWqrzPPXiB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDI-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|197.2|0.6759999999999999|12.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60-DPM-OE']|bulk|https://doi.org/10.1088/1361-6528/aac293|isbEK97QjANiatLyOpkRVuLZOxq_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60-DPM-OE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|49.5|0.69|4.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|iseYj3DsGfj-qpp16upicCbZMu0_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.082|190.2|0.649|13.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|istaoNb6AMUfXwKwqkPVkNKLPscz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|210.2|0.54|9.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5017069|isu1OQHN-6Wsxx0i1qMLQ9FOmCLY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.195|205.4|0.755|18.53|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17141|iszjwzqbRrEkQZOrbGJ75nnA8TSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|197.0|0.7170000000000001|15.25|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|it4AtzELpAfynwlTNyzzlXSqA2Ha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|195.7|0.5|8.47|['SLG', 'FTO', 'TiO2-c', '2-OMe-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', '2-OMe-SAM']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.189|it6UTsXDe37ElnbpeXcvIQiTnLtX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '2-OMe-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.115|224.4|0.75|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta09028a|it7C8Or8TcC8YT6H28cy0JpV4Hg4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br54C95Cs5H542I246N123Pb100|Cs5Pb100C95N123H542I246Br54|Cs0.05FA0.28MA0.67PbBr0.54I2.46||1.0|184.7|0.7929999999999999|14.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|itBGc1E3HS28r1ftQi0MbkI0p5v6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.46|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|itHM0eriOGvfUcdjz3t7RyNY5kF0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5||0.91|166.0|0.66|9.9|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201800591|itX_iIcNoUQMfVOmDlYQ-tyFZnjt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.87|161.0|0.526|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504175x|itjRI8VYy_tmvTgBuxWNcuiImGj8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|140.9|0.67|7.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/am506785k|itpf0YpTlg21VPHpMOj9Enmx0C5Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.0|0.78|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|ituFoCIXRLxlAMH8waz7yuG83q7f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.8|0.723|16.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00441|iuD0UqKkJok8J5hG9pHds_hlXaIh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|iuUr0Il_SXaaxLtfAlo8HYB6jZC6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2700002420526912|1.1|60.6|0.4529999999999999|3.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C8TC02754D|iunDPJcWChk5MM3I_Jvc7DoCU4OH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25|1.6100001716761378|1.07|194.0|0.705|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201905487|iuqPRTk2kQ3h20w88E1EAl_BXLap|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.159|237.0|0.75|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|iurulKXTZ5X8H3uVK47sVD6t4u6z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||1.0|180.0|0.7120000000000001|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3866/PKU.WHXB201607272|iuwncrbngWA7Ls3uCxmKRlzn2v8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|192.0|0.731|14.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|iv0SrA6khvNhg9N9mkZlW5q-sep_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.959|207.3|0.665|13.21|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|iv2MIq8Gvq9N0z_fujndsE1PpSr_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|163.0|0.55|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|ivEJHV8LUXRS9JB2Xp0PHpN6C0Rm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|151.0|0.62|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|ivNHLJsO49N1GMDb8Kyu3xj2Cqbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.09|230.9|0.759|18.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|ivPd-dY2Py79_rpBC1ZOBkP_JBUK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.28|153.6|0.807|15.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909972|ivZG5c7eestPsBpuSKnnl_4MvXV1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C53F3H202I65N25Pb20|Pb20C53N25H202I65F3|(F3EA)0.2BA1.8MA3Pb4I13|1.640000174875072|0.95|125.0|0.784|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|ivZgvIRZW3tPgy5P1Ue5miPKa5eb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F3EA)0.2BA1.8MA3Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.94|209.0|0.625|12.38|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.072|ivbsAS7pXm60m-0DRJUpI7KbKRNM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|ivclQMtl7ANzk3zMv-uRCOyHgjbt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.0|0.505|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|ivepKKh2ykEa2MamCW0Mjc54YgST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|215.1|0.546|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|ivlrSdHfXhxSkGc3fZ0EPQR3ZRHH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2700001354215498|0.65|278.29999999999995|0.614|11.03|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b03662|ivp8HBeLM32in-ULrGO7HpRZRIeL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|191.0|0.5329999999999999|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-43987-w|ivsUQj0N0ifRZFtjVy0Ak_Wtfac8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|210.7|0.7020000000000001|15.81|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014001|ivye3fUbYw9ijtvq2qfUxesewbyi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.6|9.6|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01598|iw8ScqWJ9h_nJv4u5bmUlAejTdFq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.02|200.1|0.6|12.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OMFPh', 'Au']|['CuPcNO2-OMFPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.045|iwEdnBNlkY0UlhBxFpu8OXskh7me|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPcNO2-OMFPh', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|178.29999999999998|0.54|7.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|iwUrIHXFVVI8fb7aiOMUxcJFNbM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CCsH5I6N2Pb2|CsPb2CN2H5I6|Cs0.5FA0.5PbI3|1.640000174875072|1.14|175.0|0.7|15.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|iwW6n7XHi1TyWXqRivXIPvSQEYmL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.5FA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|175.79999999999998|0.465|7.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|iwWLyOPo7svUBNzxzlWySjED7TJl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|218.9|0.76|17.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201804217|iwX1HBiY_uWr3WQl1lGfua5tFaZr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|1.15|203.8|0.762|17.87|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00856|iwdWv2JYhFavvV8-1ldHesHawfRG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -Br20C95Cs5H486I280N179Pb100|Cs5Pb100C95N179H486I280Br20|Cs0.05FA0.84MA0.11PbBr0.2I2.8||1.16|231.8|0.7929999999999999|21.31|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c8ta04453h|iwlJoA7WgNWg8_wu6W81oQHtfjH3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|215.1|0.73|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0tc02078h|iwmJgCIasVpR4He1xyA7iq4_JAmc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|227.0|0.78|19.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|ix-dQk2kh0xpzofRJLC4wDvLeibS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|198.0|0.512|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/celc.201900532|ixDIUOPR-ZmxuZ9jaqtDQI0qDlbk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.067|180.0|0.68|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/C5CC01103E|ixJ3AtBqt4uqiiAKfWTTimsAivTV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|117.0|0.43|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|ixJp56vjgMDgNakuFw2VZ77-YoZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|10.9|0.28|0.32|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ra10603g|ixKFnyGT1UktG5JBl5alB2WPJdp-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.088|232.5|0.7509999999999999|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']|['Ome-TPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|ixLt3sN7LESpCrXyq-CpbHrBS9ly|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.2|0.72|14.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|ixS7IDEoxGEVR13Ib7GqyWdiXkx6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|ixeHleTlq8QXtQd-0RpswACXNkvK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.34|54.0|0.51|1.0|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c4ta05819d|ixjmxApp6MmTLxwiTXMeDm__GdIx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.943|207.0|0.716|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9se01205b|ixkK9BDCQfKU5XA--b7qQOokNgBV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|201.0|0.372|6.68|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4ta06416j|ixrL6oWCwK7nhJyMqpLUP-4RAV0s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2CH6I9N|CBi2NH6I9|MABi2I9||0.64|4.0|0.81|0.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s40580-017-0120-3|ixsItjyQZptb0kO66H9r9YXn3AFu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABi2I9. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|151.0|0.81|13.5|['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.081|iy6-4eG0sJS98AvSV4v1A1br3ZjA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|193.4|0.45|7.33|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201800669|iyGAyVAjZeGcQD8hGk_mrhx2QHaA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|60.0|0.406|1.9|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO']|bulk|https://doi.org/10.1002/cphc.201301215|iyN-vxB5TNjyzsU8OcYyup6h31AM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|193.5|0.624|12.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-018-2190-y|iyWdOwI0VLo9_5EcWUzBJ9a3U3h6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|162.3|0.614|9.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.081|iy_GpODN2CswhxKdh_v65Y9c_PnX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.11|217.6|0.78|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800715|iyaMTB7meGjQc5O6LPt2jdBQQkJM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.9|0.78|19.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60-PCP', 'Ag']|['NiO-c']|['PCBM-60-PCP']|bulk|https://doi.org/10.1039/c8ta05636f|iyc2cvq5a842FCKv-Sd-QPgipDy0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60-PCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C14Cs6H70I57N28Pb20|Cs6Pb20C14N28H70I57Br3|Cs0.3FA0.7PbBr0.15I2.85|1.6200001727424491|1.05|216.2|0.73|16.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|iygOtD01asHI_vxgBpU9NmvvTs3D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|170.0|0.45|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|iygenx5xQD7zTXxQPdAa2qGtcc5S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.0|70.0|0.22|1.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|iyhZMETQRtfqaD7Ye5U8Bx6-at6s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C2H12I6N3Pb2|Pb2C2N3H12I6|GU0.25MA0.75PbI3||1.09|206.0|0.77|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|iz0unWMXVLmRiKKVZSNKaARQN_sr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.6|0.73|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900235|iz19M0wohf0OaX6P5sExAqFDWsOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.0|0.74|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|izI_7cKdlzDiFC1P8prfwab5T4yz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.25|146.0|0.72|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201814024|izOpz_Asdf-n62MxtMWbs2IRE931|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.5|0.691|15.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']|['YKP03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|izQzPN81curct9az1WHV1_YNepDJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YKP03', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||1.24|53.5|0.474|3.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|izWCqKBP0R1c0NECIFjat8y1Dh8Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.773|187.97|0.597|8.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||izbdaI2I8IGcScrZCAzaSPC3zuIJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|226.6|0.785|20.47|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|izbfbaNBejQfw09bP2iz1mHZMq_3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.5500001652782691|0.996|231.1|0.774|17.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01978|izcx9GY4S3fkMieMwEeYPjMWLGNt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.2|0.59|9.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cr', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04519|iznQG71fk3QkHHVE_wpFos-cKVvM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cr', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6CH5IN2Pb3|Pb3CN2H5IBr6|FAPb3Br6I||0.06|17.0|0.27|0.03|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0120-3|izoQzEbCotEnQTZiYV08QVJ_eQMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb3Br6I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.0|0.682|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Graphene', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr01186e|izv0QeHephr7Up_OOMV6DevBjN6F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Graphene', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072|1.14|169.3|0.652|12.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|j-15eGp3JwE2m9eVaLOJOMS-w3qx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|233.4|0.701|17.41|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1002/adfm.201808667|j-1fuXhHhdFj3USMhqJOnTyZWB2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|194.4|0.6|9.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|j-2kJy-6Su9dXHb4acjL0RUlhqfr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb99Sn|Cs17Pb99SnC83N166H415I300|Cs0.17FA0.83Pb0.99Sn0.01I3|1.520000162079335|0.8|135.0|0.657|6.8|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|j-IrNA1q0xQ6O8cmURSH5dmAp4ji|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.99Sn0.01I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|216.5|0.59|12.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|j-LiyaFFfGCa-CN_hrU4PDsurAVE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|172.10000000000002|0.544|9.73|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c7ta03150e|j-Lv34TnHXC5gGqsbs6ChCi4tTP0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.0|0.516|8.8|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ra00042a|j-P4LeljIixO2vZ7wLSg5NzIxacz|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.915|164.7|0.473|7.12|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|j-_M_nTdu36TTyeCcptbQqb_u0gg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.47|84.0|0.618|2.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800136|j-ddrDyjjosKo-iVo54-HHUcCxMU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|190.5|0.59|11.91|['SLG', 'FTO', 'NiCoO4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9tc00902g|j-gK5ukukv2HQ_7fU_xS95XSPa3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiCoO4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|92.0|0.5770000000000001|4.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEL', 'PH 1000']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.002|j-m9lMWJv7gEZWqBoHWNB9VwHfbh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEL', 'PH 1000']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.05|210.4|0.68|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|j-moT5KDJRyUnaZKY4dlMjx0ih6n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.0|192.9|0.43|8.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-F', 'Au']|['Spiro-MeOTAD-F']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|j-uxzoAamgK_fmbCxDbLFrl2cwUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-F', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|139.60000000000002|0.716|10.65|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/solr.201900091|j01ovsyb_wR2lx9Rfh3mKbCsTAy9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|219.0|0.62|13.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04465d|j02tavaI3ebm3808XJm6TJZjt1T2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br475C4664Cs332H24655I4525N7994Pb5000|Cs332Pb5000C4664N7994H24655I4525Br475|Cs0.0664FA0.666MA0.2668PbBr0.095I0.905|1.6300001738087604|1.085|223.7|0.804|19.52|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|j0EOpPvJoo8H9XOVYMCDzx2GQlMk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.997|208.88|0.715|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b06633|j0KDcjx9Fpnfc361nby6UBw76jpT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|214.7|0.64|11.59|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|j0L1spIqNIPXAl_DnhMwbEmyGxU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|106.6|0.54|2.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.019|j0NCS6woXxZ7i5IGcxWmrytgxcUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|115.0|0.59|6.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|j0NM33ErTPi_bbRO2JgRYbElQLKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H12I4N2Pb|PbC2N2H12I4|MA2PbI4|1.5600001663445808|1.08|198.0|0.7390000000000001|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|j0QBUwYBVIOYT3FCld_4B2j7BlG3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PbI4. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|219.4|0.71|15.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aaebf1|j0V-mQEWWMfQxvGhgI-d7Yz2avTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|228.7|0.745|19.1|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.9b09238|j0ZB_Icw32dZbIO1DNOqPiCj1db-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100Cs100I200LaPb99|Cs100LaPb99I200Br100|CsLa0.01Pb0.99BrI2||0.99|104.7|0.518|5.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|j0e8N18TWIO68uJy4LS2Pdof230r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsLa0.01Pb0.99BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|132.4|0.69|7.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|j0lKbF-WQNMFsZ-Gl_1EjmcJU5tk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|205.3|0.75|16.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01535|j0qymZnp4d6yPttoW6xnu1cTc-Tg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|235.3|0.78|19.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|j0sh5Fa1Chih9Yz9sCPXaA5KHnBT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|219.0|0.76|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|j0wb0KcGV8jfRfgPYWjszPp8QDd0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.137|202.0|0.721|16.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00801|j0zemnGyia6qsIGWVh-XQ2YC5P8C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||0.97|207.0|0.6|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPs-TIPS', 'Carbon']|['CuPs-TIPS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04569g|j1-TZI6hirDYrdXg3xmAQXZAm_7h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPs-TIPS', 'Carbon']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|197.0|0.51|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl500544c|j1GDFCNO3YkH4_WJBSwoPnHC543a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|194.2|0.74|14.78|['SLG', 'ITO', 'Porphyrin', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Porphyrin']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01106-5|j1NiZ1GRZ7C8WEoLs9h0Be5hOPCK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Porphyrin', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.88|200.4|0.58|10.27|['SLG', 'ITO', 'TPA-NADT-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TPA-NADT-TPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01956h|j1W093Kl0eiyv2EPSUDdc331fBFy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPA-NADT-TPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|175.79999999999998|0.754|12.89|['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|j1hzSm7h7kmbjDC9wdu1_A5MMlB4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.944|222.4|0.52|10.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|j1rB_iEUOyFhbCpD18gDorbBd52Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C103H603I300N103Pb100|Pb100C103N103H603I300|(Ace)0.03MA0.97PbI3||1.134|226.7|0.75|19.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|j1vzDKyYQqsauQqrsBNtQsKvMY9Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (Ace)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.848|58.4|0.69|3.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc00816k|j1wRTd2w7TgepH-3dDSZ62TtTAFX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.06|212.3|0.76|17.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Au']|['JY5']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201803025|j1xN2_3sMvjgTaTzsxkWCpxxVdXM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|j22-uk6xZsIGYxruTww_5AZqGD4X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8200001940686776|0.421|5.1|0.512|0.11|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2; KI; Propylene carbonate; Polyethylene glycol', 'Pt', 'FTO']|['I2; KI; Propylene carbonate; Polyethylene glycol']|['TiO2-mp']|not processed|https://doi.org/10.1016/j.electacta.2018.06.078|j2CAulIhjKhV1FTCMeQubo_uujWu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2; KI; Propylene carbonate; Polyethylene glycol', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|128.4|0.46|3.66|['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3-np', 'Cs2CO3', 'PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2019.05.030|j2DQ9YyJSxfHJuCfkzZekWnSP9eg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3300001418194185|0.71|245.0|0.7|12.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|j2HNwDmSDfT4OGToYJy-oyxgtNxM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|207.3|0.74|13.92|['SLG', 'ITO', 'TPAC0M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['TPAC0M']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02440a|j2K_Z5Ji0Q0NiZVlCGDCo-sX6XYA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPAC0M', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.61|1.3|0.55|0.046|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsami.7b14735|j2LmqY7o4aO0CUdh_bqY9R30DPNX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -C180H511I260N109Pb80|Pb80C180N109H511I260|(3AMP)FA0.45MA2.55Pb4I13||1.09|115.6|0.737|9.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|j2WAcdcaorKNlEvI3Tb_YoiSfHjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.45MA2.55Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.4|0.7120000000000001|17.16|['SLG', 'ITO', 'XSln847', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['XSln847']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.11.055|j2acWatAc1aknL3UVPy-lfbaqFvE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'XSln847', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|133.6|0.39|3.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|j2iBOTnsc2cn-0X9hUQriB6oj9vJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.899|163.0|0.7|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 2', 'Au']|['2,2′-[(4,5-Bis(1-octylnonyl)-dithieno[2,3-d:2′3′-d]thieno[3,2-b:4,5-b′]dipyrrole-2,7-diyl)bis(thien-5,5′-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03865k|j2ydxLnSn-jI8RHOIQyp7gUmV15K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|232.1|0.6729999999999999|16.0|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|j3Di0fIIFhFK8ipWG536K_Wg6D6V|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|j3Du5ZqW_Vc54GjwYFEOYFNxTJwb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.45|115.0|0.474|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|j3M1EZwnAWCb0DO0JorZ-JGuK8O1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|215.0|0.652|13.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTZ-TPA', 'Au']|['PTZ-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10677g|j3Pw1-AOdefTIhew299LgyeEFOq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PTZ-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C90Cs10H465I254N165Pb100|Cs10Pb100C90N165H465I254Br46|Cs0.1FA0.75MA0.15PbBr0.46I2.54||1.06|220.2|0.71|16.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C9TC04264D|j3Qtb7I-3qe9LsyXsOoGNJ2XP9J6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.46I2.54. -Br4C98Cs2H551I296N135Pb100|Cs2Pb100C98N135H551I296Br4|Cs0.02FA0.37MA0.61PbBr0.04I2.96||0.98|184.7|0.5329999999999999|9.64|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']|['PEDOT:PSS']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000262|j3eujtkPZ295o3of2CrvMaYwNiFo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.37MA0.61PbBr0.04I2.96. -Br45C96Cs4H494I255N178Pb100|Cs4Pb100C96N178H494I255Br45|Cs0.04FA0.82MA0.14PbBr0.45I2.55||1.12|223.9|0.792|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']|['PBDB-T', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201706126|j3qnTjmfcVMNDUjDA8pdpt3Pi-Af|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.45I2.55. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.0|222.7|0.7020000000000001|15.61|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|j3r3iWLjmeRCz9Bbwcaq4RrPPCCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.082|216.2|0.71|16.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|j3yctYqpVSoddJLtivXEH3-JGkP-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|187.7|0.7|14.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5109699|j4-8TM5LTjMKlsfTQXNt6MImuE_c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.065|197.2|0.754|15.83|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']|['P3CT']|['B2F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7tc03368k|j49wl3_lNlhqusFk2oi856Hs9GMP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'B2F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.98|160.0|0.6829999999999999|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1039/c8ta06976j|j4GCw4WB8k1xOGNRjWuPyEf0xXLT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.116|194.1|0.622|13.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|j4IiGfem1LQS_csz7q2fj20vKxsD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|248.5|0.74|17.46|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBPy', 'BCP', 'Ag']|['NiO']|['PC61BPy', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b09018|j4OQqcYh4ZCrnpHNLvuzAWME14Ju|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBPy', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|205.0|0.6559999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201602736|j4On4OZ2ubrHK2VLkVtYfkJYpKSe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|237.1|0.6920000000000001|17.21|['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.08.083|j4V-mRdDmGd0E5ljOfTN4wnh0ibS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|0.624|126.0|0.203|1.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|j4ZlL0IAyMKI1L7Dzym5BRmjTUNk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|146.4|0.295|3.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Br-PDI', 'Ag']|['PEDOT:PSS']|['Br-PDI']|bulk|https://doi.org/10.1039/c7ta02617j|j4tflaQWv4XyTyzBHzBOZFhkluM_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Br-PDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.745|128.27|0.637|6.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|j4zM_p8q5shwb_hnak1pKPBf3vG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|j5BJl6gGhBJBJduk7XHlfXCaEmFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.5|0.77|18.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|j5FyE6LO03n4WVEwx0rBIcK1IFkl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.004|217.3|0.75|16.26|['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']|['MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201800476|j5IaWSHM86VLTcLQ1426Xg8ARM6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MTDATA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|147.4|0.628|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.07.041|j5MyjgoQMl3gP43j9dnvOhMvbK6K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|182.5|0.723|11.61|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PCBM-60', 'Al']|['NiCo2O4']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5079954|j5PzmabYqqDSwMmdYk-aAcFAJei3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.97|233.5|0.63|14.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsnano.7b06413|j5UlBaF_LhALcpnsGfB0vBxkwV7S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|197.4|0.688|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta10040b|j5kAMtzcae5vZc0Ni5yKmU3u3pfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.05|210.0|0.74|16.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|j64vMPjmbKjMsBts70uSLh3oKkyM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.0|0.642|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/pip.3205|j6CXiOfnQwSAMUBd78c0-ysLUc9S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|j6EAmFzeXvU7iQ0Q1ZrQjGPWmYQT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|244.8|0.77|20.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr07377a|j6SblBBGrpfYv4tSZuwdH-Za_NBu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|208.9|0.757|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta07671h|j6Y8Ok84m5nI0Y27lZlvixaC_I_8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.6|0.76|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06735b|j6a0P7u8Pln0eju1qhCCOrtJv0tG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.0|0.52|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07496|j6cVW8_97K7yMFTDV7wCbctq6gZJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|193.6|0.76|14.3|['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['ZnO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|j6tUq85HmqkofjH_KmT75Pe9kkGA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.71|59.0|0.632|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AgAu-mp']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11720h|j7-fk3ToaFVGNcQqZoFouzxPzwsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AgAu-mp']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3|1.5600001663445808|0.96|207.0|0.684|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|j7CptNsKHYrWojZXxLKRXieMMoiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|206.2|0.75|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|j7DYXqhqY9Wz0rD_lGtRrZ1K1qcd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|146.0|0.56|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-06245-5|j7E-i4O2v4XdxMvJL7bYjdBWu1lS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.109|220.0|0.745|18.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701757|j7IJ4NtDlzv9KZzmDbavcmNzTUQo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C47Cs3H243I141N86Pb50|Cs3Pb50C47N86H243I141Br9|Cs0.06FA0.78MA0.16PbBr0.18I2.82||||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|j7MMwbaVsx4MilJSWzGfzBMx10DI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.18I2.82. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|173.4|0.71|11.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|j7OZeNN8qKb9a9AsXnbppTrosuv8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|197.0|0.69|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|j7QwDmRp4F69pXo3CejE1CI21ogq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.526|208.8|0.424|4.66|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1021/acs.jpcc.5b03276|j7Sb1MZSCkTHMULdCAEoyB_xMzWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|156.8|0.57|6.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|j7eW8SkEzs9v0fPA_9NTGj0TjwPH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.05|235.0|0.763|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b00356|j7m5FHdIe5OQcotdk_3NAQa7l-LR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|221.0|0.83|17.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate11', 'Al']|['PEDOT:PSS']|['PCBM-derivative11']|bulk|https://doi.org/10.1039/c8nj03067g|j7nn4xcr3SmqswoeC0BHu-CGr4EC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate11', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|206.8|0.62|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|j7sH9IoSR-ZOq09vsQaproREh1hg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|180.0|0.72|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr03610k|j7sP081LOXJIOdXkpJnT-fmsebvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.96|208.0|0.725|14.5|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-DiDPA', 'MoO3', 'Ag']|['IDF-DiDPA', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|j7vJBkLJ41TD5-fun7Xx_UN_cA7k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-DiDPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.1|230.3|0.773|19.58|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02112|j7w1rrefjmyJ21g7RKZHgYsu8llk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|182.2|0.58|9.09|['PEN', 'ITO', 'MC8-9-NPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['MC8-9-NPC']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.005|j7w4rlkv5RxNiNzvkBYLR-6jo5bD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'MC8-9-NPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|171.0|0.67|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.05.004|j82ImUY6keMJw4cBemjyOOCY5F7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|201.4|0.75|13.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']|['PEDOT:PSS']|['C60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/adfm.201806740|j841APvohUAo5NzPdKUZQNsqnzBj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamin 101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.044|195.9|0.773|15.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|j8ClZBv90saEodlN89CtFctyyyUK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CCsH5IN2Pb|CsPbCN2H5IBr3|CsFAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|j8FK4M2H5XQLg3lOxpn0yjMxGCxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsFAPbBr3I. -C64H312I184N121Pb61|Pb61C64N121H312I184|BAFA60Pb61I184||1.05|238.0|0.727|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|j8GMgBH-SsGe0CH2Sq49887W5KER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAFA60Pb61I184. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.2|0.7609999999999999|17.4|['SLG', 'ITO', 'C60', 'Perovskite', 'F23', 'Au']|['F23']|['C60']|bulk|https://doi.org/10.1016/j.cej.2019.123976|j8YS6XtGBBTryO9AAXv0kvmTIZCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'F23', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.33|67.4|0.607|5.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|j8iEjmgvTnIxQ7h2ir6FUpYjstfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|184.0|0.61|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|j8ln4T_65ipYwnlr-NpOqYlRZIFp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.8|226.4|0.496|8.98|['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO-c', 'ZnO-nw']|bulk|https://doi.org/10.7567/JJAP.57.06KB03|j8mSK6sU56fprq62K5N12LY6ADt3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.05|235.5|0.6729999999999999|16.64|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|j8pcd2GchsW7AcK0ihKFvS9KI6cQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.117|224.5|0.7|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.047|j8pnbCtwsi7WpEN2eEbedJ-atYPK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55||1.13|247.8|0.79|22.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ee00453j|j90jjfxo9TWU18ACQi2DFp73JxaE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.75|245.5|0.653|11.94||['PTAA']|['TiO2']|bulk|https://doi.org/10.1039/d2me00032f|j9BEwJfgGtQOLFRHPM9WYqOBZHIG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.3|0.4679999999999999|9.24|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|j9FAx7SIzQ0vW0Sp22GrXu67CqT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|139.1|0.35|4.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2019/2878060|j9O5AKLqDO3uH2N5rXTNOoZWwL-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.9|0.728|15.98|['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2019.107630|j9PdJz7phb0hsivFHpGDABz8E4zP|a perovskite solar cell with the following device stack: ['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C92Cs5H471I255N173Pb100|Cs5Pb100C92N173H471I255Br45|Cs0.05FA0.81MA0.11PbBr0.45I2.55||1.151|229.4|0.7909999999999999|20.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|j9TY9EbhXg5g5bfDruWxwbODtPTb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.11PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.9|134.0|0.66|7.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4mh00237g|j9ZmN8zF2FXw8o2YhbIY7YgSkiRs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br100Cs100I200La3Pb97|Cs100La3Pb97I200Br100|CsLa0.03Pb0.97BrI2||0.82|91.8|0.332|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|j9bQ0ptOt5rA3AwnjpxvF3EvJ1Lb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsLa0.03Pb0.97BrI2. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2400001322226155|0.75|272.4|0.67|13.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Polystyrene', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801954|j9dNn7zZwlMaOTU1r9WymAwwKaPW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Polystyrene', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|200.0|0.521|9.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|j9qA4oHN0nibHnwT6xLnKq9eEbYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.2|0.53|10.23|['SLG', 'ITO', 'SFX-TPAM', 'Perovskite', 'C60', 'BCP', 'Ag']|['SFX-TPAM']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8nj01082j|j9sLHupTUBnKGeUfHexdeCn0s5fi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SFX-TPAM', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I259N183Pb100|Pb100C100N183H517I259Br51|FA0.83MA0.17PbBr0.51I2.59|1.6000001706098266|1.17|222.0|0.77|19.8|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PDBT-T1', 'WOx', 'Au']|['PDBT-T1', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|jA-d4l6W_SyyC1uAuY-YOSGigPfw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PDBT-T1', 'WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|222.5|0.669|13.45|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|jAEauLfSYX8d0_cgOacynJtM1EVS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|240.0|0.62|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.029|jAHUTkbsRyBdc7KyZ7UqbO5Xz_rz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|43.2|0.45|1.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|jAJnoEYUIIVAviccXVM0UW_drybW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.1|74.1|0.57|4.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|jAPlOektRYG0Fg4cbUCQdNCgX24T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|127.8|0.6940000000000001|8.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|jASQgxKjtbYRatf84LATgPQaRaRC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.0|0.769|18.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|jAVeZqmjBZX6kCBbEQqUwXnBEUjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|129.5|0.488|7.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b02102|jAdk0GWlYkzBnJqYU-Le2WuePYg7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|135.0|0.24|3.1|['SLG', 'ITO', '(RuCp*mes)2', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['(RuCp*mes)2', 'C60']|bulk|https://doi.org/10.1039/c9ta09838k|jAfK6cyzuazqty4_JXa21tgv20Id|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '(RuCp*mes)2', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|132.0|0.59|6.1|['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Ag:CuO-nanofibers', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pc.25527|jAnvNV7aNvTvkLVcKuggO3T-ycug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.1|227.2|0.6409999999999999|16.1|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|jAoHGRRfDH9ZI_zH-O2rRdZsPuOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C19CsH114I42N19Pb20|CsPb20C19N19H114I42Br18|Cs0.05MA0.95PbBr0.9I2.1||1.1|206.7|0.649|14.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201906681|jAxe61BQYT1HndQ9UR-lu24QySZq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.684|101.5|0.5|3.5|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|jB8U6OSxPrk1Fjg6Q13z8WHxxKIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.0|0.759|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.02.026|jB8ZVDKDpajj-buZjx4AjPIod05z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.992|97.7|0.38|3.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s13204-020-01357-3|jBEYbQgSO4Gkp9hR2Y9uTEaIErAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|227.6|0.769|18.55|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['3-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|jBF0etP4rkiqp0TcYa0VqgyA3GIr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.0|0.7759999999999999|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA06718B|jBFqjI_JjQMfytTEv6xfN8coyi4K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.7|0.7090000000000001|14.14|['PET', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']|['P3CT-Na']|['PCBM-60', 'HDAC']|bulk|https://doi.org/10.1016/j.orgel.2017.06.006|jBJ-mqUeM00FQfUMjL6GDlZ1YqrA|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|191.8|0.79|12.27|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|jBQGm0GH4f-G-3MSBDaunottvKe8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C335H1206I333N134Pb100|Pb100C335N134H1206I333|BA0.67MA0.67PbI3.33|1.810000193002366|1.1|89.9|0.5870000000000001|5.81|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acsenergylett.9b00351|jBT8l_7zCehF3LNilhyayI5Ly82W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA0.67MA0.67PbI3.33. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|211.5|0.645|13.81|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|jBa2lFfszjeS4zW09UwNBJd8sM5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|232.2|0.747|18.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.105|jBh7kxoiZfoxZXBsyb6Sl-L9vYxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.94|214.7|0.72|14.64|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|jC5hVQ33HjiEPRkS_5QERgrbeniy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|185.0|0.74|13.05|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|jCF3Qi2L4kMk-04slQOQ1lSuPQTp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|jCPUu-UNxrQQZR003I3CfJpI69eN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|182.0|0.6|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC17|jCTyj4DAVLZPhMhoGnDNfiREuuEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.812|0.36|0.684|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|jCU4yN3gwV2tCtqorNev_viW_ZXJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.5|0.552|8.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10470c|jChThfmuFBV-ZiTYKM5INiOrjOg-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|215.3|0.794|19.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|jCml8rALTXFTbEQ-ZIcyoUpCQ1SJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|42.0|0.56|1.2|['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']|['none']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c4ta05819d|jCos-Cvz7P151t6GEoUl0jELvwEA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|135.0|0.542|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2016.10.058|jCuCCxF-N9r4OIcf6scU9-8akB0z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.925|205.0|0.525|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|jD1I0M2daUKkUMlxWTtk8J0spxmV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|203.5|0.754|16.25|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|jDDxqV7E654kVBs3i6jl83BQrGro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||0.98|228.3|0.43|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc07785e|jDOilAblB3gnVaPIOSK8IujDq2gE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|225.6|0.7190000000000001|18.53|['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NiCl2']|bulk|https://doi.org/10.1021/acsaem.9b01009|jDSbPXlMJxRMtfnfEPXOLpgKqezY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NiCl2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|179.4|0.7979999999999999|15.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2019.01.015|jDTkibDUqTSlmLiiVyBIwuGULVlx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.127|78.0|0.72|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|jDYPNIuFg3cdntYerW6p6leMnY1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|230.2|0.73|17.41|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|jDZLm-4XHY-URSlUKW5WzFFls5hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.55|195.0|0.684|7.27|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|jDaK3lhRNGJb1Bp97dkvyEp67fdg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.5|0.74|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|jDdJ-lEF973xIfbdjq1YVQwUynBK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||0.99|180.0|0.62|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|jDhVWKEBijudiwMuGCW8-xs39oNU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -Br11C20H103I51N37Pb20|Pb20C20N37H103I51Br11|FA0.85MA0.15PbBr0.55I2.55|1.5800001684772036|1.14|230.1|0.691|18.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|jDmbt8_r7pVo0eRCVpqZcXFmJ8JL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.09|204.0|0.52|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep17684|jDtoBqUjI7mnMCxHZCM-4PpDlIX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|219.0|0.78|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|jDvMYfr500W06YdWM7_uqoNelTeJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|205.0|0.68|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|jDwEis9wDNX5UVduIO3bdhtVPjPq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.0|0.813|17.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|jDzzMbJEBUGbPSpsbuqEqrqYFtfi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|131.0|0.61|6.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|jE0YyGGfUfj9RHsU9iIDwXEbcg1J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|163.0|0.51|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2014.08.015|jE6Le6HJex6j80I-YA7Y5Z_EFz5G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|213.6|0.67|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|jEFkiyfRQFEIKZHVI7CHg6QK6oKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|191.14|0.6409999999999999|12.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04662|jENcqRY0y7LU4BPujXleB103zre_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|155.0|0.693|9.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|jEXWNenZ8GgrbbqpYcV9v23vPcNk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I6N4Pb|PbC4N4H24I6|MA4PbI6||0.74|1.7000000000000002|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b01426|jEaaoZ4-LT0dRN8NocL_YJN3rRdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA4PbI6. -Br30C100H517I270N183Pb100|Pb100C100N183H517I270Br30|FA0.83MA0.17PbBr0.3I2.7||1.12|227.1|0.779|19.92|['SLG', 'FTO', 'ZnO-np', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'Graphene']|bulk|https://doi.org/10.1039/c8ta10857a|jEcYh5IYbmbqh4R35crC4bcLIczW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.0|0.7190000000000001|14.2|['Flexible', 'IZO', 'PEIE', 'C60', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'BCP']|bulk|https://doi.org/10.1080/14686996.2019.1633952|jEp_HIfr5CibntoVXuwz21EBpW9z|a perovskite solar cell with the following device stack: ['Flexible', 'IZO', 'PEIE', 'C60', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.06|184.6|0.76|15.01|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|jEzp1ni8_SHsFCwKX3XPKUQ8ks3d|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2C2H11I4N3Pb2|Pb2C2N3H11I4Br2|FA0.5MA0.5PbBrI2|1.751000186711129|1.104|200.36|0.685|15.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|jF5G4158gi9TihpdVB3XSTuPtsU6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|120.8|0.49|3.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|jF63M79XgkPrFOQr9hWJeluzY3pk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.1|0.768|15.67|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18867|jFAfLlKJvCHVEebGMpYfW2R1UiwU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|226.2|0.777|20.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02652a|jFRbl7LqULA0zBsqXaN_yASRgNYC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|233.0|0.787|19.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.05.011|jFSFNjJ34_iea3qn0X0_H8oeCSmC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr600C200H1200N200Pb199|AgPb199C200N200H1200Br600|MAAg0.005Pb0.995Br3|2.300000245251625|1.28|38.4|0.806|3.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|jFinljGmsyRTbzffZTjS3Qs2OINX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.005Pb0.995Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|212.4|0.599|13.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|jFkT2-8r1aorh4oUu6yMxTLpb0WQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|163.2|0.532|7.12|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|jFnY83vxRo7bXz1wwSsAFXkDlADu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|225.0|0.79|20.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|jFzEC6JvcpntAmlwDPpIj-i2W2sH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.2|0.66|12.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.09.020|jG4Q3FzVw65S42VjMoxVamULCBRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.24|133.0|0.295|0.95|['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201400932|jG63Bnrb4nD1q978iQzxO8QEAw8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.127|214.5|0.75|18.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b15710|jGEn1nuh3G97gIbvgmcl-RsZiubx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.5|0.807|16.04|['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']|['MoOx', 'PEDOT:PSS']|['PCBM-60', 'TOPD']|bulk|https://doi.org/10.1039/c7ra07475a|jGF91ykkbEn5AbWoVM3ydeW-QseF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TOPD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.457|220.7|0.602|6.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|jGGrxMJemmjIiFZEpKGqJNBx5xao|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.65|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00582|jGHbdWyuc7d6ZR89wh_mzFWqOxIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.65|0.0|0.58|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01744e|jGLyqtUj_OjI7DHIRgh9E511EcuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|133.0|0.6729999999999999|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2019.104267|jGWvUoTOKqRdr-hKoqGaF5rSiG5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.2|0.764|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152091|jGZ6jxUFUT6eWdVMpiippWHg2BZW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.097|213.5|0.769|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|jGZ_yvlosWEgm62Ou_rG_4ymY-do|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.2|0.75|17.34|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|jGawx5_ryJJgw2jg_es6PTItyJB1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|29.0|0.3|0.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201408713|jGcZ6Tzx9Zd1RaJJToEAIW4BuWdi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.778|197.18|0.591|9.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||jGuqsHAPyx7D_914FxykUjEEEIGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|169.0|0.62|8.26|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.279|jGx0XpjOXBmn1wFDuIAwkVR4XL_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|218.2|0.7170000000000001|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta09080f|jHH_RQ_NFWVqeRFB6eI0rLc1DiHb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.087|233.0|0.76|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800474|jHNGnpWgBfM5r7tbfwR1-sKhP6j9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|135.0|0.6809999999999999|9.6|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|jHSziDmbe39xyAHKm-8g9D2nMEj-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.12|218.6|0.784|19.15|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|jHdusPX5eufyJ7Dx9QzZJmpjrIdh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.0|0.78|18.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.8b00099|jHeKTosYME6bLJv99sDN97zbpyEz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C91Cs9H463I285N174Pb100|Cs9Pb100C91N174H463I285Br15|Cs0.09FA0.83MA0.08PbBr0.15I2.85||1.04|199.0|0.526|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc04026e|jHiTQDZwp2eE6B6PJ-qQXVSsQzlp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.83MA0.08PbBr0.15I2.85. -Br39C90Cs10H463I248N167Pb100|Cs10Pb100C90N167H463I248Br39|Cs0.1FA0.77MA0.13PbBr0.39I2.48||1.115|217.0|0.748|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.003|jHjtucfOoAPJcW_hlVMz7rH5gwuN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.77MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|141.0|0.62|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502694g|jHn2J25b3rDi655uvYnHbIRhcauS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|219.0|0.562|11.4|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|jHsWbOjd0-EHokJUGFdQsZHvlAXP|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.0|0.7|14.9|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201909738|jI4SGpT2VFsEowafwGENFpnTkSm1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|jI5HIZMciZcn3YcwXk3AB7TZS2gi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|198.07|0.7|14.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|jIAxJ9OrIDLtlu07o3srkftO3P5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|172.8|0.49|10.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5086692|jIE0ezpCDv0Jnlbu-lNtHcytF8PR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|182.3|0.58|10.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|jIGavvbkSWE6OI5MDqU85Q7tck-9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.02|204.1|0.7859999999999999|16.49|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|jIOZ8_SGd9Xqw-b6nLlVjbCkcqWI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br9C10H53I21N17Pb10|Pb10C10N17H53I21Br9|FA0.7MA0.3PbBr0.9I2.1|1.710000182339252|0.8|34.0|0.55|1.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|jIW07qphmRR2Ax1divNcz5wdMpVu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|217.6|0.7909999999999999|18.96|['SLG', 'ITO', 'NiO-c', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|jIXMBfwYgo6azibpwHNefvx3dagE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.25|164.5|0.501|2.1|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|jIlapy6h8RntwltzBAwoDG5JyH6u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.85|195.0|0.631|10.45|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF2', 'Au']|['BTF2']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|jIpxgD_9tHKgCLQZgLBZXveh-oJr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C100H510I291N190Pb100|Pb100C100N190H510I291Br3|FA0.9MA0.1PbBr0.03I2.91||0.87|155.6|0.522|7.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.3390/coatings8090314|jIzYP_JTFBdq28QqT1KdVdznvPS5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.3|0.657|11.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|jJ17Qn3PvxqNQaTfDUeOgseSc05c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|169.89999999999998|0.7|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|jJ3ofouvjyR1LUAjAcJVITJ6y7WS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.04|221.0|0.758|17.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201900243|jJASmQssC75S9wisyHwf4FAd142X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5800001684772036|1.04|210.5|0.718|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']|['SM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900011|jJA_gtslVWtXTikJd_Hhbcl3QpyY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|153.8|0.61|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|jJDDIV-L-pbfPeogReEJ1Sr-Z03c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.5760000000000001|53.0|0.324|0.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|jJPiEiUK-BJFpm6UkxHrYcj6XuaN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.12|167.0|0.735|13.72|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|jJRsa2jlJ9z71WemJaMCh7KkfUKz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|163.4|0.644|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.03.005|jJS7pdLm9RjlKDfXGp0rcKNhPo2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.229|138.09|0.647||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||jJVbgmW_ZC_TQcsZg468SXbcP51L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|225.6|0.774|18.2|['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']|['NiO-c', 'FDA']|['PCBM-70']|bulk|https://doi.org/10.1039/c7nr08750k|jJWU8IVHDeABgdesYeXtar04fOMy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.6|0.626|13.9|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|jJdNQorvMfwJlr7nEZeiuAXKZYHv|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.8|0.76|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703007|jJdvK5E2PkdphklmnHkFFvWySfiQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|165.0|0.47|7.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.7b02515|jJgnilg1O6fRifctPkQ2VULD4_NH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.8|0.78|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06766f|jJr0-X9dqAfHLzuMSkHWWptAwf_V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C24H126I61N20O2Pb20|Pb20C24N20H126O2I61|(AVA)0.05MA0.95PbI3||0.85|195.0|0.6509999999999999|10.69|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00158|jK8Xrqjs-bVrKBoVhCoAp7HBvo9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.4|0.72|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|jKEafKbEwKcGLmP_31lVyRjpYWHO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.667|205.0|0.5660000000000001|7.74|['SLG', 'FTO', 'TiO2-c', 'PS:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PS:TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1809-7|jKHPK-QoGw383-P8Ux__PKOfpFdm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PS:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|230.0|0.7|14.01|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b01119|jKIC7lkPLDKJ6Y-IJ0nMOjMspuWs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPbI3. -Br33C100H533I267N167Pb100|Pb100C100N167H533I267Br33|FA0.67MA0.33PbBr0.33I2.67||0.94|134.4|0.649|8.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|jKRDv8FMUcZDJvi6vabHRCJm1rC3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.33I2.67. -Br3CsPb|CsPbBr3|CsPbBr3||0.93|92.5|0.61|5.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite-IO', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703682|jKci2iMAc8ocM3x1GGv5DsFmQwZg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite-IO', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3||0.662|5.8|0.442|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|jL8kb6xI2yWg4EHkINQTmCH-I70f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|191.6|0.7|14.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02822a|jLD1F3QgioFxHdFz27nv7rYf0XX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.162|233.4|0.784|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201903368|jLGhhRcROksj6Zy1cNKcLrVOkomh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.13|214.0|0.72|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|jLRr2TwT37K9P917Z4roOYnWfZ8g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|225.3|0.762|17.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-05583-w|jLZ4xzoHm-ECjIcd7aGqwXD8MZhH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NSn|SnCNH6I3|MASnI3|1.2600001343552385|0.46|214.0|0.427|4.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|jLjPEu-sMcm3BQ8AGM9J0Nt7ikE_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.908|214.0|0.519|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|jLlqNmhV2rPflN3UaKyd8KCdU4fa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|204.6|0.73|17.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00731|jLnZlgx2A2n_4NBgwDhxZ7WuVkZB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.033|155.11|0.474|7.6|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|jLwNAV9xrpAk36IgE-J0bGg8nVSf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.102|51.8|0.392|2.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aabedd|jLzLeBk7AmNO4hpc_tX33bfDnyvV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br100Cs100I200La3Pb97|Cs100La3Pb97I200Br100|CsLa0.03Pb0.97BrI2||0.94|102.7|0.5429999999999999|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|jLzfY5YpM9z69Ykmgsi3wLBBOtL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsLa0.03Pb0.97BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|168.79999999999998|0.71|10.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|jM0m5IcMPmIcGk3EyDDp5nK_-JNq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|205.47|0.675|13.46|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b06847|jM5q1jMZsC2Ci-ekd1mOjhR4cAa9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|214.0|0.67|14.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1007/s11426-016-0289-4|jM8YnGaGVUZWn5tz-sYr3v7sqklG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|193.5|0.6890000000000001|13.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.01.025|jMFF1lxSCJBeojTNUunqNL3B_eNq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|152.79999999999998|0.67|7.39|['SLG', 'ITO', 'Graphene oxide; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS; Graphene oxide']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1109/TNANO.2016.2524689|jMY--K5Ne_-dsWMs1Vtlv82hbt7Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||0.904|129.23|0.51|5.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|jMZAHvBAdeTHwCZyc_BKCfYNvKxv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|166.8|0.7|10.21|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2016.06.044|jMhR7qt8uSJZ1etdgoh73v38kSfk|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H116I51N24Pb20|Pb20C20N24H116I51Br9|FA0.2MA0.8PbBr0.45I2.55||0.93|182.6|0.696|11.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|jMipIKun6OXrSG3CDbCtcnEwcsAN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.45I2.55. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.68|263.0|0.685|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|jMmFfnMy_yhdE-Q6RrvA5SIBYXWX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.92|131.0|0.56|6.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta04973g|jMo0Lz0T6DaweKa7W6i2_FuJsqWs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|223.6|0.616|13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s10854-020-02913-x|jMpOGIADYFkGpJ36eQwz2VxVXmgN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|139.0|0.54|6.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|jMtRZbnmfZfOdo7A-q7zhKUisn11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|169.7|0.71|13.15|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-OMeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/smll.201503361|jMuF9KD85LCW8_qmx51s3jnUPq06|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-OMeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|203.0|0.66|14.2|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|jMuIwbnsA5GP6CuUkR9_xDpTspdR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|0.88|192.8|0.65|11.03|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']|['P3HT']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsaem.9b00856|jN3otCLlaCW1gRVnHWIuZfRvLCs1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.3|0.78|18.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|jN48CXLahsYxoONvZOagw05-S-gu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.0|0.8|16.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b01119|jNEGGCTIPf4ecHyHxzpvbcHFLpte|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -BiFeO3|FeBiO3|BiFeO3||0.49|2.86|0.541|0.0757|['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']|['Graphene']|['none']|bulk|https://doi.org/10.1016/j.optmat.2018.07.071|jNOU_GghhnKgeWXOBbYYemlqgSsX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']? The composition of the perovskite layer is BiFeO3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.9|175.6|0.7|11.08|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1016/j.scriptamat.2019.02.032|jNQnzcaUlDAeHRmO3pzs2BS86I4F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.068|194.17|0.711|14.74|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||jNSaUUAIturRGuuSv5qdc8BA4jrm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CCs3H5I12N2Pb4|Cs3Pb4CN2H5I12|Cs0.75FA0.25PbI3|1.6600001770076949|1.15|143.6|0.68|10.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsnano.8b05555|jNTUG-0EGTW-t51QzfMVrkBtrg6z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.75FA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.74|15.2|0.1689999999999999|0.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|jNX4QoyY6zAKs33JCEeggQjUbe8_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.048|203.5|0.617|13.16|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/cssc.201701864|jNXxvGo8vLwly5d9HDDAm2v4TWMp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|166.0|0.74|11.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|jNYJj3cktbyXTzbfTY2M_p2vA17x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.0|0.55|11.5|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.072|jNtfXgyo7lcb8ESMW5WhMePlLdgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|195.0|0.53|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|jO9yVdw2gTHDfFAJ9N1oDu1C5YMa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.16|225.0|0.69|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|jOCJ9faFHdQYWA7SIxWch8-tgzv_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.2|0.7290000000000001|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|jOFpdyYkfaxKmCNq-1L-blRmlKVy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|226.7|0.62|14.54|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta07828e|jOKW2GkjnO9f73l_wqihnuLn_VgN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|176.70000000000002|0.69|10.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.093|jO_Lhh0IMCH-yO0w0rkm-TeBUvYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|169.89999999999998|0.557|8.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|jOk-aGZhVIdBB0_bRkrR-JggJU52|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|126.4|0.611|6.71|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01843|jOkUnBCIfRj3a8RXJMraVrYM7ezX|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.96|180.0|0.72|13.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|jOnuh__fISksBafhCSxzVP4CpWDA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.05|215.0|0.773|17.6|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']|['IDF-SFXPh', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|jOqyUNtguSAnbebji4wHgvBFz8km|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.07|228.0|0.758|19.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02112|jOsWJnmtn4QIfLPlMIvNVM7Q8XQq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.52|14.8|0.494|0.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|jOscGHEWuYffDSXG7Mm6G4I0hdfh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|129.9|0.28|2.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.cgd.9b00788|jOsodY2GmuQ93GMHBabIZKM3OUGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|jOvApSumVc-ogvO69yKJBb77j6b0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.903|101.0|0.498|4.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssc.201600192|jOybE68loqwXKDgvsYYjlqREgL0p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.0|0.76|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|jOzOs9s432ijE26fdfQAoEoVSxia|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.91|||9.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1063/1.4944044|jP5RGab8soPkMrQr8Uwr6nIMikIi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.8|0.63|12.96|['SLG', 'FTO', 'NiCoO4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9tc00902g|jPB4bIEi4ZO7PowRdhg1qCYFAmam|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiCoO4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|191.0|0.74|13.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c5ee00645g|jPE1Vexz3Y-qlr_4hfkBMFl3AHZ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C59H210I65N25Pb20|Pb20C59N25H210I65|(PEA)0.2BA1.8MA3Pb4I13||1.12|166.0|0.742|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|jPJAS6OQye2ODoKptkt78_BCTEeR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.2BA1.8MA3Pb4I13. -Br3CsPb|CsPbBr3|CsPbBr3||1.394|49.3|0.68|4.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.069|jPKLlbJfLRGg_5WoWviC6d0SiL_4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br2CsISn|CsSnIBr2|CsSnBr2I||0.15|155.8|0.527|1.23|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800525|jPMU7Sf5YjXMWMxA3R8adBqben09|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr2I. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|0.72|104.8|0.35|2.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00820|jPUmv0R1WLbvg8QVMj_55Jl-IAEy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|201.0|0.64|13.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|jPjFNZrfYUyMdCxwHpizjhfXYWwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|174.0|0.64|11.78|['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|jPjgxDNumRdBoCXpKIXL9NcMCbss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|134.60000000000002|0.56|16.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azomethine', 'Au']|['Azomethine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5tc00909j|jPn0Vja_8m1piaHDbhbbTmSAWOI5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azomethine', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.0|0.73|16.67|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|jQ2walD1mwBwGxwwsvaORK5dqeQ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|199.0|0.72|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.185|jQFz9aJHNzhb9g6a8FU--BUhbDyd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.0|0.69|14.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|jQJMNdrxHMkYrlZ0n7aRv0WKpnNI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb90Sn10|Cs17Pb90Sn10C83N166H415I300|Cs0.17FA0.83Pb0.9Sn0.1I3|1.410000150349909|0.77|203.0|0.622|10.2|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|jQLmpzsUEl2qKGKgYrqBrhsP6O-C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.051|199.1|0.642|13.42|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00747|jQPhIa5xt6CAPcvXZpT4z8Nw8VrO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|227.0|0.579|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.161060|jQQFq1-ZGEsbPPyVTydljX9Kcpo_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||15.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|jQX_GJeOClBGXF8mLg29BToWzV1I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|220.4|0.73|17.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|jQafBFT-0mOV9XGu-U4MDwbr7_Qn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|184.0|0.774|14.7|['PEN', 'ITO', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']|['PhNa-1T']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201600746|jQk3u2_mLRCR-W_aNnuKj4Mw8KE1|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PhNa-1T', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.09|85.0|0.79|7.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201403140|jQvvJYyKxYLRlLvD0vWj4JexLMg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|182.4|0.69|13.67|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Ag']|['P3CT-Na']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.06.006|jR-atAY1m8t-Ex4u4-ekCwhH5X5t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.62|13.5|0.324|0.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1016/j.joule.2018.07.018|jRHG3lLCrpwZS7na2hTr25DOjHZq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|179.0|0.55|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta00679e|jRLcNVsHnhrM_Cw4uOlaBnyWtRTb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C21Cs2H108I57N21Pb20S3|Cs2Pb20C21N21H108S3I57|Cs0.10MA0.90Pb(SCN)0.15I2.85||1.052|222.6|0.802|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.034|jROEhLD57UwesCJ7LRCQDhIeW_sr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10MA0.90Pb(SCN)0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|jRQ4rggEP_8M-dJxsXMs5ESk1mNy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|218.8|0.743|16.92|['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-np; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|jRRJ_YmcEJlL74X8ySkoMPyoBiQL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|177.2|0.67|12.54|['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']|['CF-Sp-BTh']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.07.031|jRzQdJVNre3UD-VYWtRaOk8QxIBD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CF-Sp-BTh', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.6|0.823|19.8|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|jS-WOpp8XG9EETeeC4TXyS3DkUyF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.56|153.0|0.366|3.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1246/cl.161060|jS5bMRDZYDudlyaQIxkKNgoY4bc6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.07|199.3|0.7879999999999999|16.89|['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|jSMxheI-R8q2qx6mutZ7YEn-mlYL|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.2|0.75|18.28|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|jSSh2a6SzUQhWG4GZwa-3QS1b7wx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|164.0|0.628|11.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1246/cl.150056|jT1WjDbKSAdrL-JlusDHZ6lsuK5F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.1|0.69|11.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.254|jT4EYUOCD_VQHRvur17pEfiNyydi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.4|0.66|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00210b|jTD4q2SnZtmGcBOQMp5qRqNKN7qa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.39999999999998|0.53|8.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b03687|jTHo9hN_87lecQEazWPt4fSx_j2O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|181.3|0.653|11.95|['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']|['Lignosulfonate; PEDOT:PSS; PDA']|['PCBM-60']|bulk|https://doi.org/10.1039/C7TC05276F|jTOHva6xCcfGKSvGXI5R4AF-RCAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C15H69I30N10Pb10|Pb10C15N10H69I30|HA0.1MA0.9PbI3||0.914|162.0|0.7|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08215g|jThuJWdkKFrQRICgj4hSXRJfEo_2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is HA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|214.1|0.76|16.93|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|jTlYu-yZ-0KtIpnkppgffdh53rjH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H60I22N8Pb7|Pb7C14N8H60I22|BA2MA6Pb7I22||1.04|188.2|0.67|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|jTleKrk3u0eneZqE2bymftyaP535|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA6Pb7I22. -CH6I3NPb|PbCNH6I3|MAPbI3|1.670000178074006|0.32|22.0|0.36|0.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI2.95F0.05', 'FTO', 'SLG']|['CsSnI2.95F0.05']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1149/06104.0361ecst|jU1jjg-a1OdTNTIzMkBG1_CUk4Fw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI2.95F0.05', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|69.0|0.622|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'AgAu-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ra11720h|jU9g8z-icuRzESBUhhJ9m93ONK4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'AgAu-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|234.5|0.753|19.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|jUKvUOY76t6tLYjGUhUqLcmRtnxj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.0|0.73|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|jURWy5fwWcJPpS9qRUcdHwzyZEGf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|54.0|0.64|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|jUTgi67Hqu7SIpLr1RGrt7CKFjnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.09|228.0|0.51|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5065|jUVwDl9tTOZNUm8JtrqzWfqmfFg2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|177.0|0.68|9.8|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1088/1755-1315/108/5/052005|jU_E0OBDY48ugc0avuZfUrXxru-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5579999999999999|91.8|0.374|1.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/jz401527q|jUaJ3QAqSkCAIogPcWJ6rGInFWno|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.18|227.0|0.79|20.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|jUdoSoKcespwAgp3S2iswBmJ-Qau|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.097|221.9|0.752|18.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s12274-018-2263-x|jUf2nov3Sh19W5AvZrkbAEIU5RjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|70.0|0.4639999999999999|3.19|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'PbI2']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|jUnqF92lGE6i-u8JWLvJ_HCf6So5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|200.3|0.71|12.54|['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['CuAlO2', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07957h|jUsr6Kgs96hZIwwBRl4qLh-8eC53|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuAlO2', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.3|0.52|9.45|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|jUteMsViWSOJ-2ul-hjhqiL79D1_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|130.0|0.539|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.12.045|jV0t8UERo1BFr_1nWCFNNliM_2D9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.03|200.2|0.79|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|jV3MIHev3U7uBdlK5fxNXPar1SZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.98|205.8|0.772|15.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.023|jVDu3WliNrgPv5EUb-FHMJ5EE5Yl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.0|0.68|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|jVIWg8Gl5BPbqC-N7G5NQqDP0WL6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.0|0.72|14.6|['SLG', 'ITO', 'N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15147|jVVdcly5b23TY53_VQTBu-M1IWPR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.5|0.7659999999999999|17.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta01800a|jVXX6er2W-FRHojNVB9wsLuMzY8g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.7|0.66|14.93|['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/admi.201600122|jVcxuGY8_gAD60Fi7b-bqe53LQIQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|149.70000000000002|0.342|3.66|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|jVmlRwFY1jqgVcY_sdwRvTEMlee3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|166.20000000000002|0.698|11.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|jVpVAbxKxqASsHwNRZfl7wPSSKpo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.1|75.19999999999999|0.63|5.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|jVx-AoKka9n01tQlhzh_kjx575zT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.777|176.1|0.542|7.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s13204-018-0836-3|jVyQ3GhSK9LN3-boXJvifZTVvqA_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|209.9|0.66|13.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|jW5wx_ltAna6Ey-XhL21N1UfZ8i1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|181.4|0.639|11.19|['SLG', 'ITO', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY4']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|jW7uVqTVANpLEW4qMknRibQVSh_s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY4', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb30Sn70|Cs17Pb30Sn70C83N166H415I300|Cs0.17FA0.83Pb0.3Sn0.7I3|1.2500001332889268|0.73|204.0|0.575|9.6|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|jWAhVESsfBo2V-JpjGWfEg4y5bNK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.3Sn0.7I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.6|0.715|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|jWHmbcaeAG13O8hVTbE7U6z8gjd2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.7|0.62|12.8|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|jWKsZBmlYvj6RbZnI2tkMYFMTWjb|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.9|0.73|16.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PVK', 'Ag']|['PVK']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.034|jWOgwZuI9YQT97TKkiJhVywWHFnq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PVK', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C100H575I288N125Pb100|Pb100C100N125H575I288Br12|FA0.25MA0.75PbBr0.12I2.88||0.887|96.1|0.5589999999999999|4.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|jWPOhSt1jxggM5TxbPMxt2JMZVHS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbBr0.12I2.88. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.07|211.1|0.74|16.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|jWatQ50-kDMKFmWYcm6PdXK01rOD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|198.0|0.66|12.79|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|jWqe4BLHkdNxcIi76NI--gaBmOES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.2|0.75|14.37|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.7b17781|jWwuwp2svGWUTGNT9k3eejYlFdik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|7.199999999999999|0.13|0.08|['SLG', 'ITO', 'BPADF', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['BPAPF']|['C60']|bulk|https://doi.org/10.1063/1.4889843|jX-tO7hLyhSlnns-t_E89fbLOSHu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BPADF', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.1|0.64|14.83|['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00098|jX56cncpAjYYZAgPGjWzMD8gTq95|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.04|210.4|0.594|11.55|['SLG', 'FTO', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['[EMIM]PF6-IL']|bulk|https://doi.org/10.1021/acsami.6b12683|jXBL7nvVyT6NqUVIVtoyAtNX263S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '[EMIM]PF6-IL', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.6|0.68|12.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|jXHUZ33TwjF1h1S8X7rNiULcbAMA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.0|0.74|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|jXLlTiDhfmJ8hySwyg9mr_EFAKhl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|193.0|0.72|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cphc.201601168|jXPo9McRm4HRLUVW09pKjVEK-caa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.83|169.0|0.6|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acssuschemeng.9b04772|jXQeWWmsPmxjG4V8eESiMjpi8vfD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|240.9|0.748|19.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ee02542h|jXgLnG0lFoXzF6ZRihxSuZUitzgO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C2H11I6N3Pb2Sn2|Pb2Sn2C2N3H11I6|FA0.5MA0.5PbSnI3||0.74|282.6|0.73|15.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903013|jXiyZWELZIAyhCRPJZ7hMUWcsAXG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbSnI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.68|101.0|0.38|2.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|jXoetDSLKj_pdqvpu0-0u03Ec6PL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br12C25H129I63N46Pb25|Pb25C25N46H129I63Br12|FA0.84MA0.16PbBr0.48I2.52||0.98|232.0|0.67|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.034|jY2l90lCjAxBsA3H5hYFKm4SbbWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|229.8|0.63|12.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|jY5DDO_MKL_tEdPVxksFTDLjPzb6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|228.0|0.7|16.4|['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/c7ta07663k|jY6SVSwGV7LcHP7fn1IwWL070QEt|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|184.1|0.662|13.52|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.067|jY71RzlAicJ-J_l2X_0ixjkbhpql|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.8|0.71|15.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|jY7slKYRAupRsGRsPvx0IOVEw1OM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.097|180.0|0.74|11.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|jYM4EDQ1TRGiVgTHIWLgDkLusiP9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.7559999999999999|18.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|jYMCErNgt3ISQT_zWOhbMY6-ceBQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|230.0|0.8|20.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.05.005|jYRBKG4Od-xdGOmcAQSHqpSuawpl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|166.0|0.764|11.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00796|jYSS91O3XurO6QqGJeHdUjwFPB6O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.649|33.2|0.4629999999999999|1.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|jYSvaJbpFyGonDUdRM3Tb4czSsU2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|126.4|0.5|3.94|['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3-np', 'Cs2CO3', 'PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2019.05.030|jYW1yiyJDwOIdd9ct971IMFuriim|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.15|207.0|0.816|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|jYciddKggypf524nHkkSC7_74RKR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|125.6|0.56|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1038/srep08704|jYn9QhgHlZ4LPzxQGwwV1JyjX3bT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|204.3|0.7|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|jYqDAbd8JnVMZTVuvK0k9XBu_7VL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|227.6|0.544|9.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|jZCVc0sryuMDxkcVMubuZHeowiMg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|186.7|0.68|13.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|jZOzyMXSc2fOwBTwcc3i-9q4lqPL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.99|170.5|0.715|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr02404e|jZZ7AJq340g6PlI1d3YahWFEKjHn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6990000000000001|180.0|0.598|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06338d|jZhrVvQFqU1bwg7GYsJ1adXcqH8a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|186.0|0.684|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|jZr3vKKTeh8tV_rbZz4e8DXflU3R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|150.0|0.71|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|jZuH4gyIgBWz7DUv9ER7gC-URxWW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|183.1|0.708|13.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|j_2eBZYvSze6GGDvHyVClSPdsk-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.089|192.0|0.612|12.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|j_5zYQpt6XOtgDAaY64SgIwHcjpc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|j_9qlLyovBX2uQhSwVvfWibDwb_L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.433|166.0|0.655|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|j_QIcI0dWxN0N8G1JtMY4tqzyXvW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|200.0|0.65|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01026|j_ZAR5WQNzlwaAJN8l52zlQTCOLq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||0.8059999999999999|27.4|0.75|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2765082|j_aRwICdOd0iPghUWbQSE2h12uKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|172.10000000000002|0.589|9.19|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2019.03.014|j_h7XWO7aYohgpgzPjk46QAzrav6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Au', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASn1.0I3|1.400000149283598|0.3279999999999999|220.2|0.521|3.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdS', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp', 'CdS']|bulk|https://doi.org/10.1021/jacs.6b08790|j_ibsufpfjIHMhm54QxRj2_373p7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdS', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASn1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|75.6|0.18|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.06.037|j_jW9Pkvf-HlOUgwSimo0HBCgjC0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.006|148.1|0.677|9.64|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227091|j_oqdRQOJLMyuTlz8kDz49vWdBMq|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|204.5|0.7879999999999999|15.92|['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']|['PEDOT:PSS', 'Black phosphorous QDs']|['PCBM-60', 'ZrAcac']|bulk|https://doi.org/10.1021/acs.jpclett.6b02843|j_vKqKMYuLYFSqkZSxfKpFbS0fNT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H26I10N4Pb3S2|Pb3C12N4H26S2I10|(ThMA)2MA2Pb3I10||0.97|14.0|0.568|0.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b04604|ja3sD8qwx1xgBCuH2IxDv4FdxoDv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|242.0|0.51|10.32|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|ja3xqu1KF66WXMYMjABJeiWmAmOz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||16.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|jaB9gBRQ4Z7KeZCKc6OcD296xwQO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|204.4|0.52|8.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501994|jaFhKixAnr7J_iVxKaME15ty85bP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|181.9|0.69|10.92|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.05.025|jaOuUnZKBw56wLlzfl73C0hvDZyi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.99|228.2|0.7170000000000001|15.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/nano8090720|jaYHoqEZY-xhmIQZyV0O3ZVA7j7W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|129.3|0.498|5.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00032k|jaYIQ4KyGVSfG7RzrsTnY_Ga1Z_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|169.60000000000002|0.6809999999999999|10.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|jaff5bBjRUdTUnDqJlaknuZeH25R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|198.0|0.7929999999999999|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|jaqTDKuUHC31V3f43fviUAyRVd5i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|147.3|0.6990000000000001|10.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|jasWkMDZsOwZGVft3eH4toS3NMsc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|216.8|0.711|16.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.105|jb14gwdQfvaqdZyV8EY_gYgvK2xf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.418|71.0|0.283|0.84|['SLG', 'ITO', 'C60', 'Perovskite', 'MoO3', 'Ag']|['none']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|jb2rfbgQVQUG18D3QXoJeoVss8uX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.7|0.733|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|jb2sUyyXnjlaB60YCqCEz3GrAyAq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.5|0.75|14.67|['SLG', 'ITO', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['Graphene', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2018.06.068|jbYGSmIsRU3yh5EGF-tMi8b83feK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|221.9|0.74|16.09|['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTCA']|bulk|https://doi.org/10.1002/solr.201800205|jbZZQDXXbRtc7XH5sxlLJc3uDAUG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.8|0.72|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1021/cm504558g|jbcFhb3vmji-VdjQ3qY6b4Z774Fj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|197.7|0.81|16.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.052|jbpXcnWfep4DmIZhGerp3TejLFdi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.1|227.0|0.78|19.48|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|jbuY8LIYtzjzYGBEwb8RKVg73Jzp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']|['PTAA']|['PCBM-60', 'm-PYBrZnPor']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|jbxe_P9Xzetq95TpSQP29e2_k4bN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|142.7|0.775|11.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2019.01.015|jc7auLjDXe2zFsy5n8LLjlhGmIp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.3|0.4529999999999999|10.4|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']|['TPTPA', 'MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|jcCFTs48CXk6qxLpY9RzYbeFh-T6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|225.9|0.74|17.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.141|jcWAeUQDYjN3htUxbKugfY5rKJSS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.97|142.79999999999998|0.516|6.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acssuschemeng.8b05734|jccGxn045mpShNSgyz4nmE8iVnQG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.85|121.4|0.46|4.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|jcnTAP_g_Yh6ZDRZrIs6wnXHxIjs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.042|218.0|0.75|17.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b06459|jdWQe-6w6qeC7KmQnkT-fGxaQCNz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|219.0|0.77|18.2|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|jdgu4yaGGAd3gNO87_u-yhqTnpP9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|210.0|0.73|15.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.mtener.2017.10.002|jdkE7VyQdZB55MDFPSYbNd7EFz6n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|171.20000000000002|0.7190000000000001|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|je8PXh0aRIwzHoR3l7LxLWQpSBTA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.03|204.6|0.7|15.13|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|jeG1rP5Iw8851_Xx7UOPUdYLqBrW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|200.0|0.75|13.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701456|jeKrlIEMwt-I_S6V5tE32vyUYme2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H58I27N12Pb10|Pb10C10N12H58I27Br3|FA0.2MA0.8PbBr0.3I2.7||0.96|197.0|0.711|13.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|jekeUqjbah13NlwPk5-LLh9CLwER|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.008|207.5|0.775|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|jeqnd-0bixCBNFFb43ro18Ex84Zr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.11|220.0|0.77|17.0|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1091', 'Au']|['V1091']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201803735|jerrl69TuZh5UHd1PNLmmVcTFT1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'V1091', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.051|227.6|0.73|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900345|jetOAxBGNC0wkjc9DU_DW5rWutSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|228.0|0.7759999999999999|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800324|jeydREMTCev_rox-07IQDRPlAOJX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.5|0.757|16.43|['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']|['P3HT']|['C60(OH)16', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.024|jf4HKn13904D6w80y4U8OD2BJKiq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|104.9|0.67|6.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.09.018|jfAfklEU9x3eggFDBQ44uwmyQwF_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|108.5|0.74|8.16|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTZDPP-2', 'Au']|['PTZDPP-2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2017.08.007|jfBOAs8joiff92cjR1FIszWM578Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTZDPP-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.63|144.0|0.35|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-Pc', 'Au']|['TPA-Pc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.10.050|jfTi_vsBeOmKWEiV5wJsvxBD-kW2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-c', '1bb', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', '1bb']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808625|jfY-C2fsCx19Dt9iXKoavOi3fIXP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', '1bb', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||0.99|200.0|0.64|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|jfYWCVkr_dRXTrDTdk7hKv9-fa4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|237.6|0.7140000000000001|17.78|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.067|jfk_wuzhDQHeG3ziIly7IWBd5_ZW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.945|206.4|0.539|10.52|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|jfmZ38JkDwjgmTmDVRT0a4o7fJt7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.5400001642119578|0.999|213.0|0.75|15.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.8b05555|jfsNcRlSQnodimKKQGpN2EFa5MP7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.16|149.0||9.42|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|jfuCrZHcKXA_2A0VeWgtmdEcE0c6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|191.0|0.57|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'Au']|['SWCNTs', 'Graphene oxide']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|jfzCVkQsxUcTZjkQYiXMEG7oUFXC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|218.0|0.7|14.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ee02185b|jg4UdSRIcTlDa1d1DbBduibObki6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.7809999999999999|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14423|jg4iihq8BlUrdsnmEXNVGj33Iqtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.017|jgMKUX3hl7oZu15yNuUpqarTq7FH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.3|0.41|8.54|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2017.02.003|jgSGPfMrjfV5ZFm-F6fpMSoLWQxb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C10H60I9N10Pb10|Pb10C10N10H60I9Br21|MAPbBr2.1I0.9||0.92|161.9|0.662|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|jgXZKlRimiCsPJonD2WaeR4qn5_p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr2.1I0.9. -Br3C9CsH47I27N16Pb10|CsPb10C9N16H47I27Br3|Cs0.1FA0.7MA0.2PbBr0.3I2.7||1.01|197.2|0.7|13.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.004|jggZwoX3RK2MMGx2bQNtNNf4tJPv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.8|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|jghI9chFzWBtbf0UKg1NTtUQoKBq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|207.0|0.65|12.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|jgnYBTjtysHbujhF92FQ1CcqRMr0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8059999999999999|191.6|0.57|8.8|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1039/c4cc04908j|jgqzZs5rISpqjYedr4aqygPCmk1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.122|129.1|0.685|9.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900374|jh1vGlgEaVzxHC_dJ4CLzmrtMwkK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|183.0|0.54|8.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|jhQzs77J4Ci7qpezZH-dHfVnFUBM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.8|0.7490000000000001|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09724k|jh_P1fVWyabqgOY-vHAIX1zwnReE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|185.7|0.38|5.28|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800325|jhbYcAM01um8ZEfj8KyVAlLQUlOu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|84.0|0.42|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|jhghFyY7l4h7CAoZn0Fq8Ukb-j1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.07|217.1|0.675|14.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1016/j.joule.2018.07.018|ji5HKLLvkVdMviaVeISBaM1bPYeq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.2|0.775|16.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.043|ji7QEDoV3-_dLuKELX3hTwvVrF-d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|211.1|0.596|11.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra06133d|jiS-54ZRkNB4xHVpdD6uQ0olmMQ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.88|215.0|0.7390000000000001|13.9|['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|jiZvkNkHYUSHPmbPDbl-9s_5iBkd|a perovskite solar cell with the following device stack: ['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.2|0.62|14.58|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|jip5rDhWNyKEeU5KQJnNz4G6kccH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|207.5|0.735|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|jivklTkHYGpMGYnrBo6sCLws-52S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.98|211.3|0.64|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201605988|jixcC72t2y-MKzsp2B6nqiqdR2TR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|90.2|0.61|3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201301327|jj8iROcT0X6x44625nLzT-uPnnQR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.72|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b12137|jjJoch1H6tWcg3w_8fRiO37puVJj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.640000174875072|1.06|230.1|0.74|18.0|['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO4-c', 'ZnSO4-mp']|bulk|https://doi.org/10.1039/c9cc07398a|jjLmKNhzRUPOlzFeCROUgWD-HB8R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|76.3|0.182|0.76|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|jjO4UwZOB0uQUn6lDFMV-OlxNJ3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.04|200.6|0.63|13.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1021/acsami.7b00726|jjXALF7t2b-nrJHmVemoHTSGX8NN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|208.7|0.784|16.22|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00328|jj_Wk0g0kDWZre6-x_g0Kbk36CrN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|161.1|0.4379999999999999|6.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta05053k|jjeLTQ-fZcJEiRN4OIijKOUwqqI5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|169.0|0.741|12.3|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|jjn821tHVyjdw854yW360Q8fcSZ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|219.8|0.78|17.17|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|jjrawY7QrSdNVAXlLATyQt4JZv0z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|119.7|0.452|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|jkBbArjWbyVYsP5BA9dpfJj8LiFV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.1|0.74|16.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.12.012|jkCvDLy87dQ5vgqoAwIJT5P6hUW5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|0.86|24.0|0.55|1.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|jkF4QjNbdvtPf4S548fA4o4ewyTJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|195.1|0.38|5.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polypseudorotaxane', 'Au']|['Polypseudorotaxane']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.eurpolymj.2018.06.005|jkIogG-uSQeVxgR6SgKwT2J5lrig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polypseudorotaxane', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH95I57N38Pb20|CsPb20C19N38H95I57Br3|Cs0.05FA0.95PbBr0.15I2.85|1.5500001652782691|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aau5701|jkUTjutpo2gC-yZlJoC8n9_vwdRV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|223.5|0.64|12.78|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|jkUjbYQOkCzCaPwTLZWD94drFjss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|171.0|0.6859999999999999|10.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C6TA03755K|jkW-MvnfLkaX7uUJCHmaPrhn5GU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|171.8|0.57|9.33|['SLG', 'ITO', 'TiO2-c', 'DMF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'DMF']|bulk|https://doi.org/10.1039/c5ta08098c|jkYdEMYl_urKmx8hYYYfYtojiP6F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'DMF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.13|162.89999999999998|0.57|10.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|jkZo9PZNBieTHcZj1vxNOZkyl2t7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|223.9|0.75|18.36|['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1039/c9ta00398c|jkaJog81laPkicHmZXUCJEFhuton|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|194.0|0.424|5.91|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|jkaLrj9v8NGpnVW9RjdA6aBUHwRB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|173.4|0.442|7.69|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01162|jkascODWG8CJcF2lfAkTQSq02TXU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.99|137.5|0.65|8.86|['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-np', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03240g|jkhyScSz72tRYWSzX-IjexNZi68V|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-np', 'ITO']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|197.1|0.7|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01701|jkjqEUHHCagZN_VbNaXwKnbgBxJv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20CaH120I60N20Pb19|CaPb19C20N20H120I60|MACa0.05Pb0.95I3||0.8|170.0|0.608|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|jkn7HZ4OKgJ55TfPgl1yvwQMP1mj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.05Pb0.95I3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.03|209.0|0.642|13.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta12890e|jktCjGjqFKNq3tOi9GGyR4FCyJwN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.74|49.1|0.6|2.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b01550|jkuoK9ZmWQgu6NL94ymC_g0l2xU-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|184.2|0.523|10.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|jl-DpbxLxZh7DugqXDPQWVNzirwg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.067|149.0|0.7090000000000001|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00751|jl6ugODipmJK77j4rU7G_CaJfE4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.3|0.65|11.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pp-TPE-4DPA', 'Ag']|['pp-TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|jl8Bq9xAw3SK5nmgRa5UvSBOiu-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pp-TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|126.2|0.5|4.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cabon', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.10.015|jlBCchOx3vnX33cklExWdDeFIkIy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cabon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.89|187.3|0.752|12.53|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']|['18-crown-6 ether', 'Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01968b|jlBmVLFiAPBp0DtyBqsJxqFZWFrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chloride', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['S-acetylthiocholine chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|jlKcy5chfnglo49YgDDYy2-AfvoH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'S-acetylthiocholine chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.006|196.0|0.779|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|jlXbT0EjZgAmtKHAWg4QD3fVimRE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.8|0.75|16.09|['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']|['P3HT']|['C60(OH)16', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.024|jlfUF687k47uwUt4DhSMEkT0M92D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|234.8|0.67|15.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|jlnuJAmBVW0wJXyslAN0w-j-h3DN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -C5F2H30I13N5Sn5|Sn5C5N5H30I13F2|MASnF0.4I2.6|1.850000197267612|0.39|128.3|0.36|1.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6tc05069g|jlv-Fh79-E80V6qqtGNwPkP0yMLH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnF0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|jm-jHF2E8rc13SpchAASryS45Qdy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.0|0.74|17.9|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|jm-nr5cinuWw_RViFcALIymv3EPV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|170.9|0.65|9.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1038/ncomms13938|jm4XPZvx6V-lgNvA0G6Wu6kkh1mq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|207.0|0.725|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta07674f|jm6Gsn7tg69YCEYooF41il4G9lMf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H42I16N8Pb5|Pb5C9N8H42I16|BAGUMA4Pb5I16||1.01|132.3|0.79|10.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta04658e|jmDlsfqUSLLaILgpFQW1va1TaKro|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BAGUMA4Pb5I16. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.141|215.0|0.76|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05484|jmUZdNbzIJ7KBIEz7yflpAyZLcqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|188.66|0.598|10.68|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|jmUsvnUNlbGWA2zEqM5a_9OL8nUk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|133.0|0.7659999999999999|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6cp06709c|jmZCg_5nPwVLqf7siagkErFZ_y5U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C5H27I13N8Pb5|Pb5C5N8H27I13Br2|FA0.6MA0.4PbBr0.4I2.6|1.5800001684772036|1.04|209.0|0.77|16.7|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|jmggCJ8AfM1_mc28tjWzbSb5J_Gt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.5|0.73|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|jmyIE9xZSM-IvsBma0PMVG0aHErF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.8740000000000001|206.0|0.599|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.305|jn-IB0zCyX3ohn4OVRWJw92YtujW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|178.0|0.55|9.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cp00416k|jn69Cf86F167W8GBy_rrecBICfVR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.7|0.74|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09933b|jn8ee_ph1rAjtFxTwbHOWnjGJTso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.08|241.5|0.74|18.6|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|jnEw-3buN2qDdSmf1tg0T2Ese2r8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|165.5|0.75|11.92|['SLG', 'ITO', 'Spiro-N', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Spiro-N']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c6sc00973e|jnNje-ZqAtJlM0eS-heAwV2wX_Ii|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-N', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.517|122.0|0.33|2.1|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2019.11.094|jnQxy6MgyjgCXmcKCfxLNCa6r8_g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.695|15.48|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1039/c8ra08940j|jnTIn4QLCzpBWzbKIli3IlZ2sCHb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.2|0.76|15.9|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15320|jnU0ccAFem42yPieYDJOVFgExZtu|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|220.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|jnXSC1AKnGpk_eVPEXU2CbgaeB7k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.544|11.8|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1117/1.JPE.6.022002|jnaYWbMZ7xtdrDsnL5Zw2pQQ64O2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|195.7|0.613|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|jnq06t6qWuwR7aHhT2Ca1lg0V1pa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5920000000000001|125.1|0.56|4.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|jnr5KFzFcG_9YpFOFrhqXY9HDQP0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb9Sn|Pb9SnC10N11H59I30|FA0.1MA0.9Pb0.9Sn0.1I3|1.4400001535488438|0.77|212.3|0.75|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|jnsenGfloIa--hAavR6JFKnzw-KS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9Pb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|0.54|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|joHhCFG-TfYGIfxf-XQU04myLwmy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.89999999999998|0.7040000000000001|11.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|joJ1-8Vhq9o81ZVYTu8tKzZdEeEN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|235.1|0.634|14.72|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1002/adfm.201808667|joXllr0GTXhh1dUvsh6A2t-xE_bV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|225.0|0.71|17.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.07.013|joe00zyrGdw2NG8h8NXqZfWUWqiR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C201H1142I600N261Pb200|Pb200C201N261H1142I600|(EDA)0.005FA0.3MA0.695Pb1.0I3||1.036|234.1|0.71|17.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|jofI0O1FqNcxYcChCuwO4MS6SgxY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.005FA0.3MA0.695Pb1.0I3. -C32Cs5H185I300N39Pb100|Cs5Pb100C32N39H185I300|Cs0.05FA0.07MA0.25PbI3|1.5100001610130236|1.12|230.0|0.708|16.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.202000995|jofr8vAXXWPUaDVxb3FNTM8dmMld|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.07MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|181.0|0.48|7.8|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms3242|jorE_mm2C16zqJirFKVTbYtHzmGe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Pb|PbCN2H5I2Br|FAPbBrI2||0.909|70.8|0.66|4.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|jownn9XHtq5dqcziZgxMHBpVbjCl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.11|229.6|0.73|18.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|jp2DlLVymUzS1HPI0-7AtOdU0AzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.45|75.5|0.7609999999999999|8.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|jpCbOlfRRPOp4XgA_dk171Ju6dQz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|218.1|0.66|16.85|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227405|jpDvNYlHYrafxoTtHle9-zn-Uxjn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|226.5|0.79|16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|jpLwye0aniceJIojZw9k3NJ8wEgZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.0|0.589|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07647|jpV51aiNjMK8kDpoJcPDFtsC3F7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|139.0|0.6|8.4|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|jpbvhec14AKJghGycVIhLryRIK-x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.475|73.8|0.79|7.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'SWCNTs', 'Au']|['Spiro-MeOTAD', 'SWCNTs']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00509|jpewrfFGtsPAiXw8J42AD6792fzU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'SWCNTs', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|177.0|0.64|11.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1088/1361-6463/ab070d|jpstxjaRmqoHGAjOisNoPEveoWn8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.061|210.6|0.623|14.11|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2018.08.016|jpuN1PTREGiouXBxx_F-mVliKPc4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.72|27.3|0.41|0.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|jpy56d6e97djDJgKcD4y-ythxBDW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|121.8|0.69|10.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']|['poly(DTSTPD-r-BThTPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|jq-XNcybY_52IZ7OZYima8vh8ip6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.6|0.65|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9091220|jqAhcx0NabktDPoueUgj-J0C0eVU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|94.0|0.62|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|jqFitxeB5lYQUxyxrxdz0jXpfJXP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|200.6|0.757|14.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|jqSVMtWOVzBw26fYgzAN9FeZX9lq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||17.7|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|jqUp_quCaaG9K-h6wzWHI7OqEgd9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|94.0|0.61|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|jqZ0LuJF7ACQw8aOy7xMEA_J0bPI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.4|0.7020000000000001|16.22|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|jqg6IT5OIe-aLxzvV2Zp_mM6s3nK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.5|0.69|14.42|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800325|jqiyNHOUdj65tOzq_3UUS6RwWCSE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|219.3|0.74|15.6|['SLG', 'FTO', 'TiO2-c', '3-PA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', '3-PA-SAM']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.088|jr071cXwltHk3aRb7nlP1FG5a0xT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '3-PA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|236.4|0.512|10.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1038/srep39132|jr0ikIoqte6B8gClkyjtQkWJSNd3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|203.0|0.76|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|jr1OJaqZGQGHWM5k1vmV_Z87ty9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||1.1|172.89999999999998|0.78|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|jrFq7VQO9VzEW1VuXEzeOm4tNYfp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -Br27C47Cs3H243I123N86Pb50|Cs3Pb50C47N86H243I123Br27|Cs0.06FA0.78MA0.16PbBr0.54I2.46||0.98|184.5|0.66|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']|['Carbon-nt']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201701225|jrQ_kZNgQeqotr7UNYcymoepZUrh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.0|0.7090000000000001|14.58|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201702182|jrbcfpP2vQJrsDbkKwkli3k3dVO-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.784|279.40000000000003|0.68|14.78|['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'PCP-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|jreTaMWUAzFWx5CM1jN3Wk9SfxtZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.06|165.2|0.527|9.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17141|jrh02pIGh5tU9sUq7GGBHskGOONW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||0.69|28.700000000000003|0.44|0.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|jrieySOj57bZEhNwwUMpg6UJHf8e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|178.29999999999998|0.7|10.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.044|jrklJj7iUrTFnMDaMLoxCZ6xW3nk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|145.0|0.57|5.4|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['none']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15147|js5_qKcOH29Kkkj3E5zd1dkjwG2k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|105.0|0.437|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|js789EqeEFv-3CR7ymz8bseg7cMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.0|0.51|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']|['C6TBPH2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1882-0786/ab4aa2|js90-H3FWBvbabkI0OWLYEe31ZX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C6TBPH2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|61.0|0.3379999999999999|1.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr06741g|jsAiPK1SVQ87j83R79rffEfioe6E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.636|114.0|0.61|4.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|jsWeNvlucEEnd22FayZHcFH6ExCV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br45|Cs0.1FA0.76MA0.14PbBr0.45I2.55||0.99|213.2|0.69|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'CS04', 'Au']|['CS04']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201915022|jsY3KOjW_YhG8bbn8sHVt5ErvF62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'CS04', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|jsYWW6NG9QI6IcXOhB83pNqaPuD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|139.8|0.65|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|jsZ4_vj5xummUpGYEEHTB4iPpjbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.88|227.0|0.58|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|jsgGdkvZkkrrMmsT7aU5j59gFeTF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|jshc8edtSiZsS67GwBXiwMbDioPd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.0|0.7759999999999999|18.6|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b01439|jt-XO9T8YKYLB52Jq7hT4WVRaQjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.0|0.63|15.1|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014006|jt2zHUXLX8DluOe74CpxmV6B6JNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH95I57N38Pb20|CsPb20C19N38H95I57Br3|Cs0.05FA0.95PbBr0.15I2.85|1.5500001652782691|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aau5701|jtC5I9hwAuzIFc1z2a2PHAkUMsUW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.0|0.61|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201302090|jtGuBOZaXp1bK0BYe3DKYBNi9SZw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|205.0|0.65|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.05.039|jtJLYWl82T70mIhth-anYmGTUIzE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||12.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|jtS7Fcmi8ou42mkpXfxTOxx8XFwB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.0|107.8|0.69|7.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1039/c8ta09146c|jtiYy5IkTsFnqkyT4g2vhhRIjqZa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|217.7|0.5660000000000001|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b04861|ju7ZotPQsaezOgwjyddg6Uw79U5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.14|138.5|0.497|7.84||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|juF7F0uvLYn6s76wgn9G33MajueZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.06|191.4|0.7659999999999999|15.54|['SLG', 'ITO', 'Graphene oxide', 'PFNBr', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['Graphene oxide', 'PFNBr']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.072|juTYjWN1OXkzjdsBm-P-LTKanMpH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PFNBr', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|203.2|0.698|15.95|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|juVI4MZBCROR12RZ3fBGXcDxX5sS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C40H228I111N52Pb40|Pb40C40N52H228I111Br9|FA0.3MA0.7PbBr0.225I2.775||1.14|223.0|0.785|20.25|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']|['DTP-C6Th']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|juYgulr7K7FYvel4kTmjL65Zi3kD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTP-C6Th', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.225I2.775. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.570000167410892|1.098|212.8|0.695|14.89|['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Cr2O3']|bulk|https://doi.org/10.1002/cssc.201701864|juwIritO8V6ZPyG9rOdq0XAk0tUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cr2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||0.95|211.8|0.68|12.0|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M108', 'Au']|['M108']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|jv7prxS6c8asGlShs5HPBSCc88Ju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M108', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|157.20000000000002|0.63|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|jv9AHd-mcOThAh-d9CTrgy6mJiw2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.92|129.2|0.6859999999999999|8.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900091|jvFwxQ3-iwqyEV0F1CWuGBJyju9D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|228.5|0.72|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03826|jvHmcAHdZ9COzUN2jkyoLXcJKweR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.6920000000000001|16.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b05971|jvKi_onbgMjE7ju52P45zSjdIWRL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|192.0|0.745|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401775|jvR5TgAONFKq_L7FoeCp5ZD8PCmV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|191.0|0.44|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.05.039|jvTpZlUJLD_kw-M8PbHdoxApNMMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.05|226.5|0.75|17.81|['SLG', 'FTO', 'TiO2-a', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201800993|jvWk-JVktrH34X9lH6OGhE4ZkHE4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.09|221.9|0.742|18.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|jvap9AJCfHV34S9NlYIoasYOfWc1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.685|15.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cap.2019.09.010|jvbK5wxNIirqm8cxxG8lM1JPkKGa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|171.5|0.408|6.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|jvoqaNsaYnrbX0cDiOHhGmm75CSH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.2|0.6579999999999999|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.023|jvqnYIjxaFGhAdtC76BgAIUmeIbU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.87|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11459|jvvXMRhiDj4vPjB-u8LFs5AluaIG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|162.15|0.6679999999999999|10.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']|['NiO-c']|['PCBM-60', 'Rodhamine 101']|bulk|https://doi.org/10.3390/en11081963|jvxE113n4ezWAWuNtNKhrnzAMobF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|227.6|0.61|11.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|jw2KW9nJ7wlCPna-g4LukXEXjqxA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|144.8|0.61|7.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|jw3A1cg-LbkMCqM8q8s8sF_CbdYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.15|212.0|0.72|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|jwDUrqZKCtG6-OK_vopNcWRhLyhY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|96.0|0.62|4.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/jz500645n|jwK4FU8tLfg0RhY5hfAt4DL3FSwd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.659|1.7999999999999998|0.27|0.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1246/cl.160298|jwLux7Q-WYrs67sZEdSSkA1F2yPz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|222.6|0.76|17.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|jwS5CSSkTwOjWie7OqDb3Wbnb81O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|181.0|0.635|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe', 'LiF', 'Au', 'Ag']|['PEDOT:PSS']|['CdSe', 'LiF']|bulk|https://doi.org/10.1186/s11671-017-2381-5|jwTxsy_7NjzUUhref8jb3XYkwW5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe', 'LiF', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155|0.7|180.0|0.5870000000000001|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|jwU3cFHUp93LxCnZwEP6mP3JXMC-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|220.31|0.764|17.71|['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']|['PTAA']|['TTC', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0282-0|jwVmrCdgGoukBc23BiBDtqGFXSAz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|194.1|0.764|15.89|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.204|jwdSZfDv1RB_e2kfa3Zfa3khAfdj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.20000000000002|0.76|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|jwePGSzhwfp_DciDNiXklLJigb5n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58||1.09|214.7|0.78|17.04|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adfm.201908408|jwh73xv9s31O3-02xgTRDypd3DH2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.799|69.0|0.413|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|jwiXF7ITiNGk2h-vHQ6-cZbq1spk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.83|100.5|0.42|3.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma13102272|jwjYkZIlVwXcHPQvbA5kEFA9gdCA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.895|186.9|0.73|12.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|jwkucxLvefOQAww68JK8zKgdRy8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|167.0|0.68|10.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1038/ncomms13938|jwnD8RRllVoYlUspx35NrkeMo4vL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.95|204.0|0.73|14.2|['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'Cu']|['P3HT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901631|jwvtLTJZAyg8L8EcpNNxoXFlCyxK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.82|125.3|0.7|7.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.143|jwx7A3lBbJrFi5IG31Cs05tzfOF3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.043|221.0|0.6459999999999999|14.9|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201800133|jx3XMDDU3Ml4VIzIeHfQYXuMa7dZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|189.4|0.621|11.5|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|jxAGR8k79VuW0yHWAr3hC_Vi37fz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|184.6|0.6890000000000001|12.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|jxETANkhSvs5IaCGvBdNQ6n1lkza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|179.0|0.7040000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|jxS-wTOdX9UMOWZpAZXfPZ6uSVYE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.972|214.3|0.6970000000000001|14.52|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1088/1674-1056/27/1/018401|jxY3HQiX_S8SqGhT_VHOqwVOnnM8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155|0.7|180.0|0.5870000000000001|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6NR00301J|jxbr-eW3IJ-Ln3lyvQQtocpvLDzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|203.0|0.758|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|jxbtG7J2Lz7GC39_Gbh8w11lWRV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.0|0.71|15.8|['SLG', 'FTO', 'NiO-c', 'N719 dye', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'N719 dye']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b02035|jxctGYr194QdOrgguncySa7gccAv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'N719 dye', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.05|133.4|0.62|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801050|jxep7ZWGSsHlF5yaSa0HTFqLbTBE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is CsPbBr2I. -Br510C893Cs100H4618I2490N1633Pb1000|Cs100Pb1000C893N1633H4618I2490Br510|Cs0.1FA0.74MA0.1530PbBr0.51I2.49|1.6100001716761378|1.06|225.7|0.75|19.92|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900413|jxgeJcrMl34DA7v-eDHlsIAlsHSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.74MA0.1530PbBr0.51I2.49. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.3600001450183523|0.74|243.5|0.691|12.42|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.9b03662|jxkj8GCOieq1aDzN51joVVee_EKX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.98|198.5|0.695|13.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2019.04.022|jxoFxdPrnn8dcetX_y9hv1OQ9CG6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|160.5|0.478|6.03|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|jy7lvQz6biijIG_fhJAs-nZKHYSd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.64|24.3|0.57|0.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|jyB0MINgQejZBG_34xmBp6yKYYzF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.06|3.9|0.262|0.0061|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|jyDMvNRJxyYqYf93TCHbZh7nYeXR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20Cl2H46I16N6Pb5|Pb5C20N6H46I16Cl2|(CPEA)2MA4Pb5I16||0.943|192.6|0.57|10.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.solener.2019.12.021|jyNhEsQnx4wyn1-3LjHmkiA-Kkzb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CPEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|191.0|0.72|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,8-bis-[2,2-bis(4-methoxyphenyl)ethenyl]-5,11-diethyl-5,11-dihidroindolo[3,2-b]carbazole', 'Au']|['2,8-bis-[2,2-bis(4-methoxyphenyl)ethenyl]-5,11-diethyl-5,11-dihidroindolo[3,2-b]carbazole']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01275b|jyiX9-vhNe6PR-5Dq0PYWCE-RmiX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,8-bis-[2,2-bis(4-methoxyphenyl)ethenyl]-5,11-diethyl-5,11-dihidroindolo[3,2-b]carbazole', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|224.2|0.77|19.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPI', 'Spiro-MeOTAD', 'Au']|['TCPI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta12597c|jynEw_TAMpSXEDg1jCCP793M_Dy8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TCPI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155||||7.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|jyuiftDYqQyk-KMwa3nOoa3OWj2y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.6|0.6920000000000001|15.05|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.11.021|jyzkK5wJc54yFW0xvOp2Fl2no6Fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|122.0|0.298|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|jz1FXwA68EV2H9jo5xGhCVxOfI1A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625||||3.56|['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|jz4NTXkIQo3QYMY6nOgMLe1LsPpm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.942|222.6|0.51|10.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|jz5Y9YmOq3CafkT3bWfFBMt2QXNK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.09|226.0|0.769|18.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|jz6JUP9M5Imp2N_1cu0i_7ttXS2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|229.0|0.77|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|jzEZ5JAvOUQr_rP_miYPSpZRSRSa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|167.0|0.703|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'AZO', 'NiAl -grid', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b01108|jzGvmFZzUkudVC6zz96GW90lim5P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'AZO', 'NiAl -grid', 'MgF2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|100.3|0.58|3.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'BCP']|bulk|https://doi.org/10.1002/adma.201301327|jzKB1DFVUXcABdECwzTZ8LSJr8zS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br170C1084Cs10H3868I83N720Pb300|Cs10Pb300C1084N720H3868I83Br170|BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83||1.1|208.1|0.613|13.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201901966|jzL8V7rkN007yHZWT0-sRHtNCGjq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|160.7|0.696|9.29|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1149/2.0201811jss|jzODWYgyetw_DhtdRRrK6Dk2-qpg|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|jzW2ChisGJmTOdNAGB7za9uH_FYc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|143.0|0.8|11.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201500523|jzbI5sn1RKwHnKO6gMgL8UTmTopH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.13|225.0|0.75|19.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|jzsW5IQiuHWycdCQC5S6MIf0JbTM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|225.0|0.71|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1016/j.solmat.2017.01.013|jztiYa9vte_BOCUhJoHLykKZFinM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|86.1|0.66|6.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|jzyUh642jbL0mbluDH2uurM9aVYJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|219.2|0.77|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Mix-DMEC70', 'Al']|['PEDOT:PSS']|['Mix-DMEC70']|bulk|https://doi.org/10.1039/c7ta06338e|k-7A4Wf_g3DiUhS018YnnPXsiB-x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Mix-DMEC70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|k-CI_kt1YMog38Y9Q4uZkLyhaght|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.96|199.0|0.74|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00121|k-PIFA-FR7zmrLPThQVARITUvkJ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|195.0|0.64|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|k-aj5NMICnxP1qEgWDma7uSBXS8l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6859999999999999|149.0|0.319|3.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|k-lPPlf8h2bef0cvO27SHKO3y7YK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br63C92Cs8H483I237N161Pb100|Cs8Pb100C92N161H483I237Br63|Cs0.08FA0.69MA0.23PbBr0.63I2.37||1.18|201.3|0.77|18.29|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.018|k-z_jR2a5KjSD-osaypKtZAxVwZS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.08FA0.69MA0.23PbBr0.63I2.37. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|202.2|0.632|13.93|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.067|k0EASWEUNFxuK1I3RouBQTBJ3Uuu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|198.7|0.6|11.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.10.035|k0FaaZwAbT6-a2U90aK9PDUHVPla|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|228.0|0.7390000000000001|18.0|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|k0T_sANH_vwVlxtlr5ZBT7VzJ7Yb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.0|0.7|14.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|k0UXkEPiGQta65sETuHZIHsQQxxo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|104.0|0.56|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4EE01546K|k0UpsotmyqhG3WiBdC0x8a2I-CI_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|k0VnUsG7x3PBjs9U8gj45qq8WABP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|188.3|0.67|12.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.07.112|k0XUUeSJf-90p6lFMQGxKpiMW8wB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|194.2|0.63|9.66|['SLG', 'ITO', 'CuI', 'PbPc', 'Perovskite', 'C60', 'Bphen', 'Ag']|['CuI', 'PbPc']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.solmat.2016.08.024|k0tbMu13ZVZSj8IWa4G7EoFz7mLr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'PbPc', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.99|234.0|0.66|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']|['CuFeO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|k11cYOCKTcX9jxSPVrf811z16gKc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|141.1|0.48|5.71|['SLG', 'FTO', 'Perovskite', 'Ag']|['none']|['none']|bulk|https://doi.org/10.1021/acsami.8b21692|k11pdToTukF6XQqy7HQoA9JJypbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|9.7|0.51|10.0|['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1117/12.2291595|k12GX717mxUE7VnBBpwmCKOILjjL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3|1.5300001631456466|1.001|220.0|0.76|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00127h|k14MQZ2zHizzLodRgSB7X3VETHJi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|232.0|0.767|18.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta06044d|k171_TbJ16KO2llh5Ojz-yONyO0K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.670000178074006|1.15|209.0|0.776|18.7||['PolyTPD', 'PFN']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1002/solr.202100249|k1CWlIzfG2zuaO6Geh324JbFPr0Z|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|k1Ee-DqtTv_ocT7PHbJ2JEhVvCIH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -Br2C4CsH20I3N8Pb5|CsPb5C4N8H20I3Br2|Cs0.2FA0.8PbBr0.4I0.6|1.780000189803432|0.97|146.5|0.722|10.3||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|k1GJ98UXyvQrlteLWpPTQ9by0BNy|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|129.0|0.613|5.14|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/12.2061405|k1LnF_1ny-MndriHXLhaG1Ahz89v|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.97|207.0|0.62|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01065j|k1ML1BSyhP53wEA72kderdSUay9d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||0.95|236.0|0.6729999999999999|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|k1QMA87-8QGOwpnwQJst0qo6fAos|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||6.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|k1mJjLqxanHnMlqsYNtoPl7iDmWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|178.1|0.768|16.58|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.029|k26xxqfsRGxRy-OZFB12u-UbUSFN|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|k28wE8g9lqcH3XLNbodh_K9vU1q4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|182.0|0.74|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad7de|k2CJI2ou7fFDmyhjZz996HLirkf2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.0|0.64|10.64|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|k2MBH7WvZKmtIS6wnl0WRf65Azpq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H50I29N20Pb10|Pb10C10N20H50I29Br|FAPbBr0.1I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|k2_SK6Y7Ou9bKy55Axmm5YrRej-O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr0.1I2.9. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.134|201.1|0.73|16.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|k2en8MBmXTWyIz0p5HSZv47YxIIJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|165.6|0.7340000000000001|11.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.05.012|k2heyKRE6IndzXjsCjBg24KQ8MhI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C16Cs4H80I45N32Pb20|Cs4Pb20C16N32H80I45Br15|Cs0.2FA0.8PbBr0.75I2.25||0.99|224.0|0.72|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900128|k2l0AOD94PjeLfAk4n7jrjTkf0Gq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|145.0|0.69|8.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|k3HjvJw2FtxCyf-aJbn94pVNsvbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|215.3|0.65|13.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.033|k3OfNm9DSJC94X0mYRkYZQH5deNH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I9NSb2|CSb2NH6I9|MASb2I9||0.45|2.5|0.7|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s40580-017-0120-3|k3fwb6uUFFClYFN8LkEjAUPFz__S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.76|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|k3gicXR6mV-Wm-j1huvNrXNXunvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.16|227.0|0.8|21.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)']|bulk|https://doi.org/10.1021/acsaem.9b00162|k3naE-C8_q9Sygo6jzpSFntkGzl5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -C50H267I150N83Pb20Sn30|Pb20Sn30C50N83H267I150|FA0.66MA0.34Pb0.4Sn0.6I3|1.2500001332889268|0.72|265.0|0.7|13.4||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|k3p93Kx5rjDAYjqsz7ufyqoSOtFJ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.4Sn0.6I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.99|60.3|0.63|3.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.154902|k3x_XA8NJf_Qxen71nbT1b5ow-ru|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.34|0.1|0.305|0.0|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|k3yjfEflYk6fCTpLuMuXlSZVcQa-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -BrC10H60I29N10Pb10|Pb10C10N10H60I29Br|MAPbBr0.1I2.9|1.5750001679440475|0.96|222.7|0.56|12.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.024|k46LQC1bGv5Ljmiv0s5h0ZL0Ioeh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|167.0|0.79|14.64|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['IPH']|bulk|https://doi.org/10.1039/c5ta10574a|k4CFs_IQvALEfwRw3rEILS2Vza_h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.9|0.703|15.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1021/acsami.9b15820|k4CJ0x7gvcYhL77rdDhBzaKCVdqf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.0|0.48|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep06752|k4RCF5OUpdB-bUryQQRe6du0zX1k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.78|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c6ta09174a|k4RET45_N16xU7PH-j7Ly3dNFGnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|149.9|0.61|7.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.06.019|k4UfXmTTzPlbjQK2u_ux3eMDlbm_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|53.5|0.6559999999999999|3.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|k4Z-7VoHHbYiAlC45rtDFwyRzwSi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.145|223.0|0.746|19.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/aenm.201801208|k4jROmTVW4xd5HpgniOgWHfJsxDV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|128.7|0.58|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201600504|k4kPHDI35bY4m6PtWH1ycoYLvLAQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|222.3|0.746|18.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b00900|k4u6Z3zAOk7T7hXz7YRXP64hfexr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|k53NBxBgJI9T9rrKDFvscbhRqGVq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|218.0|0.52|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700164|k56Kgm03hqM4YCp_0FRotyQIyeA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.11|217.9|0.7709999999999999|18.67|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201800133|k5C66au9wHMKQnP45GTOoTwyI1kr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -Br9C37H627I374N142Pb122|Pb122C37N142H627I374Br9|(NH4)5.1FA0.15MA1.7Pb6.1Br0.45I18.7||1.05|205.1|0.703|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|k5EI7P-zDOoNQhrAsKrDj9OtEQlV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)5.1FA0.15MA1.7Pb6.1Br0.45I18.7. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.97|179.3|0.62|10.81|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c7cc06183h|k5JDiOO_nYSMuHxZAM9jaff89o2f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|148.0|0.6920000000000001|9.25|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.016|k5Uacztvl4IyHjSn9lBAE2KGeq3G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|159.8|0.7809999999999999|10.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9020193|k5Z7JhfS-QktOyE9HCCCXj7vetOP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs|CsAgBiBr6|CsAgBiBr6|2.3900002548484283|1.07|21.3|0.62|1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.202002342|k5gV7seQp_dzz5YUvQGilFitgxwi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is CsAgBiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|170.0|0.493|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|k5j--aMhogqLW55WM2JqdRMMhdXb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.92|208.0|0.6659999999999999|12.7|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-TeDPA', 'MoO3', 'Ag']|['IDF-TeDPA', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|k5rCId1B7VSnp4GXzsCUEJ53qxzF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-TeDPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.57|146.6|0.54|6.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTh; Graphene', 'Au']|['PTh; Graphene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s00289-018-2275-4|k5sjB0xOLVceuFdUUJLa0q3aut1C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTh; Graphene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|206.0|0.5|8.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292019501273|k5ygIEn0_1P3H7JwJtr_ILbfLuiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.37|88.0|0.28|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1002/celc.201500031|k60ag9xn8be1Mbe-DK9Zjex3pGo-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.205|57.400000000000006|0.624|4.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227269|k6T4-OPpG1AtIdIlPZO2_hBCllFO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|179.3|0.738|14.42|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|k6VTbPhf7RoveNotlbElM9XEdJBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|196.5|0.778|15.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18402|k6_94rPWzCEBpVhi2c5RguddzKXG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|239.1|0.745|19.49|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|k6aIAECt5nzdbB9dlACBDwBwPUnf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|188.7|0.74|14.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.141|k6aiS-X9hh6EYfanPgwp5gy4G-7e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|214.2|0.75|16.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b19330|k6bHrJt_8yCqQXptOjdMuNzXCqXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.03|228.1|0.628|14.76|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|k6kgUH0HTskCDbTD7Yg0-bFBr574|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.0|0.77|18.16|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Bi2Te3']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15320|k6lkaqHnRDc1F1W_Y9pqTNSXlGBD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Bi2Te3']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.12|70.4|0.6809999999999999|5.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800354|k6nvsihzH4hjaNTW8BONi9uRrelX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|181.2|0.47|9.7|['INVAR', 'ITO', 'SiO2', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'IZTO']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.3390/met9020120|k6qIQq1pOvlLiXuOCYlDPyES4qOn|a perovskite solar cell with the following device stack: ['INVAR', 'ITO', 'SiO2', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'IZTO']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.01|126.6|0.6609999999999999|8.46|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900831|k75PvVQphvKwjSYlsNC9H_utkUKo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||0.984|211.0|0.72|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|k7B5mD5ZCLEKNkvwjKtxACGNdm-j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.133|153.0|0.6559999999999999|11.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|k7D-iqAk6R4jC_tgvCSKVTVq4Kh7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|212.5|0.5820000000000001|12.25|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|k7I57bgQHHV3XhTrIp5ny1sStzB7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|237.0|0.6859999999999999|15.62|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152742|k7Ib0wi0utmbhF-6hLEqieb8yRV-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.3|0.66|14.3|['PEN', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10321b|k7KQr1t0nvGiJI4Yfgga-Rbcxj-I|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCCl2H6NPb|PbCNH6BrCl2|MAPbBrCl2|2.750000293235639|1.43|11.0|0.77|0.57||['Spiro-MeOTAD']|['ITO', 'LT-TiO2:Cl']|not processed|https://doi.org/10.1002/solr.202000718|k7TKeBpi4V_COBUDuxorksDQgSFZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBrCl2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|220.1|0.72|17.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901171|k7YGOxo8cy78F7i-fFrEnSx5U3Xa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|117.0|0.4|2.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|k7_2IQEV3cTvJjFSmFLqWdTMH0ui|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br294C100H600I9N100Pb97Sb3|Pb97C100Sb3N100H600I9Br294|MAPb0.97Sb0.03Br2.94I0.09|1.5900001695435149|0.774|128.0|0.653|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974789|k7_dQF4YWCzpiacMOYs9dam1GlFz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.97Sb0.03Br2.94I0.09. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.16|227.1|0.7170000000000001|19.82|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201806095|k7bPDhJwh9pyXBEiJnyEitdatT9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|235.9|0.565|13.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile', 'Ag']|['2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.002|k7d1NBQ_c0USkjle048w6FWoVc3b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|172.0|0.57|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|k7ea_cbZLmev9fs20ouKo0qDMxzE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H44I22N6Pb7|Pb7C10N6H44I22|(PEI)2MA6Pb7I22|1.7000001812729404|1.1|131.2|0.65|9.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|k7krVg9ebUNmlj9yHHCv6_X2I-Wh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA6Pb7I22. -Br300Cs100Pb97Tb3|Cs100Tb3Pb97Br300|CsPb0.97Tb0.03Br3||1.51|76.2|0.787|9.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta08900k|k7npTfuDw8zL5TJkobQf4r5w8b_4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Carbon']? The composition of the perovskite layer is CsPb0.97Tb0.03Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.005|190.0|0.7|14.32|['SLG', 'ITO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.jcis.2018.10.011|k7x-6jksZrBEp84h3jJ1-egjmHa0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|192.0|0.7|14.7|['SLG', 'ITO', 'FPI-PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FPI-PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c5nr04250j|k8-bJgMyKf-1kT_DKrNvGml_YJIz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FPI-PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|219.64|0.7|16.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|k86j9GcDZk9YMnczJ215jmAoJ1sc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|147.10000000000002|0.547|7.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|k8CXrAGb2fxC3G_vARNnfOj8UtRr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3||1.02|216.1|0.8|17.55|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|k8W3z5Jviu468LC8wiXlpvNdY_53|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|213.9|0.758|17.8|['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-nanowalls']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|k8ZiDS8QqfuJ6SIQnA-6R5WxQyI8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs5H462I249N168Pb100|Cs5Pb100C90N168H462I249Br51|Cs0.05FA0.78MA0.12PbBr0.51I2.49||1.16|207.0|0.76|18.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|k8sNX9CaWxwjxwZB-lTGCzyLbPbX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.12PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.0|0.7|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Th-OMeTPA', 'Au']|['Th-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|k8uU81rfBJtj2Ktb_rUBOY_oEgOo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Th-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|k8xMtUEDCvbsVNWc-ElVl0tcqzQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|97.0|0.624|3.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4cc01864h|k8ye1jbAoD_KXgvy9XVIxzTS0kZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|215.0|0.62|14.6|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|k969c2TI-CgYAJx86JPPr1uN0CtG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br25C48Cs2H248I125N88Pb50|Cs2Pb50C48N88H248I125Br25|Cs0.04FA0.80MA0.16PbBr0.50I2.50|1.632000174022023|0.98|168.0|0.72|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|k96qVKGRBxrkTleERE2W9nGMUKPA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.50I2.50. -Br3C10H60I29N10Pb10|Pb10C10N10H60I29Br3|MAPbBr0.3I2.9|1.5890001694368836|1.006|201.1|0.629|12.72|['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104036|k9H573tBdHj6fhqk8bEkQYVHFmRa|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.9. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.03|206.9|0.653|13.97|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901419|k9ShbdGxs-t7FPSiuzHWqapVQ7pa|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|220.0|0.62|12.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1002/advs.201500105|k9XE73BS5etM4K86a64ZuxIoCzt_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.8|0.737|16.34|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227420|k9_dDZc4u70TCJgSLAyr12JhWOU1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|213.4|0.6409999999999999|13.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|k9sovsqMH0LuHHi7KHAmoYxq8x8h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.3|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s12274-017-1896-5|k9u_1Q5dGUmrKm2gnQAqEPUTMFH1|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.81|230.8|0.4|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']|['PEDOT:PSS']|['DNDIF3']|bulk|https://doi.org/10.1002/asia.201901452|k9wf1gUNVlc-huInpCFfmQe__uSo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|161.0|0.74|11.7|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.002|kA4Sg86cC6_iUH6NyxmXzABKz7Fk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.5|0.74|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|kA7FeXl7T0BoAmycXlQg5pUxJEbk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C20H101I58N39Pb20|Pb20C20N39H101I58Br2|FA0.95MA0.05PbBr0.1I2.9||1.06|227.0|0.732|17.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsami.9b19121|kAPx4_EfP_SMk-skPWgmlYbfbgPP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|128.1|0.655|7.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:OO', 'Au']|['M:OO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp91904f|kAnwB8uOt1DuBxbRYUO2S5yvmKgi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M:OO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.0|0.85|18.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c5ee00645g|kAqB5u77TZGtdOkaYVwoYzDYIu5d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.13|193.5|0.7|15.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00731|kAt4pOrYqT1TyjqNJD5YTY6rQmPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|170.79999999999998|0.44|6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b09978|kAyroltOQOpPWLYy9zuz5Gkqzw6q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|152.0|0.61|9.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b02799|kB-jXH3Y-FzT-vocObi63p-I8iop|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|188.0|0.2789999999999999|5.4|['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/c8se00218e|kBGrygQ6Sg7opw1IiydzvAp3jmjD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|176.0|0.64|9.6|['SLG', 'ITO', 'Graphene oxide; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|kBL-mxETVdKOfCSPUmSdeu-aQOrt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.75|133.0|0.6|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/cssc.201402566|kBL4RwjTu8AwUrJd50bydxfi34kA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|160.0|0.62|9.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201400231|kBT6A0cBqg0iBybfGAArCn8dk_pD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|204.9|0.66|12.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01889d|kBVzYqXuRSy8mK_8PuXL5wNCy7XS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.835|218.0|0.596|11.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|kBY5c5HgoohHHhOtzDGxdg1oMzqd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|kB_WYD0IOeq-pGtUai0EwTaKZvuX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|175.9|0.7120000000000001|12.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.043|kBgnHvka3XqIMhFN-cskinNlz4e1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|237.0|0.76|18.95|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Eu']|bulk|https://doi.org/10.1039/c9ta00551j|kBp5TQhyVnIwfSSqhoMmwRNM7vBD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||1.15|135.39999999999998|0.642|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['Carbon']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800139|kBpC5m32b5nxNGwr4iUZpO2cTz4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.5|6.3|0.405|0.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCE-10', 'MoO3', 'Ag']|['PCE-10']|['TiO2-c']|not processed|https://doi.org/10.1007/s13204-018-0744-6|kC8UbWu1Hyeebw96yhhaMp3Apcpl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCE-10', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|188.5|0.415|7.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra09519g|kCAByX_GUsj6VBaBnUUubCzytmwQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|118.7|0.3779999999999999|3.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.08.027|kCCHePcZzUUEXMITdQn64EBHRY9A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5300001631456466|0.91|213.0|0.633|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201703835|kCF2SEeqDOp8XkjrJdrSW7OqPkOI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|235.0|0.772|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201801016|kCJH2ubOsa8sVJ3LfE1uEmpoI7Mc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PyThTPA', 'Au']|['PyThTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.041|kCLfGhhkUiwXPDdLa6M6sv98PHxF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PyThTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|2.9300003124292444||||||['Unknown']|['Unknown']|bulk|https://doi.org/10.1002/solr.202200008|kCNx2SMSXYUkJxtRn__VxGYnhdf5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbI3. -C8H48I24N8Pb3Sn5|Pb3Sn5C8N8H48I24|MAPb0.375Sn0.625I3|1.2000001279573695|0.481|240.0|0.58|6.74|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|kCTQPNkoZaKNyhk6MwMhnZp2kAxl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.375Sn0.625I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.15|26.200000000000003|0.278|0.11|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201703800|kCsCHEyRaTawXlYTyF4plzGzKYZ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|134.8|0.48|5.95|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'Bphen', 'Ag']|['Graphene oxide']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7ra08680f|kDGp3RsXXYFgGOLGMg1iXHIb3Q5N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.09|228.1|0.72|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|kDORgC-6vwwrTw5D4K_jBasdRXg4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.077|212.2|0.7929999999999999|18.13|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|kDOnBRTsvjHoefHt7dMLmZYlfGMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|222.0|0.685|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|kDPa4Q5LTDXS657FllbeivC0Lxa0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C83Cs17H415I300N166Pb90Sn10|Cs17Pb90Sn10C83N166H415I300|Cs0.17FA0.83Pb0.9Sn0.1I3|1.4700001567477778|0.71|177.0|0.639|8.5|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|kDVMqWC96s-R4NenwFLpiP8e7aKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.9Sn0.1I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|221.4|0.745|18.59|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|kDfuB_a3IBDWrVt3gGoCGI2OaDk9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||0.92|118.0|0.674|6.78|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|kDiZgrkz2ksWlZEOjPrcSmCmFOJN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|141.0|0.36|4.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3-disubstituted azulene', 'Au']|['1,3-disubstituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|kDoOEfnKI6s4A2uGo_iTlrPUkDHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3-disubstituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|165.5|0.598|9.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PVP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PVP']|bulk|https://doi.org/10.1021/acsami.7b12135|kDsOqUu3dhcdwHrKpNB4ImXnAZkq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PVP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C101H573I300N130Pb100|Pb100C101N130H573I300|(EDA)0.01FA0.29MA0.7Pb1.0I3||1.056|232.0|0.71|17.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|kDtXiNXf5RDvs6D2HPcDUJv8wKGf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.01FA0.29MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|45.0|0.33|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV5', 'Au']|['COPV5']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|kE2EtLJb0nv5CI_FymoKLE3IjLp9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV5', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.102|199.3|0.688|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|kE7vsxGumMuTF_xqIzwv2W7Up772|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.2|0.755|18.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|kEFRDZ__3b00DzlXoQydOXrPAOyb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.139|217.0|0.71|17.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V852', 'Au']|['V852']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03911h|kEOjeWFsGVDvZaoskT9bJ0Zd9aCT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V852', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||10.11|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|kEVfEIupklHXGWFz9_sYszX6vwUu|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.792|73.3|0.478|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-03766-4|kEj18qOS5RYJ1vZBGygzVQmpUDQd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.1|0.75|15.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701722|kF17K972dv6hYASxLlyghteEUi-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|216.6|0.732|16.28|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|kFBcxMTQHFQ52w0WDN2LL3j4-b4Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.340000249516871|1.25|73.4|0.63|5.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b07949|kFDaFai5ws546ijVuxydNT2NgddT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|148.3|0.722|13.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201900311|kFIxJpM8bwZ4MZmWPAYZJ5OlXTay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|143.0|0.66|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|kFa2Nu98Y45ucPj5_v5fo9ZxMEDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|187.3|0.828|14.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b11083|kFfZiCZjCuHzYypqNyw39VSbgFCK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.06|220.6|0.73|17.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00303j|kG9G0jxYGX7jPW_iqviQqideOGA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.7|0.51|8.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2762585|kGAuiVVXus09RPzU_lpPG9V3s4SL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|114.0|0.59|5.96|['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4cc04685d|kGByCZIJ4k2dsLwKSq540cvBbVL7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|180.3|0.45|8.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|kGJngDlpFPOaVpMVxauvIOV6rm7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.04|185.8|0.594|11.48|['PET', 'Zeocoat', 'Graphene', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']|['Zeocoat', 'Graphene', 'P3HT']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.038|kGKwJA7qt8Qj_IM57C-6fUgqM2tj|a perovskite solar cell with the following device stack: ['PET', 'Zeocoat', 'Graphene', 'P3HT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.0|0.66|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|kGR3JPbY2WsUBvgHyu664TlgNNdq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.0|0.71|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.151007|kGYgumDaVdyTq92pfzbAG41lR2cz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.81|51.5|0.47|1.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|kGbbZAY-ch1gzGGoIXkUbRA7KtJd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|247.8|0.735|18.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile', 'Ag']|['2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.002|kGfoHZ5uP7o8ZQefgejoJ4ONDQwp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|203.3|0.7090000000000001|14.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.028|kGhG4S_kMJun6fS_De0I2GAYDgsH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.5|0.76|18.69|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105396|kGv_168_kP5gN-CHPrKyJ_3Bg-sn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|209.4|0.73|16.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.03.042|kGvlYaOEVHPNMz_1ZtYH85aYrMSA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|187.0|0.61|11.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsta.2018.0315|kH6WtQh3RI0FdDrL0kgxN-pDZmox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|208.7|0.7659999999999999|17.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta01800a|kH7LthnDytf35RAPZdjCodIKhsT3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|kHDhKN3to0tDRzVcJnHZVyFFo41P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|126.5|0.8|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|kHHUJ_aTzOUOOHyESLshTQNq9Qkp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.78|103.0|0.565|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|kHM9zIgP7lFjvgp_ztIz-gzmwRtK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|138.0|0.48|4.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014002|kHNzIqvidRCZM21kGB1n9Jvk6RaN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.41|114.0|0.47|1.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c3nr01542d|kHXEnUE27_PppNA1jSHMMmTMrZxw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|66.0|0.23|0.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04019|kHaAIn4lbXoyfPinlfMrns378ES0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.952|151.7|0.66|9.61|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|kI8H8h3qy_t6jwSYY0EiAh8dTXJm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|110.1|0.742|17.09|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|kIDkppeAyQAjLPB79i11f_EN1RBV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br300C100H533N167Pb100|Pb100C100N167H533Br300|FA0.67MA0.33PbBr3|2.2800002431190025|1.351|69.87|0.5820000000000001|5.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|kIHIUkO8Ejmdu-ser2DBn4wCHIkF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||0.91|195.2|0.531|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.148|kIVXxtNr-vQZXksNaDr1Fvvj3QbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|130.39999999999998|0.625|7.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4905932|kIW1hFfdbHGj2IikC3EwJym4sUqd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br200C1900Cs100H9823I1800N3477Pb2000|Cs100Pb2000C1900N3477H9823I1800Br200|Cs0.05FA0.7885MA0.1615PbBr0.1I0.9||1.08|248.3|0.748|20.04|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BMIMBF4', 'Spiro-MeOTAD', 'Au']|['BMIMBF4', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2020.105805|kI_eZErJmFjeKSjndNpo1-_zV1FN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BMIMBF4', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.1I0.9. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.073|193.1|0.718|15.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|kIjg2iP5xKv2OtFmN5uf6hPf8gJE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|0.2|0.25|0.01|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|kIt2UebSVYe2CLQcZgXk2zRil4Vj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|215.9|0.736|16.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|kItj1dDO8x6PqZHFiikR6qo0eDZm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.68|261.0|0.6859999999999999|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|kIzidQImL8gqOLSBgnQ23xSOG8w6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|220.0|0.68|15.36|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanofibers']|bulk|https://doi.org/10.1016/j.surfcoat.2018.08.039|kJ-RS-RXCrLHU7LW5KW7Baz6hiVa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|192.9|0.67|11.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsnano.6b01904|kJBdta8nICzAk7Nl4QHmE52t3roQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4980000000000002|97.8|0.745|10.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|kJCfsCdnfVh92W3JeZJ9HSIPpLlE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.11|148.0|0.7040000000000001|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|kJNhCPJTjDG1s7Q2N4v9D-t_4D8B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.0|0.773|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00438f|kJQZplfllm0dadhAAkrMLAloN7Sa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5300001631456466||||13.8|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|kJl8GUj4mu6ghuf0QMmYMXGPPHck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|201.3|0.7040000000000001|12.85|['SLG', 'ITO', 'PEDOT:LS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:LS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acssuschemeng.8b04603|kJndrVi7SskoGb9ZnHcZm3ArBziu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:LS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.143|218.6|0.7809999999999999|18.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|kJvGAopny43mORn9URwrZE2vDjMl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C6H18I6S2Sn|SnC6H18S2I6|((CH3)3S)2SnI6||0.49|95.4|0.57|2.68|['SLG', 'FTO', 'TiO2-mp', 'N719', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'N719']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|kJzn2eSuai0vf_LuH_fjcET1PtTI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'N719', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnI6. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6500001759413832|1.0|56.900000000000006|0.51|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b01728|kK1rfW8CPVSFfxWEwMjdAFYMTZHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C8Cs2H40I27N16Pb10|Cs2Pb10C8N16H40I27Br3|Cs0.2FA0.8PbBr0.3I2.7||||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201700598|kK5JMb1yNw5__dyn05A8BZ0yh-vQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|192.4|0.604|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM07', 'MoO3', 'Ag']|['KM07']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|kK5mw5-GcaBqPRAuxpC3JJzt4y_p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM07', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|207.6|0.43|7.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.107954|kKIY6ysd9j5chRwYnwqC12kQfKZU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.67|48.4|0.5|1.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|kKSUa_s3fPlDaybo_myTkjjA7NMn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|215.0|0.75|16.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee01136b|kKTMv9i2SNEZnJLGIDbnjczxxvfn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||13.71|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']|['NiO']|['C60']|bulk|https://doi.org/10.1039/c8ta10876e|kKXR6ADg5Rwb-3NxQ_TzbeldgPMD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.516|114.9|0.507|3.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'PbS-QDs']|bulk|https://doi.org/10.1021/acsami.7b12046|kKY3DlAK8hN685rStGdDPk-Gp3A4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbS-QDs', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I10N18Pb10|CsPb10C9N18H45I10|Cs0.1FA0.9PbI|1.5400001642119578|1.16|246.5|0.812|22.93|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|kKcm7MIcC89IHVHQmjvFxIsGkxlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI. -C91Cs9H546I300N91Pb100|Cs9Pb100C91N91H546I300|Cs0.09MA0.91PbI3|1.5900001695435149|1.06|225.7|0.76|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra28501e|kKgdWNM4LGSHabhUBCvuBqxktonO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09MA0.91PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.6|0.718|13.47|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|kKoeYpPM33NjI4YiG-4e4i6KO9Ov|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NPb|PbCNH6Cl3|MAPbCl3||0.535|110.0|0.65|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Metal']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-017-2256-x|kKoqf9ebpnXtluyhJsPdUNuP8Fjs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Metal']? The composition of the perovskite layer is MAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|201.2|0.168|3.5|['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'Ag']|['TaTm']|['C60']|bulk|https://doi.org/10.1039/c6ee02100j|kL0luBnZgjhiyyJh4V7r7p3M3j3L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|161.0|0.557|6.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1002/cphc.201301153|kL23ho87HURYSH6xJ6z6RsEREnAR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.1|0.77|19.24|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|kLFVM3Yc4ygZR23JuKx2TnJcsyWW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|219.0|0.6890000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201700953|kLJF_kE73G5BfBFv3qhaQ9qSCwK4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|200.5|0.353|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|kLaFRoMwGFnUbgK1YeXjhOpHpLEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.14|['SLG', 'FTO', 'MoS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoS2']|bulk|https://doi.org/10.1039/c8ta12254g|kLc1LjQvPSL9-c8eu-odTHLMdIYC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|221.0|0.84|17.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate13', 'Al']|['PEDOT:PSS']|['PCBM-derivative12']|bulk|https://doi.org/10.1039/c8nj03067g|kLfbYzKRvVknSWy_bguJ5JG9_z-p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-derivate13', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.903|177.0|0.544|7.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07153-2|kLrLKxSdzSnnSJv2KSht6QVcCF29|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|134.0|0.48|6.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|kLstNeYkyyD75--WCeKW61Cqsxcv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5PbSn4|PbSn4C5N5H30I15|MAPb0.2Sn0.8I3|1.2200001300899923|0.6729999999999999|191.0|0.5539999999999999|7.07|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201705998|kLxlG4oJphUXbU93HGwnkfUlVrqN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.2Sn0.8I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.0|0.67|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10526b|kM6mnJrJOfsWa5h68mFYymmTEGu0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BaC10H60I30N10Pb9|BaPb9C10N10H60I30|MABa0.1Pb0.9I3||0.6|20.0|0.4539999999999999|0.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|kMBDua5aZPWC_n5IinZ08xqo42dO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.47|100.8|0.36|1.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pFN-Br']|bulk|https://doi.org/10.1021/acs.jpcc.6b06914|kMFuqHDEglM1Qw85eJjDxTSvZvGV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.5|0.75|15.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|kMIERNk2K-scbyIxJlXBeTVQIcBP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']|['FTA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|kMIEeCysSf06RzWiGGbCfcpqRV_i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|228.2|0.733|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']|['Y2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00432|kMUNT80VwyIbm45cVv8bvT9YWwih|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.670000178074006|1.05|205.0|0.74|16.0|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|kMWAeIS5MgmRhf3lq0Aaf7mBVVer|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5500001652782691|1.02|140.0|0.58|5.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|kMWPwzYqeRmK_iVDYWOzY_EmLBZ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br2C4CsH20I3N8Pb5|CsPb5C4N8H20I3Br2|Cs0.2FA0.8PbBr0.4I0.6|1.7900001908697432|1.23|179.5|0.778|17.2||['C60', 'SnO2']|['C60', 'SnO2']|not processed|https://doi.org/10.1038/s41586-022-05541-z|kMlNcV3KaZir42iuWwiivhaGHuuE|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.4I0.6. -Br3C10H59I29N11Pb10|Pb10C10N11H59I29Br3|FA0.1MA0.9PbBr0.3I2.9|1.5920001697567772|1.028|207.0|0.726|15.45|['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104036|kMmS0olJBAMi1-O2XN9taGwFC3pC|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|228.7|0.62|12.64|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01815|kMpJzgWnrnCmfBTwt0Yh8AjdG4SA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.7|0.672|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|kMy59dzo3U5qeI0eZ2C9BBvZzY8x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.95|187.5|0.642|11.4|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsami.7b04833|kN1sDMpdTRFaCcLP-OitZqOO_xQA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903691|kNGgv59HkKuxWPj8i2l209DahMDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|174.20000000000002|0.76|14.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|kNJJqqavH9RFe9gq5TdknCr2Ryi2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.1|225.0|0.76|18.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'P4N4']|bulk|https://doi.org/10.1002/aenm.201701038|kNMHmUBTnwlQFvJTRjicvubIF-i9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.43|96.7|0.42|1.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|kNfmxxftTg1B5r62Lc7zxtInN910|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.0|0.76|14.69|['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CuO-nw', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b19335|kNvlpRw5_ZgTdLzIzyfrRmr563aW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378||||14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201606545|kNwQAghKN7PQVAh1P9Zv28l9xUdO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|177.7|0.535|7.93|['SLG', 'FTO', 'YVO4:Eu', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['YVO4:Eu', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4891181|kOD-PvhQhKB7Jtni5ep12PUHKiio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'YVO4:Eu', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.75|104.3|0.477|3.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504175x|kOE3aLqGAqPcq_P3ONDAQvKtgr0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.677|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|kOJqtcnWjaUOF_wnN-7WUCtj7lLy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|188.5|0.63|10.24|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.05.019|kOW7qcbnAds5J4k_g3Ye6rBaVLoe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|161.6|0.66|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|kOc-jM9VGrPwz6v0FEsZr1kY5rT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.074|196.3|0.67|14.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|kOcSBb9dJfiYrmfWSF54oBEAoOv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|226.2|0.7|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|kOiZIYOiSM1f7dbEO1wfoz6GrUEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|||||17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2418-9|kOmhMVLKmMYUVzFf6NTK_LQ58Pqi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.023|186.1|0.743|14.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|kP-nXSClmJaY4wJSnpveqgMYITqI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|142.0|0.77|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02646c|kP061EuUHH5hDkFEwONM70cr7mRK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.104|232.3|0.735|18.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|kP4qvbPsAukGnkt9d96oZ1EMehRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.1|229.1|0.738|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.08.056|kPFPlvNh_ETg9UUzbSsQMO5zFnYb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|186.2|0.632|11.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.06.015|kPNGqrdJ4bkqTvJ07NfPZryvOzNk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|193.6|0.687|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'B2T', 'C60', 'Al']|['PEDOT:PSS']|['B2T', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2018.11.029|kPUM97585Po72rKI-W9tECqOQdXF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'B2T', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|204.72000000000003|0.757|15.94|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|kPr2WruK0q9D2ercxUF17BjoxI-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|206.0|0.7829999999999999|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.017|kPt-cvs8IokQIAzyyghHyT8LXDgV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|238.6|0.7|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00938|kPvY2jFxQfoHP76X1xUWs2tMdu1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|172.0|0.596|9.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|kPxUSuNBYzJVngDaaltN6SCeUCA_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|130.0|0.73|10.7|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|kPxfph505ji7ow24u5dDh2R4y_oE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|160.0|0.68|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b05986|kQWo9dstwHMKmGvzS-64F4BPdz-i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.230000131156304|0.37|59.900000000000006|0.3|1.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01076k|kQbdQAqkPQGkHdNJKMgO2b8Ukr9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.03|216.5|0.8|17.9|['SLG', 'FTO', 'Cu3PS4-np', 'Perovskite', 'PCBM-60', 'Ag']|['Cu3PS4-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta12100a|kQdSsz7Ijse4eSYV_YBRsyrTfiKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu3PS4-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C9H31I16N5Pb5S|Pb5C9N5H31SI16|(ThMA)MA4Pb5I16||1.07|195.5|0.755|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.0c03363|kQmd6e2sjyGRdCkxphCgVDzPGnw1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|133.0|0.625|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0042-1|kQnfX9I38SoQFpQgVK91Cw9CgDTg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I129N85Pb50|Cs4Pb50C46N85H237I129Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.58|1.6100001716761378|0.42|81.6|0.48|1.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|kR-BdihC1Buj7CNMuYfa582jYd1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.58. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.1|218.1|0.69|17.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|kREdvGuXxGPF17GjoUoqvDcaq1zl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.8|0.65|14.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-018-0203-7|kRFyXkWzrjuG3udR3yV1ldXK5Znw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.61|119.7|0.28|2.03|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PCBM-60']|bulk|https://doi.org/10.1007/s11082-018-1652-4|kRH_FRBbLVRfq8O_vX8hfpRXU4wi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -C19CsH105I30N28Pb10|CsPb10C19N28H105I30|Cs0.1FA0.9MAPbI3||1.0|241.0|0.772|18.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b11010|kRW5DSzWgGd58TDs26_7OP9_JO_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9MAPbI3. -Br38CsI22Pb19|CsPb19I22Br38|Cs0.05Pb0.95Br1.9I1.1||0.78|30.6|0.34|0.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800504|kRedZ-SnIO9OWTwAmt6KzztaQDO4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05Pb0.95Br1.9I1.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.931|215.5|0.5920000000000001|12.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|kRlCYR0h9OMMPWo_0XA7xGLctsqD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|214.3|0.76|17.66|['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CrOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.surfin.2017.12.006|kS-4050JgLQlqb_rxtbc_W9lCNxt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CrOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br19C100H600I281N100Pb100|Pb100C100N100H600I281Br19|MAPbBr0.19I2.81||1.04|182.8|0.75|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'CIL']|bulk|https://doi.org/10.1039/c6ee00612d|kS10g4jb90ksVp8eQTZa7cRRHziU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']? The composition of the perovskite layer is MAPbBr0.19I2.81. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.05|16.0|0.62|1.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|kS2uqs053FVXRDdrtMruLw4jr1Zp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.7|0.73|15.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b02434|kS31JwezTrxYimu6An_5VN5Tf5NP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|202.5|0.7170000000000001|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|kS4uvepzd_L11U6MdOGCY-d05MUU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.0|0.7|16.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|kSXI0F0BpJ6OeS20y72cuiim64WN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|208.0|0.65|12.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b06780|kSavGobkh376ZgGQv89cmKP6a_FZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|225.8|0.78|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201805438|kSiFnPLKxMkh-kT-V2yFS7CP9O44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.106|232.7|0.7020000000000001|17.55|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.060|kSn4Ec4dcYMYii4ymotKCimEieHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.95|210.1|0.516|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|kStd0nI_c3h6iugDEXhGEvkHP_Nf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.44|89.0|0.64|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp512936z|kSxN_v9kPdcfz0Q3JbTHCchbAcSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C17H30I4N3Pb2|Pb2C17N3H30I4|(PEA)2MAPb2I4||1.05|190.7|0.51|10.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'P4N4']|2D|https://doi.org/10.1002/aenm.201701038|kT8SItzcr8IZKSpTa62NaNCKGsJH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is (PEA)2MAPb2I4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|227.9|0.737|17.29|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HTB-OMe', 'Au']|['HTB-Ome']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15423|kT9gbT-pEn9uj24JCebKm7zaXLCP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HTB-OMe', 'Au']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.885|209.1|0.53|10.16|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|kTKHwNNOF1D0L8Ov-hmQ_EMU4Mcz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|198.9|0.726|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b00843|kTPOmYn8uuVzR4uoz8IELKQEBdx6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|228.7|0.758|18.84|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.105|kTg8h2Ai1xmlQHGuRkD8ISbH-1p3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.68|223.0|0.674|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1039/c8ta05444d|kTgTNho6yKVzHJxvHykyKj5vW-iP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.831|12.1|1.017|0.255|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|kTh9upLjJoRtTzTVTr2aUtoifA8J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|0.84|168.79999999999998|0.51|7.23|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|kTl4lIsPa1BF7wVE1HBoqReT-xeR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|kTyqNGPvK5NbErmBNqYmnvxlYnpE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|133.0|0.61|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02868|kU0pf5OcLIEUhUnnpcae7TSInoP1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|199.0|0.62|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-020-03664-5|kUBanXxLzInMMZz0UqiUDrzIz2YV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7000001812729404|0.959|131.81|0.67|8.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|kUHAShpmPCnV5ee9ILgdpjw8scm0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.2|0.795|19.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bis-FIMG', 'Ag']|['NiO-c']|['PCBM-60', 'Bis-FIMG']|bulk|https://doi.org/10.1039/c8qo00788h|kUSFxBAHtsA2UbjF18Bka7ND-tFh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bis-FIMG', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|47.0|0.66|2.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|kUVw51f3yxJmm4BCfL-p48DI_Ju0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|195.1|0.59|11.79|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00492g|kUcD4E4bSgf5H25i8s56h_VSFNLl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.7909999999999999|147.10000000000002|0.362|4.2|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|kUoBviYpiKhx5k7LjELTN1T1haks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|202.1|0.65|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|kUzpBiUf43NjqP46I-2OoxJX7H2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.02|9.03|0.504|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|kV3uk48Yp8foARY8bNf73pV06nxc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|138.9|0.725|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta00912c|kVEZmwHNlSwdRJfe1zrDsCJQREFC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|184.4|0.633|11.92|['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2019.107630|kVGSJgZw-qnH4KA0jUZcp-f0TfHF|a perovskite solar cell with the following device stack: ['SLG', 'APTES; Graphene', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.09|230.0|0.68|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|kVJqhPVmctme155o9VtCJC4JPowj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|kVNHk9YRZhETHn5h5aWTQYMAiLc-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br260C475Cs25H2455I1240N870Pb458Sn42|Cs25Pb458Sn42C475N870H2455I1240Br260|Cs0.05FA0.79MA0.16Pb0.916Sn0.084Br0.52I2.48|1.380000147150975|0.67|221.0|0.7|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|kVNxu90wjF36C2jBF4TeqGMa5w-k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.916Sn0.084Br0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|190.7|0.762|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-2PA', 'Au']|['mm-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|kVRJXj0GchkZdTVtCmj8JLjF-nBO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|208.9|0.6679999999999999|14.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00948a|kVgX5LWSBmisDERMFC9CG_DrWXRO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|208.4|0.705|13.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.007|kVqJ1zr1vT4AxbyYcektemAa-5C4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|187.3|0.53|9.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974942|kW367Gip0t1wsrAqltomPBBFOxCX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|173.4|0.718|12.59|['PET', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|kWDP0G6ZR94G-TvIl1i5Dq02l4H1|a perovskite solar cell with the following device stack: ['PET', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|122.0|0.6|5.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|kWQcaS1rgd6K_iHIdSw_iyo21ApS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|134.0|0.57|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|kWSQiV5cA6myKaHdOYia8Y1lQ2es|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|186.2|0.61|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|kWYj9O3n8tN9uzWNd-gOKVOoKlNr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|205.1|0.72|13.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|kWmWMIOQeFu8PkFuc1yFh09Z5mWQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|234.1|0.5539999999999999|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DS1', 'Ag']|['PEDOT:PSS']|['DS1']|bulk|https://doi.org/10.1002/ajoc.201800385|kWurr4i3l85p8WkjvzWw1bs74Mn2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DS1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58|||||17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|kWzcxJRedXSqprYWeB38nmf-EgwK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -Br6C17CsH87I58N32Pb20|CsPb20C17N32H87I58Br6|Cs0.05FA0.75MA0.1PbBr0.3I2.9||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904399|kXBzMjY5Fu53saYqihE4HiMWAmjv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.1PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.009|kXJvRulJtlA4oB4BLxp2ooIj3FQG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C100H600I297N100Pb100|Pb100C100N100H600I297Br7|MAPbBr0.07I2.97||0.99|216.0|0.71|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135427|kXPOHAWa8KZpbaQ4WZPrTG_2yHOs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.07I2.97. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.097|215.9|0.7290000000000001|17.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.05.011|kXQS2yyshH7vgMxZtXqwAxX8IHJ-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.936|85.5|0.71|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|kXV8v8gdaM3Tf3irRaxGf3nvlp-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|211.8|0.79|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Graphene', 'Al']|['PEDOT:PSS']|['Graphene nanoribbons hPDI2-Pyr-hPDI2']|bulk|https://doi.org/10.1002/anie.201706895|kXXdv7eJ4tuZRz7pZVyIHiONwwbt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Graphene', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.8|0.6629999999999999|13.47|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02104|kX_wlvKq1UCiOv3hpA9cWsTATTQ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776|1.3|131.3|0.7040000000000001|9.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1002/adma.201705393|kXgDW_aQPTWuc_UNDgd29maXVXI2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.906|202.7|0.655|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|kXisUbDw1r8Tk7DPBaUb12zq7WUv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|150.9|0.504|6.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|kXjmAglJNqpAOe-3Ao6j15zQJyyF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|155.39999999999998|0.72|9.82|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2016.06.044|kXk0sjn0vSPIlprL9IRpuE98UBdl|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.75|163.9|0.49|6.68|['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; TiO2-np']|bulk|https://doi.org/10.1002/hlca.202000044|kXl9BUx8Jg9GLXJG8ckYfz7fVmgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|126.0|0.6|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/7545914|kXokJWwp-WdI7jN6DFYqTnDDxmIS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|145.0|0.64|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc09556a|kXppQz5PBVcguoO8sK3srH-6vJdE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|194.2|0.8190000000000001|13.86|['SLG', 'ITO', 'PEDOT:PSS', 'Propionic acid', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'Propionic acid']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11936k|kXuximQ1rx5kt3VFBzMxA0PTVpy0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Propionic acid', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.8|0.75|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|kXwrABAgs8wWtVwFH1tZUX5d_qQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|173.2|0.625|10.97|['SLG', 'FTO', 'TiO2-c', 'MoOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'MoOx']|bulk|https://doi.org/10.1038/s41598-017-00866-6|kXxB-aykTAuNiqsFD9Zsui4-c-Wq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MoOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|139.5|0.54|6.86|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|kY-QNug2O9uGi2hWzZrYwDZKCuTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee01624f|kY5aPG3Zdt8XvP3tDXVBMecSIUmm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.1|0.7020000000000001||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|kYBPCev8b2rd6gyFpyFaT7rxOtj4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|183.0|0.44|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|kYIcvIU-py3xYPO_eOtGy-52Gabz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.0|0.62|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|kYIig_0WUBknnWkI1bdu4L4fbppy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.96|223.0|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603062|kYNIese9p3jj5KUV0Fe-g901CfaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|163.5|0.613|10.57|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ITIC', 'BCP', 'Ag']|['NiO-c']|['ITIC', 'BCP']|bulk|https://doi.org/10.1016/j.jiec.2018.05.013|kYXNEqBUpP-airwRjw5xSVvNnwqX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ITIC', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|206.2|0.711|13.93|['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['V2O5']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.mtener.2018.07.004|kYg7vq6-D1cE5Q0YGNbNfvgI8gT8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|kYkKgEEtwhUxu20wyTzWB6OFjHrm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|233.0|0.774|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2018.01.018|kYm7vOYI51feGWzseRXR2VJIOJ45|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.9|0.7709999999999999|19.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b01740|kYrhQr9uqzqNPZge3rhqzr22qjV7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.6|0.71|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']|['XY1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|kZ7hCdgwqX-r9WlX_z7C2bgDuW3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|226.4|0.75|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|kZ8H3rUdW0IpSIxhjxTUmV_L-KYU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|186.1|0.652|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500717|kZQFwARdNkOeagUYuiU999RZEDwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5150001615461792|1.01|174.0|0.67|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5RA23359C|kZS1N-qjMKlsL207EmyCd3zM6gXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.0|0.706|15.04|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|kZd2jrjFxrB90HwR2h53RXQU1TW1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.44|131.4|0.58|3.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|kZj4sqxVQIVOVv7hF4QgPYCI14Vq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|192.7|0.524|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|kZjHjehZ6BTzLft2S_cveJeYNT9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.8|0.69|15.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA01824B|kZoFbbX18rMTp3CFRHkY0nP1yUMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|140.0|0.58|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|kZt-ugO0G3l9S0R307r7vCY7Ajal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|210.3|0.51|9.72|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|kZtARwCM0WqVfZpyI1wCy-np5qdX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.11|226.3|0.74|18.66|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201700484|kZzKTpFhDBnGbLpfZ9OI3Qt1KFOc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|176.0|0.69|11.7|['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw', 'CuInS2-QDs']|bulk|https://doi.org/10.1016/j.jcis.2017.11.066|k_3SMWXBiKM7rt_f_9Maadj6iHm8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'CuInS2-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25|1.670000178074006|0.85|90.1|0.54|4.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00058h|k_81_pWUSeQfmDge9vNZoXqJBY40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|k_KsUSGyVeb3MIWW1-BCO0I-NIWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|138.9|0.685|10.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|k_Mt83WIKeN6yljPRkBt7dkJ3JCl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.597|160.84|0.422|4.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||k_RLzQYggKePM7fyErT5k3iWDOLB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.0|0.72|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|k_SEMeWfTgaAR5NbViWGpOFfqTp1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.8590000000000001|149.70000000000002|0.457|5.87|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|k_T1zSlnkKf4Ux7-GSltpxDSgBj0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.5|0.8|19.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8nr10125f|k_bh5De80Bt5jNLKusOrmIDmsuUW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|166.0|0.6609999999999999|8.9|['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdSO']|bulk|https://doi.org/10.1117/1.JPE.8.045501|k_fs_8rDx5DHCYcn_r8glUGoE01e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.9|0.77|15.4|['SLG', 'ITO', 'PB2T-O', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PB2T-O']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/admi.201800090|k_h9ixL_720CUy2f7XFCsWJFpvmZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PB2T-O', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br200C100H583I100N117Pb100|Pb100C100N117H583I100Br200|FA0.17MA0.83PbBr2I|1.98900021208934|0.939|50.95|0.736|3.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|k_kEDhFe1F7SV_k20kHr2GQvayx4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbBr2I. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3|1.500000159946712|1.034|219.1|0.61|13.82|['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['nTi-MOF']|bulk|https://doi.org/10.1021/acsnano.8b02079|k_p1vpoKqedY6ETJymScpdo2kHqf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'nTi-MOF', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.1|0.738|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.inoche.2019.107701|k_sRjFVVseLqLF2937GAXOIg1wlr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.3|0.68|13.52|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|k_te4ThbeNs9KmQrXb8z_2wzyNGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|222.0|0.7979999999999999|18.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|k_xVf2ktzb_Lq5E6ELUULAd2Gnft|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|219.3|0.63|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|k_zBseeWOEcwTx5lwza-nAcWEmhl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|155.7|0.67|8.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|k_zjweSvk1LZj3RZYKBUtZvnWAbG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|188.2|0.672|13.68|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|ka1cNbh2Lb6qkkTiUukg4XN6gXel|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|207.0|0.63|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|ka2NAA6SA5NdQ4YBPR1PPtNus2ti|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|216.0|0.784|16.98|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.010|ka57eNf9jV0U8DgtdJnMnTsb1l41|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19Cs6H95I75N38Pb25|Cs6Pb25C19N38H95I75|Cs0.24FA0.76PbI3||1.02|202.5|0.528|12.24|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|kaC2E1cfM_1P4EsVbF7nKr9e8Woc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.953|200.2|0.735|14.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.jallcom.2020.156329|kaC905Ae4ayJxZBSMRGHq9Z6Kj8r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|162.0|0.75|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'LiF']|bulk|https://doi.org/10.1002/aenm.201600994|kaGFjjI8lt1eI0bUMypCQkMxoGlW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|128.4|0.58|7.54|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/C6RA07549E|kaIGI-tVBulVxDtZ-qN3-aXJDxQZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|199.8|0.73|15.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|kaJ8V-LsMAH4-VaWeYuN1jPA2bvt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.07|227.1|0.797|19.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|kaat7gTFX03vI_nCCzFEzXcBK3uD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.0|0.316|6.3|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|kabQNLJuhbukxslNcy0mPDKjpQwZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.915|188.39|0.515|8.88|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||kae8XICyEE-8z3HkmsxCfjnvh2vP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|203.0|0.71|14.27|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|kak3_AEOTKvSBRifQTOtYDMRQx_C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.962|184.0|0.527|9.32|['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60; PDI-DA']|bulk|https://doi.org/10.1021/acsaem.9b01154|kamLtjSW2o-2v948-KhNZJmifF2i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PDI-DA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|201.0|0.769|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|kangAgab7jOynvoqvraCDfOk2Z9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.898|169.74|0.651|9.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||kaoQb-NZ8PpAw6vpwIwKihv9ar1W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.2|0.71|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01889d|kb-SQGqsqQG3EICEJ1Uex55zOMnn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|202.7|0.7120000000000001|14.22|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/solr.201900061|kb0nm5rTnErXDfZwL1STnIDitUPx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.5|0.753|14.39|['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|kb1SrYAjUZLUpB0_6B_V_kTJfvrF|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C122Cs5H640I291N214Pb100|Cs5Pb100C122N214H640I291Br9|Cs0.05FA0.92MA0.3PbBr0.09I2.91||1.08|196.2|0.741|19.62|['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PEG; SnO2-mp']|bulk|https://doi.org/10.1002/admi.201901866|kb3F0yhrYfFZGbMifJmdrwIjTgTS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PEG; SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.92MA0.3PbBr0.09I2.91. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||0.993|118.7|0.648|7.6|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|kbL5X3m6owtk5Ty7ctjE1jGFab6t|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.85|105.3|0.26|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|kbLz0sfI31HpM8BmGof_PlYAkZrI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|177.0|0.71|13.0|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|kbYgXsSA-gHFL7XwbEvls2LEwdWI|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578||228.1|0.665|15.23|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|kbbdy1dC_HQ78EFuYQJbWTT9DvWM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.5|51.3|0.695|5.35|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'ICBA', 'PrC60MAI', 'Ag']|['NiO-np']|['ICBA', 'PrC60MAI']|bulk|https://doi.org/10.1002/aenm.201600132|kbo9zHHHSoeFyTy3HLm44jgmnTSP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'ICBA', 'PrC60MAI', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.088|216.0|0.723|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|kbyyd3zH1ImQS77HnNfYMUDLcW9B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br17C100Cs5H517I83N183Pb100|Cs5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17PbBr0.17I0.83||0.986|215.6|0.69|14.61|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-np']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/slct.201800804|kc81dWFUjtmtJSP7uRakgDx1qrUA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.0|0.72|16.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09687e|kc8I7jmALHeg5M47kbM-8MiaoLOb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|219.84000000000003|0.8|19.54|['SLG', 'FTO', 'TiO2-c', 'rGO:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Li-TFSI']|bulk|https://doi.org/10.1002/cssc.201601070|kcRjC4rzlDhe3LFrklG7_aZ4kG2C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'rGO:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|183.0|0.402|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ra09519g|kcUhnZ013GKE28_80vYfd1IfGYRR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|164.20000000000002|0.72|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'PFN', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['PEDOT:PSS', 'PFN']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1021/acsami.8b05956|kccvIg5XAfcgqykD7in1uU7gdGCB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PFN', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Sn19|Sn19C100N100H600I300|MAPb0Sn0.19I3|1.3100001396867953|0.82|139.0|0.534|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6NR00301J|kcikMCnl5qn4yC0xIy4smhu2ke04|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0Sn0.19I3. -Br5C2H10IN4Pb2|Pb2C2N4H10IBr5|FAPbBr2.5I0.5|2.1050002244585526|1.061|96.71|0.488|5.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|kcoM9fZnW5bkvDvpSp5ZO8xKCRKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|118.7|0.63|6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-Me', 'Au', 'Ag']|['BTT-Me']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ajoc.201800490|kctKLAz5Wjkdlqg6YUT9LN9zS1Kb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-Me', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|189.4|0.616|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta06689b|kctOrXEWCvP8br_Bz1c6MLoaHc_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3|1.350000143952041|0.96|192.8|0.728|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/2/024208|kctcaWut0IQnxQrkaGksm_5BGxDZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.14|227.0|0.7609999999999999|19.64|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|kd78hDO2frwqowO8DyiEPFVpnguG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|175.0|0.74|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|kd8_mn5sRKuu4lQkjUXbhUSfKzzS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.036|188.4|0.762|14.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|kdAVbIuzzuOq8Ui0hh78Y9Aox3yu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|138.0|0.71|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.161194|kdHl3glHvWN7S4aYKVItlVhZczBt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.121|241.0|0.767|20.71|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|kdLqFnF4X1p5zRX2UQQlrvwihF-x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.09|248.8|0.7809999999999999|21.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']|['SrCl2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20054|kdPEwEC7gSbWwV1dplPjkx-mHK8C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.065|218.0|0.777|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|kdbACGCqVacd4Fz7CBQwy-dhOuKm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.07|208.4|0.644|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08741h|kdeOa6z_AJ45dd13wTcGpAlcjizS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.46|104.6|0.56|2.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aae2ab|kdnAmXkXmqKdbmFyoS6yyKscbMS9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|194.27|0.66|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Spiro-MeOTAD', 'Au']|['CuSCN', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta03315j|kdoPacPqYT4G7wMf-kGV-0H3fP8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.97|202.0|0.6|11.6|['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|kdsZesOFohHrc7OPyfZc362SkwnZ|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.0|0.69|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04122|ke1Eu2lW5TeRuALM62Fif17mCHQV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.019|194.55|0.69|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||ke5AKwMPMRQLEBkZXTThdf3OrEFI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.9200002047317917|1.13|108.3|0.56|6.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|keBR4aADSmyEEVv2HaWo6KsCBfJH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|228.0|0.7509999999999999|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.123273|keBuQ14QnxOKFH8qyV6yLPkr09GY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|9.2|0.15|0.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|keNEa8ll3snyYNmNTd9hte0fcqut|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51|||||17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|keUpfgL2tVXFgB6ILbAYT-NX_Jfa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.34|40.5|0.4479999999999999|0.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|keZMlpEGfuVK_KnSYs5sKYfZR1oA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C19H39I13N8Pb4|Pb4C19N8H39I13|(PEA)2FA3Pb4I13||0.97|25.0|0.36|0.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|keZsj2iVoLXuTmqwLwAFNg1c6DJ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2FA3Pb4I13. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.74|253.0|0.698|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b15059|kedzyFR5r8P6MRbQhxmnKMdW_XA2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|200.0|0.768|16.5|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|kemIIxR7yze8TDB1F2Kxy_L4qKO3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|219.8|0.6579999999999999|16.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|keq71QdrSw86Cmby57njlWXQZDty|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.37|78.7|0.78|8.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|keyga0Heqh7O5IBNctLllcIot52N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|157.5|0.72|11.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|kf40DdX5z80A1ORsbkT-ki8RRXbi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.0|0.5|9.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|kfDNf4bfPdPJyL-aIQ8BRRoUFGUI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'In']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.19|158.0|0.59|11.21|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|kfDR2AorHMZ2h6oSFnqqqTdnr3y1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.9|0.57|11.07|['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-4S', 'PEIE', 'Ag']|['PTAA']|['2PDI-4S', 'PEIE']|bulk|https://doi.org/10.1039/c9tc03877a|kfKTau27YLBoFwQG6VZupWxrKdH-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', '2PDI-4S', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8||1.04|211.3|0.675|15.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9cc08102j|kfWnyUdyxeY5qCYo97hVSNE57YTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|150.1|0.501|8.35|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.001|kfbkl0fjLYtC3pbo9OAwza4oUnDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perosvkite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|172.8|0.5429999999999999|9.2|['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.09.017|kfbsr8dCutxlJ69_o9Szqt5BL3Y_|a perovskite solar cell with the following device stack: ['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.5b03265|kfbyTueiGXVEfTP_p_yvkaFW_rNx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.548000165065007|1.022|226.1|0.741|17.13|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|kfghl2BRwDamTzcZ59BCkJk2UOIe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|150.0|0.7|10.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08848b|kfiQOOkwv1ylR6HIRTFBPztcs_GP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.0|0.66|12.7|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1039/c5ee01169h|kfoS5GZfPSK-amU52BdNURmV0YuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|129.0|0.67|4.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|kfqhmcGgKYxgcdWVrWN8neXYE0JN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.5500001652782691|0.97|228.0|0.71|15.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|kfuPPO37XiSaJv2lecG_Qq-AEaY1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.722|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.05.011|kfuTKEdGADNg1GQyx6TBYPqDtQa6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|214.0|0.67|15.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta07969a|kfwaTLrKOjKXlx-2EHX4DeSOsoKu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|223.5|0.773|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00437h|kfxSJIU_auJXEX7-AAdQVtkVUdEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|94.0|0.69|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|kg7iHINeDduhYND5w1wYIkT0sD0s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.24|65.7|0.75|6.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Perovskite', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc04271c|kg9GIr-CVO4CD1fFZqDUylErx6jk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Perovskite', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||5.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|kgEQyam92I0-ITOe3dBirDplliJr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.77|16.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Ag']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|kgF0Qh4XHgDx2rIk1x_dE5Fu2JRs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|0.7|14.0|['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'Al2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM', 'Al2O3-np']|bulk|https://doi.org/10.1021/acsami.8b22206|kgJBpgSCm9xUBbb9Ickp4cZpPHDY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'Al2O3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|182.0|0.55|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|kgKa_dHj4-tw4cAsbdPsu-9uYWHC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|1.1|232.9|0.804|20.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|kgM-hc6-i_RXOaxMQC19U4cVmosK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|229.8|0.672|13.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.050|kgNfdiaDZ26-A9RRhtwrqk35LMVv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.973|197.0|0.6709999999999999|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1149/2.0161706jss|kgUqy7q1l_6IB6CD5Dn3cR7frAaM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|165.0|0.5|7.8|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/s41598-017-18970-y|kgnziimgKihm8_nkLX5H9akfZ3LU|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.12|227.0|0.76|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta00272c|kgpIvJXtiZguOoKUpJXlGeUOxpXH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.696|100.59|||['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1002/aenm.201902708|kgrrDkV8ayMbAnnpuA2M_yI4FH5z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|0.08|0.32|2.6|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/pssa.201800894|khBzm_6o2epOW9MpRjjeP5_FpNh-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|202.9|0.67|12.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2015.08.021|khD1Q-Z1owRByupOE4QEwUIt4Zcd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.5|0.634|14.15|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.03.047|khQeJE6o-7AUolERiXDf_PQ4bJ1j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.138|217.5|0.838|20.77|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|khR5z3T4EeIu6v2aDQDLiSV8y1DB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C40H240I111N40Pb40|Pb40C40N40H240I111Br9|MAPbBr0.225I2.775||0.98|185.8|0.65|11.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.20964/2017.12.71|khqIuDwJBsep6vqLhhnY6D0owQol|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|161.4|0.54|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|khqRTxKjvaLU4GAgUx40ghpTQtFc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.2|0.72|20.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.009|khrQHcs2gfWsMQO5ZoS1d-uoj2lh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.62|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta04385e|khsANsEr7Hxc4dU-gHULtRBBN34S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5500001652782691|1.13|217.0|0.73|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b03532|khsOd6V9CTKaLB21o5LrXssqU3zB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C100H600I300N100Pb97|Pb97C100N100H600I300|MAPb0.97I3||0.85|142.6|0.524||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.175|khuQjULzD9t7SjbTjn_4LEHvVVyf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPb0.97I3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.2|114.0|0.258|0.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|ki4PDc8fiDrjbb5r25Z6vyOrznVq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -C5H30I15N7Pb5|Pb5C5N7H30I15|GU0.2MA0.8PbI3||1.08|213.0|0.77|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|ki7s42l-UAE3Fxz6FFwsVNh9jpcS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|150.0|0.67|8.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5001326|kiAHa9Ma_AUMXY-5R6WaWU9-wdXt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|183.0|0.616|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|kiF2uZvQvHd8RF3GE2PLEnX1I3YJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.99|193.3|0.51|9.73|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1016/j.jmst.2018.12.025|kiFxZQrGto6JT2JKKbYuTUgC4BS4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.1|224.7|0.73|18.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|kiPYAZItcwr66mEVB0B5Au9Njk7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.0|0.63|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp500717w|kiXQXuPeGsWyjBO16mceTn9nj2km|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.186|205.0|0.67|15.32|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606656|kiXrPMooluNO2A1WV15UmO8DALn6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7Cs3H35I30N14Pb7Sn3|Cs3Pb7Sn3C7N14H35I30|Cs0.3FA0.7Pb0.7Sn0.3I3|1.3000001386204838|0.71|244.4|0.74|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800997|kibZ0GqGB8cOJYri2sAi8C5OnFRt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.3FA0.7Pb0.7Sn0.3I3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.87|210.7|0.589|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|kidGpwGKl7xNG2zqrYiwacM8hBcf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.929|171.57|0.667|10.62|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||kifcJQ0wS64ntx_POqk92M8KMrNH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.2|0.78|18.28|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta04851c|kih5YV4G1SXLC6ci2l3vEli8o6B1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|249.7|0.72|17.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-Pyr', 'Au']|['Cz-Pyr']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj03089a|kioYhFXmUIJwPVDL8lQ87OSqWKg9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-Pyr', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|225.0|0.71|16.6|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|kiwQYMwC_BUHU7VLibZJwJL9q8Zc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|237.0|0.71|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc01058k|kj4xIcz_6ZljmWdc0ranUXr6NJAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag2Bi3I11|Ag2Bi3I11|Ag2Bi3I11|1.9200002047317917|0.72|23.1|0.4|0.67|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|kjLNfx0ILPrl-RuFCwbcwzdKpetE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag2Bi3I11. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|1.01|221.0|0.71|14.2|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00967|kjPCxgT6SyV2ypFliA1YnlgxJyD4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.09|219.0|0.69|16.5|['SLG', 'ITO', 'SnO2-np', 'PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBA']|bulk|https://doi.org/10.1002/adfm.201905883|kjTSNRcaP5ihRjfnPGJI5dGtql7j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.0|0.784|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|kjfpSk61WuRv3wFtYq9vKyyJejad|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|143.0|0.72|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|kjjt0py-GvF-hBXosHTcJuhbRXcD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.75|248.7|0.704|13.06||['PTAA']|['TiO2']|bulk|https://doi.org/10.1039/d2me00032f|kjlBOe0AzuaGc7KEq_MVC8gfeFw7|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.039|192.1|0.7040000000000001|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|kjo1-Z2RhkQfF3U-Mb7Wl1pumDsX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|244.0|0.53|13.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/182/1/012001|kjpIw6mxB6K3oPaXFLpZW5yCBnmb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|86.6|0.31|2.64|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|kjwLWDdV_EhpicWm9p2-YDet42O-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C2ClH12I2N2Sn2|Sn2C2N2H12I2Br3Cl|MASnBr1.5Cl0.5I|1.9700002100633487|0.356|110.6|0.475|1.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/anie.201707037|kk1uWbopyRC5BcGtpZ7qvwqkdUHF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MASnBr1.5Cl0.5I. -C5H30I15N6Pb5|Pb5C5N6H30I15|GU0.1MA0.9PbI3||1.07|223.0|0.75|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|kkJFK9B51Ln1Vf7aE4N-bEyCCLBR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.7|0.675|13.32|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|kkM0EKZzKTfQ3571roa-xRXDQFoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.048|192.44|0.718|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b00980|kkT3Vp1AQyrran65gw55OlVXkFbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.904|153.0|0.55|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04600b|kkUFBCGVnO5vy0v8LSu8qDgdEC1m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|196.0|0.612|10.7|['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01118|kkcZ1vy3tsE4zl8DpHQ1KGhIJW6N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.0|0.777|18.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta10418e|kkjUlfvk4fCawTi9b0C7ciMSiYOl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.1|231.5|0.736|18.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee01096f|kknWMn8y1ovJoa1f69QgFxl6w_iG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|180.6|0.777|15.2|['SLG', 'FTO', 'Oxo-Graphene', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['oxo-Graphene']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C6TA03755K|kktSAXJiGJzRUumq11AmG8rtUfyF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Oxo-Graphene', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.0|0.452|7.81|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|kkwG6D6FxXR5I7Cz7SGRI1Fq37v-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|32.0|0.44|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201503832|kl5qxi7snx3dNk2pFF6yTU6hepqB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.8|0.73|17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|kl8nZ5IJFHVsPdXtRRbVorU_PBYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br27C100H515I273N185Pb100|Pb100C100N185H515I273Br27|FA0.85MA0.15PbBr0.27I2.73||1.0|209.2|0.612|12.82|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5087098|klEtdGC-pXCBAiNWupNyvuhepALC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.27I2.73. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.5460001648517447|1.0|240.9|0.7809999999999999|18.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01978|klGZO2qPaTP59xA4CnDHh2bzeSeK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|klVnrpBu1GPoaNXw3WwgcVUSGyqE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|209.0|0.58|13.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|kl_U5Er7IM9n7rnjy3z3iRFgvC73|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.935|208.4|0.59|11.74|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|klf-mxZybRquLf0tn1kCVqpBjfVO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.6|0.711|14.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|klirzGz2nhw9mBhwPNYvg338USMa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|215.1|0.507|10.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|klsVJNzBLaFHAmFrvjMPM4NyOXq9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|180.0|0.74|12.4|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|km1z6D-4njxTJqIkqLkI_-TxrClx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.82|174.0|0.55|7.91|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|km2UpALeMasFD3MWQWIJLlTcBiXZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|168.4|0.767|13.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|kmA5NZDPaz2vnbL3D1jGZo45tj-j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.95|122.9|0.6|7.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04590a|kmEx44TvGqKnu4xEGUDhf1ad9Nzk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.92|119.4|0.451|5.39|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.11.047|kmKjZgJRMVFr3muLbbo6eipZfxZe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|158.0|0.76|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7ta11128b|kmMmImDfe0xSYwVAC5yZ5IL9visT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.7|0.763|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|kmQiJ3Dd5r7cG-9t1xvIcfvYqSJe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|209.4|0.8|18.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.11.031|kmVFU8qaYVmonToCEXOysCqO-NWe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|192.0|0.789|15.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|kmYRxqQ4FYCR006SnySW5TvziD8U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.01|197.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-019-57015-4|kmZzMGurG8tLZUBIs8N_C8O4YbhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C2H11IN3Pb2|Pb2C2N3H11IBr5|FA0.5MA0.5PbBr2.5I0.5|2.141000228297274|0.978|68.67999999999999|0.5820000000000001|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|kmpLk_pCj51oBqJ-u5VD2jRgI0Fx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|204.1|0.75|14.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900402|kn9HtHpYiwtwUJujpn6q-XGJcQMn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.400000149283598|0.5|216.4|0.66|7.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|knAjJZjh2l66INkF02EjUnBI0FiH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|215.3|0.7859999999999999|17.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2FBTA-2', 'Au']|['2FBTA-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900362|knJkF3T8zho4tn6Fej9V951yMueu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2FBTA-2', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.765|204.0|0.58|8.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|knOjQsDIqB0m6N3xQfRSggi2BGWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br100C33H165I200N66Pb100|Pb100C33N66H165I200Br100|FA0.33PbBrI2|1.7570001873509151|1.17|204.29|0.73|17.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|knUV8vPOwfmjr7C6BVQu4nmA4bZ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|208.0|0.562|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta03765d|knhJlS7Z7iqDNuA-6mKp8Qm4022R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0559999999999999|17.8|0.19|0.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|knjI5oiS_pcaMDpIprv76kUtD_eB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.1|0.698|14.2|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']|['TPTPA', 'MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|knmEdl5dFj3X3xikn7XWKq68zgDI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.4|0.64|14.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|knnURB8gT2uud5UYjRAVs4VUchCL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.71|98.5|0.63|4.41|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|knoOvfkUlmj-ltGLSeHg5B7B1q7K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.97|196.3|0.785|14.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|knroDSQUdscxNxmPFGyAlSYhFL6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.50I2.50|1.6500001759413832|1.09|217.0|0.72|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|ko3JFO4HbBB-zRnUNVyhTUJ_VGxT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|112.0|0.67|5.7|['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']|['PbS-QDs']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04272g|ko7zpzbVNE7CgP1zh4FKl1SkfIIs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|193.2|0.779|15.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201703061|koV9c41Ft14XcUenwYkgug5nc_bP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|147.79999999999998|0.7440000000000001|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|koVnsAy84lM7Dgb84TKM4dW7ZHYO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.778|150.5|0.645|7.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2CoSn4-np', 'Au']|['Cu2CoSn4-np']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-01001-z|kp69eha7TIRBxM0x8diYOkcJWsNS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Cu2CoSn4-np', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H489I300N176Pb100|Cs5Pb100C95N176H489I300|Cs0.05FA0.81MA0.14PbI3||0.96|227.0|0.575|13.13|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|kp6pO3eya825jZ2PwbQ1ekzww6Fi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.27|28.0||0.21|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Tetrakis(4-methoxyphenyl)spiro[cyclopenta[1,2-b:5,4-b']dipyridine-5,9'-fluorene]-2',7'-diamine"", 'Au']"|"[""Tetrakis(4-methoxyphenyl)spiro[cyclopenta[1,2-b:5,4-b']dipyridine-5,9'-fluorene]-2',7'-diamine""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700492|kpFTmdAukkqiuulOfyI8GRec1FC9|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Tetrakis(4-methoxyphenyl)spiro[cyclopenta[1,2-b:5,4-b']dipyridine-5,9'-fluorene]-2',7'-diamine"", 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55." -C5H30I15N5Pb4Sn|Pb4SnC5N5H30I15|MAPb0.8Sn0.2I3||0.85|218.0|0.7509999999999999|13.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|kpFpDo67CFbtXplv5u36ve_N_XZo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.8Sn0.2I3. -C10H44I22N6Pb7|Pb7C10N6H44I22|(PEI)2MA6Pb7I22|1.7000001812729404|1.09|126.7|0.64|8.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|kpOh2tS8jiYmVlCE-LOLu1sNoKdI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA6Pb7I22. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|201.0|0.78|17.1|['SLG', 'ITO', '(RuCp*mes)2', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['(RuCp*mes)2', 'C60']|bulk|https://doi.org/10.1039/c9ta09838k|kpdd0LwuQik_zXqF_rho3PIQpMwc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '(RuCp*mes)2', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|236.43|0.675|17.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14619|kpfgrsNeHxG6sId3mip8YLW7iqAe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.1|198.7|0.68|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|kph5ERmhn1BvlbFGcF77UT8D9ChD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|182.0|0.6559999999999999|11.35|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|kpi7lv5hp8JJOZTYa2WtvL1TyCsZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4||0.5|131.0|0.249|1.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|kpoSM2PqAk6TalDjy_Br_7c2gi1t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|153.0|0.54|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.052301|kpx23La342OEZ4LS7SKugRW1Omgv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|152.6|0.45|6.97|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|kqEehwu-7KmQFjzNo0i6MW7qN7Rn|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|0.75|144.5|0.612|6.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.033|kqJkGm9mROBk3yQ2qsczfWJVrrHD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|1.7399999999999998|0.731|0.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|kqOsw33TFCEAHdfuHXYB3NG2IF3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1021/acsami.0c05714|kqOyyevrLP9chpIrpKLyR4BP-Xce|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.0|0.65|13.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00270|kqU7Jf20LUZLOGVNPeiWBzUjHph3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.01|181.0|0.68|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|kqWYVxZm4VfFR-vUzPSE3LaIKFxf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|90.8|0.569|3.63|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|kqi4SYWJXxjpAeWj9NlgNnoxi7t0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|235.0|0.785|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|kqlLisvuLIbJ3fjUVdGznYVJEs30|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.520000162079335|1.12|231.5|0.816|20.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTQ10', 'PTAA', 'Ag']|['PTQ10', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.8b10520|kqqw6n6ULY3bhdMYGCg7gjnlphRO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTQ10', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|205.0|0.6|11.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|kr55zjCz61iSLzIwkekFrU6mq45p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|221.4|0.762|18.47|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|kr5MT9dWGTAvKAXakgTSBr3jvdoG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C8Cs2H40I7N16Pb10|Cs2Pb10C8N16H40I7Br3|Cs0.2FA0.8PbBr0.3I0.7|1.740000185538186|1.123|198.6|0.79|17.56||['Spiro-MeOTAD']|['SnO2']|not processed|https://doi.org/10.1016/j.nanoen.2020.104917|krEdzmF4ixidLvK6qNmdFTRB9DNy|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|219.6|0.64|14.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04332a|krLh1gLg9eJ9vpH3HkqnQZLTMbRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.855|72.8|0.547|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/8654963|krPnXHi0l09qIUbbSFzR1pByPUJr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I250Br50|Cs0.05FA0.79MA0.16Pb0.5Sn0.5Br0.5I2.5|1.3100001396867953||||12.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|krcX4dErG1yu5Yso9j4fR2tEy74i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.6|0.7|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|krdXRUoV5YXudPIi6bOBB5ni5cTg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.0|0.6679999999999999|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|krg-Ep0B6Y43ybqLLsze87KSU7F6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||1.0|195.4|0.6759999999999999|13.2|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|krmPHD7PuAcAgGftVyR4fTU2Nnfv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|230.2|0.72|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1002/adfm.201806506|kroqEUmpQshFKnfmcLtQfk4-1du_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PbTiO3', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378||||14.12|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'Al']|['P3CT']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01955j|krsQBgbOsEF4lBSTcgMwV0RjayHb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|162.3|0.516|8.39|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|krzQx31CqGVHhH7J2H2HjRMs-3pc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.75|227.4|0.6729999999999999|11.51|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|ks5657oKZqqzZ5_CtYukhpipB9U9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.77|18.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800268|ks7nd0Z74Uk2vNad_T9PiFRGuEtb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.99|233.1|0.471|10.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.099|ksC2AFR1KAiqZu6JePAx2SKhzreS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|174.60000000000002|0.7|11.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta03387f|ksGC_4A8VnsYTKY04-PdPpARwaur|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']|['TPFPB', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|ksSsQL0QqcsfQi-0EZ_FyPbxG2BE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br17C100Cs5H517I83N183Pb100|Cs5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17PbBr0.17I0.83||1.043|226.7|0.682|16.12|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-np']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/slct.201800804|ksToVAgkb0dbiDlmPmu01wD7xAXx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']|['SP-01']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|ksVa0RTs0emCpttOzSVeRhR0zhJj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|142.6|0.59|7.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra09001f|kshAtMBiTwRSX63zKjSOKq0YY6PK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5600001663445808|1.03|217.9|0.73|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|ksiEHltHP4xbE3-rE9s7BJMG4LTm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-3PA', 'Au']|['mm-SFX-3PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|ktDEn5RVdzWnetf4od1aemygh2j8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mm-SFX-3PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.0|0.67|16.1|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|ktcoAHnZc-ZN0FYn5uqjJ1UmQv1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.888|51.6|0.735|3.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137567|kthvKYvMzwTSxmhg4MZAmhC0Tt2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|ktjrUQB5qwnHO4YrjZB_TwRs96vp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|244.3|0.62|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']|['S5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|ktpW19m3VEJVi0y9JcLKOQJEXG0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S5', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|159.0|0.611|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|ku6gA3KNKsFWXXuFBxD2ugfYbrbx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.086|162.30999999999997|0.452|8.0|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|ku8_bjArjgxdg-vyq2o0gUxbZqTK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|214.0|0.63|14.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16662|kuBzNDPdjZGQoSVxsuPKKEfIXc85|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|220.19|0.43|5.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.004|kuNqueYnBYHbH_B4o0pP3oqIoKWl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.09|206.0|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00358g|kuPShdB_BFTYasNI0df9B_1BhS0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.0|0.69|15.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1155/2019/4360816|kuYyAjDCmv69iU7h0M7R_cLEQNJ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.0|0.67|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|kufcUBpn3KDhnOjFDGWVNPjcs8Fi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|||||18.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Dodecylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|kulCGNoIL-aW2ku5h4QhXAhw21CG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|219.0|0.65|13.5|['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CdSe-tetrapod']|bulk|https://doi.org/10.1088/1361-6528/aaf158|kurasxBLs12y27blWxSigNJH3God|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.99|211.0|0.599|12.48|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OME.380354|kv13tocz8lYIoIrict6xUsyjDMZ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.07|145.0|0.32|5.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-c']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.0c02405|kv1KsKLX0EB4WVpw9ZM-96PJH40h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.627|100.6|0.588|3.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c1nr10867k|kvCatXaFmVgVrtbxFCyaeBCytsyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|237.0|0.7509999999999999|19.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|kvIfbHmlowPfD-n3lg6cGzTF3q6m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.88|234.8|0.8109999999999999|16.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501773|kvKXAyhKulcK23yizZ0J6KH7JRmg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|223.4|0.61|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b08981|kvKwRQA_qQyoplj08e2ctQFcrE8z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|247.0|0.7709999999999999|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00801|kvNN-AYkvdSaeOkAyvdXteEhLqVb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|157.0|0.67|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'PEDOT:PSS']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b04019|kvT-JybAJxgCq5H-wD3yZS3Bk6B6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.024|216.2|0.687|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07541j|kvVX0JNZ5PrNibRTpbaUKyZoFEBl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|103.0|0.77|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.6b01046|kvYMsIGC3BuFv8xF417rUc9jCE4O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.15|261.0|0.79|23.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|kvbzprz8kElNq-4Ts_mr1XP0Qsgn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|198.8|0.797|17.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701203|kvcu7q5qdU8hM4GsPL_u2epbb42e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|184.6|0.62|7.18|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1088/1674-4926/37/3/033002|kvfbGED24ICdsvrnvh_3YueQkQ2s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|197.8|0.407|7.16|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.7b00576|kvoiIEpPFGXCuuViiRQ3uxc0dGcZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.871|193.4|0.73|12.36|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|kvypLjqRxp9e6Q43rfG296PRicuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C4CsH20I3N8Pb5|CsPb5C4N8H20I3Br2|Cs0.2FA0.8PbBr0.4I0.6|1.7900001908697432|1.33|173.0|0.839|19.3||['NiO', 'Me-4PACz']|['PDA', 'C60', 'SnO2']|not processed|https://doi.org/10.1038/s41586-022-05541-z|kw25YuVBNDU76kKoxihG_xLvMtkE|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|182.0|0.7120000000000001|12.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201600619|kwAh_zlBehATk7a80qr3iQG646_G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.984|190.7|0.6|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|kwB1G4paKLcIoIRMUJj6HinvI2TH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.4|0.74|16.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|kwCgJhQoJpLRBstYeqM6ieKRGYl2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|237.8|0.762|19.89|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|kwF4wW6_OGo_-odFrq1Jh958o3jk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|204.7|0.688|15.15|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|kwHZUk74ZLGq_VUfXYgPhUOT_TM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|239.9|0.63|12.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|not processed|https://doi.org/10.1038/ncomms15684|kwQKug8MR2ZWNB6VdCIgOPpTFaTU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|204.4|0.72|15.71|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1002/adma.201801496|kwWr9sPzjBqHW9Si4BMD55L03aLy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|221.4|0.743|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|kwY3yRbzLfhyDmkH4rjCYyqCb3o1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||1.021|219.4|0.789|17.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|kwcjiDPDQUTwXtO0jnARjoH4cBXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.92|156.0|0.58|8.3|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Al']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11540|kwdgFHTc1HZAH-PPmdYQomU9bcpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.079|225.3|0.7140000000000001|17.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|kwsUxXYO-q-xgh3revf3oT1iMiy0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.018|221.0|0.706|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.108|kx86h9LHvG-je26he9sZFynLJfow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.92|147.0|0.5|6.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-9734-4|kx9Fb6i23ziLBGVJXU7cfOBKdtCZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|192.0|0.715|14.5|['Flexible', 'IZO', 'PEIE', 'C60', '3TPYMB', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', '3TPYMB']|bulk|https://doi.org/10.1080/14686996.2019.1633952|kxBvNxO4c52VHLZctuZ6KtY-H8zM|a perovskite solar cell with the following device stack: ['Flexible', 'IZO', 'PEIE', 'C60', '3TPYMB', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|209.8|0.75|17.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|kxDmTPXUGKuhvbniTXRJGAqXW9-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|226.9|0.737|19.06|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|kxFPKmVsZGfVClX-_XiaQaN01o0W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.24|17.9|0.27|0.09|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon', 'FTO', 'SLG']|['CuSCN']|['TiO2-mp']|bulk|https://doi.org/10.1051/e3sconf/20186701021|kxHEIWANWZgirJt-HwBIZh9kjT2g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br19C160Cs40H800I181N320Pb200|Cs40Pb200C160N320H800I181Br19|Cs0.2FA0.8PbBr0.095I0.905|1.6500001759413832|1.028|224.8|0.7879999999999999|18.22|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|kxHqIGnF6KGHqzkBscIz-rByzcyE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.095I0.905. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.074|215.4|0.705|15.81|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|kxOSpRJSdbGFkCmbJhFlvJ0ydg1g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||0.873|174.37|0.5479999999999999|8.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|kxSbdkpOrWVO3UH2MdU_uyHJWhmg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -Br9C36Cs4H180I111N72Pb40|Cs4Pb40C36N72H180I111Br9|Cs0.1FA0.9PbBr0.225I2.775||1.03|225.0|0.7859999999999999|18.5|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|kxU_elh6w6Hf2K8Esx0YPRY7IgCw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.225I2.775. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.59|243.0|0.6409999999999999|9.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|kx_C-wBJZjv4QkkMteAMiD4XHyTp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br33C100H600I267N100Pb100|Pb100C100N100H600I267Br33|MAPbBr0.33I2.67|1.6200001727424491|1.01|215.5|0.682|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07647e|kxsyH9nJlkFGigkelzqIvlAZKpCD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.11|222.2|0.69|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.027|kyCvve7R_d_uEBrozo97Kj6li-eh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.17|139.0|0.66|10.7|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500312|kyNWC7LXEhXiNHsFZ8kiN5vXsGmx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|212.5|0.63|12.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|kyOPiHhEuOwtVUgvanS9CpuLfVzC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0490000000000002|196.5|0.74|15.29|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|kyP-qe1_fYE9w-9HqGR5I0W_rZDj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.0|0.713|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|kySsXO0jOHdHmkW8I9jXfuUNwTZp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']|['SCZF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|kySskCpzfQreWd9kz2EzS9IcOpR4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SCZF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00080d|kyVa75mooUXyg-FVGEw0_Q2_A0a4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.964|188.9|0.5489999999999999|11.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153272|kyVvOENWyJL5OOEzvD4wQ0-AT50z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.91|144.4|0.53|7.04|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1246/cl.150814|kyjkXkmjL0f9JhhAXHM2HdIpdghm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|0.96|205.0|0.68|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01345d|kynC5NWnlEYAYzZVcJlmoVn7i2b2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.77|192.0|0.68|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10854-017-8094-9|kysMuWLcghoNnitAlpdlIiZ7zcQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -C18CsH90I60N36Pb20Rb|CsRbPb20C18N36H90I60|Cs0.05FA0.9Rb0.05PbI3||1.07|242.8|0.7|18.15|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|kytFtiQ37Rg8uypTOjyKEzgUM52S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.9Rb0.05PbI3. -Br32C125H675I93N200Pb125|Pb125C125N200H675I93Br32|FA0.6MA0.4PbBr0.256I0.744|1.7200001834055632|0.626|139.8|0.31|2.71|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|kzMMdBJXlIfsZdv1BfTHYpF0psMF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|215.3|0.723|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|kzSjQNjmSJfAh5dcO38DqItNOqBT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|193.0|0.6|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|kzbi1_6f9co8MHj4nBXdGPap21-V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.96|161.99|0.69|10.73|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']|['18-crown-6 ether', 'Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01968b|kzcroyRWtNQp-Qbfl-brRjg6rPCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|186.4|0.8|14.1|['SLG', 'ITO', 'PFN; TT', 'Perovskite', 'PCBM-60', 'Al']|['PFN; TT']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|kzhrYMweAbiDTpKQSBXsEarT2QTm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; TT', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|148.8|0.635|8.22|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s10854-019-02199-8|kzjMgsd-X8WXtsu-BLDGFduFsIq2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.952|218.0|0.65|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700872|kzu6FHS40MbGX4zh-G4Eqq43l4Su|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.725|170.5|0.52|6.5|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|kzyCKwp4UAmzLK-fh_GsiG9BqFQK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.7|0.688|14.48|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|l-23hfz1oS8bv_d0lTJEzOoGXpYP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H34I10N6Pb3|Pb3C10N6H34I10|BA2FA2Pb3I10|1.5100001610130236|0.92|123.7|0.53|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c7qm00472a|l-6shXHlziYP5Mx1dh55FBaTjg87|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|189.0|0.632|11.0|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuSCN']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.5b00116|l-9yDizp8jcBs9Vmq8gtU6xLnuII|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|159.8|0.76|14.37|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|l-Qvzer6YHjjIgApBFSJRQ-jLQD0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C100H513I249N187Pb100|Pb100C100N187H513I249Br51|FA0.87MA0.13PbBr0.51I2.49||1.13|216.0|0.75|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X18', 'Au']|['X18']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900196|l-R_j3_OCceCiuBDsPgctOvM7vdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X18', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8029999999999999|167.0|0.7440000000000001|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4ee01216j|l-j9rIQ_F3EIQEdwGlpGmXkDELxk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|152.3|0.44|4.69|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.scib.2018.11.004|l-jx6AyQofUau11ln-203SMUkUZW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|243.0|0.79|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|l0-bdrIQOsE3ctD8h4ZcIY9dGw2t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.71|16.7|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-04028-8|l0334H-Zutm2YyjhdrE2sX2r2UlC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.4|0.715|15.83|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|l05hK4OPE_-CUJXzRe0njfJG_LRi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|197.1|0.762|16.4|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']|['P3CT-Na']|['PCBM-60', 'HDAC']|bulk|https://doi.org/10.1016/j.orgel.2017.06.006|l07aO9TOAVL8vMR-59Ht1uR_nW9o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.0|0.755|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA06718B|l08U_BGNEvCZtRNKiZL4AIBDVZPo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|155.8|0.59|8.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|l0BuhsrvvRbXrNXMLuGcwVif1NBH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|186.0|0.71|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|l0G7tqpMw9UVCQuvWPDUTV9N-KD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.144|226.4|0.74|19.17|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|l0HyupmXwHuK9LemA1rjT8zHYbv9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|160.0|0.64|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS; Sorbitol', 'Ag-grid', 'PET']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2016.1176512|l0Nqn8BV4i13jgNhao_B1bWKjxV4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS; Sorbitol', 'Ag-grid', 'PET']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.96|210.0|0.66|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|l0PFVvW9RfvUSzYJGZBcslWu8lSY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.6|0.763|17.12|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c', 'C60']|bulk|https://doi.org/10.1021/acsami.8b05560|l0XLKuDtu8_aaltUa1MaDBAvQqah|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|l0sqpNtv2zHaerG2b2LLp1s1p7kC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.044|72.2|0.573|4.31|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'CdS-QDs', 'Perovskite', 'MEH-PPV', 'PEDOT:PSS', 'Au']|['MEH-PPV', 'PEDOT:PSS']|['ZnO-c', 'ZnO-nw', 'CdS-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2014.12.004|l0vNO2H5-Kbs5uFfWCIxwgpKrJWN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'CdS-QDs', 'Perovskite', 'MEH-PPV', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.06|227.1|0.75|17.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228210|l12CZ2Z26JeINkAVGRsj8_ni31-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|227.0|0.6940000000000001|15.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr01763h|l19JCdsfy6Gv-oABpmjx7AT5WRPo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.72|0.7609999999999999|16.11|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|l1FG8HHt4XvhwGaeF-9szYs8Q7Jf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|178.70000000000002|0.5479999999999999|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150238|l1LYldEMFkzNgSzmWdAu0SOZIRGq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.0|0.7|10.6|['Willow glass', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsnano.5b04284|l1QwkGvQH1hTvR50vhu34WSnnkMQ|a perovskite solar cell with the following device stack: ['Willow glass', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|212.0|0.7809999999999999|17.9|['PET', 'APTES', 'AuCl3; Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06465a|l1T4co-zew_LUsG4fWYGtMpdyhZK|a perovskite solar cell with the following device stack: ['PET', 'APTES', 'AuCl3; Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.2|0.72|15.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|l1hyeMKl3NlocXZbtA3teialsHIX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.2|0.807|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|l1jkxr4XJXCZRXgYDjCw1H2TGfCz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|155.29999999999998|0.514|4.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cs2CO3', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Cs2CO3']|bulk|https://doi.org/10.1080/15421406.2017.1338095|l1kbv3_YsTi5uVtlD2evNFS68FJe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cs2CO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|189.7|0.635|12.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|l1o77zIRbIM5uFSYdvYzJ2QQ_epz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.15|229.0|0.76|20.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']|['PTAA']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.102|l1owDKGeG5EAdfwva8x9XVlgz4-C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||0.31|62.9|0.446|1.26|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|l1pxb9krYMM-i6pxVMppTBtPlVZp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|77.0|0.44|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.1243982|l1qHQT1un4J8kGE9Djw4-lstzl__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.8|27.9|0.59|1.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|2D|https://doi.org/10.1246/cl.170428|l2DN2qedQfifHqmoY5TMZPfMh4dR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.87|160.0|0.57|8.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|l2GRAwO9-xnPw7brv-MHXun0wrfc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4||0.53|174.0|0.38|3.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|l2GuoafYrQJDWAITNqmrQSJQPtdg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|202.0|0.737|15.32|['SLG', 'ITO', 'Zn2SnO4-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4-np']|bulk|https://doi.org/10.1039/c6ta08565b|l2LCSCa7H3uGNceRnNdvskadBCdB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Zn2SnO4-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.531|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|l2T_i4gVKcCYbeEY7lzGXY364HaZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|199.0|0.62|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPPI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TPPI']|bulk|https://doi.org/10.1002/smll.201403344|l2UFwttcMhccsKexxJVAIhXyQ4gy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPPI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|200.4|0.6509999999999999|13.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|l2cSw-lKVopdtxwSWYlnjukVh_1i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.0|0.589|12.6|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201700222|l2k_Icp0kxqUHANwGmIW6qnCKtv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|185.4|0.53|8.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|l2tIog3D9ag9Ji7t6P3-oSRkRz-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.0|0.6990000000000001|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe', 'LiF', 'Au', 'Ag']|['PEDOT:PSS']|['CdSe', 'LiF']|bulk|https://doi.org/10.1186/s11671-017-2381-5|l2wfLnngXS_NhS2WesPdiYtKO8nM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe', 'LiF', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.2|0.693|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|l30Zg9SbNFPqtIl5EXqAiroD6QpZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|156.0|0.58|8.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b16394|l31YgbrMMG91dPEit6aIek7xCEoq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.0|0.7390000000000001|16.27|['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBTMT']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900421|l35hb5g_R0XrdUPSd2IutxrBhPtd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBTMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.764|76.0|0.33|1.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/jccs.201800173|l3M9foz3z-NfmA81PXuHXbwyQu6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|182.3|0.6679999999999999|11.41|['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanocones']|bulk|https://doi.org/10.1039/c5ta08375c|l3gccxP7dgCFrs0fk3spJ58Q5BKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-nanocones', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|235.0|0.753|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700027|l3nBy1ZwtIMl7slZZEmsr0G3_lXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|128.0|0.49|6.6|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adfm.201905163|l3ntSuUfyjWT7dUjZXh-gPHy9l7U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.5|0.648|16.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6dt00900j|l3pvYERMhceCeR70AyYbuOFaOnKR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|137.0|0.64|7.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/jz500833z|l3tuFXutboL7VFCXFAOFysWdPUh4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.895|176.0|0.71|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|l46QQMKye-dOuWRQrcIY3MvXNdfX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|224.7|0.64|12.65|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|l47iyOO-VcmyMRFbke9BI9ooUM-X|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.39|5.2|0.54|0.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|l4AefpgquLQPZOsj_UCtxWHZL4_7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.04|155.2|0.53|8.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|l52Qb63nFYePZA-LUx0cSPP9vsFa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|213.0|0.59|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.104|l537QgMSS5rMa7-L-1gt1JtlLURB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|138.0|0.6990000000000001|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee01720c|l5MI4aDlowMqajNpJUa3EUQkQTBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.42|111.0|0.752|3.6|['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['CuS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.tsf.2018.07.037|l5YQ8wfhDyiqLlLHw78yVb88u80J|a perovskite solar cell with the following device stack: ['SLG', 'CuS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.691|86.0|0.402|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.03.021|l5Zys3SrqvKafB3JHKTwOFuRsLFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.0|0.63|12.3|['SLG', 'ITO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1021/acsami.8b11049|l5n7nIve-NYiqUovn8e5KhrcZ20B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.2|0.74|16.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|l5tX2Up6vqconirdTZkQMIdBjO8H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|154.70000000000002|0.45|5.58|['SLG', 'FTO', 'Ag-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Ag-np; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5093864|l60zKtndT2agVb7hThsgURZ9XZM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|132.0|0.53|7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b08398|l6456YFCTRVxD0fcNTY_489bIkgZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.135|21.3|0.5|1.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.021|l65ioKCTwgQczLwKW1d0oDEGGsVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|208.8|0.37|6.86|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|l69at_v-oYtgTa8rFf7swkpoOIDh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|211.1|0.6990000000000001|15.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|l6a-FBzGhdWhhlYqUwcyf1YlhvQr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.852|102.65|0.6709999999999999|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|l6ppigg0Qv1abJEsL2UrYCOY4bsq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|35.7|0.6759999999999999|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|l75URH9ajbpirxJF8dtpeX5uKs45|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|169.0|0.7509999999999999|13.58|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c9se00438f|l778sM70be0dB3X4gShcfzdKgCME|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.1|0.8|20.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17338|l7Q-lvPrOonDEGA5YzKxi7smp9Io|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.9|0.73|16.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|l7Rp7a0rCLQ7Z-u2_W6uyp-gmiuO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|l7euKzjz227VP7Kcxxdnutu4Rdlx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|238.0|0.7909999999999999|20.34|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-c']|bulk|https://doi.org/10.1002/solr.201900241|l7gpFUyaxhVy2BKfRtX2Ir1AQq1r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.5400001642119578|0.86|226.1|0.64|12.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12939|l7hKxb-Xl5cwXkg3M30yz_3zs3oW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|162.0|0.53|6.84|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|l7iPVzqoDlb44bAt2UilpsdbK3Hg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|105.0|0.51|3.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500118|l7nwlDFI3lgp1-VA_FD9VLNb6UZo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.59|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b06343|l7o338N-YYIKGPBgDvqrfnbFUxs3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.88|231.0|0.5429999999999999|10.94|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|l7w-i4KZjzQ3dHwAmD7ZVAPovk2J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.55|274.0|0.667|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|l81u7frk8tkD5ESFiMCDFwvty2ve|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.85|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|l85Q2L25ovoDvUOw-4a3TFxlcn6d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.0|223.2|0.72|16.1|['PET', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|l89P8Hws6DOluABIJPhS5QZSKF4D|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3||1.053|218.4|0.6890000000000001|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr08741h|l8FYAN5QcFllK8QpPcqi0EoVy7RT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.76|['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag', 'Au']|['NiO-c', 'Al2O3-mp']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1016/j.solmat.2018.10.018|l8HJ1No53ridB4ufnNxv5UJgBwa9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.769|288.0|0.755|16.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.scib.2019.08.002|l8Mt60Mt3o1KDgvYjAIgw0z52UNd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -Br180C83Cs17H415I120N166Pb100|Cs17Pb100C83N166H415I120Br180|Cs0.17FA0.83PbBr1.8I1.2|1.930000205798103|1.3119999999999998|150.0|0.7290000000000001|14.35|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|l8NCcDPboj8StQf2WyqkbXbQfmUA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.8I1.2. -C2H11I6N3Sn2|Sn2C2N3H11I6|FA0.5MA0.5SnI3|1.380000147150975|0.63|134.8|0.477|4.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b08859|l8R8BF5P1a5Bt66Rv4-A7UVAeD9N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5SnI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0400002175275285|1.212|113.7|0.63|8.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201900611|l8UK_FTbyHxi5TkClCILYbFbP-hI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|192.0|0.654|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.108|l8gIgt52hshYU5jSIr_pbtcvQD7T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|139.0|0.432|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|l8jUH-fnjcdOaurxvuBO84HaSXUD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.695|164.0|0.41|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|l8x0ShQ_4tJz8D78F9Vfb7shHYTr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|120.0|0.6|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2013.11.053|l9HHAqK69-pnd12eObyKBuvFs_eO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.1|0.68|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1002/aenm.201602105|l9IBV0bnvzo7bQQrsnXbQysFGddj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.4|0.64|14.55|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.11.020|l9KuHiLZSe0cA4JEiqjMvfFa5U64|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|1.05|53.3|0.62|3.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|l9LYBzPbjulQkIr8MJaH0oVcJmAg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|190.0|0.64|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene', 'Au']|['2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201310877|l9h8uj5JkWPZQZQRrexwqF1TMI1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2,5‐bis(4,4′‐bis(methoxyphenyl)aminophen‐4′′‐yl)‐3,4‐ethylenedioxythiophene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|231.9|0.613|14.78|['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au-np; TiO2-mp']|bulk|https://doi.org/10.1246/cl.190233|l9nNVv7B7XVsLqrJBQOlv9dj7sH0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|121.0|0.61|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|l9pKRkj_qV_h_iOqN1Edqs9Zr2KD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.3|0.6920000000000001|15.54|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|l9w8v5Q4qS7zSN7G4eBXpA8Nl-F5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.05|226.0|0.72|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|l9y2SC3VjtWXp6nTjAsAzF83qzO_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|172.8|0.596|10.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2918|lA1AXIOrdvHdENJHTCvwb7jjMv0_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.01|186.0|0.486|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|lA5GKcmMKy7hn2ricKPOjUKfOcF7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|231.1|0.76|18.75|['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09101g|lAJXW0C-0hvua-bZBkiOu84GMxsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|203.0|0.63|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c8ta10892g|lAMVGFqy6KhE8W47ukgXnDMyjeBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|1.07|161.20000000000002|0.54|9.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|lAPZxPY_bbrXdnqTEA5ii85i3rDZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|145.2|0.647|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '3-aminopropanoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp', '3-aminopropanoic acid-SAM']|bulk|https://doi.org/10.1007/s10854-018-0365-6|lARw8Murav-Vt30_Z-GVRPYtC_E1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '3-aminopropanoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.5030001602666054|0.74|109.0|0.4|3.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|lASyz-pZ-yLxL2Rgy34zJuS1GdUf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||185.0|0.743|13.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|lAXUxzLaP5sRn1HMeKJlu1oP_Iht|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.972|228.0|0.635|13.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07071|lAXvboEaT8-h3NNY-uIRcPzXT4ml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.0|0.77|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-NH2', 'Spiro-MeOTAD', 'Au']|['POSS-NH2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00050|lAZK0ISD6g70L8EqOos8GjPVtH7k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-NH2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiFeO3|FeBiO3|BiFeO3||0.56|42.17|0.5720000000000001|1.35|['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']|['Graphene']|['none']|bulk|https://doi.org/10.1016/j.optmat.2018.07.071|lAg3OqljrMa3jDDa9jA8bqVDG24R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Graphene', 'Ag']? The composition of the perovskite layer is BiFeO3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.054|247.0|0.7490000000000001|19.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|lAnoqQ_8u46aBjiTgYMyVlLYmq5L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.887000201212964|1.2|138.37|0.592||['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||lAy2tS9ZXvR8ZZOulLG8VtFBs6gP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.023|211.7|0.774|16.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|lB-rIKhe1-o41wF6OD7NDlO9AoLl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.07|226.2|0.7040000000000001|17.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.040|lB5VFH08ZiluWbB632idkj8OtTdL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|221.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b01783|lB6VlRxzcK8XmbOrNVWSewciaHgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6709999999999999|150.0|0.66|6.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|lB8nOe3Z8c7jA30EAdUMmF-mKuWd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|226.2|0.59|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|lBJBrPsewfZ6cpl3MlYaee6Xx58I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|28.6|0.42|0.6|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|lBNfqoqZDnfTyB2Ph6lVFaYtxmGT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|218.9|0.7879999999999999|16.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'D-C60', 'Al']|['PEDOT:PSS']|['D-C60']|bulk|https://doi.org/10.1039/c7ta00362e|lBTowg3cFzMLk3k6wH8jJgYZU5QZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'D-C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.10000000000002|0.71|12.22|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|lBXMv1CiDhuCK-GhxOAYemxJhI_c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|231.0|0.8079999999999999|20.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PhE', 'Al']|['PEDOT:PSS']|['NDI-PhE']|bulk|https://doi.org/10.1002/cssc.201802234|lBafaz4e5wJpdTmD3daJi9NxYwWk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-PhE', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|126.0|0.583|5.68|['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['FPDI']|bulk|https://doi.org/10.1016/j.solener.2016.04.017|lBnaRlhw7FU65YIKwUsvLaZROWSi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FDPI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|180.0|0.4|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|lC2zue22ty2EztnATuBLaEVYft5R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.04|236.1|0.69|17.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|lC50oTeY3B82I9ntg9_wFGt4FOT1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|157.5|0.773|11.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|lCAYPiY_rKlxktfknHr8XQGYpYSZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||15.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8ta10876e|lCFlIjwDfiO-q4X4D_GDOoCiM9NV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|202.0|0.51|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.223|lCHnKDnmQxvjgtJYNxZNYT-PyOPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.176|146.2|0.7829999999999999|13.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|lCSbmKVMLUn3KVslNy7d8qoI-CUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.112|231.3|0.742|19.08|['SLG', 'FTO', 'SnO2-np', 'Ethanol amine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Ethanol amine']|bulk|https://doi.org/10.1039/c9nr07876b|lCV8wji0yYx29kRZFZ343Xz5zvOo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Ethanol amine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br52C95Cs5H491I248N174Pb84Sn84|Cs5Pb84Sn84C95N174H491I248Br52|Cs0.05FA0.79MA0.16Pb0.84Sn0.84Br0.52I2.48|1.380000147150975|0.21|159.5|0.52|1.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta11891d|lCj44P4hl5GfPE_m-g9zIxGZvuNQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.84Sn0.84Br0.52I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.5b03265|lCvTnRihBfuAxrflLnO-Mxp75AlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|223.4|0.789|19.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|lCwN3JR6O0yN8r-xelSL4alNn1jH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br39C50H300I111N50Pb50|Pb50C50N50H300I111Br39|MAPbBr0.78I2.22||0.969|141.7|0.716|10.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500717|lD0uKnFyWWjx_NbxWLxY2Ir7clhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.78I2.22. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|209.4|0.64|13.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|lD1-_0K-bHp1LISPnmOyC315Kc4i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4810001579207206|1.11|228.5|0.72|18.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|lD1_Y1uf8eg5KgZLDwe1Pq5zHuco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.0|0.4|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4994085|lDGmB4aeEnj9MoS-rOV8tu2InFKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C80Cs20H414I250N146Pb25Sn75|Cs20Pb25Sn75C80N146H414I250Br50|Cs0.2FA0.66MA0.14Pb0.25Sn0.75Br0.5I2.5|1.280000136487861|0.7|207.4|0.67|9.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|lDQxXGMRZNz7tKWlEjSbqQNDdVgL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14Pb0.25Sn0.75Br0.5I2.5. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6500001759413832|1.01|204.0|0.62|12.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta05470b|lDVuZMmHImjRdpwzJTZio62wkleC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|25.6|0.298|0.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2019.08.042|lDWUmZFN456YUBJk8QcArhy5PaSd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|165.2|0.8|19.36|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|lDg7m_HOfkRXbJe5Zxq_0V3OYX5A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|168.1|0.59|9.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6qm00248j|lDv4onm7Lk22FJBFwXh2bv482zeZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.4|0.7390000000000001|14.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00346|lE-VaIw9UhT2hHnFcVIznO6ma4Th|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.1|229.1|0.738|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.08.056|lE8dwzFauuS-hrOomjNbwvznfocX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|152.0|0.64|9.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'bis-C70']|bulk|https://doi.org/10.1016/j.orgel.2017.10.037|lE9CpGQ4pW0pX66JxNUhwlqChfV7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.4|0.742|14.42|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNASO2C7-Cs', 'Ag']|['NiO-c']|['HATNASO2C7-Cs']|bulk|https://doi.org/10.1002/anie.201604399|lEGi7j6mhv_-JAuX1uc4A52eqmv3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNASO2C7-Cs', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|213.8|0.75|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|lEJYnrZi5NC4kspsDUdF3UKXKlKD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|202.8|0.486|9.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.03.145|lELdfLxiV6pDdxN46QTmuLDxm6sI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.8|0.775|14.97|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|lEakaSSYJLHMMSbyBdMDKVkObRcA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|90.3|0.5710000000000001|5.41|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|lEo98hTDwxPqzHrrSAR9tRDc8fxN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.74|172.0|0.45|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|lF3ydavx6__UdtcdAjOdvaAoX2zJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.92|156.1|0.474|6.73|['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']|['BV-FNPD']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900130|lF6NPyIBMK36GtKuEMERwik1_SUN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BV-FNPD', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.17|111.4|0.73|9.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|lFBW4iUzpSbuE-lFxcdawPiC1BHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|170.79999999999998|0.66|8.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2016.04.025|lFDhLfbOFNf5ddER1Rwg32AV0j3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.11|159.0|0.57|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|lFE-TLf9Iv-_isE_eOIPvxo_oCfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.6|0.6990000000000001|12.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HPB-OMe', 'Au']|['HPB-Ome']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15423|lFM-8OzAAGo1uGAyRKrqz4R3ip5q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HPB-OMe', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.108|224.6|0.726|18.07|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b09482|lFOurJdxZ-EhqM8Gou7uEcHEg6WS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|227.2|0.75|17.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04332a|lFTqQPEYCSShBDUmexpH1nQ_NcGr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.2|0.77|19.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|lFUmae8osNeFnAWJkD5fh6hpab5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|1.11|236.2|0.77|20.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|lFYr5jj-FMbdM93IdOw9utm5y5Pc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|223.2|0.75|16.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|lFcXi2BBrh5R-zLoZ7yPsWNK85yx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.33|0.2|0.27|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|lFdYVO-AWfS0dNv-7_lpc_nmCMw8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|221.0|0.69|14.4|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.06.049|lFmzjR7iEJoocmaJxIezSTgPtnrX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.69|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|lFpOFIMJ0FOHaMvluq7V6RWkxlpO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|235.2|0.77|19.56|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201800475|lFrAQaWc20ktkkKUW82HQgnst9BS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H554I249N111Pb100|Cs5Pb100C95N111H554I249Br51|Cs0.05FA0.16MA0.79PbBr0.51I2.49||1.02|184.0|0.708|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2020.02.052|lFtUaRttxz_rdYc3Xp31QasQngz0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.16MA0.79PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|lG0oQunIWCmySwwd1M-le9ZW-uNz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.06|213.0|0.54|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']|['Al2O3', 'CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|lGFKsJjqVOX9bXYepXBhQxC5uFTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|118.0|0.36|3.5|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Carbon-tape']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nj02847d|lGPdym5NEq2fft5KloJF8-NG0Zx6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Carbon-tape']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.96|206.7|0.691|13.72|['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|lGQFlX6nVQX-pdsv__aB5JDIVM6a|a perovskite solar cell with the following device stack: ['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|220.0|0.5820000000000001|9.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-015-1020-2|lGX5ut3b5Tuk2Xm6OITQAVKgzYuY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|149.0|0.62|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|lGb855vZjrbV-TVqeq_QvTG2x-c2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.571|74.80000000000001|0.785|9.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2Z1', 'Carbon']|['P2Z1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01151j|lGpAGEQpGOd_HAkFoQfVKCCwEiNI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2Z1', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C9CsH45I10N18Pb10|CsPb10C9N18H45I10|Cs0.1FA0.9PbI|1.5400001642119578|1.15|246.5|0.811|22.99|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|lGsyp_70Z9BZfCJyv7acJm8qm3yX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|177.89999999999998|0.599|7.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'H-PDI', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['H-PDI', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02617j|lGv8biZq33G2p7GRpP3cSlOHZPv6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'H-PDI', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs4H489I257N176Pb100|Cs4Pb100C95N176H489I257Br43|Cs0.04FA0.81MA0.14PbBr0.43I2.57||1.08|223.1|0.77|18.53|['SLG', 'ITO', 'Bphen', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Bphen']|bulk|https://doi.org/10.1021/acssuschemeng.8b04281|lGvShaVa-zoTb_hzW6JPvZO-7SyA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Bphen', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.0|0.56|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|lGyv2GNvu36BiggZTi0urS9Fqnik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.015|210.0|0.72|15.34|['SLG', 'ITO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.jcis.2018.10.011|lGzm742RV44BlnhWcXhUBNnuc4uF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|162.0|0.465|7.5|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|lH2c0Pmlbd1Uh-6zLVeyxkfYUz7E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.7|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|lH32j_MiFxCVd1tbP_b22bDBooYx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|249.9|0.61|13.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.04.024|lH6aV_36Mu5J8zV3z7TPGTS3F-rt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|172.8|0.648|11.77|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|lHB4UQBr9j82Pw8FEjMkcB7STL8G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.0|0.782|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO2-np', 'Au']|['MoO2-np']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2017.07.160|lHOTraubXqkHRr6g3fB7xvYiymWn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MoO2-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|184.1|0.73|13.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|lHT_2KVofK5yfKN1lwxE1ZDPOHFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|203.6|0.616|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM05', 'MoO3', 'Ag']|['KM05']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|lHWHCVAECjzEwdrDy1Sy2Tn22JHj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM05', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.092|214.7|0.784|18.38|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/aenm.201700414|lHYpzIzELGjZc29ZiSK6WVr-NmjW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|226.0|0.76|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|lHZvkOC8ksBHP5WI_quFgyUKy8Za|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.0|0.774|17.19|['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|lHgDynRlJKUgy3i0jNpKPwtvoStx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CA-Br; TPA-PT-C6', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.772|139.0|0.601|3.88|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9518-x|lI3KJNDKR97wv_XOLVcB32uaujue|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|195.4|0.65|13.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.8b20924|lIEe3YwqHm76oqi_JipPrDKK6nUv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.08|216.0|0.72|17.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|lIMdkdfnZuWZutQ9gJValEEdQRvy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.9|186.0|0.531|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']|['PEDOT:PSS']|['pSNT']|bulk|https://doi.org/10.1002/smll.201803339|lIQpJBqaZpzjunRZC_N6WXvh4fFD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C20H103I54N37Pb20|Pb20C20N37H103I54Br6|FA0.85MA0.15PbBr0.3I2.7||1.09|227.7|0.7490000000000001|18.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|lIfqJZaNmRJx9zX3Y956Iko9gGH0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.119|182.9|0.69|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|lIqjztWixyzAicuvdLJfFftugvCM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.807|202.77|0.578|9.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15218|lIscAQHC_dOS_FjMh7u3qgZwV7NE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|0.979|156.9|0.65|9.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|lIu-EXFIftAhF8G1-FUS6NgVRIGQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|106.7|0.487|4.08|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|lIwOzjP4K8CXYa0NY8ZMwgLvFLQO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|220.5|0.759|18.65|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|lIwXoN8OYV1fLktipo9BxDyevkOp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49||1.123|218.5|0.706|17.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jcis.2018.09.045|lJ1Zw07WP5zsSxwagumg2_CNWV3z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.9|0.588|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|lJ2mBsmivaofCEPMwcd7p3KZXhKP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7323Cs177H31015I18100N11646Pb6000|Cs177Pb6000C7323N11646H31015I18100|(PEA)2Cs1.77FA57.23Pb60I181||1.09|231.0|0.67|17.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Au']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|2D|https://doi.org/10.1021/jacs.9b06418|lJ6LKPl8vIkagj3x2AKMZmyHhZvm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs1.77FA57.23Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.6|0.62|13.01|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']|['SFD-Spiro']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|lJO0CKy1VhfC_aCTuZJMtS6Syp-k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|225.0|0.62|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C8TA06771F|lJQmfhz90cvIyn98_0duCncUUEPx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.89|76.5|0.43|2.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|lJSlHpZodCoLEhGleRLBRxH3-9Ib|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CsI3Pb|CsPbI3|CsPbI3||1.09|188.4|0.8|16.39|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|lJTxs_MuhXmty0E3vc2NlE8ZnqG_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|32.7|0.467|1.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.6b00429|lJflgkr55VuelImad4prQ0AwWhQe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|83.2|0.62|6.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|lJiFiObl0lZAsh7n0RYMrOmx3MyZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|126.6|0.42|3.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|lJib35G_AYdK-2reB_ZdiT-KscQG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|30.1|0.37|1.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/8107073|lJt9Hco2FL3WquIpFQBWyUeNAMPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPb1.0BrI2|1.91000020366548|0.67|90.7|0.348|2.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14039|lJu3xcnJRcXeLwIyLsvp_b0du1tY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|146.0|0.51|7.5|['SLG', 'ITO', '2D-Sb', 'Perovskite', 'PCBM-60', 'Al']|['2D-Sb']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201804886|lJxTVH_ry-UbgGFxwtwc5GVv-04n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2D-Sb', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C17Cs3H85I57N34Pb20|Cs3Pb20C17N34H85I57Br3|Cs0.15FA0.85PbBr0.15I2.85|1.5500001652782691|0.92|203.0|0.54|9.8|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|lK5LmGyl4NrmgZTDXMoA8qib3Awq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|77.69999999999999|0.418|2.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901753|lKA66bMc4FS9tp78BLWD9EbqyMZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.03|194.6|0.7170000000000001|13.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|lKEIEbtDGp9-Idiefa0ULU3eud-L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|123.7|0.8|8.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08021a|lKF6S__6gLI9tKU63tFCFufrwGjj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|190.1|0.7|13.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14926|lKNSlDt-dTsJPvLv_22puB6CjBV3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|193.5|0.73|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|lKNXN8NdO_yiaklpHWcBwb7La6Vt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||||||['SLG', 'FTO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-np']|bulk|https://doi.org/10.1002/solr.201900331|lKQ2bRIuEm9YBnExBTUEKUak8SWY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.2|0.624|12.05|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.3390/molecules24102027|lKRrPbkgz8tfwpM9gyucavljPtEl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|lKTFH_y08i3b0WdOe4IZDu2AVU_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.95|215.1|0.78|16.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.11.011|lKVJz44yW6SgpTtLu2b9KUav1haJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.91|103.0|0.49|4.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|lKWu7QpODIQrXTsRcMeM_Hyh_7Pd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||13.79|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8nr06899b|lKcu3Y7GKF7AkONKuMmE-IiT9VMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.0|0.69|13.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']|['DERDTS-TBDT']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201504293|lKcvaGMPj92PXIlM9g8YlPIKTR-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'DERDTS-TBDT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.05|247.0|0.769|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|lKlM5mY4CgExE3nmSACeghyJmsPL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|218.5|0.59|10.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.019|lKlhc3UoZ9_y8pk4fCE4chvr4LX1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BC20F4H120I59N20Pb20|BPb20C20N20H120I59F4|MAPb(BF4)0.05I2.95||0.99|205.5|0.7|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|lKwugjJrN_JkZD5ef_IsbQqxSJiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)0.05I2.95. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||1.04|194.0|0.74|15.2|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7ta02405c|lL0L8TU88HbKWLqitP2qFH0M07bl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|190.7|0.74|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2018.01.006|lL4fP0RH7Yx0myhWn1uQk6KWa4Mh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.0|0.713|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|lLMXSEH_zMDJontQ-3vOtV9JntF2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.134|227.7|0.769|19.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|lL_LnZDZA34NlgC9UZxd65Bq_ks0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|201.0|0.77|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|lLnn2f6MBPvyZOMmYWyrmnAcWVWt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|235.2|0.7509999999999999|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|lLoyhEdyhdZfljryB5qAKlimimRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||1.103|186.7|0.754|15.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12519h|lLrnieQXAOHnA5zhTV3yAJQiDknf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6980001810596783|1.188|199.6|0.769|18.23||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|lLykQgK466REw0u9kLkzEqgV1Of1|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -Br42C20H120I18N20Pb15Sn5|Pb15Sn5C20N20H120I18Br42|MAPb0.75Sn0.25Br2.1I0.9|1.8000001919360546|1.01|93.3|0.67|6.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|lM-7Uvlm2raae5_okCv8Xdod9Sec|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br2.1I0.9. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|214.0|0.76|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|lM0DIdi47EQmUTCFjmDOmCN05pCU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|0.924|188.4|0.503|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.035|lMHpRHZiv4Qqq5-87p2fG-qzfZBl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|135.2|0.6829999999999999|8.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|lMIC9kAQdNp4xJjhzTFbsVhfedv5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C95H532I300N133Pb100|Pb100C95N133H532I300|FA0.38MA0.57PbI3||1.013|236.4|0.698|15.76|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.030|lMIH1BIbMADsLzwlEe9NdfLa-d2x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.38MA0.57PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|152.0|0.61|6.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|lMJp_BfsprPskyPhUI3-sVbgUdPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.6200001727424491|0.93|193.0|0.584|10.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PDI', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.04.043|lMQB51V5afsuMdW8QIHDA0QrnSvT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDI', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6130001719960312|1.12|211.1|0.763|18.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cs-oleate', 'Spiro-MeOTAD', 'Au']|['Cs-oleate', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b08026|lMWfAEwiqt_2gp3qaxq0wguoQZBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cs-oleate', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|221.0|0.555|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05635c|lMWmEi8__1WrFBj1qb1rZK9YV1Ph|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.996|197.6|0.662|13.32|['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|lMeBBzHQdkPQlQnNvrtnQUA9bYS6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.36|110.0|0.34|1.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC04|lN5dnXtuLMDXfkzFjtI0Kpl2lhKH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.0|0.67|14.2|['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['Zn2SnO4']|bulk|https://doi.org/10.1021/acs.jpclett.6b00295|lN6K7taM4AK0-ud6KQtrkOVBCUig|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Zn2SnO4', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|161.29999999999998|0.46|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|lN8oXgo5JR25-ufIhH8grOHZnFC2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.63|10.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4RA17316C|lNAVRfwnSoMZxZjFOF8_gn715n0S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.012|164.28|0.7140000000000001|11.87|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']|['18-crown-6 ether', 'Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01968b|lNCWRhBNx604EmLLdUZ_0uGTmGDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|156.9|0.706|10.19|['SLG', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.136|lNIvXsqkJHojtVWkIPFUfaZ65ox3|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||0.99|214.0|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04569g|lNLGuFRH7V59IFG12ZKdouA9U2is|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.114|215.2|0.743|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b13423|lNMV5CuQaIM9jYnep4N9YnDSpymt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA0.5MA0.75PbI3.25|1.810000193002366|1.06|117.0|0.434|5.38|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|2D|https://doi.org/10.1002/aenm.201700162|lNP3Njyl2NA7edBN52mkpDp7Cp1j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA0.5MA0.75PbI3.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|10.0|0.642|13.85|['SLG', 'ITO', 'ZnO-c', 'APTES-SAM', 'Perovskite', 'PCBM-60', 'Au']|['PTAA']|['ZnO-c', 'APTES-SAM']|bulk|https://doi.org/10.1002/solr.201800240|lNnFMLRvZ2fJ68BCaqmtHTymoIoQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'APTES-SAM', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.5|0.65|16.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|lNphPmk8mN5PttZtZaOXlclAJh_I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|118.1|0.71|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp03073g|lNrkLA_vdfr3xVzO8B18vQQr3oKe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|206.0|0.627|14.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|lO00Fo-ayul4Ot06oKaOyyNpjQWX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|202.0|0.706|13.06|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|lO0blq3Y5byxpcIa7_LhVieIOX6F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|211.0|0.5579999999999999|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700078|lO1Vcy2A1DVgXN6fsxqES9YVdZ3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|140.39999999999998|0.331|4.48|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']|['Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|lOC2nJvd5OourDki_1ijaihZK2iK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|186.7|0.67|11.92|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|lOQQ49M7sivM9-vQaYLwEpqcx1RJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|lOS1NbGitKbmFvHtEZfKewpbBDtY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.0|0.72|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H111', 'Au']|['H111']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201402587|lOSFLmlIEboLm0QZDxrnyx7-tWRn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H111', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.05|221.5|0.75|17.4|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|lOSo3ky-zua5PSuJo_TN7V9MsSqm|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|212.5|0.772|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03608j|lOVusLddxkfv0UF6RmF-3oC6kfo8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.5|0.73|15.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|lOXqL8zWi9ubFdW6-CinmhYPhRY8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|212.86|0.581|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15218|lOciqmP9Z2XoLtm19PMMmWgbAvk6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4|2.320000247384248|0.58|0.6|0.29|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/jacs.5b03796|lOfJZHLIk_nm21lncyXytuanMzWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.09|179.16|0.594|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00672|lOfqL7B0PQolED604lwrKGJkMgSh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.38|218.0|0.62|5.17|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|lOkve7KTEO3pETrIPosBNublCelh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|235.8|0.778|20.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02031|lP1Aq1-hTnv7Xe7Ec-2qg1o6-anG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|lPIyGZeI9iagr-RfBY6QAg7g7R2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|185.0|0.6629999999999999|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|lPJll6-lb5m8ii6prgOY9cNFndiO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|180.0|0.55|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|lPOCCcUDQjGb4L1VjP1dHMcptp_C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|203.0|0.57|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23062d|lPOUu_tNS7tBPq3acMSaigqYc73-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.114|222.5|0.71|17.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|lPP10DFNBLozZRQPRB2T-UCAmd-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']|['PTAA']|['PCBM-60', 'm-PYBrZnPor']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|lPQWpLLAK_t4vnSjHRsSbHVDPIeB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'm-PYBrZnPor', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.3|0.6890000000000001|17.23|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc05590k|lPTsbSf9vS9G9zwv6k2H-p2a5PGm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.5|0.44|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9pp00071b|lPVWH6heZDtduMyMuyu5Qcbz9ZFA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|161.1|0.4379999999999999|6.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta08262e|lPVYW0L1cAHv3QXrRwY-ExY1VPB7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|239.0|0.738|19.0|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['IDTT2FPDI', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta09260a|lPWPXKZjCOPjiETTmx9RbvAc_7ET|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'IDTT2FPDI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|234.0|0.64|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep42564|lPYmkRL4SKiiTKwb3flmXU02u5zZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.64|14.89|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM']|bulk|https://doi.org/10.1016/j.solmat.2018.11.006|lPsivWME11kJPFbLKE6RbK8893n6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|193.0|0.7090000000000001|10.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201601711|lQ1OiUsbnza07hoV1YQh5Ai9DQRp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.5300001631456466|0.99|207.2|0.69|14.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|lQDxbI_rhQw7dh73QMjejQOujXw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|134.4|0.647|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPBi', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'TPBi']|bulk|https://doi.org/10.1016/j.vacuum.2016.12.037|lQELmgBGgXWFPdUHAx5IzWqydcPL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPBi', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br11C20H103I49N37Pb20|Pb20C20N37H103I49Br11|FA0.85MA0.15PbBr0.55I2.45||1.08|219.0|0.75|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b05353|lQQUwunHsZQmJaCwM-20Y5xc-TeH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.45. -CH6I3NSn|SnCNH6I3|MASnI3|1.2200001300899923|0.141|64.80000000000001|0.28|0.25|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|lQTUFn71LnWKTzcm2SJybfECnCAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|219.0|0.7340000000000001|16.92|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|lQtMS8Xl6hCKu0gMcb0Rg8rgT2bB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|186.0|0.53|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07496|lQtijCDD6823b6YcfWbYpfkbnEY7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|123.5|0.669|8.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c4ta06198e|lQyTNmewDz6Q8M7KOxQANuztmefC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.62|38.8|0.55|1.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|lR0KpvhV9mv-kCrDYh9XhjaZ1BFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.06|213.2|0.6559999999999999|14.75|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900265|lR3F5GNah9IS5c4j0PaEgD9S1w4N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.05|214.1|0.757|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|lR59jD7HmCUq8Lgdh9_5iXSeMlbY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|186.0|0.5920000000000001|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B63', 'Au']|['B63']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7691-y|lRATod98F8mGAKZnXnp1VFoxLvlM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B63', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|64.81|0.47|2.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|lRBeFdWrLlD9pGhJCTOyNqgSpB7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.88|164.0|0.53|7.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|lRILag-6XxNuboUZN7ATUGBG2q6u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.05|213.0|0.62|13.79|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Zn(acac)2', 'Ag']|['PTAA']|['PCBM-60', 'Zn(acac)']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|lRJ2keCgh2VJXesi1jeCSZEOeLDN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.12|239.8|0.7959999999999999|21.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104673|lRNsxwERbvNWeoybztZqwnLYIsko|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|175.0|0.48|8.26|['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500352|lRQtocJXvAHaaLxpoFDUh753Uylj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|184.7|0.51|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.07.238|lRTawmNguNFuBA_HrWhaqLG6mk_h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.8|0.64|12.46|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|lRZ_bT_-HNrsqlqvP4OxlYyTVHf5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.02|196.4|0.73|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|lRbJt0COm2-YjuUpvQfUu9pVNUai|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|175.0|0.35|6.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|lRlWTj270GwMXGR9_Rka0-7oauC3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.254|187.8|0.497|2.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|lRmZ5W3ISQ__00-X9DhB6_ReT7J9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|224.7|0.7070000000000001|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.06.049|lRsXnBA-RwyzYIpLc6CcqdyGbx7M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.0|0.58|10.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b10898|lRxUt3ZDFI3bKBAZIZGwyADEuilk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|201.0|0.728|16.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201500543|lSBzfASkjvNAOJmHZn2FyBaADyl0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.0|0.72|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms7142|lSCCBHaWWnGC8v5dlcrkjw2mwDNI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.06|216.2|0.68|17.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|lSF-47o0-0tmq5Vk60p3P6Glymb6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|193.6|0.57|11.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Ni']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08812k|lSGw7qdZqHWag0d1XvjuzVro-bFW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Ni']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.13|215.8|0.659|16.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|lSMce-RNc22JxvaSt9FyQyRJJ8W1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1840000000000002|138.4|0.696|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c08006|lSMtjzuOrCrl7_0VlIQDcmY6Gh-8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']|['TTBCPE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600555|lSTMRseDEJoMy_xc16U1DYbvA_w6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTBCPE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|181.0|0.7190000000000001|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.05.011|lSeayLVbuvr03oOteXd9FZRqeb7Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.933|191.2|0.691|13.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|lSmwz0wRn_A06AH8rIBbiSzFLiST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|217.2|0.74|15.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|lSng-MIrcsL93LsJDTNxjj6sb2nc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.5|0.6779999999999999|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT4', 'MoO3', 'Ag']|['CT4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800939|lSp_5jMYGdtQJgWZ95CC6ZSJH5aI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CT4', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|172.8|0.51|8.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2018.07.005|lSyJRZZGJDoG9f_GKpepqy85nBZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.139|220.4|0.696|17.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|lSyOW0ukxBH2kodAoDryo6FT2VOE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.4700002633789198||||0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/adom.201801368|lTCajWi_CqDsTSIs6k1BjsvBm57X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|213.0|0.53|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|lTFTgstv9ETAjvR5ci2e136DbhhV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|191.2|0.5770000000000001|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM-1', 'Ag']|['SM-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2018.1456043|lTOpilqHs9FkLtTN-VKfaPiOHas9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.0|0.664|15.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|lTPad_iPdNzWjyIDWOMBdBtLUAaN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|158.3|0.55|8.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.12.036|lTQUWxsZ3LVTiJ8-V0CNKJ-lcQmn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|177.0|0.66|11.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta02184g|lTWXeJi84_f2inhe-rRhppZgiffm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.0|0.821|16.2|['SLG', 'ITO', 'ZnLiO', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnLiO', 'PCBA']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.013|lTZRdLIIDMe2AeckwcOUgyoTgM5A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnLiO', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.103866|lTi1Z7DuS91lwROnPB_LN1m95q6K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|188.0|0.65|11.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|lTvh4MIDCb808xfYlD_PRpDCR9ug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.723|223.4|0.67|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|lUAoqjst2KHim2w-Zs7jgDT8YsP_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C95Cs5H491I297N174Pb100|Cs5Pb100C95N174H491I297Br3|Cs0.05FA0.79MA0.16PbBr0.03I2.97||0.98|168.2|0.64|9.8|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900204|lUJ_Yb03BtJ9MuURgteS96_FLeIr|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.03I2.97. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.91|100.6|0.593|5.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|lUKQSkL-kHgeZ3fqHJPfbckLOp97|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.737|149.0|0.2|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|lUORFu8u5sh1n5ucjXtoWLjmAHV0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.97|203.0|0.46|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03394b|lUT2dYaXfeHz0-vSkZwtejfsW6eY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489N176Pb100|Cs5Pb100C95N176H489Br45|Cs0.05FA0.81MA0.14PbBr0.45||1.17|222.1|0.73|18.69|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.066|lUajdGyHwKMG9mqjJdVbI-jOUdOy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.86|111.1|0.46|4.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ta13606j|lUcR5SfsesPR0XrPjl5MDggqVWOE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|166.29999999999998|0.7|11.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00660|lUdCWP2KVfc2YNB1YBB9ZwqYZ4S9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|208.1|0.763|17.45|['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Au@TiO2-np; TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|lUtyXr1SQDEbWbAHW-7wf_3zAFRt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au@TiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|230.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MEH-PPV', 'Spiro-MeOTAD', 'Au']|['MEH-PPV', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|lUuviV8hQ0fe5TQdbT06YJv5J6be|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MEH-PPV', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.76|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|lUx8utxBPvS6YylrSiw8qlM4hcn4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.0|0.604|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|lV0CqoP_EHW7iTQ5jDZDvDpMGfFs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.9|0.7829999999999999|17.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|lVQzVtxGsYW_AgPuB_13YSuC3eeB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.8|0.6629999999999999|13.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|lVSaIabso5pj5oC6Si7QXUfB85Rl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|201.1|0.655|13.57|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|lVUkToDaekwKL2IOqjn4ZzdXmrmt|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.54|0.06|0.26|0.0|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|lVao-9ZB2UEScvE50XxvShJaMaz3|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|168.0|0.617|11.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|lVd4VmwiIcTr1E-YkVKTnKnVDbq_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|184.3|0.409|6.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|lVoZ4qQbk_U1tzDC-9W9-lwPpGU0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2Cs2I4PbSn|Cs2PbSnI4Br2|CsPb0.5Sn0.5BrI2||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/solr.201900457|lVzssbdi7ClG7UKVtyJG8c8YUjPd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.5Sn0.5BrI2. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PMA)2MA3Pb4I13||0.99|162.60000000000002|0.565|9.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1021/acs.nanolett.9b01652|lW4uZRKVouRpBfK_-BwsebPRlNbF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PMA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|200.0|0.69|15.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.7567/JJAP.57.08RE06|lW8ToguoRpljHYnZ8gM2mZCKiitU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.807|282.0|0.69|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/nenergy.2017.18|lWDpnnvhl_uwIj7cBWOB40Ci8NrG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|176.20000000000002|0.46|6.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qi00131f|lWEwZx_m82I5xgVppPhF9peb2bKp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C77H415I147N124Pb50|Pb50C77N124H415I147Br3|FA0.94MA0.6PbBr0.06I2.94||1.151|243.6|0.7|19.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Theobromine', 'Spiro-MeOTAD', 'Ag']|['Theobromine', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aay9698|lWGME-UOms8IS55qiQ-j2gVuHMhl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Theobromine', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.94MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.039|196.4|0.75|15.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|lWI2Pwol9UPP0RH-U4ZC5Sd4O9xM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|133.27|0.355|4.5|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|lWPk0QynHWbv8NtYsuwX17OzSXuv|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|lWSH0qKgpb6FGDoAjWbFR9xDI324|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.937|207.2|0.499|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2020.135686|lWirJT1gQPyXZMXiDIMthe1tjwW3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.22|80.0|0.7|6.83|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b01187|lWp4rh0NHpTCJtbkv7_DSN1vboVt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|232.7|0.7759999999999999|20.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|lWtI6gMt6LO3XNbgEnwPnjxTP9Iz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6100001716761378|1.128|227.3|0.79|20.12|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201802012|lWzmfWhudd8WE7ixvDz-p98MF1j0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.4|0.615|12.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901753|lX04bzpxMelXR9q0SXzWkQfTTWAB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.8|0.6990000000000001|14.07|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HB-Cz', 'Ag']|['HB-Cz']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta11238b|lX2EyeSGODdU18Z0U3HQ70icJpWd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'HB-Cz', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi20C27Cs3H162I90N27|Cs3C27Bi20N27H162I90|Cs0.3MA2.7Bi2I9|2.600000277240968|0.646|35.8|0.64|1.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|lX5Zoxl6J0wWC7Ngszsb2ao0zbEQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3MA2.7Bi2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|193.9|0.7|14.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Fl', 'Au']|['H-FL']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.11.071|lXBPJUMpvcX_N4r8sgjLXZZUcl8z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H-Fl', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|208.5|0.604|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|lXCRGKurFFMtbAxV8gzJvK4ZNCmH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.1|220.1|0.769|18.61|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|lXFk_ELe0QAJdvt-5tRBLI3ECz8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|205.2|0.71|16.18|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00845|lXGqNDmlW42QVaVfcpTKyC5p0S2w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|190.0|0.63|12.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.7567/JJAP.57.04FS07|lXXogh_7LvhtExizkBMTOdpE16Mc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|165.2|0.757|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.solener.2018.11.020|lX_90zU7ITUj_buntfBowOohWeaa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|220.2|0.7490000000000001|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|lX_iGs2ivsltHnoZHqWMaZ6yFuFE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|75.8|0.56|3.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.06.020|lXjSscK6gQkzjCsf77eToQa1miH9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.815|111.0|0.411|3.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|lXmJ1YiSHlhb4Z6Qes6Ir1nNuztI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|175.6|0.589|8.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|lYF_cq3C4bJGLe5tAfESlxjxGom1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.972|140.9|0.7170000000000001|9.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|lYPjz1Nt5GHqRH3iwsgRLH4VgiAJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7000001812729404|1.234|194.3|0.75|17.99||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|lYX2TI-0BfMujegs-wGT3X_RX9ye|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|175.0|0.416|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|lYaIfPVgvl7N_5Q3YO0TgPnXLb2r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|175.0|0.7|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.07.121|lYbEr_JTH5glk_4ZKPp4ghCK49-U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|153.8|0.622|8.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.02.023|lYfob_NMNkt7tgAt4OPwd4BQYi9x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|154.0|0.56|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43707h|lYgSl1NqfZ2spZVA7Zebp2eIhrBU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.0|0.77|17.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cu']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.7567/1882-0786/ab1fb6|lYhsZYGcnpyGB6q9LllzsHw5KeAL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|150.0|0.62|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|lYvRdQW9M2P1HkbQIxVxf-yPuB2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.06|209.0|0.73|16.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900789|lYwT6Blv4MFi3TCkOP8TrIorsXzu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|219.0|0.66|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|lYz7SxsVjqzjbw8DrzWtMCcueRCu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.0|0.72|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|lZ4E5LnTE5Vb3jJ-l-qty_W5ityX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|0.96|205.1|0.75|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05133|lZ8lzGLNv73V8AgPJan96et8Zs_E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|176.0|0.42|6.64|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|lZDPaWuoV1Vxhgltt_vduvaMzAX1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|230.5|0.716|17.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|lZG93CcyyL28VO3jzOn05vRCjq1u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|191.0|0.63|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.014|lZJqyPlJ9RRZ6SbtVnOxib4Wwsmk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|2.93|0.2|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1038/NPHOTON.2016.3|lZK7n0EcNuuWeiltp9Z9LKtP_twt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H42I16N6Pb5S2|Pb5C10N6H42S2I16|(MTEA)2MA4Pb5I16|1.5800001684772036|1.07|208.9|0.753|16.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41566-019-0572-6|lZRxuaF-pPtOS4xmKrHHXP3fwYKx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']? The composition of the perovskite layer is (MTEA)2MA4Pb5I16. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.1|226.1|0.71|17.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YT1', 'Au']|['YT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01452g|lZb_t7GZuYFDtZQevp1kVeAtI7fE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YT1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.157|160.6|0.772|13.65|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|lZpYYPZxx1d7D4BOtRYCV4tGwzcZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|16.0|0.4|0.7|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|lZqGrIWg_G4cGKwuNUyj8wZMNEJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|217.0|0.68|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201502553|lZuyuKDAPaUp6GYkJAfE8B1KwBjS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.9|0.747|17.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|lZvHsQKhX_K97Iz0mea6BpKhfM1N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|232.0|0.6890000000000001|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|lZvpXU7baM74mfFO4GgcC4_9eOIb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.5400001642119578|0.906|228.58|0.698|14.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12939|lZxzsBByxd-det0-NlmjIqvJc49O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|85.5|0.38|2.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|l_6SgNB_ic8HT0r9ynHHGUqh-aBd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.414|0.409999999999999|0.486|0.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9qm00311h|l_7jBheYfdwO8CLU19c5ZpZVi_6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|234.11|0.725|16.97|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|l_8AOQi833g_dTG51q1HLWB8-1WL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|226.0|0.66|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150068|l_F64hrt1pqXCM9OdPdRP037w2Di|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.09|131.0|0.605|8.64|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|l_Jdou7fYXpxbltcHtae4P4nodmT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.16|221.0|0.71|17.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-np:Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702719|l_NOaW0pdcz4TFDs2VsX2GUPUTHr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-np:Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.3|0.71|17.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801509|l_Othu4zRh18R7SUxikPq0X5h9Dl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|196.0|0.4029999999999999|5.8|['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|l_RijXoxrIsZOtdywaN6Sw4AHi-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|137.5|0.667|8.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|l_RvLB_4_5duQf50ueISEJpXuHUy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|233.0|0.65|14.9|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'PTAA']|['SWCNTs', 'PTAA']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|l_fsrJoCriV0Oa1qLBPu-cRnrEWU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs', 'PTAA']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|231.3|0.736|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6dt00900j|la4Yj2zmZGvAQQ6GNs4MQQj5eeta|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|200.69000000000003|0.6890000000000001|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-018-0153-9|la7L01HEfTjNTee4j2P1DXp7eAJV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.599000170503195|1.06|209.0|0.74|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802139|laLbwQc-HbgBE49UpTTBt4JpO_GJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.13|239.9|0.746|20.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901726|laOC-IJsFpfFXwXCjG1iWXJchrmn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.86|138.8|0.72|8.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|laT1rt9eqsY0XwFRNOkUl7M4xG1v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.05|239.0|0.745|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|ladzmqpZqOEupxNZFDCPLUEhp8gW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.77|0.2199999999999999|0.3|0.01|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|langSDwNSdnr7jHhnKcQYSvEs7rY|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.72|284.40000000000003|0.58|11.89||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|laoUgpaBg_TNNMVdoHpP4hSoAWxS|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.7|0.76|17.17|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|laspLmSfLjmzsvt-P9XRD302DWV0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|209.6|0.47|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ee02693a|lat3LZkDksZvdp3Cue_RcB2DJ33D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|201.88|0.579|10.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-TPA', 'Au']|['DMFA-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01471a|lawN0_rGI2j9PpXu_EHl4_GlKcWe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|173.70000000000002|0.58|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/15421406.2017.1358045|lb0jizuZVMxS5pr6O3qQbYzBYheK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|218.0|0.76|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra05741e|lbA76lGOME3xl1IQtl17iuQYKxvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C24CsH121I75N47Pb25|CsPb25C24N47H121I75|Cs0.04FA0.92MA0.04PbI3||1.045|254.7|0.775|19.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.aaw2543|lbF_gl7FZfzZjdLepH-mw7hW0ZCs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.92MA0.04PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.4|0.73|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|lbKqJrb39MHzFJ-_553lIr5SCOki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|176.0|0.45|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602600|lbPJOVTW1alJR-2fDEd6YyBUAChA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.0|0.81|20.0|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-04028-8|lbQ6HWDzFTfz-sgN5o_tMyZ_efdY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|193.2|0.72|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBS', 'Au']|['TPBS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06493c|lbURSB2uhgi_TtigutDU5al_AJIe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.963|207.0|0.654|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|lb_Je64oUB-LW3RQUwgM1ywrYXL6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.125|233.3|0.732|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|lbw6BgbE-c4-RkdQqsvBCAPHOxKC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|213.4|0.76|17.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02044|lc2gdY65-czxLMWu9wPJLQRfyAwe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.2|0.7809999999999999|17.47|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|lc3WvvyNNgj84bAUuV7k0uXSaM6u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|144.4|0.434|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|lc7o7KHqa7L0snvDHMU8jENTHGKY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.1|227.8|0.69|19.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|lcAvrbhMyo_TmTS9HumcHHJidmHQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.883|29.4|0.633|1.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|lcBBHDkY7ztHIKCIVWIKA6sqQFDo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|206.0|0.66|11.6|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adma.201604186|lcK7IfFI1o4n4Miq-CvwP17GaRYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|1.11|133.0|0.72|9.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|lcLBF9i3GYKJDn_SxZ2A3teV86DG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|220.4|0.713|19.0|['SLG', 'ITO', 'V2O5', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['V2O5', 'P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.mtener.2018.07.004|lcNOImbX1gZTLCgp2LSNhBZ5dSk-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|4.0|0.367|0.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901753|lcRgahsPNT2ecWtpx1Spz_VVgnMl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.11|222.5|0.7609999999999999|18.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201704351|lcUS01CL2gZeu6uvZchD5R9LM8_a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|218.4|0.387|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|lcZqycCp75h8yyJHNfdNKWprXN7-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|190.0|0.635|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-410', 'Au']|['SGT-410']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04662|lcaK-UQH4bwCabi-YiW-16UH7FDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-410', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|193.1|0.69|14.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR353', 'Au']|['KR353']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01718a|lchITASse5noiqJA5353ZqQBiabs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR353', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|223.4|0.78|19.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']|['Imidazonium iodide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.035|lcozVBxMJv0cf54P4deR5HLav9KS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.085|212.0|0.69|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|lcqCXC7XQdtbpbbUEJFctUIWqBHr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.400000149283598|0.84|183.0|0.5|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm404006p|ld2K6LjYxM5UhZ6CH4HLi_mo3TQj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.779|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201609529|ldD1BW4xefQ_0mNvQM7j0x9Tq4hB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|ldMvE3EBHMewn-SfqgwiRfqgbYmh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br213C100H600I87N100Pb100|Pb100C100N100H600I87Br213|MAPbBr2.13I0.87|2.0330002167811103||||3.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl400349b|ldNYSFjwsYM0f1_chxwb9vqtr6Ka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr2.13I0.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.8|0.752|18.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|ldQxUBWd0hzT-b51_U-3fXIm4Njq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|234.0|0.72|16.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07071|ldQzlDKnHD0BCXL8-T26A2iJ-Lel|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.12|236.0|0.836|21.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|ldRnoZOSPSUht50XqK5wgx7MpvaM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|154.0|0.62|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|ldTL4HUMtbEDHOIWBlFcliI2byt3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|202.4|0.562|12.02|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']|['PEDOT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700340|ldV9L1cig-NLU0d90T-Vvf8sLmQm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PEDOT', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|150.7|0.69|11.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|ldW_gnWm104relFTxG3zzihy8pA1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.73|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-12', 'Au']|['SP-12']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09314k|ldaRr36Tqw5bgCJWgAUKN-teio-e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-12', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.05|206.0|0.74|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/er.4695|ldc85Cb6u8yo1kaFiAEJUFJg6bWY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|160.57999999999998|0.531|6.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|ldpfV3qc852yId1i8EhlLx9w6DEl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.76|16.3|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|le-Qag7SrrbVNgq9xh9sb5ncrQPE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5|1.740000185538186|0.34|20.0|||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5123400|leAGfMqxbdleUWbzEeSaPhDiIOwd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|lePjXZbaWZhI45_a7sJcXzwbMifL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|196.4|0.7140000000000001|15.1|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|lePlTEj_sZ1gFbWu5RKwjW0Ucokd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I259N183Pb100|Pb100C100N183H517I259Br51|FA0.83MA0.17PbBr0.51I2.59|1.6000001706098266|1.15|215.0|0.76|18.9|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'pDPP5T-2', 'WOx', 'Au']|['pDPP5T-2', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|lee5DkckQ79USEYVZ6JGT2r9SOXY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'pDPP5T-2', 'WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.59. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|1.02|231.6|0.71|16.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS01', 'Au']|['CS01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|lego82zfAd0z1rXtmXrayWBdIMy1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CS01', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||14.17|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP', 'Ag']|['NiO-c']|['Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.07.030|leqMLxVsCDL85ExWIwKWI3kcUnLY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Graphitic carbon nitride', 'PCBM-60; Graphene', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|76.39999999999999|0.34|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Ag']|['P3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|lerA9C8cWOH7WmHWStMyeoLxqNvw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|213.8|0.61|13.75|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', '3, 4, 5- trimethoxybenzoic acid']|bulk|https://doi.org/10.1039/c9ta11744j|lfCPrf1kDuYXa4kAAJVJGPfx9WSg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.16|135.8|0.66|10.39|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|lfR7121nD37kCaVDmxZVrwaLGukV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|212.0|0.7509999999999999|16.69|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.nanolett.8b02863|lfUoH3yHnwxa58Js60lzNtP9JN9H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.1|0.76|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp06953c|lfiAC-3w0lDYeUUqPrNB6O0YkfGk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|192.99|0.792|16.27|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|lfm7hFppQi5a7Us8GgTzZhWgXZn1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smtd.201800361|lfqCCuiPhkQncAgS_Gun43VqfeGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.8000001919360546|1.23|191.0|0.76|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201904494|lfuV0NN0SG-3gf380c1zFRpokkOm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.895|185.0|0.518|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|lfvfaP4pM_Fq2A5Au5ux3EWQBh8q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.05|204.4|0.7170000000000001|15.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700797|lgWjikWWC1XJSFxZnEHbEbFQ61sF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|140.0|0.722|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ee44174a|lgYVCey48OExWTL1EYjgTgh3e3ng|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.2|0.65|14.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201700169|lgYoc57roxtm1KPQcZC9pA_M5gHp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.8|0.72|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep10557|lgcDrW5AGnZ6AVBcvRvEnDNPfS0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|145.39999999999998|0.627|8.0|['SLG', 'FTO', 'Poly-EDOT-C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Poly-EDOT-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.09.196|lgj6O5X1S_rsn9rc2efHwS7A_muS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Poly-EDOT-C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.5|0.61|10.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7cp02523h|lgpK_ileGG_uIYaIFGbFTbmZXHSH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.2|0.76|17.5|['PET', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201901519|lgwQPXKGM9vJHp-RdDPqglYp3sz2|a perovskite solar cell with the following device stack: ['PET', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|166.29999999999998|0.6509999999999999|10.85|['SLG', 'FTO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'PEI']|bulk|https://doi.org/10.1039/c7nr04739h|lh2hC-Vnu8m9DDpeSAGIfbKGQFPu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PEI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.19|152.5|0.79|14.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|lhBfzPAfMhkhE-1M0zgayVZTtkgR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|187.9|0.47|7.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.04.012|lhDHK6FxU3yrKxpPizBiFt-jpG2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3||1.06|37.9|0.431|1.73|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta06719h|lhEvL0DOGpyBjzRYiZNXCvV6H1I-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.82|39.28|0.5579999999999999|1.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|lhFI9SrUdJgPqjS8v0U3O8sdZSoi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -Br1020C1900Cs100H9747I4980N3553Pb2000|Cs100Pb2000C1900N3553H9747I4980Br1020|Cs0.05FA0.8265MA0.1235PbBr0.51I2.49||1.03|211.4|0.63|13.69|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon black']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ee02391g|lhGeJ3ov7MkjTZ6AKNMh0838ZcxB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon black']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|204.2|0.772|17.02|['SLG', 'Au-np; Graphene; TFSA', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']|['Graphene-QDs']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.9b02336|lhL8sF5kdKLs3rCufXB3ll9idII6|a perovskite solar cell with the following device stack: ['SLG', 'Au-np; Graphene; TFSA', 'Graphene-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.0|0.78|16.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ta05004f|lhPN6etQBmR2rBO6Is4f6ox3J0kc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.8|0.687|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|lhV5WY_G6-nLCXMd3FC4dtKb-0kd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|169.8|0.71|11.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-2-MOTPA', 'Au']|['TPB-2-MOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|lhWIGb7gQ3mzwLgaPvlz3XMPxSx4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPB-2-MOTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|lhWmWM_Il_hptfu1jX10H4mKtMjB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|191.8|0.6509999999999999|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|lha7SUirSHcBUhqzbSgRtqU_j5uf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.08|175.5|0.721|13.71|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|lhb0JrhS83TOuhYcpgx8xWplL71N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.9|170.0|0.574|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11801-019-8118-1|lhbhWiAx2hNVddSdP56SRB5PXkGs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.0|0.45|7.1|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|lhd2f5_3QGUACxMMVgXUXV_KYnMT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|138.7|0.35|4.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|lhdBHUIT5iJTZzKauURg0eAgvGfg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.5|80.39999999999999|0.82|9.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|lhkYqrqVYM_GYPYkW_Wo47E4C1K7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|171.20000000000002|0.73|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|li47Q37rfgFhE3UntCYBByu6-OGJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.0|0.647|11.9|['SLG', 'ITO', 'ICMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ICMA']|bulk|https://doi.org/10.1021/acsami.7b00900|li8MNdc-7eyuDdhoTmxtEGPIH7wM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ICMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.99|234.0|0.66|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']|['CuFeO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|liHB_L6e_d2tojKmLWAchtGfroUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|142.6|0.63|8.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|liTwKbZVsgjFma46DEO3Q1yqoN6W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||0.885|187.3|0.466|7.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08504|ljKblYYLjNBHRSJDPgAVUmOvPJTG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.83|331.0|0.75|20.5||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|ljRtl9jpnK6xJYCkAz3Wfm5ryNap|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|222.0|0.741|18.09|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|ljTm02TQIJ3PWUQRsuhAsW1NjFSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.308|74.6|0.773|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|ljVLwOfNMYq16Pm5v_JLBu_Z7584|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.958|202.2|0.616|12.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|ljaUa4H9XkGyD7UwNoWjAA8_Jp4r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.4|0.6779999999999999|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928535|ljdFfblmou-98t36REPcz9pOxGfm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8220000000000001|149.8|0.387|4.77|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|ljjavJppJWVtXj9qvAmR7Waq6LjJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C44Cs6H220I127N88Pb50|Cs6Pb50C44N88H220I127Br18|Cs0.12FA0.88PbBr0.36I2.54||0.983|217.0|0.687|14.7|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1039/c9tc05439a|ljkveTznEtmokrahPwVDcJOHiVeW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.54. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.83|175.0|0.66|9.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'BCP', 'Ag']|['PEDOT:PSS']|['ICBA', 'BCP']|bulk|https://doi.org/10.1039/c5cp02705e|ljpCqM-Ilm8sguBF7tUfUjZ7zVWN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|212.1|0.763|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02555a|lkB7kf-MDYebuZbKchEBlaVdHCJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|209.0|0.828|18.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|lkKZ1vJlE-xC4er9gdzHUA9IH3pL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|222.5|0.76|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01718a|lkOvS1GA3HEPbZvrZVaEY9jZErAd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|209.2|0.72|16.25|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/solr.201900154|lkgQrVP7x05xlgujayG7ovzVGlI1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|56.0|0.47|2.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963760|lkhz6P2OMlq-d-SnYU4yiuSEtgvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.097|189.4|0.777|13.5|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17141|lkuaVsKGUJqQOIo27BoETbK2uaqI|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.7|0.73|14.73|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'J2', 'Ag']|['J2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2018.07.017|ll-721XT2qRhRxZkWN8DQVV8_4OW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'J2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|181.7|0.655|11.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01843|ll0oPwxErWqfxfY4NZho6OALn6jk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.934|197.8|0.482|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105734|ll7JaJDRwv_PLSuw3UaX_gmfsv0l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|205.9|0.75|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|llOjCocs_Z0b-ZYi74pUxER69L3I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|183.3|0.623|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|llPdEonQnYhYD6Akpclpw3Yud5f0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|210.0|0.682|15.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.029|llWAbJr6KEvfnsIQaE6Lj9tgYLYB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|189.0|0.597|11.23|['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|llXtDmiZ8AGGEODJwVxMK-90p4l1|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|llcy_6e8CJUpSulwBf8mWeC4J6AT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.12|224.8|0.797|20.03|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.9b02488|llez0vEkRK1LL7Bvo0D_um7woWPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.6500001759413832|1.07|189.6|0.6459999999999999|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|lliw-B9PbFznWcoOO1A_GmzjxQxo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.06|206.0|0.65|14.2|['SLG', 'FTO', 'PCBM-60-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|lljc6-22yuCXvaI3rxgfs6DW7Kp8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.0|0.4589999999999999|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|llpICJrs9GskhsaChEvBgz49GOpi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.909|205.58000000000004|0.659|12.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-EDOT]3-TPA', 'Au']|['[BMPA-EDOT]3-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.025|llpTdJxzfhMbYEt7tmQodtWHAXEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMPA-EDOT]3-TPA', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.25|0.41|8.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']|['SGT-405']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|llpV-YxCLRUPhsn9kx6NUfzj7NRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-405', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|201.0|0.75|15.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|llylj68ClBBNBvlg7UzemW4O4QLd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH47I27N16Pb10|CsPb10C9N16H47I27Br3|Cs0.1FA0.7MA0.2PbBr0.3I2.7||1.04|215.1|0.74|16.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.004|lm40jCUS79NQHi0-jYTrNYo5dv_V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.3I2.7. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.966|217.5|0.648|13.61|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|lm7A-DKOGWJQIDP3Ku5HB3H0JFMe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6300001738087604|1.13|222.0|0.8|19.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|lm7_MOWpt4SvL_5deEzGarMVHB-e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6300001738087604|0.974|51.6|0.8079999999999999|4.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'AZO', 'ITO']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'AZO']|2D|https://doi.org/10.1002/solr.201900083|lm7gAb-9UIpTIVIgTVHjXO-zPwi7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'AZO', 'ITO']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|224.7|0.61|11.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|lm9xzYYvqHOXpKFpHo15qf1nlEWh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|105.7|0.632|6.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|lmE2AnI-NU-N4ngJGXx_cyOsZSt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|212.1|0.71|15.87|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00391|lmFwf_1NrfVqA8rU_wkVv4XN4hQE|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.0|0.77|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|lmITpY48O3D1hctzs7qN_pll6LjG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C83Cs17H415I60N166Pb100|Cs17Pb100C83N166H415I60Br40|Cs0.17FA0.83PbBr0.4I0.6|1.7900001908697432|1.207|171.70000000000002|0.788|16.3||['PFN-Br', 'PTAA']|['LiF', 'C60', 'BCP']|bulk|https://doi.org/10.1039/d1ee02650j|lmMxLO9RrdFsMAa_qmV-XZe899KF|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.4I0.6. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.14|233.0|0.74|19.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|lmcsU1Mtj8-913F6e3sUZIz5Vcm3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.0|0.73|16.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201705176|lmrMJr1y-Eo-riSSSfTLRVOJc05N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|224.0|0.654|15.2|['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Graphene-QDs']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|ln0vEIBKgOX9VS_1g_o60mK7fOsE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|204.0|0.735|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11434-016-0994-1|lnB2FkvtLSX2N7dnEC0tAJ_l0NpH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|225.6|0.743|17.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|lnJGPi7LGwtIHcEbXlySc2Ysc_07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|172.0|0.62|9.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|lnNQNJnxo2RUIdvy-AW7-IH55mzl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.7|0.72|15.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|lnWGfV3ViPRCalv5wuSpe9PRrlBC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C440H2260I1003N820Pb400|Pb400C440N820H2260I1003Br180|FA0.95MA0.15PbBr0.45I2.5075||1.21|225.0|0.79|21.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|lnZu_dFhmWjDw3sn7IGMESmRFomV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.95MA0.15PbBr0.45I2.5075. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.969|161.8|0.62|9.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/polym10111227|lnkJJ25EJRiUHEfRJlXsDTIDjK4g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|170.0|0.7|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60']|bulk|https://doi.org/10.1021/acsami.5b11494|lnncisTDUojw9lLAvEqq-05dOVYD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|1.6000001706098266|1.1|198.0|0.76|15.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126518|lo3kTGsO5S0cfY6hNOIDT3_LC0-K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|214.0|0.75|17.51|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b10994|lo5sa93jNKYJkarcqZPxciwZ7a12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|158.1|0.64|9.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-TPM', 'Au']|['DPA-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|lo7HMnhZbH9dT370l33zy5RxNMa4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.33|55.0|0.7440000000000001|5.44|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PrC60MAI', 'Ag']|['NiO-np']|['PCBM-60', 'PrC60MAI']|bulk|https://doi.org/10.1002/aenm.201600132|lo9Cy2ElZRWjwBTczYHyJQ4sIy70|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PrC60MAI', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.3|0.62|12.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|loDSjdTiJM9Cke0TGc3GQqqTGkK_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25|1.7300001844718749|0.966|211.7|0.488|9.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.03.236|loFs4-38F6dLSyLIfYy6sIjjT_ha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.68|236.0|0.47|7.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scib.2017.08.022|loJXScAj3bvGyXcxzOI0DHyxICHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.15|226.2|0.79|20.6|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b13091|loRA7Q5sAPCJZXWHIwYjDK5CvZU5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||||||['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|lon_nDdflP8O-edb4Qpvhp0Rm5MN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.816|178.2|0.46|6.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|lp25xDG_NQQwk9Oj-mPoa5VUQlTj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|212.8|0.71|17.26|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.9b00845|lp5RU3HJtZCjTHr9Lb-BaTU_SHZQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.188|223.0|0.71|18.81|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|lpLykGQj0RT7kTO4PHszGt3kO1A1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||||7.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4991633|lpOKRESfqsjT6xPlbiNCZsISlzHl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|185.0|0.76|15.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|lpOTRmzwN9nfasBg_hrOl-pxblH-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.18|229.9|0.769|19.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|lpP_nu7HJ7qknIJ36fhbRf2ORMTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|229.0|0.765|19.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.07.025|lpQWiMthjLnAGoohGCeiP_3zgOIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|220.9|0.778|19.6|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|lpRLOWyHSi7EsSGbD6vi0kLN-qX4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|251.9|0.679|15.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']|['CMO']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc03683c|lpSky_ieDuwbCGPmylHltBhjejuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CMO', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.74|315.4|0.76|17.69|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01237|lpTrDba-KcZsCOFT6wXD2Uq7Uu_z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|155.0|0.4|2.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-8901-y|lpXe6eJ6XAevfW2W78BbCLW6x58j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6100001716761378|1.124|225.9|0.77|19.61|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1002/aenm.201802012|lpbtoahQyFjOYXtrzkqkfxXtcc9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|213.4|0.77|17.1|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|lprdAiV6wNHJgFO-x4-zx7LZ3MUq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.091|206.0|0.76|17.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|lpxp_bA4YjC5INrm08V3HawSkRoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.5|0.736|15.57|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|lpyZopg0m-Tl19sDR-ykzELT_c76|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.06|221.0|0.71|19.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.08.006|lpzabo0ACZ0RPBwm7QmIGkZt7rnc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|213.0|0.691|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc', 'Au']|['ZnPc-p-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|lq05KZ-5k_Pe7gncn2I0IzstS2xq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-p-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H12I4N6Pb|PbC2N6H12I4|GU2PbI4||0.6609999999999999|4.18|0.521|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.7567/JJAP.56.08MC05|lq6CbWr5Gq9FwDVbj8PFYXjlUxue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|207.4|0.422|7.81|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.7b00576|lqC8OYNVNaocvjdI1OMia6V_r4Ys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|206.0|0.696|12.64|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|lqCiCXzSjhJuag1myPtqicr7yLsB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.18|225.0|0.8170000000000001|21.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|lqEpYSszfD2V7dOKVHP2H7d5Cvl4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|145.0|0.7140000000000001|9.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|lqMuBYAiS_azX4uCuesya6yt7TvW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br38C93Cs7H477I262N174Pb100|Cs7Pb100C93N174H477I262Br38|Cs0.07FA0.81MA0.12PbBr0.38I2.62||1.13|211.0|0.72|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.01.020|lqNUcDP1Sni3qO91wIU3Iy-nbTWF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.81MA0.12PbBr0.38I2.62. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.850000197267612|1.163|147.79999999999998|0.7290000000000001|12.53|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']|['IEICO; PBDTTT-E-T']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b14957|lqSWvfelK-a3tt1lCKakMVGEa2OW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|186.85|0.759|14.54|['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['CuI']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c8tc04723e|lqT_Vt-UhiFzguPssXb5ZZmo6KtW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|0.4|0.25|0.008|['SLG', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO']|bulk|https://doi.org/10.1002/aenm.201702182|lqVTk56hqF5yTrGBybn4GhMY1nEw|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|195.1|0.72|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|lqdtS2AJ7oXkAAnd8s633zPireaD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|183.7|0.677|13.35|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|lqga3EAFOZTLs86BZYIxtsvNCpxw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.8|0.703|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PMMA', 'Au']|['PEDOT:PSS']|['PCBM-60; PMMA']|bulk|https://doi.org/10.1002/chem.201703382|lr0AF8Azkpy9omlOyqazuBriOxLo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.0|0.76|16.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|lr0t_7uIPXwrFyL9qukHAc68XwMe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C99CsH495I300N198Pb100|CsPb100C99N198H495I300|Cs0.01FA0.99PbI3||1.06|237.0|0.7490000000000001|18.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|lr5OCEVRfECOYuA64LdUDoj4AayF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.99PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|223.0|0.698|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|lr9KTB9LyX_udTRClMlRZCe0GIT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.3|0.75|16.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj02074h|lrFxvZiGZeDd7EF9qtkTrOIHRe5o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|224.0|0.76|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201801016|lrQwU5Xeo5e4cJW_7vDCS7rPwcxP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH98I51N35Pb20|CsPb20C19N35H98I51|Cs0.05FA0.80MA0.15PbI2.55||1.1|237.5|0.79|20.72|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.chempr.2018.08.004|lrVCrPI0rzDrcIBInG36oK-MQ1-3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbI2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.925|229.5|0.655|13.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.08.032|lrXv3TRdEDbTw7ZnBd1EgA3qkXP_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.0|0.7709999999999999|14.9|['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'FrGO', 'MoO3', 'Ag']|['PEDOT:PSS', 'FrGO']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1039/c7nr03963h|lrf7p-M_N7Ou3GZExY6BbvRHNV5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'FrGO', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|168.9|0.6459999999999999|10.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PBTTT-14', 'Au']|['PBTTT-14']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|lrlFy6kU-7oQ8dFud6kndswSj9wz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PBTTT-14', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.063|221.0|0.672|15.7|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201800133|lrm2StGlwnQMC7wx2gMstNE8S_Rg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|50.6|0.65|4.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|lrmZAq6xT_ZfqlFl9j4Isj3FPufI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.955|228.4|0.63|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|lrmpgLOxH00ThlQLkM8tPfV09kcv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.857|182.8|0.504|7.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|lrn37V352GISOFIUlm9WCrXiuZaA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|149.0|0.5|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe', 'LiF', 'Au', 'Ag']|['PEDOT:PSS']|['CdSe', 'LiF']|bulk|https://doi.org/10.1186/s11671-017-2381-5|lrpIcz-S1fxfAeX7gSg2jQW5FCjP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CdSe', 'LiF', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|155.9|0.716|11.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|ls00So5o1mjYDXzmNuFql30gk9gA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.5|['SLG', 'ITO', 'DH-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['DH-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|ls0tjG3rAfs2sly8LmTnItRBy5X2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DH-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|179.0|0.679|13.01|['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12849|ls5LMGSgzNc5G-AGTDZTCfNn69Y8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.97|187.0|0.48|8.7|['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZTO', 'SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|lsDn-xGFKuYF1Ds6_QkFEA2mMA68|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZTO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|214.0|0.66|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT0FMeDPA', 'Carbon']|['BDT2FMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.08.070|lsIukS_LF2kvhGMLQmh29E15i1v3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT0FMeDPA', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C27H126I60N20Pb20|Pb20C27N20H126I60|(PEA)0.05MA0.95PbI3|1.6000001706098266|1.08|219.1|0.804|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|lsQ3ljxocCuitDRiYfNWowJCXhr3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.001|126.6|0.473|5.99|['SLG', 'ITO', 'Ag-Nws', 'Spiro-MeOTAD', 'Perovskite', 'ZnO-np', 'ITO', 'SLG']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.104|lsUodU2UftECSbF7v6GXSVYxCLJO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-Nws', 'Spiro-MeOTAD', 'Perovskite', 'ZnO-np', 'ITO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|137.5|0.589|5.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|lsbbvtjJmo0AfLlav9Usm8Xm3NDM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.6|0.578|9.3|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1088/1361-6528/ab4f2a|lshVpkUQOpWQEEQdwJs7VQnCQ_7R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.6|0.67|11.6|['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201706777|lsjSWzuTCss2SACP4E_wZlheXLyF|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|216.4|0.741|17.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|lsspBIuMZLAYgpUKBZD_QcEB3cjG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|238.0|0.402|8.74|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Oleic-acid', 'P3HT', 'Au']|['Oleic-acid', 'P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00069|lstRGGRkGqN4dl_TJzQzR1hcxytn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Oleic-acid', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|181.9|0.69|12.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|lstUUzXUu83_ZmebJXga7L03nT_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.66|65.1|0.76|3.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b01855|lsvcSvoYFsGFvpVfCVS0LnaOz3_X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13||0.999|181.2|0.708|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/jacs.7b11157|lt8cOuZkipz6DLoJq_wyED-bIzxO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.3|0.701|14.56|['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np; Nb2O5']|bulk|https://doi.org/10.1039/c8ra01571f|ltDheb7rUIqsSFUPtzlt3-3_B75F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5; TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.01|210.0|0.66|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2545-y|ltFXV_eEBp1cBP-ANV-GkrcvyBoq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|170.3|0.804|12.88|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', '2-HI-PVK', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['2-HI-PVK', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00757|ltRNJW4UeKhoIAdq1gwCkvyo8FdM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', '2-HI-PVK', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|206.0|0.546|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02921f|ltdTR6nOsVXho9Z1-7Ql9z-UYU80|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|167.60000000000002|0.7979999999999999|12.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|ltpjCM78r30-K_vno0-TLyzT_tB2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.5|0.7090000000000001|15.85|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|ltzZLX6j_SgUTFAs_KO-3Wp2UIV_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|158.8|0.542|8.0|['PEN', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1109/IC3.2018.00-29|lu96T18fF8voaKiPxKuFbbJHmCpC|a perovskite solar cell with the following device stack: ['PEN', 'Ag-nw', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|198.8|0.6579999999999999|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-14920-w|luCt-WZSmOnGh3jouP7GkjwfxinP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.14|82.69999999999999|0.62|5.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|luXYbMv9SzkvlRcYFeOIJpt5emmZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.34|61.0|0.4529999999999999|0.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|lubWzx2k2ncPi1sizfcLzP6FWr0s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|192.0|0.805|16.4|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00218e|lugUowvob72l2Rfoltr2eO0qfm39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|230.1|0.745|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|lulRO3L9te_CEOMGu-1hS7R-JDiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|231.6|0.76|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|luqL2TeOJ1RZVUp6Aax1VI9PvFNP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.01|236.0|0.65|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']|['CuFeO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|lv4ydNqEPge_LhpKOmUnWOvCF0S5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|218.0|0.653|10.7|['SLG', 'ITO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1002/aenm.201501056|lv988QLXetpQuxlkI6lOQscqBmAR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.96|217.9|0.65|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|lvGREfIFMTNk1RgYNyulJThejL_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.670000178074006|0.86|204.0|0.645|11.33|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|lvGzArdtmshv2W45Nfi9B0a6LBuE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|216.6|0.7020000000000001|15.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201504190|lvK-xCMrOroG8NQRKE1ZP6dOu0qo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|lvT5eLJBNzc0eQzrKYR6NAA47a2c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|186.8|0.6509999999999999|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|lvWa5n7CFGAKoL8zo9WsDUall4aW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|166.20000000000002|0.557|8.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta06813d|lvh0YNI1hvi9Pqy9atMJ1rksJ_rc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|180.0|0.6409999999999999|11.07|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|lvlus1QWMS3i2Cf4OdKJIvwNNVe1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.0|0.732|14.8|['SLG', 'ITO', 'Carbon-nt; Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Carbon-nt; Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-017-1876-x|lvxKKrrpn99jyXzET_0v5phA0uga|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-nt; Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|145.6|0.718|11.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|lvyXf41mZZXgCAl5HZOL-fmBMntb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.0|227.0|0.629|14.2|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|lw2pZU6caMg5LeY_DHT_-GKNOMlc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|lwAH6gdBPDM-HiM2NbL1t3pxYmu9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|170.0|0.62|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|lwCvBo8c0AV_bXznjr8rGxCxbf8c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|234.0|0.6920000000000001|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.202000288|lwGMioCCRQf9Q1bJVj_KsZp74DQJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|240.8|0.492|11.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|lwIjpzAX2K8oxgSigN7WYM70QpH2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|196.0|0.654|11.4|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|lwPxf1pQlvRLl82GPYDbW0FcWG2x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|148.7|0.715|11.05|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|lwRPFagAMhphZb4ZtY59ZXGIWvcM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|249.5|0.6579999999999999|14.11|['SLG', 'ITO', 'PEDOT:PSS', 'PTB7', 'Perovskite', 'PCBM-70', 'C70', 'BCP', 'Ag']|['PEDOT:PSS', 'PTB7']|['PCBM-70', 'C70', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.09.078|lwSBJUa-Z2IIhV8KK5S0ADymDc3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTB7', 'Perovskite', 'PCBM-70', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|179.0|0.68|12.8|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5′′-n-hexyl-(2,2′; 5′,2′′-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )"", 'Au']"|"[""Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5′′-n-hexyl-(2,2′; 5′,2′′-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja503272q|lw_MtC_IN3xSVeLBdDkkkC0lz-WT|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5′′-n-hexyl-(2,2′; 5′,2′′-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|219.3|0.62|12.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2018.11.024|lwljfz6OCsVddMVM_8hjSTkasydr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75|||||12.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.161|lwmNz1djwmOIlbRaAnQD5_eu9lsd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.96|220.1|0.73|14.7|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|lwn1ntS7GL_F5hNSH42FetxgeVCq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc01939h|lx2jxfl3v8D0iihoU_nh1E5Lf704|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|190.0|0.75|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1063/1.4901510|lx4_1wxwaWsjqthR037xAE1_zAsU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|165.90999999999997|0.7340000000000001|8.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|lx5wOFp7NdnO52FTTxLFsckEwjNP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|190.2|0.7|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; PCBM-60', 'Ag']|['P3HT; PCBM-60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01009-5|lx9qO2T0DPeOnvlcp_x8Lh4wKj11|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5|||||20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201802985|lxDun0oR1dLyN3B9bc3c-fa8Ox0A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|201.4|0.7490000000000001|13.91|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|lxJdFc5P2ndNW0ZzGO6JClfhbG8i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.823|149.60000000000002|0.485|5.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.08.095|lxW8ry3vP2xIYNuLJX_KpIFHllWv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.0|0.74|14.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|lxg4LyewoTQZVV6Wu2mykjPytlt8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||0.99|189.4|0.7509999999999999|13.4|['SLG', 'ITO', 'CuPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|lxi1wPVxsrTiibRCgQ_5RfTYfV9c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.13|237.03000000000003|0.77|20.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|lxrljQyBak8-h-RQWcKFsnoA9xlP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -C17Cs3H97I60N22Pb20|Cs3Pb20C17N22H97I60|Cs0.15FA0.25MA0.6PbI3||1.094|223.8|0.79|19.33|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|ly3x1mhl8CI4Lnfnz7U3CL5yVWa3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.25MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.09|201.1|0.58|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|ly8iWXisforJIfXw3NkLIPF4Koq_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215||||12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|ly8otcipaFa4HmWP6yHkTElqougg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H24I5O3Pb|PbC9H24O3I5|(iPA)3PbI5|2.3500002505831827|0.733|2.5|0.496|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta05241k|ly9TEQf1NFWLBS7vKrv8YrC7N-ar|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (iPA)3PbI5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|183.0|0.595|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b00309|lyA-e9KMTn1W2Zj_DoaJqus7oFhj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|212.7|0.52|10.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|lyCVbvfjG4YTpfSMhkFRICpJnSTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|221.9|0.655|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|lyF6WIweCZ00gOGbpqq5pl_Hp1ug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|221.1|0.8|15.92|['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201701586|lyKzTRDUilcXVdPKcN1Jw__9rIh0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|185.2|0.57|10.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|lyNFqQm9mfkZjLkZlhiZbwG7LRxA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|218.0|0.71|16.3|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsami.7b05113|lyNcv8RvPCsoY2qDCTD6veNjrvja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.0|0.62|13.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/cryst8050185|lyPr76gBTdASG6wZfstvzdj4wJnh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.5|0.64|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|lyXT2vKpI1OzFGQmAl6c9gUvgxw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|||||['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|lycVvDLE7EXkuaRFPX5Z64PbNI7m|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|182.3|0.61|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12938|lydRvD_dLODuVq21QkB99ckgpv2M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|20.2|0.29|0.41|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|lyfcIWAxTH3abFdPqu4Aw6ppy8tG|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|188.5|0.66|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C4TA05675B|lygMHrGnpIGjkJvPd3AnijkfaNaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|212.0|0.688|13.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|lymJLx1d_gDOwD_p6SphniCFcuWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|121.0|0.55|5.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|lyonBpxHKXRIUhM4pW7UqfNPazbv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|146.6|0.39|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502087|lz5lsaCEfEAtfSOBzLGedT5qVbUJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.965|218.8|0.649|13.69|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|lzANV0sMI7ina2iLy-B0OPwWdPcz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|150.0|0.76|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01099|lzQlVgJXTl1GRBOslwodwCQ2TxiF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.0|0.69|15.6|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|lzT7_RbM6-hBN8Gt9yl2mmKhjV3r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.94|218.0|0.65|12.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|lzoJFXMN7GztpKuyeV7vnD-jI5q7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|179.4|0.7020000000000001|13.2|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2018.06.019|lzpK2t-Fin_8E0Nogs1ULCc4gtEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.97|219.5|0.588|12.39|['SLG', 'FTO', 'TMAH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TMAH']|bulk|https://doi.org/10.1039/c9cc00312f|lzpXaxeyO8DxdwV4yMCTuI-xaGge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TMAH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|203.7|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b02721|lzzm5b-0Bxx3jjV-p0I2OhEL__MT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||1.0|175.0|0.73|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1039/c8ta06976j|m-5fW4VuQsCco-fZ-D_5fnySa9BK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.8|['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.04.007|m-5lafqgOY1XQDEAmLpY889of09e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|175.2|0.72|13.28|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|m-RhgPr1tEBr7he_ZlunHZNF3i8H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C77H415I147N124Pb50|Pb50C77N124H415I147Br3|FA0.94MA0.6PbBr0.06I2.94||1.187|247.4|0.77|22.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Theophylline', 'PTAA', 'Ag']|['Theophylline', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aay9698|m-V-7B9jRpl6H8X0n0k-IpgbSIwY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Theophylline', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.94MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|194.0|0.62|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta06177f|m-WrC0Pnx8YrS_DcfMB2mBGZRz6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|229.0|0.69|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b03948|m-YlHTTU4-MD6LyIddKITU0TIp_K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.03|198.0|0.5770000000000001|11.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-019-08507-4|m-cfZzc7ISNM-xsaaWlQ7062Budx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|m-m4WW_VhIt-CLXtEt5dGr-vMlA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.6|216.0|0.677|8.75|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|m-uPvKeSupbid7xQntznyacq0Ly-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.13|226.0|0.78|20.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902653|m005UGnBCanVP-35Izj3bUlFLfcc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.754|212.1|0.605|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA3', 'Au']|['TTA2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|m0203DBhiCHimXomdIf6fw_ga9eX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -Br3CsPb|CsPbBr3|CsPbBr3||1.53|74.5|0.757|8.63|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2019.104286|m04VQGPT-Gs17PXuef6UndkbAn2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8320000000000001|101.0|0.47|3.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|m0C4JUcZCZYCZG1DXzzwTpOfMZVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.0|0.66|12.2|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp; Au@SnO2-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'Al2O3-mp; Au@SnO2-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500312|m0EyTss8Z3HbVVof-b-nMEwUh0m1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp; Au@SnO2-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|160.9|0.593|8.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|m0MFNTW7mFzi0wgYhDU1jluqWKN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|219.0|0.768|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201803943|m0NV_NqXUlCYZZasVk79E2mdb3YY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||18.0|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|m0RQRPUIlfHnfPLuTCtZ5sEoYO2A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100C100H533I200N167Pb100|Pb100C100N167H533I200Br100|FA0.67MA0.33PbBrI2|1.6820001793535797|1.151|214.35|0.748|18.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|m0SFC9oGa7GNk1S-X0-BpH2zmScr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|198.9|0.72|14.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|m0hFFjH8tCpeTyze91DjxQeF9E4Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|231.2|0.755|18.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b08489|m0hLSDQQASp8WB2rRTOAkCsNh-jQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|224.2|0.767|19.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201902488|m0i-e3C57a4DqJcA2BGIRhhIkQI9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.2|0.63|11.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502429u|m0iGClDtHeiw-2YcI-K5lctTMsCY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|220.34|0.706|14.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|m0kP9WMJ6LSvzKSaBNkvOHXo3-Kh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|211.0|0.51|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|m0rrcp2qlQy4CUVEUNz9aR3O_Kjy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|159.8|0.71|9.78|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|m1RZZEWBPyQht-wRBJh71jR8GA8v|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.6|0.76|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201900400|m1T-M8Kj31fcPdE5yr5lGrZ9aLr-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||15.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|m1V9n1ksgIcmEEOA3RRSOwx54qi9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|195.8|0.63|12.28|['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Nb2O5']|bulk|https://doi.org/10.1016/j.orgel.2018.06.038|m1hrdRu8Uhq6wDcLEK64Gb5_xSoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|132.0|0.6|7.1|['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'Graphene oxide', 'Al']|['Graphene oxide']|['Graphene oxide']|bulk|https://doi.org/10.1039/c6cc09876b|m1sDs9NWybg5-0b42ZpjkhX9larE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'Graphene oxide', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49||0.964|173.0|0.649|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201802899|m2-c99NGeUpdKpxntIdExAMLos6c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -Br90C192Cs5H990I500N354Pb200|Cs5Pb200C192N354H990I500Br90|Cs0.025FA0.81MA0.15PbBr0.45I2.5||1.054|225.5|0.8079999999999999|19.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00036g|m262fKpA4q0W1rWs_N6NWlNhq4WN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.025FA0.81MA0.15PbBr0.45I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|115.8|0.73|7.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|m2ALShCBX_yE5TzcNitsD8b9xQjT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|210.4|0.7|12.96|['SLG', 'ITO', 'TZ1', 'Perovskite', 'C60', 'BCP', 'Ag']|['TZ1']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|m2L5qPUbzL4u53NsbqIhwu6TWuS_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TZ1', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|10.9|0.6509999999999999|14.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.07.232|m2dOrX9Qg6z6bFgO3zuqKmtfrq22|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|200.66|0.68|13.22|['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201903369|m2ejJDQpLxyGkUvVq4csN9-Ptidn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|219.4|0.759|17.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|m2fPGTuBuLdFpQyyRnCn-8oivIDz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|173.6|0.65|11.09|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|m2hZrwl0C8djRni5pavsiCAU-pFS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.0|0.826|19.9|['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|m2qYMQd43NJegGihBTI-aojrJuuR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.5|0.72|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02241k|m2sQxnTnVPhXjaAVWYh-oFJDhT4e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|1.03|139.8|0.664|9.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|m2uQ80b6k9dY83BK8VS8fMVJ7HiY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|125.1|0.54|4.52|['SLG', 'ITO', 'Graphene oxide; ZnO-np', 'Perovskite', 'Au']|['none']|['Graphene oxide; ZnO-np']|bulk|https://doi.org/10.1063/1.4953397|m36-YXd4YBylu8rQlaiEA1DgzMPn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide; ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|213.0|0.7|15.31|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-018-2752-z|m38IFngObFJIWzwXSzJ81HAC6e9W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|174.89999999999998|0.6|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|m393J8KN2JXDyojGxxqW_TF01jRo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|207.9|0.68|13.14|['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTCA']|bulk|https://doi.org/10.1002/solr.201800205|m3Kzx7UyV_35BD30srF3t-mk3EPS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|175.6|0.63|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-8932-4|m3ScO-Vi-qN1fbkL8uCY62zK92He|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.09|154.0|0.66|11.18|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|m3lIC9opR6B_YGgoEBnd_A1_viwt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|166.0|0.67|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|m3nT8xCqxAPJh0ylK_J1HKcTOzG0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.594|74.80000000000001|0.851|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|m41_1llozCZzHdGWAl7E7hdjADT0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|226.2|0.779|19.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201805153|m41mfSOIrRrkBMGseXHffSIPjPYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.0|0.82|19.4|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|m43SulyYuKLSJnjV24T1_A9mpBBA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|209.0|0.745|15.9|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-Na']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/anie.201904195|m44CemVKqFAQ_xQ-7QJEwo4xHb5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.101|193.5|0.7609999999999999|16.2|['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsPbCl3-QDs']|bulk|https://doi.org/10.1002/advs.201800474|m45vJM4n54HNItnUl5Oajplkp0t4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|200.2|0.64|12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.09.138|m49WqVf7UZXBkyb3949UzIoxNUfD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.08|242.9|0.7290000000000001|19.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201901241|m49q_jnPTTemvuJW37wQ99aQ5AA0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|108.9|0.55|5.4|['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-nanosheets']|bulk|https://doi.org/10.1016/j.solener.2016.08.044|m4HGko48W28J1FmRkcJkBT0xZfdR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-nanosheets', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.1|242.0|0.805|20.55|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902239|m4mBB1h9ciDwvHZgdNboPVgwXtZt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.017|167.0|0.599|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.egypro.2017.03.391|m4r6p-sS92itGktdvI5lDhU5k2pO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.8|0.58|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.023|m56FGWT9HkaM9ZbbcY9kILwo78MZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|160.0|0.532|7.0|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO', 'ZnO-nw']|bulk|https://doi.org/10.1088/2053-1591/aa7fcd|m56aYYt3dq-TdSB2R8XIRcHW-t7f|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|216.2|0.703|15.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta13528f|m5HRtu8Q3Rnf6Y2PAaUrQtmDZln-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br24C17Cs3H102I36N17Pb20|Cs3Pb20C17N17H102I36Br24|Cs0.15MA0.85PbBr1.2I1.8|1.8200001940686776|0.98|129.0|0.64|8.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201702140|m5YhgiCx5S02JchRW8ZePxCNnO8i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.15MA0.85PbBr1.2I1.8. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.2|236.0|0.7|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta00272c|m5czXSqUTGsUx8Xs5Vm5_y1Zilz6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.57|183.3|0.7|7.31|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|m5nyTDGPHiL_JG9sHoj4Bp-B26fi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.62|19.1|0.61|0.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|m5theACFAXi6OS_B_DtJ2fHCYkxa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.12|213.7|0.7|16.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|m5ujS0bdcvrQiQKfues210sGklNf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|187.0|0.66|11.8|['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Polystyrene-ns', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201700418|m62OvpREuQWb4TPhkdGAXb-VtakU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|168.0|0.797|14.7|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; PhIm']|bulk|https://doi.org/10.1021/acs.jpclett.8b00964|m62Y1nZ9i-ohNSQg6lnsOBQg8plN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; PhIm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|185.0|0.49|7.96|['SLG', 'TCO', 'TiO2-c', 'SrTiO3:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3:TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.10.090|m6AvVNCkwOANU8och9g6tSkwmyaf|a perovskite solar cell with the following device stack: ['SLG', 'TCO', 'TiO2-c', 'SrTiO3:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.5|40.0|0.46|2.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']|['CBP']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz402706q|m6O7JvIwDRI7iC67njwBVXT-MwQj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'CBP', 'Au']? The composition of the perovskite layer is MAPbBr3. -C32Cs5H185I300N39Pb100|Cs5Pb100C32N39H185I300|Cs0.05FA0.07MA0.25PbI3|1.5100001610130236|1.16|228.0|0.774|19.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.202000995|m6Ubr_Oyr6AI3e4qzsWOHYU7Bb-D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.07MA0.25PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|146.9|0.58|8.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|m6_vjMpYjR29OUT6Ycli7__WUIR6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|161.0|0.39|5.9|['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['MoO3']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cnma.201500223|m6jKGNrgfl2Vd81qVK9EvgscRf-V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5650001668777365|1.016|229.2|0.67|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep44603|m6t3aL4QvEy-TS_oE2TBunx5w-SA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.68|['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PTAA', 'MoS2']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201702287|m6toXYf7j1t5VM5_DSVvANujOcQA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'MoS2', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.882|162.7|0.635|9.11|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/anie.201405176|m6wDj9gK7r7WgDEP4MT5ZVZuVIlV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|230.6|0.78|20.77|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|m6xQF-50iz8KnksD1-5N-cFRuvVG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|173.0|0.6|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b06711|m7Fws7tFd5XDWAUTcH8n-zuILUhF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|149.0|0.62|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/aenm.201500569|m7Su11I6p3VeFVS2Lq7QKNvBVwHx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|99.2|0.639|6.64|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al3O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|m7W6vV7GJHMlMB1fgVS-wV7mqiST|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8640000000000001|204.9|0.754|13.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c9ta03896e|m7ZY4Yfpp7QgCwNrCTmWbsDkrNXb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|214.5|0.67|13.1|['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FeO', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cp01432a|m7gEeczTYAAXUeIahGydnXRdpjFd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|228.2|0.735|19.11|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|m7i28KO0YifIfpClIejrQPTbkWhR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|217.1|0.74|16.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.12.031|m7jx2C7IRVwpqopyB3J-LFdKoskA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|m7nHSPiwiv1ZaFHgjjf2qzVAEn0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|88.6|0.58|4.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|m7pJQ2afwxrc-jh9FG0zxItUqcLA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.5|0.76|18.69|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105396|m7wNpv1VEqtu2zCzaNvA94scYjr7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.4|0.75|17.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09020f|m88k0fQDtggDrzoU_s607NATKdVN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C13Cl2H64I30N10Pb10|Pb10C13N10H64I30Cl2|(CIEA)0.1MA0.9PbI3|1.6200001727424491|1.08|196.2|0.7659999999999999|16.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.9b01975|m8GwN3aThm5L36CWd7g42GIUI5Sg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CIEA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.8|0.499|8.22|['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1016/j.ijleo.2018.12.157|m8RFD50Ll_oNAMRzPyYnNKCjSdIS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.105|226.0|0.72|17.98|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8me00036k|m8VEfD2yOFLPfPpLvaS8shfUXxoO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|m8aIVCjSUCw_lJ9yRS_w6yPWIWW-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.0|0.71|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|m8cI7MZovCnPnust7JcUCaunfVeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.3229999999999999|125.1|0.282|1.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|m8d43gvGUq_gh-rXXQyleHhWQwHJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|217.0|0.72|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|m8irjEysqZ1yE-tIou-Kt2z270QS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|223.0|0.74|17.35|['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Sr2CeO4:Eu']|bulk|https://doi.org/10.1039/c9ta00551j|m8jsISeIYlEzDvpu4Um5C5SVclhc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Sr2CeO4:Eu', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|225.3|0.48|10.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201700878|m8neJZqfRrGS7yRLM-1fLxuz8p-h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|125.6|0.36|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/jz5021636|m8tU2bN7AR5Lnmt0cnMFhapEjZ8f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6se00029k|m8vMsz_r0ROrSO6d6R8VPL9a2iqL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.66|133.0|0.31|2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1515/zna-2019-0141|m91bBmWNK_iVVkwBv_dYWAk4qM2f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.7|0.765|14.48|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|m93u_vi7jEkQUqYtg6c66-waaB_q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|213.36|0.758|17.15|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|m9AGPLUpDOdinXbEMmK629bLUCPU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.94|187.0|0.7|12.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201401137|m9DWQDZMDVTByLq-Ny8mFTsJQEWK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.1|0.66|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5020840|m9GvwF9ZrDzd9BuAQiuPC1FIric8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.911|203.7|0.638|11.83|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.038|m9PwhXY3E8w2oD6GYkGuLGsRsi2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|236.3|0.7120000000000001|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|m9XYSg6Z1iJzDEwBL5Uk-j9RUm1U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH24I15N4Pb5|CsPb5C4N4H24I15|Cs0.2MA0.8PbI3||1.05|209.1|0.64|14.03|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|m9ZT9Sd0N_7Cc-AbP1gMJXRGVipm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.0|0.71|14.3|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adma.201604186|m9aw6yLM9Z3Ma3phJ02X1dwMkVWK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|157.20000000000002|0.617|9.7|['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'ZnO-np', 'Al']|['Graphene oxide']|['ZnO-np']|bulk|https://doi.org/10.1038/srep27773|m9iYhi6yLSjneqjES0vevMrLfPMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene oxide', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|206.59|0.621|13.44|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|m9nqsrE7IxO8NOeog8L1YwYeQ8HR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C96H493I261N179Pb100|Pb100C96N179H493I261Br39|FA0.83MA0.13PbBr0.39I2.61||1.08|226.0|0.7809999999999999|19.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ee02172d|m9yIC_PZhC7uN1eT7JrJKGihnAMQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.13PbBr0.39I2.61. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|229.0|0.75|16.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|mA0A6JSU5ocraZY1A9YSQuOPqjie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.0|0.64|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|mA2IHIEqKxXQzj2c8Tb-opYan0dH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|148.0|0.64|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nn5058672|mA4SN2rS6urnpOVmT3tW99bRQqls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|227.3|0.665|15.11|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|mAEBXKfKtVEYScMGfNjiMOnJRTaU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|221.7|0.7809999999999999|18.69|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adma.201603923|mAGMsx3X34U9mA83RQEXXbvTLia4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|162.7|0.6|7.66|['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdSO']|bulk|https://doi.org/10.1117/1.JPE.8.045501|mASyat4fwmrozcxS6uZ6QYPBSsmw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|178.4|0.77|13.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|mAVVvia4_u8tvxuIrqR2a3Ghn0_6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|176.0|0.69|12.1|['SLG', 'ITO-HMDS Scaffold', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c7ee02185b|mA_crTqaT_PmhGSCmhRdo3m8lji2|a perovskite solar cell with the following device stack: ['SLG', 'ITO-HMDS Scaffold', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.3|0.7|15.23|['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DA-PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|mAhxlPv1ddFZVJkS1tY7cn1MOELU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|140.8|0.8009999999999999|9.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|mAoeylr7DteM0CihTlgWaI_1zySi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H57I27N13Pb10|Pb10C10N13H57I27Br3|FA0.3MA0.7PbBr0.3I2.7|1.6300001738087604|1.1|202.1|0.78|17.34|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|mAqvyXqhQ7hJTEpbKKlQEYzQp_9j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.3I2.7. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.140000228190643|0.8959999999999999|10.0|0.55|0.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|2D|https://doi.org/10.1021/acsenergylett.6b00170|mB-gJMJ3PpiBPnRNb6xfUJMX1K4i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|244.0|0.784|19.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|mBGwQay9JJsfXDGwdV2H2pKVAZZ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.12|204.0|0.71|17.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|mBS_UB75uOSmhBnN8Kny7NJXSyri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.66|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.027|mBTWrZA9sSiA9mVz5BKLugXOR-Lo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.19|95.0|0.53|6.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Ag']|['PEDOT:PSS']|['ZnO']|bulk|https://doi.org/10.1002/admi.201601143|mBbs2xwxicrYqr0r-hUtBF-t2mKz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Ag']? The composition of the perovskite layer is FAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|220.0|0.64|15.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|mBg7neWsmkOLXtPt-Sk8fXctqdGC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|||||['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1038/nenergy.2017.135|mC2LPNwKuvog4rkHd5YxZocg7kb2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.10MA0.9PbI3||0.94|196.6|0.8|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|mC2ga8nHdRlnSrekd5wsmc6ZzcgO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.10MA0.9PbI3. -Br51C80Cs20H405I249N155Pb100|Cs20Pb100C80N155H405I249Br51|Cs0.2FA0.75MA0.05PbBr0.51I2.49|1.6300001738087604|1.022|207.0|0.72|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|mC78rKt93720-gljcMSLimOzl172|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.75MA0.05PbBr0.51I2.49. -BC20F4H120I59N20Pb20|BPb20C20N20H120I59F4|MAPb(BF4)0.05I2.95||0.97|172.39999999999998|0.7|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|mC9BvY0ebuTJjcfwjYWbG-GM5VCQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.18|147.79999999999998|0.63|10.94|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|mCJCBFeyPmeqCN03gptcsKVAcSPr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|192.9|0.62|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-2A', 'MoO3', 'Ag']|['Ph-TPA-2A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|mCLpIys82cijOGASvcz82MWbg5qA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-2A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|230.0|0.7|17.26|['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nanofibers']|bulk|https://doi.org/10.1016/j.surfcoat.2018.08.039|mCdRlO9hUl4Tfv0_06R6bCVU1kDz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.7290000000000001|14.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|mCev-ExWEsvBg2evSZeCBz-ABuFl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|218.8|0.6459999999999999|15.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr08295b|mCgCRKL4kXtTqWmD3Gd15PZoKPL0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.035|226.2|0.7|16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|mCj9h1348b68mR8-HNlFW5qsFZDF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|171.20000000000002|0.43|6.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta05988g|mCtBitLYyBZtuU_FMg3sdZWcB0WM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|206.7|0.75|15.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|mD8MnysMIPZoIV-5BY5x9sp5P156|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.04|198.0|0.7|14.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|mDDaCH4w02IWr8l7-rwCIkSAqoY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -Br8C8H47I16N9Pb8|Pb8C8N9H47I16Br8|FA0.125MA0.875PbBrI2|1.710000182339252|1.151|168.4|0.718|13.93|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|mDDgnzrrmuUsQwbFHPlbR2CLi8ws|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.125MA0.875PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.81|0.762|17.51|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acsenergylett.8b00548|mDMCzTA7PMLH7n9Au8M67N530Bpg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|186.0|0.773|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']|['PEDOT:PSS']|['C60', 'B4PyMPM']|bulk|https://doi.org/10.1002/adfm.201807556|mDPvMWaQYpNe6SSzv5d60mWtOcNq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8||1.28|129.0|0.65|11.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']|['NiO-c']|['bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.8b01480|mDoRWEUoO4Kxhr-7jKUydYj0BRYI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.785|23.0|0.602|1.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1757-899X/303/1/012002|mE5r8cAn8dmH03Wo5M98clspmjmA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.5|0.8009999999999999|16.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201800054|mEITrU9nVYhtFf6CYRFu49XLTplT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|220.0||15.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|mEJ5Em1iY_lFRU4LNHiRM9hbSUP5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.0|0.71|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|mEKaS-dY_kLiItexBq_bwtNiFk10|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|209.5|0.672|15.2|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|mEXaRTM_s7l60qzEXbvBnn1IW8Co|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.1|0.747|15.94|['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']|['P3HT']|['C60(OH)16', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.024|mEcgQVTuPGO3Z9WayH0oM1gVCmAc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.112|222.8|0.6|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|mEiGfoN0fKZis3U3yQGDsL4TKdea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|218.3|0.64|13.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBP', 'Ag']|['TBP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800097|mEmMcMGKQLpgGkBDvtuHY2Py3xhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.4479999999999999|218.7|0.601|5.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|mErJznENUwuY4k7lrceMfQ_3K7bs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|107.0|3.0|3.02|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-N']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta12028e|mEsvuhSmaSM47EYFPHMRdY-n8EPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|232.9|0.7759999999999999|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|mFAkOKTujNFdXglIls9DQS-Qfb_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|0.53|10.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|mFB5iAmTzZ0ifBHpb0VE4ox1Ate-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi19Fe20LaO60|LaFe20Bi19O60|Bi0.95La0.05FeO3||1.74|37.0|0.872|5.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00722|mFTgluEk5rtWG0IBjrCRzngSlaWG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Bi0.95La0.05FeO3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.9|0.62|13.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|mFTt6zpH-2ZRzmaAUxbqtYsMjK85|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.0|0.62|11.93|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|mFkvvQ0QvXBLP3YJyKBa-vdm4MVK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|229.0|0.7240000000000001|17.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|mFluV5smQYtMBIc-oDgoWfzXZxfV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|192.7|0.6459999999999999|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|mFpFosZD8DxKVQv2jEqKYkAL8POJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.88|125.0|0.57|6.29|['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'MoO3']|['PCBM-60']|bulk|https://doi.org/10.1002/bkcs.12092|mFq4pFU_QbiZuQfGBZVtqIfBgGOM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|154.0|0.551|7.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta08262e|mFyrXs4XV1VgBzh8DWEbTGhdM3iu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|136.0|0.7390000000000001|9.57|['SLG', 'SU-8', 'MoO3', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.04.039|mG-Uag-vZrVZh_5mBYcMka1JiVVC|a perovskite solar cell with the following device stack: ['SLG', 'SU-8', 'MoO3', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|144.0|0.67|7.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|mGEjDh7Iq6MSJ8u3dgCGFJIlL5tV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|152.10000000000002|0.74|11.0|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['P3CT-Na']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta04712a|mGEylZryBarQBV82khRG0GW_5F6m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|77.9|0.45|3.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ra07686f|mGG6ha7C6SHeH27V_cHNhn7PCJI5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|206.0|0.647|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5nr09045h|mGJuz3e12fPO8-H0sEk5mkN9DEIL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.071|212.6|0.7390000000000001|16.83|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.0c00038|mGSGLYBCb1yCxVY4G4Tz54gQOHUK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20Cl9H100I51N40Pb20|Pb20C20N40H100I51Cl9|FAPbCl0.45I2.55||0.826|55.5|0.61|2.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|mGiSdIUZ6e5p8_35OpF07pAy4af5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbCl0.45I2.55. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.075|216.6|0.774|17.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|mGnLf5cylHcK0ACLeuV1rs2BFgmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.1|185.3|0.556|11.29|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1021/acs.orglett.9b02635|mGrMob4eYAWDK4QGaltY_gR62udb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|214.22|0.581|10.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.06.054|mGuoV_CPPqTw4b9eNZotTXY7ukoj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.08|223.3|0.75|18.1|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|mGxhoDubXJasKGe5HTQJybQuBxC1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6200001727424491|1.09|244.0|0.79|20.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201905190|mGy5ZpVKpAO3arkOdF4oNjFJ7bh0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.17|228.2|0.77|20.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|mH50-riJBIXhfKb3WVPXe46ajmA0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|mH94fkLvPtCTh5A8dDAyxwMLwxXG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.9|172.0|0.51|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03577e|mHHumIz7gRwLBqSjt24XrkzKIeQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.05|215.0|0.737|16.97|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF4', 'Au']|['BTF4']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|mHkX6HqyByW_qOBY5949UezYaZRs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF4', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.95|227.0|0.65|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.05.078|mI6sAxRUfAmRugVqGgKwwP1v1WW8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.9|150.0|0.63|8.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201408638|mICr4Sg9pMm2dgBJEB_33X0dpKhu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|219.0|0.75|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|mIGKuzvEdtsb-iPsdaeZSbVoymdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|141.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.009|mIJ6r-AhuvID-8ELt8Jc-Xia0p4C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.182|9.2|0.165|0.027|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|mIZxJQFhdtWYygZBjupv9Vnqr3b7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|136.5|0.71|8.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta03674c|mIiaR6wi2wrbMhi-twTCUlRrM_-a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.3|0.647|14.15|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|mIv0C6Ou9MThIf3bkNLH4fUjtGLV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|179.1|0.672|12.33|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08771|mIvoYwhGshstQ8lJpDRr-2HDREco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|140.0|0.69|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01220h|mJDtNNQOirp29Sa9-2UJKJjD_dS2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5850001690103592|1.04|219.8|0.76|17.37|['SLG', 'ITO', 'NiO-np', 'M2', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np', 'M2']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41467-018-06998-1|mJMuqRXYYym_Tt_YWS8pm7D-J9VU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'M2', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.1700001247584355|0.8|288.5|0.58|13.43|['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS', 'PCP-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803703|mJN3pKgfZKfEARF2r6v45jJZ7ciI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCP‐Na', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.99|198.9|0.6809999999999999|13.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2019.04.022|mJW87H97ZkwXMK7kjo1iagiYD5ug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|67.30000000000001|0.39|2.17|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|mK-BRK8Lghj7NZIytcpgduDqVURK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.121|217.1|0.7759999999999999|1.89|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']|['NiO-c']|['PS', 'PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|mK8GWkKuanDqpTWQvhaPz_gPM5CW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|186.0|0.43|6.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms12806|mKLFINSWmN1vKiKYxLVz687-QvB1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|166.0|0.69|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']|['S197']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201400980|mKXRobE7h3XMX2IQ_f2RgFH1mHEH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S197', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.11|240.4|0.718|19.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|mKtZm63AV-BM2apvRxJEifZc6Zki|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.0|0.7170000000000001|16.1|['SLG', 'ITO', 'IDTT2FPDI', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['IDTT2FPDI']|bulk|https://doi.org/10.1039/c9ta09260a|mL1Gm4EpTUuRXLfmLD9c8QjNwNpE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'IDTT2FPDI', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||0.4639999999999999|193.2|0.381|3.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag-nw', 'Spiro-MeOTAD', 'Au']|['Au-nw', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700151|mL7LkQnDocGBrspM7wab3yxqkSz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag-nw', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|219.3|0.7959999999999999|20.07|['SLG', 'ITO', 'NiO-np', 'KCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np', 'KCl']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201803872|mLB60sIc4TTO7avtzacjDQshBlZP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'KCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|240.0|0.5820000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.09.100|mLKaG8YpYk7ZkwwxsNcJQVtEmwIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.2|0.5|9.47|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|mLOeZEKbFsW8ZL27Cfpn468pMzhX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.031|231.0|0.7979999999999999|19.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b13648|mLWOMz7UIA8sewBzLEJMB5oxelw3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.921|131.0|0.77|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b01696|mLXNA3uD2LdID6pn3mTPJJLF-6I2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.42|72.30000000000001|0.77|8.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|mLXs-6rtHsDpeTLL6m4snmrpsXND|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.938|9.3|0.406|0.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta05241k|mLeNSy4rPrc0KUyN3JTVqQm7PpKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|226.3|0.74|15.67|['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2Ox', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra04414c|mLi1O6xzSwvg0l3QxNgdN39lo6Tf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2Ox', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|186.7|0.6579999999999999|12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-03766-4|mLkmpWQkrw-TuHeE1FaSB3XpXdhk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|205.0|0.622|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.05.092|mMAmhxyL7XcvaZWF8Y96skR6rkcR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|224.5|0.7240000000000001|16.21|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|mMMTKH3GoEQE4hXpXw6005jhGUUj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|99.0|0.32|2.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.116179|mM_iTmEU1_lRbfwInj25zRAXxcLo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.5|0.664|13.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800275|mMppiZtSsqkXypuPz9cvFHTab45g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3Cs2H18I15N3Pb5|Cs2Pb5C3N3H18I15|Cs0.4MA0.6PbI3||1.04|188.9|0.67|13.13|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|mMqaLHN8ADTFn3AKuvI9dy7vwGUx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|196.0|0.6509999999999999|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-06245-5|mMrPh_xdENYOMn6ow36ymeKC7gva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.780000189803432|0.34|23.0|0.32|0.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b09617|mMtjmPAHBw7WddMG-8T-DDlfJn-n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.76|218.4|0.6829999999999999|11.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.047|mMwEs4eLGzm9ilX20mtiiGIXTVGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.0|0.81|19.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|mMypV3nKRxmp4dSNaRZ5Bf5H3LEj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|117.6|0.64|6.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|mMzIoVbgz8HxYwv_9cEEyMzu-I2z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|194.0|0.68|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS', 'CuI']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|mN4M3eDI6r_ryBKCy66FvrI8oxMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61|1.6000001706098266|0.985|195.8|0.73|17.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900340|mN6JTWM3Rm4thfw9znjSU1gWmHHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.978|202.5|0.7879999999999999|15.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|mNA_SbJNcUriO4RC90NaGeuP-18c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|128.6|0.57|7.2|['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']|['Au; NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201504621|mNCId1eM1ihXofnTWLu_X_uepxFr|a perovskite solar cell with the following device stack: ['SLG', 'Au; NiO-c', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.8|0.57|10.73|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)"", 'Au']"|"[""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|mNFypmLUEWSMmX8GuFQBcA0SDxu9|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2′,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|208.1|0.74|13.42|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1117/12.2506443|mNKQ4liwaNXZlTVGeucRCyJy7g1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|188.2|0.752|14.72|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.06.011|mNLa9cU-BUykkq2CJwS0pUSUqOBi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|231.3|0.669|16.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2020.105681|mNMPPLFX_9l7sp3V4Dm-f9VpK3GV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|189.5|0.72|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c4ta05012f|mNOtez2OMG1sz9BS8rl8wLjh5xKD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|214.0|0.485|11.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|mNQ5oPkNbPH17fODKCI5tO6-7WW9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.9600002089970368|1.23|136.1|0.722|11.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']|['NiO-c']|['PCBM-60; ICBA', 'BCP']|2D|https://doi.org/10.1039/c8ta06925e|mNSoeYYNS2NXCnN7TWxvOiCZ8cFC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; ICBA', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|146.0|0.58|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00718|mNYq6KoP_SYqbrJ5mB4bXQRfAcEh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|188.2|0.508|8.52|['PEI', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/0957-4484/28/1/01LT02|mNayj9J0jwCbTleo-oYURBi2j77o|a perovskite solar cell with the following device stack: ['PEI', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|197.2|0.56|11.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|mNcvAmvao3tvqoG0J1FREUHocamH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|192.0|0.6729999999999999|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01831f|mNpkd0OFyTn4EWBRo25qUhWwAH1K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.0|0.763|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra16669a|mNwnh1RRcQQwLP9lqbc-v81EivN-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.06|228.0|0.74|17.1|['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|mO-sj4Q9wRCEVQGnVi90g5TvHVpK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.63|213.9|0.488|3.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|mO7jsjp7wevMcZD8WlsWIzh0tnfn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -Br90C85Cs15H439I210N156Pb100|Cs15Pb100C85N156H439I210Br90|Cs0.15FA0.71MA0.14PbBr0.9I2.1|1.7000001812729404|1.18|192.0|0.79|17.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|mO8kslp6Q2_ka2SCGb6W3MgGyR6S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|217.5|0.71|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|mOF9wigrQYMm4_2YNFi3iNfZU4Pz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|141.1|0.38|5.15|['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DA-PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta02670f|mOFbczL9wszvY0th5MVLWznYN2lk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DA-PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.17|121.8|0.7659999999999999|10.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|mOH2GXea8t5WJkzKezEF0JeE5UuZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|226.0|0.628|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00697|mOIpgKIoyiyfnI39C33XwtYraWUI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|153.4|0.5479999999999999|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|mOJY9gDR-FJnxj0g6i-hS5iJnnIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|152.3|0.68|5.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.7b03856|mOMPAB7TVauAaTtsyylaEZuPOLqQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|142.7|0.725|9.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|mONE_eCtIdt41qBEZ6jede4GXx9o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|164.0|0.57|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1364/OE.23.000A83|mOVj8iByx0ywXd4DBI3qKKiKSoDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|28.0|0.429|0.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|mOX-nHwMmLATEjkSPA0vxcbo-MbU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|230.0|0.73|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|mOXImrL4c8IEZNi6xPKtoCICnGRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|221.3|0.65|14.91|['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['BCP']|bulk|https://doi.org/10.1021/acsami.8b00021|mOhJWRrikmrWBP3uitw1rKcdg2LT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BCP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.1|0.738|18.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.inoche.2019.107701|mOqd7Qc9e9ktQMc7iqPkPQ-IOrYW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.0|0.74|18.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|mOs8KcSUOY2NODkBp0F1WrsMyO2q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||1.2|235.1|0.79|18.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adfm.201900466|mP5PujW2lo7O12AbXYEeuFl19x4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.131|238.3|0.71|18.42|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900333|mP8sk0htpPWyX3M5ErtK2QjMmUa8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|93.0|0.432|3.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|mP91RoyLi7eoAlF66hDwA3GnupbW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br15C194Cs6H975I585N383Pb200|Cs6Pb200C194N383H975I585Br15|Cs0.03FA0.945MA0.025PbBr0.075I2.925|1.5600001663445808|1.12|248.9|0.721|20.22|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201700209|mPCeHDkwxw_SBHwq5DUhlzPK1yXY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.03FA0.945MA0.025PbBr0.075I2.925. -Br3CsSn|CsSnBr3|CsSnBr3|1.7500001866044976|0.19|15.7|0.34|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|mPFlcJ-fC7mAIOyKJZ0z4Myxo-4f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|88.0|0.41|3.3|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|mPGiRIgiRnu0P17p9HPfTRue4sGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|200.9|0.72|14.89|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|mPOGnLtl3UIamnUkygtYTKay56og|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|188.0|0.66|11.5|['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Polystyrene-ns', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201700418|mPVW8Bh0MrnVuWNpnPZQz_2VwyZk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|218.4|0.745|16.9|['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']|['NiO-c', 'FDA']|['PCBM-70']|bulk|https://doi.org/10.1039/c7nr08750k|mPZscWYNTdCGgs1r0vRNeeYRxSPg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'FAD', 'Perovskite', 'PCBM-70', 'AgAl']? The composition of the perovskite layer is MAPbI3. -C8H47I24N9Pb8|Pb8C8N9H47I24|FA0.125MA0.875PbI3|1.5500001652782691|1.08|219.7|0.759|18.01|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|mPd6mX8Kcy9WyZrx_evDEsdYCYB7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.125MA0.875PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|231.0|0.778|17.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906374|mPdTGdD3ysc9MGWrPSygKvQ7zl9V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C40H240I117N40Pb40|Pb40C40N40H240I117Br3|MAPbBr0.075I2.925||1.01|198.0|0.6809999999999999|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2017.07.009|mQ-ZUImiJyYDF1srQG-PGCOyY1yc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.075I2.925. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.82|100.0|0.45|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|mQ9VknGZiTUAGuYisRkc2wzglFJ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.1|208.4|0.66|15.08|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.012|mQIihuJrV-WTGRjQkXK72ptrKi5H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.334|67.4|0.76|6.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1039/c8cc04271c|mQIoK6KIlnTn_9ALp83r-DX7zuz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|185.0|0.408|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|mQVWJJXHmUdNnM4uOHJf2rQNdvAf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|199.5|0.6|9.8|['SLG', 'Zn0.9Sn0.1O1.10', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO0.9Sn0.1O1.1']|bulk|https://doi.org/10.1002/slct.201702419|mQm7GkgQl4-8e3AUqGp2N_5IknnW|a perovskite solar cell with the following device stack: ['SLG', 'Zn0.9Sn0.1O1.10', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.823|158.1|0.64|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta01715k|mQzOmTbtzeMv8QxLIiTkpOB5M8eb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.107|215.0|0.562|13.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|mR33JjpzzPlWOoOeUiVzBiWaWL8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3|2.3100002463179368|1.37|56.5|0.69|4.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.10.017|mR6VbYxEGi-gHQtV8gpptNYTbS0Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|215.1|0.8|18.36|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-TM', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|mRIAmTQVs-orowrZPbil6rAU2IfI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C6H24I7N3Pb2|Pb2C6N3H24I7|BAMA2Pb2I7||0.81|77.30000000000001|0.485|3.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.electacta.2017.04.067|mRPng7kI6WUFaS_YXs_LJX6y5bR1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAMA2Pb2I7. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||0.95|206.04|0.73|14.31|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|mRRe4olokPLDWU4-WzAhOsvJVf2T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.8|0.75|16.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b08489|mRhWVcfriqMAKDG-AtKES0zIOEzy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|112.4|0.3989999999999999|4.15|['SLG', 'ITO', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['none']|bulk|https://doi.org/10.1039/c7ta10366b|mRuMiU2VGKEyu9CAnwyI9-0JROey|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.19|226.3|0.72|18.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|mRxx4GyoNuqtvSuH4JjzVnsbvam5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|137.20000000000002|0.747|9.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.11.028|mS0P7wZUvJULErNFW3QHNZYugslD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|168.1|0.54|8.93|['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|mSGSI_8LNVQdoVT6XrsrsFRPbQbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|204.1|0.72|13.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-016-1467-9|mSJvoQTonEiReuZudn2IgCsnLuPl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.78|139.0|0.32|3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|mSPrksZ2BtoqU21agcxMdz4G0DPB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|206.2|0.57|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE01|mSWeZN3uf8Vyyp-7oDVDiJjqnH3j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|191.4|0.61|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Ph-OMeTPA', 'Au']|['Triazine-Ph-OMeTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc04550e|mSbUmfVgOOyaQpq_Y8MY1Xrc7isM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Ph-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|229.93|0.72|17.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|mSecBQ__ZQy1UceQShB3kK2ceYan|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7|1.5500001652782691|1.023|222.0|0.82|17.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/smll.201702775|mSlZ1mKv3CsqHvffr_BHGC7AhQSl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|197.2|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C12', 'Au']|['3,6-di(2H-imidazol-2-ylidene)cyclohexa 1,4-diene-C12']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|mSpV2D3imO_qDUoJrGCX7-wSCjtb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C12', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|165.5|0.489|8.34|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta00973a|mT2OnwY9vIlBBnlOrsotQz9tnA88|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|180.0|0.61|11.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2888835|mTABzxWK8MHsViNH6wGE4En8dwwJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.0|0.76|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601433|mTJShiAO31JXBIbjxST_l9t2bumB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|153.0|0.617|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-9931-1|mTRDL3s5gF7AOkyk8wNfHrmjJSFq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|144.60000000000002|0.618|8.82|['SLG', 'ITO', 'A-PDTON', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['A-PDTON', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ee03275g|mTWkFQynu-X9gWyqpaDDtiCkV5iL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'A-PDTON', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.14|82.5|0.59|5.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|mTXMUY8CEZBSl616RG2ia__UdKox|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|186.2|0.71|12.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.018|mTbxmphGPfrUVRB8cl5tyexGy6dW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|184.2|0.76|11.67|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'ZnO', 'PEI', 'Al']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'ZnO', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2016.08.012|mTjy7m0m3evc9953KJRl-A5cV-if|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'ZnO', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -C95Cs5H489I300N176Pb100|Cs5Pb100C95N176H489I300|Cs0.05FA0.81MA0.14PbI3||0.71|44.0|0.163|0.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|mTo4-CE2daJiU1aWd42MLrDpxfX9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.316|144.0|0.61|2.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6463/aae2ab|mTvFLER6wfQmB0xe08iPBsjd36bZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.04|136.0|0.5|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201901036|mU30pRltS9MZVyuLvCIJTFeqV1N3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.01|201.1|0.64|13.08|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta08040a|mU8FgMe-9xk6Og2Ltgow-zbk8Uco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|180.0|0.34|4.83|['Au', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms15882|mUDc9M0WjNf4X5tg_5QZYQbNLjht|a perovskite solar cell with the following device stack: ['Au', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.3300001418194185|0.58|210.0|0.619|7.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|mUKU-Dqvver7pS4ZVjt2X_wthzU1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.08|193.0|0.62|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|mUOndF6n0NkYZXM3OZqDWaCVX4Kt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -C34H129I60N23Sn20|Sn20C34N23H129I60|(PEA)0.1FA0.15MA0.75SnI3||0.4|120.0|0.7|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|mUXAovbUnu13A0BfbCrwTq-Wjn0b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|213.5|0.432|7.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO@C']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.004|mUdFu7VycI1NTnsjuLdgJveGaBTw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO@C']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.321|57.9|0.68|5.2|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|mUeLMtP5I1CeNcujLn37VGtuNyUD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||0.85|152.89999999999998|0.68|8.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|mUmfjpSHGmiF81du0Yo7ic0mX2vL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.1|0.754|14.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|mUnCsQ55TeaX_TsnEXzgl_Z-Dg-q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.0|0.65|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aelm.201600426|mUnq077CnyO5UxBHU8aD94ovKU3v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.86|209.5|0.541|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06673|mUoJOXPNDCDJRev5n9wZjf_Ew26x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|142.79999999999998|0.634|9.64|['SLG', 'ITO', 'Ag-grid', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.10.101|mUu2P4UahhlPUWZQZOyNUFs_eEmq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-grid', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H267I50N83Pb25Sn25|Pb25Sn25C50N83H267I50|FA0.66MA0.34Pb0.5Sn0.5I|1.230000131156304|0.77|281.0|0.71|15.3||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202100454|mUvWeFqc3K0tqSACj7xVvEEpfIJs|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|124.0|0.6|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|mUw3Yi4C1lKmw1Q9WJt8yLzxFquc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|145.9|0.67|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.02.049|mUx-AQ7pevQDfbdYYmESmDTTOkW1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|mV4iiXS4IbBpQO-sxb0iV1lauiYD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C269F9H1026I325N125Pb100|Pb100C269N125H1026I325F9|(F3EA)0.12BA1.88MA3Pb4I13|1.6500001759413832|1.02|160.79999999999998|0.763|12.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|mV6x-rZCcuGr2aFu71UKZhDJ2iYk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F3EA)0.12BA1.88MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|212.0|0.8320000000000001|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta00669a|mV8hd-zM7WxfCKCUL3-zGQuaLDdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.7440000000000001|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.034|mVBHvstjiziULCDB8uqhPNxxZ5TZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.126|220.3|0.727|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']|['MoS2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01151|mVD6iGvQP-J9yfwTmG6zwgcs139C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||0.96|203.8|0.7|13.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00281|mVGvVEJvaCWtdS01xiG26xBYl_3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr0.05I2.95. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||0.76|61.0|0.42|2.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '[Fe(bpyPY4)](OTf)2.5', 'Au']|['[Fe(bpyPY4)](OTf)2.5']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00522|mVQCDval3-C7WxBTvxygFe5gnNM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '[Fe(bpyPY4)](OTf)2.5', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|177.8|0.71|12.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|mV_cC-YX3bl3NVQ3iQJh7YtmtARA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|211.7|0.72|16.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|mVaBqJwHR7g0rBNqq3M9Z9mWA_ER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.91|210.0|0.602|11.47|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|mVkSRLhQiau-pf1GjBMNartXN4fK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.21|119.4|0.725|10.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|mVsfO3ZmMk3EvcM_pr8c1l8PRXsf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|201.0|0.63|12.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|mVwy6lVLdcJv6KrAXKLFNv4Taf91|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58||1.11|231.4|0.799|20.67|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adfm.201908408|mW0WjYEkpvwWyGGJf_UY-llJj5Id|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -Br17C90Cs10H459I283N171Pb100|Cs10Pb100C90N171H459I283Br17|Cs0.1FA0.81MA0.09PbBr0.17I2.83||1.027|234.5|0.672|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1207', 'Au']|['V1207']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b23495|mW4TNbbu7Abn7dKZtobCNDriPeFd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V1207', 'Au']? The composition of the perovskite layer is Cs0.1FA0.81MA0.09PbBr0.17I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|195.0|0.69|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s12200-018-0847-4|mW4f4-TIy3gv4EUENcuCU-ZZVyQo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|213.0|0.634|13.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|mW97xgRyGXJvATlgpuMd9Bu2iQn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.069|220.4|0.7709999999999999|18.37|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ta12284a|mWAdtF-XSlMzsmXRZDSbR770ONVE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.115|214.9|0.7559999999999999|18.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|mWJaXVxKjDgiY1wcQftKQ8u7bRSB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.185|222.0|0.75|19.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04766|mWJfm7Mbe-CVghJCP5NRBy22OurB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C102H575I300N131Pb100|Pb100C102N131H575I300|(EDA)0.02FA0.29MA0.69Pb1.0I3||1.065|232.2|0.75|18.64|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta05756g|mWRtrHn2_I48Zx4VUIhrRgaTXtNW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (EDA)0.02FA0.29MA0.69Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|1.02|230.0|0.7040000000000001|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['NiO-mp', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.047|mWVLtuy0HtmeooN9XTNrft5R8LJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|82.0|0.496|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.04.028|mWYVpzb7pmONoxCeXrxpdiiLMZ4s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|150.6|0.344|4.17|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5093864|mWjOJ5Tm3_RcYXnBNyGFMFZKAizi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|203.0|0.701|12.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/aenm.201502317|mWqipiaC8eI4Ph2PCOmAZYbu_6r1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|174.3|0.74|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|mWrhnkIP6L8-q6pwVu9Ct_TPDP8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|223.0|0.64|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|mWuB22HBdH_bGy4Dj7zeaZu-GeqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta01143e|mWusMjBodxyzjKVbUIhXUNkEUYc0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.075|241.5|0.593|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z2', 'Au']|['Z2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b13189|mX3MqvL3oSPgl2ki-QyElH_q9jfr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|190.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.033|mXAYztY5XqpAo-vGQpX3Oo0KTh-H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.1|241.6|0.753|20.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']|['TPFPB', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|mXB6_YOTPMza51ity9h4GWL0MiNq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPFPB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.115|228.7|0.7759999999999999|19.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|mXBr-aRpr9Pw6DprED3hUwQYgrTT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|89.0|0.3389999999999999|1.87|['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5ta01532d|mXPkqDEL7c1SMNb9d4JAMeMaGM1N|a perovskite solar cell with the following device stack: ['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2700002420526912|1.1|7.3|0.54|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701433|mXbIHvoKI7L5SUC6nJqMdtgEh-fF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.0|0.7490000000000001|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPDI', 'Carbon']|['TPDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07507f|mXqvODiPnpunapu8GcgdAiUYQG9e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPDI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|187.5|0.7|14.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|mXut_LRWeu9PO_JpQxotoa6uqFSM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|205.6|0.69|14.67|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|mY-8QqGeyc4wbIAkdvlQx_X2CZ7d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|211.8|0.6679999999999999|14.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|mY1IjZdVws0U-ZKcQzUY-wfFh04H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|221.9|0.741|18.17|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|mYBefhLRWt4JzfJ63zL27TlPsfHB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.0|0.7559999999999999|17.8|['SLG', 'FTO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['c-OTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms8747|mYEfwPhtDY5VoEdUqcmYYmURHGtA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.5|0.752|12.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|mYQ8BU5ReJuo0UyZgBARYvtSIMCe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|189.0|0.691|11.6|['PET', 'ITO', 'PEDOT:PSS', '3-aminopropanoic acid-SAM', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS', '3-aminopropanoic acid-SAM']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta07008b|mYb296ybHNAGAr_0gTlONOx-qgn3|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', '3-aminopropanoic acid-SAM', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2960002448251005|1.24|29.6|1.24|2.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|mYferM1NiK6d6Hp9a7B29PUapNZb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|210.5|0.67|13.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112141|mYpCnGYExnIKvldZGuVM3eYLNwlP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.126|236.1|0.7559999999999999|20.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|mYpRne5jLJVrLTzN7NG60mRkA1KN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|146.0|0.68|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8081|mYsklZjNF-3m0Flo40Nw7l0bxSEJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|208.7|0.778|17.69|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|mZ3fi3v16mmKu9OmvzCnZLBCQU2Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.06|229.9|0.77|18.72|['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|mZCe3QkgLDxuqRDJtCyNXVsl-5HD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|85.0|0.45|3.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'Au']|['TPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|mZE5VOjf7FhFXvsX89tPJ5ASaIwN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.904|118.02|0.32|3.7|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|mZJYi2UvMoS6Wo7OSNtH06ArMHvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.9|0.465|8.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|mZR6OIZbrDaIG5FpWHKgfyMU5yIh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|mZTt_zv4V0ifI3ZfrcMTad8GKKis|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|222.7|0.701|17.11|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|mZXybk_vcrhNz8H7RNaZoDqRNo_w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|215.3|0.659|14.79|['SLG', 'FTO', 'Perovskite', 'HTM', 'Ag']|['HTM']|['none']|bulk|https://doi.org/10.1016/j.solmat.2017.04.035|mZdjvkqJF4RsTwDKjfbyjMI1WS6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|200.0|0.77|15.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|mZf24NypOGtot9YIejiWT3oZQAqa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.52|139.5|0.384|2.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aag2700|mZfQKaQjaZVSf9P29BcpYvxVxO8V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|199.0|0.78|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1063/1.4901510|m_61Xv-TzuwHaKtpRacGO0clk5nU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.39|88.6|0.373|1.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|m_9Ql2bhEm6kvXj9X4BWBL3fLpZW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.6|0.65|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF002', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|m_BsNPpTs4KZ4xNuTr6cRKi4zc7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BF002', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.99|239.0|0.68|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep43979|m_BwjiUi1VadtHS9imX6cvjUtSiK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|200.0|0.741|16.3|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|m_HdC5iUCJi6L-TM77YWDcRHDjAn|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.0|0.64|12.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee02465f|m_O7UC4-NngI7aQ77pNsrAU0W7UQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C95Cs5H524I288N141Pb100|Cs5Pb100C95N141H524I288Br12|Cs0.05FA0.46MA0.49PbBr0.12I2.88||1.129|234.9|0.7859999999999999|20.24|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta01070j|m_QrldIIDvRWtROX3qEUn8-hX_Ro|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.46MA0.49PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|192.3|0.7240000000000001|15.28|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|m_a189yys5JDEQ8R6DTaPEcH0lpW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.96|219.3|0.657|13.83|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|m_bUbm1U03BAbNnRgG1-vco5oCRb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|228.0|0.8|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|m_jCNM6SkRpCl_Iu2rkEN4gGhdsf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br21C340H583I119N77Pb40|Pb40C340N77H583I119Br21|(PEA)2FA0.85MA0.15Pb2Br1.05I5.95|1.5900001695435149|1.1|231.0|0.7559999999999999|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/solr.201900463|m_jUDEPMk2cNOR2gJLNeCZpJkztN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2FA0.85MA0.15Pb2Br1.05I5.95. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.075|232.0|0.61|14.7|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|m_k3n51wVBpc5uoEG8Uhm5Ufbh-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|193.7|0.7190000000000001|14.15|['SLG', 'ITO', 'CuCrO2-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuCrO2-np']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano9091311|m_lOg7M3qBlkFfkpSSSrig9WNQi8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.08|235.8|0.8170000000000001|20.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803476|m_lWIPdpd7ybTF-8o0vOZhfG_7yU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|213.8|0.79|17.78|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-TM', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|m_oMPfq8ob85CQ8aT7zo9RXbJcdD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|175.0|0.74|13.2|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|m_poj0IPNU7HWN31GYjIP3vUOK73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|201.4|0.775|16.36|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|m_rTPpf9VyJg0EwkvJzy1TMMmxSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.074|231.7|0.7559999999999999|18.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|m_wJL4R0oDOzCLvqgbdXoNC11YlS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|181.0|0.551|10.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|ma0szykzsoDWpiIevvBYG56NZ6_f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|196.2|0.68|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|ma1oOBPe452M2ckjEjJALBw9eVty|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|232.0|0.642|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|maQKLsVHyxC7vXNTdE3fJrR8fhza|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.3019999999999998|62.5|0.665|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201800019|maSVElHSSKdpFBGwILcYwGjkHNkQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.866|224.0|0.606|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|ma_-kTPYsVU1a_fLsChj14LGzoVB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|185.8|0.56|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.02.011|maxdV1UgEbtBgHdvD5v2nXkQBuxN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|227.4|0.7659999999999999|19.45|['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|mb09x969zUWRZGIyHbONUVVNQO60|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|222.7|0.76|17.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|mb1Z3mbplfRIDDiRaZAj8tiDVZ-1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.114|223.6|0.8109999999999999|20.2|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|mb3_ozSk4hiMxVgANMtySHFEMeRy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.96|102.6|0.31|3.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|mbC02qai9FIYSSgRrJKZearXQbpj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|1.2|0.431|0.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00488a|mbH7uHmB4xS5gOkMzhik0MlfdjR9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C103Cs5H489I302N188O4Pb100|Cs5Pb100C103N188H489O4I302|(5-AVAI)0.02Cs0.05FA0.93PbI3||1.03|229.1|0.381|9.0|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|not processed|https://doi.org/10.1002/adma.202000571|mbHG9xtUTmEIF6C_Ea-cuQyWBDyK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (5-AVAI)0.02Cs0.05FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|217.3|0.75|15.76|['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|mbIBjELQUFvIqHAxRaPNBB4aq_Tw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.0|0.477|8.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al', 'Au']|['NiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b03989|mbKZKHKPNAGGPKgzk88tym-ypcKE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.08|224.5|0.74|17.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|mbVEOHhiLWlUqd1txjSHaARg0YwR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.33|68.2|0.6920000000000001|6.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|mbWZXinl667rmiK5LLBf7upl_82Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|137.5|0.33|3.27|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|mbdAZe7ejJ1Jt-5P63eopaG9P1R2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|208.1|0.723|16.32|['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-nanowalls']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|mbv5r380s94fUTjsl-MZrqGskg-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.4|0.66|12.89|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|mbzFFu7Eg4EoUDN9fUjdafs8c-4u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.360000251649494|0.92|96.1|0.58|5.12|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2017.10.050|mc2AIz_9Tgz8CTplqrjqmQR379z6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.95|187.0|0.72|12.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00926|mc2tZujha_QAImgO6d44JLBq2USu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|223.0|0.7070000000000001|15.6|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|mc6OJl3CWWTNSbciSzVWNgrS7E2P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|183.0|0.524|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700222|mc7cGcpuL62d19X5dIY53UXQIWS-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.984|205.0|0.75|14.5|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201702775|mc8r6pTq_o8O-aByIA151_LtQ4_3|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5970001702899328|0.92|183.1|0.63|10.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104246|mcBlsJ6DnTWe2jwIF72qgxxO4ufc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.0|0.66|12.67|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c5nr02874d|mcPK4hHkbsHXxmWUj2XmCKS9OFmi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|203.0|0.67|14.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|mcVHjqS5OYcHmt_MSciRq54iBkU7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C18H30I2N28Pb5S13|Pb5C18N28H30S13I2|GUPb(SCN)2.6I0.4||0.46|12.3|0.58|0.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ra00639c|mc_YAfPQG29qo_ZAxDXnu8gM8nXF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPb(SCN)2.6I0.4. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||1.094|226.6|0.741|22.32|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTPC8-ThTPA', 'Au']|['PMMA', 'DTPC8-ThTPA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/anie.201905624|mcdCnYsryO2-jGBRXRqmtfU0LcN4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'DTPC8-ThTPA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.14|196.6|0.7929999999999999|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705763|mcshMYXbeDY65VxgsaHA4cZUBsNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|147.3|0.69|8.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp02705e|mcuVhtRIvYvJu6mXfu-5KgyZCAvU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.670000178074006|0.926|204.4|0.59|11.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']|['TiS2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201700250|mcxR4rp4AE3AOe81E8eDYKf_H71t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TiS2-np', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br7C37Cs13H185I43N74Pb50|Cs13Pb50C37N74H185I43Br7|Cs0.26FA0.74PbBr0.14I0.86|1.7000001812729404|1.142|183.0|0.775|16.2||['ITO', 'MoO3', 'TaTm']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c02445|mczuT204UPHOyuP8gskrb2d79bTK|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.26FA0.74PbBr0.14I0.86. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.710000182339252|0.89|148.2|0.41|5.42|['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.032|md494jsuA-zKvWfOseqf4Q4xXwWS|a perovskite solar cell with the following device stack: ['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|md9cFRBAM3r6EXy3Esvr0S5Zcbb2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br300C33H165N66Pb100|Pb100C33N66H165Br300|FA0.33PbBr3|2.288000243972052|1.3530000000000002|64.28|0.723|6.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|mdB9GxLcHM0a25fiQzbonIhcc56B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.33PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.5|0.75|17.56|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1039/c6ta09709j|mdKcnEOJd1eM0Z0wHrY71KU7hPXF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.94|22.7|0.31|0.65|['SLG', 'ITO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1002/adma.201506292|mdQFddnzMl_6LQRgL5KD_L6C-bOf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|185.0|0.7240000000000001|14.0|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|mdRlRbN1ginKOFlo0rwEJDFp5gsD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.7|0.76|18.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00769a|mdeB5mGzL3t1x4QY10uaY5O2-Oi-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|213.0|0.69|15.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|mdtGPI9Di7AP1XZXKjkaR55t0w73|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.062|193.47000000000003|0.777|15.96|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||mduB3bvnozDZxtUwdADrgg5LZNQO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.74|67.0|0.62|3.08|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|me5xZON51YT5Z139DbIS0o3e_jif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|137.0|0.59|7.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr04076k|me8lnybLzm2KO84BrhoVhGcWSvKE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|148.9|0.73|11.02|['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PCBM-60', 'Al']|['NiCo2O4']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5079954|meMBk17ZNdJQ7wHRAtqX3bsTh8ZK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800289|meTut_2nPdPdpJBFFXrNhXI2i-88|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|meZehC9z2StKPEAisUYJoj-A97d6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|205.5|0.653|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.025|mebEyUrpyjZWBAsaK8wwkqo6CxhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Mo']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.09|194.0|0.754|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00518|mevg_u0RRfosVg8_E5himPzKISk4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.14|218.3|0.72|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b19030|mezfHzcZnXitD5o8qJJh1ihp0onj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.98|193.3|0.59|11.13|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|mf-4WsksXmbZAx5PsaU-LtNuZbKd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.13|198.0|0.772|17.3||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|mf4Z1HSozNEONXFQPeE6ygZ6jm4I|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -C313Cs24H1245I560N346Pb96Sn72|Cs24Pb96Sn72C313N346H1245I560|BA2Cs1.2FA7.65Pb4.8Sn3.6I28|1.230000131156304|0.7|235.0|0.57|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|mf8kkRNHlveam_5kRj7PE9rGPT8y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs1.2FA7.65Pb4.8Sn3.6I28. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|170.0|0.72|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1016/j.solmat.2017.07.013|mfF9boaXYps2KjinoN8zRv75Og4C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.780000189803432|0.53|43.1|0.46|1.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b09617|mfSgFjV8H6Z34kKY5x-YW-uPjJ_d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|148.6|0.62|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|mfWFCJV5PzX-ky056ak0_d809rKb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6800001791403176|1.212|199.3|0.787|19.02||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|mfYtsEzTBFJzkQpe4-3524JQSRod|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|176.0|0.57|10.7|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|mfjMKJazC2nz82FRIev4RiZvoLtJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|177.5|0.55|9.56|['SLG', 'AZO', 'Au', 'AZO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.01.008|mfuSgHKZ4JXRhQe2tCN3GApWN6iE|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Au', 'AZO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br78C189Cs10H982I522N371Pb200|Cs10Pb200C189N371H982I522Br78|Cs0.05FA0.76GU0.075MA0.11PbBr0.39I2.61||1.151|203.4|0.7090000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|mfwmnonauFYbugrB_cshxtf2-wnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76GU0.075MA0.11PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|228.8|0.64|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110130|mfy5PxF_YQ4ZSQ55Fgr84w8LhKz1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.9|175.7|0.428|6.82|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuMePy', 'Au']|['CuMePy']|['SnO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2019.116248|mg-yfaXmTklUDWOUEIZVrJ2TRNTJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuMePy', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|126.0|0.57|6.01|['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']|['MoS2']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.012|mg3U91M3dpz9zleXL-x7WAJkFWp9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.12|237.0|0.72|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|mg4GhcOUwgQCCNUii2EIv6ntq3lu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|216.6|0.65|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|mgKx3JudrwdSgd3iNyzg3yej9j62|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.0|0.752|16.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801248|mgea_bL3fkJ-ijJIu4C-YgadIYT8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|55.0|0.18|1.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|mggtiaZ3-V6rw_HmeWIIbkR7sC5b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|252.1|0.63|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.eurpolymj.2018.06.005|mgsBqmmzFICiGZ2KB5LCoFHH1wpJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.8|217.0|0.57|9.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']|['CuInSe2-QDss']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|mh1o353nXVCLMN5Ru3qf2EW6kA_1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|165.0|0.492|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PT3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11434-016-1050-x|mhBwr7maqrqgXpxBmFLu4jqMjEUC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PT3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.127|236.9|0.745|19.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|mhFpa1dhhQf8ysygYjBEgF7QHlE-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.789|153.4|0.721|8.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|mhIYcJqKaf9dnSM-LyoGf93hAJL6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.108|204.0|0.763|17.2|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900191|mhUd4JmsGZsuDivhephoLnKkn4Hw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|210.1|0.634|12.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaeeb2|mhYErBHaT_zaZe0zQj8NgnodceXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||0.95|220.9|0.782|16.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|mheHiJA2DieiIZxNlxP_BjxkUdmM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|152.0|0.583|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta02921f|mhhuTBpR2-aRZmQGdOWHmxMp1Ny2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|188.8|0.48|8.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1002/cphc.201601245|mhkRk_Ax6zUMeUHbH4pOyomL2zAS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C34H129I60N23Sn20|Sn20C34N23H129I60|(PEA)0.1FA0.15MA0.75SnI3||0.47|155.0|0.6|4.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c9ta02835h|mhn2UbDo81synONWw6FsSlc3hqWv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|169.0|0.61|11.2|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02105k|mhuYXQeWl-b5mdiU66C9q8oJpUs0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|145.1|0.74|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4864638|mi1Ur5sTvSl9DZxZG4w2RJPk_6Iw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|191.0|0.6|9.6|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|mi3Tu1zcER6uNY030rqLEgyVqU0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.0490000000000002|178.2|0.6859999999999999|12.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|mi4yXOk0PWNU7t6pbLerUvtL7DcU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|170.0|0.43|6.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201602803|mi9QW_64FPZn_GX5_kxqf-x5s-xh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.16|134.3|0.74|11.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|miCWDmqIoyAhQqq5ye_UJETcCB6a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.0|0.63|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.09.091|miFKSE5JTBwbtNi7NBw0jlZ7qfNV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.092|222.1|0.755|18.07|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|miG0xtGE6pRyrBxqO4Z_9BweRhRp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.09|233.3|0.785|19.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|miK4NdZcN1hAg9aXXqn2iqiw9qGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|227.2|0.6|11.84|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|miKobCmltsd3e9Fvd7PHhdnvwUML|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.1|227.3|0.79|19.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|miLyKs7qBHzG30W7dxf3EQT3sqyE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -Br369C950Cs50H4873I2631N1777Pb1000|Cs50Pb1000C950N1777H4873I2631Br369|Cs0.05FA0.827MA0.123PbBr0.369I2.631||1.142|229.0|0.773|21.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', '1‐adamantylamine hydrochloride', 'Spiro-MeOTAD', 'Au']|['1‐adamantylamine hydrochloride', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201803587|miNCNAmlPDquWkJVtn7TZOGsFo5i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', '1‐adamantylamine hydrochloride', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.827MA0.123PbBr0.369I2.631. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|147.0|0.69|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|miNEzLEZBzK9dOzTRwNjcFVW46He|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.74|26.1|0.46|0.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|miWlKvVc1LuBqI9AqhfxxTvIwq8h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Br51C50Cs50H250I249N100Pb100|Cs50Pb100C50N100H250I249Br51|Cs0.5FA0.5PbBr0.51I2.49|1.6200001727424491|0.846|176.0|0.57|8.5|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1002/aenm.201703506|miXHVkEr_FFJbuvaNUZIMDpwnQdq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is Cs0.5FA0.5PbBr0.51I2.49. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.3600001450183523|0.77|265.3|0.78|15.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|migW_2lkq1995kcQqkaumn2CQvU5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.9|0.594|12.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.03.002|mivygHt9CRmczgAzdbueHxt9uacp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.5|0.78|18.33|['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEG-1']|bulk|https://doi.org/10.1016/j.jpowsour.2018.12.066|mj55vY9XaEOMS-pOBEijkGnE4ouL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7120000000000001|188.0|0.6|8.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ee42282h|mj5zc2gAxDVq0yxxq8fs_TjydwZq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.0|0.708|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPDI', 'Carbon']|['TPDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07507f|mj7ONlNKlQdpqekPu90tExkGAQwT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPDI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.12|227.0|0.748|19.27|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|mjINzDszBoUQqToEWSjh5JKnMDMA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.5|0.748|17.48|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201600594|mjQBm5BkBoXUVDVX_0auVX30CTGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|230.0|0.77|16.9|['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IDIC']|bulk|https://doi.org/10.1039/c7ta09543k|mjXgYEktLyf1O_FT515Tpaubu_eE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.6|0.759|18.48|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3389/fphy.2019.00166|mjYytnJNDkHFFb3PDwcKFU2ksHtk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|234.8|0.7140000000000001|17.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801717|mjabYi-LoB7LjfDHpjrk_d0qMjMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.7200001834055632|1.31|193.0|0.78|19.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201803699|mjb-U3L8yQKCx4X3QMjxGejDEAgY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|227.1|0.7559999999999999|19.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|mjoWomWPJjIlmUdhRG7WxDT26goW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7909999999999999|207.0|0.58|9.5|['SLG', 'ITO', 'WO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3-np']|bulk|https://doi.org/10.1016/j.solmat.2016.10.002|mjps8CNvvFiV6OQzZB6IaIdRGlF1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.609|98.2|0.507|3.03|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1063/1.4953397|mk9XJ4MAWT8Jxu6LMPikGF0JphQB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|203.0|0.77|17.2|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee00162f|mkEM721l78cRl0Xyf8qTMMk_UGb0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|125.5|0.442|5.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.212|mkIjcjPaGmSCb12twEaG5ouTrLVu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.94|209.0|0.73|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|mkMVdV-Z2aTQf4aaPwswo3xhG5jI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.898|111.0|0.68|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b01808|mkQkAHTMg26fj566327ZdsjJi3Yi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|192.0|0.74|15.49|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|mkcIkWEby5CHwArlPvSViKSBplVc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.06|224.0|0.82|18.3|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|mkrdj-iTtX2V2GaJpz4rCiGugn8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|157.0|0.62|8.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|mksps_M4tFfGNUCTs_SCC3d0QJM2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|62.6|0.41|2.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']|['BzTA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.004|mksr7VA8PdyCQugX0D1VTOJVnJ9q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BzTA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|221.8|0.775|18.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.027|mkvQ3GAKzSch8pUWtsBn25tRDIcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|154.8|0.75|13.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|mkw-Q503QvG-9fUMDAkp4HFvgHgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.06|235.6|0.706|17.59|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|ml0W38HYDRWmPtz9P8Esvvp3hBbO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|224.1|0.74|16.96|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'CD', 'Ag']|['NiO']|['PCBM-60', 'CD']|bulk|https://doi.org/10.1016/j.orgel.2019.07.018|ml74nohSy36W5Ihv6cdTq-1oSYTz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'CD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|236.0|0.6|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700164|mlCgZK5goMxTNeTw1P109hBawWMi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.37|60.6|0.701|5.82|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201800855|mlJVugUT81WhHFT8-Qw86SbuNvaK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|207.0|0.64|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'NiO-mp', 'SWNCTs']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solener.2017.01.019|mlPWqS7FjR-s5ezm6GSJCzh_DlLe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'NiO-mp', 'SWNCTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|275.5|0.552|14.14|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|mlV2KTRKj3yoBZtNCygCc9l3tafk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|188.2|0.7070000000000001|12.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.076|mlVnCUnI9TcnduHdSGtkHl09Heis|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|163.6|0.65|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|mlXn5-0QFB3rHrpKZ9hS72byIjMj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.018|223.94|0.6920000000000001|15.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO@C', 'Spiro-MeOTAD', 'Au']|['NiO@C', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.155711|mlboWxRXvsuglyckJjDQteFSa5aC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO@C', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|183.0|0.48|7.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']|['NiO-c']|['PbS', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800012|mle65aLo6IwC3mejS_JwcgQD542a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PbS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.05|237.3|0.664|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.10.001|mlh6YUAcL0nzAYVFPR1hrtRu2t9q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.764|129.60000000000002|0.659|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|mlvat9UIo1MFXlBjta6GZSc4xdmi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|231.5|0.76|19.5|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']|['P3CT-K']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b03444|mlxwRC1YD_znwUNgn9mlNTlhA_DH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|177.39999999999998|0.629|10.24|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|mlyPa_OGe5HWpdFcmv8qVreX81Ws|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.155|230.5|0.7490000000000001|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1039/c7ee01096f|mmBAvng-QwFg4WbDzfZZVWiyYNEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|mmFnX28QlkifjH_8KzybJ_9WTppI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|237.0|0.72|19.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|mmKeZUw5AKyoM9azMzIMl15pg_r0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700484|mmc9jnslsEmRwdryFhMg7f62jxp9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|211.0|0.79|18.7|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|mmgxcX7xhmeqvrD956gdiOvGRNV_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.7|114.0|0.62|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|mmhCVEBS3Tav4sH_nHLV78eusjtS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|186.5|0.7909999999999999|14.97|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|mmtmcj3A1bFqF68JJMw-H7QCbl0N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||10.42|['Ag-nw; Graphene; Polycarbonate; Polystyrene', 'MoO3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoO3']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b09056|mmx1ITMQbxQuWtOyrm0Jhvsg0qlw|a perovskite solar cell with the following device stack: ['Ag-nw; Graphene; Polycarbonate; Polystyrene', 'MoO3', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.125|235.9|0.764|20.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|mmyh-izbFZ01M5DUMBWM5EFPj3l1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|185.8|0.5379999999999999|10.35|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3,5-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b']dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione"", 'Ag']"|"[""Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3,5-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b']dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09146|mn3_QrqIdPUT_u6VYmUxSjek-oNV|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3,5-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b']dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione"", 'Ag']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|167.10000000000002|0.52|8.49|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc05325d|mn4Wz8KM-ZsE_GVfcyD8vLNKLDcn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.9|0.72|17.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|mnEyhMEW7LU_bKcDGWixHwC_nC6B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8240000000000001|151.0|0.69|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|mnSE09pagwAoMmXRnszPils3k-9Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|224.8|0.77|20.77|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|mncOgzc8aTMSWYpd9d6KZTblOx6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|mncwzG0zd2KMLJbivVzx0REpj3nD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|218.0|0.7659999999999999|17.7|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|mnersG9p9-boke_FG8H7um-EYVsT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|145.0|0.45|6.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|mnrG-ONQpn5IIyT0PhkQJ6C02tGt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|187.3|0.7090000000000001|11.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgAl']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.11.026|mnwt3VOtTtpt5a11B4sCIJBFCpxw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.0|0.74|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acs.nanolett.6b02307|moC4vtPCCNhsIg7D5m6OiMM7ZLhs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|60.2|0.5770000000000001|2.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc', 'Au']|['H2Pc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974797|moD1K72_vGc_XYnHHIi203XF945Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.135|233.3|0.769|20.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|moFKDkJ2wcaMILnIX5i06KG-WLP8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br255C475Cs25H2456I1245N869Pb500|Cs25Pb500C475N869H2456I1245Br255|Cs0.05FA0.788MA0.162PbBr0.51I2.49|1.5900001695435149|1.08|224.0|0.763|18.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01893j|moMivwx3oUyEiflYYYQnpdj9UhUu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788MA0.162PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.8|0.754|16.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|moTbD9SpCzl-nCzfbmMCBmDB8eB9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.09|206.9|0.682|15.39|['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acssuschemeng.9b00991|moTewnJRRambYDh2TouLRH5XC22o|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|202.3|0.63|12.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TP1', 'Au']|['TP1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600517|moYKK08bQ3H2mqhcWrMZ2L5xppmR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TP1', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.7000001812729404|0.41|138.0|0.62|3.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00976|mp57JlN3wsup7p8UYlpvl5y91xib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|100.1|0.58|4.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/8107073|mp5We-MzAVKoICazbieM_0DfrGlO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|198.0|0.522|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|mp6FKVLrT6ZdoaEbowm3eoA_B654|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.3|0.6609999999999999|13.15|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|mp8lVdDb2Ry_K81oXxiZDyyNNcOM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|230.0|0.74|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.09.091|mpDVEbGjbZJXxC76QizIf7lOFT9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.06|161.1|0.785|13.43|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|mpGW88PnjukawkzlGGfDHj1Q7Gzm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|200.7|0.76|14.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|mpJRywFu_SBVub5d9REOTKyrioSz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.117|233.0|0.785|20.39|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|mpfLk3kZoomoDlKZFjqfOxWhX-jE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|196.0|0.525|9.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03655-w|mpfyJ2idJF1yfmvBqSyWheHhUomO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.0|0.65|13.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|mpg2CLeRPNTj5BaY4v7CSJhq98l-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.104|210.0|0.703|13.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-018-2752-z|mppxo-aXtmIg5I910tiDWUQudEe-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.0|0.596|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|mpyNzM_9IYAyKB8-YaegrErBlCNi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.621|27.0|0.397|0.7|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO']|bulk|https://doi.org/10.1002/cphc.201301215|mq7orlacqW4HkQLliN8kZJC01DCF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|209.0|0.77|18.2|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Isopropanol-hydroquinolatolithium', 'Ag']|['none']|['PCBM-60', 'Isopropanol-hydroquinolatolithium']|bulk|https://doi.org/10.1002/solr.201800084|mqKb6R2-XDDZtwCvDE1T79vAVPAN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Isopropanol-hydroquinolatolithium', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|166.8|0.312|6.39|['SLG', 'FTO', 'TiO2-c', 'SiO2-nanocolumns', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-nanocolumns', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta08743k|mqPBL3pZ3xnScCZQElPtgpBGbI95|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-nanocolumns', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|235.0|0.68|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150068|mqQnrPSImnQArkWZ3euP1ssWLq0f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.92|230.7|0.64|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|mqVF30PGCJ45i4IywUMqcqLfUJaR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3|2.2800002431190025|0.855|60.0|0.42|2.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '[Fe(bpyPY4)](OTf)2.5', 'Au']|['[Fe(bpyPY4)](OTf)2.5']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00522|mqVzYe_0dcVtTmMjrN8tSKXk-UXO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '[Fe(bpyPY4)](OTf)2.5', 'Au']? The composition of the perovskite layer is FAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.118|231.7|0.742|19.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|mqfJ_po7c4jp5g9CBw59sE9qPd4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|145.1|0.72|9.62|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['Graphene oxide']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.032|mqhCToTS71sy8wFgO_ByomcTMzjT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.04|241.0|0.65|15.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|mqqSwqKdftlMYZvuu0oPV8CbBc6f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|208.0|0.765|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|mr-LzSVlfAA8j0BeomJrcNeE6NPZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsSn|CsSnBr3|CsSnBr3|1.7900001908697432|0.367|139.60000000000002|0.594|3.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']|['PTAA; TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10734|mr95QaVI-8Z8CuPfzT9D4gLngJKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|230.1|0.68|17.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta05288f|mrAVTyUzWkhbSjAxIDUn98MLMhZd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.0|0.71|10.74|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1142/S1793292019501261|mrKos2KjQMevMFxiBB1uH459aUpU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.1|247.9|0.769|20.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201901241|mrRFvE7wmg2cPmevtCS3zLR5o4ry|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.09|210.2|0.65|15.07|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02047|mraThNKuqtJhBTXGdRwJfp0sVaCK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.025|194.0|0.73|14.4|['SLG', 'FTO', 'TiO2-nc', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/admi.201801076|mriI0lu7vKLW5VE5ihG4_mRo_qGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nc', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.9|0.789|17.36|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901719|mrtdaZdgk1SPWDh3dNPg33Be9_9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|191.0|0.627|11.0|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|ms0bQK2p4L33ex2VcDoqQpIpLbLD|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|235.0|0.74|19.57|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201800544|ms3TJzDZjfVDXfFeu9cJM3ZmaIYa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.0|0.61|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']|['CdSe-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr03487c|ms4zViDBc6rGko7Cg6_yadAYxi3u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CdSe-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|msEDp7IAupKu0BWj8hDQkSOwv5Tj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|165.5|0.69|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b10166|msWaS5PhKbo98I-djex755xhFiKa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.87|167.10000000000002|0.69|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mseb.2017.01.004|msj9wTbwVallbcO40Tj010VqQSZx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|209.3|0.72|14.97|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|mskVu8CpwtxkDmIZdxbbjzupxwDt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|170.0|0.752|13.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|mszWv-Oucbn7RK8DOc8cpcouqM93|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.400000149283598|0.3929999999999999|238.6|0.624|5.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|mtRs6GSjfLWV5V8xdaO8eq1a-SEM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.0|0.7|16.36|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|mtUDqXfFzLAR27b0KSIbvHCHULSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.7|0.71|14.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800339|mteCLBPhDqGLS26W1t-6V6IXGoOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|198.6|0.68|14.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|mtkHCbNu1vEhSzNo_ZUXFYPdK1pY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|185.6|0.608|10.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|mu-7nfHriVWnOg7x9PvfKAfdfKIi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|152.6|0.642|8.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|mu1h_x1lrQ3t2JvpHtFJunaYp5hz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|216.7|0.69|15.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5EE02155C|mu9S2sOegyKcO3vKbkA7x6F8uqEc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.4|0.6|10.7|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|muF-eNGVZPb-oiDr9jp14Yu5knk8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8759999999999999|194.4|0.715|12.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|muH5h_3ymZ81oBq9lD5ARmi2l-Ls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.01|198.0|0.7020000000000001|13.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C70', 'BCP', 'Ag']|['PTAA']|['C70', 'BCP']|bulk|https://doi.org/10.1039/c9tc01741k|muI2KgvfqJqvxlNlbs43F7Uf9J3o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|173.0|0.688|11.6|['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Polyacrylonitrile-grafted rGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|muQ9UyBvaJV0nZj8pKh0NCzw8M3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.96|231.0|0.65|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04611a|muQP_UujGFPG5ngrxP4onH1hk3dP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||0.95|181.1|0.644|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|mubKNs3xksG4uC3MvqbTloFgmRv3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.101|213.3|0.773|18.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|muilzyzCDEG5e43QSXZ3o4TAftjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625||||4.54|['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|mukGsmhPLZbtUYlu7E2qJYYfJ-RT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|209.2||17.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|mukLdLtu8Ef7wJAVsB4fZ_bgSerP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.767|238.71|0.564|10.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||muwIAOqN-iQfOfc3-m8IL_mpi_a2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|195.0|0.46|3.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee01337f|muxv0GrTLYie2eOMvilf9uE5885Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.2|0.759|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|mv3rgak2sJ5TVimNanToVliX3UyT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|104.0|0.362|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|mv4JCXH8Sc8-PxUGQCkPIbjcvhhm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|236.0|0.75|20.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|mv4OECvI9_TbI6VgY5FSCt9L02VD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|170.0|0.6679999999999999|12.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802995|mv62AuLvGXEhMiKbVzXEJ-bKIqGE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.98|127.0|0.52|6.49|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1246/cl.150814|mv81bCgsRnBb5BqwaJNdbOtLHl2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.0|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|mvEJrCI-Axn2CiJe8ThwdBRP-woq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|215.9|0.67|14.46|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|mvIQPgZC5R7Pk5vzjMkp5mQoz2TM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|219.0|0.63|13.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano8090701|mvO9cfAiJk-ELRRGQBlgPhoIXTUA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|230.0|0.55|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra23845e|mvi_G3cgOEWYIeCFl6c6nZ67x-ik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|220.4|0.647|12.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|mvnA2UfEFt-0zdqo27j5Bu0W0Pbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.2|0.58|12.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.049|mvpoJ4BASE1vvt4E81M7uo_ihaRI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10CaH60I30N10Pb9|CaPb9C10N10H60I30|MACa0.10Pb0.90I3||0.32|30.0|0.306|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|mw3KpJtLlLIq7QApEHHAsyT7Mzzl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.10Pb0.90I3. -Br6C23Cs3H99I54N32Pb20|Cs3Pb20C23N32H99I54Br6|BA0.1Cs0.15FA0.75PbBr0.3I2.7||0.97|175.2|0.53|9.12|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903221|mw4yGGL9s-VYWuVwU3BWULdEe1V6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA0.1Cs0.15FA0.75PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|136.0|0.485|6.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s00339-017-1240-7|mwFRqljDLV6LcwcT2tUyRYHJGZPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br20C18Cs2H93I40N33Pb20|Cs2Pb20C18N33H93I40Br20|Cs0.1FA0.75MA0.15PbBrI2||1.14|201.0|0.7|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700228|mwQk8IzXTfnf_keo34dIQEPNiqw4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'MoO3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBrI2. -C5H27I15N8Pb2Sn3|Pb2Sn3C5N8H27I15|FA0.6MA0.4Pb0.4Sn0.6I3|1.2500001332889268|0.845|286.0|0.7240000000000001|17.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b01287|mwgWq6HJOLJRZNF6MeRZeIxDLG3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2c', 'Ag']|['PEDOT:PSS']|['Fullerene-2c']|bulk|https://doi.org/10.3390/ma12081314|mwgwM6Y9jmS9TKn4At5LnAPVQ-Wb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|206.3|0.731|16.44|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|mwuUH0q0DxuzwvHm1VuMjkkHAngS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.0|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801654|mx3ZR0DxSve0cIQjERfzkcXlONcK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|138.6|0.62|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|mx5XBDo-FJRFEasfWbigV8VSHbop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.112|231.8|0.752|19.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-OMeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|mxG_t_ymIllaDxCi3Btja7w_kPo2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-OMeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.955|216.8|0.644|13.33|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|mxXZ2wESvnrJxVhCei-5wvLFm0uy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|210.0|0.74|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1039/c5ta01898f|mxZCtgCAf5e4mt-APpUcZQ4HJlei|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|185.0|0.78|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1039/c6ta07004c|mxbsuUfE4EXEd_dppeERjlN1qJWC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|218.0|0.745|17.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Au']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01499c|mxbxEY3mWDRE7cAtP4L4stKEQ8kl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|231.85|0.772|19.52|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|mxcC5cxZpS5KS8p3YWc3bmvokSDW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|112.0|0.49|4.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|mxfGTgClQ5KMMdsjqPRNP-l1ruFI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|176.0|0.753|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|mxhpS00Jd67-ZyRw8ATJAcoVAABd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.0|0.7390000000000001|16.46|['SLG', 'ITO', 'SnO2-np', 'Dompamin-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Dompamin-SAM']|bulk|https://doi.org/10.1021/acsami.8b10332|mxmVEiWi7FtiBxCyypA3dLQPcUDe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Dompamin-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.06|230.0|0.754|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|mxooK3CYVlZKASHTFdAgecXjCAin|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|1.900000202599169|0.61|3.7|0.2769999999999999|0.06|['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['FPDI']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.185|mxqlLqN9gnEYAcY6abOdgTxkhrtA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -Br75C95Cs5H491I225N174Pb100|Cs5Pb100C95N174H491I225Br75|Cs0.05FA0.79MA0.16PbBr0.75I2.25||1.18|215.5|0.75|18.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000098|mxwCJX-sMl1LxcmlTUjdilm5S9qP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.75I2.25. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.01|201.7|0.67|13.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|mxx3ork0nY2726VP0xkz4YHFkRSE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.95|221.0|0.61|12.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|my9BIpbKJaN1uJGabzqXat2dcLc0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.0|0.718|17.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|myAQO2VlucGTHIrN3iP8wnCVl_4R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|225.2|0.76|20.54|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|myBA8nmg2oSDrjIKH0X21x4mikK0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.0|0.72|16.86|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|myBqZitAKI9BfPHmZ8AvKpHLCxpa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.083|221.4|0.698|16.77|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|myCnLcz95kbcdc-iPANuVIUwOwjs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|205.4|0.68|12.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|myJG2RRgGWTHRURH5AChAw13UBbl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|164.60000000000002|0.73|12.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201403719|myMQfm3TfGDylTrNcIkQMgZtQzJr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.097|206.4|0.746|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|myQDGhhi2K-9Mm-Bi40yuKmLuS57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br51C93Cs7H480I249N171Pb100|Cs7Pb100C93N171H480I249Br51|Cs0.07FA0.78MA0.15PbBr0.51I2.49||1.14|229.0|0.74|19.18|['SLG', 'FTO', 'TiO2-c', 'Thiourea', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Thiourea']|bulk|https://doi.org/10.1021/acsaem.8b01508|myfMtynUnWk-k_f32s4M6xJIR_9Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Thiourea', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.83|51.0|0.31|5.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|mymegacst6NqvQY4P1EzQt3CZ1Lj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C17H74I30N11O4Pb10|Pb10C17N11H74O4I30|(GABA)0.1MA0.9PbI3|1.5400001642119578|1.07|220.6|0.74|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|myneCTD8xmyqtU6L4gumlgDo_pEz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.1MA0.9PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.03|192.4|0.62|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|mypcJQG9-untUQ70GyAuB4iFdtBN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|197.2|0.738|14.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.045|mytYGxp8p0FbwqjDBqYteUAXOfAX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|175.0|0.66|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS', 'CuI']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.jphotochem.2018.02.018|myzeFRTo1QLD1fGcyqxjwEVIvIhk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'CuI', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|181.3|0.76|14.03|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|mzGIpSehpx6TlktTcJAmHKs1rXL8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.35|103.0|0.59|8.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/admi.201601143|mzGihmj51nzZ6ZJo9RFG-mxfdpJI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-c', 'Ag']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'VO', 'Perovskite', 'PCBM-60', 'Al']|['VO']|['PCBM-60']|bulk|https://doi.org/10.1039/c8cp03223h|mzSf-rXLacG-FpcnSD8UOl60dBnf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.9|0.787|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.136|mzVg7ClbhlTwrdFZV4BnurOqsi54|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.13|238.8|0.77|21.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|mzZd1AcFiav3klRfSQyc9bNd_y2F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|184.3|0.588|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|mzpYN-dzyB7Cv0EBxnhiz1BK47Nb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8|1.7200001834055632|||||['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1038/nenergy.2017.135|mzxRlUVLyq-lztGcIn7_O85NcejR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|202.0|0.6759999999999999|11.9|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08799j|n-3M2Rk1zioybeLwn8EWb7U6EUpf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||0.951|212.8|0.593|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.148|n-8tlGRsA-A3jEzDJdg72sZdqh7e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.4679999999999999|150.0|0.58|4.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|n-JLuZ0_yeAoXPY9gGXnvp697gJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.0|0.72|16.9|['SLG', 'ITO', 'M118', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['M118']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.052|n-R3wNqHp5QGVejFvsSFNmSU6xgq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'M118', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|218.5|0.78|18.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-3', 'Au']|['TbT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|n-_RLOAkYh5ZTsnhmwLJWwVRHdg4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|240.0|0.71|18.0|['SLG', 'FTO', 'TiO2-c', 'SiO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2']|bulk|https://doi.org/10.1002/celc.201900688|n-eyATAwiRbfp4Zn0LrAP0sP59ub|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|239.5|0.7|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|n-p5WyH8nKdCa9PhiVcTJ_M89Eh4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|211.7|0.754|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|n-rs8TqTYJUbJvdTSiAe5BdM3jH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||1.02|229.0|0.65|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|n-vXAVWqRp1V25pHpOYwjlvrd9qT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.596|1.02|0.498|0.03|['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'NaYF4:Yb:Tm-np']|bulk|https://doi.org/10.1039/c9qm00311h|n01mEMTYfDnv40J0vlvY1aN33h_q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'NaYF4:Yb:Tm-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|196.52|0.745|15.26|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|n0OBW_s8uaVHb50KNT0JYiL1X1mp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|205.5|0.703|14.66|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|n0PLbezu-IBSshnnpQoeRK3rE7gh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.3600001450183523|0.53|204.0|0.64|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/anie.201808385|n0SPZiqSkr3mF0W6sKa0Wy7uZrdt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.135|211.5|0.6809999999999999|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NP2', 'Au']|['NP2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702379|n0ZGrynLjhfYZcznOey0bt5w1XT2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NP2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.966|219.7|0.659|13.98|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|n0vxmhSOTk0nM-YaTVEWxfc8nXTh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|128.0|0.633|8.24|['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c', 'PCDTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5796/electrochemistry.85.276|n0xtxP7PDP0Uo4XsC9kpUr3GHb2A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br25C40Cs10H207I125N73Pb50|Cs10Pb50C40N73H207I125Br25|Cs0.2FA0.66MA0.14PbBr0.5I2.5|1.6000001706098266|1.04|118.5|0.64|7.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|n0yUIPJyrLsQuXo4CGjxKFxv2vYK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.66MA0.14PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|150.0|0.66|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz400638x|n0zJZZMCICBNSlQZzq3RN4dWjiXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|156.8|0.8|13.58|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta10574a|n17BowvtuHri9_T_d3gu_SKRLeSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.14|225.0|0.76|19.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V862', 'Au']|['V862']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03911h|n18Q9QRFf5KGW8egpniF0F3i-EV9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V862', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|195.7|0.7240000000000001|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|n1P6Q4fKRR1Z7-GcfshRgFuiw7P5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.2|0.595|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja504539w|n1WxeLJJtJLWI91XgF9IDpSsFsU5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|86.6|0.65|6.87|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|n1es6L4GclQibvEzgEpeeT5p2Gri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.78|203.4|0.58|9.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-Pyr', 'Au']|['Cz-Pyr']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj03089a|n1mgEOlvvaAXIRC4PZPKSwwAVHes|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cz-Pyr', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|192.3|0.667|13.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|n1rB_aTqVIcmOzZJvxME6g4WphWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|155.0|0.6759999999999999|9.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|n1tN2SLo70pnQVDhKnM-RgKixrdC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.96|219.0|0.7829999999999999|16.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|n1uModvJxNbzuWiDRUrJ4S1BAmrE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.71|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|n1wPIfhYcQ-QmJi07ZCQhTp9WIvS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.08|149.0|0.7|11.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2017.07.017|n1wX4n3v_ph0tPvCgIFPgdFd9HXc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is CsPbI3. -Br181C16Cs59H24N2Pb60|Cs59Pb60C16N2H24Br181|(PEA)2Cs59Pb60Br181||1.26|74.6|0.69|6.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|n2-dNEuRNyhpKd8OEM30mErZSt2j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60Br181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|200.8|0.718|13.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.5757/ASCT.2018.27.6.156|n29dwT73AEZ5lxoyxA-gVPJO1yBg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|93.5|0.39|1.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|n2FzBmiOWPVtyMav8dYW3y-iIKwN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|233.3|0.7170000000000001|17.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|n2GMnOxub97DjLeaUFY9fqwi4Kpr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|7.9|0.53|0.26|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|n2KuiwWXpgfLlKCLz5B5Bm4FlMIE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|146.0|0.48|5.9|['SLG', 'FTO', 'Graphene', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl403997a|n2Yy-tWazqjfTcRvhGU3rf6y2e-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|138.8|0.555|7.32|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1186/s11671-016-1621-4|n2lcFkgCVCR4RXeQjLgWM7q4Ukhq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.779|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|n2lieVAJQSBo10X3MwCMlFMbBcS9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|105.9|0.46|3.1|['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3-np', 'Cs2CO3', 'PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2019.05.030|n2q6tyCUpaQ417fZszXAxoiLqqHN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-np', 'Cs2CO3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.502|30.0|0.41|8.24|['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s12274-017-1896-5|n34uXF7fhbDgy3r7o38yj0VRPEQT|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.04|176.9|0.62|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|n35t-4gOcGnrA3HBo5h88GgIEn9h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.7|0.6409999999999999|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|n3C4Vee797l6LlfKXRN9qTnWZhXg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br19C100H600I281N100Pb100|Pb100C100N100H600I281Br19|MAPbBr0.19I2.81||1.04|178.1|0.77|14.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'CIL']|bulk|https://doi.org/10.1039/c6ee00612d|n3FrUl0RxDMNL0_503sZIHFqD6ty|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskire', 'PCBM-60', 'CIL', 'Ag']? The composition of the perovskite layer is MAPbBr0.19I2.81. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49|1.6300001738087604|1.11|221.0|0.76|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b07295|n3IidCJFmZVy6CmhKNd4pId4Nf4G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|191.6|0.609|11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings9100647|n3Im-XyGx441RENqCc7_TngxLN7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -Ba3Br10Cs10I20Pb7|Cs10Ba3Pb7I20Br10|CsBa0.3Pb0.7BrI2|1.8390001960946687|1.29|128.0|0.708|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-12678-5|n3ML9kyy2ULcc9nPTe-7oLzxqagc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBa0.3Pb0.7BrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.113|221.9|0.75|18.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04766|n3REEnc1FJggqQs2tWLRvBWh43fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NSn|SnCNH6I3|MASnI3|1.400000149283598|0.354|250.2|0.574|5.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|n3d3Au2DXgU50oBD_vi3eGq4NonG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|186.6|0.7659999999999999|13.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500717|n3fZD6OJNVvuQY3gf2fch8xkuHwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|160.0|0.71|8.23|['SLG', 'FTO', 'ZnO-c', 'AZO-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'AZO-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.09.038|n3gUdMNUJYtYl_5uoVHTsGrW4373|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'AZO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.7|0.7140000000000001|14.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|n3gnGsDkq_U3s4D10jPxhq4HJkCB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|229.0|0.77|15.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1021/acsami.8b11049|n3mCAzI5ZJQhSxbJdXvBQJRpYTf0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.104|222.1|0.7390000000000001|18.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|n3tsOWfngcdoJ_SFMk9rahvLTLjt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|199.1|0.48|7.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1080/10667857.2019.1651504|n44xV9ZOSvOgDQ03RDlaswXCNGSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.0|0.65|14.4|['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/C5TA00011D|n4HgJk-FjdhObKH9NhHgRk0Jkbql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -BaCs10I30Pb9|Cs10BaPb9I30|CsBa0.1Pb0.9I3|1.7200001834055632|0.79|125.0|0.478|4.72|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta07827d|n4LWAEoHgkdmIK216H6GcHnyU2jF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsBa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|230.1|0.75|18.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b02297|n4Y5JTv-4vaQOnSnmML2gFh8aF1n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|216.7|0.72|17.78|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|n4mawSjotMuJcCZP1nJhgcOMqi9q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|n4srIs-GF8FvN6eyZJix96cEITGG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712||||16.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']|['PTAA']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|n4z0_bCeKkJxMtMWKdGckMliHvko|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.012|222.8|0.7|15.78|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|n53taYb9CLvibI9vRQXq2tNJVLta|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.687|30.5|0.38|0.81|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|n54luhzaK0itRZ2mPzuMNTnZ4KRV|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.148|214.7|0.753|18.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|n5GyiggBX7f3owvXxkU3gzrH0RVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.0|0.6940000000000001|13.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|n5LHIK1YcAryfc3x51g9i5ogFsz1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|216.6|0.784|17.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|n5NaqupO1tq3zH6AxrWT8rcnaWH1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3|1.5500001652782691|0.93|201.8|0.58|10.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2018.08.039|n5OGEaFFzwAUNUK0wwv6HN9XN6mO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.09|200.0|0.59|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee00358g|n5T-BSo1byyQfh_d6IJM2aHB8rql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br39C96H493I261N179Pb100|Pb100C96N179H493I261Br39|FA0.83MA0.13PbBr0.39I2.61||1.12|234.0|0.784|20.5|['SLG', 'ITO', 'SnO2-c', 'C9', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C9']|bulk|https://doi.org/10.1039/c8ee02172d|n5XP4G06q6MIYOPOrIOeYOh2k-Eo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C9', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.13PbBr0.39I2.61. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.09|205.0|0.784|17.57|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|n5hTdea_krl069nuA-WYRPx6zPcv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.0|0.77|18.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.005|n5jdVG8gJMplIcSbggWM9mEjyN-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.013|178.4|0.655|11.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201910800|n5o3D5iNmvH6emCaagiz2kUAfu-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -C9H42I16N8Pb5|Pb5C9N8H42I16|BAGUMA4Pb5I16||1.17|169.0|0.81|15.86|['SLG', 'ITO', 'PCP-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PCP-Na']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta04658e|n5qldM9rCZLQpghozdxogXGn4_Fk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCP-Na', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BAGUMA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.142|226.5|0.79|20.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b03586|n5xg0BUGbLs34ln-mVhajBgsApyQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|158.4|0.762|12.02|['SLG', 'FTO', 'TiO2-c', 'ZnCdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnCdS']|bulk|https://doi.org/10.1016/j.jcis.2017.09.108|n5zzpn1-H6v-SOjFd0HM47eERaSv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnCdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.036|167.0|0.78|12.9|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|n6DdJNospkguuN2HlFvMvsZUeQwv|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|179.0|0.7|13.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b11084|n6QKs6OI3gUnFMyc_UPzY3RGacNU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|209.2|0.71|13.69|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501994|n6ZqsinSr76RXtDIbnMvcUPC9wM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|97.3|0.43|3.86|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['NiO-np']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ta09845b|n6efrW0VdEVsOdqochCnumWnsoGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|0.49|9.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|n6rZhFHr6VBS6cuZlAqXBqzjurhI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.05|217.1|0.69|15.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuH', 'Au']|['CuH']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700073|n6sCSssPFtwg6wJQqOg1Mgbg18UL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuH', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br21C16Cs4H80I39N32Pb20|Cs4Pb20C16N32H80I39Br21|Cs0.2FA0.8PbBr1.05I1.95|1.760000187670809|1.08|151.0|0.79|12.1|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603747|n6wABRyEQtDhLF2DCyiv4sdU3Yba|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.05I1.95. -CsISn|CsSnI|CsSnI|1.2700001354215498|0.86|232.0|0.65|12.96||['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1088/1361-6463/ac1e4c|n6wWg46dqb-q8dex8RAME9pSSMbN|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsSnI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.0|0.784|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1002/solr.201900406|n77XZU4zcY3dPr0Upsz8SlGKxRRI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br451C1000H5150I2550N1850Pb1000|Pb1000C1000N1850H5150I2550Br451|FA0.85MA0.15PbBr0.451I2.55|||||21.53|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c9ee00453j|n7G-T1r56UiK8mVj-hQDZHmHkvDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.451I2.55. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.1|232.1|0.7859999999999999|20.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|n7MLYvD2nmLF8V3vOYg3vGnyqUeU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.11|236.0|0.7|17.9|['SLG', 'ITO', 'NiO-c', 'Cysteine', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['NiO-c', 'Cysteine']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.017|n7NjDH2VouLKwHwMpqLXXtjM4879|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Cysteine', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2); PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2); PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b02478|n7NrF6fE2mjymPbo7A0IFfnqkqGs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2); PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58|||||19.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|n7UUcf-kTgDk_j5PxYDa4Whi-Hm-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.9|0.7|13.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.058|n7YARCWclRWsE5-11J-VUZ_fgIGv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|216.0|0.66|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600868|n7du3lNg9krfx13rzxHQCzICulvu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|173.6|0.412|6.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|n7lzaphiO9AhmiODy83CjCBQ4A9T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|||||16.8|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PDPPT-TT', 'Ag']|['PDPPT-TT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8se00233a|n7piXAN3j2TAaK-9MBh2vJn24T7j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PDPPT-TT', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8740000000000001|145.0|0.52|6.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr03610k|n7rwqmSPsMMvoEN_2A50w6zVxr9G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.12|228.8|0.81|20.69|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15607|n80DsP3yi1jcidx0r9GIplezOwxm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br100C95Cs10H491I200N174Pb100|Cs10Pb100C95N174H491I200Br100|Cs0.1FA0.79MA0.16PbBrI2|1.7200001834055632|1.262|188.0|0.755|17.9||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d1ta05699a|n8FXDDtlgML3OCoWcMbDSWkM8Lyw|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.79MA0.16PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.92|191.8|0.815|14.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']|['PEDOT:PSS']|['PCBM-60', 'P3HT; PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b09758|n8LeYZfBbm-UNfJWYRVaAM4BxVuY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.0|0.66|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.5796/electrochemistry.85.226|n8ahq9KymUHeQUZpOqF4BQeU3jrn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900346|n8bgXJiHuTj6qSih-64TTZAoYqBI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|15.2|0.25|0.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|n8hU7SxaAS8qtt4q0PFMu4ga5LHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|125.6|0.6|6.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|n8xtwxnHoiDc7Hxjjel_j3cjC2zX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.23|38.8|0.5|2.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.3390/coatings6040053|n9K-p3qbqkKbQUlSbyiLzE7qz2-g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|180.0|0.65|10.3|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1021/acsaem.9b00547|n9NfZa09sHHV2XgivFXQ_qkHYZex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.898|228.5|0.63|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|n9RtU3wtM0WzHeGTeFCOmOg4NkgL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|201.3|0.74|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|n9SnGTsn6QRpKCT4V6Iqyu0Tboxd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.15|234.8|0.799|21.66|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1002/adma.201905143|n9SzdPrwMJQueqkLt9LXP0cQQsgA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|243.8|0.54|11.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|n9aqDVb6cWfLnoJcvrUPgJjtzg-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I15N5Pb5|Pb5C19N5H42I15|(PEA)0.4MA0.6PbI3|1.6000001706098266|1.02|177.7|0.759|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|n9bLrvqFPXr1Shrz5MrFKeACbdTs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|194.6|0.72|15.13|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adfm.201604944|n9dIlOJDKpxD8aGj_Uya-ojaB0uY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|163.2|0.3339999999999999|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|n9o-wL6laGKeEC8N5Z-nR4yNvBfZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|141.0|0.496|5.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1002/cphc.201301153|nA0ndKuO1OZj_YZ24_giFTmiDtK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|106.0|0.46|4.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|nA6IY7elO9dfq0FTlMQmZ5RLLkto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.18|93.7|0.63|6.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900212|nA85R_gfhGMdvdROqnFMLyPFbUKp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|219.9|0.631|13.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|nADzkbJOUMX0ZKX-M7iegUQ5QIDw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.0|0.72|13.9|['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA|Au']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1039/c4ta00011d|nAGafvlbBq_4cu7-0UbkOcuH-IyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA|Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|194.1|0.7|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b05267|nAJUHxD0N83uWWy0Gdy8mJpCQ6Y-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.6|0.67|12.78|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['MoO3', 'PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c5nr01864a|nAOMZzYMGxZSG1mIb0E_zTB6EdTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|1.03|139.5|0.609|8.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|nAVfd3Rq5bciqoVVTi9wJ26holV3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.72|152.7|0.252|2.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta08262e|nAXzsBJPxBt_O0URUxmnnPBQeoLq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|160.0|0.61|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aafea9|nAYdgbHTxK4iM0rn9lTxWJ9YrALR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|239.7|0.7759999999999999|19.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901591|nAZNcUR_aT-pMMjXmJmxU1wDsCLW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3000001386204838|0.57|124.7|0.44|3.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/d0ra02584d|nAaSZF8ymA9_uND0x2nL8tQTnsHh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.745|16.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|nAfaJrH-rhq_gkPhw03USIjPL9rg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|160.0|0.63|9.0|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'TPA-ZnPc', 'Au']|['TPA-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.11.052|nAjTH9wGdlMZ47Ej62hc8jqQOtTA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'TPA-ZnPc', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.07|245.0|0.745|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201500768|nAssY4r2BVywVaOo0ksPMVoWzqoU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.9|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/s41598-017-18970-y|nB-696tm-NB_dydyG63G3gpPsuz2|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.001|167.5|0.63|10.56|['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-mp']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.mattod.2017.12.002|nB3R-0pA3qiJamJgn-YbGdKj5FKe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C20H120I60N20Pb19Sn|Pb19SnC20N20H120I60|MAPb0.95Sn0.05I3|1.500000159946712|0.969|206.4|0.581|11.63|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c8ta05282d|nB4OTP07NNx630jJH4gP3p2kk8MY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.95Sn0.05I3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.5|68.60000000000001|0.7|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.04.046|nBBH4mOk_IGdP2hZAle9SR3MTJON|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|195.1|0.923|17.24|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1002/solr.201900499|nBG-nN7SZ7VgMeefMLMLOnTHmiWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|205.9|0.7|13.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.03.017|nBLuYnN20FIvFANxhxXmauIAZFR-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.2|177.0|0.62|12.8|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/adma.201604186|nBPzPnZhFjB7Z5J5tXGsHOkiD65P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|166.5|0.622|9.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|nBX15rJv19nMFD9Lb8jDICVBLx3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.223|196.0|0.725|17.39|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|nBZGtfgFICUvVIaR_mwlyYMVGkHx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.6809999999999999|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.140919|nBol5_cfN-IG-P0KZKlAJGzp4CZ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.52|47.400000000000006|0.51|1.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1039/c7ta06679a|nBvshMESVXx4Yk1MSczpBBD9hkjw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.9|0.703|16.25|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|nC0adkX7UavlXA8MnMOcfrRGhRHo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|222.9|0.73|16.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVK', 'Ag']|['PVK']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.034|nCIq9frnbyaNaUIz5sAaWx67PTCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVK', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|204.0|0.78|17.4|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c5ee02925b|nCLACqzIkH1GkW_rX7DToBAIJaRY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.002|200.5|0.66|13.2|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201901352|nCPeefIYqFhwTn6bCOprsG68hE8e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|197.0|0.7709999999999999|16.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TOPO', 'TaTm', 'MoO3', 'Au']|['TOPO', 'TaTm']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.8b00193|nCRh5hMSSy3qcNGHEFaMdwptXeD1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TOPO', 'TaTm', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.029|207.7|0.669|14.51|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|nC_0RLrE4rnO7g5wDA6XR5_XGn5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C2H11I3N3Pb2|Pb2C2N3H11I3Br3|FA0.5MA0.5PbBr1.5I1.5||1.09|229.0|0.7240000000000001|18.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700118|nCuhCCpuk8fEzWEkwaxD4PSjnHRU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr1.5I1.5. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.8|3.979999999999999|0.252|0.076|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|nCvEmVzDtLxqp82yv7npb7SY4-XZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|74.6|0.15|1.16|['SLG', 'ITO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['MgZnO']|bulk|https://doi.org/10.1016/j.synthmet.2020.116412|nCzrHnd39mkJMSwShBitE1clxIRx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.536|56.53|0.624|5.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|nD0aVVeo-LMA2z6HE7Ssq_pmgc0f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|214.8|0.758|18.4|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|nD2_ZoY8I91SgKQ6Yo-Gg_NNBjkt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|224.6|0.48|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201900681|nD34_DrtDDzEgxLmMfUGOhIUsedT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|152.10000000000002|0.7020000000000001|9.17|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|nDKqwbNO11y0AQsbhlAE9kxKUHTN|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.07|222.5|0.7759999999999999|18.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|nDRT0Lv6ozOy4nASRuRdqs2Nq5Xj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.0|198.0|0.7|13.8|['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|nDRzUiM2u--EqZ65H_0dyP4LDI_O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.0|0.7|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H112', 'Au']|['H112']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201402587|nDXb--tjty4cHmKgYWGPMVsvfiTE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H112', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|130.0|0.4|5.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|nDgfvdnkN896aF97v5RcgxStEl2H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.98|193.3|0.642|12.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|nDkHGwbL_1PgkDwwayIMHMzCuaEG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|243.0|0.736|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-06245-5|nDqw665XfUJmFfxfCVVfK1O_US6V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C50H293I129N57Pb50|Pb50C50N57H293I129Br21|FA0.14MA0.86PbBr0.42I2.58||1.04|224.7|0.7759999999999999|18.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.9b00372|nDs9C41qfmy8-vIvXc-R_9k6-EJu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.14MA0.86PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.746|18.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1021/jacs.9b01305|nDudukGSU1lfWZ8dPCQImoVlqNIS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Co-porphyrin', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.21|238.5|0.7509999999999999|19.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|nDwAQ7a44olsvMUI8Luu9enK1i9_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5670000000000001|62.7|0.3|1.07|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1149/2.0171802jss|nE3NOGUK3gJFtZ7l6grAQVn_tUwE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.758|170.0|0.509|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|nE3ytq_guqwGKeznoMn3Lhmc3cD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|223.7|0.7020000000000001|16.17|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|nE4CdzYJHHFmgwyUiZ30WWOcmSQg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|159.1|0.551|8.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|nE5KvWlLz_zUTs-I2nq37JLhM3R_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|160.0|0.67|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09819c|nEGMekLKKTwCgcb2oQNNEUv3VpJY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.022|224.9|0.7559999999999999|17.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5048424|nEZ3UlCbnDyoXisT0czQ7VkLpzOC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.5|0.76|17.95|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201900106|nEZ7t-olcGqoIyOwxpBHCrSASitj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|212.9|0.532|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|nE_eDVz4QStsRIHL_YGqTsmzwPzM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.823|145.0|0.62|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.004|nE_ikU6gddopE4oQgjtEs17Bxxoy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|214.0|0.77|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201706377|nEbPWMbngWk5LwGTdaMXi3LGG8OD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|92.0|0.45|2.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2016.07.182|nEcZa8ollu8NeNS7UQ3Dx2kqexdi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/jp508162p|nEfhn9Qe-nFlSY_qaNTagkkDI6Q_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.7|56.0|0.54|2.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|nEo3-eql0mJ8hkId5QWcI8a36uYu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|236.0|0.728|18.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201504144|nEumewj-NzH6kD9HBbnoZD4K7QJw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.38|66.0|0.67|6.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00050|nEzXB7dxSVtrAvSf4_Hv4qSsufBr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|1.900000202599169|0.42|1.5|0.24|0.02|['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['FPDI']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.185|nF3-4FCA2z705OXwmSJf4VjAhn7d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FPDI', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|208.8|0.721|16.11|['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-np; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|nF9dRrF1tzmppVvGsL8eblb9xaF6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-np; VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C17Cs3H85I55N34Pb20|Cs3Pb20C17N34H85I55Br5|Cs0.15FA0.85PbBr0.25I2.75||0.9|223.0|0.6829999999999999|13.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Au-np']|bulk|https://doi.org/10.1021/acsaem.9b00452|nFIx-bR0ufwujI4wduOYxT6p3FzI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Au-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.25I2.75. -CsI3Pb|CsPbI3|CsPbI3|1.7000001812729404|0.875|128.3|0.562|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsomega.8b01589|nFTzSM-Z6Ke0cgUJ_jeDY873Emyy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.018|222.9|0.76|16.77|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801249|nFYRN1Gld4BUCcaQQHUQwPut7wCx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|100.6|0.36|2.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'FTO', 'SLG']|['PANI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.05.053|nFacGetZq2Yq2tsIF9SpdwZFS0-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PANI', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|187.0|0.73|14.4|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['NiO-np', 'PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|nFcahWzdGORp6YhWkX1-86kt0Cud|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.92|102.0|0.52|4.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2017.07.017|nFf2TsSCV9Nno20dBNBcZOW_T-F4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|151.3|0.6729999999999999|9.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|nFsnHslYHCLRt5SkjrXTtmg50arM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.02|197.6|0.73|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|nFzoKDeCcXY0Mq20M9K8FSm4rTd2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.0|216.9|0.752|16.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700797|nGBE-t_Yc2B8sxGKVt-XyjQkatB0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|188.0|0.69|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|nGRdgY55pvjir5v6-Nh6wKw7V3g6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.141|219.2|0.787|19.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|nGSpxMxbAT1UgGkMGE1yRH4uPY0k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.98|210.5|0.7|14.45|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTC4-TPA', 'Au']|['IDTC4-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8tc00385h|nGX0wZ6G_77OHlbtP_J_nEGq2m9x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTC4-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.11|228.2|0.74|18.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|nGaiB5F2bYg2At8WL_iuLoc98Of2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|84.0|0.56|3.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|nGed9ZMBQm5pTpMwUXcVuOXmsK1s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|116.3|0.483|5.07|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|nGghZioT5N9lajLj5Twaz9-D26zV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.105|212.9|0.706|16.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|nGko1PHEmqhObURgn_1nwcjgKD-C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||15.85|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1002/adfm.201808667|nH0mxX2waj9Ik2Po4XT3bFXuIdKK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.11|229.8|0.6970000000000001|17.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|nHIX6dfPbFRnQvai5Sg4uuW8HoMl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.0|0.6759999999999999|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra16355f|nHQy4Tos4h3D3FFeNPUnr3aiv3Ny|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.8|0.735|17.45|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|nHRU_8-KGwe_o3JkXgEpXOntAJyv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|125.3|0.57|6.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|nHZRrd_8eNEtLgUVcuY-oSS_okZL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.945|179.60000000000002|0.72|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|nHbElctlgZdy4H1g43oFjibuZGWK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|203.3|0.701|13.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00428|nHhECvKSsFdkS-ZePDnQhQfTrIMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.2|0.706|13.42|['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|nHlWmrSwYmngzU7A_gNUu2GvuJ7p|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|202.0|0.51|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.190210|nHmKyMrPFu0VgXaPmqAkSBa62vkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiO-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7909999999999999|96.5|0.43|3.28|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Au']|['none']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.matdes.2016.12.018|nHsEkCUIw2eSWx_Wgm3t0hlBNHhg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|181.0|0.7040000000000001|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|nHspezMqXjZAA2slMN1KBuEP1ivB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br291C100H503I9N197Pb100|Pb100C100N197H503I9Br291|FA0.97MA0.03PbBr2.91I0.09||0.98|219.5|0.708|15.29|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9se00933g|nI-uhI8UFcbw1tyUMS6-bytcTUmZ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr2.91I0.09. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.11|227.6|0.721|18.22|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z1', 'Au']|['Z1']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226817|nI0KsKSXnRD1CtnnCK2TIQa1hIpc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Z1', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|219.1|0.589|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|nI5XlFG5UV3BqGIKgP0PEzh7hOIf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.11|214.3|0.7|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01691|nIVmaldWjhiH1Uui7U5zEPO86GBI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|222.8|0.737|18.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|nIiGnQ0KcW-pQlo0IdMhVo5kULhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.022|215.7|0.6679999999999999|14.72|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M112', 'Au']|['M112']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.8b09482|nJ4irUIiddujWE34d_ECYI9nI27X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'M112', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|215.7|0.6|11.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra19582b|nJBe7tfeBss79F68x_wnW8qxF0-M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.65|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|nJInD1hDbqCqYnMgfF8MIw_X-WxA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|0.84|82.0|0.3|2.0|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['none']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/ente.201700422|nJXnwmRNC4rAKh5_OCZjMtmf-RX5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.9|228.5|0.53|11.02|['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Alq3']|bulk|https://doi.org/10.1039/c7ra06645g|nJgTDbJgNfKfXYiSSWtTcnO6Atqf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|155.7|0.58|7.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr2O3:Cr']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b03687|nJuuEQCv5Zpz4DEyok9I-df-LyBd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr2O3:Cr']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.148|228.3|0.725|19.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901584|nJwXIpHL3_-PVoBXKpck0OD25ota|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.9|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|nK-ZTE6PKzi4mv8bHnSQ6VQBsl8O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.16150PbBr0.51I2.49||1.02|178.2|0.65|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00707|nK5lWkCo3dKngGEmXEY3SgSe5g2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.16150PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|155.8|0.7440000000000001|11.93|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']|['PEDOT:PSS']|['Zr(acac)4']|bulk|https://doi.org/10.1039/c5nr06234a|nK7DtDi60RBlr2_0xYDqaO0BvRhb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.594|74.80000000000001|0.851|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802346|nKE1jg6h2aUYZO8tBzWYGi3aDre_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.16|235.6|0.762|20.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201902472|nKSA7wBJsKxmNBv6m5_bwhjTdBmw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.91|178.0|0.73|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|nKVdMiieQGX171exGXKXaEcmM3Wc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|223.8|0.5|10.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|nKWgQLBf5ATRxx18Q6QYER5ZlqL5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.01|211.2|0.66|14.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.07.040|nKkj7JgEUunxvl45A4tqNk41szrH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.0|0.62|13.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|nL3_48vHA-Mxx2A5IuHDOlkpLqNv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|62.0|0.36|0.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|nLHJ8xdHi24HIayNCItSk2tbv9Z_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|155.0|0.65|9.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|nLSQiOyoD6XJekXYl6TJCr51-bR9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|138.0|0.49|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA07972E|nLZb6uVu2XZkkNz8F8ETc_nVICD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.13|206.0|0.784|18.25||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|nLa56pH1Ib6D7F9-okgHCNcxoxvP|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|137.0|0.7340000000000001|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; ZrO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2016.07.003|nLbyHqulrh3xoUSMP2nRrL2Kn5sK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|206.0|0.7829999999999999|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|nLcbbMeScqAOwGcWVsBpyfQ0IgdZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|235.0|0.76|19.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta02629k|nLidZvMg-TCxFB_5V_cWwcgu_sR3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.0|0.575|11.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|nLksRP2OBv3KvvmUGLLCjRqTQU5w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Dodecylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|nLpQNwh4O71Wmjc2gwP6FdvOO1X5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Dodecylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|211.0|0.69|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|nLtrisb2eP_g0MkG3OO-tCFKDNzG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|nLxMX2WvjD5YtNdOrRrNQ8AnVjfc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20CsH100I60N40Pb20|CsPb20C20N40H100I60|Cs0.05FAPbI3||0.8|162.8|0.59|7.67|['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']|['s-PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2016.12.103|nM0Y52neIQucGblIijPX3yLto76Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 's-PANI:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.83|122.3|0.51|5.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma13010243|nM4QUxJl3xZOAYFTl-W5_6ck53oe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|209.0|0.64|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|nMGASWec83AEc4YvKjN5xiH057O2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||1.11|148.8|0.65|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-03169-0|nMN7036vklrChGNAfFjgeSocbHzo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.0|0.765|18.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'SiPc-Py-2', 'PTCDA', 'PO-T2T', 'Cu']|['PTAA']|['SiPc-Py-2', 'PTCDA', 'PO-T2T']|bulk|https://doi.org/10.7567/1882-0786/ab1fb6|nMUB50U_h2199yqYMfZ1nU_E3Q1a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'SiPc-Py-2', 'PTCDA', 'PO-T2T', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.50I2.50|1.6500001759413832|1.12|227.0|0.71|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|nMabvpcD8EvQbsbO1ejnQp8CPCnf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.50I2.50. -Br300Cs100Ni3Pb97|Cs100Ni3Pb97Br300|CsNi0.03Pb0.97Br3||1.321|56.3|0.7020000000000001|5.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|nMdea-jvYZj1UXY_xDt5SHsBd3bP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsNi0.03Pb0.97Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|185.0|0.6559999999999999|11.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201604056|nMht1YaK_YHWi84MTEPHRrOuMMia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|200.56|0.6409999999999999|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.515|nMlLKyL2FlPxuirX5IWtgzuMM360|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C24H126I61N20O2Pb20|Pb20C24N20H126O2I61|(AVA)0.05MA0.95PbI3||0.88|203.3|0.6579999999999999|11.77|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00158|nMtbyQoR_b3UfSYaFHIBmNn9OIS3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']? The composition of the perovskite layer is (AVA)0.05MA0.95PbI3. -Br3C18Cs2H91I57N35Pb20|Cs2Pb20C18N35H91I57Br3|Cs0.1FA0.85MA0.05PbBr0.15I2.85||1.112|239.1|0.795|21.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903009|nMvsf2ph-M-sDPl3kPLLFhhG_Yu5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|229.6|0.537|11.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.04.011|nN21hZpN25R1gCd4p4A1h7_U67sW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.04|209.5|0.75|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|nNIeEMR7W1ixhHI8wl7hdLXMeCtN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.005|185.0|0.64|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|nNT6xTiS_9Z8Ls5Rb4p7EujXbznJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.91|185.1|0.6579999999999999|11.16|['SLG', 'FTO', 'PbZrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PbZrTiO3']|bulk|https://doi.org/10.1039/c8se00451j|nNX_c7b9-oHlWwaT1vYIi6IfNQYI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PbZrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.0|0.76|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|nNYezqTstt0aIK2r09EBO5OMlGUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.091|208.2|0.777|17.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|nNe_lQmQEn9sQXOFiLyRdvrsTLvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|164.0|0.61|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|nNvJ2uxmw1wbgJQjzkLiqVLQhuvC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.0|0.7020000000000001|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|nO9vMu8oDaN9zgy_HpSlRtZOqzPQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I4N6Pb|PbC2N6H12I4|GU2PbI4||0.695|8.25|0.293|0.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.7567/JJAP.56.08MC05|nOKJlKHA_FVj-7ShgojXs3dNjGQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|129.70000000000002|0.447|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|nOSqyRZtTdZsXQCmL3ZDBOncTHvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|177.0|0.21|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|nOeBcsXURfbK9mR_qfzT2-wI895M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.04|224.2|0.77|18.06|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|nOi86WNM_opxl78S2T_rEAF_0ORL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.955|167.60000000000002|0.8290000000000001|13.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|nOplp-YFEf0Y0AM-p1QnSxPmYBoO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.0|0.738|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|nPBRpCCo0QVWNZrw7CFYTaKgX7OL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|225.3|0.7|16.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104671|nPF33VPwn5Sprz0SuyWAAemVbLLH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.0|0.602|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.014|nPJEAZ-3FHYzGEd6IG4ESPxImBhF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10||0.95|106.0|0.51|5.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smll.201700611|nPMWoQZEBMoTditEiklRycxKjBFa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.0|0.76|17.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|nPQkhdfJcnXIaHy4Sv5GbWHqq970|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C15H90I45N15Sb7Sn3|Sn3C15Sb7N15H90I45|MA3Sb1.4Sn0.6I9|1.7500001866044976|0.6|69.1|0.56|2.32|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|nQA1HaQgxL7OBf39LAHAu0sN9iFe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb1.4Sn0.6I9. -Br3CsPb|CsPbBr3|CsPbBr3||1.254|53.0|0.61|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02808k|nQIziCObzxNCoQqZb06QfRbdHRGi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br6C79Cs21H418I294N135Pb100|Cs21Pb100C79N135H418I294Br6|Cs0.21FA0.56MA0.23PbBr0.06I2.94||1.09|230.5|0.703|17.67|['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800318|nQPfb0Or9y_gLzKrqw1Zr_X-bJpO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskte', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.21FA0.56MA0.23PbBr0.06I2.94. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.06|234.0|0.68|17.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|nQVh4WJ6OOh5eCYyQ-GvleeOs4sB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|228.0|0.76|19.16|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|nQ_PcWIWRpy29elsd2memMMKl_wR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|214.5|0.7759999999999999|17.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8269|nQbnvurKKKjD_SHuLxJt3YyNy6uC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|227.0|0.7879999999999999|20.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|nQljo-rCkx78m9M0rklDDp8DVSqz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3Cs5I12Pb5|Cs5Pb5I12Br3|CsPbBr0.6I2.4||1.2|163.1|0.669|13.11|['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['SnO2-np', 'ZnO-c']|bulk|https://doi.org/10.1039/c9tc02362c|nQzGmDCGTuNwewLY5ES0y5pI1xRJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|232.2|0.667|17.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|nQzbHidXunF2w-j8pCn5SE4ILXFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|159.0|0.68|10.7|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|nR2KThvD5T4t9VaQlr-OusceHstD|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.15|173.5|0.6759999999999999|13.44|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|nREfBUvzOcq74LxIJq1WtHH4BWEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|199.0|0.74|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14560|nRIJC2BJrDg_JjQDlaJH7ZuPKvc5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|239.4|0.67|17.0|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c6ee01037g|nRixs1Ix-fKfkUR5V6OxLe_mxGu_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|214.8|0.73|17.11|['SLG', 'ITO', 'SnO2-c', 'C3-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C3-SAM']|bulk|https://doi.org/10.1021/acs.nanolett.6b04015|nRkF1Z-v2x35rm3Plbd_4IwqCBFN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C3-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|175.39999999999998|0.71|12.2|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acsami.5b12336|nRrFG4HkRaHOfNJudi3j54WRCIcw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|236.8|0.7120000000000001|18.24|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|nSGVmWz4ttXH3Qi_wMvokwsxfXGe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|196.0|0.74|16.0|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500486|nSfZhnLErAwpTYQtRWKT1VeSuFvg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|215.99|0.72|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|nSrxnXWP7l6aCpVqGyaBEd5akQNc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.7|0.748|17.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b01061|nTCdlOla9U2vP8XpNWozkr8rER6_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|185.0|0.696|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-2', 'Ag']|['WY-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|nTDX1Db-N4_y0nhv1K9mhep5mO7L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'WY-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.03|196.4|0.73|15.03|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|nTI5daMTMoJspH_qrDWQ_qpafy5Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CsI3Pb|CsPbI3|CsPbI3||1.238|148.0|0.752|13.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|nTPQsJRpswDAv1UQarusIFe2VnCP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|234.0|0.8|19.8|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13375|nTQ-EQ-I_jLCGGhY8D9JUvjiYwZe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.04|223.1|0.77|17.88|['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201800993|nTQLl_Y_3fyu4VKJOQoheST63gTO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-a', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.902|196.4|0.67|11.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-helices', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-helices']|bulk|https://doi.org/10.1039/c4ta04988h|nT_v9zLdLnPVPupIik-1zyNB9Q_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-helices', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.85|106.3|0.32|2.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|nTk3XTxdirzEpGdJDiCl28hFq3WG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.124|221.3|0.674|16.77|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b04236|nTuV8zNK0S9dMldxJ3tlcG697lUX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|222.2|0.721|17.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9dt00930b|nTv0oaWgXfI6YtbXqPb1fF_x_Vww|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.14|218.6|0.748|18.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b04776|nTzm4T7XHLgpAtdo22m9JGv8wQZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|194.2|0.71|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|nU0mJF7n62IovHS__AmR2uOO8Bkx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.0|205.0|0.72|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10821h|nU1g-xJBhL8D0vnjLGE2GillyzDk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.6|0.79|13.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jiec.2019.08.004|nU7zPg3v5-A_RGsDQVFN3BYrRrQ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|217.4|0.51|10.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06687e|nUFrO8WusMV3ji3k1ZAPz14FgnmM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|233.6|0.5|7.98|['SLG', 'FTO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1016/j.jcis.2015.04.041|nUHBXfSqpH727vp2hTCvrkcT9hCe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|216.0|0.71|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|nUXyltMz2rRM1VPbq9rV0uQhaxUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.82|164.20000000000002|0.763|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF2']|bulk|https://doi.org/10.1002/asia.201901452|nU_GnAkRO_OeGvBldhyrG1E91h3G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|228.6|0.765|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b01063|nUlbAKeWw4W30epjRtx_JMKBA3B9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|162.0|0.77|13.1|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|nUrWj1KUoCMDrPI-a-9YDcXtbHyE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|179.0|0.72|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Fu-OMeTPA', 'Au']|['Fu-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|nUzHI0mh-i3XqcC5aTuF12JUtbGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Fu-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|132.5|0.483|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']|['BT41']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6RA12574C|nV577_h3WHnptzcEJFyZt2pxDTz7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT41', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|228.8|0.72|17.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|nV6qgAmkwBYoK5tofz0gjtgpGax5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8cp03223h|nV8voxm1WxvLMpPYeZL2QL23x_p0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.0|0.7240000000000001|15.3|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['CuSCN']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1016/j.electacta.2016.09.138|nV9oiQVsmo8ZJEw0e_rmlCS18evI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|214.3|0.75|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|nVCTZaMBUkaTZ7VN2hz2qnIsc6zt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|0.62|10.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201500477|nVExwHV3-4la7U80exGjP1D06Cjj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|139.0|0.61|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1126/science.1254763|nVGNmjH6yVgs0PaP8M_zHxKJRUHr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.48|103.3|0.31|1.51|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']|['none']|['ZnO-nw']|bulk|https://doi.org/10.1007/s10854-016-4640-0|nVIgIawIuXl1AHGqF7pqcOp8Mw2H|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.924|164.0|0.62|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06232f|nVP4YQiRZbV5cMwiwgh_6rr-ppC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI||1.08|233.6|0.78|19.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104673|nVZL-bmNHu0ejS2fHlVfBi8mGKJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.087|49.3|0.3929999999999999|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|nW7zDqQgqPaMx3_D8kf9vGT9PTy6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|0.94|140.0|0.47|6.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|nWI8SHiXDUpcOJ-yEau4U3GPr-0Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.08|237.4|0.7959999999999999|20.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta00027h|nWKlxtgc2r1VfSOd-qXspsVf4j2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.6|0.7390000000000001|16.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|nWSwzVlK3BME-2bEh2xnfZdOaGYr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.1|207.0|0.76|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DFBT(DTS-FBTTh2)2', 'Au']|['DFBT(DTS-FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b11938|nWXs8wq0dI_uR5mAcIjGlHTf1mvc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DFBT(DTS-FBTTh2)2', 'Au']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|194.8|0.741|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|nWkOgfZ0tqt2Egliczk0MLyBuKoI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.13|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|nWoFTxJdeTxL9_G33UEJm2B9dOEf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|208.7|0.67|13.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|nX0KgczvtoS6MLZGcPmt7PGK8XxE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.0|0.72|17.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03929|nX6SPrgM43h8aCySycdWc1ZCgL52|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|201.4|0.68|13.78|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c5ta08098c|nX7NLat_oBr0qNwvLxj1dbuzHlCY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||10.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M101', 'Ag']|['M101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|nX98I8W5C3ROyj8OKAvvbvhNEpGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M101', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||1.11|183.1|0.78|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|nX9aBWILaQRGXPdTOU-Oc4KeBr4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C11H42I13N5Pb3Sn|Pb3SnC11N5H42I13|BA2MA3Pb3SnI13||0.81|190.0|0.701|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/acsami.7b15059|nXH0AVonOx-pjR0PKNphl6mqGSqF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb3SnI13. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.088|206.6|0.6509999999999999|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|nXHZVRxnPoD6u4IZSIqF07LdR_rk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -C20H107I60N33Pb20|Pb20C20N33H107I60|FA0.65MA0.35PbI3||1.1|233.1|0.782|19.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02262|nXORoEtJrVkZA0oVNSsG3z_UJXHA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.65MA0.35PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|182.8|0.691|13.14|['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'Ag']|['X1']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr00898a|nXPNhQcn3Y-7SbJPucm5I6skxHQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'X1', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sb3|Pb17C20Sb3N20H120I60|MAPb0.85Sb0.15I3||0.57|131.0|0.402|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150984|nXb6Hl4dZ1KR6nvxzfUbgakPhgLZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.85Sb0.15I3. -Br63C92Cs8H483I237N161Pb100|Cs8Pb100C92N161H483I237Br63|Cs0.08FA0.69MA0.23PbBr0.63I2.37||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.018|nXfz2lI-ZVXGn4n5Z6y0CZWiy987|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.08FA0.69MA0.23PbBr0.63I2.37. -Br37C100H517I263N183Pb100|Pb100C100N183H517I263Br37|FA0.83MA0.17PbBr0.37I2.63||1.067|185.8|0.494|9.8|['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene; NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|nXinejGJRt-fU6SsgzJgxKtKZIFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.37I2.63. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|176.29999999999998|0.77|9.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/en10050599|nXkho602ApzERQohR9l3tZDQE_50|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5100001610130236|0.77|156.0|0.6|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5023407|nXlJOhA4nvHweymDUQGA__lfvLFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.095|227.5|0.73|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700118|nXo5z5pKeKM5aJMTOyQ1X2timamv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|63.5|0.37|1.52|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PbS', 'Au']|['PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|nXpwiXHaCfP0IJrkRjJTy53u1R17|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|0.97|217.6|0.65|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01691|nXx3MyRw4H9xXvWC3BqhzGHBv34k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.92|134.8|0.735|9.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900091|nXyh9zxYzSXPp4jeth8cib8RhX3Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.82|131.0|0.5379999999999999|5.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|nY0itT0dHjz4XlIzx3yffms9mHfO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|156.0|0.74|12.8|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adfm.201905163|nY6G5qVh_7mzF6asUaTUSXgmOkSg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|191.0|0.433|7.1|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500059v|nY762vvyI1QsbcQ19ksH5TVhSvGe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|167.3|0.68|10.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|nYFVIWO5Zi4UpJNZwCs-4BXDZOgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.0659999999999998|166.8|0.648|11.53|['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']|['P3CT']|['CPTA-E']|bulk|https://doi.org/10.1039/c8tc01955j|nYXrpHvEAlSwC_uedbgiA1MZXpfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'CPTA-E', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.9|0.74|15.81|['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']|['P3HT']|['C60(OH)16', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2018.08.024|nYdJrbfjxhdTUUN9E3j4ixfv6LTt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60(OH)16', 'C60', 'Perovskite', 'PH3T', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3|1.400000149283598|0.46|176.1|0.41|3.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b00275|nYtMPBVG7_DAmubdmigB_wt0jaQW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.0|0.66|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605693|nZ0M_5FqioF68kdd5Bv9uefQB8Zy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.215|143.5|0.745|12.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/advs.201801123|nZ3wP2XEsZjbWX9EjolipgBm5QI_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br45C94Cs5H485I255N173Pb100|Cs5Pb100C94N173H485I255Br45|Cs0.05FA0.79MA0.15PbBr0.45I2.55||1.18|234.0|0.78|21.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetracene', 'Spiro-MeOTAD', 'Au']|['Tetracene', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.aav2012|nZM9-k7GqMknsn0Hp_ICLF8fOvGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetracene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.0|0.62|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|nZXNb8eqce8THzX2YrCmc3Yv1zqa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|158.0|0.61|8.9|['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|nZZrM8xF03iR1areCaLbtEfHOY5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.5|0.74|16.08|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|nZlc4vYShz3aUi6cJRDB4S202uFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|186.0|0.778|15.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|nZw0FwVlaNp6pmEzqxuBnB0qw-od|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0590000000000002|227.0|0.682|16.4|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|n_7EXcK02s1b91yEYX2ivrrmj7KD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.14|229.7|0.779|20.41|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b06873|n_B2Zyo5GWD3i5V4ls-zzfnidS9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|241.3|0.64|16.24|['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Au-np; TiO2-mp']|bulk|https://doi.org/10.1246/cl.190233|n_SvrOO8ud7QDmc5fd-xEHwpECYN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|186.4|0.7929999999999999|14.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|n_TV5ybKbPWB7_yV_KQhl7PHai_a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.44|47.0|0.65|4.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07694d|n__O_zKUmtWbc8T3amZ6zOTu6xiy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||160.0||9.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|n_lSBqIT5IkmGFfEUpEqfSGDPkM3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|184.0|0.74|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01234-y|na0JzevaBRLOmcfPbp2M4SFteffL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|209.3|0.706|16.7|['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'LiF']|bulk|https://doi.org/10.1039/c8nr05504a|naB62OQjftba7VYHIBTfLHCPYLJk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'LiF', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.0|0.65|13.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.055|naHqFM3BJ9vCVDBMkKkgy9vwEkOr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.77|0.2199999999999999|0.413|0.01|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|naLCuLPW3d6ddefo7s3xMnMwO-nQ|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.15|226.0|0.78|20.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902653|naV1mFkLZFTDn4__bbur6viGQT-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|na_rhavbvO_Yse7qWrl534thwbkl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.04|120.0|0.53|6.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.8b02157|najcO3CRZbmP_wrHqR26mQ9FHMDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.99|204.0|0.57|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA03577E|nasK4tGFlupkYNTNCMiM40yiqKvk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7|1.8600001983339236|0.52|17.5|0.2769999999999999|0.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|nb4Di0LB4L_TyUeBCiNTHkV2PJAA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|224.0|0.672|14.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|nbDqyhtwOZFPgHis4H7zzjH6qiBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|120.0|0.47|4.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201503832|nbJJAKP0jQUo-cPJwNSl4HTiAO4E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4||1.1|226.9|0.74|18.45|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-24436-6|nbJlPHbBEarQ8zAEIvpC3saheFAb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.929|188.0|0.66|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|nbJp2uuIqkr_gbzxtEAEBtUGTQqQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.815|191.4|0.56|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|nbOFNpoP3TjiTwrdTjM5tfGdi5zs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.0|0.61|13.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/cryst8050185|nbOIsfjoEUEvQ4UWGLVpOuvgLdws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.002|222.9|0.696|15.54|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.03.026|nbSfjjOy63bXc9YHsK40zHErxDnl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|197.1|0.478|8.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|nbZ6YMYYskNrwYqITNxDZNs0x4IW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.0|0.7759999999999999|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18761|nbZVjO-BM5ayQMh4Jbsflo6AOMj-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|218.4|0.774|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PS', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201904684|nbgog_WlgvJk63dSVG7hhN8E7fxW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PS', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.0|0.64|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep06752|nbpaPGRli2ELadrmb_iFTlunUe7s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|236.2|0.757|19.72|['SLG', 'ITO', 'MSAPBS', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['MSAPBS']|bulk|https://doi.org/10.1002/advs.201902656|nbpbD-ypt9mR-nDsNoOcbNdACOTP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MSAPBS', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|1.06|235.7|0.7859999999999999|0.1963|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|nc-es07fWj2XLJyAu1EKCAxESkSM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|186.3|0.517|6.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|nc4IMS1qJRIv8DwD7lHWg3kG9K_F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|229.0|0.72|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|nc8n2-nOUL2Oy8hqWM5XZgsSqRpd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.62|50.9|0.599|1.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1016/j.nanoen.2017.12.051|ncByS8T8tiA00KXyCT8i0dTFybPd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|169.3|0.6679999999999999|11.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|nc_vEqbG9s44wpekDoqlJHD0Wn7W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.99|219.2|0.71|15.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00286|ncc4hG5erdIvaW-SFew-xbdje5jV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|205.0|0.64|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|ncdrMA8RjgQiphSU5SvHYQpr5oeH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|171.20000000000002|0.72|11.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nj05941a|ncmRvL5KUhbhh-ruJA0jcY8AsUem|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|207.2|0.72|16.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02242e|ncnAdA2Li25GUe_X-4Gt78mltZ07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.082|228.7|0.762|18.62|['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CsPbCl3-QDs']|bulk|https://doi.org/10.1002/advs.201800474|ncuoiUyvFoYX51Zsk52-LqVdhjT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CsPbCl3-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|158.3|0.54|8.4|['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ra25149h|ncupDEJQRi7Wxcmwv12VeLC93aHI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.061|224.03|0.78|18.64|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|nd2slMMPleva8QXy7dS_zPNAru4F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|235.2|0.718|19.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|ndG5FA7RH7BFzr0tOwxKWg0ene_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|144.1|0.43|5.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201901186|ndJeaqE7CF3qhvd70syNnF1VG-Yq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.08|209.0|0.69|15.6|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|ndVmBKa3Tkxtb6Am8NXmV_MRe9Da|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.76|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701151|ndd_xljRZ7YV30PNiz6VTVVosczL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|225.5|0.7040000000000001|14.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1088/2053-1591/ab1923|ndmaBnOLrUhFHbEZZh_JE_mOLFpG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.126|242.3|0.804|21.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|ndsSIbIJQUE-EiydCbtWF12XDyGE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.11|127.5|0.622|8.8|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|ndyYn0AoBpMcniRkyxXlgc_fwXce|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr1.5I1.5. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.5900001695435149|1.159|232.0|0.7340000000000001|19.7|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2018.08.012|ne0eQ96U1wHRpo4m5DQR-QyQJQfL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.102|162.8|0.78|14.02|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPB', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['IPB']|bulk|https://doi.org/10.1039/c5ta10574a|ne4UAkC_JvAuAdZtbEFtkJAVJWlZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'IPB', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.013|169.0|0.639|10.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|ne4qQ2jRv7vj747BHvKtylLWrIKK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br600C1900Cs100H9823I5400N3477Pb2000|Cs100Pb2000C1900N3477H9823I5400Br600|Cs0.05FA0.7885MA0.1615PbBr0.3I2.7|1.5500001652782691|0.35|141.0|0.29|1.2|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603747|ne5R06Xvctr0fKxja7YOS9vUhlE9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7020000000000001|0.279999999999999|0.63|18.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|ne5SnHDuedUXPnTRbe1a4Kh-aOmO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.16|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']|['SFD-Spiro']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ra06643k|neDZd_QgYwq_twxwFEx_ogMq9LbQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'SDF-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs20I60Pb19|Cs20Pb19I60|CsPb0.95I3|1.7500001866044976|0.8809999999999999|171.0|0.73|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|neFKQb0yYZ9ZnTlQXVRzeXkSdcLo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|160.5|0.5660000000000001|9.36|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'PEI', 'D-Sorbito; PEDOT:PSSl', 'Ag-nw', 'PET']|['NiO-np']|['PCBM-60', 'ZnO-np', 'PEI']|bulk|https://doi.org/10.1039/c6ee01555g|neMHrtEb3l_P_0TBrx6xxMNGOMyf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'PEI', 'D-Sorbito; PEDOT:PSSl', 'Ag-nw', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|91.0|0.5770000000000001|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|neR1VPui-Km8li9PW6T2JExqE3sv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.167|232.0|0.736|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00697|neZtWlCUNGVRnrsyqfmsaT158Fr2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.3|0.725|17.01|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/smll.201803350|nebQctSSHOW1d8rNqmt8AeLA5ack|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|244.5|0.78|20.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|negaOFoctYiJu517N-M_gZdyCIF3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.93|172.28000000000003|0.672|10.76|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||negjWTO6UhHehECnvS0Wnioc88xt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C4H16I4N2Pb|PbC4N2H16I4|(DMA)2PbI4|2.3900002548484283|0.487|1.7000000000000002|0.315|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta05241k|nemyjfjP6RFYoU20W68d4EbtInJw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (DMA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|177.3|0.56|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'In2O3', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'In2O3']|bulk|https://doi.org/10.1016/j.solmat.2017.03.024|neqVjssHw-Q85NxASuF4mpI5qV3u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'In2O3', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C10H60I9N10Pb4Sn6|Pb4Sn6C10N10H60I9Br21|MAPb0.4Sn0.6Br2.1I0.9|1.3000001386204838|0.79|187.1|0.67|9.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|nerMABa1BBWCWIPeXylvHu-2-jmK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br2.1I0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.7|0.625|13.21|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.163|nesXhn4xgtWXJZnd7oHjgaOWN5eM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.13|213.0|0.77|18.6|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1021/acsnano.9b03098|newdgiPM3jMRPUgKcnlTgpe52Tcm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.1|0.7809999999999999|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|newo71qR3Ij1xQIdV4cwSKZY1J9X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.4|0.71|13.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.7b17781|nf2JQizTKmqxIZT-ubg6n7IPbdWi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.986|241.1|0.65|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8BT', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60; F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|nf45lM74dlth8S4TAgiIVKQ7Pod2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|225.0|0.763|18.4|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|nf5U8lqx6S_9HldccCBHYd3cvk8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C18H84I34N12Pb11|Pb11C18N12H84I34|BA2MA10Pb11I34||1.05|214.0|0.718|16.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|nfDy6zpXmANrXquafYbSG1O5pKtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA10Pb11I34. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12254g|nfHzZRX5xjtA9KhGCBSqvEVcVnuV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.79|76.0|0.626|4.8|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.7567/JJAP.55.01AE09|nfJUMHNz__aKEwUy0Io6Gxnur71F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|175.0|0.73|11.4|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|nfK6A9YZ4LOYcsHosRyuIndHML10|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|151.1|0.775|10.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|nfLaw89PEi6EJPtDPHUAYFk3Tf5P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.09|228.0|0.737|17.5|['SLG', 'ITO', 'TiO2-c', 'PPDI-F3N', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PPDI-F3N']|bulk|https://doi.org/10.1039/C7QM00221A|nfNtfYNA042GkHH-D_PeEB8jlBji|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PPDI-F3N', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.573|103.8|0.431|2.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/jz401527q|nfUAWSdEAfxmm8ASxADQ7LX6xqYJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|207.0|0.66|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|nfVMRtD-ft6ZODGblckrfUy9dvfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|102.0|0.42|3.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|nfXGRkeC7K5KbkZhzB3AAFC85yG1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|nfpjI9Vtm0DNJkO_4WxRYI6jEq0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|nfvqe5jqCZx_qo1UMt8dpJaf7cjz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|122.0|0.67|7.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|nfy4wvZiIPJXVtXtOdwIkWfDKora|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.959|218.1|0.6459999999999999|13.51|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|nfyagVMynR-2RxWZj4KDOnHJbOF9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|210.5|0.8|18.6|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-4F', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|ng8SasLY7xj8vfMo6CkvntZjc-R_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-4F', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|203.8|0.71|13.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen; Ir(MDQ)2(acac)', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen; Ir(MDQ)2(acac)']|bulk|https://doi.org/10.1039/c5ta09231k|ngAFh6hLkY_T-DeVwldx285cgKY6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen; Ir(MDQ)2(acac)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|223.5|0.68|15.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12336|ngGSIUzb5LM_MQz0DVv-IhSYXJtU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|215.15|0.67|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|ngH59ATwJCRzg2ZvL7RXB1SGf1bv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|205.9|0.74|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra28501e|ngX7bbnKsQi1KENNFCAMRgH5Ge4K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|164.0|0.789|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.9b00060|ngYAW7RuMS0fKqnsovkVHZLZEiiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.172|49.3|0.656|2.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|ngcpc1EM2HtJABOs7q4TcpkGTbX5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I24NPb7|Pb7CNH6I24|MA0.125Pb0.875I3||0.79|158.8|0.51|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|nggLPBUGIS2D_0BGQikc4HwM3OOf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA0.125Pb0.875I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.96|185.0|0.73|12.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']|['NiO-c']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.35848/1882-0786/ab6bde|ngpU1wVFsRXNEx6hLONI9L89kICE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.16|147.89999999999998|0.721|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2019.104130|ngpiBsSYwLqonXQiixo7TjhQSnCH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.83|25.5|0.59|1.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|ngvlJr1ScI6Y8fXCUtyeQ39qrQ6_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.04|203.4|0.63|13.24|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|ngwAuTj5U1Yyofx2M4vGUudkY1t_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|200.0|0.7929999999999999|17.6|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|nh0TBkm7BW4pv8a1YJ_6Fmlg56Wj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.2|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|nh179sAZ_G_-qAw7nqmZXGYH9tJl|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|209.5|0.62|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/cssc.201402678|nh5fuC_knwvI0aQshIv8CL7QZaxs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|186.5|0.82|16.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1007/s12200-018-0847-4|nh7hAl0fPPDSbtslpaMOoZMcb9D3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.915|86.19999999999999|0.66|5.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|nh8Pt_p-hPW0j99fYlDntrdjUt9O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|228.2|0.67|13.32|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|nhD8yqvfbmupktvCN5CDh31l4gsW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.949|164.20000000000002|0.665|10.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.10.023|nhPS5jCQ0zjYOCbgj6I61-b3wBIB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.2|0.7340000000000001|16.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|nhQfXEO4n_Mw6ewGxIsaJr9RQtfl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.715|171.0|0.6|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|nhVIDtL60U_ZzDKSu3q2hwbcOn40|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.9|0.65|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|nhYBWHNbiiBieew8P8ofCfMQWk1g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|206.3|0.5|8.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|nh_v3rTJQxrVreq1lAvf31-hfXy5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.8|0.754|19.38|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900041|ni3pxzqjE-EgJak2xVUef7u5CZ3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.52|186.0|0.5579999999999999|5.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|ni7pzj2ZrKsbDMyq-bdhPeuIXSqz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.07|225.0|0.556|13.38|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ee02685d|niCDiaecJvuTfqYewConCLC2I1iA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|223.0||18.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|niHiGqblsiXO-xXU57lcmDeMu0hH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.6|0.73|16.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b19330|niI8-S84T_dd-H1VeeDL-W0tmii2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|183.5|0.653|12.31|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|niJ-TNEwjMAcorvcWchs6pWoXlnc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|162.10000000000002|0.69|9.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta01715k|niJVKV3kdVv6i7tPhZEPEp_QYJfy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|189.0|0.72|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|niPAMkQMkvDHWF4gd_xrBc_RJDL3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.0|0.7809999999999999|18.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr02146e|niRjhzCf424vbYTdNxW50AJ8yKyG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|179.0|0.71|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|niTTwL5MtNNmS4Nyw0fff2ICgkZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb5Sn5|CsPb5Sn5C9N9H54I30|Cs0.1MA0.9Pb0.5Sn0.5I3|1.280000136487861|0.7|233.2|0.617|10.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c6ta07712a|niVlgaBmDxf9gaa0tmjX23YHxU-O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|132.4|0.56|6.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra27122c|niYNmRId0pxlt46nDiv5BMYMS21a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.48|64.1|0.7829999999999999|7.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|nieq-Md37k_KHrU6Umz00hUwkr-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.5|0.721|15.25|['SLG', 'ITO', 'NiO-np', 'Choline chloride; Glycerol', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'Choline chloride; Glycerol']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-019-03898-7|nikpEXRnZNHUv3oBSaC5Tg2Gw0id|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Choline chloride; Glycerol', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.7|0.52|12.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.04.194|nimMTW5rX7cEbIcXwP60RzDmOL0s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|136.1|0.7140000000000001|9.13|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-XA', 'MoO3', 'Ag']|['PPyra-XA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|nipXeBAY2pZP7IQBoZPzWOvKAmOH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-XA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|108.0|0.49|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|nirRy_7jLTQeHk9RxJPv6gt9EiBP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.96|219.6|0.627|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|njAAJdBKzn78i_WpPf-2Ubgic1L5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|1.084|195.8|0.757|15.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.034|njB4r8J2WRnq9z-UjsynRVRcqF29|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|194.8|0.677|13.83|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'NMPFP', 'Ag']|['NiO-c']|['NMPFP']|bulk|https://doi.org/10.3866/PKU.WHXB201803131|njKWWJp2K3DGdmYkJiZfg52omyUE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'NMPFP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|168.0|0.6709999999999999|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc01637h|njQS8thO88Stm2buKH3Iwq6juTCS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C91H210I65N25Pb20|Pb20C91N25H210I65|(PEA)1.8BA0.2MA3Pb4I13||1.16|156.0|0.662|12.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta12476k|njZJ2g_JO_KDr2a4qX2Fpd67Zki4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)1.8BA0.2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.6|0.67|15.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800282|nj_UvBpqVx7ExBZnHbqVsUetw9Sy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|125.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|njaAaPLWG2B0C6wTf66qenCGdQLS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|23.5|0.44|0.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|njafOiKQqhQpzAhhkwJs2YOp_j2W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|147.0|0.613|7.62|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07686f|njc3f6lxFx4IRxikfvMZF_wzZBHa|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|175.0|0.56|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|nji0HcanR1WrLg60hWe2t_0TZ139|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.623000173062343|1.06|206.7|0.6629999999999999|14.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b03116|njr4pM0WmjVEHElphYdCBU0RJGsF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|94.0|0.51|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|njreMJ5UlyC38iA98mpT2gSmiyk5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.12|228.7|0.76|19.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b18230|njxDB8Jb23XTHA1N5GwwG_z_B-wa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.5|0.71|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01360k|njzWnVE4gJxJXSFSjqbydZw8qbk8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|188.2|0.7440000000000001|13.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|nk90zepcDMcOD2vHMZ_85uHMPP3U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.07|204.4|0.76|16.84|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|nkHS8TNeHSR3CbKHZzmScgHMPbr-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8859999999999999|77.0|0.528|3.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2016/1975763|nkSpm69dQViJfFyox_kQvSoMz2w6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.113|220.1|0.81|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00692|nkfqk29BJqZuWuNr9CeEQbdfn2lL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|201.0|0.524|8.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|nkl-04mpU9MVQx-KjN28fXDpxPmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||0.58|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s12274-017-1896-5|nksSdjCwtnC574GIsjjAfIoSelM0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|117.3|0.55|5.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05384b|nl-VVee9pPB1VFuzX6-cNKCO5NuP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||||15.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7QM00221A|nl06A45kdPr7GqzC6hYH1PU8GyIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.095|192.0|0.72|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01221|nl0ibU8uqvIiSfWhvvasojcOSaBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.085|245.92|0.73|19.35|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|nl4p_lGNf1uXKPyfErd0YabF8K3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.89|172.0|0.631|9.7|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'P3HT', 'Ag']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|nl8ZAeurm9A3-hBxU2EmnbcBD7Vr|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.03|75.3|0.51|3.99|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|nlKOPnMW7DuCT4hm0f4gUNqkUBy-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|179.0|0.777|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|nlOB8HhHtlHis7T_SGpj1DMnS3z6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|101.0|0.56|6.2|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|nlXdoV0kxM-Zu26Y0nx5yV4pLj44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|226.41|0.622|12.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.06.054|nlYgWv5OLfCb2fI_SBDWcpV6CXh5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.59|132.4|0.833|17.52||['MoOx', 'Ag/TeO2']|['ITO', 'TiO2']|not processed|https://doi.org/10.1109/JPHOT.2021.3067703|nls44PkOOuWeANoYMwEiM9MGX-qj|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbBr2I. -C16Cs59H24I181N2Pb60|Cs59Pb60C16N2H24I181|(PEA)2Cs59Pb60I181|1.7300001844718749|1.05|113.3|0.64|7.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|nlur33SwufRG8jd1HU1CeHVrlcLw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60I181. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.046|197.8|0.6759999999999999|14.08|['SLG', 'AZO', 'Ba(OH)2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ba(OH)2']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227091|nm1kAuMfSolHXwhPyvZ0XxFmkjcu|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Ba(OH)2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.96|220.0|0.53|11.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201901601|nm53VckLeHH2jlIt30W9ot-8EmlH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.4|0.6459999999999999|14.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.03.047|nmB8jVU4y-fAjKu4S2z3hz_Dhb_c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|139.0|0.55|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|nmCtaNLKlUmFn_nRRy8nvMDcYdy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.82|95.6|0.616|4.84|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|nmDN17dEJIcjQpibsBvunGwWh7_L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|203.4|0.636|15.6|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['P3CT-K']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1016/j.mtener.2018.07.004|nmJHc0shP_jNWKn0SVw7pPKJ0r3P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|62.400000000000006|0.64|4.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']|['HBZ-70']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.05.203|nmLsyOfmH_1xVugpaIEo62fSnVnv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HBZ-70', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.0|0.73|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06362k|nmOTiVR0Yh3nfk6TnipplcrciEkQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|143.0|0.618|5.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|nmRT7SmdISFM1pSNDEUTirW2k-r-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.25|78.5|0.3879999999999999|1.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|nmSzX0KJ08iIf5oE1tp8MhTRn_EY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|207.0|0.794|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms9834|nmWcjo09qOin12hvs_JU_sEkx3sg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.0759999999999998|188.4|0.465|9.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01221|nmiXL9-z_06UnB476kzjR73j3BdO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|153.0|0.7879999999999999|13.1|['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'pTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta10574a|nmmwLziCWtkETz7PlgV0A0e2_axX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'pTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.0|0.794|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|nmpJh43HkxU8txoWkSfahk46-ZFx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||16.8|['Carbon-np', 'SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide', 'Carbon-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.084|nmvFJ15Hz8qgzxgk18yzNG9xzgHn|a perovskite solar cell with the following device stack: ['Carbon-np', 'SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|174.0|0.471|6.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|nmwXSOmtHhpWAwxCuEYI86Xy3JBy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.545|0.8999999999999999|0.58|0.06|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|nmxmFvIb_8f5XfGGfuNNu2Ksf2uH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.22|178.1|0.7|15.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|nn1Xqs_NogYNhq6zpshvLb_gI0u_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|82.0|0.61|3.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|nnDiTG9lRu3Ya1G22LXmuEwEts46|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.813|142.0|0.69|7.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|nnVPoltuizhOZslZLFc4sZsBwYgR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|216.1|0.76|18.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD29', 'Au']|['LD29']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam6620|nnVXeOyChCii4U08ki8_3IIyldZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD29', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.16|225.2|0.81|21.1|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|nncRrOy3vs31E8QOy2-tvPK84iTX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|0.92|228.9|0.499|10.55|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|nnelxIMQ0SsLr2AiecqTmS9Lk_f8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|202.1|0.599|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b01980|nnmPFk88sk2cPNcNGtUNJ0pNOkHK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.350000143952041|0.63|106.8|0.36|2.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b08859|nnu7XE_Wy9t0kzG3tzJ0DlaIUCmo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.07|227.2|0.75|18.22|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|nnvzc-4z0xEe9AHdXvIUzO4Frzcq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|183.0|0.8|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta04367e|no-2imlg40sQHMBYv5Vqgwsb9g3a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|183.0|0.716|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|no-s3R8fil67TY7A5r6mgpeFwUvC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|220.4|0.77|18.84|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|no5AmTmABhXzhHSi5WHrtHbZDAVj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br66C25H150I9N25Sn25|Sn25C25N25H150I9Br66|MASnBr2.64I0.36|1.830000195134989|0.63|102.8|0.4679999999999999|3.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|no6NjtnIGj-G5c3uAmvqzieviaRR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2.64I0.36. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|152.7|0.605|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr07753j|no7uiTPl9AyQT60rBLic9lcaQLdF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|185.1|0.705|13.31|['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|noAQ3VKFZATRabPqhXLwmC90gAqL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.22|149.0|0.753|13.7|['SLG', 'ITO', 'ZnO-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.12.011|noUglAEeZJYDN5N9RM91jExGQACp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|noX-6cGpDmhuZKDn9W7Bh7cqylcx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|190.8|0.5720000000000001|10.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra17197d|noXhRvbc78x222YWMjL3gIR0mW5f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|189.0|0.617|10.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|noZKVFHfTpyaQIdMUQcpXZyGi78C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.907|148.11|0.531|7.13|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0075-5|nofxow4k23SBh9b-e9-XpMIrWGKX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|123.0|0.6|6.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|nokYiARpzMGtcYpGaIlz_c76scqz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|189.72000000000003|0.485|9.47|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|nopul4wZRoS1W5smsKSc7EVvjgyZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|214.0|0.76|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201602545|np-hb-DaMz6jbkd9BbfTXtRjZjvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.3|0.715|15.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC', 'LiF']|bulk|https://doi.org/10.1063/1.4928535|np0qbbhlhZn2dzV0xW0rWKkFZsnd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.16|235.6|0.762|20.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201902472|npBn06KqKaz-MPzXjzo0rMtJj4kz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -Br90C184Cs14H949I510N339Pb200|Cs14Pb200C184N339H949I510Br90|Cs0.07FA0.775MA0.145PbBr0.45I2.55||1.16|231.0|0.762|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1039/c7ee01096f|npCH_W6tGJRboWg7xanNBiRhJqKu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.775MA0.145PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|198.0|0.5579999999999999|11.96|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1007/s10853-018-2752-z|npJ1Hj76Xv88hzttkha0Wc544YUR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C97Cs3H512I297N167Pb50Sn50|Cs3Pb50Sn50C97N167H512I297Br3|Cs0.03FA0.7MA0.27Pb0.5Sn0.5Br0.03I2.97||0.787|307.2|0.752|18.18||['PEDOT:PSS']|['TEAI', 'C60', 'BCP']|bulk|https://doi.org/10.1002/anie.202202346|npK6NnuTuQ8UwCv9TSf4JhlLehHW|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.03FA0.7MA0.27Pb0.5Sn0.5Br0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|213.0|0.573|10.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'Al']|['PEDOT:PSS']|['C60', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.03.016|npNR24Gwq7VnIc5DXTPbP5ZcdUbY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.0|185.0|0.572|10.06||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/inf2.12345|npU6s51lKj9iTDvloBKZb39h8OVw|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|154.2|0.677|8.66|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr06240j|npZ8AGMALq6a_Ekf0MAiyupTex65|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.734|187.32|0.717|9.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||np_amv9ekIeEVIZ8FL0oxkV64zZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|70.5|0.475|3.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|npp8Ddpqc56XbIIeNakCLIiIwNFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.772|152.5|0.722|6.8|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201901284|npsi-asZqkQgpxCrXEEy5Tk0OHzZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|234.6|0.1889999999999999|18.94|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201901964|npw4RBUbRHrfiOzkr1j4p056kpi-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.1|0.75|18.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|nq-ktmsp57NDyjmWjtYzP2viRRcs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|1.08|175.10000000000002|0.555|10.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|nq-oC4EETNmunddAfVaDy6aRh1z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|126.7|0.402|4.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.03.002|nq4SO5WIh_MGEUIIF1CC72r8SHLC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|184.0|0.72|11.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|nq5HcIx9_D1kbeyy0YAPuby6q-oU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|114.8|0.6970000000000001|7.84|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201501330|nqYj3lM4fIItf2J2G_wnRA-Z7kGP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br180C380Ca20H1957I1020N703Pb400|Ca20Pb400C380N703H1957I1020Br180|Ca0.05FA0.8075MA0.1425PbBr0.45I2.55||1.15|203.0|0.75|16.9|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900834|nqfcmwfVZoVLjUK7-IqPdQEmniwH|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||0.99|194.5|0.6729999999999999|12.95|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|nqgMZq7G4P4RXvQxAokcKRGuUWTx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.07|227.0|0.7140000000000001|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C102', 'Au']|['C102']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.07.013|nqmTwRCtbc6pLlsDZzwXV1SiYhhX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C102', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.988|219.3|0.62|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtchem.2016.12.003|nqp8JFqHdUbz95EnThm0QNbT-YMZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|137.7|0.6829999999999999|10.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|nqpdiL3FSuBRsk9esLk3fmpOGX02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.87|115.3|0.47|4.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma13102272|nqulikR3e7zLJ4vNmqG40grK5I_R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|164.0|0.785|13.1|['PEN', 'ITO', 'LiQ; PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['LiQ; PEIE', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.09.039|nr2sV5QP_k-j4yz37M1GWBXTr7Ow|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'LiQ; PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.143|202.8|0.64|13.52|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-DPPA-O', 'Au']|['PZn-DPPA-O']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201701526|nr400Zo1oxautxC0qtBv_FvfU-S-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-DPPA-O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|103.0|0.71|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KTM3', 'Au']|['KTM3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00486h|nr6mtC5KiAqeY_TcLak0QNWO3vik|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KTM3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|211.0|0.73|15.8|['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM', 'SiO2-np']|bulk|https://doi.org/10.1021/acsami.8b22206|nr7ZxEL3w2Hu7LA4QvdM9fLVWbr3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60-SAM', 'SiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.96|213.0|0.72|14.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01642a|nrBg6xW1sqsLDTH1MSeGhR8J_y7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.14|62.0|0.304|0.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|nrCmmqGUepc4v2hlI61SbxUq__uM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.627000173488867|0.897|157.6|0.552|7.81|['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Black P-QDs']|bulk|https://doi.org/10.1039/c8ta01408f|nrIAybN4Tdpfr0cUYQJJGK-MM9se|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.63|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.128|nrJjZ2hDuZQ6kVpyF7b64cD8lLVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.05|209.0|0.82|18.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2019.10.003|nrYR3npIzZh7Z47aqyuzfvH7HHEq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7879999999999999|183.0|0.69|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC17|nrdfvqkQwZ69kRXJof4GWObUebI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|178.0|0.57|10.1|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c9cp00564a|nrhzelfu1w-wkrtrtEUjVUvXOl6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.1|202.41|0.795|17.7|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|nriAsrOVwDKgvWzy8DCezu85hmEk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|128.9|0.286|2.8|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1021/acs.jpcc.6b05406|nrw1maWGfggbv0w_vV9qirXITk4N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.44|73.7|0.7859999999999999|8.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PPy', 'Carbon']|['Ppy']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|nrxKv_w42WaQtJ_FUGGTEHqYwdnE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PPy', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.863|141.6|0.68|8.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja5033259|nsHIZcaaVqW_bQXcXI942jvR7IYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||0.65|117.0|0.46|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|nsI-L9vWbWXSx6JFK9adMQPpyMQB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|171.4|0.701|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|nsPpn6xgQUkMkcFO4ilevkSx6YNv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17H30I3N3Pb|PbC17N3H30I3|(PMA)2MAPbI3|1.6100001716761378|1.16|164.60000000000002|0.583|11.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsami.8b17030|nsTnYPPGzI0pNBeIwXwgKDWm1j5w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PMA)2MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.19|226.0|0.74|19.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01041|nsVhIoWYQGFqk-2lD1p-CspzDlB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.895|201.0|0.57|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA02306H|nsanMnBCENAMT1tXIkvE4f814Xbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9||0.51|7.5|0.309|0.12|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.109941|nsbhHwEBqugm_IWOLtzp7paXAUv1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is Cs3Bi2I9. -Br9C40H228I111N52Pb40|Pb40C40N52H228I111Br9|FA0.3MA0.7PbBr0.225I2.775||1.161|226.4|0.784|20.61|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/adfm.201904300|nsv2R27FOWPGjQ87X26rO9YlETLo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.225I2.775. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|150.0|0.583|7.7|['SLG', 'FTO', 'TiO2-nw', 'Sb2O3-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw', 'Sb2O3-np; SnO2-np']|bulk|https://doi.org/10.1016/j.tsf.2016.10.058|nt34os8XpzFOKbTcMOZ5KPjn77lY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Sb2O3-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.0|0.74|18.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']|['CuGaO2']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|ntF9HBg_OBveA-09sgzdAWQ58XiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.75|19.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201804465|ntJlfnCo4W0-jTvGdYtY4WIc8TVl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|177.0|0.565|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja410659k|ntSA2J9qFhXv893IigTSuebq70Q6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.76|212.0|0.5770000000000001|9.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']|['CuInSe2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|ntW2ekXY_3f-suqf_NgWd8g-tWOO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInSe2-QDs', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.74|16.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b14926|ntd1VKekwdDrAQFHH5VCyHHgb8Fx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517N183Pb100|Pb100C100N183H517Br51|FA0.83MA0.17PbBr0.51||1.11|224.0|0.758|18.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'EVA; SWCNTs', 'Spiro-MeOTAD', 'Au']|['EVA; SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15396|ntmZG0PW48uCqO5M718kZ1m26tp7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'EVA; SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.7|0.73|16.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|ntpuycEkqGhW_296oFV70PxcBnlq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|145.0|0.45|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']|['Al2O3-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|ntsIolncE1ojZn7lw77VIigHKcfu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3-c', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.6|0.461|7.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s00339-017-1240-7|ntuAJY47xw6_V4dvlzGhT3_J9TQ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.2|0.632|15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.5b01994|ntz0t2jfs25x-ox3sZxuXTkO9mYJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|214.29|0.65|14.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|nu-4P5_q2GrdGYqOtId52qp56Uyp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|215.0|0.73|15.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60SB:TBAI']|bulk|https://doi.org/10.1021/acsenergylett.7b00147|nu1MXdY6y-UYTnjH2JjXKtGPaGHr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60SB; TBAI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H11I4N3Pb|PbC5N3H11I4|(ImEA)PbI4|2.5400002708430995|0.85|39.28|0.545|1.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|nu5NY8kilcExy0t38kxTbldA2yp5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (ImEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|144.8|0.63|8.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|nuNENd6vrIcdOlNDUkHwXaA1ehAo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|210.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|nuQ_EIyu1NhV6HfDLgNAdykon1t0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.3|0.794|19.58|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|nuVNXDEYAtuloQehWncbKBrei75Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.5|0.73|17.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201704181|numqUtxwOVzNZPL5GWDzlbezOkPp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.84|169.8|0.7|8.97|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|nuohbn2yuH4h_CHDCcDydbRPv-zm|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.61|110.0|0.57|3.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'I2; LiI; Methoxyacetonitrile', 'Pt', 'FTO']|['LiI; I2; Methoxyacetonitrile']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/ja809598r|nupb6JZTod24ixrsN4mwum_eAurb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'I2; LiI; Methoxyacetonitrile', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|195.0|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|nuuWVrrEPxbPpzomgGQFTnjKCuxp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|151.4|0.6|7.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.3390/polym11060980|nv3_bj0RMZbKZvRCv9NR4GtZvNdH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|225.6|0.7829999999999999|19.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-34432-5|nv3tTFr4Y80oP6-zZKAfkQDfPIwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|163.1|0.57|7.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b00795|nv4AqiOJeaWEK8AEzv_sQr-akJu6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.1|0.7909999999999999|14.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00981|nv8_hIU-Ty7tCLGKmHLyB-6GtUrn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|nv96b5ZTV7KcTKzgu87KgzpLiFHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||0.99|188.5|0.627|11.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc01104k|nvIhPlg3Hy7fi-lPpSjQBNREX68S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.85|108.0|0.525|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|nvLyp7M0_li-p_YykeHjxy-LVCmB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|149.1|0.57|8.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|nvR56c2MFPDY5jKlgPCa5TANaaxK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||0.967|200.1|0.632|12.69|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.3389/fphy.2018.00099|nvRGI8ewvjHCWIGzEsUokL-MsEvf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|221.0|0.5379999999999999|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.137694|nvY-2UYKRPNzFO3kD24-ePgEuxPW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|216.7|0.705|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00468|nvlEWHqnlVZoQeRl6JgT4KtEaNyu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|174.0|0.69|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|nvmBjD1Z25yoRioBV6bC5CxGofTB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|226.6|0.727|16.2|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01076|nvnawf0SqhDVNmg6yorS8IUonWzS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsnano.5b03265|nvpniPoft-KeoUX6sMORnvYP9NEw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627||||9.07|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta03336j|nw4aJqRecGPqF-WKQ9-tox9ZQFlf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.06|224.3|0.72|16.23|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|nw4uzbg6Kjvv64Wgrvh674bKHzaJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|218.3|0.59|11.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/aenm.201502027|nwCBgZ15NjssdTk8j_u5M6g9XqjF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|0.92|123.0|0.58|6.56|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|nwKwMwS4E4-HgpvRBuSts5NMBL-o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.5600001663445808|1.01|118.0|0.522|6.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']|['PTAA']|['ITIC-Th', 'BCP']|2D|https://doi.org/10.1016/j.orgel.2018.07.029|nwMFkWvFEvHILLjlaIaC1-ThgShg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC-Th', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|123.0|0.41|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/cm5037869|nwT2-yJJFemIJ9Izrs1kCagTy2jI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|172.0|0.38|3.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|nwUQYjGz4Igu-ZfJzj0rexR-VX2b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.8000001919360546|1.09|157.20000000000002|0.63|10.92|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1002/smll.202001772|nwZbn_rMfW7OfsNzowYnp2laYcZK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|195.2|0.767|19.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|nwbaQ_hex341EolCrNzhMwDcaZaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.982|187.0|0.3879999999999999|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07781|nwpkbC0BVMO-9v-andS5ys-huqWN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.289|104.0|0.653|8.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|nwqwEvgWp7wrj1QDY2pCyajkWTkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|191.0|0.7340000000000001|14.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|nwtOow4pF_j7ckMzdBwj0JJSUJU9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|182.0|0.72|12.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201602807|nwu9qbtmrYJXSc7DRUxfIk1vJV8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.4|0.79|18.81|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['4-DMABA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta00267c|nxNFentr_wihkOvu8rXrsPlo0G6y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '4-DMABA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|209.2|0.76|14.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b10668|nxYSRcxhlKAWEhxYnVODllwRdfDH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|nxq_sXCgVhj4XiCPJVigoEZNwfrq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.933|221.4|0.56|11.5|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|nxxY5qqJ8ktNe-5FSpspJTej6cYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1||1.2|180.3|0.7929999999999999|17.16|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.069|nyO_CoEr756J-qb_T4TBh3SfMyPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|181.9|0.626|8.37|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|nyaXJf6xEOXntGWTG3NTeC3yTZPX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.366|130.1|0.478|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|nydCoqB85bjfbB_YG2-fepo4Dt--|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.19|82.8|0.35|0.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|nyiMtZWnOCyhLCoG6nUyoJbfHfRX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI|1.5400001642119578|1.085|221.2|0.73|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|nyjuCtm_2GuBIlXm9mEQjw14BRKD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CsI3Sn|CsSnI3|CsSnI3||0.44|87.2|0.66|2.53|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|nyl3bmxXJn30ZnwZ6B3fOpFhGkWS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.5|0.804|18.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bis-FITG', 'Ag']|['NiO-c']|['PCBM-60', 'Bis-FITG']|bulk|https://doi.org/10.1039/c8qo00788h|nypTDe42Ti-OEvbMRo5rGwdn5iEU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bis-FITG', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2400C1900Cs100H9823I3600N3477Pb2000|Cs100Pb2000C1900N3477H9823I3600Br2400|Cs0.05FA0.7885MA0.1615PbBr1.2I1.8||1.094|155.1|0.787|13.36|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|nywNuO3iobBJtG8ToqhJyt9FEuB-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr1.2I1.8. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.76|276.0|0.74|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00314a|nz26ESDT0ZbbaJmt4L7IXZ4syGPW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|105.6|0.61|5.41|['PI', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.3390/polym11030427|nz5r2QV4NqIoF4KjDrQhG58J_85R|a perovskite solar cell with the following device stack: ['PI', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.465|219.6|0.685|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']|['Tetrakis-Triphenylamine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10898|nz89Acox9VoCmuzieH-gawmktEnZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetrakis-Triphenylamine', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|221.0|0.5|10.2|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/acsaem.8b00106|nzIN31OMtZExfqLihTtu01Pc8Uu5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6100001716761378|1.05|219.6|0.731|16.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06305|nzIsULYvFR48OEibuh9VWzyFkIz6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|nzPjVGk3L79N0papAGPlubvCjyat|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.0|0.763|13.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|nzYQwvSR546QvZypAIRf7VVmBSU6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.0|80.9|0.59|4.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|nzkYNwsAyPG8Z98ZionRkxF7FfVE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.6500001759413832|0.83|154.8|0.58|7.5|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2018.05.036|o--58QDfjNCcjDTdd7xJHZZaT3ZH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br120C95Cs5H491I260N174Pb100|Cs5Pb100C95N174H491I260Br120|Cs0.05FA0.79MA0.16PbBr1.2I2.6|1.710000182339252|1.1|190.0|||['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA-tran3', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201700607|o-2QhVqIQPPonZOs0ExaheReCtn2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA-tran3', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr1.2I2.6. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.013|205.6|0.7829999999999999|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoTh-TTPA', 'Au']|['CoTh-TTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00437h|o-F5kQfF27UllR-9GAnFhLt0sz8H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoTh-TTPA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb3|Pb3CNH6I3|MAPb3I3||0.95|212.7|0.69|13.99|['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'Fullerenol']|bulk|https://doi.org/10.1021/acsami.6b04895|o-Q9lFG1cg9EJ85de3eoWU5FHJKr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|219.9|0.74|13.34|['SLG', 'FTO', 'TiO2-c', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'WOx']|bulk|https://doi.org/10.1016/j.solmat.2019.03.040|o-jAFhVfNmvv5jSBfm9vXM8LQNXx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.5|0.784|16.75|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18867|o-v6xC5cKUow6m2nOXKfSD-Z-NC2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.0|0.6629999999999999|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700536|o-zzvW5sJaISrsmIAixH11QACCNl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.86|156.0|0.67|8.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|o04jUSU2T-QTFIEhqpIHY9YqGebL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.0|0.73|16.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703879|o06K4mb3miJUggA5WEjmPoc0HKxa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|103.1|0.4029999999999999|1.91|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/jp509896u|o08QtFcLYnnUEDXoDIQPiJBMOdBL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C52H152I34N12Pb11|Pb11C52N12H152I34|MA2PA10Pb11I34||1.05|215.8|0.72|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|o08Tw-EwcVEd46-lf5rm1kmRBZtD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA10Pb11I34. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.6|0.601|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.116107|o0D3Ae1FYuk_72paVhvfydL34vYf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|213.0|0.79|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-2', 'Au']|['HL-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02556d|o0PJDyeumXHCcw8Mvf-6EuAn4191|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H36I10N4Sn3|Sn3C10N4H36I10|BA2MA2Sn3I10|1.640000174875072|0.38|89.0|0.439|1.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.7b00202|o0QIybI7Mwj_7TU-JNex8TfKtHZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is BA2MA2Sn3I10. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.43|139.2|0.5660000000000001|2.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|o0SfaTnYnTkpOApEWSloc63x00fP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|1.8000001919360546|0.12|2.1|0.29|0.0074|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c9tc02181g|o0btMkGIwFgiAgaZoxGxOtFy4ljM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5900001695435149|1.09|221.4|0.74|17.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c8ta05541f|o0e39R39daLtm0E3RXQzMi2Mi6wj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2900001375541723|0.71|225.7|0.642|10.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201605469|o0leQGpfFtsxJJ3na5wl99-_U0aJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||1.04|225.8|0.6940000000000001|16.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL51', 'Au']|['BL51']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00637|o0mao_tSNzRJrF3xf6YvqJ8t7tBv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'BL51', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|165.39999999999998|0.472|7.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|o16aH1HJ6sbs2kgOjQuDkJWtc0u9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|235.1|0.775|19.51|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227386|o1CMJJsvTpUKEhSWK6GcqeuqG_rF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.0|0.76|18.1|['SLG', 'FTO', 'Nb2O5', 'PCBM-60', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'PCBM-60', '(EMIM)PF6']|bulk|https://doi.org/10.1021/acsaem.8b00094|o1HV42nFmz6UOgLjicL8xgWiqafH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'PCBM-60', '(EMIM)PF6', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.6|0.71|14.78|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06730a|o1MMpYSliH-tmM9Oqysfqjxz-DtT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.14|235.0|0.76|20.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800177|o1NVTft48hh5d0K9-425W2vqQbAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.4|0.726|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra27146d|o1U9P6n6M4SH7dpEPapNpSVVOrKu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.08|185.56|0.763|15.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||o1_f5dcwIJetmRMPwTR_ytJueiU9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|171.5|0.65|9.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c4ta05012f|o1cXA8vWgTqkTESVs4mZbxHOv5Pl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.5|0.62|12.69|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|o1kGvm9_sF1zNBtVFA1dEXCOxWJe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||14.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|o1mnWYWmT4oEQ0QrT0jLJKPyFAXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C93Cs7H479I255N172Pb100|Cs7Pb100C93N172H479I255Br45|Cs0.07FA0.79MA0.14PbBr0.45I2.55|1.6000001706098266|1.2|239.4|0.7929999999999999|22.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'BAI', 'Perovskite', 'BAI', 'Spiro-MeOTAD', 'Au']|['BAI', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'BAI']|bulk|https://doi.org/10.1002/adfm.201907962|o1oZ1if_dEX2VPCvXoho_lBHyFKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'BAI', 'Perovskite', 'BAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.79MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|132.79999999999998|0.679|9.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|o1orRnPKm6ojQhAs4ni_0T1qW33k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|45.6|0.29|0.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5036643|o1pdZZlRJdRJReiIfeq6WLp0_zSK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ni', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.92|172.89999999999998|0.69|10.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra12205a|o20oXWUHFw7BYYztq07YTyFSK_s5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|220.8|0.703|16.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr08295b|o23da4RXrC1QvQkkSEtD3qxvpjyS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']|['pBBTa‐BDT2']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|o24RWT_RGC6xzGEW2Y-rvSdbITjx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|o24djEXBVPzPljYihzJbo83iQou5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|155.0|0.144|14.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00350|o28Bvd-N4YXPHQvMf_-oZdGdL3IC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3|1.535000163678802|1.08|225.2|0.7659999999999999|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201704188|o2INT1KgJUeXcl6IAXE5YUcRBk2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.09|243.4|0.737|19.54|['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiS2']|bulk|https://doi.org/10.1039/c8ta11841h|o2LKleoneCB5Mf8yxq41pkbD0Rlt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|157.5|0.67|9.8|['PET', 'Graphene; TETA', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene; TETA', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|o2Z85IjenBGy0FKkVFB-hKSEyJgZ|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'PTAA', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Graphene; TETA', 'PET']? The composition of the perovskite layer is MAPbI3. -BrC2ClCsH11IN3Pb|CsPbC2N3H11IBrCl|CsFAMAPbBrClI|1.7700001887371206|1.24|200.6|0.792|19.7||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/smll.202203319|o2pfIoFs_MuLzjgys5zbQXpjuaDG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAMAPbBrClI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.999|195.5|0.691|13.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ensm.2016.11.007|o3A4ToWu1rIyuIlOlbTI113uzJM-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|182.8|0.618|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|o3COnoDl4h5dTCM9N4a_1bmtk8br|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.290000244185314|0.83|18.9|0.52|0.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9117-4|o3JBRcW3wix6DO15KWsWAaa6YO34|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7959999999999999|146.0|0.478|5.56|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150249|o3ORP9fPekVNVxSSlss3JdI-XeLQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I27N16Pb4Sn6|Pb4Sn6C10N16H54I27Br3|FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7|1.3300001418194185|0.69|247.8|0.72|12.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b09609|o3PWyofTRg1JSpUeSp_r61gh1226|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|o3YuZ3s37P1juMirrIt9BraQlnJE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C83H210I65N25Pb20|Pb20C83N25H210I65|(PEA)1.4BA0.6MA3Pb4I13||1.14|152.0|0.621|10.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta12476k|o3_SkzSSbuI7QVOpEaiA1UnyH-5x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)1.4BA0.6MA3Pb4I13. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|213.0|0.76|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst7090272|o3pRHzIaJgoGuldlWF5wilvbxrh3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.6|0.769|16.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08314f|o3qiIj2g3L1SCjQRzAq7GkfjFiqT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|189.4|0.735|14.33|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|o3rsChQATKK345MSZMeFI76hfB0b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|177.5|0.75|11.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07714a|o3sk_Ll_nGy15Du5RG87G8_YynW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.44|106.4|0.491|1.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|o3t9HStVXo7uNb33PbHlq78CFmE0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -Br81C68Cs32H350I219N146Pb100|Cs32Pb100C68N146H350I219Br81|Cs0.32FA0.58GU0.1PbBr0.81I2.19|1.7500001866044976|1.22|163.0|0.732|14.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'bis-C60', 'Ag']|['PTAA']|['ICBA', 'bis-C60']|bulk|https://doi.org/10.1021/acsenergylett.8b00576|o3vR8dik8Zy_zMVA963Qf34OwLlC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.32FA0.58GU0.1PbBr0.81I2.19. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.546|74.80000000000001|0.76|8.81|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']|['none']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|o40aC8Fa1CqV0MNiRCLnf4o-VJmt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.570000167410892|1.091|205.3|0.7040000000000001|15.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms16045|o41ZcfzpHHkrsRArhf17idKu_NgC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|221.0|0.75|16.9|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'V950', 'Au']|['V950']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.01.015|o4DOXP-BTlygA5RdUFUGyd9p31vL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'V950', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.55|120.0|0.15|1.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|o4FZMqKJV2iPwwln21sRi_DRi-ie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|o4IEQcsWXHEUt_Bwa7mAMKJow7bS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.75|108.6|0.3329999999999999|2.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|o4Q502q1n17z7m5dM54b6gOAarqs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3400001428857296|0.37|211.2|0.61|4.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201902000|o4TPBUU_gqHBAN_FyGelaPqx75mp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||1.0|149.60000000000002|0.624|9.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|o4giOelrLLF3YDwnAjqyO3EsmuFP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|164.8|0.62|8.52|['SLG', 'ITO', 'CPE-Na', 'Perovskite', 'PCBM-60', 'Al']|['CPE-Na']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms8348|o4gmc-2u-aXkQJGQnVPUbLTYrFwP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPE-Na', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|173.6|0.5|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/479/1/012046|o4n9BFC6dsTNNRnYq9UztV3gwz6I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.04|210.0|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-020-04896-w|o4sXdtBmuo7nTf0qUXPC4djnDmGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|218.7|0.78|17.76|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-ISO4', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-ISO4', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8tc02766h|o51fJpq1hTaUyBdLwkNEDFEW1PJS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-ISO4', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|193.0|0.64|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11082-020-02327-3|o55JNijkeQZWqfp5i2CZNNoqxbvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04248|o58mdUVBkcpIQ1f1TZZfHXZJAExO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.41|52.3|0.379|0.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|o5LW8vfumyfsKAJAAIQkdArpygzd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.8|0.6|12.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr05917a|o5Pjxa2ZoPhpVUyKMwO0w7eT_mxJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H87I60N32Pb20|Cs3Pb20C17N32H87I60|Cs0.15FA0.75MA0.1PbI3|1.5540001657047935|1.13|231.5|0.768|19.97|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|o5gnpXDu1w9ASGTNtKbXuNbnnR6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.9|0.74|15.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800593|o5mMKKu_iEAOApeCfEo1LLdyGzXI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.01|190.9|0.5379999999999999|10.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|o5y9IKWkGMHR9FfCRCxqeXGxKBxW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.670000178074006|1.14|185.0|0.783|16.4||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|o61Ea9ocrOdYUW_vRlU6bnP0lgVB|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.06|207.8|0.67|15.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|o64EY9d86F_tUwKTzgvSmg6dYpqY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|215.4|0.71|16.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.141|o6TgGHX3Q5XgOV9792UHSEpeFEhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br24C19CsH114I36N19Pb20|CsPb20C19N19H114I36Br24|Cs0.05MA0.95PbBr1.2I1.8|1.8200001940686776|1.18|149.0|0.69|12.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201702140|o6ZBGKeKppifYRc6WxDfsfjH6WfU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|188.3|0.6759999999999999|12.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2']|bulk|https://doi.org/10.1039/c5nr08344c|o6afDxi_wtXGgHHfEfP7kqXR39Q-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.07|228.4|0.77|18.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|o6pdmBYOWkZzBK2fQHsvOhJEeAzz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|188.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|o6qPNY6JkGyaWC8TPrXDaEJcaFNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.5|0.716|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|o7IrgkOoZhANJVTt4po6jr0-m7Gw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|78.0|0.38|2.6|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/aenm.201500569|o7Q-DK6YuGctbASMmZzh8CKPhbKj|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|201.3|0.684|12.68|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.041|o7S77rJBqcj7-DVlvtvLKj-HbRTS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|220.0|0.62|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta05674e|o7SJ_VjkSr2miLpWs2BmNFigJ2Yj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.2|181.1|0.76|16.57|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|o7Z1alfK5Iz-JgOWevonal479WYY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|202.8|0.685|15.14|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|o7bnjeT3hQo27YXecYqZa2tUr1-f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|197.0|0.759|14.95|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b12123|o7epse3kAz5ciAgiZTNDcKuQxtDc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Ag']|['P2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|o80-wur7Ld3_AVFnJ8_V1653bPCz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.122|182.9|0.78|15.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|o839u1fOC9MdcrWiudZOKL4FqngW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|201.0|0.74|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.017|o85V_SBSsNAK6UuRe_cm0ks1k5b8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.949|83.0|0.58|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b01808|o87-R9GkRs-R9Hh7YhwRQSSw33Pv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br24C170H645I276N115Sn100|Sn100C170N115H645I276Br24|(PEA)0.1FA0.15MA0.75SnBr0.24I2.76|1.2900001375541723|0.37|135.0|0.5529999999999999|2.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PCBM-60']|['PEDOT:PSS']|not processed|https://doi.org/10.1007/s00706-019-02503-6|o8836vdB3r9up-_s_W30M49DR0xQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)0.1FA0.15MA0.75SnBr0.24I2.76. -C101H503I300N200Sn100|Sn100C101N200H503I300|EDA0.01FA0.99SnI3|1.3700001460846638|0.47|237.0|0.73|8.09|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b02024|o8CV4eqiRCIrgbQB_VECckKOkajL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is EDA0.01FA0.99SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|249.0|0.64|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.11.119|o8Nn2tGYBibe-8U160s3bKeOCStC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|196.0|0.76|16.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/C8TC01033A|o8c7RL_eQy3sQTricyI6sngvEYsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|126.0|0.773|9.74|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|o8f9h1P7OSJFCw2tpTyUES0y_CDs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|151.1|0.56|9.12|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/advs.201700031|o8lYMa7Z66Hl5YP4FAEVRSBJMi3U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.0|0.769|17.4|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|o8vYUpz0U0MTM3YDkkILbbkoUQEa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|181.9|0.735|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PS-b-PEO', 'Ag']|['PEDOT:PSS']|['PCBM-60; PS-b-PEO']|bulk|https://doi.org/10.1021/acsami.6b07690|o915Wc4rKWkv3aVKlcm6wR1XNd2k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; PS-b-PEO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.03|200.0|0.612|12.6|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00455|o9GOyw1i_TMgq32yzE5C77IYXJug|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|230.0|0.7709999999999999|19.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|o9HRaPLKO_lityZT3Y6KVKb7m2QH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.15|207.0|0.675|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|o9J_3rd1N3WXcCUMCNLfVy2oEp73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|173.0|0.583|8.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.011|o9JfXKpJUrcRSrXqyNhY7JiNVz_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|210.0|0.6940000000000001|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.05.039|o9jm6hcebaCHpHRWPLTUvPy0VtER|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.626|197.0|0.45|5.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H1', 'Au']|['Porphyrin-H1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800242|o9r02lZf5QYrVxpRBDFKvOT9QESh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|201.7|0.76|16.26|['SLG', 'ITO', 'MoOx', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoOx', 'F4TCNQ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01004|oA4fXeiFn8Mni_aO8TzC-dUFCYb3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|210.79|0.68|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|oAAEvtIBpz2EESGKw87Bmn5-ckmJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|215.0|0.58|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b01959|oAAxIafeTggQrjmtYEKJe_VUNIbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|210.5|0.71|16.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-1', 'Au']|['HL-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02556d|oAMllyiv_nl98kRShQI46OIskOP-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|213.8|0.72|15.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.100305|oAX2mnLvBb-9yiZQSLaV_eRRPu61|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.04|204.2|0.741|15.74|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|oAbLoy6d4ld2oslKF-b7cL0QqhMi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|215.0|0.647|12.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|oAcn5R5El-Gw4yaAksPNG3AgBe4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.93|221.9|0.733|15.16|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'C60']|bulk|https://doi.org/10.1021/acsami.8b18807|oAekJiKJArqKck99Xpnn8-IcPLMg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|158.1|0.64|10.01|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/C6RA07549E|oAoYmUS-6Rjk2y1R5Y-FN5wMHuVV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.07|234.6|0.745|18.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|oAtC3qXkvYGP-W7OrYcq7dOodfU5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.967|210.1|0.682|13.86|['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['GAN']|bulk|https://doi.org/10.1039/c9ta08929b|oAw343E7ZGN9BqEIBlbHRL2pHKtg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.1|0.698|13.44|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500881|oAwoViwEN9fc_1e-Tc51SumrB3-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.955|115.6|0.35|3.91|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00747|oB6gWdr1X2acoW3x8p6bsZk548WF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|100.0|0.514|4.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800072|oBA7vFCt2kq6c18UT68M1Oo6BzZI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|183.5|0.745|14.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|oBI6083u1CZq3Z5aRwvjcpoI-Dmd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|171.8|0.6920000000000001|9.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|oBPUg0aQGCwk_Rj5bhUiU6JaQKKY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.44|53.3|0.62|1.46|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|oB_HlpkBHanLZV5rlndvHYotkX4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6200001727424491|1.1|167.0|0.65|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/solr.201800327|oBc3g4thXVnzYlgO2MhAoYjgGJYC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.76|167.8|0.43|5.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr00420a|oBclE1D1ByunjdCqrZ0ag1mst0B1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|226.4|0.726|19.74|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PBDT(2F)T', 'Ag']|['PBDT(2F)T']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta11744j|oBfgl44E731WAfO8zfHBAwtQpEXl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PBDT(2F)T', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|221.7|0.778|19.83|['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|oBkjVWy7nJ9gZ0BkSVm19Z3WMReV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br27C65Cs35H325I73N130Pb100|Cs35Pb100C65N130H325I73Br27|Cs0.35FA0.65PbBr0.27I0.73|1.7500001866044976|1.179|170.0|0.803|16.2||['ITO', 'MoO3', 'TaTm']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.0c02445|oC4T-QCJ05PZR1dn11oJzRpq-7n_|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.35FA0.65PbBr0.27I0.73. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|222.0|0.77|19.4|['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901631|oC6Tp3Pe7o15bcoBo-GdCCFw-wDM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br100C87Cs13H435I200N174Pb100|Cs13Pb100C87N174H435I200Br100|Cs0.13FA0.87PbBrI2|1.7200001834055632|1.1|180.7|0.741|14.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13145|oC7F8xYXhh885aW8jOJjDpxbYwj0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'ITO']? The composition of the perovskite layer is Cs0.13FA0.87PbBrI2. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|65.19999999999999|0.69|6.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|oC8_YDSgdyibx5MKLHbg-h0VLFtP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.52|95.2|0.606|3.0|['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601130|oCA1y1gJj0B7iA9ukBqvfWsvp1Ye|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|200.0|0.72|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|oCGrMydhSunaid2Y_pl6dGfKN6wz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|199.0|0.79|14.4|['SLG', 'ITO', '2-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['2-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|oCV7U1oEdZC1Pdz_-kk_z477CSjn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|219.7|0.71|14.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta06152d|oC_QBjl-ihz9HjjuKDripYpTM4K-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|98.4|0.556|5.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b01033|oCgz-VvB56v1ERqyNmq_thM4kZGM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NSn|SnCNH6I3|MASnI3||0.47|48.8|0.65|1.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|oCo8CkY9mg4ikM4B_8fSK358NUNZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|186.6|0.5|7.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|oCoQbmrWqMW7Rz1bN5Wt94zGK9Xp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|157.0|0.53|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|oCvMYHMtTAo3ksmv5wP742SkyLbl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|202.0|0.74|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b09300|oCxEA3Lt2JbB2j3lyr_NhjXPHTOf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.4|0.7929999999999999|18.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|oD42BGuzuIT5OVCT7JpLVLArrrmV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.47|67.0|0.7|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00077|oD5F_2rV5K_M-ZNJyyFBhSBMTlYX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|161.0|0.62|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00844|oD5dVsLBhU7X8GdAxSURRFXkPwLS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|87.0|0.69|5.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aelm.201600438|oD8_S1wNISpDo9oX4pMchbkboptX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|192.0|0.768|14.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|oDD3p8RjLfH7vrlGlqJqN3iGgznm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.0|0.746|15.2|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|oDbQ-xiKZ9tPpJSCw_0r0y603DnU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC50H300I149N50Pb50|Pb50C50N50H300I149Br|MAPbBr0.02I2.98||1.04|225.1|0.782|18.38|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/ente.201700561|oDmF6QYhSGv1re90dVXaRochYJMq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.02I2.98. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|134.2|0.62|7.07|['PI', 'Ag-np', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.3390/polym11030427|oDxZd19yZlRuFcrplhwselJBu3aY|a perovskite solar cell with the following device stack: ['PI', 'Ag-np', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.0|0.67|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b12137|oE9b7l1kdEaS7kwYeCS5EGDli3S7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|188.7|0.741|12.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|oEDVbow7_doZOY8a9LaXdZeHsbH8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|250.1|0.25|16.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']|['DTB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201904856|oEPyaNdLs_P31bYVmxtClIC_FDa6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DTB', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|223.7|0.737|18.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b01063|oEVPxXJkykSeNWFZrDxtQK53P-SZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|157.6|0.511|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|oEe38qOQcUB41KE87CkdQaV2ag3I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.0|0.79|19.44|['SLG', 'FTO', 'NiMgLiO', '5-AVA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO', '5-AVA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/admi.201800645|oEnSI2LicnVSclVGEGOJn4WEjtso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', '5-AVA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|165.0|0.677|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2416913|oEnhtZ5q1O6oC6onPcsKhSKrXJnZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|141.2|0.7190000000000001|9.9|['SLG', 'Ni', 'Au', 'Cu', 'Perovskite', 'C60', 'BCP', 'Al']|['Ni', 'Au', 'Cu']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5006513|oEwVYd1wGRilUbHDjZ4WRtU5nQjr|a perovskite solar cell with the following device stack: ['SLG', 'Ni', 'Au', 'Cu', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.27|159.2|0.6|2.57|['SLG', 'FTO', 'PEG; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00383|oF7xuO6bEP3WiS6A1Egosb45297f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEG; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.0|0.73|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|oFGuc--kStdCTnqH5N7GkTcikcXu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3|1.5300001631456466|0.921|215.03|0.613|12.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|oFJfqnG-AVvgBLlrUUOfcT9pqmM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.3|0.64|13.08|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|oFM4-QHb8eatzuuUIYqOxzB5KefK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C50H275I144N75Pb50|Pb50C50N75H275I144Br6|FA0.5MA0.5PbBr0.12I2.88||0.784|51.4|0.601|2.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021928|oFQbb9EyIWfssx8utOs9mWz0FQzE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|176.29999999999998|0.52|10.1|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.solmat.2018.01.017|oFai9DVqNgAE7eH7oNr9d5uNuKN-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.1|0.72|15.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|oFbh9FLLlgJ15V5C_n3ef8I3DATm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.923|201.0|0.6|11.09|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/asia.201600474|oFegO5jhR22oDMIyuzMSHQxVCo_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2Cs2I4PbSn|Cs2PbSnI4Br2|CsPb0.5Sn0.5BrI2||0.48|179.0|0.58|4.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/solr.201900457|oFnu76XYXruOjOo1fjzgIXYGp1hT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.5Sn0.5BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.778|226.5|0.489|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800207|oFqgxyOWLX_GtcxMpbYZI0Ss8gGG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.23|81.8|0.61|6.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|oFvmTvFvd8nji1kMnbAnOersBNUq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.0|0.76|16.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b05588|oFvuwINke8QzDUthiJ1b3NSRDRgx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|188.0|0.733|13.8|['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEDOT:PSS', 'PEI', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.10.032|oG-DQ_sorZ89h5Cs1Yf0iSHai0rD|a perovskite solar cell with the following device stack: ['SLG', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C94Cs6H477I288N181Pb100|Cs6Pb100C94N181H477I288Br12|Cs0.06FA0.87MA0.07PbBr0.12I2.88||1.09|236.0|0.7070000000000001|18.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|oG1YD5VN5nCd0ni7BaYYhCWDI0Kt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.87MA0.07PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.0|0.72|17.0|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|oG3tlzTEQ2CWnAtjBOJhOtGQHkTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.01|228.1|0.7|16.13|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np', 'ITIC']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|oG4vkPwM7Ovsa_Y5utW73Qyp023n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.98|226.0|0.628|13.9|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|oG5hLD5lwziAuC8PkM1Hu-7h-Xa-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|226.5|0.58|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TC03077G|oGCR7aJNjwR3HhQwV2DkxzCQkqXR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.881|177.44|0.58|9.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||oGE8Jw9pMo6nIfOX0m16W6QKd4rj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|201.1|0.76|13.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s11426-016-0085-y|oGHLgZax5NAimVbJEUBxFFpiKgZQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.02|140.0|0.63|9.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|oGhLFHPd70HqeYPGkc8JSGiACKcq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6000001706098266|1.07|230.1|0.778|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601733|oGim8aaouVtZGfc3Czg5quCMPqiv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br6C19CsH97I54N36Pb20|CsPb20C19N36H97I54Br6|Cs0.05FA0.85MA0.1PbBr0.3I2.7||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'O5H-OMeDPA', 'Au']|['O5H-OMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.031|oH4bqaJoOmvYXfzpsMDJnskj7lcq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'O5H-OMeDPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.3I2.7. -CsI3Pb|CsPbI3|CsPbI3||0.995|105.0|0.639|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02594|oHG-ToH6c3moD5_kbMv8NPRqdh0T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.5|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|oHOPJckme4oViJnLurQlrVSS0WBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|221.0|0.81|19.11|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDT6CN-TM', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta10975c|oHRtUASiNyW7pJ0vTiegCriel80m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDT6CN-TM', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.23|45.0|0.69|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-018-0187-3|oHVNNzsj-dKr16-RtC9fpVFvjD-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|oHYYi9evmq6TcJN8Z8xIFq9BduAC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3CH5N2Sn|SnCN2H5Br3|FASnBr3|1.6000001706098266|0.35|101.9|0.71|2.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.061|oHi5kxu2Q8Osl05cuum8QmMJcEOb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.9|0.73|17.56|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12140k|oHnkf6EDFETXQmrZ2vrpBJuHSxdf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|131.2|0.69|7.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PDPP3T; PCBM-60']|bulk|https://doi.org/10.1039/c4ta04482g|oHrvKC1trxTBICY-GCOj09fiYfgD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.11|222.7|0.736|18.29|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc01104k|oHu2aNS-yKJw9_U3sdRF2M08gFc7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.045|207.23|0.609|13.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|oIBkQ0rlQel5zQv_sjnOSpEA86cd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|181.0|0.562|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']|['PEDOT:PSS']|['pSNT']|bulk|https://doi.org/10.1002/smll.201803339|oICo4DHJHQnjfR8ggMRJWZkOuR-M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pSNT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.410000150349909|0.238|217.5|0.37|1.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00190k|oID-IooAnBdpigxWxuD1q55utNQm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.148|227.0|0.76|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']|['FDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.17|oIH-lkks1S5MgR23_ntNBwMjngvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FDT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.161|235.5|0.73|20.12|['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1002/adfm.201805168|oIHahnE2tgKZ4o8RaSOML4C9oDfB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|106.0|0.53|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cclet.2015.09.022|oIOJT9JsFHVEABbEkEOLfgCevkqv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3||0.94|90.0|0.408|3.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Au']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1007/s10854-019-00927-8|oIVgHEVLxlwe3e0F-QpLZCpIsyke|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|181.6|0.612|9.89|['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']|['Co0.817Cu0.183O1.19']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|oI_QWICBhlnZQJ6QhiF2Eb7C92cV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.0|209.7|0.701|14.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2019.04.022|oIe9eyqey6dpDda5iJ11MhWyHrfJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.0|0.6|12.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1246/cl.150167|oIgQQcjXognU-ozT2Y_Bc-_X2Rlw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.23|85.0|0.67|6.45|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|oImACAX2PXIIapQ8ArOsFLEtXN8v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|95.1|0.21|2.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|oIprDly27mJfFLfOGmNc6Bv9mypS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.17|27.3|0.243|0.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PH 1000']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.11.002|oIsiGxS8ZWQEbRiZr43C8JyVztrw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PH 1000']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|194.0|0.74|15.1|['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|oJ0SCvn_89yY-f_iVLQvjd0O2JvW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.0|0.58|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.010|oJ1nk9kz5KSA93CnLF6rulxa4jVX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C97Cs3H501I250N178Pb100|Cs3Pb100C97N178H501I250Br50|Cs0.03FA0.81MA0.16PbBr0.50I2.50|1.6300001738087604|0.96|170.0|0.62|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|oJ5wkdr_3lSRD1TJrWiCs8b7j1Yi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.03FA0.81MA0.16PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|141.7|0.51|6.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|oJ6_6507_w157eO0Q87u3G477oX7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.9|0.738|17.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.048|oJ9bSDMm1ofCSmkJFsZc4jri0onM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|236.0|0.65|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|oJEOoxs6zfgw7NLp3x78B6tqYhqZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|156.0|0.75|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07714a|oJOjWV4NLzP80sLTAwb909XVM_PP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6000001706098266|1.08|223.1|0.667|16.08|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s10853-018-03258-x|oJQWmXLdacdtxZVYHs2Ng-01b9ni|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|220.0|0.6|10.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2018.01.006|oJSsTkimSFibl5Kn4nQLWTnTepll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.6629999999999999|136.4|0.36|3.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2014.10.145|oJVf2wZaOhxPqj9KbeYFjh0TdtXz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.4|0.627|12.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800297|oJYekiFFMpeG3VtGqVqXcC9rk5cZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.0|0.594|10.5|['SLG', 'ITO', 'Trux-OMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Trux-OMeTAD']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.6b00039|oJcDQlO_LXDVyeV6loLWxo8Ovnmu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Trux-OMeTAD', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|211.3|0.59|11.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.102|oJdnyyknUkDGS53oBHHoO-fThO50|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|134.4|0.565|6.76|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|oJqs0CQJzEzjcsraR40KlOW3zalU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|218.0|0.556|9.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|oJtcfORpA22umBLnh96OXtuZHaEb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.11|||16.5|['SLG', 'ITO', 'NiO-c', 'Cysteine', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['NiO-c', 'Cysteine']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.017|oJzOIucXxV2FsLbpIBPMVc6SsOmi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Cysteine', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.8|0.75|16.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp06953c|oK1WsphZO-NQojbB430LCKGxY9m4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|195.1|0.48|9.55|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag-Nws']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.104|oK2PXQ__5k5CQZvWadsjnNmottTF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag-Nws']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|174.0|0.71|13.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.07.041|oKM4Uld0W_SPIRtCIfWCG3jnbYnm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|183.7|0.614|11.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-1', 'Ag']|['HTM-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201706104|oKNBBQDvMZYlokvwiSfI6Eav_mri|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C15Cs5H75I48N30Pb20|Cs5Pb20C15N30H75I48Br12|Cs0.25FA0.75PbBr0.6I2.4|1.7000001812729404|1.12|173.0|0.7390000000000001|21.22|['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au-grid', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/pip.3208|oKQltWFgFPJnSIdW7YD5aHNKt2-9|a perovskite solar cell with the following device stack: ['MgF2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au-grid', 'MgF2']? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.9|0.5720000000000001|11.67|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']|['PCDTBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b08958|oK_mTFkZuzxrr8mpWftaQINWSw4L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCDTBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.695|12.5|0.26|0.23|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|oKaVzu7N6XXNJrr7OMwwueSAprgR|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.0|0.72|14.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|oKc01PbdUp0qZLT08wX4JpkhM6Ys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.05|211.0|0.696|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C101', 'Au']|['C101']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.07.013|oKhrBScS_dItsuJmvTyMBoLhAGrx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'C101', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|215.3|0.52|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|oKiY19wD5RlaLoGWX0U0QMiQinCi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.08|208.3|0.72|16.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|oKoef_e8l8ICCJn1Y2qEWWiLUP4j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.56|182.2|0.7|7.14|['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900245|oKsAV_QZyWUfnTD7n5SnFnamilcN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'FASnI3', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.06|222.7|0.672|15.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|oL3vlKBkG3OM_MX1tthTh-GsNeuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|184.0|0.642|10.7|['SLG', 'ITO', 'PVBT-SB', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PVBT-SB']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1002/aenm.201701235|oL6CouVmET0IpDmBeth3lFB4R1Lx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SB', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.092|227.8|0.7390000000000001|18.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900838|oL6aa52T7SsHLvbGwv_qvDf67P1y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C18Cs2H91I57N35Pb20|Cs2Pb20C18N35H91I57Br3|Cs0.1FA0.85MA0.05PbBr0.15I2.85||1.07|229.2|0.6759999999999999|16.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903009|oL7d3uDFLkaTv5M797yBfUaCk9Ft|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85MA0.05PbBr0.15I2.85. -C20H120HgI60N20Pb19|HgPb19C20N20H120I60|MAHg0.05Pb0.95I3||0.87|168.0|0.71|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|oLDXQ36OKLOYWI4z1r_IqID829bD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.05Pb0.95I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|183.5|0.514|10.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|oLFuHzy8dBB4_g7P8SNiDRfVWbK0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|171.0|0.63|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|oLGpUXF-1dpkOiVuh7TGqr-cZaBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.27|154.0|0.79|14.21|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'PSQ2', 'MoO3', 'Ag']|['PSQ2']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201907331|oLWzgEoc1T6eutVmGXgq901p68z_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'PSQ2', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C19Cl2CsH114I58N19Pb19Sn|CsPb19SnC19N19H114I58Cl2|Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9||0.821|177.0|0.578|8.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE03|oLc2eCMTipyjrSN_FravD5gOmhTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|198.0|0.6859999999999999|13.6|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['CuOx']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.044|oLf44RGwSjA8lQsBOiT2PSIvKBeq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|203.0|0.58|10.5|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|oLh2eaBs6Doy5zx-tXlKQky2yh3i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|40.2|0.73|3.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3nr04857h|oLzdD0nzKjKeoTXGvtNVe8PrWUHL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|221.9|0.738|17.78|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|oMEKDvhSmLxE9Bub_7tmFt4w03rg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.9|0.74|17.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7CP00563F|oMKIxydOk5qjpkX6bq3s_APLD_c7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.520000162079335|1.09|233.3|0.797|20.32|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTQ10', 'PTAA', 'Ag']|['PTQ10', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.8b10520|oMLtn91bwf8qnvaK3JcWYP_x3AII|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTQ10', 'PTAA', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.007|222.2|0.6990000000000001|15.64|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|oMLx6ExY0CAtSscT1IRzEXbn0vY3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br12C25H129I63N46Pb25|Pb25C25N46H129I63Br12|FA0.84MA0.16PbBr0.48I2.52||0.979|230.0|0.66|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.034|oMRflC9KtH8TL_EruvSNsR0JNC5m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.48I2.52. -Br90C85Cs15H439I210N156Pb100|Cs15Pb100C85N156H439I210Br90|Cs0.15FA0.71MA0.14PbBr0.9I2.1|1.7000001812729404|1.19|195.0|0.802|18.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|oMSy0ISePwJjKQMnp3LFekTgliMq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|232.8|0.65|14.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600848|oMT-GUR97cBqNVH9Aomyb9_bmNX1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|179.0|0.732|14.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|oMV5CfROxzxXjt5q8sojvv9lj-GD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|oM_iLvFTbthVw3hbt_BvelFkv0IF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|173.0|0.25|6.0|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|oMaM0jovyJEXTn5knvkL3WyC5CjW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.1|0.73|17.03|['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'MgO', 'TiO2-nw']|bulk|https://doi.org/10.1039/c7ra09824c|oMofaLQAvqP8WD7IhMt69zaSG3VN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MgO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|100.0|0.472|4.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|oMw5K_KMjBRzKFlwwqIAoFG56rTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|173.0|0.735|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|oMzGJphCD_1-MGWhLu2L7SqeaGE-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.063|227.4|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'rGO:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601070|oN6jbX4cOX6mAzgSqHI6evEaY9kQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'rGO:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br120C83Cs17H415I280N166Pb100|Cs17Pb100C83N166H415I280Br120|Cs0.17FA0.83PbBr1.2I2.8|1.7500001866044976|1.17|188.6|0.74|16.34|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706275|oNBjl_4mED6nbEHeXhSA1j_ZEJ7L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I2.8. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.892|212.4|0.588|12.97|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|oNGxBhhrriVVLjlmsg1cPJz6UkVL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6980001810596783|1.212|199.3|0.787|19.02||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|oNHSmWFMuy1NV7qdrMkVdlsvhTKg|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|oNOex4KikkDNrF9f9dNV8QhGCT5d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.55|193.9|0.688|7.34|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08679j|oNS4uGO18VOl41Uo79wDSVzmgScy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||||||['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|oNY0HVPcNnyS44ySriYLKYMfeIXs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|167.5|0.3|4.26|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2017.02.003|oN_lb8dwydGa-rS_dWLqDsa9yPQb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2800002431190025|1.26|47.7|0.593|3.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.6b00517|oNaVZMNv05fzIi4bCWsXjyb69Ssz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||10.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|oNfp2L3oGG2PnMaocg91tCfv0odf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|195.0|0.723|15.3|['PET', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201701440|oNk2DGeuST4w_uF8pPg2CM_F_oS-|a perovskite solar cell with the following device stack: ['PET', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|210.0|0.68|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|oNnEadmAQJ_2OSkF1ESx74YUHJJ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I9N5Pb4|Pb4C11N5H42I9|BA2MA3Pb4I9||1.08|147.6|0.73|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsami.9b17047|oO2vZKVEXzRkP18VmNodLVMZnCFr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I9. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|74.2|0.6409999999999999|6.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI3-QDs', 'Carbon']|['CsSnI3-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|oO4VRj3q578jdzZJ9AcU8y9BD8Fo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnI3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|oO7g6rOhAw1ozyLfZVQWxp4nsRIb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.0|0.57|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|oOBCN76aOdJc6Ncvj-01m6WDFv70|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.6|0.7509999999999999|16.85|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']|['P3CT-Na']|['ITCP-M', 'BCP']|bulk|https://doi.org/10.1002/solr.201900565|oOPNxY47_WM_doqQc1KqG5Nru2f8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.102|213.2|0.552|12.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|oOQASQnyJoVuAq7PgooetIHgvdMU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.068|192.8|0.706|14.55|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||oOSqUU7vxqclilO4upBRSbKovZ8o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1126/science.aad1015|oOSy0AFVaMtCyMl0-7TgNzHSk_BG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.805|15.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8ta10827g|oOXGvgpyqDJHTiWjw5hxL9RXneY7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|118.3|0.529|7.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|oOd9eAwmLPOOha4Yu-kUx9B1ucX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.01|221.2|0.6779999999999999|15.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|oOemTX7H4081IzUGZq5qpW7KFm-u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|147.6|0.478|6.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b06682|oOlOnWBhFWexu1xOUFmCBVV6RkGA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.805|188.0|0.591|8.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|oOrESvr_b9HqyQ9yzZOcBds3ARD0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|233.5|0.748|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|oOs0TiMfK98IZL0y17EhbwGYVteT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|192.5|0.61|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|oOxJQ2uG25kx7JOOM1pcdtSipKFe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|148.2|0.58|8.24|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1039/c6cp04793a|oOzw05E_fCfwa9Fwa-w7c7-uPcEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.146|229.0|0.7509999999999999|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201903368|oP-9loByMbNKMymxHDCvaid7anV4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|217.6|0.76|17.12|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.0c00823|oPDNbnMfiqJDNBx8YrfZiV7VskS6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|221.0|0.607|13.7|['SLG', 'ITO', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2017.08.001|oPHh139OGMGAKxjaZ-tG2suUvvcv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C223Cs27H1173N388Pb50|Cs27Pb50C223N388H1173|Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA|1.6300001738087604|0.868|199.6|0.49|8.78|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.21203/rs.3.rs-1722290/v1|oPMh8JcME_RhpNFLf4pzeTPxCwd-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbCs0.49FA2.51MA. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.01|170.0|0.79|13.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee01136b|oPO4xO8MKsgbY4I9AcdZPX6--j5m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4369999999999998|51.4|0.667|4.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.202000199|oPTTxDq2iChHvjwOKrujeE6gRaTd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|224.0|0.73|17.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Al']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ta05004f|oPUyEHk35r2SxI31Z-sv-GcFqeZg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.0|0.73|18.23|['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c', 'SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|oPVNHjxVvpuX7DN60inqGWCmMo57|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|150.9|0.418|4.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|oPYzuslOokETauBTrj2bEsUJwApo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|155.1|0.742|11.85|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']|['PEDOT:PSS']|['Zr(acac)4']|bulk|https://doi.org/10.1039/c5nr06234a|oPZKhzp0iUaFN6KrGRedJ4QBsMip|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.570000167410892|0.72|153.8|0.4589999999999999|5.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02999j|oPbGjDiuy_alm1OcaZrV-4coLqwt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.0|0.64|12.34|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|oPfy9S8b7PYtBOSbovu1RpQk5tsp|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|0.93|210.0|0.64|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PTAA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PTAA']|bulk|https://doi.org/10.1021/acsaem.9b00162|oPlhhUHbQK_BUJICJpPl77y4C7OT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PTAA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|149.0|0.5|9.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|oPn4-y7N0hzEkUl0caZyBmottBL1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.987|205.7|0.7|14.12|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|oPud4MmeUPV6j8qdY4d7TeTXzsWs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H487I261N178Pb100|Cs5Pb100C95N178H487I261Br39|Cs0.05FA0.83MA0.12PbBr0.39I2.61||1.16|228.0|0.78|21.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta00272c|oPxnI4CpTBGHjorYnDWGm4ZRH5Wm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|225.0|0.42|10.5|['PEN', 'ITO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c']|bulk|https://doi.org/10.1039/c6cc04840d|oQ4b2bsBrMMW2aQhn2Fb9m8RW0mE|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ce00842a|oQCuqoByr1yB8XMtV-dFYHkW-6bw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.8|0.74|14.38|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|oQGyJ8BFbqxi9Erp0GB2qB2CByyN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|216.0|0.71|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01617|oQWRNWWOp4qcdjbVkaCM4cl6Jn2m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|182.8|0.73|12.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|oQX1eGc77iYy8XrmeU4N81LxIeWS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201700164|oQcu7djjxn-9z43Gm_VzmBM98Nv_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.97|217.8|0.6609999999999999|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|oQkaodqKmluphs74i6SZADAUyplp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|118.0|0.39|4.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|oQoAk3kYd5dpxwxzh38KdNm2cI12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Cs20I59Sn|Cs20SnI59|CsSn0.05I2.95||0.4|218.0|0.46|4.0|['SLG', 'FTO', 'TiO2-nw', 'N719', 'Perovskite', 'Au@CZTS-np', 'Au']|['Au@CuZnSnSe-np']|['TiO2-nw', 'N719']|bulk|https://doi.org/10.1016/j.jcis.2018.12.100|oQoXntNCC8BRrUZVLAHh_Uu4GVtr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'N719', 'Perovskite', 'Au@CZTS-np', 'Au']? The composition of the perovskite layer is CsSn0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|oQxdILoGXSBdFv_gyJvHvANCKFZy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.03|163.4|0.69|11.66|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/jacs.9b06796|oQyw8pMKG957JjbrHG_TJru7nrIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|226.3|0.644|14.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|oR-nGhAcfMyVgH8w0EI_AUFzp45S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.98|201.8|0.51|10.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06715d|oRCi_Z3m2oJ1VtXd-CYOvE1UtHeJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.062|180.5|0.626|11.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800009|oRCyMqP8Lezf1bdm1pQFY4qcSyLD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.63|58.9|0.606|2.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|2D|https://doi.org/10.1016/j.nanoen.2017.12.051|oRDL-yJLpzBHHVUwjQJ5Q-zbKfUU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||1.128|236.6|0.7959999999999999|21.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201707143|oRHeIDOFCca-lIhaAOFXcG6LsHq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|175.0|0.654|12.5|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|oRhuMbLdK_yh3hWz-io80GjXk5aI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.948|188.0|0.69|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|oRimLP1BqcVRe9OCxxHlpdNN7NqL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|159.0|0.7290000000000001|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06163c|oRsTPHwHkAbowD03P7l9GhMLzkM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|215.5|0.75|13.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|oRtthHJCKmk0XfaLawWV5jCnwcY0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.8|0.643|13.2|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|oRz1ztRC5XXjQxJyZwQHew4b17u-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.015|8.0|0.32|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']|['3,6-cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|oS-uaKbC7NqtJ-x2Te49fz305NQP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|220.0|0.7070000000000001|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b06171|oS2he0UlCnKBnOr_VKP61OGpAzeP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.63|151.0|0.47|4.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974792|oS72L0MuMaDhvWmUjGwG6oArl2n6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.693|150.39999999999998|0.579|4.55|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|oSEMKAA_0VuxMBjmeohQrnNh4YG6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|209.0|0.72|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra05741e|oSKtlMjrO8WthJkjirUTDH5o96sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.5800001684772036|1.1|215.5|0.75|17.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|oSPS6eEiq-ITxHqA1dePMiISlyBV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.064|233.6|0.7859999999999999|19.55|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b13648|oSYKQ04nej37j_2ZTieBD-ZJYKT5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|210.0|0.74|14.7|['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1002/aenm.201501873|oSfEqrmZGplk0MAaeEeEMZqzzXN6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.7|0.612|13.05|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b01038|oSoJVeGXDzjUXqgdNiEGbGIZCV7C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.02|215.5|0.67|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603808|oSz6cez5IrXDRbNMhRhoHvFogty3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.455|26.0|0.39|0.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2017.01.019|oT1Lz7DILHpBKEEJcYo-F-M5ETkh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|229.0|0.755|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra12304c|oT6Pwpz4iC8kSbPmb-utk-CbQ5XE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|9.2|0.5|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']|['3,6-cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|oTVQKn9YRu5no7ExQALA9hoPK9ZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.8|0.72|16.51|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201702934|oTW80qrSTdl60KyDVTUJz3VFxssO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.05|222.4|0.79|18.37|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP12', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['TPE-DPP12', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.03.002|oTgNPAtGKgBNSfj4lj3a3MGBejv_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-DPP12', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.021|220.6|0.7070000000000001|15.93|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|oUNzJNJUdPu77_qAd9pOAUOQpMKu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.3|0.7170000000000001|14.3|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta02581a|oUcqd1BgOzt8uX19bd-PhtDyzetq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.072|211.6|0.7609999999999999|17.27|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|oUfxlfrH7q1sgnULPSUUk9hMwFQy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.878|175.0|0.545|8.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2019.06.015|oUiaoZvdk6ueAxmIkJfyUPQXqRDn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|198.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|oUl51KRIcf4XSU4Z26BLDMLjGxQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C848Cs3H2048I249N138Pb100|Cs3Pb100C848N138H2048I249Br51|(TBA)0.5Cs0.03FA0.4MA0.08PbBr0.51I2.49||1.21|149.0|0.495|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|oUntRz_Up_25NZcSFQcIXn31Awr7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.5Cs0.03FA0.4MA0.08PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.01|208.9|0.578|12.15|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', '4-dimethoxybenzoic acid']|bulk|https://doi.org/10.1039/c9ta11744j|oUp2Pu7w_NS5WUycpmTbriRL8Kqc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.7|0.65|13.16|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10092f|oUrNJt3AGquaZOauHueiNZ8PJVal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.5|0.68|14.54|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-c', 'Ag']|['NiO-c']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta06875a|oV6je2bu_B_VgO7hXQiXs3E6yDHN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|177.0|0.561|9.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1d', 'Au']|['TQ1d']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|oV8XaRLmkfcIIIPsWKHo8bjOMEks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1d', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|201.6|0.41|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4MeOTPA', 'Au']|['BDT-4MeOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900202|oV8qKsiHtHznc8dqEfJT6zYfilVq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4MeOTPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|210.4|0.82|17.98|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16124|oVboMZ94xkRek4gMuI9uA1gdf68w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|172.0|0.48|6.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.03.045|oVcbykQQlu8Kxt17FrLPMECGN4GX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.056|203.8|0.638|13.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'MoO3', 'Al']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|oVdpBzgX2ayMQTWHaENZLqq1e9Me|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|196.0|0.67|13.99|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|oVfAYucNKvEHsk4IwgRpgMVoL9CM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.132|217.7|0.7609999999999999|18.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7EE03654J|oVjrHJWzAm3Przj-2q5YUyxkEHvJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6800001791403176|1.179|198.0|0.765|17.86||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|oVl3oKP_I3P_y0sn6nAiqcUHwsbz|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.8|0.72|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|oVvX1EPFj5skJALcNtCvtHoQt1Id|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.003|223.0|0.8079999999999999|13.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b02042|oWCIUTgQZU8qgyT86Ifv1fuVMfuf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.029|185.38|0.624|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphen Oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene oxide']|bulk|https://doi.org/10.1021/acsenergylett.6b00672|oWIxRWKaYjIacBQJJ8wu-w6kinVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphen Oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|174.4|0.599|10.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00220c|oWblBHBL3xhwXApWyKIwkqB2Zk3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.236|0.7000000000000001|0.27|0.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|oWlJkaVxIOkXyPd8T1as5V5uGOWa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.706|177.0|0.56|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|oWw4WXHoLgvc_-IhEu8OXHSzZ7kk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -Br5C98Cs2H504I295N182Pb100|Cs2Pb100C98N182H504I295Br5|Cs0.02FA0.84MA0.14PbBr0.05I2.95||1.013|213.0|0.7090000000000001|15.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2019.10.101|oX10uawiZechFVHkC4bHsj3YfYio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.02FA0.84MA0.14PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|156.0|0.606|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|oX3cZHt3E7zZATu0mu98OMlfKdoQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.482|4.74|0.374|0.08|['SLG', 'FTO', 'BiFeO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BiFeO3']|bulk|https://doi.org/10.2109/jcersj2.15322|oX6VqczZ6ZH9zHkQkr6qDWJlzkjE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BiFeO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|1.8000001919360546|0.74|34.2|0.51|1.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c9tc02181g|oX6cKVTTuAXWilRh3XH4LYVryTL8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|147.20000000000002|0.82|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03413|oXZT0Ijnx_eUJd56QP4tb_jUx2Cw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br39C100H517I261N183Pb100|Pb100C100N183H517I261Br39|FA0.83MA0.17PbBr0.39I2.61||1.02|240.5|0.7609999999999999|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b10979|oX_aXDwRERPP0iJ6cKsB9oaHVMGd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.39I2.61. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|230.0|0.774|19.4|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|oXgCt7wp5pDQBB6DJdRs7vXlTjJo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.6000001706098266|1.15|214.0|0.6629999999999999|12.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b01332|oXl2GlsDPBiNrKtvxfwAQPTTKbBf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.5|0.79|17.13|['SLG', 'ITO', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsanm.8b01371|oXvvKV7IW7ARugVnufh9-2vczHNF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|176.0|0.69|9.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp03073g|oXyMEPOTsPDdmbXbir9Tr50B7Jey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.442|71.0|0.8390000000000001|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']|['CuInS2@ZnS-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.202000199|oXyjSuh7IdofrARMjuzA26ZOv6Gy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2@ZnS-QDs', 'Carbon; LPP']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|70.0|0.62|3.5|['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2BaSnS4']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|oY1QhLir_2Ui48TGh4vlF_Wq0PZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8||0.97|188.2|0.731|14.0|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c9cc08102j|oYO8Vy_h_WHnO1tY6Hyrj6H-ju-s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.13|224.0|0.79|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVDF-HFP', 'Spiro-MeOTAD', 'Au']|['PVDF-HFP', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|oYP13TLW8wcwSrhuBr7U_rDNKJSe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVDF-HFP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.11|240.5|0.75|20.05|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|oYjPIL2TjftMsNbfdnkYAAlofUfc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -BrC19CsH113I59N20Pb20|CsPb20C19N20H113I59Br|Cs0.05FA0.05MA0.9PbBr0.05I2.95||1.08|215.6|0.7020000000000001|17.37|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1142/S1793604718500911|oYjRn9iqdjCMmy9cmXdrupdXWBzT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.05MA0.9PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.812|179.3|0.527|7.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|oYjotGPylZgUs8o78SLfX5C5aB23|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|194.61|0.69|13.84|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|oYkldjCIB3Jb56YqCd5hfnatGAds|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|225.6|0.638|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|oYl09I-WBQzcd1IjlQuxkF9VDmIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.01|202.3|0.7120000000000001|14.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.027|oYp6cfNxf1S4jxSDkYBSY4HwEdZx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|179.4|0.66|12.44|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr05974g|oZ-PcMOVJyQyHTPFIJr4zV_9Bwb-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|34.0|0.37|0.16|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4941217|oZ8kG8PSStd7n4cQUE5QwwMFEzyf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|100.5|0.504|4.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|oZdLccVjOKHnpcr7epI9et8uCK73|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.84|151.0|0.66|8.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|oZgE_a3gxwx2udk1aRwLZA9pCPpt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.104|232.0|0.82|20.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|oZuuBfUMwbbZ_AfzNQ4WfMzgXoZ3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|213.7|0.74|15.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|o_8ki6YYO5dAbujO0OBeaOzjKnvO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|227.8|0.693|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|o_E_39ifaDH5O1DhJ5rtGQzjpmc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.6|0.72|14.5|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|o_HJ2QnscTqT7UexRC2lA1W8GQId|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.034|o_NUDTFLbK90InW2crEZKGfW5EsZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|187.7|0.581|10.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-409', 'Au']|['SGT-409']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04662|o_Nz1HWIM5pzEUTF4cs7fv-fj1kw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-409', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|135.0|0.547|5.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C5EE03620H|o_bGXULRZF0AItq6eE6bhRbDny6e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|214.2|0.684|13.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PcM-Cou', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PcM-Cou']|bulk|https://doi.org/10.1016/j.synthmet.2016.06.003|o_hG9RYTlhgIBWSNuxDWe1ZLNg2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PcM-Cou', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|201.0|0.73|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|o_iWEAoiaN6WGedkj1LZ4we2gLbj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.26|146.0|0.747|13.09|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-c', 'Ag']|['NiMgLiO']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta05802h|o_pZuOxHUggEpeCIDBxfof0rHbVO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|180.2|0.609|9.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|oa-epTNpQB2EUYz5NnsF-b5iSCxj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.84|101.5|0.66|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matpr.2020.01.587|oa4A5QDTBjactjJxPNsWq2AWi-bm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.5|0.71|17.68|['SLG', 'FTO', 'SrGeO3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SrGeO3']|bulk|https://doi.org/10.1039/c9ta03176f|oaAcKW3NQj6ljhfaUGtOVpZu90GP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrGeO3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag51Bi1000I3500|Ag51Bi1000I3500|Ag0.153Bi3I10.5|1.8600001983339236|0.66|23.1|0.5539999999999999|0.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|oaOxaY4VVZXVUCESdcwoDMeUAfTR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag0.153Bi3I10.5. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.06|210.2|0.71|15.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.03.031|oaZgDaK847DXMyUTFAXySmGOFvLr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|0.9|91.0|0.55|4.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|oaiT4AOqSRP3O5wSDeC0Q3k0lk92|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.12|['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|oani-z3WLt9onV5jZk8PYbxnpuw9|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.0|0.64|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.01.018|oayfuDNxTIPpLvIjg0tbjnZNZ4SU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.8|0.723|17.57|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603021|obEDZq_G9zcU8Zk7ZJou1dIxfJy5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.541|198.3|0.68|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|obbUELyCWmiKTm_AFtLexyvPXHT5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.02|183.0|0.741|14.14|['SLG', 'ITO', 'BTF3', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|obecgkXnxwvxal_prD7P1nOBaWjq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF3', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|110.4|0.34|2.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-8932-4|obggnAraa0wuGwdWk15kO_l3aIqC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.1|197.7|0.45|9.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']|['Spiro-MeOTAD-I']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|obxCKU37S-B6SUq9ZcnbOk5gD2i0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|102.0|0.66|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|obzboO87mir49y8FdpnbVfjJrotN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.11|210.2|0.55|11.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00028|oc2EUNo3_iZG2qw7gUA-WrGdnI2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.47|68.0|0.69|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO10', 'Au']|['SO10']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00077|oc9BLr4Y1ArXrn3AaRbfli6uAR_R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO10', 'Au']? The composition of the perovskite layer is FAPbBr3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.271|156.8|0.78|15.48|['SLG', 'FTO', 'Mg0.1Zn0.9O-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['Mg0.1Zn0.9O-np']|bulk|https://doi.org/10.1002/aenm.201902708|ocAH0XisHfFoeloh8cfItiwoQACH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Mg0.1Zn0.9O-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|168.70000000000002|0.72|12.06|['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['CuO']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.cclet.2016.06.021|ocFNOu3mWRt3noAZJV_95pAUTo2G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.098|222.6|0.715|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|ocJohykgCWpKFknO6Kdf6H1szovD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|185.3|0.68|14.04|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s40843-017-9130-x|ocKc5m0f7COAd2PCPas60BofLlth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.71|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|ocWP9C-h6ISlWSaFSGxHI7dj2cd8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|174.89999999999998|0.71|12.55|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|ocY1_qUbW88G6AK2PLzHjXVjlDKK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.89|105.6|0.5920000000000001|5.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/adfm.201806831|ocgEHWTn5rNn8WDzYrE90SkxKMWq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|202.7|0.73|15.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|ocvdZmfPAsIyGeeDrJLBle2-vcM2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.97|161.8|0.62|9.59|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'PCBM-62']|bulk|https://doi.org/10.1039/c8ra08022d|od0hEY5ayNDGdyA26a20IE0W4oxe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.3|129.0|0.6940000000000001|8.85|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'P3', 'MoO3', 'Ag']|['P3']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201907331|od4U-zxXg0YdRHrML_uMZDBQJxrI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'P3', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|223.0|0.501|10.6|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'NiO-c', 'FTO']|['NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b00548|od9jcsbrSApyFk6novIRwjpl2Pts|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'NiO-c', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br6C25H135I69N40Pb10Sn15|Pb10Sn15C25N40H135I69Br6|FA0.6MA0.4Pb0.4Sn0.6Br0.24I2.76|1.280000136487861|0.882|285.4|0.738|18.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|odBnoCgZGJpMvK7OmZY5KNLMIDSu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.0|0.67|13.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp; Ag@TiO2-np']|bulk|https://doi.org/10.1002/adfm.201500669|odGak-4BJYw6LW8RwNuntP4ca41q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp; Ag@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|134.0|0.66|8.2|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/acsomega.8b03629|odHVtOqLGMBryGELQZr2H-f_ONh7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.477|193.46|0.382|3.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||odPEfe3SznrcrWOuxGySgbgCX-wb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.638|87.8|0.365|2.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|od_RfBSNOrPd4t0bljXWjcGWOeEx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|198.0|0.779|15.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/coatings9110766|odb4OAdKwPVBJN397loq6oOI1V45|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|178.0|0.66|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms3761|odnoXIdT_2ec5ymbqtcOO3Kmr58W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|205.6|0.569|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|odtf_k7f4BNV2E5xmfSu34TpfSI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3|1.5100001610130236|0.97|216.0|0.72|15.4|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|oeGYbky1Ke1qQqh-z8_i3B_KZQE7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -Br18C15Cs5H75I42N30Pb20|Cs5Pb20C15N30H75I42Br18|Cs0.25FA0.75PbBr0.9I2.1|1.7290001843652438|1.203|190.3|0.756|17.31||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|oebPNgpQgWSgLwLtd6vhnl7tQAwn|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|217.9|0.711|15.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC', 'LiF']|bulk|https://doi.org/10.1063/1.4928537|oekPLmhbB0dlq2r012w2PMkaBZAK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|224.6|0.74|17.32|['SLG', 'ITO', 'Z7', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Z7']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc05410c|oepWRnr-AP95fJO8wzGby2zColEx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Z7', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C96H483I291N189Pb100|Pb100C96N189H483I291Br9|FA0.93MA0.03PbBr0.09I2.91|1.5500001652782691|1.1|251.9|0.708|19.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/NENERGY.2016.177|oerLlDwRPqfX_iBOlDhB2_UJFm8T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|154.0|0.55|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|oewzjSyU2JHvP3Dt7mcZVTZEsaNV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|187.1|0.56|10.43|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|of1VmYuq0RFyFnX65ObAqGAekTvP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|138.0|0.68|9.0|['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|of4T63TOotMP-Q_AhxSBq0peuqUX|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|212.3|0.795|16.04|['PDMS', 'PET', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu', 'Parylene-film']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee01944h|of9tJTFYaeWesT46kyV8kjGJK2HW|a perovskite solar cell with the following device stack: ['PDMS', 'PET', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu', 'Parylene-film']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|147.0|0.506|6.46|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800012|ofA8Eakfz3tTgFzybxYD2O7KPdeH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.904|180.28|0.757|12.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||ofB-c6NDaVA7CS7S1SAizp8-ke0a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|||0.47|9.33|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.03.086|ofDQiffltzL2BVO-7Yq-y94dqhxj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.095|222.0|0.715|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M3; PCBM-60', 'Au']|['M3; PCBM-60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03564|ofFmtk1ACCBEQQ3yYXA5-hT6GxT4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M3; PCBM-60', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|172.89999999999998|0.595|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst8010044|ofVFqVA9ExC43EPAQFHA4JyGURit|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|165.5|0.62|9.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2016.03.028|ofaWd5UcaKauKjR6mJuqrmAKhsjb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6509999999999999|184.9|0.53|6.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.010|ofcCUk7vkBQ2J3bqbpgQyRqLng3J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.05|209.1|0.71|15.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|ofq1Upcy-tIR9oo8btp4DU3rPE5o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|121.7|0.455|4.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.110029|ofz37uhn_I2faVBDVs0gZBjiG4Vj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|124.0|0.33|3.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']|['DR3TBDTT; PDMS']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|og7ZBGtrgOz8mNNAdZWe9HFsAA51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT; PDMS', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.0|238.1|0.52|12.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/slct.201701479|og7jXuSjZDfMe0mFPFBt2jbop5PL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.984|129.78|0.33|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z33', 'Au']|['Z33']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|ogBA2v6kimG8ISDvyKgdJH8OYQhd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z33', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C85Cs15H439I210N156Pb100|Cs15Pb100C85N156H439I210Br90|Cs0.15FA0.71MA0.14PbBr0.9I2.1|1.7000001812729404|1.17|181.0|0.774|16.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']|['PTAA']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.joule.2018.10.003|ogJn14PZnaUh4b-VxD_pGKm4-RtT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.15FA0.71MA0.14PbBr0.9I2.1. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||0.972|204.2|0.721|14.44|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02145|ogKgnc8jAtXVPtqgIb8K3KEPXOrF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.06|219.4|0.67|15.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|og_dr7nrtEVgb_jaTCqNdAo1hmGO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|123.5|0.61|6.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2016.12.050|oghQlPNOQLHkQsXkIubSUxaN72sY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|219.3|0.728|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b03604|ognI-u_kqcwgwY9ZT6JAKswMa9kE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.09|231.4|0.79|19.93|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604758|ogqA8IlQhLa9yRexhrnL8FNezj4U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|177.89999999999998|0.5|7.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01768e|ogqoGFRrRJlNpGKtYDG2nSWUxWJB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|193.7|0.777|15.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr02674a|ogvDt9O1X6iuvdUF7zw0MwQ3oPls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|191.0|0.75|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr03610k|ogyulXDnEFWoQPY0_pzWbtt7Mu_J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br21C48Cs2H247I129N89Pb50|Cs2Pb50C48N89H247I129Br21|Cs0.04FA0.82MA0.14PbBr0.42I2.58||1.12|221.5|0.779|20.12|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1002/adfm.201908408|oh-3CAPZV8ducCXuXdrdO4QY374r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'Au@CdS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832||||1.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee01624f|oh5Pg4EZsq_42AeijBBIIaVXE7ay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.863|258.88|0.657|14.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.3390/nano9030326|oh8lDvpisJMGWVycFzkL-mY_tT8I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|240.4|0.73|18.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|ohERqBM0-xDePv18F-yoxMnG8jim|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.46|68.0|0.68|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO9', 'Au']|['SO9']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00077|ohJO3hbvS-92HmhdRTbq0tRf7-9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO9', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.3|0.64|13.32|['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr05974g|ohKjMPDM-RQsdwvhYvhYT3ybTSYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.856|174.89999999999998|0.649|9.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-PheDOT', 'Au']|['MeO-PheDOT']|['TiO2-c']|bulk|https://doi.org/10.1002/asia.201501423|ohLgnCsqK3hQjs-MioNGZxmh69cc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-PheDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|228.5|0.634|14.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2916|ohNW2a5iyLwo5hNMKzPnGYIBcoP9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|187.0|0.769|15.28|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.06.011|ohS816LX9xMPPMicBEMMh9JsZPlX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.073|182.0|0.74|14.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|ohV9tn1NHQxpcrysZcN02UZgbXth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br5C27CsH145I55N44Pb20|CsPb20C27N44H145I55Br5|Cs0.05FA0.85MA0.5PbBr0.25I2.75||1.11|247.0|0.77|21.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01949|oi1Ran_6xuQlyWOnBVC07uylNagr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.5PbBr0.25I2.75. -CsI3Pb|CsPbI3|CsPbI3||0.8|26.8|0.45|0.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|oi2Qq3wiVedzzoAb_tZ-lfaIJqUe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.98|157.0|0.662|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201800710|oiBS2LuXi6mrgTJC2gHesI-ZgBMV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.3|0.67|13.27|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|oiH5tVmdW5rUxDCpccwiNE9DTY5n|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|189.3|0.578|10.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.03.028|oiHhBmeiC8osEKs2hyHKplkWYPlO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.0|0.74|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01760g|oiITrOyLMbPTLt0I5liczO7qJTqU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|166.0|0.64|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc09556a|oiVHKxqyheSb7xasDKivAornVlTy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|190.2|0.6509999999999999|11.5|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|oiXcgAkipwKSedUZ0bzS3We4AEl0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.6000001706098266|0.913|125.7|0.662|7.59|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/TED.2015.2413671|oiYC1wrp1b7p6ulCk5bl7lyKT3Xf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|212.7|0.765|17.67|['SLG', 'ITO', 'NiO-c', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|oiiQEbxschQjATmqay5aLC2G8s_U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.07|154.70000000000002|0.614|10.17|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900831|oirPosdQPvlH0J2hK0kLffw4_kSn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|218.5|0.769|18.01|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801715|ojM6wcTvo0ErDd_Njo_binYbiHYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|179.0|0.75|12.6|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra09691j|ojWwXl1qzJ5faAibAj02MEscFSS_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|224.4|0.68|14.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08536|ojipVvIE-dzI3W8WYbkGk9XK37RY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.752|145.9|0.49|5.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2019.104798|ojlx4VVjlXbQNitxXl0oANNTiShC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|225.9|0.695|14.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2015.2455345|ojncP_-kzYv5CYTTg4OXtgDlELNN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|215.49|0.66|14.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|ojqulh2xZOIQgYLR8_7_sZip7G8u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|59.0|0.71|4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-QDs', 'Spiro-MeOTAD', 'Ag']|['Si-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227065|ok-lJ9S9Qebi9VkAocKJGTY0y1mk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-QDs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.6|0.69|13.27|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|okL_Uz6rPRLCRLthk8IpQiv7imwN|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|214.0|0.72|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|okVBGGGACNzcC1zeYVIH--adzMul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|116.1|0.248|2.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|okWI8RSDGwPzd_2RWJeJtQYatyXh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|228.0|0.75|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|okfbrUYVZ190lDu3-z9gS_BFHY4m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.2|0.593|12.06|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b09063|okk1_eoPJEzaJeWeCLBfdEJuV-9K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|229.3|0.792|19.78|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201808855|okpH0BM41vZYELfuCvV2tmO8_K8O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|ol4R0y5jCQggcy9rLBga-p6WD-2C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NSn|SnCNH6I3|MASnI3|1.3000001386204838|0.3779999999999999|199.2|0.517|3.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']|['PTAA; TPFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10734|olHDp6zn9FFfQNBRBFKvoqn4Souv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA; TPFB', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|55.0|0.27|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|olLWwveLSjKchZpkoFxX0PVYb8ni|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.66|20.3|0.59|0.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|olQQyXOtVyAMYILMbMQQKnyJxKhv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.36|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|olaOA0GmvlQZ9PxHhK3n3sfd-x52|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.05|219.3|0.71|16.38|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201700118|oldFpMZsP2MSoMi8sK8llVrY6fq8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.892|126.6|0.49|5.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']|['PEDOT:PSS']|['F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|oljJzEQn5Y7rdkC5jPGfho5rtv8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|124.5|0.7240000000000001|7.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc03683c|olk--NtzTuuirAtqlhMdDzvQ6a0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C13H70I31N11Pb10|Pb10C13N11H70I31|EA2MA9Pb10I31|1.5900001695435149|1.023|216.9|0.5760000000000001|12.36|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|2D|https://doi.org/10.1039/c8ta07836j|olofb8QUbKXri9RzuTFzOgnAUPG0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is EA2MA9Pb10I31. -Br3C95Cs5H491I297N174Pb100|Cs5Pb100C95N174H491I297Br3|Cs0.05FA0.79MA0.16PbBr0.03I2.97||0.95|174.20000000000002|0.589|10.03|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900204|oludKgRAVNYLrjWlcR5e6CLlHg8s|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.03I2.97. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.095|226.0|0.71|17.72|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/adfm.201805168|olvurW-Y2B9x3ysQr0AsE-5q4Th0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7000001812729404|1.209|202.4|0.804|19.67||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|om4eXvjRcgrvptPcj9dSmBLfSDVH|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|228.0|0.75|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|omAFLnoxfRJL4jiHt7o_PFFmCWZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|214.1|0.614|14.54|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2019.04.094|omHetFxDy4Iot-8aBKCGr_8sllTR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.5|0.7759999999999999|17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15607|ompWQCBdV1dF2qKLJGVYYMv4jjJO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.8|0.779|17.63|['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'MoS2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2019.11.030|on-nwanabeUISWcy_WTOEeiahkwj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoS2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.4|0.7|14.94|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr01601d|on-siAEdo959FsgutjsGX_jxVU-6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|234.0|0.753|17.1|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr01927g|on1mqm99oO8u-HBKQwcArRnplYNc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|137.0|0.593|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B58', 'Au']|['B58']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7691-y|on6Zrs5ChdfoVhKf5tiTPGYussYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B58', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.86|117.5|0.62|6.28|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b23532|onCptSzzr3sdqzSFwP6PlHGtNPxG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|131.0|0.5870000000000001|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.12.045|onFJLRmTRYVw4GQsuAVjDh04EWvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|159.8|0.602|7.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|onHzZprfwvKZUz9EaJGTAbsQAUP2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.085|216.9|0.71|17.11|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.chempr.2017.05.020|onIpTegnZHS_um3-z5FCiEA_bkkd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|157.0|0.54|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|onT9ExVvepoq-f4Z-eCj6OQ8O2RD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.548000165065007|1.02|232.0|0.748|17.7|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|onXr31kJ-xtSSSMkiRE3UNnL4FFv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|228.1|0.73|19.26|['SLG', 'FTO', 'SnO2-c', 'Cs2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Cs4SnO4']|bulk|https://doi.org/10.1039/c8ta09382b|ondrcCV8tPatpreFa-mI754sEpWE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Cs2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|211.9|0.61|12.02|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|onknoKAza4ALf5uLUY_tlXK_Vtdl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.16|235.6|0.762|20.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201902472|onnsAvs6dSgCGWZti9isgKsFGbM1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|161.0|0.46|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|oo5BibQ_j0hieKBHo-mUz4umyXBl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|138.2|0.78|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10022|oo6l00cxNl1nP_Jp0znaJi-seYUU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|225.4|0.74|19.18|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|oo9iNYshI5oe3tjhvI5Cc9wjYrZB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|229.8|0.75|18.44|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1021/acsaem.8b00726|ooAxTCcGQDA7GB0Vh-DnT7hlzOSC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.280000136487861|0.03|53.0|0.25|0.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201401641|ooC9IcUa6dlDKxMK1HfsHHg-D5Q0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.809|224.9|0.621|11.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C70', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.09.078|ooJDnAgt8OtiKc7uz1aq_NZJTaqE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Zn|ZnPb9C10N10H60I30|MAPb0.9Zn0.1I3||0.92|148.0|0.672|9.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.047|ooN9zOjdtPfIhOGDP0WXSB2JimcQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Zn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.903|192.5|0.7|12.13|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|ooRsDhhemra57CBYpHsYVWmogHad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.741|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|ooSdNVqIek73ES-0qvJaYIKOlb5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5900001695435149|0.78|146.4|0.36|4.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|ooTOVx4miNhJoXhmj6xf-WzOree8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.0|0.5|9.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|oocbkutjQ67NFbaZTpd4aoS1d_xq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.5|['SLG', 'ITO', 'VB-Me-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-Me-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|op2UenKZuoX603ZedmiB7l5PoQ2w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-Me-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6090001715695066|1.03|195.9|0.713|14.39|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|op3BA0gHqXBnhRF3btPo3w4_ZQGf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.09|219.0|0.76|18.03|['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10994|op7kqGbhlVuI_6wSP363quOKVTmM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|opDirN4g0MFyVVtAAHfWyqSbVLHI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.5|0.79|19.05|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ra01186b|opGjcMBAAAzzcNNNlc8xkR3y16sY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|||||19.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-019-0400-8|opNRAziDxNdY-Glc80SomN7HrYwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|213.0|0.6829999999999999|14.3|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|opTerZzn2hysy8bJ_yZIos9mALWW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.06|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|opW4Kgh4-B7DUw3nZbtHNrGID6bb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|228.2|0.607|14.55|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|opX7DXxtGixQVkGtwGZgTmVC3qMv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|173.2|0.6940000000000001|10.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|opauHILwFRRMlZmp4dh1Q86D2o9P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.1|0.75|16.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00060|oplwJDydJeqnLLsmTXTRY_qnL-vv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|128.0|0.61|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|opsI1_F_8EZk5NulxLxWVmoATPSf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|217.0|0.638|12.68|['SLG', 'FTO', 'MoS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoS2']|bulk|https://doi.org/10.1039/c8ta12254g|oqJVSNT7WspaqQyD1glc_ZOw6B4n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.609|98.2|0.507|3.03|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Au']|['none']|['ZnO-c']|bulk|https://doi.org/10.1007/s13369-016-2339-4|oqfXRU9eb5kRH4ZvO1iQAkM_XGhV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.078|213.0|0.79|17.6|['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/advs.201700463|oqk4ykRSzN2zf_co5Y_9f0UADW0Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|234.8|0.76|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Poly(TA)', 'Perovskite', 'Poly(TA)', 'Spiro-MeOTAD', 'Au']|['Poly(TA)', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Poly(TA)']|bulk|https://doi.org/10.1002/adma.201905661|oqkhTDnHMMBVHiOw79L0g6H5EAer|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Poly(TA)', 'Perovskite', 'Poly(TA)', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.3|0.77|18.01|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201900106|oqpHVfiFXqNaOIjN1WlcTsNG7dbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']|['JY5']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|oqqtLFhnkR34aPRZCO9to4ilJLtN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|169.60000000000002|0.382|6.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|oqsXx78WU3TkNmVU8gOQcLO_vSpj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|233.4|0.66|14.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|or6ZLu5MXaV_K4LkwgNOCTcSDIaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.5400001642119578|0.99|203.8|0.65|13.11|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|or7YsG9AtmlqVp18X3oS8oTc30LV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.036|167.0|0.78|12.9|['PET', 'IZO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.015|orDKRsNtRxTpKnVMuLt8C_KplLg2|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.1|0.573|10.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|orPULBoRQrq8mU_yO_dJy7EmB-kh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C50H300I147N50Pb50|Pb50C50N50H300I147Br3|MAPbBr0.06I2.94||0.99|210.9|0.78|16.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601175|orUtJL570vFZ7NPpqqj_hBIVSi_G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.06I2.94. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.04|224.0|0.7709999999999999|17.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|orXemZVLOYi6G9jNUxDzBeKz5vxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.6|0.7290000000000001|16.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.06.069|oraKS8f5Nj7_TA5kl8jlzX3whNuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|orc_tdqs7gwy-EhpyHb3JVSppkbz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|87.30000000000001|0.66|7.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|orehN2EObGUFTqQvM6xfxVbX3gZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.7|0.736|16.18|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|orkVjZNBu40MXgRlCHC5JiF7NkDw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|226.3|0.7609999999999999|18.29|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCB', 'Ag']|['TAPC']|['PCBM-60', 'BCB']|bulk|https://doi.org/10.1039/c8ta10630d|orlnhRpA-jDI0S9rSt2RWleYjynG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.0|0.762|17.7|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee01969b|orpDTIPabvDmBixapGeHWeyGC6VW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7200001834055632|1.16|203.0|0.73|15.7|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|ors2p_wfAU0Nk4Uf7in-AaTUqfFi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|184.0|0.68|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.027|ortPU7ppoLiazXBi8tZv3VDLWArK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.952|154.5|0.693|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc02534f|os-1wWLN8cOlOgM9GU1WswpzY_AM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|os1BUnFWrxF89qR2vuShQj-IXKSF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|203.0|0.44|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.06.037|os1ZjiLo8Mypo2Z6zUG1mOhaESeF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC9CsH45I29N18Pb10|CsPb10C9N18H45I29Br|Cs0.1FA0.9PbBr0.1I2.9||0.965|220.0|0.6|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|osB39qPWsxHkp79WtMw4ai1QWxwI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'Au']|['PTAA']|['none']|bulk|https://doi.org/10.1002/solr.201800167|osEDYAUJKTKBM07M01jZxyShrQyn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.22|211.0|0.778|18.3|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|osSCB05QRIeoHgfADRX2TOuipZvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|170.6|0.693|12.06|['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01004|ossqYDqh8T2RIFbQQuqRI83ggzr_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.6|0.79|16.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|osx2WRiecyvRJUgRoJxNcjHZpMrf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.14|206.0|0.69|18.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|ot1x32rU-0SgLEUUnHOj3fbQT6N7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|174.3|0.65|11.0|['SLG', 'MSA-PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b03171|otKe5MDZxCagOujsP7wLMXAd9spF|a perovskite solar cell with the following device stack: ['SLG', 'MSA-PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'C60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|222.2|0.685|15.4|['SLG', 'ITO', 'Au-np; TiO2-np', 'C-PCBOD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np; TiO2-np', 'C-PCBOD']|bulk|https://doi.org/10.1021/acsami.7b11795|otLhsq0KY1AlqffxRDhkiqYIauC6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au-np; TiO2-np', 'C-PCBOD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.85|190.0|0.63|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|otSwfGky8sAnacTcFdQqxmHOjiFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|55.9|0.2739999999999999|1.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2014.07.039|otVEZND7HRQbTWgLGXHKfKlXH1vC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Graphite']? The composition of the perovskite layer is MAPbI3. -Br51C100H516I249N184Pb100|Pb100C100N184H516I249Br51|FA0.84MA0.16PbBr0.51I2.49|1.640000174875072|1.06|217.0|0.62|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|otWhjhfH5B-UPqEikEYjOEJ6x4LQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.05|103.0|0.64|6.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|otcTe9a4gXLYHEPKuf8bPpnkMtKK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C20GeH105I60N35Sn19|Sn19GeC20N35H105I60|FA0.75MA0.25Ge0.05Sn0.95I3||0.45|255.0|0.69|7.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.026|ote64F-I9z4nbAWoYdEg_Eh6cl4z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25Ge0.05Sn0.95I3. -Br3C11Cs9H55I57N22Pb20|Cs9Pb20C11N22H55I57Br3|Cs0.45FA0.55PbBr0.15I2.85|1.6200001727424491|1.01|203.7|0.64|13.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|oth-vb0yny7dyz2FMUYa5R9pPYmz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.45FA0.55PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2016.09.039|otpK-qxxC_q7Rbl41nR1hU04jPxE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|151.9|0.52|6.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.3390/polym11060980|ou2lprwJC8ibMF3QC74c650QyrUc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|134.0|0.7390000000000001|10.2|['PET', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/nphoton.2013.342|ou7vkPfD4HRuoGVP8hcpY6q8UDe3|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|164.5|0.6|9.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|ouA2U-EugyJE9fsQYlG5T26p39wV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|129.0|0.61|7.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Graphite', 'FTO']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.5b02124|ouDR-MOQ8cY13kbnc2cb6Mc9Btd6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Graphite', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|157.0|0.75|12.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/chem.201801069|ouI6P1f9ndmlTGo2vQaFUf5Msr2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.46|78.89999999999999|0.8|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|ouKy8yHY13d7Ih8KJwu3ckAJaydX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|235.2|0.711|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'C60', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201800174|ouSPeExvJaiOzuEykGTfgISFno5i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|107.2|0.655|6.5|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-23907-0|ouZJZJTUDmLFs7-riSNX46L2cwBX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|243.3|0.836|21.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']|['PEDOT:PSS']|['LiSPS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.073|oucn6PWvhrsT7A_H4j9V-p9X92oN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiSPS', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|139.70000000000002|0.515|6.66|['SLG', 'FTO', 'TiO2-c', 'MoOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'MoOx']|bulk|https://doi.org/10.1038/s41598-017-00866-6|oujsgIx5coRXaZdxOUGWKBlGoqNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MoOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|1.8899999999999988|0.452|0.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|oul5BXgFDVE8K3bMSfbsXUBtoVdW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.3|0.7070000000000001|12.9|['SLG', 'FTO', 'C60', 'Perovskite', 'F4-TCNQ', 'CuPc', 'Au']|['F4-TCNQ', 'CuPc']|['C60']|bulk|https://doi.org/10.1088/1361-6528/ab4f2a|ouq2Pba9GCCWOwgiAB5uI6mvUne_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'F4-TCNQ', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|200.9|0.778|17.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|ouql2HAi9EJqAouKTGpyzMV4bKNB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||||||['PET', 'ITO', 'Ag-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/adom.201801153|ouucIeqzKkQCaStTECe0lxWZ2YuI|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Ag-nw', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|185.0|0.64|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|ouwv5GiCe-t5ye5G0jNmswffqjXw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.15|212.7|0.73|17.92|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|ov5Zk-dXEP2Eb9TJA5qHXcqLZOA-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.829|184.53|0.715|10.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||ov5zbeARt94AmHeKaNcJ2MDUznGY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.98|231.9|0.654|14.86|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|ov9ifb-Szr9CqR-V69dyPIPt3qys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.5|0.6579999999999999|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2018.06.013|ovAlkm2AWmNN6uWsaytTNHUgeexS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|216.0|0.67|12.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4991633|ovFlI0TEmOjpYXhpPUHqLM1fwgK8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.2|0.71|14.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800593|ovGpRrJJuln9s2jWF7sueidSz9Pb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.96|191.0|0.59|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.7b00523|ovdj_kSIuFZmH3ZOT8t9N1Jzdvdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.022|10.6|0.69|15.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505140|ovqb6zwgjCwnjGtaSYiY7-RfhuC-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.0|209.5|0.63|13.22|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|ow-iKq902BOepmTfeRYCgrqpvgET|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|230.0|0.818|21.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aax7537|owLqfiSQndsHW58XKmDnBlIqygN2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta06766f|owSEFQRlzvMoU2ldvk09ZU0NCwig|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|214.6|0.688|14.72|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nanobipyramide; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|owTcPhS5RlWSKUNChpR9hd5GCL00|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||0.966|234.1|0.765|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']|['SFXDAnCBZ']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c06318|owru9SHnmFvAci4-NVS312RPLkN5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SFXDAnCBZ', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|200.1|0.72|15.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800052|owsxpEiV12iH8NXZuy7rxxYzQeqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.51|64.5|0.7979999999999999|7.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|owuxzVq1KNovWKdiUCrvJIGQWn2v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.92|168.2|0.69|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cplett.2016.09.004|ox7IejlVIqkssdGJXvBziQFv7BUY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|57.0|0.56|2.9|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|oxLSlachqrkLOjLPb5qt-GI67D0a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.10000000000002|0.713|12.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00008|oxMRoajlz5Yz6ySOEWcRySZ5g6IK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|140.0|0.58|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|oxODYjq50FDOZ9HMEIJApRi5RX9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|205.1|0.62|11.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|oxTENS79HfIuoFISLPUT4wJcv1Xl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.403|43.67|0.639|3.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|oxdcWZj2m6wnjwopy5vo_3gRCGwu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.9|186.2|0.75|12.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.073|oxiKrbutumhKraaDTv9OJSiSQgh9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|177.2|0.7240000000000001|13.27|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|oxkqNnAsGegAWS96_H7vWAsxnrbK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.09|226.9|0.71|17.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700073|oxx-soP6XM-q6yTW7Q8dmox9iVDF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|172.0|0.68|12.51|['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|oy0xFK91vSuwCjJTEEx5HVIOAnM5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|216.0|0.745|15.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08799j|oyHq2u2NQXKJtgG7ryWtIdNK3j6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.5|0.59|11.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4880899|oyPoEWGfPh0QfwOOUVmsYiV0QVKc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C96Cs5H497I250N175Pb100|Cs5Pb100C96N175H497I250Br50|Cs0.05FA0.79MA0.17PbBr0.5I2.5||1.03|203.0|0.69|14.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['NiO-c']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c8ra03993c|oyS21MfRwPOeQaFU2YuQ48L56w5p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|oyZ5fCd-JGCW51GPfOcp1PI0BY2K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.3|0.63|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|oyZfcCbezpWNb9Z59iHCGTnTGz0_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|120.0|0.66|7.8|['PET', 'In2O3', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5ta00084j|oyb9GFoZOGtdTq6ktnDTf0kpQH3P|a perovskite solar cell with the following device stack: ['PET', 'In2O3', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|122.8|0.684|7.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|oyiJb_Dg5cRzJna0RINIXtaN9gdY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6000001706098266|1.074|224.4|0.75|17.61|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.04.084|oym0wN7Weoqg5N3hHzSYbUSmgndq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|178.29999999999998|0.8|13.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO']|bulk|https://doi.org/10.1002/pssa.201800419|oyw3VK1CuEK_ZpkNo3qiD7fWLkEl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|178.70000000000002|0.54|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.02.011|ozCQUrGgnMY6__1IqisHFmcMAs4k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|202.0|0.5|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.223|ozOpAA6Au9tG_UcbhH17DXjim4lo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|233.1|0.7609999999999999|18.6|['SLG', 'ITO', 'CuI', 'Cu@CuI-nw', 'Perovskite', 'PCBM-60; ZnO-np', 'Ag']|['CuI', 'Cu@CuI-nw']|['PCBM-60; ZnO-np']|bulk|https://doi.org/10.1007/s11426-018-9386-5|ozU40rQwT03cuDuO7cCcEUG4rXMM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Cu@CuI-nw', 'Perovskite', 'PCBM-60; ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.0|0.695|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra14587b|oz_NDr4FbiPX7OiMMw9WMvzCOK-k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|199.0|0.759|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC']|bulk|https://doi.org/10.1002/adfm.201504041|ozgX8mR-VY9fsUx87Y5h2LpFgX1X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|230.1|0.39|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|ozkWoePQxvSHudgjfP_Km1Ay3gk1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7390000000000001|202.5|0.456|6.82|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600315|ozkpcycWtAEv_S-G1OaM1xXbOEwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|197.9|0.67|13.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|oztGD5ukwPnVvtXfAjn8n5ImkR7m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|190.0|0.58|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|ozy4XkNxMFcqpbCN0AZxy6Man3A0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|168.0|0.731|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PCBC']|bulk|https://doi.org/10.1002/adfm.201504041|p-2NJ8VC1kV02JVkbhVXgaevANKz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PCBC', 'Al']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.044|211.0|0.516|11.3|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adem.201901217|p-5ORAZXgNa0sf22aWznCsYQ5Zyd|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.108|228.8|0.722|18.31|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnSO']|bulk|https://doi.org/10.1021/jacs.8b11001|p-gSvGmrnbLNu5fb5eSrHZwJU05_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605693|p-htJTExYhQIaRmnosx7pgZ_7yAm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|188.9|0.64|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|p-ssfLKSh2yIPwECKHibtkeptxgR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|227.0|0.655|15.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc01224a|p-zhEcxEDH3GXXXb0Nz1uQC0nsdx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.06|181.8|0.6729999999999999|12.94|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|p04MDcEOSGTRpViKY8OBfK6ED8rN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|216.0|0.72|13.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|p0AuEy8-iaEKZnBmJS-N8o5yNobp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|201.0|0.7490000000000001|16.4|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IO', 'ITO', 'Au']|['Spiro-MeOTAD']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00254|p0BdMgjxD9WCpTbhiEJnppW26NKG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IO', 'ITO', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|216.2|0.72|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2019.03.024|p0DjKAQOuvCcvsbE70A3JyYx0-HT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|204.0|0.705|14.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acsaem.7b00194|p0FeJPJr2e0WcAZc1McsTqzdToB8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.843|151.8|0.4039999999999999|5.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|p0NWin34sW3uU4h7AHg9Au-e8v31|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.0|0.64|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta03180c|p0Yw9ZZ8YbUaR7X91_l3leYyCmZG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.061|195.0|0.494|10.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc-Cou', 'Au']|['NiPc-Cou']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.01.004|p0fqE1bxe0XkcnydpPJad-hsgdrX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiPc-Cou', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|187.0|0.64|10.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Carbon-nt; PEI', 'Ag']|['NiO-c']|['PCBM-60', 'Carbon-nt; PEI']|bulk|https://doi.org/10.1021/acsami.8b10253|p0nElFNyRvzh9kVLNr4BDbjQCWbk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Carbon-nt; PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.11|242.0|0.777|20.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201707583|p0ocYr1m_U2RFzKaEz5MLFn1Xgu_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br3C2H11I3N3Pb2|Pb2C2N3H11I3Br3|FA0.5MA0.5PbBr1.5I1.5|1.8200001940686776|0.81|24.0|0.18|0.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|p0rgqKFNSmfL2YQH94iIzl8_5Q-N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is FA0.5MA0.5PbBr1.5I1.5. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7200001834055632|1.14|184.0|0.662|13.9|['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|p0u5McoP2y8bdJxp2qbymYExVjdL|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.0|0.743|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|p0vzWn3zY_C32ZEotUjQifvqLyWF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C6H18I6S2Sn|SnC6H18S2I6|((CH3)3S)2SnI6||0.48|200.5|0.53|5.07|['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'Z907']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|p11tqr8BLv9nkY4iVOrswSMZbQi3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnI6. -CH6I3NSn|SnCNH6I3|MASnI3|1.400000149283598|0.373|240.3|0.613|5.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|p15r2YPXkA0ga28TUZoPEJtUNA_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.079|152.4|0.721|11.42|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|p1TQKrEAJ_t7av9f04kskbVKk0eX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|27.4|0.51|1.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08418d|p1Tx8RQpYX9aqqfXPFh0WKUBxb_K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.1|0.62|14.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CGS', 'Au']|['CGS']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06088b|p1VnS6RkJwLZPVkHxxYlUwO6nboc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CGS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.057|232.0|0.7090000000000001|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtener.2017.07.010|p1WyXQKPSgz3GQ6apM19ee9449s-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|45.0|0.355|1.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|p1Xf2z4KnoKSeNWMBoDWzGN6ag0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|227.0|0.7929999999999999|18.9|['PET', 'ITO', 'PTAA', 'Perovskite', 'Fluorosilane', 'C60', 'BCP', 'Al']|['PTAA']|['Fluorosilane', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201600969|p1a-UVpfs6cSLod85o9yFvbZ_EYL|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTAA', 'Perovskite', 'Fluorosilane', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.98|225.0|0.76|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|p1bzx1K8ZDx4wN96QyR43PkANgYg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|206.8|0.608|18.15|['SLG', 'ITO', 'NBP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NBP-BC']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|p1ozND0jviPuwo462hfyY86NkRHP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NBP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|216.9|0.728|16.07|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|p1zTAFykjDRduJttiIjLbtsyp_PP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C3H10I5NPb|PbC3NH10I5|(PEI)2MA2Pb2I10|1.950000207930726||||4.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|p2-O_hWSosRuKXaE2vl4nWwFB9Fj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA2Pb2I10. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.04|222.5|0.792|18.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|p27sVUW7qzF57tWRLq7Enxti-UKz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|165.0|0.68|11.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b04338|p29Tg2I_pHDlft0c2jGho_ttBZQC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.92|77.2|0.768|5.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']|['PEDOT:PSS']|['PCBM-60', 'P3HT; PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b09758|p2CbQvZK0MbRQIOVnJfihJAlyhOu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3HT; PCBM-60Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.017|p2FbJgcDXyyPk-k7GWLFJgNmi2bY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|222.0|0.653|13.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|p2I10GLyfi3yvVXprooW7Y5B4hev|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.141|201.0|0.8|18.0|['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1038/nenergy.2017.18|p2Q-DMuK_lBjKov0K7QtVfvwjY4w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||1.17|231.0|0.738|20.1|['SLG', 'FTO', 'TMAH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TMAH']|bulk|https://doi.org/10.1039/c9cc00312f|p2Q3Km5RD4b6PlBzMdGomcpUK55C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TMAH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|166.1|0.69|10.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.09.018|p2Tr6bXhxKinklYlwDQ-1A4BRH4A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|223.0|0.69|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep43979|p2UiuU2HWKy-Zc9zaOZ6zYEGz0J-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|76.0|0.62|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; SiO2-IO']|bulk|https://doi.org/10.1021/nl504349z|p2WHSn6Nq4V5CpwhMb0ftvlIZ3vG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.725|30.7|0.741|1.57|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|p2b0PAqFIhE5NaZsBCh5YCBtcuED|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.13|240.0|0.72|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06709-w|p2mMkZZJs_21qCBjsbzHCjXAvljG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.852|188.61|0.8220000000000001|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|p2pSDkt-PXpvUO95u9-afcYcV6nO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|50.3|0.51|1.86|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['WO3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8cp00645h|p2yF94etu8vnvqOn4GRWPY4Naz9D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.0|0.449|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|p3-MbCqM36bqWzL33Zqv5dc8WoVl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.773|92.0|0.69|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|p36Ht012P4Kg6z1V2MrH1p5eSUho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|239.0|0.5|11.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-9382-8|p3_MG_AVGia_3rf5El8ulXC1Su4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|193.0|0.73|10.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600386|p3fgWVJzOJvipqSb7iZBvuRzFfp9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|155.39999999999998|0.742|11.88|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']|['PEDOT:PSS']|['Zr(acac)4']|bulk|https://doi.org/10.1039/c5nr06234a|p3ktN3ad4mgn4U3eQaJENqAKyVPU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C7SE00545H|p3npB3Dng9ktesIEBIy88hRjz-md|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|181.7|0.563|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|p3yAe73biG9Z-7IDyhQnygn61nBZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|181.7|0.5|7.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj03089a|p44e0bWGp7HI8eiRj-04-84NLNCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|172.95999999999998|0.726|12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.5b01917|p4AGIdghSKh8lrn-zLdobTZZecy9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|179.20000000000002|0.7120000000000001|14.16|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|p4BBBpWWaSanLKUK59lUrRajeD-g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|204.0|0.75|13.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701456|p4E6cKj37wWGySBz3mvR8TyBeuEQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.07|131.6|0.5660000000000001|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|p4K7w448kMtI8RuIwdER8pt1sLKn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.091|233.5|0.738|18.81|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|p4_B2O0iXl035KcijQeEnXFL7jz7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8190000000000001|118.9|0.349|3.4|['SLG', 'FTO', 'CoO', 'Perovskite', 'PCBM-60', 'Ag']|['CoO']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|p4__6Lgijccs9I15VDpTl2cR-yY6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|182.6|0.619|8.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|p4hvR7ZZ9shGhVOCaKZ1d4xq4BHC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.104|215.2|0.68|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00367f|p4jkUtrCCcktpAtLfD40J90f20Oj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201702090|p51SSmwxrr1pNEU76uxuwXLul7r2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.89|128.5|0.64|7.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11082-016-0819-0|p530gdmLPtMpW6l8-p5ivwIHoJpR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.05|221.0|0.68|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|p55Ihr2iU7eA4Jae1nVuD3NCeR6h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br27Cs10I3Sn10|Cs10Sn10I3Br27|CsSnBr2.7I0.3||0.2269999999999999|13.2|0.41|0.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|p5AfthIDsTOlssGLHCftyokw1VvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr2.7I0.3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.0|0.76|17.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201604153|p5FI2S4dfNMMUlKGKKsqfDOBYxsq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.1|0.7490000000000001|18.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|p5N8ZBFpsAr-g4R5c4TkyBK1zFqM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|227.0|0.79|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|p5QIr_Ccm9CUesTGnc7jMevIOSIE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|204.7|0.655|13.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.038|p5ST33m-kNKPKgZQwqx_jxiFKRdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.5400001642119578|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b01054|p5SkM_UloXec3pXy-Y5CQSFqGVHU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.07|201.5|0.75|16.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc04851k|p5dkK0H2F9HTrZkhFVwN5AUuckF3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|138.0|0.608|8.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsphotonics.5b00119|p5lPdvgqwPpzDGoIXgTGPPg8RUWB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.728|50.1|0.377|1.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974797|p5m-E0OuNu9NIOZEIin-q8GK2NVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.4700001567477778|1.08|205.0|0.768|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']|['PCPD2FBT:BCF']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800390|p60ZwBH4-JiWW3PkBVyHCkFjfIpL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCPD2FBT:BCF', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.13|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.143610|p66xGjoH4mj_OYr5lBYYywEwpGuh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.0|0.675|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|p67f2hv0056rPak0dIf92oNOuG36|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||0.97|101.0|0.27|2.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|p6Ajd_R9jnBr-ZTY4WXJ4R1b2KC3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.2|0.691|15.86|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssr.201800505|p6K67odcuTQ3uuETeTNurVTYRMsk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2600001343552385|0.46|200.0|0.392|3.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|p6MIk1xHH_F5o9sBBWBMoXXg52EU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.81|209.7|0.67|11.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|p6P5ADl2d8YnIIN8Iu9WG2YwPPFB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.9200002047317917|1.05|170.79999999999998|0.48|8.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|p6__nSnoN38qKIJ55hz49Ef-_lbt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br50Cs50F89I11Pb50|Cs50Pb50I11Br50F89|CsPbBrF1.78I0.22|1.850000197267612|1.01|149.4|0.68|10.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|p6h7NHQxxhJxl4xIh_1y2zi7sA66|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrF1.78I0.22. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.8|181.0|0.38|5.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900172|p6nF4716fHMgYI3C3M_lTRiEzFow|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.04|203.0|0.69|15.6|['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60; PCBA', 'C60']|bulk|https://doi.org/10.1002/adfm.201905883|p6pP4GgqeXfN50oOnlHelCd0eNFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60; PCBA', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||0.98|156.0|0.75|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|p6s26yU2431MQjbIUO7iwKU-rHOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|204.0|0.7490000000000001|15.7|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1038/nphoton.2013.342|p6tk2klFJ2xk4grJ5ZKGTTdcJqKe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.978|216.2|0.7709999999999999|16.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|p6twu-cUExj9wxvtqjl2o0ek1_c4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.14|220.0|0.69|16.74|['SLG', 'FTO', 'TiO2-c', 'Graphene-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene-np; TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b03329|p6yeq007QdlWFlIavWjHFV_iy3Ez|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|193.5|0.562|10.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|p75qXB7pdWxTLho_2Mjt8usgGUe3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.118|228.1|0.764|18.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900294|p77AqnH5sP2tFAV92GSPQt2BGQxT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|125.0|0.55|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|p78LnFhkVWP9zFlj4Q1M4HnHw0bn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|158.0|0.456|5.0|['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdS']|bulk|https://doi.org/10.1117/1.JPE.8.045501|p7BiK815K_bIIxLzBbjvfxVaVtw6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|216.9|0.631|13.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01038|p7D9in4ddkgPwHFM98LH97p4wMrN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.977|171.0|0.78|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|p7Luupr8fpaDQgru4iDeb43VFYWI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'MoOx']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|1.01|175.0|0.68|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401616|p7TpxFmkWv6vXWAcDnI8xWravWEM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br9C19CsH97I49N36Pb20|CsPb20C19N36H97I49Br9|Cs0.05FA0.85MA0.1PbBr0.45I2.45|1.5900001695435149|0.93|194.6|0.331|6.86|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'TiO2-np', 'Ag']|['NiO-np']|['TiO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01507|p7Yh9KxXimEw8JkJRCHyeP70CJpZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'TiO2-np', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|138.0|0.31|4.1|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|p7dePD88WHLfK1mXINfHBgUTuypK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|183.9|0.6|12.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsnano.5b03687|p7e31ZPiNw85FCseE_vF2_t9Z3bW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|199.2|0.61|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8se00059j|p7fuY0_YkAJ4f-mB0UWtWeaauXJS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.05|178.6|0.773|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|p7j1IPGegbOAE3_v7md-7zqmQ4jP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.981|187.0|0.72|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|p7m1HFByz9TMrQj8qnjiRz3g8cpO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/science.aag2700|p7tl7lxAJAimZX1KPjrS-tvaIKzq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|216.3|0.728|16.45|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900041|p7xw4h5d-ZtFXLmHo1RXTTWUW332|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|234.8|0.62|12.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|p83OH4HZf-UIHgxQsZCtdQ3P2_VT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.07|236.7|0.74|18.66|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|p8463Khiqn5l8aKkw2cDSG7lAtQM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|211.3|0.715|15.51|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/C6TA05095F|p86i9zOKM7lFhopgobB4zgUyKPAP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|1.04|0.746|0.06|['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PTPD', 'PFN']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|p8NX5K11S-_3EuzMma6kwYUhTHXS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTPD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.115|233.9|0.773|20.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|p8gRRm1At8TMUm-5PNJ31_0Tso0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|159.2|0.7509999999999999|11.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'CTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'CTAB']|bulk|https://doi.org/10.1039/c5ta09080f|p8mzDbETpd7NBHwAuTNzLYv-d3Sa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -C6H24I7N3Pb2|Pb2C6N3H24I7|BAMA2Pb2I7||0.85|144.9|0.4429999999999999|5.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.electacta.2017.04.067|p8uUeteJFkpu2doL_oKb7FvQuVVn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAMA2Pb2I7. -Br180C380Ca20H1957I1020N703Pb400|Ca20Pb400C380N703H1957I1020Br180|Ca0.05FA0.8075MA0.1425PbBr0.45I2.55||1.13|200.0|0.72|15.2|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201900834|p8wmqFcdXg2Q8a23ygF7HKkZGgHX|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|179.1|0.7120000000000001|11.53|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|p8xwoJzAtiV6XqUin3vf67rMvhYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.3|0.759|18.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.06.069|p8ycbP0iHlnyaeqJFmafZ1Lxas55|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|186.5|0.639|13.46|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7nr05416e|p92m2pBn8AmyYM6KTB9o06stdozT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.7|0.74|17.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adfm.201604944|p9QVPY2ZrtSY4mUP3cAgMtulwLTM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|187.7|0.6629999999999999|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|p9e9QyrkYrxxOlc8AQ8dpKt7ZQ6r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Ag']|['P3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501392|p9khmFcm41x_mrteoZrtb9ctHYRu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|152.0|0.63|9.1|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|p9qAwlCmI5dEM5Ma3hyAI9FqSUbU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C21Cs2H108I57N21Pb20S3|Cs2Pb20C21N21H108S3I57|Cs0.10MA0.90Pb(SCN)0.15I2.85|||||17.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.034|pA1zi9aKHVO-EbnujdhNJihxYr6e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.10MA0.90Pb(SCN)0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.3|0.76|15.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|pA4RyHNFl9uh2XrU8jJYkIIcTUza|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|188.8|0.69|13.67|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|pA5ret36cNT3ZH7RS6XBftZY9TKt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C25H129I63N46Pb25|Pb25C25N46H129I63Br12|FA0.84MA0.16PbBr0.48I2.52||1.044|232.0|0.75|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.034|pA6SxqsJgJ7Ndrtwv4mMRlYxSFIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.48I2.52. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.13|184.0|0.6|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smtd.201900652|pAC5MXnUBO4KcmnBsHdynmR5hgem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -C100CaH600I300N100Pb99|CaPb99C100N100H600I300|MACa0.01Pb0.99I3||0.98|191.0|0.684|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jtice.2017.09.004|pAKNhHBs7LNkyXvdOuLWrzHCZdnw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.01Pb0.99I3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.89|203.7|0.57|10.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|pA_7Sx5TbjsUHLzE3fJn8o0im8lG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|175.6|0.5|8.01|['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.060|pAybdNKL6C022RQadvEmP3aadm3n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.000000213262283|0.52|0.4|0.452|0.009|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsami.7b14735|pAylPcukZ-o8-tIUQ22Dp3pFdHQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -CsI3Pb|CsPbI3|CsPbI3||1.09|203.4|0.77|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc04851k|pAzJfJTLcmy8fC-mMKXM9ShBpqaW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.93|151.7|0.69|9.51|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1246/cl.150814|pB4DOuFKrT3vIzw64OUtjcB0KUFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|154.0|0.36|5.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4963760|pB8wjx6XOtDTB4a9S8sjzXcU7ijd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.027|214.7|0.6920000000000001|15.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp08022g|pBC9xtZqw0CDFebsDTn16vnmT2rk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.7979999999999999|180.0|0.5|7.18|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'MEH; PPV', 'Ag']|['MEH; PPV']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-016-5942-y|pBOsYJa-rgTTMknPCyfEF4X1N6ur|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'MEH; PPV', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|151.5|0.61|7.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10570-019-02724-2|pBP9xq0k4f0ue6KGpiYZdeLq29k5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag2Bi2Br11Cs4|Cs4Ag2Bi2Br11|AgCs2BiBr5.5||0.75|9.0|0.682|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta10422d|pBRDhYuJ4X3cjKlJb7JFIol_c4dv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr5.5. -CH6I3NPb|PbCNH6I3|MAPbI3||||0.72|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA2', 'Ag']|['HA2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5sc03569d|pBeSTs830BkAQynpH6NSvosQgOdN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HA2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1||1.09|226.0|0.7|16.62|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-QDs']|bulk|https://doi.org/10.1039/c8ta12561a|pBgFo7_iJh-hjnHz6TbIlVW4l7an|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|pBuoTG7smatlGonWNx3SPYoYtn_h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|171.0|0.71|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|pC8VN6ErQv9x2ZGmVsQaXpwvJ4d8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.976|190.0|0.72|13.3|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|pCDUu925o2E5hwC5PPtHbaFdGczz|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|186.1|0.64|11.84|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|pCPN9wxOIIY37ICSbLZjyntCmI6M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.195|225.0|0.77|20.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201809180|pCRvtdQH1VEaunL1a6CVrEWAbt9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.103|232.3|0.765|19.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|pCfphFD1Te4EBD1NZvcuBAQdt3UY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|201.6|0.677|12.21|['PDMS', 'PET', 'Au-grid', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee01944h|pCpP3x21rt_evKk5mwvPtZiWA79u|a perovskite solar cell with the following device stack: ['PDMS', 'PET', 'Au-grid', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.6|0.6679999999999999|15.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.02.012|pCpWcDK208cnGCVqbww__c1dOznu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|235.3|0.76|18.23|['SLG', 'FTO', 'TiO2-c', 'Graphite-nf', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'graphite nanofibers']|bulk|https://doi.org/10.1016/j.solener.2019.09.065|pCrtpqIsoiSIB4rBbOb3EIeXt68F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphite-nf', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|239.0|0.45|9.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4967840|pCtYTzRRSsD7fQEWhfjFluhtgTJA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs2H517I249N183Pb100|Cs2Pb100C100N183H517I249Br51|Cs0.02FA0.83MA0.17PbBr0.51I2.49||1.12|185.0|0.61|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-019-00691-9|pCtwX8Y1Cy0I3XdhrYwR4Rk3msiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|190.0|0.61|11.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|pCw68Vk29CAKfyD-3uxi82xVc6r6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.6|0.823|19.8|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|pDGX7eQDFE-zvBTX-a86QLluCafe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C59H210I65N25Pb20|Pb20C59N25H210I65|(PEA)0.2BA1.8MA3Pb4I13||1.12|166.0|0.742|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201901566|pDLcdE8hDeFxIKhaMpE9V8l4lD2F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.2BA1.8MA3Pb4I13. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.04|220.9|0.6579999999999999|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00457|pDP0KYCEAAyd0t2Gx5sTeL_V6qzH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|224.4|0.748|18.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201802040|pDUi8iE7vD4JQhC6dmutJ5b4_WnK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.84|223.0|0.76|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|pDYNwwpShMHuTsCnejkEIsOzMwyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|172.0|0.68|12.4|['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']|['DFTAB']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|pDZ2wCGQ5GC8Ymd7HD_nhQWYNIcz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|205.7|0.6729999999999999|14.78|['PEN', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.060|pD_C9BOSU3ZgsNZ_CUnnAjscroP7|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1740000000000002|218.6|0.76|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|pDdp6G9_0lxQdqH7eSgeSlMCMT5z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.92|176.5|0.71|11.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|pDmQC2Sz8kQYLQSwyD4Nr6pN9ZPD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|pDnqS9buPfeqFdJ8uG2uUIYUVzRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|186.5|0.47|6.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|pE3dtNr-VK4m2rlqSGQ0VT6MTe4b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|111.6|0.629|6.62|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adfm.201401658|pE7QoS-EjaZ9KUfIKAA_1ItKETsu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.628|230.0|0.49|7.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H1', 'Au']|['Porphyrin-H1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800242|pEAX1c9E3_X_PAwO0Rgbr2TQbkJ4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.0|0.71|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00122c|pEBoOJP_xc92AR4QnvXKC59ORKUl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.2|142.0|0.7559999999999999|12.9|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201802509|pEEgWvfjk6VEIfqsSxa3gziAlh7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|195.0|0.7509999999999999|13.8|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701640|pER6fkgBiv0mL-f-QrA31zPMKRGn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|232.6|0.7040000000000001|16.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|pEY-AXiKVnjS4m5ZOfUq1vuq3RlP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.108|219.4|0.76|19.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800474|pEYE1v9vIlhl0HjeW6F8HtY5_vDO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|217.7|0.736|17.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2019.04.005|pE_c6BBLDzZOU77wKAmYvLbxYmD2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.71|288.5|0.68|13.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|pE_la4NL_iEy6pdFOJnWvJt8enqA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|178.2|0.423|5.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|pEaoTc5oeg8EVKWS9-hbp3PiK_uO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.846|141.0|0.53|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|pEeBgQuUpmdDG4j7orh1HcD0qcQp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H11IN3Pb|PbC2N3H11IBr|FAMAPbBrI|2.430000259113674|0.602|3.1|0.58|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|pEvWIn2LaBtu6K2--4j_3Z_aolXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|205.5|0.65|12.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5069076|pEzH5pxqnDNudGjDx7IM8zKDkH6H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.7|0.58|10.76|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201501453|pF-L2i5cfkk_9aCbW8kiicgdoSL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|117.0|0.7509999999999999|9.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2017.09.006|pF-ch6NWBTFVyhbZpmk62Bji96Rb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.79|124.6|0.295|2.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b06050|pFAc8JYM9iv-M1FlUAK4DcAi0Tz4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1840000000000002|215.6|1.1840000000000002|21.56|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|pFCmDe7KfawJ3O1ni8r_fQpDd1qk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.07|206.7|0.7440000000000001|16.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2019.104050|pFFPnRbOev8A_fPIA-GsdQJRFQXN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|154.9|0.38|4.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|pFV7QeMeEJ3YZ7B0FLPv2T3zzRaV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3|2.150000229256954|0.5760000000000001|128.9|0.55|3.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1007/s11051-017-4108-z|pFgJNv6SxcJfY2VVJteE2T5gCgEr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|222.4|0.7170000000000001|17.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603021|pFiMfgB_ebm-xbvnuo4GObGz8pVo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10Cs10GeI20Pb9|Cs10Pb9GeI20Br10|CsGe0.1Pb0.9BrI2|1.895000202066013|1.11|113.9|0.593|7.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']|['P3HT', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/anie.201807270|pFlGmrSfdRgpcMCv7WlA56EVMWVC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsGe0.1Pb0.9BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.3|0.748|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|pFqgXxl9RWMc6xHFWOvMhM8KFTxi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.89|4.3|0.521|0.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|pFzn-QUr_Z2FtIAxKOdyKbetPv72|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.09|223.0|0.73|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|pG6t1HUHdibPlhT16CWCUCj4-7V6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|pGBXiX-xwxPrGPVqmPKlyJXLGFrF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.1|6.9|0.24|0.02|['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']|['OMeTP-SAM']|['CITP-SAM']|bulk|https://doi.org/10.1002/adfm.201805098|pGCO4RQR2Z98h8Quno0sG26kWpg2|a perovskite solar cell with the following device stack: ['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|157.0|0.4539999999999999|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|pGJ1QR7cN9zjN3fDUlV1ETHeoi6a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|231.0|0.5|10.25|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c4ta06416j|pGPQcdNeky9hRPLWWYMzbHn9W6vC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|147.0|0.32|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Cbz-EDOT', 'Au']|['3,6-Cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3762/bjoc.12.134|pGVjTYJGlqsaAAXw7Pnkxl8GNmPc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Cbz-EDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.76|16.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|pGhwCfQvNH3pRVGuth6nlxz5lz5F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.0|0.76|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|pGsAfB1KNOW0XqNcU6hVDnOB_Kt1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.3|0.68|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano9091220|pGtR3sWZ8RFEaoLYiUl3zowfIxod|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|176.0|0.647|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|pH-VlTM_BGFY5oTcwD8J1D65GW86|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6940000000000001|22.1|0.37|0.57|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|pH1CxQzcrZE-901pR-SP4vDlvn3T|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|197.0|0.75|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b09160|pH3EjyJ1ayo7yrWnWePjd3n-Tr6R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|37.5|0.4429999999999999|1.38|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|pH5SOdH-OzzliWpxS7m_FlOwsiTj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|190.0|0.59|10.0|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|pHDz5S7MA1mxfvJ7myHWsVmfOAc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|158.0|0.69|11.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201600484|pHEhjYwOOIMxMmTQhk-r8hdEGvfa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|221.0|0.7929999999999999|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBT1-C', 'MoO3', 'Ag']|['PBTI-C']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201902600|pHIippKNQtuDvZlRt2OXf-gTil0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBT1-C', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.063|217.4|0.703|16.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|pHcJ0-kKjRDuv9ncYfdL0Fnntmyc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.79|82.2|0.45|2.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPM', 'Au']|['Ph-TPM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|pHcxeI4SbXb4SVdhEC7glllGZjcv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.4|0.74|18.02|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-np']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/adom.201801409|pHi6eNimN8dnerWN9xAr_LAJAKNi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|219.5|0.7659999999999999|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|pHiALMljyil9UFKC5TT51NzSVIh2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.0|0.735|13.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701981|pHiNwCbqCrK0QHjsaydcQyAcNJII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.0|206.2|0.58|11.92|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|pHu2V06yljXxVT8MYbuelt1GYxpl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.85|231.8|0.63|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|pHuoMNqEI-gThjR7TMlPv2xQ-c4y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|166.4|0.54|7.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b00795|pI-fqSY6trthmhUm9VRamacF7_9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.33|82.0|0.52|1.48|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|pI7BUNp6WW2fUlcfeJbadQRKHn8a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|144.0|0.47|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1038/ncomms3761|pIGdLGQWaS_sr43Ylsla5Qi39NK2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.6|0.8240000000000001|15.88|['SLG', 'ITO', 'PEDOT:P(SS-co-TFPMA)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:P(SS-co-TFPMA)']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b03543|pILG-8AJTKsunonr_HIAtKpRWpfx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:P(SS-co-TFPMA)', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.0|0.67|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am504320h|pIZYkX1Dm9h0s0zZHp5XW2kZ6AjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.0|0.679|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/solr.201800207|pIaOw6_RCud66OpkAvG0PvYN7OV3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|189.6|0.604|11.13|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|pIdSGe3YIkwBICLgoPjRgyOBp7A8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||1.16|227.9|0.7859999999999999|20.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5118679|pIqdLnEnbb6bvso89OIoKEnEgM2p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.95|200.5|0.669|12.75|['PET', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|pJ-hR8DCCcVV5880u8Y8cKhWJl6h|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|205.0|0.795|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2018.10.017|pJ0Otzh4WkpwPn6CzD5pb9mCcJHU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|216.3|0.7|14.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|pJ5WQZVSmIA0KHbbbe0qndpj0GzG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||0.9|214.6|0.48|9.38|['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Alq3']|bulk|https://doi.org/10.1039/c7ra06645g|pJVRf4z1RXF3GroNCp-TmcciL5ah|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Alq3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.94|221.8|0.71|13.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/nano8090720|pJ_Ap3CPXGp8tZc-a-_AB2U6_VAl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|187.5|0.71|13.76|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.cap.2017.11.010|pJanOBfncbSRUrqs4TFV5IsT9Mpv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|0.679|48.0|0.16|0.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO', 'Ni', 'Al', 'Ni']|['NiO-c']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b07627|pJjSWp4qz5lHs7Uf0VXE-XHgKUgd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-c', 'AZO', 'Ni', 'Al', 'Ni']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.659|0.5599999999999989|0.63|17.4|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|pJkA_aROLnIdqKLA5Jg19afQJRqh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.19|74.5|0.391|0.71|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.04.071|pJw0ew2faUbz0kwq-O32eCxY3O6P|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.0|0.754|18.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|pJzs_EE5qpKgWGBLRKPT38zKnG8W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|192.0|0.75|13.5|['SLG', 'ITO', 'H1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['H1']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.7b00208|pK4TIXjtqxHpFDBmvXVZX1BjLXRw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H1', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|223.0|0.6809999999999999|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|pK5F27UHOX8ZDmjRfsaRzny-FZJB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.17|192.8|0.7140000000000001|16.11|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b17705|pK5VRA6bHaOyo48TA1zHZYn6eAkL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.92|211.5|0.73|14.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b01545|pKCgFbc5iuYzglMmQOzjHRbKaqMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.85|285.0||||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|pKD7ZQoE99vmZMXgRbVl5BpL3ZsC|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|123.8|0.417|4.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|pKSet4tP6ZXEaNO92PBtQ2fKt_nx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|147.20000000000002|0.56|7.42|['SLG', 'ITO', 'TiO2-c', 'PNP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PNP']|bulk|https://doi.org/10.1016/j.solmat.2018.01.006|pKXVt5ATBeB_tAYDM_gtVA4MzV3Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PNP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|217.6|0.6659999999999999|13.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00468|pKXch-TDVCLTfZlcgEMmb00o_y61|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.9|210.0|0.55|10.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b02651|pKfOwwYZoldsFV4kAgg0paS7X64D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|177.2|0.4539999999999999|8.22|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|pKpjDpqDVpj2pyseAYzYbU3XD1kd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|162.0|0.728|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|pKtS81f3lEblDU64nZaSrm9DQf-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C25H126I72N49Pb25|Pb25C25N49H126I72Br3|FA0.96MA0.04PbBr0.12I2.88|1.4800001578140891|1.06|213.4|0.7|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.009|pL2PGChG2_pThGovcDqFlq-7ii_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.96MA0.04PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3||0.89|185.7|0.67|10.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|pLRdaZnDRvnm3VFxx8MjPxuYZqWK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|131.8|0.396|2.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|pLi7vZD4Uvm1b7bbK7Zwz_XsAPtW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|223.1|0.741|18.04|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|pLm6bIbG6ImM6um3DLYy1cTgeGIX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.6|0.74|18.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.041|pLrQVEqjdCchLWUl3TqywS7eOh5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br42C17Cs3H85I18N34Pb20|Cs3Pb20C17N34H85I18Br42|Cs0.15FA0.85PbBr2.1I0.9|2.000000213262283|1.2|114.0|0.778|10.7|['SLG', 'ITO', 'TiO2-c', 'IPH', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['TiO2-c', 'IPH']|bulk|https://doi.org/10.1002/aenm.201602121|pLsZWaoMVJwwi0T3OQk1rPikPys5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'IPH', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr2.1I0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|183.0|0.4479999999999999|7.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|pMBFK7Zg7Uq3RL7sYgXrviNZmo1Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|147.0|0.59|7.86|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201700029|pMENGrATtHnlpXPwEWYpA9Zgx4Ov|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||0.72|18.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800269|pMMzxElrcZ-XcyGquh78gojq2TlX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.1|155.9|0.65|11.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta04128d|pMUCSsZ_2OcZt0XwVvZUcwgFHLX-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|234.3|0.727|18.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|pMX43eDC9be-L2zuXERFh8Y3g0Xd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|195.2|0.742|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acssuschemeng.8b04603|pM_mHgJ6yo3lVLqxTbOqquT9pc8L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.09|245.5|0.72|19.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|pMjxv5qlybvjCkx13V3b7JHY-IAM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.15|219.8|0.78|19.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|pMsQt3Yf6B9nCu9zRuvre5Ro7R7I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|193.4|0.78|15.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Lif']|bulk|https://doi.org/10.1016/j.solener.2020.05.028|pMvzwMRuRvopO7x63vEolVK-MgT7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.66|271.5|0.72|12.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|pMz7QxvxZ3bOkM4-0L4D8Vj2L9hD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.125|228.8|0.74|19.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|pNEAI7nHVa0KHgpGeUQXPsbSyiQb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|pNFCHng8juaTCWSv-WLLpcq7B2Bc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.6|0.74|17.05|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02679|pN_eiUk0e6zkYref_Q2q6IVWcHXs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.51|173.29999999999998|0.61|5.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1701293|pNdIslfiuoB4ARGYs0-SqGr7svq5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.04|218.0|0.72|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|pNlqbaBHPcG3L5Or3sdp5t2zpa-J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|209.8|0.71|14.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|pNrmwFVQB977RlkFmPuA84dNqCG7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|205.0|0.7|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM09', 'Ag']|['SM09']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|pO2_KTz6wKhXLpbeXy5aodz_aXJq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM09', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.8|0.613|12.03|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|pO95UlsKNIS5rfppr8Lhh2yNRD5e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.117|217.5|0.733|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|pOGUA3b-LsykvkXe9tCUJwRiiyOq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C94Cs6H484I255N174Pb100|Cs6Pb100C94N174H484I255Br45|Cs0.06FA0.8MA0.14PbBr0.45I2.55||1.16|235.5|0.752|20.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201902472|pOeBxnYFtsuTojzicuDstn6v-4Fp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.8MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|165.9|0.74|13.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b01553|pOo2mlc5KjE4SXcnKmiNLuc7ZDOb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.23|148.0|0.44|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|pOrYKCEOulIE_y82HHpj8nUQTxiz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.144|222.0|0.805|20.2|['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['MeO-2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|pOs9ZQ0_XmFK-kCb01f9KeYIVvym|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br12C20H120I48N20Pb15Sn5|Pb15Sn5C20N20H120I48Br12|MAPb0.75Sn0.25Br0.6I2.4|1.4800001578140891|0.87|210.5|0.77|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|pP0UovqP2l9cccK8vq2Eyx7OJuxf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br0.6I2.4. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.06|231.0|0.71|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|pP61baep7Yi_GYG8RgTsA76KVKcn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -Bi2I9Rb3|Rb3Bi2I9|Rb3Bi2I9|2.300000245251625|0.61|2.9|0.618|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|pP9l02A5XxKyTLax6ZpuqHY_U_9D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Rb3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|189.0|0.8|14.5|['PEN', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.04.055|pPBVuIDW5dQJMzULo4GA6dcXpWuR|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|221.5|0.72|14.83|['SLG', 'ITO', 'TZ2', 'Perovskite', 'C60', 'BCP', 'Ag']|['TZ2']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|pPCJDIoXgnp_wgjBkJPzcMCPBMFd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TZ2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.99|217.0|0.76|16.4|['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|pPNhGuxMhpb5-1Sb2gzUXIZQp1CG|a perovskite solar cell with the following device stack: ['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.09|247.5|0.74|19.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['SnO2-c', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1126/science.aat3583|pPQ-EUxBXOWIouWrxfg_UGpQ_8_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -C10H36I13N4Pb4|Pb4C10N4H36I13|BA2MA2Pb4I13||1.08|184.9|0.682|13.62|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201903889|pPSDRhH3H0t7m7EN6nXd3OG8QBnv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb4I13. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.05|222.3|0.746|17.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.spmi.2018.03.051|pPleO4GpNkZMZ4EtHP_VGZhyAW4t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|192.0|0.57|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2247659|pPp4EX26wEqwgu1t-yorDEmaPDfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C34Cs6H170I120N68Pb15Sn25|Cs6Pb15Sn25C34N68H170I120|Cs0.15FA0.85Pb0.375Sn0.625I3|1.2400001322226155|0.76|246.0|0.7|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b04981|pQ3L16oH-aAu9ycoKiUnemlp9tyY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85Pb0.375Sn0.625I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|219.7|0.78|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|pQ69jFX8p6EmmZPrSaxM7Vvpq-7L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.909|172.64|0.574|9.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|pQAIari9915JY-b3WjdXcxF0ddjb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.144|249.1|0.813|22.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|pQPtIDhDKZRqUOoiIAjJAcF4WX2p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|232.0|0.77|19.5|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|pQUWh8Q1X1TYUHSkbLqqvjQfna3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.112|221.0|0.7120000000000001|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|pQV2jHokJ_oXdE6ghPC6WDTR36x8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|pQVl1hR43riQb02DzZt1ZQ7szdjV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.0|0.78|16.8|['PEN', 'Graphene; MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/c6ee02650h|pQbvxPcU-jUNp8wmzH7PquiaiCt6|a perovskite solar cell with the following device stack: ['PEN', 'Graphene; MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|37.400000000000006|0.37|1.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501354|pQk7t2h4IS7uCiH-b9vTbIOWN5bM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|108.0|0.64|4.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|pQkqOi8g1_IieKOGZZAXUrsM_Bn1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8240000000000001|197.0|0.545|3.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201701456|pQmSZJvbFqfFkJbJgFnOSWCL71C6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|237.6|0.74|19.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00395|pR-pM8u5doxjaHXydDfolZ4Z-HxF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.04|208.6|0.6990000000000001|15.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.10.143|pRE0Mjn4xHpSjFS-XXF81e8SKiQD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|172.2|0.69|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|pRF2QZTibxJTMq1PVisxirjNj7cm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|118.28|0.372|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|pRG3J1kaaaIalNzhzitQbunIXy3s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|203.2|0.75|14.09|['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|pROJoM7RjyzTt6s1AzkcZLsK4gMq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.15|137.5|0.6|9.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|pRPUHZ88onie8cbU8TII8D9UIdau|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.1|239.5|0.71|18.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.105387|pRQ8vc8dPu9oBj2LNl5DLB9ItXdH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.82|180.3|0.41|6.02|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|pRRuOlyxJ393mB1EW58OtkHT7PWO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|206.7|0.809|18.56|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|pR_lJG6HmwVC-HcU2niyTrtVcKxp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|155.6|0.586|10.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|pRmf2e9NaWYZMMeMBgQJofdROQQP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|216.4|0.72|17.13|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|pS0qDGzKJnzUeWDHoF7isFdcHMju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C37H763I476N176Pb156|Pb156C37N176H763I476Br9|(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8||1.09|226.0|0.77|18.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|pS1WAwou1QPz2mNSZuSa9jcrteLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|129.2|0.37|4.49|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2019.104285|pS8zctimPnpUYE4QrhMY-4_sMOJm|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.0|0.73|14.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|pSCgDWNXJr-xKy8AVjGGZl-QEsb4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|147.79999999999998|0.759|10.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c6ra08584a|pSJRltt6g2e3WOcv5qZFbxxfT78s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.99|136.2|0.65|8.13|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07549e|pSRBrg0jrkhJweCaihBdY00lc-za|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C10Cl9H50N20Pb10|Pb10C10N20H50Br21Cl9|FAPbBr2.1Cl0.9|2.440000260179985|1.14|34.300000000000004|0.61|2.38|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901683|pS_dhA8ZKM6kUXUhhjWhtps0N9ke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr2.1Cl0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|87.2|0.35|2.96|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.11.020|pSdfs36ao4neGj2_1gK2yTJPKfVH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|214.0|0.6|12.2|['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02441a|pSwqTQs6BcH1Oc6vmdKw__GwgLP5|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|174.0|0.44|5.91|['SLG', 'FTO', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw']|bulk|https://doi.org/10.1039/c5nr03476k|pSxfGi4BGqKAIB0lxwJOihSdykcf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|168.9|0.7|12.18|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01593c|pT-WRTixhpbPb5fYOm1qEurEzJkO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|187.4|0.381|5.53|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|pT1KUSzEcHcKU7RElFslcDcaEg3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C19CsH95I57N38Pb20|CsPb20C19N38H95I57Br3|Cs0.05FA0.95PbBr0.15I2.85|1.4800001578140891|0.922|190.2|0.612|17.42|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b01180|pTC7LWVTsyxZVew0x0g0xQezZMNq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|188.0|0.2789999999999999|5.4|['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/c8se00218e|pTCVRuGx-Q8i_4HRmGn_x1sdEKTw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|170.10000000000002|0.77|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.084|pTL7lADAXYB3uiZl0z7LLgnbYVI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|229.3|0.77|20.48|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|pTV57mHQX85REL36GLu4QeiILcdy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|184.0|0.624|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|pTVQVL3LT0SeLpc5RZDoKN3goQX8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|192.0|0.598|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-6928-0|pTY_vvJ4UCfJtNVyubwpSFgEFfX1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9||0.38|4.5|0.36|0.06|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0120-3|pTwRjMpSKubhtLu2aDIetzdQ9OR8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MA3Sb2I9. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|||||4.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'NiAl', 'MgF2']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ee02043h|pUGR4izqa2wEsbvYOyjG73diSelV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO', 'NiAl', 'MgF2']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|187.3|0.7340000000000001|15.44|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|pUGq5mxSp80XL3Y3A8T6_N_qeFn_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.064|236.3|0.752|18.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2016.81|pUUcWd7vIdGl2k5iuo9gT8aoDStO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.52|9.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-019-2556-8|pUeTRqsjFLe2U_2GldN5sG6VNJ5v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|198.1|0.55|10.41|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|pUfVmYPsiewIEX8UyBqA7vkyg_Vl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.5|0.72|14.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.10.130|pUhsolZ5_BbyNN_Bzt-wRu21sFYB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|151.4|0.638|8.79|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|pUmBOUsNztgxomxwjXoxvN7FEtNa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|1.627000173488867|0.98|178.0|0.77|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|pUrbXyxF7lhIUBtpdOiMVoI_GXpF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.0|0.76|15.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700612|pUsXy7LoB8-kQETYs8LfqunTGbx4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5300001631456466|0.69|222.5|0.45|6.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12939|pUucMVaDAHdGvKGGJie0inemMHD4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|pV5Ky_odweb2vgnQom6sVBQGd2Bo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|235.0|0.69|17.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09565h|pV8WJP6bX9RS7uRTQuSjFrBo8C5K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01730k|pV959P2oYyxbz_SaEkPgEQpmLZBo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|243.8|0.76|19.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|pV9iEBkVDdWd-dYPu7yu17yLemd8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.09|209.8|0.74|16.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|pVARJuGyJM9Smzk-3xrujwtCdxRt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPb1.0Br0.15I2.85|1.570000167410892|1.01|202.6|0.65|13.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|pVAhAdai_pidGdVO0kIhhVdI_I7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.15I2.85. -C10H36I10N4Pb3|Pb3C10N4H36I10|BA2MA2Pb3I10|1.8900002015328567|0.929|94.2|0.46|4.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/jacs.5b03796|pVDErkYg7hMiM_owSlmJHvcfCnz_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|201.8|0.722|14.38|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b10614|pVHLi4WKYrhI11zP0tvsiuIytFz9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|154.4|0.61|8.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/advs.201600504|pVaBLlSIBdLDiGdoVHRm1D2OFTt_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.748|104.5|0.48|3.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11468-016-0255-9|pVuBaprsDd4eC4DKX0LdjJ7NkJzD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.236|156.1|0.63|12.16|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9486-0|pVwj1HzHUPgYcWlY3WTz4P1KFQDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5500001652782691|1.096|246.0|0.775|20.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201907769|pWHIP4Bm0tIX3uqEnhM0Q99Atfph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.5|0.66|14.42|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'Ag']|['P3CT']|['PCBM-60']|bulk|https://doi.org/10.1039/c9nr03030a|pWPi9LBZDX8uHlSU1UM3XaA5FRVe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|160.0|0.8|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|pWYYnjTQCXOtaPbq2TYiFQcoRhqH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|226.0|0.687|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2681-4|pWbGaCpytOELuw_9hPMYmBEtlxGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|147.5|0.792|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|pWk8OvPDYpwOuWe39v__G0G94Vj_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|19.1|0.36|0.3|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|pWkqyvkJvrXUigty707JsJ8B26ZC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.6|0.66|15.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.036|pWr5TVMX01INTdpxuVsuDKL8aI7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|103.36|0.59|5.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|pWseTlyhU_X5DHn900lgDBMxg3Yu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5500001652782691|1.095|238.0|0.639|16.7|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|pWt30s_Ydb_9TIflhnYywaB7O7P4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.8|0.74|17.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|pX6R-J1f4aScQ3fMHfERZYoZtSkX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I246N174Pb54|Cs5Pb54C95N174H491I246|Cs0.05FA0.79MA0.16Pb0.54I2.46||1.14|224.9|0.74|18.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b11783|pX8YVJJTMZE0xVb1LegH4lUqj4s0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.54I2.46. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|206.7|0.72|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7-Ben', 'Au']|['2,7-Ben']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|pX8b2ZTNTiwbNyovSxIsv80iaRLm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7-Ben', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Sn|CsSnI3|CsSnI3||0.11|105.0|0.3|0.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700224|pX8gNo7kDg_csQSnlfWN7sfb6NF-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|207.0|0.725|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta07674f|pXJyla98c2ir7Z4rXoT_U-J_V0Yk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.07|235.0|0.745|18.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|pXQHkUWZX7B_cQev75GKDk1JMbte|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.6|0.65|14.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.04.027|pX_g7f8Y-bopEHrsMjs8qvCaXSk7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.84|161.6|0.355|4.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c9ra02036e|pXclLhVp46rqnze5BsAEtV6eq2Pk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr3. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.057|221.0|0.767|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|pXk3T5sSo3N_z_YcUzGJ3ZfDNTmq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.06|0.2|0.28|0.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6tc05325d|pXlKzu8iMsavortupwLR7EIWFStf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|221.6|0.57|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']|['Cu:NiO-np']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|pXxnvtFCmgr00wCT2UtINRIdEZz1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Cu:NiO-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.525|87.0|0.85|7.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Choline chloride', 'Spiro-MeOTAD', 'SWCNTs', 'Au']|['Choline chloride', 'Spiro-MeOTAD', 'SWCNTs']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00509|pY89cK1GjRsmliNWKkp-itwY1_gQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Choline chloride', 'Spiro-MeOTAD', 'SWCNTs', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.149|233.5|0.7709999999999999|20.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|pYFMMrcvRp4GUo-ryU9zfwdxEGhC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|173.70000000000002|0.5429999999999999|9.35|['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2018.09.017|pYIF5nREMvzb9aJMsx885VqU1R5z|a perovskite solar cell with the following device stack: ['Willow glass', 'AZO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|190.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ph500255t|pYL7gzuGl7O4lQ9GRahNdilU0gsg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|215.0|0.66|14.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|pYQe8wu175evhsFtVG3yM6niDF9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.0|0.7809999999999999|16.1|['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.04.021|pYV9XCkbyhS6kWbIf4WShL8vkJ9a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|175.7|0.64|9.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|pYXyyhxnJC3YMQMTQNNDPMdUJSDk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|135.8|0.6|6.64|['SLG', 'FTO', 'ZnSnO4-c', 'ZnSnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSnO4-c', 'ZnSnO4-mp']|bulk|https://doi.org/10.1021/jp509183k|pYb7UiXWUaztc91Kx7yGujMc--37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSnO4-c', 'ZnSnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.02|130.39999999999998|0.606|8.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['Carbon']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800139|pYcKEueaJEnkY1shYqA5ekYdkIYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C100H513I249N187Pb100|Pb100C100N187H513I249Br51|FA0.87MA0.13PbBr0.51I2.49||1.14|225.0|0.74|19.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X50', 'Au']|['X50']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900196|pYdBTBPfBNvoWKPlRzuGtRvrUz9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X50', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|200.2|0.728|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np']|bulk|https://doi.org/10.1021/acsaem.8b00192|pYeYH9eutEhW6ruSPj7tojMIMXfc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; YVO4:Eu:Bi-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.12|212.0|0.723|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b04949|pYtk6_7_7mEaxZVyudNMzAep2myF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|195.3|0.7070000000000001|12.9|['SLG', 'FTO', 'C60', 'Perovskite', 'F4-TCNQ', 'CuPc', 'Au']|['F4-TCNQ', 'CuPc']|['C60']|bulk|https://doi.org/10.1088/1361-6528/ab4f2a|pYwAVDL6wpBDJob3fxtNWF_ZwQ3S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'F4-TCNQ', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.8|0.71|15.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NaYF4:Yb:Er-np', 'Spiro-MeOTAD', 'Au']|['NaYF4:Yb:Er-np', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.058|pYyrDGhNSP1VSCaM4ZwRKRR_Rr1M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NaYF4:Yb:Er-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.06|233.7|0.7609999999999999|18.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|pZ2aVv8RqaQe5A6WIYqyGzCjpcH7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br21C40Cs100H200I129N80Pb50|Cs100Pb50C40N80H200I129Br21|Cs02FA0.8PbBr0.42I2.58|1.5900001695435149|1.095|232.0|0.61|15.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5123400|pZJ844jbtrLfxF7ozFLbjvOCOg-O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs02FA0.8PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.7|0.45|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|pZXozuWwHvMJaXe8Mw0NcjmtQE8A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1840000000000002|215.6|1.1840000000000002|21.56|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b02262|pZYQ0AWqLb8Jv843DJWBcgkyPEwk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|209.93|0.7140000000000001|16.65|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']|['NiMgLiO']|['CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|pZgCrfwmkmXHrRAsREOE08AzMXIU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.14|217.0|0.685|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|pZh68mY0Ci69-wBdoS2Sv9vTr7yF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|229.7|0.764|17.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12274a|pZhHmJ5-BQ64wSy0ecegc332TRfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.078|185.91000000000005|0.77|15.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||pZnEIlQvuu6_P0uIx8gDhJtwMtqD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|175.0|0.55|7.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']|['SWCNTs', 'PMMA']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsnano.5b03626|pZtkVljCG0u_rWEmf1ciSOjCbUbh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|162.0|0.49|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4EE02539C|pZvT9CF065lQY95r1CBfhmxgEzlk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.7|0.69|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/ajoc.201800385|pZw8S6GX-6hkRijprX0DChE01NiE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|174.0|0.76|11.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|p_8141pDF6TKCIS4i6L45MXfn97J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CClH5N2Pb|PbCN2H5Br2Cl|FAPbBr2Cl|2.480000264445231|1.06|24.5|0.52|1.35|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901683|p_AYxfBUaZTqxHk1nre-KwsX7pNe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr2Cl. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.5|0.643|17.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|p_G5RG7NqM53YM4RP_N9hICDK3RZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|203.3|0.757|15.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jcis.2019.09.087|p_Ks6acrPT1U0_8YV7aE7vzAgvKh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|167.0|0.7070000000000001|11.2|['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.02.011|p_NFFke7qLrwETtw2ieK9lo2wYJk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.745|133.0|0.48|4.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.061|p_OLXRkAXK2FchT4st5xKv7OQvGt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|153.0|0.476|6.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|p_QoYy58TZHLeiVvhTEzM5Z_qg9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|201.0|0.77|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201409330|p_YSh-Ewr-UkIAHDsGzowJhfhNP5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|224.0|0.52|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700210|p_Z5cLjtnaCJ8e7u82pIiBaqPJpN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BiCH6I3N|CBiNH6I3|MABiI3||0.56|8.299999999999999|0.48|0.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02843|p_ih0sB1UKQlj-h6c7aGvybcYWJ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABiI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.3|0.7859999999999999|17.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNASOC7-Cs', 'Ag']|['NiO-c']|['HATNASOC7-Cs']|bulk|https://doi.org/10.1002/anie.201604399|p_m0d8eRa1h4a3b-t9nHqdL1NNke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNASOC7-Cs', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C92Cs5H476I252N168Pb100|Cs5Pb100C92N168H476I252Br48|Cs0.05FA0.76MA0.16PbBr0.48I2.52||1.018|143.8|0.639|9.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra05323a|pa1j3WEm5jiGnVGcjWaVbK0klbpr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.0|0.7709999999999999|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|pa4HlZdu12IgKXXL2A-xARW0XlME|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|171.29999999999998|0.238|2.76|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.7567/1882-0786/ab1fb6|paGrg6FFTmluMQ60pJpocDOhQ85v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br6C10H60I24N10Pb5Sn5|Pb5Sn5C10N10H60I24Br6|MAPb0.5Sn0.5Br0.6I2.4|1.350000143952041|0.9|256.0|0.755|17.4|['Unknown']|['HTM']|['ETM']|bulk|https://doi.org/10.1021/acs.jpclett.8b01152|paI744ykRoXDzRHnOzVceFY3UQZ6|a perovskite solar cell with the following device stack: ['Unknown']? The composition of the perovskite layer is MAPb0.5Sn0.5Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|101.5|0.17|1.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Alq3']|bulk|https://doi.org/10.1039/c8ra01633j|paJTi8nQeckqgjIAVwqvIA9KvDcP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|189.1|0.67|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05675b|paOerLwdD-AfItNnAZzmQQ--65vV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.5500001652782691|1.036|247.2|0.78|20.02|['SLG', 'FTO', 'Zn2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4']|bulk|https://doi.org/10.1021/acsenergylett.8b01501|paac54uskK88o8DhHNbubQH5p67Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|157.79999999999998|0.669|10.03|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|pagcmQnfzCh5S7uVoxLy2kqNxk99|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.95|173.29999999999998|0.52|8.51|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|pal-fEvE3D-8EHNKXMVwuASkhuku|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.936|138.8|0.64|8.33|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|papNIv6miHz4fvt3PrukehRw4fKv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|187.0|0.5489999999999999|10.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|paulvFy4ek6EWcHQlnDbEa1jLVVf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.042|184.4|0.759|14.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b08744|pb3qfjnK2ULDlUfS3m0P7d-StZGC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.497|224.1|0.682|7.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']|['BDT-4D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|pbAII9T22qWiX8qr1Sg4H5uOJO5p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.79|193.3|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|pbFiwTGYsDPVuVOsO2cZdFU7N7Gl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|152.0|0.55|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|pbI5Cacoyf5HLC9YRAkw6KUhCzQL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.11|231.0|0.78|19.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|pbYYLOsazLuPiEzpIvVf1N9A6WSw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br660C1667Cs333H8668I5340N3001Pb2000|Cs333Pb2000C1667N3001H8668I5340Br660|Cs0.1665FA0.667MA0.1665PbBr0.33I2.67||1.07|211.0|0.726|16.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|pbqN2l1kmi08a98vXOYgqvw0PyDw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.1665FA0.667MA0.1665PbBr0.33I2.67. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.1|231.2|0.755|19.17|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.06.004|pc4LGXYiWYffUEKUuHU6pJgfAJ18|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|208.9|0.636|12.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00314|pcBiXHuKMG7pBbpb9sOuL_Bs5Ji7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|164.8|0.617|10.33|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9cc05779j|pcJx6qfy5QzDn-mKoFHXViHWuWYx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.5|0.76|18.57|['SLG', 'FTO', 'TiO2-c', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnSe']|bulk|https://doi.org/10.1021/acsnano.8b01351|pcO9arYE1EctageEtWcJqYicfQxk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.99|224.9|0.59|13.26|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['Ag-np; TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2626-y|pcPb1ZC6hmkuYQQnOmE1YS9QuuAr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.0|0.78|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08458j|pcQQK60NuRKjilC2UgFYaq7-CgdJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.105|143.7|0.7040000000000001|11.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1002/adfm.201906615|pcTAfsXZ91JmVqsz3xwYlJ29ddYm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|176.0|0.62|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|pcUnGXESwMrIJoeelX_cUqmTYqJ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.08|241.5|0.74|18.6|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|pcb9Vk64EqfD72U-qXWeKSBoro5p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|205.0|0.644|10.7|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801773|pccW4BdU2O2nDaIZCduMpZmPc3WM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.87|191.7|0.57|9.48|['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['CrO3']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|pcj_PpAQQD09XxagNeCQezqLI-CL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CrO3', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|245.5|0.62|15.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|pcmavYLQGFBJGnNv98sJEzjtWMBX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|129.0|0.774|10.0|['SLG', 'ITO', 'MeO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['MeO-PPV']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|pcot4SlM6xnKdyWGNaWn8z5FczkA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|217.2|0.76|18.82|['SLG', 'ITO', 'ZnO-c', 'JTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'JTCA']|bulk|https://doi.org/10.1002/aenm.201701683|pcwVK36EJ-i5i6XBHOxnH1MRr5TF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'JTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|211.5|0.64|15.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227405|pcxp6y0nqD1II2SRjR5_UXji1X4T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|209.0|0.747|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11250|pczlPwRE0zZGTzMOxdwDaJkQhvuU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|11.5|0.63|0.065|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|pd3oRNQGKfI2ijPmfumIara8-SCr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.9|163.2|0.541|7.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|pdGLu-doTzxUod4NVp3dEdvrkVOg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsPbI3. -Br300Cs100Pb97Tb3|Cs100Tb3Pb97Br300|CsPb0.97Tb0.03Br3||1.54|77.8|0.7879999999999999|9.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS-np', 'NiO-np', 'Carbon']|['SnS-np', 'NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta08900k|pdI-jnbWaYaQuUd3IJeh9NzmiT_x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SnS-np', 'NiO-np', 'Carbon']? The composition of the perovskite layer is CsPb0.97Tb0.03Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|216.1|0.768|18.76|['SLG', 'FTO', 'NiMgO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta02652a|pdJxl8OZFJrGODlI_OvhDPOLZL90|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.938|61.0|0.52|2.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b01808|pdTnkOHlF_D0MLfCCDjMbZhj_qCQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.096|135.2|0.685|9.65|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104180|pdWi0CgC37EVS-9Q4q9JzaQixU5S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|97.0|0.65|6.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.3390/nano9020204|pdabekOR62UMWr_cekyTA2cWik5V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.27|['SLG', 'ITO', 'TiO2-np', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06343|pdrgPmQcKr4FKQ6XPktEpN2d6Xnr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.06|199.0|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800232|pduYK-s5nbedPAqrRv3xOiHlpUv2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.87|116.2|0.625|6.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b02810|pdv9Awqu5Iv_RNagnwcvDpG7rmlI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|216.0|0.72|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.202000197|pdy4nSz9E0TQinE-FokZqwd4-gf6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.11|229.7|0.7040000000000001|16.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mtener.2019.03.005|pe7V9ba5iKGfmQSjyIJQqQADd0Yd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.08|226.8|0.7020000000000001|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Spiro-MeOTAD', 'Au']|['NiO', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|pe9AeQw_HtL3DH_BQ2tvTRABwwBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|214.0|0.63|13.4|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|peBh-B0SEcJKN0VyiSiqG9FsSGL8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|176.0|0.794|15.5|['Polyimide', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.026|peHFG4VeZ7fwrFhJoC_2ZxbW-SZm|a perovskite solar cell with the following device stack: ['Polyimide', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.04|195.6|0.743|15.12|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'TeO2', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|peJR6HfEUAV7hstYZSVdwyKloQ72|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'TeO2', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.11|210.8|0.7759999999999999|18.21|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|peLtRv8eVL3YsXP2ngsWfKTDwe0c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|150.0|0.4|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|peQ7BTdV5h6qyg2LctuWQesu2GCF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|170.0|0.6579999999999999|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|peiUBC6FXMD66BbU7iMjEhNh3Sx6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|131.1|0.325|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|pen8RAnUC9MG9e2zAjE_8nd5egqz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4||0.89|161.5|0.75|10.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp03995a|peoUWwEfDDdcAGCA7qr2jVKUDAx1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.0|0.73|16.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-017-02039-5|petr-Ql6lVboTElTrRHFUOqyEcQO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|200.0|0.74|12.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07515g|pextz_ZyGIjxsS0xHogDrH360dVF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|140.39999999999998|0.72|10.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|pf1K9CrRJq9T8oQtP3bc2xtnnVnJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.853|172.2|0.71|10.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta01715k|pf1yoH56HS2HO8VS8VmOXEO_n7IH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.903|172.8|0.711|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|pfAZcX-C0lzfTedlxJHo6ZmTS4a6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.21|119.5|0.63|8.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03622|pfG_C4C_XhR2mcRsfq28PTwfyPgc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.124|203.3|0.735|16.8|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|pfOhMVE5Cgw86ChA00Tx27ORxVi3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|215.8|0.61|11.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.019|pfcyfgrsS4oRYbXnbFbF23pAHtOL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|201.0|0.57|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-020-03664-5|pfgJroQ6opGByNqjEdjIe4ttAh1C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br12C9CsH54I18N9Pb10|CsPb10C9N9H54I18Br12|Cs0.1MA0.9PbBr1.2I1.8||1.14|169.0|0.78|15.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-019-2336-5|pg8F-_wivSq8sVN9VNw7KwKTd4Bo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1MA0.9PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.5|0.6990000000000001|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201700169|pgCxHCymSlD0ZeDDrBI7WFnEh0iU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.9|0.51|9.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|pgRsgexF8tfxX790FC1XLeY3B4mJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|196.3|0.68|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F101', 'Au']|['F101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201503099|pgVopwUOHbxz4QHNRhfzHRNeddDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'F101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|216.3|0.7|14.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibres']|bulk|https://doi.org/10.1039/c5nr07395b|pgaeyowq6MaDrQXqpxKE6JmPperK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|173.1|0.54|9.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4916345|pgd-dmxGz8d26jbP7ObcLB8CXzif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.81|251.1|0.63|12.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.04.052|pggrNh7J6EpUopfwMifmBbpQP3Qg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|214.0|0.57|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/mi10040266|pgkTWMHhjqNZkgKJ9y8Z2Ma-gb8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||0.98|222.0|0.687|15.15|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acssuschemeng.9b03058|pgo6k2s9y2bFuLj3oeAgcL10Krk2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.075|194.0|0.7809999999999999|15.7|['SLG', 'ITO', 'NiO-np', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO', 'ITO', 'MgF2']|['NiO-np', 'PTAA']|['PCBM-60', 'ZnO-np', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.07.032|pgtsiGV5bm6R4N-ZRwL5e7WPK7HC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'ZnO', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.123|196.6|0.6579999999999999|14.52|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|ph4tbcXrgo6v4KiNsfhq7bAk5VvR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.8|0.7909999999999999|16.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-1', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP; TZ-1']|bulk|https://doi.org/10.1021/acsami.9b18757|ph6h-tLQNZbVTo4m1el90JooJJwl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP; TZ-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|209.4|0.754|17.21|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CzPAF‐SBF', 'Au']|['CzPAF‐SBF']|['ZnO-c']|bulk|https://doi.org/10.1002/adma.201503729|ph7ONeQ3R_PVznf6PvOwoSgjG-Kg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'CzPAF‐SBF', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.04|211.3|0.74|16.2|['SLG', 'ITO', 'SnO2-nw; Zn2SnO4-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-nw; Zn2SnO4-np']|bulk|https://doi.org/10.1039/c6ta08565b|phDtrAch43apuXQk7H8vmD__2u6P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-nw; Zn2SnO4-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I45N5Sb9Sn|SnC5Sb9N5H30I45|MASb1.8Sn0.2I9|1.950000207930726|0.7|27.6|0.53|1.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|phJC9ah09qgOGO0nFENmQPHZ6P-f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MASb1.8Sn0.2I9. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.021|196.4|0.5579999999999999|11.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|phQ3N_rGPZRcp-sLO8uxAL62lVPq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.62|14.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3390/cryst8050185|phdPUd7wjFyqDRDv2ee29ZoCyAc5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|196.6|0.51|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8060416|phh3X2FE_UV_tRxsFqhW8BwS4Mb9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.5|0.722|17.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.069|phoIMCLFIauM4YsIKWZCywbUxKpt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.94|188.0|0.65|11.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.07.020|phpr1mqR00V5BYeNKKmpBupa3N8N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||8.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra25787e|phunCbniFf63tCe9BYfqrKZp9WEQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|156.8|0.5529999999999999|8.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|pi-EX2-LMhJJNOXfnBYuwE_Ygnfe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.113|215.6|0.6559999999999999|15.73|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA; PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|pi-ofVl2ZvaMX_o_pU8FHbFJGOId|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.612|134.70000000000002|0.369|2.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|piHfTmTT7aDeCcV9V7W5h_2lzEPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.1|0.736|15.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b08421|piJOpvT8MyVeY96IuhNtoJNg4wvi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|193.0|0.76|15.1|['Eu-complex LDL', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b10101|piTHoMzH0kdM8mrPzyciVvHW-gv_|a perovskite solar cell with the following device stack: ['Eu-complex LDL', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Sn10|CsSn10C9N18H45I30|Cs0.1FA0.9SnI3||0.41|182.1|0.64|4.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.8b03194|pifHWHO2-VskX8kYmAoYR7yPk2KM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|136.9|0.66|6.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|pj5daJCdoh7nrtyeW3Ugnj9V07vp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|175.6|0.6729999999999999|12.0|['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CPTA']|bulk|https://doi.org/10.1002/solr.201800317|pjFoNa6iwDcUna2GHfsL_lmtemvT|a perovskite solar cell with the following device stack: ['Cellophane', 'TiO2-c', 'Ag', 'TiO2-c', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|151.5|0.701|9.13|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|pjIfaTqXquMgMZE5H8NX7oLwykUS|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.33|114.7|0.44|1.67|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ra07725d|pjMVVEwaYF78_3-M_Hc4YGhZCOye|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.8|55.0|0.76|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|pjNHkB1XGM_j0N1fyPT-C5JDwHrd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|216.4|0.395|4.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpcs.2018.09.019|pjPqyXZw3a_uxnS2Qo48zAtFsUsg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AgZn', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.26|156.6|0.529|2.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|pjRCjkPyU4YbsDmHtMcxdL2QtbOI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.2|0.76|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.07.034|pjV82LvBeeWqfMtcibSZrhC77q9P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|241.0|0.78|21.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['P(VDF-TrFE)', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|pjZqetnaoZs6mKmU8I8ugPDBfAJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|202.0|0.72|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|pjcAYmOSizcxCDLPg9tPlF872imV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.058|216.7|0.775|17.77|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900511|pje3qmSbpU31GwD_OxQsky63TWUr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.12|47.7|0.597|3.19|['SLG', 'FTO', 'Graphene-QDs', 'Perovskite', 'Carbon']|['none']|['Graphene-QDs']|bulk|https://doi.org/10.1002/smll.201704443|pjgy9wtU1b5rIM8vQb3JhURD-aGY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|171.0|0.542|7.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|pjkVsMpBSh71l_ZvbmpZJtyrQZ37|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|185.0|0.58|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|pjoR57S1NqqSPJFL9eZvQhex7T2w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.3019999999999998|77.69999999999999|0.8029999999999999|7.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|pk8rMOSwXZC2lO4Rci2nQJT-cfde|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|208.3|0.555|12.16|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|pkClINubWo0JCPobdMiWS4l7zoc8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C24H126I61N20O2Pb20|Pb20C24N20H126O2I61|(AVA)0.05MA0.95PbI3||0.83|178.0|0.575|8.49|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00158|pkDTy20hptNZoSu4BZwhzHH-xwNg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']? The composition of the perovskite layer is (AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.98|208.0|0.73|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta04973g|pkDsmx2VthvpH2EGzbwwbDjLRw35|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|170.79999999999998|0.79|13.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.034|pkKMWsPTHnTSi3ayR_daCJEeBag8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.65|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10228|pkU2xSwgUJBURUUUEHj428R2QbLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|200.0|0.7440000000000001|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|pkWQd4exnDc2xmeif8AZDlj0SF_2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.934|204.8|0.569|10.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra22451b|pk_En65s9J76v3k2lAqgz4kueQTg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.60000000000002|0.67|11.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06558e|pkd-1ZW8PRGGY9RPcq0NzZFs80uu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|194.0|0.67|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b04122|pkj8AhDfQqbWMYSrlggUDreTCStW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7500001866044976|0.84|163.70000000000002|0.669|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201808986|pkq39fseIkoRHxO5_Q6-5qoZWC6N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|207.0|0.439|8.5|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ra05578k|pkqoY5MuUvRmMx2luLXm1_mgDcjr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|142.5|0.24|3.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-411', 'Au']|['SGT-411']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta04762b|pky3PUmyNjcXxJ5UswqP1Ej4R7F-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-411', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.1|230.9|0.8140000000000001|20.65|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ee01675a|plHJsAHd3xE-3awVJQy7T_0P9FoB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.09|230.9|0.759|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|plHSUDe9cMK3doArJ6moStgH1q0E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|181.1|0.662|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ra04907j|plL0TsdzX14cDLI185kjBHf6UE-B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.3|0.74|16.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-W2', 'Ag']|['TPE-2,7-Carbazole W2']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605187|plMCmI1FLQ-3teMQEAigp3SNVouY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-W2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C95Cs5H490I267N175Pb100|Cs5Pb100C95N175H490I267Br33|Cs0.05FA0.80MA0.15PbBr0.33I2.67||1.03|220.0|0.72|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b00387|plU70t0gtfPNlKip-4z4s0OKVb3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.10000000000002|0.589|10.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|plWGZFYQ-TKoC48wdVFh-g5JSWei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|221.3|0.7120000000000001|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta08117g|plWKUOK9TZdBIEMsC0uL4X7TCgb6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag2CsI3Sb2|CsAg2Sb2I3|Ag2CsSb2I3|1.9600002089970368|0.77|19.1|0.6709999999999999|0.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c8qi00309b|plWeryYRjwEoNcI8AA_0dRi1QHt3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Ag2CsSb2I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|174.0|0.581|9.1|['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Ag:CuO-nanofibers', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pc.25527|plaoaV-VqMH_eRAsFW9TrW6xoSnQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.4|0.725|14.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2017.14278|pldhRPkxS5ro_Rg2qmL_8jYjdihg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.97|209.1|0.578|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|plgl2Emu3uymUGkjVJLpEa7CSgJ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MAI']|bulk|https://doi.org/10.1186/s11671-016-1540-4|plhSbr3oHtTfOlPBD_20vvM_9AG3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|212.7|0.665|14.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12305|plpXuKCZyVBwpPmjhj5uH5ZpzczI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|181.6|0.804|13.76|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', '4-HI-PVK', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['4-HI-PVK', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00757|plruMzPh9X1ZiAzXxY8MHAgWQqaH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', '4-HI-PVK', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|190.1|0.7|12.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|pltM8V7wXYl8yFM5sfGIu7yCJPlc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|190.0|0.4|3.82|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Rubene', 'P3HT', 'Ag']|['Rubene', 'P3HT']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.jechem.2017.11.018|pmD-ZKobDY6-QDKNBjHiABNxa4yt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Rubene', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.031|214.0|0.728|16.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01499c|pmQeUsiWLwSKOtoBBvBtp0o8lXkW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.961|193.0|0.706|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']|['Spiro-CPDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00154d|pmgsLo5JcYK-SGBp9NP7CCVo19Hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-CPDT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.623000173062343|1.06|195.0|0.753|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|pmulwfaf5ns261om46qKbxryR1xQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|186.0|0.46|8.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1757-899X/479/1/012046|pnCWWQgMuuB387q_LAjSAS2BiReP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.8|0.7|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8060416|pnCknGEqJH1qun8jU9ol0QP0eGoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8109999999999999|143.4|0.481|5.59|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp05148h|pnMZCnhtjMpwN0vUKf5JXomNreXD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.0|0.7|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|pnP2t3NT7xMCm3ciVOTCP6XjGVeM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|200.4|0.652|12.49|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|pnQk9oohwYTP7tyrEzUnDxfh3b7H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br300Cs100NiPb99|Cs100NiPb99Br300|CsNi0.01Pb0.99Br3||1.4269999999999998|64.1|0.81|7.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|pnYwafFHme7Ai-q5nQ7Nwgh2UOtS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsNi0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.9|181.1|0.555|9.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'ZnO-c', 'Al']|['PEDOT:PSS']|['C60', 'ZnO-c']|bulk|https://doi.org/10.1063/1.4938570|pn_HwEJi2Rk_5B0AToUYdVmnvWwu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|140.0|0.78|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ph500255t|pnlvi2SjesrqEI73oFPhafRLOaBR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|148.0|0.5|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|po18eil6KC4Q1xx6VQrDy4SPl6pT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|199.8|0.78|16.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c4ta03674c|po1qCS2T1zY1kE6HjSnw70tUaXDV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|31.200000000000003|0.603|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|po6G10LqThzGNYukaqMJhn2aY0a7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|po6V1uF5zfg76aOPMc1MTJNFidf2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|153.8|0.73|11.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|poM6gx6doPhb1PZoU3kYNFTFC6qc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|201.0|0.693|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-OMeTPA', 'Au']|['TTPA-OMeTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7sc03543h|podNUCPshrSQ98zrF3Hs6DG9zJGj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25Cs25F7I43Pb25|Cs25Pb25I43Br25F7|CsPbBrF0.28I1.72|1.850000197267612|0.99|132.5|0.6629999999999999|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|podUCm0OBlBTkUOQkjAFUjbGPr9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrF0.28I1.72. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|158.6|0.674|9.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|poqUnnJXF4ydlIx5tue6wcMZhQP8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|188.6|0.693|12.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|povyhV42ZOYI1UqlHT4fLaENwFDD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.68|65.9|0.555|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTBT-th', 'Au']|['PTB7-th']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|pp3Iz-peJ2Ophk4lUF9KCn_ffHMH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTBT-th', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|pp5HFC48Xh2cZiRqhDdIqVhaG3oc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|220.0|0.74|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226987|pp6b5BGaVXqc45BTa292tmCQ8m4D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.1|214.3|0.6629999999999999|15.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|pp96kKlXf5ExiM9y3CzLHME3Op0k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6200001727424491|1.06|174.7|0.5710000000000001|10.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|ppCfX1Xs3OjY2o3dnErJsNQUFJV6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|172.0|0.589|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.01.011|ppPx0D8F2iTpYZ4O8vlGYw2_wTRE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.5|0.63|10.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2016.03.028|ppd_Fj8EvNotk4NY1nSX41SiSEGN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|135.0|0.352|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b04040|ppokriW_t91PE8TMb5ZWuRnYdlqN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|229.3|0.68|15.8|['SLG', 'FTO', 'ZnO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', 'PEIE']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226956|ppvJ5rpNXpioNi_80QIk64Cjqs_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO', 'PEIE', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.08|143.3|0.62|9.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|pq0TwbCjItEdrsdll86j-BgEU-47|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5300001631456466|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900220|pq0pAFT7UUyQceIem1bL743037_1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.06|165.0|0.802|14.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|pq6ronEWdLo_vKRNk-dr-mDS6n_z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|225.6|0.75|17.94|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.01.021|pqAZ8sOgKOckCxZ0gqJcEyHg1Yk1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br500C500H2976I1455N524Pb500|Pb500C500N524H2976I1455Br500|FA0.048MA0.952PbBrI2.91||1.11|237.5|0.74|19.51|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|pqAkh8T0QnxlBDn4Po5lmU7l8kvQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.048MA0.952PbBrI2.91. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.81|183.0|0.66|9.8|['SLG', 'ITO', 'Carbon-nt', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Carbon-nt', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b10334|pqEXMFGLqWuEwTXdgbGgVn33tMdj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-nt', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.88|225.0|0.644|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']|['PEDOT:PSS']|['pBTT']|bulk|https://doi.org/10.1002/smll.201803339|pqLnNuzXnBeSkD9q0OWJ_szFCJhV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.78|17.1|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|pqM9YL9tYW5gB0F_944di_MXnJtx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|182.2|0.66|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|pqTkZtr6UxIbZsAb3US5eSRSyj6Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.112|224.42|0.778|19.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|pq_BeqErhpKLjWGJRb9vxkROQKto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|142.4|0.6779999999999999|8.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201900375|pqaC3U5odvkSfgA-PzfUvjeioj9K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5500001652782691|0.9|229.7|0.6759999999999999|13.97|['SLG', 'FTO', 'NiO', 'Perovskite', 'Q10', 'BCP', 'Ag']|['NiO']|['Q10', 'BCP']|bulk|https://doi.org/10.1039/c9ta06317j|pqj6676b1bBSlmbFsD4oNRCiWWgA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'Q10', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|246.3|0.79|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201601557|pqjA3o2kqfdHcaOq0AjXJ5stJzD_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|0.24|70.5|0.251|0.42|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|pqjREV__jdIcn3lyGaTQF3kkq7Pa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.1|225.3|0.79|19.58|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|pqll2o4LZ4IcwYwbbb1ii2Ndpy1U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|pqlwYAHqAY9XrJVBwrNeG2R1XW-b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|205.0|0.72|15.8|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|pqqSgZ2n-Wa8A-Qgzryx3t1hyAum|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|213.0|0.7440000000000001|18.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|pr1r0RqGzqT3xZXkUinX38S_ehYN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.52|60.4|0.79|7.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']|['[BMMIm]Cl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20831|pr2NCVRZslRnyZAum4KMspt-5yhW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '[BMMIm]Cl', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.0|0.657|13.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02105k|pr7Jk4EwML7EIT61S5JoBYqycQ8b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br551C950Cs20H4910I2490N1740Pb1000|Cs20Pb1000C950N1740H4910I2490Br551|Cs0.02FA0.79MA0.16PbBr0.551I2.49||1.012|183.0|0.591|10.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104009|pr7alcJFeR_T0ffCQ9q_ATPV_0pg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.79MA0.16PbBr0.551I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|193.0|0.6509999999999999|11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b03902|prAucEQAP6IkyHjEJoXd1UPLamN0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|231.6|0.6940000000000001|17.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-018-9263-7|prLlqPT99HTF_WTukLqhe0x6F_fo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.0|0.361|7.9|['SLG', 'Ag-nw; Chitosan', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1007/s12274-017-1816-8|prLxZLZBPzA9kWQoVW2X2gnlOvTM|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Chitosan', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.0|0.66|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403344|prMMfLk4GHUNWGUX4e0SQiGcb0qi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|238.1|0.59|12.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'In2O3', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp', 'In2O3']|bulk|https://doi.org/10.1016/j.solmat.2017.03.024|prRXSKsyFBduLZCcidOb1UsoxJP6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'In2O3', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.633000174128654|1.16|175.7|0.684|13.92|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|prdpwmWBaWNW03y7qb1Gv1q61Tp4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.35|0.279999999999999|0.3|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|prkgL8hL-sEg6QIBi-P9DVBpOtmH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']|['FTA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|prneBM4jTa3eKbSx8Gdk3cVPr4il|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FTA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|196.8|0.706|14.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DSQT', 'Au']|['TTPA-DSQT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04003|pruSQYNZMeR7myPSo3y4h3S9l5UQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTPA-DSQT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|191.2|0.4|7.88|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|ps7bZbwdNaaVJbaOMG0THPReKgmw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|165.54000000000002|0.7020000000000001|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00561|psNCvQQlccuXCaUOIQxn8d0cYG4X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|140.0|0.55|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895038|psXmcFA8m87mw3fs_G5T83h-EkD8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|psYMCPCEPMP5c-Uu2lPiQ25FXt6e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.06|226.0|0.75|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|pshdQ7Wymwj3oKd4ByR0cW9jq737|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|185.2|0.67|13.12|['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|psx2O30dueYh18gxkOHPMWgoTtW-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H76I34N12Pb11|Pb11C14N12H76I34|EA2MA10Pb11I34||1.06|221.1|0.72|16.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/cssc.201901948|pt0eXKRPrSyMV3WbZuOPFe0z4cql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is EA2MA10Pb11I34. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|164.5|0.741|11.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|pt0p7GS55k0qwI2J52TPLsWD11ML|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|148.0|0.509|8.0|['SLG', 'ITO', 'ZnSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnSO']|bulk|https://doi.org/10.1016/j.jechem.2017.09.026|pt4ezosQSjaE9UKa48f17XmRAg_d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|197.9|0.655|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|pt8Ah35eRSFJD1plaucqu5EKAkkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.134|216.18|0.75|18.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b06526|pt9ct5gUwIhWkB184_T_5P1Bmhsl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.095|241.0|0.78|20.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04246b|ptCl8EYWxid7gdy2xFhOYLm876qL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|187.2|0.6459999999999999|12.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.10.035|ptLMU1_OoYvT2z0Y3V638vFktxv6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.048|64.7|0.3339999999999999|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC03', 'Ag']|['YC03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|ptRXj0jwTrsJn9PJ_JkG0fSOKH7Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC03', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs|CsAgBiBr6|CsAgBiBr6|2.3900002548484283|1.03|22.3|0.6|1.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.202002342|ptXT5gUg_dPpOoJCYVs12WjA98Jm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsAgBiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|222.8|0.836|20.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|ptZPaF_Eo63htSsyFgdXp4FOmhqw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|218.3|0.68|14.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.169|ptaTMF3KOWbNCoPvsODj0FaVeZTK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|190.2|0.69|14.14|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|pteNSGmgLShDrO0KAUHzoUEwxhe6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|96.2|0.42|3.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|ptgYnkqYchTN9IC-NCclNB02q24Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.0|0.71|18.1|['SLG', 'ITO', 'SnO2-c', 'C60-5d', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-5c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02468|ptskOgTa77cyLUWXJiU6MAdJ-a31|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60-5d', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.92|167.01|0.661|10.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||ptw73zuUPinx9M36ugWKryzuI90o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.994|226.8|0.625|14.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA2', 'Au']|['TTA2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|puQsULzqoZxA6LfpyVMy0_wlVap1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTA2', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|191.0|0.64|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|puTAZVVfIPbsDGr5jmsV_NqGKljO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|206.6|0.79|16.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|puV6rGAMX7LvIsS2POcECjEiAMWK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|118.6|0.413|5.32|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|puVgeh3PKb0Oz7gN8NRR8QY2MGnf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3||1.045|229.4|0.71|17.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201804067|pudB1EiMBPAAKPhHElB-iyAQTo0e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|195.3|0.75|13.58|['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2; CoCr-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|pudVfGyqKyAr7_oAeYNFQfwtrlp9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2; CoCr-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.81|18.5|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|puij0KGK1VH5CeBu-KMcxKcb36tp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|221.7|0.72|18.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.009|pujEmd4Wo_BSmVSmIAN8K5Ex3Kxe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.13|127.9|0.6970000000000001|10.03|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|putp8OS6Fi2C9YhGKSk2BKqhcnCY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|140.0|0.643|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|pux5Tv9CarVuXbd9QeHR3sbSEu93|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|204.1|0.5|9.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06687e|pv8eFuWzYbRdZXLJr6y7lDnCJ3UV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.570000167410892|1.05|235.0|0.763|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C8RA03559H|pv9iYW-gA8oduZ6nN49wpZavJQfi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.73|17.3|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.01.015|pvDTIVGL-mrJP9r-2_WKFWuCWKb5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|137.10000000000002|0.72|9.08|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr03181d|pvFc_OIspgy7JeeAm5yX5FrtwVFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH47I30N16Pb10|CsPb10C9N16H47I30|Cs0.1FA0.7MA0.2PbI3||1.12|223.5|0.7859999999999999|19.68|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|pvH97Wv1MmUhKEV7w7nQje-v-fNu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.12|223.9|0.639|16.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|pvM-XjByYzmYZrBn2WZ9EeudWJev|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.0|0.765|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'V2Ox', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS', 'V2Ox']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1181-z|pvM2AX-oA4omWjKr1DC3N9YCEB5H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'V2Ox', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H22I12N6Pb3Sn|Pb3SnC4N6H22I12|FA0.5MA0.5Pb0.75Sn0.25I3|1.3300001418194185|0.78|230.3|0.79|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201602696|pvQ3D0OV_MbkV5Ar9Gdi0eRtlCja|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.908|199.8|0.76|13.83|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|pvSKVTicf-EsneItAgqX3V4QDRVa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Sn|SnCN3H6I3|GUSnI3||0.62|6.0|0.42|0.16|['SLG', 'ITO', 'MoO3', 'Perovskite', 'Alq3; C60', 'LiF', 'Ag']|['MoO3']|['Alq3; C60', 'LiF']|bulk|https://doi.org/10.1038/s41598-017-05317-w|pvZ2DpwTsUBrkRNF1ER93095IggQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'Alq3; C60', 'LiF', 'Ag']? The composition of the perovskite layer is GUSnI3. -Br21C100H515I279N185Pb100|Pb100C100N185H515I279Br21|FA0.85MA0.15PbBr0.21I2.79|1.5600001663445808|1.04|225.0|0.674|15.77|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta07462c|pvhiMkSGQyY_NTEIbaX_pfF0lJtQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.743|180.7|0.56|7.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apmt.2017.01.009|pvi0ONIC8u27GaRrTnLjoYt_Wrd6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.02|169.3|0.6809999999999999|11.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|pvlmqp0Ulp9RaPkdiG1uOkxPc1j8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||20.04|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.134950|pw3a_Qr9Vq7oGI9vPbGJzlCwXuiT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.8|0.716|16.72|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900415|pwUuCtO7RDeXagAWwZ8Fu2TyzpSB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.7|0.752|16.29|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.materresbull.2018.03.027|pwWSX0zB7M0gje9vikRSLg9YPlvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|222.0|0.653|13.19|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|pwfyqQ16AtMo56RWJQxshlHIQfGJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|181.0|0.7490000000000001|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta05026j|pwuV4xJvzUnNXY77yaZnbNr4MBjf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|196.0|0.68|11.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03229f|px1Ws6b9UySwU5Mbxh9vQ-VP_KXq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|187.13|0.762|16.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aax7537|pxDFhD4r8xoKVbf74_OkRQbAFxYc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.37|68.89999999999999|0.768|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|pxFAuC6FSrBZmoehmQLKn1Y7UxfS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|159.3|0.522|7.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501606|pxH1cO606bkNDZcuRf9uNXwOLyBj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|169.0|0.564|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|pxJgbtTNLW54dtyQ3fTf1XfT3KBz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br551C950Cs20H4910I2490N1740Pb1000|Cs20Pb1000C950N1740H4910I2490Br551|Cs0.02FA0.79MA0.16PbBr0.551I2.49||1.16|159.9|0.434|8.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104009|pxRUIghzZWbziwM0ZxrSJDMyAAHu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.02FA0.79MA0.16PbBr0.551I2.49. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.214|70.1|0.743|6.32|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|pxYdqa2qaFPwLOwcXUZB7gLn-ccu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.12|123.7|0.71|9.82|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|pxa1q77_QZEzSPaGE1HmWIdysxh3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.82|158.5|0.72|9.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|pxnHI7WKwuNLDlp2aIET77hDB1Z-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|132.0|0.52|5.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|pxuX7QGvNHJeCjEvQg-ZA-ARwzih|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.31|103.0|0.49|1.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|py2htFSsj-dJT_3ZeOQ4dnWZABEg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|233.0|0.774|17.7|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|py5fhRc18KogqJbZPkIfDxB1L6lX|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||15.43|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|pyFvS4AXN2pGBJxgO5Np2wLd8gXP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|191.1|0.624|11.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta10040b|pyJcKbqdcTWHj5X7M1nYRZginIMb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.0|0.763|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01889k|pyJrcsPkQP63YK26teXCKmzEZeyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.11|232.9|0.785|20.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b18034|pyQm744UhbWHicf6oHJQ0IrsoLKy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM1', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5400001642119578|1.11|195.9|0.643|9.84|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/C8NR00152A|pyYgbu_K8x7aSTF1vzHngYDK2fYO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|pyZKyhs9h-Eia0Fz5g8DOegfAdbK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|116.9|0.529|5.19|['SLG', 'FTO', 'TiO2-c', 'MoOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'MoOx']|bulk|https://doi.org/10.1038/s41598-017-00866-6|pyaxafer3lSZ_6X6MfrHZjfEzQwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'MoOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|229.0|0.65|14.0|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4929435|pybVbozdeAWdAqGDHMOEI53Qzyfe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|193.0|0.703|14.5|['SLG', 'ITO', 'SnO2-c', 'PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IO', 'ITO', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PEIE', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00254|pyc-PaFQ33mqUv753Xp5jD-zXflh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IO', 'ITO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.8|0.78|19.0|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|pyra7wrEFcIQTu597EkTCi8z8pkY|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|171.0|0.62|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Ag-np', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b02799|pz2qE2NmVw1MU4dP_k95KEyObKs_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|176.1|0.63|10.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.08.013|pz9VaiGLQghsWGR63OHUpvEqFwTr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|225.01|0.715|15.68|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|pzUv6VfUEkCgu9ZC9LhtlW3IyOXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|pzZI3FCWA7mOSr1CHeGmG9GDTShB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|195.3|0.532|9.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|pzfd6nhL1h16gs8YgxApNEXBEBRz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C9CaH54I27N9Pb10|CaPb10C9N9H54I27Br3|Ca0.1MA0.9PbBr0.3I2.7||1.07|209.0|0.71|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.053|pzlrLdzsQo5CKzEwM039Wyhmd5up|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ca0.1MA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|118.0|0.625|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|pzm2ZIr3U9tquZ1ze-dVNEIhthws|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H498I300N83Pb100|Cs17Pb100C83N83H498I300|Cs0.17MA0.83PbI3|1.633000174128654|1.04|229.2|0.76|18.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04501h|pznXW2_wxgzviL1F7iYSZx9Hfr7z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17MA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.0|0.73|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|pzwieEPiny382NHNXZT_-1Y_VN8f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|202.5|0.8|17.5|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|q-Av5kVXrGYXRuvL_K2iD4xUm8lU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2017/8107073|q-Ii6Pg1pT_mbdfQsX6XpVhf3FtQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.633|127.0|0.62|5.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|q-NPIPyqlGnC4ZtEeGFZ9UNLUedX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H490I249N175Pb100|Cs5Pb100C95N175H490I249Br51|Cs0.05FA0.80MA0.15PbBr0.51I2.49||1.04|198.4|0.759|15.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'CuOxNy', 'Au']|['Spiro-MeOTAD', 'Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.scriptamat.2018.04.049|q-T2OtnETKDH4zSV_S8Z3QA2R4s9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'CuOxNy', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.51I2.49. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.09|193.3|0.54|10.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|q-gz4D56Onb3U26DQWmgjRPh36YD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||0.71|51.0|0.55|2.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Au']|['none']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|q-h3E10eoZE1g31s2xAOdhvJKsmH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.851|104.1|0.5770000000000001|5.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500003v|q-kk-Qgr5xPyuCWUS6bRReXIu0XZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.099|208.35|0.667|15.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD-4MeOTPA', 'Au']|['TPD-4MeOTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03931j|q-ljeI8dekpEmo4ZD-csV8T3cPfV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD-4MeOTPA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.843|174.0|0.508|7.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/celc.201900532|q-m7oGQpEaeFmRtCL9Q2fB0-2oBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7759999999999999|137.0|0.45|4.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|q0-taNfk0po7hO9yd1zaKKIC9wPX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|139.0|0.54|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']|['Polymer1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41428-018-0116-9|q06_lq-TzArWk4g0qLRsxlYz-keI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|189.0|0.76|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|q06dX8Qn6dPatlZyfqe8pN58Zj4U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||222.3|0.76|17.74|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|q0C0IGM8YtgelvqkoIC05fbhBBMl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|230.9|0.695|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MPTS-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MTPS-SAM']|bulk|https://doi.org/10.1016/j.mssp.2019.02.018|q0C8gk64g3Ih8witJw2v5kqb6iyJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MPTS-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.931|124.0|0.72|8.4|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|q0CwElV9qC9EZqPMgeOrbyNbYGNI|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.421|91.0|0.7170000000000001|9.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.104015|q0H2g_7bQHXj3CfXeZJva3C-WY5_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.862|162.0|0.54|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.004|q0SRmeRYlHisKEmJXG-Ts_c0ea1s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|171.29999999999998|0.53|8.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.01.102|q0Zhfpl6zskjcgewVtWWOPWIOdr0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|164.07|0.511|5.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']|['Cu2O']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|q0_WNrANMtVFKaJpjfIH_Lkv7KtZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Cu2O', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|119.9|0.6809999999999999|7.3|['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2BaSnS4']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|q0_lkLVhekBD8u4gUmE9nCM_jtBM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.97|78.0|0.5|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000014|q0j87Siz-08D2thUAkKV6sEyny1n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene; TSHBC', 'Au']|['Graphene; TSHBC @ 5:1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06493|q0kQsrfDJ68-QvoOW9dSceHW0IXD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene; TSHBC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|199.3|0.48|8.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|q0w6elydcy6xT167pP71vsA6IQfy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CCsH5I3N2Pb|CsPbCN2H5I3|CsFAPbI3|1.5600001663445808|1.04|221.1|0.6779999999999999|15.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227484|q1-SwECSQy9Qe2NDuLLMcR1X2Rmm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsFAPbI3. -Br180C94Cs6H485I120N173Pb100|Cs6Pb100C94N173H485I120Br180|Cs0.06FA0.79MA0.15PbBr1.8I1.2|1.780000189803432|1.23|179.0|0.79|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature25989|q1-eKEyRsZBprjng7LqvVBUg6EK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.47|220.35|0.465|4.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||q13omqs31I053jvCQPNbPyHT9f6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|164.89999999999998|0.29|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.9b05032|q15MO3JyDdUvPPPDBLuVe-_W2t_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|201.7|0.76|16.26|['SLG', 'ITO', 'MoOx', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoOx', 'F4TCNQ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01004|q1Bq6yk82yPCTZMz9J2dgJrJiAR1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|241.0|0.7759999999999999|21.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|q1MZIkegoyRrt1lAIcaeARwH86jC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C100CaH600I300N100Pb99|CaPb99C100N100H600I300|MACa0.01Pb0.99I3||0.96|184.0|0.6779999999999999|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|q1MbSU7DzrfcOuhJH-IjUMK3gsoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MACa0.01Pb0.99I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|176.0|0.66|9.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.5b00077|q1Oi2XTQeCh5fuQoUcRROP_c0mln|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|193.8|0.594|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PARA1', 'Au']|['PARA1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2017.07.037|q1Sf5tdb6reZ0gV7vEfOjf7oh14m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PARA1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.71|122.9|0.38|3.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTCBI', 'BCP', 'Ag']|['PEDOT:PSS']|['PTCBI', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2016.11.143|q1UmObs4i314tR7q17EgrhKb2Bov|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PTCBI', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7Cs3H42I30N7Pb5Sn5|Cs3Pb5Sn5C7N7H42I30|Cs0.3MA0.7Pb0.5Sn0.5I3|1.280000136487861|0.39|149.60000000000002|0.504|2.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C6TA07712A|q1YOSDiRELX_ge1OF0vnbkVVxZR9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is Cs0.3MA0.7Pb0.5Sn0.5I3. -CsI3Pb|CsPbI3|CsPbI3||1.19|138.4|0.653|10.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2019.104130|q1jghE65ShWSfu1nWcykZKhE4Qzw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.07|248.3|0.752|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']|['SrCl2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b20054|q1lRZY6t8Bcc6-VeaaqW8e_8pufd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SrCl2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.2|0.679|15.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700377|q1nN6WCJ56eR9kCF6nekcp1E3f5k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|229.8|0.7609999999999999|19.43|['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c; SWCNTs']|bulk|https://doi.org/10.1002/solr.201900415|q1nWMZHaJyDewh69Bk2gRJf4_vr0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.43|56.0|0.52|1.26|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c6se00070c|q26pS_dHCLtDBwWj7S9ZrERViRLm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb12Sn8|Pb12Sn8C20N37H103I51Br9|FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55||0.87|254.4|0.78|17.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|q2ERAvpz8wYjoCMxe4e1W990DBUX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|215.0|0.6|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Sn']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900146|q2HFihZA5pnIRtoSSmPtUwlCPTvU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Sn']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb9Sn|Pb9SnC10N20H50I30|FAPb0.9Sn0.1I3|1.430000152482532|0.58|185.7|0.301|3.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|q2ZJq756cqgQ21Fgig6eLCNLQWQP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.9Sn0.1I3. -C16H32I10N4Pb3|Pb3C16N4H32I10|(BZA)2MA2Pb3I10||1.0|44.6|0.36|1.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.jssc.2019.07.023|q2bNTum1uD3fHVFtVrZAHfnu5Rj3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (BZA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|42.9|0.3379999999999999|1.53|['SLG', 'FTO', 'CdS-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500059v|q2yRIkGq49PZhPsBjHphBgZ7JATV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.0|0.59|13.0|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|q356pWqxt_dSO41Gi4pVDTNj6w2V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|131.0|0.74|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']|['Polymer4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41428-018-0116-9|q3Rx64UyTB49P0s3Z_U45BDBSSDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.631|74.80000000000001|0.79|9.64|['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']|['NiO-c', 'MoOx']|['ZrO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|q3bgObAxMC9q_MJ0H61rb8wcajva|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'MoOx', 'Perovskite', 'ZrO2-c', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.006|216.7|0.74|16.1|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-PDI4', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['TPE-PDI4', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta06081a|q3ewPR6y-YAZVZpjjkMvs6vmv66x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'TPE-PDI4', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|195.3|0.597|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.8b01650|q3xejKRjEbhXV6YdBA1x0yVcKJE3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|219.0|0.58|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.057|q45FzjVFqJQgzwEP15_0F5ZoI_Wn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C100H543I261N157Pb100|Pb100C100N157H543I261Br39|FA0.57MA0.43PbBr0.39I2.61||1.06|237.8|0.728|18.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'CdTe@MAPbI3-QDs', 'Spiro-MeOTAD', 'Ag']|['CdTe@MAPbI3-QDs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.035|q4O3pAdK0he8XQ5HK3PK_puolajS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'CdTe@MAPbI3-QDs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.39I2.61. -Br3CsPb|CsPbBr3|CsPbBr3||1.14|46.1|0.67|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2018.03.009|q4Sci5oSLGk29WQwEeNe6v8y3skd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.991|155.2|0.55|8.45|['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03240g|q4VwOeLfc8KONT9ieg7h3a4Z05Kc|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPb1.0I3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.455|5.8|0.417|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.188|q4mQb1dbjfPXPTf_31l23zeBlLQm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.07|249.6|0.7609999999999999|19.83|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'TMTA', 'PCBM-60', 'C60', 'TPBi', 'Cu']|['P3CT-N']|['TMTA', 'PCBM-60', 'C60', 'TPBi']|bulk|https://doi.org/10.1016/j.nanoen.2019.103962|q4mbxYl5CLpalF_nVkL-i_UrH0qT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'TMTA', 'PCBM-60', 'C60', 'TPBi', 'Cu']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.1|0.69|14.57|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|q4mjVS14xnaDt6UwWx_xhbtcqR3B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C100H525I276N175Pb100|Pb100C100N175H525I276Br24|FA0.75MA0.25PbBr0.24I2.76||1.039|225.3|0.6409999999999999|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta05378a|q4so3-tqNQwkEaa7hvPfSvRoA46b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.24I2.76. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.9|0.684|14.49|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|q4w430XJcPCCMFRRcCPBJwlo7_Zq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.5|0.76|16.53|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|q4xrICrbtjrLPSASzaNZIB2aPmvv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.79|18.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PT-DC', 'Ag']|['PT-DC']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc00331b|q52uDL1BuA8Az4HJy5VLbw29HfqN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PT-DC', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H30I13N4Pb4|Pb4C7N4H30I13|BAMA3Pb4I13|1.6000001706098266|1.09|147.10000000000002|0.6409999999999999|8.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta11744j|q57GQtYUeaPcycGJeBfe81gxX42q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BAMA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|185.9|0.7070000000000001|13.27|['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|q5CWcAD11dVjzj9RN9no5HJe0vrc|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.72|22.6|0.206|0.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.027|q5FldgXvOzZxuT9FQJP_ozZb8WiR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.75|17.2|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c6ee02373h|q5GL4SGoZhoclNBwFP9x_1QWVz2h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75Cs24LiPb25|Cs24LiPb25Br75|Cs0.96Li0.04PbBr3|2.2700002420526912|1.444|65.9|0.752|7.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|q5MzP4s49SVGDF-uSPze8wnX68k5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.96Li0.04PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|183.5|0.66|10.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01909|q5RPAXi_xfqqPbC8sdp_prrByaZx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br40C90Cs10H463I260N167Pb100|Cs10Pb100C90N167H463I260Br40|Cs0.1FA0.77MA0.13PbBr0.4I2.6||1.083|219.1|0.737|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V886', 'Au']|['V866']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02242a|q5SDc5aVYN__jfgd2AF-Rw4x9jJV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V886', 'Au']? The composition of the perovskite layer is Cs0.1FA0.77MA0.13PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|181.5|0.75|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc10608g|q5TX7GqtqstlPlEW048OzFvdLRdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H10I5N4Pb2|Pb2C2N4H10I5Br|FAPbBr0.5I2.5|1.965000209530193|1.202|142.65|0.5589999999999999|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|q5Zr-dU4a4vCpYYGph7Lzzb-xYcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.5I2.5. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|218.8|0.752|17.65|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['3-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|q5ocbp89SpC0q5iwLAajNMQThNl9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|203.88|0.75|16.18|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|q600lqbA8ck0KJqi__X1soyKp0Z8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.0|0.605|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.062|q63EEKH2jjw7qjmdFMRqzQGQod9Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.92|0.7509999999999999|14.66|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104186|q6DGhKBGTVG4wQJrUu2FOO3ZlnRD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.04|228.6|0.7|16.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|q6ESniZEiUN7H9tT6D2GLlHhkdIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|213.0|0.723|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00866-6|q6RjZ3R8DEHcv9UP1uOFAuXJ_dkV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I70N166Pb100|Cs17Pb100C83N166H415I70Br30|Cs0.17FA0.83PbBr0.3I0.7|1.7200001834055632|1.219|199.9|0.8|19.46||['Spiro-MeOTAD']|['SnO2']|not processed|https://doi.org/10.1002/solr.202200134|q6pUlo-2EdIYKjP2vcom6zh-12hi|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I0.7. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.93|137.6|0.54|3.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|q6qg4W3qO1LAk2RLIQdaJ0vm52MZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.033|218.7|0.7190000000000001|16.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|q6tuyGhoFVGdzel8FM6rOpxanaM1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.075|215.0|0.69|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b18082|q6yBnK5vsStJ0WB_7qKWtRlcWrH3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|217.5|0.72|16.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW4', 'Au']|['CW4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04405g|q6yPPs42vjyT44YQFkrN2RdNhrEw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CW4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H464I249N166Pb100|Cs10Pb100C90N166H464I249Br51|Cs0.1FA0.76MA0.14PbBr0.51I2.49|1.6100001716761378|1.11|225.0|0.6809999999999999|17.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee03513f|q7D7m_PqlUgHwWRCejAm67zqjtNt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|229.0|0.66|15.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz500113x|q7KDYqts4fih4Bbl1M-Pw9GqasQ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|186.0|0.6|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'Bphen']|bulk|https://doi.org/10.1038/srep46724|q7NBfahfxRZIkOdUezs5KJz6jJ7J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|225.0|0.5920000000000001|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|q7T7UkwMDWUkKqgj_bZ85huFogSo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|174.5|0.7170000000000001|11.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS', 'Au@SiO2-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7se00472a|q7W7NiFywkcxVGUN-Qr3C4oEz88H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|183.9|0.66|13.36|['PET', 'PEDOT:PSS', 'Ag-nw', 'SnO2-np', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60-SAM']|bulk|https://doi.org/10.1063/1.5042299|q7acydK-VdAii3ywmAlGgd9JD9MA|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'Ag-nw', 'SnO2-np', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|156.6|0.73|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|q7eUxxynoair23HNhBLEJXyXEPe6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C20F2H46I13N6Pb4|Pb4C20N6H46I13F2|(mF1PEA)MA4Pb4I13|1.6000001706098266|1.064|139.8|0.494|7.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|q7iVYbaoCk0UsQDFjfnmX60jZobW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (mF1PEA)MA4Pb4I13. -Br24C20H120I36N20Pb15Sn5|Pb15Sn5C20N20H120I36Br24|MAPb0.75Sn0.25Br1.2I1.8|1.5900001695435149|0.91|172.5|0.76|11.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|q7l2qpCTVP-vd8C8r_EwsNMp9TDi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25Br1.2I1.8. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|229.0|0.765|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2019.08.012|q7z53oBV29KbFX14t2js2aPEWzCG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|140.39999999999998|0.49|6.53|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|q7zXUUAAgf08IMiJjHe5IFpVOJdd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|132.0|0.56|6.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|q87dlwqGqsqmDLkTTAKbPMcCKzUN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.84|171.8|0.53|7.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1021/nn505978r|q8Jnk8z-IYecLLta_SphFpojbAjm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.013|207.0|0.7240000000000001|15.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-07218-4|q8LhValZ4zritrZaQwmuANLpx8bm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.85|130.7|0.3429999999999999|3.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|q8N97eQ-bCbr9GcsS5dhtVAjinhb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|164.3|0.603|10.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr05042a|q8OPFMAhF8Bu6daaTNnPkzZoBvJ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.0|0.66|12.8|['SLG', 'ITO', 'PPN', 'Perovskite', 'C60', 'BCP', 'Ag']|['PPN']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.07.024|q8ZyXSUeu7GwIxeXTRkmOFpT659K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PPN', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.86|158.0|0.6779999999999999|9.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|q8d-h9BY-yIbg0GJS6h_xI0_4zUk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.09|216.5|0.76|18.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|q8e0DFHRd_GOWmQjXJaxxapiiY74|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.87|151.7|0.51|7.63|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jmst.2017.11.003|q8fAJOxrcdwfKy1dGHbVxZpb6_fb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.104|203.1|0.523|11.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD-4EtCz', 'Au']|['TPD-4EtCz']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03931j|q8g_KsJ3ImBOmmr8TV85iKZck5SQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD-4EtCz', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|134.0|0.496|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']|['TPD', 'HAT-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00149|q8ivWpBzX_1QQOqDRLinGFXTOADK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD', 'HAT-CN', 'Au']? The composition of the perovskite layer is MAPbI3. -BiC3H18I2N3|C3BiN3H18I2|MA3BiI2|2.2000002345885115|0.04|1.7999999999999998|0.38|0.003|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201501978|q8lNHU4Y56GxuCXz7EaGKML1YFaY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA3BiI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|105.0|0.7070000000000001|7.1|['SLG', 'FTO', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuSCN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.033|q8t2MrxyWurutak6dBqUJGsRxD8v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CuSCN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|201.8|0.6829999999999999|14.44|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee03275g|q97JAz8gKf7PoZnrB8kdtEfSacKn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|215.3|0.7809999999999999|18.36|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|q9D_1iqOB0v4RjSmwUz1_GP_Gjh0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.41|195.8|0.71|5.78|['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['LiF', 'PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|q9erONBnfYYpL6jfKs11q6iueLIf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'LiF', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|160.0|0.77|13.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|q9i9e5L2veKZIEBsW58mwz2hwDI9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPb1.0Br0.6I2.4||0.89|161.29999999999998|0.79|10.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp03995a|q9rtqFETj94ANDjEDyka9GxuE9ay|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|125.0|0.51|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/aenm.201500569|q9tLI8aHKnHkyIY58fZl8T6jcEkc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.5|0.637|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00120j|q9tnLaLHbjM__RdsMN44JW-QJy3j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||0.9|192.4|0.701|12.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|q9umMKyNb16gOu_0MWAy7IBsVQR1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -Br510C900Cs50H4653I2490K50N1647Pb1000|Cs50K50Pb1000C900N1647H4653I2490Br510|Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49||1.11|212.3|0.764|17.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsami.9b07610|q9v6M0ewxxk-FMYeOwlxa3rusJy1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.0|0.696|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|qA43Fla_jyXYJFCOhnbk3uh0xCHt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|195.6|0.62|12.3|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03148|qA6fPdLEr63GsrRuJiW0wlM1yQv6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.87|182.0|0.76|12.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Cu']|['NiO-c']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00926|qAKV0zbyrsokQ9aM_Df1U0iLgVH4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO', 'Cu']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8420000000000001|176.6|0.605|8.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NCHEM.2324|qAMxYAqg3ptBOQhtyRq30H_rM18P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.4|0.67|14.92|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.011|qANi0B9IrArP-GNpwEHqeynR4d2S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.5|0.7|14.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|qANkm13RkOq6dcGBEQBLFU3-lOMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/12.2274438|qAO5K4BlgkOzWjE-o5VykBRzf-7B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|229.2|0.72|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|qAPnnIKNSYmylZCNUEBx-l6EcRKG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.386|158.1|0.616|3.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|qATC-nB2kMYUi6t8RVZYtAjWQnBH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.3|0.79|18.1|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|qAWsL36eq3NkUrzm4P7xvrXUdqIu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.98|231.6|0.64|14.66|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900209|qAYO6LdTWIxqdejkIllSfWTNrcH4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.128|220.1|0.736|18.31|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|qA_8bIz1PzdlZIHmBa810A8DMWsA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|195.3|0.63|11.46|['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|qApfl7tVq0Qi60hW5BeY2jKRbokJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.418|50.1|0.72|5.12|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['Nb2O5-c']|bulk|https://doi.org/10.1016/j.solener.2019.08.069|qB1J06wgmoeUZQT3i9SfDOpd_ZbT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|198.1|0.789|15.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b01282|qB2-7gRfqDiffZVZutG-wR9ubU32|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.0|0.7070000000000001|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|qBDgmrp1HSqJmRMudn-DpIVE-SJu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|201.6|0.77|16.34|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201900207|qBDjQpmjif0B6wzWio2gBhcGKMxs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|237.5|0.81|19.8|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.scib.2019.08.029|qBHoVIhRcG7iMt6yn0hwLSGetZbw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.1|0.73|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|qBNHdITiL1aMofRj8BitP16GEmM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|215.0|0.701|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|qB_SYNvKUw0NxhkUiMfreYIq6_CK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|202.0|0.65|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|qB__7gdELb8XJE9f5iuHLiAYuHPI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|169.0|0.62|10.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|qBbGu3ZqpE_t05wUWX6FRsoVS66k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H15I9N6|C3Bi2N6H15I9|FA3Bi2I9||0.45|1.1|0.4589999999999999|0.022|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.11.052|qBuhGOYB8hgw4mFg8ZRGIykcdP4S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|203.5|0.76|17.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|qBz03h_2zVSsHShl1GUULvMp6X51|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|181.3|0.74|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.141|qC3PGb7-5XmgEDib5kyD6vl28W4Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|195.0|0.53|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta04267h|qC4BRIn9-Dg5_dvJtq9WPN6vqQN-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|205.3|0.5|11.7|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']|['NiO-np']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1002/adma.201504168|qC4OWUSp1Kyk2iEtXFFzYyO36IYA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.0|0.784|17.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|qC8mBP1A3sFffbnfg3MAO8PzsD42|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|2.400000255914739|0.97|62.6|0.47|2.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|qC9R5SzEjOvAhJqJPJm-11oz6wnI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.86|191.0|0.696|11.5|['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2016.08.009|qCCS7cnjB1kegIfOrhiWeAevPV2O|a perovskite solar cell with the following device stack: ['SLD', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|229.6|0.71|17.11|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jechem.2019.10.006|qCH-pmcVq2Pp_1YQnXchYSLgstij|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|203.0|0.41|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|qCIugVge8xbJEjfrZmDE-A8-awCR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|217.0|0.74|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.04.123|qCOCiuFiQJhbzQp-5pQnAP1kd0yX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.655|120.6|0.396|3.13|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05955a|qCQPyD6AWO0mBhV0XPUguL_2cWMp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.899|171.0|0.74|11.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3TMAHT', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'P3TMAHT']|bulk|https://doi.org/10.1021/cm502864s|qCdd13KH_ye1GVIxiMuO6xUh5rfX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'P3TMAHT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|223.2|0.75|17.41|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|qCt5Pj4WU0gxHco0m68sS7_ihSuH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|161.4|0.627|9.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|qD0CEw0jQdsb1RR0I4vRSTYChqyH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|205.0|0.3|5.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|qD1ohw8Ti6s7oFGTRZpuY6JDxQCe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4600001556814663|0.78|89.60000000000001|0.56|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05149a|qD3CSTkDnBYKOetWq2t9tXGb_97e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|137.5|0.436|5.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|qD4T_tFISZuKp1pBHh9Xg4tBi2xI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|147.0|0.7|10.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.097|qD666zXmKFtdednjF-CR5sytc17N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|177.0|0.45|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|qDEz3jFDOb2gZMxTnU5JYDcz_DYL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.044|214.34|0.632|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|qDMrsEcSuC_7NGMHTOO2RH223oQC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.82|103.4|0.33|2.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|qDSzswbP6YCF9hXDUOR7tN1CfevG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|168.0|0.66|11.4|['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']|['TAE']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|qDo0qg3VrwbiR7emYgQamERFhk2F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7700001887371206|1.25|141.8|0.74|13.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1039/c9ta07143a|qDpabZbgRBT9pgVG2PmZEn9lGibJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|181.6|0.613|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600674|qDrx4PBY4GmcIkUCeqCqLe0XUvW9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.0|0.723|15.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02105k|qDuqCgb8Tyr14Fp4f0qPMAV6EWWj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|148.6|0.49|7.43|['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:SAF']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.007|qDvSsQmFRT69T9aE-EJFO1n3Mmhp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SAF', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|228.7|0.62|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|qDzJIhUuhObQNRSjnb0ndLsT9k5x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.05|29.6|0.721|1.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|qE0wGuW6gJ3AKSXVcdDPXOvGvkHC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|||||18.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1039/c8ta01192c|qE10mvDQVaS8XtZ_jenFkLzyQgoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|171.29999999999998|0.5589999999999999|8.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|qE21XBaxzmCZ3tQNsX1rCaDPWVIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.01|190.2|0.74|13.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZnS']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.199|qEHQ07-MoLFNNPf9CxdFYDzex0Nm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|212.0|0.65|15.4|['SLG', 'ITO', 'P3CT-CH3NH2', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-CH3NH2']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11977|qEKwmsQ747y7RmMfdRDzJTOhbO-2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-CH3NH2', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|105.0|0.57|4.0|['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']|['PbS-QDs']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta04272g|qELEc33rTn8Na4pdXKdDOeGjuIvt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PbS-QDs', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|204.31|0.7|14.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|qELZiHutcA7wd0eW8Ns0lkeillYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|147.3|0.523|7.26|['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoS2']|['C60', 'BCP']|bulk|https://doi.org/10.7567/APEX.9.122301|qEV2RZfVaQcPjbI3YSQYwrGyJSLu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MoS2', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|195.8|0.73|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-TPM', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601683|qEWPpypis87VknUfK9CWJYl5vtEk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-TPM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|qEWsH52D5yfi2g9NKETGaXqNOIIE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|183.0|0.723|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|qEjSe4sB5EZ6F2OlLVUtrgq0eLOR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.8|0.79|17.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta06152d|qEju0h69gUigouqped2uQIucTb54|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|179.89999999999998|0.7|13.26|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700169|qElBLumRKZtTXysS43XgAgfU4OiY|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C89Cs11H460I249N163Pb100|Cs11Pb100C89N163H460I249Br51|Cs0.11FA0.74MA0.15PbBr0.51I2.49|||||19.01|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201707350|qF0nLpZqc8xZPtNOS84yul_XKYEK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.11FA0.74MA0.15PbBr0.51I2.49. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.843|41.1|0.616|2.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTB1', 'Au']|['TTB1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|qF1wWTjn09xD-SIGjyzdt50L-9SI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTB1', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.7|0.79|16.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2a', 'Ag']|['PEDOT:PSS']|['Fullerene-2a']|bulk|https://doi.org/10.3390/ma12081314|qF4m8ccAOrjW7cK0ONUKaQRrv2tB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Fullerene-2a', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.42|5.0|0.17|0.04|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|qFFcnlAU5STB4WIR3M6ws7gPMlkz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|157.5|0.531|5.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|qFIJzt6UtfKX6B1TaniOY-pBo-6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|174.0|0.62|8.61|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['none']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/jacs.6b00039|qFYUrCAZkHB96httvW7N9VafJD9P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|140.0|0.55|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja411014k|qFcxHn3XuGy2KwvjrXYrCrlGJtUW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703178|qFm_wa3WXD9AaIp9mZBl-Oz3ZxaW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|204.7|0.591|11.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|qFoLiVqSvR3wCK2Cide_lAPfb5oK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H48I13N6Pb4|Pb4C20N6H48I13|(PEA)2MA4Pb4I13|1.6000001706098266|0.947|126.9|0.669|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|qFuV3L_a_rF3xHA5LcFnncensQNp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|189.2|0.728|13.8|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|qG7S1dTR7Vj3x419XAvHlU9bY00t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|190.0|0.69|14.59|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|qGJ6thHMXw-nF3yE08eOYVggnhNw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.73|17.53|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|qGZbO85ljZUbi-lK1DiPiH4oaTN8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|4.0|0.39|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|qG_P2EvCnY_z6Wx7xmLNXPHNRmH_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|qGb1_5Th3D6hdUxsV5auD0PV6pjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.055|173.92|0.585|10.7|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|qGfRM53F0sqXA6LOmEIcfx-kc6jg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.6|0.73|18.09|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['CuSCN']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/C8TA07332E|qGjklxHWgPILitupR_pky5chTQHY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4|1.6160001723159247|1.14|233.0|0.7609999999999999|20.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17833|qGmcqWcowrRF0sCquluWi6sATo0Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -Br3C19CsH95I57N38Pb20|CsPb20C19N38H95I57Br3|Cs0.05FA0.95PbBr0.15I2.85|1.5500001652782691|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aau5701|qGowxTYLionXVhFq5T0HsfenqmLN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|208.7|0.5|8.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|qGr1EP7cJ6QUwk_FXUQ_ZNyE3Cif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|196.4|0.6|9.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700030|qGtJYIIv0zs74fyioOV9soAWqhLe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.933|208.0|0.58|11.24|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['NiO']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|qGx7ctNpmMK8oskiPgQsMi-6vRBD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.46|168.9|0.31|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiS']|['Carbon; NiS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.03.161|qGyCtK2pyds1Ei74HshQAIz0srtj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; NiS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|135.69|0.6779999999999999|8.37|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|qH8T_TEJO8b4NShSPvcVmPMETeXj|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.097|220.7|0.78|18.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Li-TFSI']|bulk|https://doi.org/10.1002/cssc.201601070|qHAE2MC7y9hGSooEbsnDhTRyoquO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|171.0|0.55|10.2|['SLG', 'SnO2-c', 'Ag', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'Ag', 'SnO2-c', 'SnO2']|bulk|https://doi.org/10.1002/adma.201606656|qHOCZsKoTyFOjAYDjcW3UtnTsEUe|a perovskite solar cell with the following device stack: ['SLG', 'SnO2-c', 'Ag', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|205.0|0.545|11.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|qHR0OXANkwvwMsziBSamTo_5v-cC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|123.0|0.61|7.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.12.032|qHYopTB4CTTjeur5NOszH_xCUuv8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|234.8|0.36|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|qHeAv_IQTqoFbkVUdjklwhjm9-gQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.7|0.68|15.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|qHf19BaGE2p-LaQHeQDKCMSCPxGg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.89|222.9|0.44|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.048|qHurgD8eIe8tuEkJhhT6vjs2nplm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.044|156.7|0.629|10.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cc05444d|qI5Aw9LjRUMXXUowr0Ya-CAr20i0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|||189.5|0.581|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']|['DIPO-Ph4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700448|qI6pI2qhqScHInSlL9QfWkTqaSPm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DIPO-Ph4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|198.0|0.67|12.14|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|qI7PZuxIep55PvLQskzm2E_5DP5V|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|227.3|0.73|18.47|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|qII-4uf-kwB3o9nSFGzxCjNxJNhd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.04|235.5|0.7|17.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.03.073|qIK6McAsZmlIZzEwv6VEfU5Roh-N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|152.3|||['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'ITO']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|qIKETuN_pqgod9ds4nlmLY2aoB6A|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.109|0.7000000000000001|0.243|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2117-6|qILr2CalWb5PEVgFJ2Sv1v7Iz6KU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.66|15.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05298j|qI_okjps4DDGOaEv5lFueIMNx3p-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|183.59000000000003|0.775|12.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|qIdpGQYDjKWJrLJzS9wAiPGGhJLi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.108|218.4|0.73|18.12|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16632|qIfHCwwJAuspNqLGNbMm51Kx4TDc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|220.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|qIowyBQ9PSj4EUgc_KSlJiyQ5cz1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|170.0|0.49|6.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; SWCNTs-PhOMe', 'Au']|['P3HT; SWCNTs-PhOMe']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201602803|qIpqORdCNN5fAPalO5ztVp6yKFPH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT; SWCNTs-PhOMe', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|227.0|0.7759999999999999|19.03|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201808855|qItQaeJ8FImTlaONgfgcIM_Ea94f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|129.4|0.49|5.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|qJCotaJzDtuxv6g3NavW7XivjZzj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.01|180.8|0.685|12.51|['PET', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuPc', 'PEI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|qJSrJqQxGRXeOTrh3fvJGc2fLUwa|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8029999999999999|195.0|0.47|7.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|qJjD9rYJEBi3FwUWafu-wIKRwjWk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|142.0|0.69|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|qJmwB4pifQeFKIZG_u1eNburq-M2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.5900001695435149|1.078|219.0|0.713|16.84|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7cc07534k|qJp7vcLcC_1aVSFkoVzxiAb8yW_L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.6|0.64|11.96|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-24436-6|qJtbTmZXeRQLq18Nh8oHPRbkqgH3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83|||||15.9|['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|qJxCcs65E8bgV4wpXJYmQ4gAhZL5|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.63|139.2|0.519|4.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12023|qJy_cLrYBojH4L73ytInIXx3yFbU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.04|155.1|0.8109999999999999|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|qJyjNeF8rmtj0m51GwKiqeKiej_G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|167.60000000000002|0.332|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|qK52RVlTRYvr3rh_0NbXFmtXZho8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07625|qKB4jnxV5sxPjZBwnBe0YzqP_dII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.0590000000000002|220.0|0.78|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00786|qKKynE05iN4Vdw-KeCxAqks0Qd-m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.31|65.5|0.78|6.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Phosphor-QDs', 'Carbon']|['Phosphor-QDs']|['TiO2-c', 'TiO2-mp', 'Carbo-QDs']|bulk|https://doi.org/10.1016/j.electacta.2018.05.087|qKR-85HlTMjUMws0PhrdIRWGJOqi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Phosphor-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.5|0.6579999999999999|15.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.067|qKTRrppbTXSz-E5JzRyo2Uh31-go|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.06|147.0|0.757|11.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201802509|qKYE5MzHUnCBBCIAr1jyz3jigeP-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.635|206.0|0.54|7.13|['SLG', 'FTO', 'TiO2-c', 'PS:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PS:TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1809-7|qKfY3Z2oFfavs7mmZ7Yqh-FBufYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PS:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|196.5|0.73|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201404147|qKjQNr0sneesHgtvNA6GNNZ-wmI3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.92|236.3|0.68|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|qL5K2d412Jq2wH9y4jkfuA-AOmjr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||0.74|242.6|0.514|9.44|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|qL7Q_FFDms1oLjJU4WCA-FtA8PbW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|218.0|0.81|19.5|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|qLFi9P0dm79gjqOC_vUlkgxSVY7Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|151.4|0.5529999999999999|7.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp00073d|qLVefxkvfRFe_Pv-HxdsPVX-XGj9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|226.4|0.708|15.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|qLYoCEsYD4rfhYw1ZzfX5InPKbHe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|190.3|0.613|11.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|qLcwYZC2CLjnXIimIrTCDswxANQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.084|220.2|0.754|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Au']|['BTT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201801734|qLo8dbS1clDbrs3uo4_18m-R4guN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.976|214.2|0.65|13.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|qLrRPweFazjLZyUpZ2Gx_Qhj52sa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|177.0|0.605|9.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr06033d|qLr_E0POdCgkIoWiUHoc9w4S_AJz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517N183Pb100|Pb100C100N183H517Br51|FA0.83MA0.17PbBr0.51||1.1|224.0|0.69|16.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'EVA; SWCNTs', 'Spiro-MeOTAD', 'Au']|['EVA; SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15396|qM-YdhsnDhFGYw30d3KL4fa2Yqqb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'EVA; SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.8|0.7|16.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201800625|qM-ZWVdenKxzv3gDXQsiQeWGif-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|173.0|0.63|10.42|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|qM5Ttb53kBJ1P3JGLO29urr9jVIM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|176.0|0.67|11.3|['SLG', 'ITO', 'Spiro-TBB', 'Spiro-TBB', 'Perovskite', 'C60', 'Ag']|['Spiro-TBB', 'Spiro-TBB']|['C60']|bulk|https://doi.org/10.1002/ente.201700002|qMIGJXtm8SjJGRcYnHQiXJ6JMbxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TBB', 'Spiro-TBB', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|217.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.electacta.2017.06.032|qMKBbzw-sWvabKF5tPJEe4e0dXNt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|116.0|0.66|7.0|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|qMLMHDCvHpvf_-L_qY0PG8BFEsOP|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Ag30Bi22Cs3I90|Cs3Ag30Bi22I90|Cs0.3Ag3Bi2.2I9||0.72|29.6|0.5|1.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|qMLbgVT-Os7mRfioBaFqVMO9SuHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.3Ag3Bi2.2I9. -Br2C20CuH120I58N20Pb19|CuPb19C20N20H120I58Br2|MACu0.05Pb0.95Br0.1I2.9|1.6000001706098266|0.971|213.1|0.821|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.022|qMMOBAO2KLbwkb4V4UdEv3xiL6XS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MACu0.05Pb0.95Br0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3||1.036|234.8|0.637|15.5|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'Zn2SnO4-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.153730|qMNfNd6LCF2uBR08DEsf9XS7s27M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.0|0.597|9.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.01.008|qMNwtXlpiWYHHPV12G8YepgjVAIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|91.0|0.52|3.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941226|qMT-lUp20EJ5QIWcCa5fsXLBrkoy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|1.15|159.70000000000002|0.66|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.9b01920|qM_H3qxWqmkwY2t8wvO3d5FeMg-s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -C36H101I52N23Pb16|Pb16C36N23H101I52|(3AMP)FA0.75MA2.25Pb4I13||1.1|129.9|0.787|11.24|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|qMfg7akNANQue4SlhdjVgL3hEYLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.75MA2.25Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|143.8|0.56|7.49|['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene; SrTiO3']|bulk|https://doi.org/10.1039/c5ra09001f|qMj1NhHeUYzwYgd0bQRZtwnFcOI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene; SrTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Cu']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01292-2|qMj3Tnw1MH8AxRVRj7RzUsWDNhs7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|152.79999999999998|0.54|6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|qMkprDf6RpvhYdu9D2gmgI-oBLUc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|25.5|0.35|0.62|['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta08996d|qMrSs5XYcjZB06zY2oVZSRVTWwg4|a perovskite solar cell with the following device stack: ['SLG', 'rGO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.021|197.5|0.695|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201807420|qMz5Aps95LvD3zPcxZhomnmm8q9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.0|0.78|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b03225|qN3SnJlH0F6ZPPIKq5amm5RWSXEi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.5|0.725|14.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nj04978a|qN7MIEYMKnYyafTqoYpMzv_a1xRC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.058|230.9|0.616|14.87|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1039/c8ta07836j|qNA2JJ11ZjXzk9zIgOL4dZhQ04p7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.82|166.0|0.76|10.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00253f|qNJU44-ZHuyzTyFe-t-cCHrxAIqC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11524a|qNUPZGxD88T492tHcB4wMk378UIk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C9H26I13N5Pb4|Pb4C9N5H26I13|(3AMP)MA3Pb4I13||1.0|92.0|0.66|6.39|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.9b06398|qNZMMp97myWJZC7I8OV8M1TfruAW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|141.9|0.47|6.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|qNe-n-EZ4GJyWxI9yOPpvay45qv6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|qNjbBs7SUghvJrl01XVgXLR0laW9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.086|226.4|0.757|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|qNo_pPjRU7oIu56Z-iGi-aea32Cv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C18Cs2H93I20N33Pb20Rb|Cs2RbPb20C18N33H93I20|Cs0.1FA0.75MA0.15Rb0.05PbI|1.7200001834055632|1.235|188.0|0.729|16.9||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/D1TA05699A|qNq2IF53T8vSzeHGPeeAh-4-3RBG|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Rb0.05PbI. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.61|78.0|0.84|10.6|['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']|['CsSnBr3-QDs']|['SnO2-QDs']|bulk|https://doi.org/10.1002/solr.201800284|qNsVXqLgVysq2ZDobKzKLEPgSvPi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-QDs', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.906|174.0|0.662|10.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/8654963|qNxiHxJvls1spMHQ8qH-uoIX9FnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.972|224.0|0.69|15.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700872|qO9E9XrwTWxxV2rnjDzpgcSOMUQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|203.6|0.695|14.23|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|qOAFWABDxc4uIZY6iBo8pbjG39dW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.3|0.63|11.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5109699|qOE_w7OMnWTh9fHQShOspmHj4Vwl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I10N18Pb10|CsPb10C9N18H45I10|Cs0.1FA0.9PbI|1.5400001642119578|0.9|15.6|0.616|10.92|['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1038/s41467-022-32047-z|qOHzvli17IBg2XPGciGIyfDqPBsj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.11|238.5|0.7709999999999999|20.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|qOLO4s1viec24uS3EqwdfnPh6sxQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.619000172635818|1.08|198.0|0.784|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|qOLh4w3bWp11lRJVGDHZXMy6WUZW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.81|147.20000000000002|0.45|5.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nh00163d|qOS4vaCl5GE-l_auAA_JwNxY3j1o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.15|225.0|0.78|20.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.9b05083|qOWvx-K2EqRXOMCIjfYPwrLwF4OZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|182.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|qObWYm2bPiC35qM6x0WS-NUHWb0a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|59.0|0.75|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|qOd1i6AWAk9IZNteCeKNOqsFj4NL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.05|235.0|0.763|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.7b00356|qOywQTX5UxA4JkDL2D2h9HKXEwUx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']|['PEDOT:PSS']|['pBTTz']|bulk|https://doi.org/10.1002/smll.201803339|qP0GL8bFjnYD416FCuHUAMLZ23jn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.01|205.0|0.753|16.14|['SLG', 'ITO', 'BTF4', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF4']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|qP6siaqtFz5OdjlUzsZ3QhluRYHn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF4', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|110.0|0.44|4.2|['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2015.03.016|qP8oSJbVqJzYTSmiSdxJGa97kGzU|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.0|247.5|0.752|17.23|['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1021/acsami.8b03225|qPC7QMl75fPbgY3g06147848tGqh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.72|17.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|qPD8fuXBmWe8cW6G7oNL2aaHPPa3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.03|228.0|0.76|17.8|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['NiO-np', 'PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|qPDWLE5-m5p7cCzxLtjK-eMgj1yR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.5|0.732|15.04|['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1‐benzyl‐3‐methylimidazolium chloride']|bulk|https://doi.org/10.1002/adma.201600446|qPUHDl4rp1ger0y89e5yHDuAF7k8|a perovskite solar cell with the following device stack: ['MgF2', 'PET', 'ITO', '1‐benzyl‐3‐methylimidazolium chloride', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|qPZo8g-Fna1IeOIk-ecWaCobw1o3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|215.8|0.7|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01026|qPa_FwUhTQbIda2xQKWzEMdkd5yO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|221.0|0.7|17.5|['SLG', 'FTO', 'SrGeO3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SrGeO3']|bulk|https://doi.org/10.1039/c9ta03176f|qPcPYLoelEv-RbUEBgoCtfIsmCRI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrGeO3', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.047|187.8|0.792|15.59|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||qPjJew76ruoHBHhN7LDuK1UvyzUt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|212.9|0.6729999999999999|15.0|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBTB', 'MoO3', 'Au']|['PCDTBT8']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.028|qPsg3gfrvFVSVlOMPFHT9GC0E3hN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBTB', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|217.0|0.7490000000000001|9.56|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|qPtmv4NLDkxH5Y8iCrS5rafyfMVs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|192.4|0.622|12.08|['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']|['TBASBP']|['PCBM-60']|bulk|https://doi.org/10.3390/molecules24102027|qPxpX0_7YahW8SmwWD6xOkHIZGVv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TBASBP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb99|Pb99C100N100H600I300|MAPb0.99I3||0.82|122.9|0.502||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.175|qQ6xxRRwBbazvYOzgEybgFGyq2r4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPb0.99I3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||1.03|239.5|0.77|18.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsaem.8b00286|qQFyALmW5YEUMZI6m5bd7_95k4Ta|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|221.27|0.69|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|qQOlUBGeYC4dhgZUaZL6W8aNiq4C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|38.0|0.5579999999999999|2.1|['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ra16865e|qQSQecSXobpe3gCUP_qFQFmuW-KL|a perovskite solar cell with the following device stack: ['SLS', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.7759999999999999|110.3|0.55|3.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|qQav2sATSksLy9MLmceABoHxgspT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.795|195.9|0.51|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|qQbcNBotvyyoU-v_OYxV4K1d6vEB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H542I246N123Pb100|Cs5Pb100C95N123H542I246Br54|Cs0.05FA0.28MA0.67PbBr0.54I2.46||1.03|153.8|0.785|12.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|qQj4iVIxH0d7kEW7ALZdcePjjmbT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'V2O5']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.77|189.6|0.68|9.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01479d|qR2bkZP1xoiTk-Gw8aObmBqFe99R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|251.0|0.7|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|qRFfcUltwcbgC5PlAMIqlv7v6eAx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|167.10000000000002|0.68|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|qRQG1_Cq58h1ipk02Ie_UqomZLhd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|188.9|0.5670000000000001|9.61|['PET', 'ITO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTCA']|bulk|https://doi.org/10.1002/solr.201800205|qRQoEujTS66kFPtHdrytrH9IqSUd|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.3|0.73|12.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b03724|qRUFV6NbnHR4YyfEdje-x8-G5Al0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|211.4|0.648|14.2|['SLG', 'FTO', 'TiO2-c', '(3-Aminopropyl)trimethoxysilane', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', '(3-Aminopropyl)trimethoxysilane']|bulk|https://doi.org/10.1098/rsos.170980|qRWOSwxmDHJaFO7sckscgk4Ta8G9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '(3-Aminopropyl)trimethoxysilane', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.5|0.7120000000000001|14.89|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|qR_IfeQys2SNk09fBCwCxh-K3pDQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|227.9|0.67|14.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|qRcVxuICUzAHzTXKKMKfO6sTDIKV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.1|0.69|15.66|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|qRlatewQ7IXAYjS7PZicbPihrmxJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.063|195.09|0.773|16.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||qRm3E7fsYr6PT5QZUnfJAow1Wosn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.706|146.6|0.64|6.64|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|qRpSuxcI960z--B-rpeArkw9XyMi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.95|162.85|0.648|10.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-422', 'Au']|['SGT-422']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|qRuXssFmrLn_F0uCXcQ0s4fJUviF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-422', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.118|229.2|0.78|19.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|qRwXbUuU2hBbaSTL3PcXVBNnODUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|147.20000000000002|0.679|9.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|qRx_RMiaRlvieSiJNwiN2xU_toio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|234.9|0.68|15.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|qRxjw1msZdBp8OF8tj0LYUvqUdDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|194.0|0.67|11.5|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/er.3485|qS2eVgIor7JhsYKNsw3NwrV-m8ro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9400002068644144|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|qS5zq6NLKolWevwhDb-wCJjrbre1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625||1.112|223.71|0.758|18.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta07595j|qSXGNMoyIN_haMwKdS9-m2VC7GNj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|186.0|0.644|11.9|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|qS_4Av9jrEid13FItjhCfRjjFkOx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|220.6|0.591|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']|['MoOx', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04625|qSj2LfGsmmRTLGYcef-fR49-G7cN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6EE00413J|qSjCNuKanRhwvrPJlfmjB8M0NstZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|201.4|0.7020000000000001|14.85|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssa.201900087|qSk2I2wQbX8y7ObjqQDZv23NqHH7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|211.0|0.706|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2016.11.014|qSvr0x1IgzpSYecyc7UxxLtTv7Cs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9||1.09|243.9|0.7390000000000001|18.46|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta11841h|qSxgFU4FCl11AEYk6LEgBXzZ3AfL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|220.0|0.74|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2014.08.015|qT-3xcBqpYt55ytLnXicIA7MJfMR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|199.4|0.752|14.58|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|qT0vcn_-MhZuKrLz_kArwAE8-9Mp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.83|193.8|0.7|11.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01956h|qT2E-5xIgLbW9aD8zAhl6nUvxujC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|203.0|0.76|16.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00050|qT2_36Q6UGNclIgnJYGnkGZixmFx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|191.0|0.58|10.2|['SLG', 'ITO', 'PFN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN']|bulk|https://doi.org/10.1039/c5ta04695e|qTF2HlQiADu-5l7khDTepmKXFsOF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.32|54.0|0.48|1.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ra00809d|qTHjNmQ4sR6pZLSBgUbvhy7PM_98|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.4|0.742|15.87|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2910192|qTYznlWupwbZMpMWoWQ5_0Z6dnT7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.0|0.69|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b03767|qTaQzTq793LBRbffXKwQXxAkTYkS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.08|223.7|0.728|16.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.040|qTaxAihILpuY1Tt-2bFziVeLqTp4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|176.0|0.732|12.5|['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'FrGO', 'MoO3', 'Ag']|['PEDOT:PSS', 'FrGO']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1039/c7nr03963h|qTf6CrUObAV1pMK_XG52kWSXG9RI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'FrGO', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|199.2|0.647|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-14920-w|qTlBXH4n45fQ5ikpoVmpNrQLo8X1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.103|206.0|0.79|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee00689j|qUAxR-T7ace3JHdu-ImE2B8CjWOZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|92.6|0.43|3.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|qUHQA73cgRkcLoaisEC195Ouo8pT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|112.0|0.618|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'AgAu-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ra11720h|qUIjlkeDvAGkv2D9MCBGO5RZ9ZeY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'AgAu-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|225.0|0.6|13.02|['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s40243-018-0139-3|qUJ_3PzleMHRIYvlTj4ct-PTgW1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:SSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|158.0|0.78|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|qUL_kmQvKRtXFJ5yMK_dB_6XIXSs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|164.0|0.667|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/ma12101644|qUQCDihqmsCsT-lHLrGlkIjQFY-P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|36.4|0.6659999999999999|2.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01202|qUROcBpkkcTAAII1Xw2T5aNHJJxp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']|['DCZ-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|qUVe3kuW760VXoRqaecQOGWvncsi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||1.003|204.6|0.616|12.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3389/fphy.2018.00099|qUbfajaUAmvz47tj-Ghysyx9wkjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|225.2|0.73|16.55|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/chem.201705658|qUdpnaS1vqlNdf6LjTYnmLvIMxBH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|13.0|0.491|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|qUeJ7Tq1yBhR-fjFQ-jOwX0PcxLD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.8|0.71|14.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']|['PEDOT:PSS']|['P(NDI2OD-T2)']|bulk|https://doi.org/10.1039/c7ta07968k|qV17Xz_wQ-fj46TWhUIaCgOCA76t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-T2)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|184.7|0.46|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ee03586h|qV1zjkltmyM3UigK7rH5ygMWXZr9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|197.82|0.75|14.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|qV4r9_vzc5f-ccDikKpoBJMx9nPR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.92|246.0|0.708|16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|qVBX_P1z6kfm1WuclyERCBvUvcnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4980001597334498|0.95|177.0|0.65|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C5RA23359C|qVMCt6Ozuy8uBZoGqH72sVGWAcch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|240.6|0.7|17.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|qVOTn3LtcOvBafQ4L5Udt4gcsBm9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.626000173382236|1.07|227.5|0.7859999999999999|19.15|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|qVZTHMku7Ra6-H3ZV2eGBYyLeFGY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|113.0|0.8|8.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|qVgM0lZcRvdBPhHyI7x_XK6W9xqm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.027|223.0|0.747|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-2', 'Au']|['BTT-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|qVntREitYRm29N1IUZyCyDjAmKvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.19|158.0|0.75|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|qVsZ12_a5Ydnu90IKqeC475UaIpN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.974|140.2|0.43|5.87|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1098/rsos.180617|qVuzEv0dj5EvGTElxgQKhW9pJwD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.133|204.0|0.72|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR133', 'Au']|['KR133']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11076|qW-mb9Mo1PiDBmA-FlcFZXx36MF1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KR133', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|176.0|0.584|8.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|qW0r7D6dQzbW4_7krRR80W-S9cl4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|158.0|0.451|7.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|qW3Rx84-gFBkH0SbbD7rSxa02p8x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.0|209.0|0.66|13.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.100|qWEOx1badn57TbLv4JQOwMDI4jXt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|202.0|0.51|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.05.018|qWNyk0_SrPj-aAi2rQNkzK4dyH2l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.04|192.0|0.7070000000000001|14.1|['SLG', 'ITO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1021/acsami.7b04833|qWTgsWVJva8mxN9QJB2k7v0mH78l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|210.3|0.67|14.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta08998a|qWYK83hkfF2ct0W7fJpw1uC1RAFB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.05|209.0|0.7020000000000001|15.41|['SLG', 'FTO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.002|qWaZxconbl9Gep4pH2PiDM6ESiXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.081|221.5|0.762|18.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02555a|qWbz4764QcJQQGkYPNfCW8fnYMOF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|123.8|0.396|2.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b01933|qWiapZ8oByhvaZW1ldfcNwjbFzb5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||0.88|227.0|0.58|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|qWloKxiZoFGzlRr7Pxgh9kqdnq9n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|184.7|0.546|9.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE11|qWnWWAJqoE1yCFsnlu8knF9H-a9M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.19|235.2|0.732|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|qWo5VXEgq1S4LsMxtlqxO2WwC0Il|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||1.02|180.0|0.72|13.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|qWoN6tYro3S1owrHp8SexhWGEKLS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.8|0.654|14.33|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1039/c8ra08940j|qWqM_U8TbDzHlBlKMPGlWseo3coT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.545|62.7|0.36|1.27|['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Carbon']|['P3HT']|['Fullerene-SAM']|bulk|https://doi.org/10.1002/aenm.201802085|qX1kq1eC5_o_TCXuqvanxH6IjKHW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'P3HT', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.946|184.3|0.779|13.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b11083|qX7DDuby71Elibw06N0rzKCh0iOf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.1|0.635|14.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201800625|qXD2HwhdejrjcmsRLG2H_Re_r-gr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|217.3|0.758|15.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'DMEC-60', 'LiF', 'Al']|['PEDOT:PSS']|['DMEC-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b10668|qXDaVuTUNOMmS-PKmxLz3TcjcyZy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'DMEC-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H54I29N16Pb10|Pb10C10N16H54I29Br3|FA0.6MA0.4PbBr0.3I2.9||1.01|219.7|0.78|17.62|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']|['NH2-POSS', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ta11345e|qXM4FXIqJ03BYuwNBYUA4DmVdbkO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NH2-POSS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|164.0|0.509|7.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|qXVPjbdPeZVFTO51d30ylns6Cgav|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.0|0.74|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|qXYNhjoHC2CFqnikugfRNQ-XD9sw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.47|73.3|0.76|7.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Red Phosphorous-QDs', 'Carbon']|['Red Phosphorous-QDs']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.solener.2018.06.041|qXZh_ArDz0H31IrCvrjbqLCnzK2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Red Phosphorous-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|224.5|0.664|15.5|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|qXcn4CESuSpBRQom_7JWtIHsEw1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.04|211.1|0.669|14.75|['SLG', 'FTO', 'CIGS', 'Perovskite', 'PCBM-60', 'Zr(Acac)', 'Ag']|['CIGS']|['PCBM-60', 'Zr(Acac)']|bulk|https://doi.org/10.3390/nano9020286|qY02SlhiSen3s9uI_4w10Bawpiv5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CIGS', 'Perovskite', 'PCBM-60', 'Zr(Acac)', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CsI3Pb|CsPbI3|CsPbI3||0.99|139.0|0.677|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02594|qY3IQlnz06i4S0FyLLzD7awcX0BA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|195.0|0.63|12.5|['SLG', 'ITO', 'C60', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60', 'C60']|bulk|https://doi.org/10.1039/c9ta09838k|qYAaqRR1VBAppGtTvO_X_M62i0Bm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|79.0|0.532|4.07|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Ag']|['NiO-c']|['none']|bulk|https://doi.org/10.1021/acsami.6b08771|qYD8Pv37s6WywzUAgyo_jXvLXFIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|214.6|0.72|15.58|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe2Pc', 'Au']|['CuMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|qYFQAFUxDglWH-OiWtiTbsHcIbQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'CuMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.1|0.77|17.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00036k|qYHpFBQRF0dRaFqJbPFW_QpKScbU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|2.100000223925397|0.97|70.8|0.67|4.6|['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']|['PEDOT:PSS', 'AuAg@SiO2-np']|['PCBM-60', 'PFN']|2D|https://doi.org/10.1016/j.orgel.2019.06.043|qYKtbVy9zXXn5HEZUzNo-P73Bzl3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'AuAg@SiO2-np', 'Perovskite', 'TPCBM', 'PFN', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.05|194.1|0.64|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF']|bulk|https://doi.org/10.1039/c5ta03456f|qYNtHy2GhP6j6ia2DjEG8IfqX86h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rodhamine 101', 'C60', 'Rodhamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.955|178.0|0.6409999999999999|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|qYY9mxe7k9R7cUTYiN2GK_orXtOt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.094|94.0|0.25|0.2|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|qYsbcGU5LgGF4r-bGV1iwnGwxmnB|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||0.76|182.1|0.53|8.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|qYuxRsP6sFT7pKHgeM9ZK0Rzt3SC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.045|230.4|0.772|18.62|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s11426-018-9331-y|qZFILYigWcX0QfHAk1PxARE2BI39|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.68|53.0|0.44|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|qZG1j_jnCoXh4M8kuwBVEulNz6uY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|186.2|0.442|7.27|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp05148h|qZI5j2_PX0hEkHY_9F57k5DlM2oY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|175.0|0.78|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.01.083|qZICw2A7qBOORhxu9TPNVYoQAtvi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|194.5|0.53|8.13|['SLG', 'FTO', 'WO3-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['WO3-c']|bulk|https://doi.org/10.1186/s11671-016-1670-8|qZLAxlqe36grzVtBDAevg9wUdpC_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.108|235.7|0.732|19.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|qZP0l4BVi0J9nGlLeQIvXRkv7L2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.03|215.0|0.768|17.01|['SLG', 'ITO', 'BTF4', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF4']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|qZTg4erk8DyRE701SQbewOF7LtGs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF4', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.14|68.0|0.62|4.9|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1557/jmr.2017.264|qZWOZKzne0_0ISrOxn76-ZEgafr3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|224.0|0.768|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ee03182j|qZXi0bRXAnVXrbNN3AGWgO1QTndw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.0|0.49|13.3|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201801434|qZcEAGiVsfnyqKssljflBTWB_mPK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.114|220.42|0.698|17.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|qZoQPJnOAKySMvbWmee_IbQqLG1O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|191.6|0.45|8.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|qZojy1Id4FIWNw3FWOAzHPXrQIn2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|173.0|0.55|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta01087c|q_-0XZVniQ5JNffTvPpxe4Z-jAlz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|187.05|0.685|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2838443|q_2siWjTyWATwTZ3d00O2BpwTdZK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C40H220I51N60Pb20|Pb20C40N60H220I51Br9|FAMAPbBr0.45I2.55|1.6500001759413832|1.065|228.7|0.685|16.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b00144|q_Ew4HiS9GyF3bRMnNae_84SAsT-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.0|204.0|0.737|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja502824c|q_FrMu8X0ex3PvWCKZop31XGpU7F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.82|229.7|0.4579999999999999|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']|['PEDOT:PSS']|['(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)']|bulk|https://doi.org/10.1016/j.materresbull.2020.111009|q_IoZKooWoXOhvhuXCQ5QxH7IAAS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', '(2Z,2′Z)-3,3′-(5,5′-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.2|0.77|18.1|['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/C7CC05934E|q_MliFk3t0FEvMdLDAfhyLRHGRXS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|q_MsoAhZqoXmx738BpBVCqkynfQL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|134.60000000000002|0.69|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|q_O4Wi3p8PpPPVmrLLkAGRJleSxq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C500H3000I1465N500Pb500|Pb500C500N500H3000I1465Br33|MAPbBr0.066I2.93|1.6100001716761378|0.62|219.9|0.5|6.9|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.matdes.2017.04.010|q_S4gz85AVj-L2SxjB79kVmdCLaP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.066I2.93. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||1.015|221.1|0.7040000000000001|15.82|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|q_UKC9D6P4FI0FZp8vujN5Ay0B9L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7609999999999999|149.0|0.066|0.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150651|q_ZlCKm4WK6efqdeO2IGFogD382R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|151.4|0.75|10.79|['Ti-wire', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Au-wire']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1002/admt.201900131|q__WQwqRZ9lATA2RUa8Fq9GP9rAC|a perovskite solar cell with the following device stack: ['Ti-wire', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Au-wire']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0800002217927744|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']|['NiO-c']|['none']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.048|q_b6ynG0WkAzYEAMI4GXIFbErDYN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.3|0.713|14.73|['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|q_jcMMpGGnXYOQ9mJZfrpEC3Nxdt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|233.0|0.5379999999999999|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700484|q_n8tHPLSqt2vqUpMBEi4gw2S8mG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.951|241.0|0.677|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.7b01500|q_qqhCRyg0Jh7tINQlgE17eL7GWy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|161.0|0.44|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']|['S,N-heteropentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|q_zUl_3fTQDaMiWcPgRde0puMtlu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.805|18.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00741|qa28n10MMegyRkHzICyhoxTv4Qip|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.078|223.8|0.74|17.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.02.135|qa7oldZi8G-LqNq8MlXENjqkJsWD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.7|0.71|16.59|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OiPrTAD', 'Au']|['Spiro-OiPrTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|qaH-TZoLsxjhHgEk8rbe2HMYfsfr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OiPrTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.805|180.0|0.63|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|qaHLz5XwhVdRVEjwPqznNbYGb4cY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|202.7|0.755|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.026|qaHt4pNQZMqG6eGEnCWmBVW8zyuC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.09|260.0|0.784|22.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|qaJWPXikXE7ebc6WC7Vx5GmgMxxL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.0|0.69|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201504190|qaPQ-C73JHW6GlimYt3Sg4H8jK8D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3||0.75|244.5|0.646|11.78||['PTAA']|['TiO2']|bulk|https://doi.org/10.1039/d2me00032f|qaXI-hKusgcf4gyyxSx6piGyI9Yb|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.845|6.0|0.317|0.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphite', 'Cu']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2014.10.017|qabXntqpdQLcpZXn3piuznc2TZJf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphite', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|173.9|0.5|9.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|qacVMzBMfz6ik6xaZ2dvqWquXVhc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|210.1|0.736|15.61|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|qam6reQLmcpgm3CNpavwlp1IvtJN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.954|202.7|0.7759999999999999|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/jacs.6b02130|qasufMbLHPm9aQEt06iK1CH_G-Z5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.33|76.9|0.7809999999999999|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc03359a|qauDXrXL-6vsqokiHWc59rQtdHcp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|192.3|0.45|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']|['PEDOT:PSS']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201600074|qawav7czKefbspZeSx0114aGdVUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'PEDOT:PSS', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|218.7|0.456|10.04|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01076|qazESwMgQtPAIf1qIGdbqPnMSOY8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.14|72.4|0.69|5.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.154902|qb-GxeKX-eg8AcKOAh0l6ZxrkzPt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.60000000000002|0.76|13.1|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.02.049|qb4NdGik9yAq_KjAWt7kNUcZ8lSs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|191.7|0.672|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|qbPsIqoNC78_hN6bCImGwvX7mm9-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'ICBA']|bulk|https://doi.org/10.1002/aenm.201700226|qbQL82hITTEw5O1gajRxKsalKztM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br66C100H600I233N100Pb100|Pb100C100N100H600I233Br66|MAPb1.0Br0.66I2.33|1.5800001684772036|0.77|162.0|0.68|8.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5023407|qbbON5mt_vtPxeMSDfDh4dayVo6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPb1.0Br0.66I2.33. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|209.2|0.7759999999999999|15.22|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201602159|qbuLehwzWm1rHD4sXXFC7HjWj_Lq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|175.0|0.74|12.0|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|qbv676muJBQ_rXVt0Ci-vA-JHmsi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.3|0.8220000000000001|18.7|['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTM', 'F6-TCNNQ; TaTm']|['C60; PhIm', 'C60']|bulk|https://doi.org/10.1039/c6ee02100j|qc0DNvEjknfwQBy_-s6s6TWmSyTH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|206.3|0.75|16.24|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.synthmet.2018.07.017|qc1tdwM3wTzvivKS0reTqSU3Lv7v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.63|13.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01570h|qc2ZLw8_zcZaN-QBIBVcPXTm0wUH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI||||||['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'IZO', 'Ag']|['Spiro-TTB']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1038/s41563-018-0115-4|qcD2l8cIu2cqISOf5wMW-1KERwup|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-TTB', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'IZO', 'Ag']? The composition of the perovskite layer is CsFAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.8|0.68|17.07|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.11.020|qcJ5Jb0p5cKgxF4F5hx31ystDhHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|201.0|0.7|12.51|['SLG', 'ITO', 'CPE-K', 'Perovskite', 'PCBM-60', 'Al']|['CPE-K']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms8348|qcQ757j9q6g_ikwq9fxaf9cAa2SB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPE-K', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.6|0.691|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|qccXoiZkXNFZW9KLYZVIHgfYQUB6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|63.0|0.493|4.92|['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']|['P3HT']|['TiO2-mp', 'Pbs-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.081|qckQ23cz3Wj5RD-FMdnlte3lTiEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Pbs-QDs', 'Perovskite', 'P3HT', 'Pt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.1|193.0|0.7929999999999999|16.2|['ZnSe-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.11.021|qcpE0DmWwMBlM3SJIUtgZAuFjNBu|a perovskite solar cell with the following device stack: ['ZnSe-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -C17Cs3H87I60N32Pb20|Cs3Pb20C17N32H87I60|Cs0.15FA0.75MA0.1PbI3||1.08|186.0|0.7090000000000001|14.29|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|qcrg3_zuxvj7jIu69zbpS_Q4SFDT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbI3. -C20CsH117I60N23Pb20|CsPb20C20N23H117I60|Cs0.05FA0.15MA0.85PbI3||0.976|126.7|0.75|9.27|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.matdes.2019.108237|qcu7Uy7r8JTODAF0b0kDyZXIBAnL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|178.4|0.5770000000000001|10.39|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|qcvK-eC9TkjfAF6HwbUfA_A2C2iX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C5H29I3N6Pb5|Pb5C5N6H29I3Br12|FA0.2MA0.8PbBr2.4I0.6||0.95|88.6|0.494|4.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/nano6100183|qcwy5R-5GuFzX79Cp0GlXlSVzRlE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr2.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|204.0|0.55|11.1|['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60; C70']|bulk|https://doi.org/10.1021/acsami.8b11049|qd5Yq9N9CyY3m_-K-yRdJwdgl5sM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.079|173.51|0.7170000000000001|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad7de|qdI1Zy-SFgUMDDsVflFivWbV-lF4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|163.1|0.55|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|qdIR0_T2hW11GS80FhAcuiugfrPU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|198.6|0.754|15.83|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']|['P3CT-Na']|['PCBM-60', 'HDAC']|bulk|https://doi.org/10.1016/j.orgel.2017.06.006|qdJak-wZdZzCnDrwRWIfgR7emJr0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PCBM-60', 'HDAC', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|209.1|0.642|14.73|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|qdO5uox75bFBpU6nnnmP_oIJQnbl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.3|0.56|10.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|qdRcZEPo-zcG2_owy0w4-n037-Qd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.02|211.6|0.64|13.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra01309a|qdYaYAnRuBLRFPhsv9xbKpiXdIYy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|237.0|0.8009999999999999|20.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-OEG; PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBB-OEG; PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|qdhbA6CNY2gkPQdnoLf8expc4oLp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-OEG; PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.01|170.79999999999998|0.62|10.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b11759|qdsUdUValIOilsmSbqsJaJT5UZb-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.05|203.4|0.73|15.68|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr05235a|qdskduprkVqcTU6nX6tEnIYtRSvA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C56H309I150N50O3Pb50|Pb50C56N50H309O3I150|(5-AVA)0.03MA0.97PbI3||0.92|233.0|0.71|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.7b18945|qdxSsIzudwvXLsaws0jwKzW7BulQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|186.0|0.718|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'F-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'F-C60']|bulk|https://doi.org/10.1002/advs.201600027|qe0VPgZHn-1ApEMluPPdr5uR8bWw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'F-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.88|11.0|0.51|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|qe4NPl0S0JbIHGSqnAVSTnF9lBAq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|220.0|0.65|14.0|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|qe7xopWIud_mAb-RkZLNQOyaEqNl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|223.0|0.713|18.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201803428|qeA5WcO0VyAe9avsAfFed-kNPqMU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4||1.13|227.7|0.772|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905502|qeJHSdUtcTcfW3VEGxSkC0KBAMrK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.0|0.762|14.7|['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MFGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|qeKa7StN7x9g1nxWq0Dem-PpZ4um|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MFGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.6|0.74|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid']|bulk|https://doi.org/10.1002/admi.201700897|qeKx_L24eWsUHvRj0HL-lhDF7IR2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Aminocaproic acid; Caproic acid', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.8|17.4|['SLG', 'ITO', 'TPASBP', 'Perovskite', 'PCBM-60', 'Al']|['TPASBP']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201601603|qeXlQpI7wefJPujnP9K5sRqKCDAi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TPASBP', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|198.5|0.7|14.91|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|qe_83WcJkFZ0kUYoKo7rCCFtdKtT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br99C95Cs5H491I201N174Pb100|Cs5Pb100C95N174H491I201Br99|Cs0.05FA0.79MA0.16PbBr0.99I2.01|1.7200001834055632|1.3|196.5|0.769|19.16||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2021.106537|qej5mgYtCyk6BUfVXgtfiT5kJQDM|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.99I2.01. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|168.0|0.61|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.027|qeq79lAFcnQ0M1mEFtbOXeAi7wmW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|165.0|0.7490000000000001|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.065|qewvy2W0z4rvpttJlyapkv07yL_I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|163.70000000000002|0.741|9.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.07.081|qex-RadZsPLtXMyHLDWzPDSfyBc7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|159.3|0.58|9.14|['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6ra25149h|qfA3x6biCSMH6DvCKiZV8BPZML1_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|195.2|0.742|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acssuschemeng.8b04603|qfBvxgWfkwA5dIFanH_i_mgWKmfB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.0|0.56|9.6|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|qfKD11b7d0C4j8B3e037fLWxBiDv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.0|0.72|16.5|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|qfSfpenn0mLpQviDdhN_0jDU3UaQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.087|223.5|0.6|13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z29', 'Au']|['Z29']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00395|qfeUEesh7UPUkdQlbsJtbqrcK63e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z29', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.779|123.5|0.61|5.86|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|qflc9UINzdAJkaPf4sPLWzNpu_Np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.5|0.79|17.19|['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['Poly(2-ethyl-2-oxazoline); PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b05949|qfmyNP7YzV45lsT-ZBafOgi60gD8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'poly(2-ethyl-2-oxazoline); PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|211.8|0.765|12.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b00981|qg-BnAdZsWQufBnvZRZ-P0JdmZ37|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C20CuH120I58N20Pb17Sn2|CuPb17Sn2C20N20H120I58Br2|MACu0.05Pb0.85Sn0.1Br0.1I2.9|1.4400001535488438|1.07|234.8|0.72|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201800258|qg7ELJcfWTSDWUsYAqIHVJgt7DKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MACu0.05Pb0.85Sn0.1Br0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|184.2|0.69|12.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/C6RA05893K|qg9b6uxDjXs3lTM9vg-Tk1-rn8o_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.3|0.71|14.02|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|qgOV5hhHu281d_6okA8SR_vyfmke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.88|51.0|0.65|2.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|qgPQ7CuLQxLPBr48kXxFgeviwDlY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|216.0|0.71|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms7142|qgdmj3SP7Xm5Ro_22FFV3IDus5en|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.09|205.0|0.784|17.57|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|qgh-oY5YdPqcj7eXPIWQh3ZGZ4iI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -Br5C20H105I56N35Pb20|Pb20C20N35H105I56Br5|FA0.75MA0.25PbBr0.25I2.80|||||17.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py-OMe', 'Au']|['Py-OMe']|['SnO2-np']|bulk|https://doi.org/10.1021/acsomega.8b01817|qgpiRgtV5rI3Y1o-V14KfZNo5Q3_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Py-OMe', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.80. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.35|68.5|0.7|6.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800075|qgqWXBYRauBVVebxrrYwQ553yTkq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.570000167410892|1.132|225.7|0.78|19.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|qgyKF_DmH7mmyop8X5CJvyz-r1bp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51||1.07|193.4|0.43|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']|['Spiro-MeOTAD-I']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201807402|qh6MnLi5O2Z6188T-cvvtOtbyg9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD-I', 'Au']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.772|47.3|0.7340000000000001|2.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.molstruc.2019.04.113|qh8gbbSP9xrSiZfld0hyYigk8DKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|187.2|0.73|15.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09304g|qhBELUCXhicq_3QXOqTgW_3EYqbU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.129|216.0|0.76|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|qhDFez9ZTMx-oLgkVegkXW1V6FS8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.043|149.51|0.452|7.1|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|qhIyUBSSS9ZRU-YE7PAfvTmGotop|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|224.9|0.708|16.81|['SLG', 'FTO', 'PyCEE', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PyCEE']|bulk|https://doi.org/10.1021/acsami.9b03304|qhO5VXrCzpYTjRGQBIIs40YpscGV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PyCEE', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|162.60000000000002|0.5720000000000001|8.93|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|qhU7REBF0zMqWI0SPbCUfhM7HVCc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|221.0|0.72|17.38|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.067|qhUYLEh0ZSMfjTzy090CjDgs4xgF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.500000159946712|1.02|221.0|0.76|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b15503|qhf1FvFFFfkjP8qE8YbR5KQa9uNB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|235.7|0.67|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta09604f|qhfi3zcA7Loqu6FrxVWwuTRN2MsN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|202.1|0.723|13.27|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2018.07.029|qhhzWR0lZk_FmWMTs99Him2dS6hu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.8909999999999999|145.6|0.75|9.68|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc00816k|qhitIB_QNPmLK5cbmHl-q8PjLE-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|134.0|0.67|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03046c|qhqyyWjmEGqu1cBj0Pf2j2-qgJm5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|224.7|0.7929999999999999|20.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']|['PCDTBT1']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201801985|qhsIHiMSWu095uSQqzDPDKSj_B2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|167.60000000000002|0.73|10.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|qhv6zAOBRV8a3ac73LWEEptIumTe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.3|0.64|13.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.080|qhy0mAoXBsc4HYP9Xphx_tJ80V0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|229.6|0.7|16.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pPh-2MODPACz', 'Au']|['pPh-2MODPACz']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b06933|qi1wbxl7JnC03iAnguPIGENqlzaT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pPh-2MODPACz', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|205.3|0.78|17.6|['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Cu']|['p-PFP-O', 'PTAA']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c8ee00162f|qi6qhtUdyG9tFQA_wc16ZqB8_IKa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'p-PFP-O', 'PTAA', 'Perovskite', 'PCBM-60', 'PFN', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.0|0.7140000000000001|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.12|qiN3xaypeK7wCiTkK1SKoAp3jSJh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.097|225.0|0.718|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b02037|qijbrORV415QH36TtQHWNUo40bbi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.94|205.4|0.7090000000000001|13.63|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']|['FDT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7cp03551a|qiqGTaQYvyGoBzkSbBRwltHzY4wR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'FDT', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br9C10H60I10N10Pb10|Pb10C10N10H60I10Br9|MAPbBr0.9I|1.7200001834055632|1.048|197.2|0.69|14.26|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-c']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/C6NR06670D|qiuexS2RDi1NJjV-lGDgqT8wlO8W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbBr0.9I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|qiv2kCB1CsIaFg7sapk5nUJOMqgn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.0|0.75|17.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp01360k|qj7s9SORKh0Fi7CTH1gqIOIy6KXt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.591000169650146|1.03|134.0|0.65|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|qj9_LCvieqxueO4D0cAyzssPjwj_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.03|163.0|0.56|9.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']|['NiO-c']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.0c02405|qjTlnGx-UtsJNXE58Skgs7590QA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'AZO-c']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|125.0|0.62|6.7|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.09.273|qjYNAKZ6_Fh-773ELjgAggwJB2Hm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|211.1|0.72|12.76|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07536c|qjnTZLqHByRAxiWeQ8SmxiQGqFqs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.053|212.1|0.72|16.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|qjsHc5_XZCU35SoG1Atfyr3Oi7cw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|171.8|0.67|12.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|qkEZZY3zgHHPDeUVkV3VOt0l-4nM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.135|223.4|0.777|19.63|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800055|qkbb-UPxEjoPvS8hmOvreWe2Sick|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|150.0|0.66|9.7|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1016/j.solmat.2016.10.035|qkeQZwC2TlTaQ8LF3zegOk_cW7nN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|206.4|0.73|14.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta10212c|qkekAxRVdQAU28EDik88vY7bk1FX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.996|200.5|0.625|12.52|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|qkg7WTlKpXjlPZRfuugd1bbu4LmL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C9CsH47I25N16Pb10|CsPb10C9N16H47I25Br5|Cs0.1FA0.7MA0.2PbBr0.5I2.5||1.1|69.80000000000001|0.7190000000000001|5.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1038/srep46193|qkrh0q3dT_i-X7eFHBtK212_JjZ_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.5I2.5. -C83Cs17H415I300N166Pb40Sn60|Cs17Pb40Sn60C83N166H415I300|Cs0.17FA0.83Pb0.4Sn0.6I3|1.2500001332889268|0.64|242.0|0.522|9.4|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|qkxO5KJ4tEZ1e9DmUf41gkH4uAzm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.4Sn0.6I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|170.0|0.8|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Cu']|['PEDOT:PSS']|['PCTDI']|bulk|https://doi.org/10.1038/NMAT4388|ql4hdGjHFFmyfcDBHdMLDL30cNny|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCTDI', 'Cr', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|147.5|0.792|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']|['PEDOT:PSS']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1002/admi.201800280|qlPTj62XZT0SSsu1DPvTuBeFuP3Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7140000000000001|113.0|0.5660000000000001|4.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/cm503828b|qlPqBxVY3PIuJa4vAhh5Ad0ILTIb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.0|0.77|19.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsami.6b11757|qlhf9W1DPAAINt24RdwPplELmDD0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.98|193.9|0.68|12.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|qm04HDjWnP0WLXdGt3UaXKVeON0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.5|0.758|16.83|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|qm1X966L_s4Z12uy1zcrBmouU7w3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|112.7|0.4539999999999999|5.54|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c3cc46534a|qm3SNVVP7uGgE0UYJuzFcQNjsQeK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|36.5|0.48|1.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|qm4QJIo5y4Y7zteS7uJm9uA5IeHe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|179.0|0.61|9.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp500717w|qm4nxOC5Y2Ry0aU9FiStzwcyK8r0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|qm5BZyovMBThnguZBgP3M2o4yJdx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.13|238.3|0.741|19.94|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|qmEHiLvehbHuupApZAnaKPgzLD9p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.2|0.59|11.66|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1038/ncomms7700|qmIjD5Ty8RCXUkRLACv5Gv4Yv-hS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|153.0|0.65|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|qmPSacP21dh6266nBy8iQ8aE-5-U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|100.0|0.64|5.9|['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'OTS']|bulk|https://doi.org/10.1002/admi.201500837|qmRJAKkG0ax0DMKwNur5am_u7H-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|230.0|0.763|18.5|['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['IDIC']|bulk|https://doi.org/10.1039/c7ta09543k|qmWyUPZbchR90qlOaJc5BlbjhM-Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'IDIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.11|230.7|0.7509999999999999|18.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.040|qmsSknYMrMfxseD_A-swV0rOuytg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.01|151.0|0.64|9.8|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adfm.201905163|qmtOAi6H4QxZ1Y5UAuAX7PgebyV1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|225.2|0.687|15.67|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135281|qmtPvoXXW-fislYafjSkS1VH92Wm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -B29C10F116H60IN10Pb10|B29Pb10C10N10H60IF116|MAPb(BF4)2.90I0.1||0.985|128.2|0.71|9.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|qmvwSJ54hoVGub4FXJai6PwNEvMz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)2.90I0.1. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.98|216.6|0.66|14.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00286|qmwo1eje1K4VzBUibWe1b80FmEfM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|200.0|0.73|14.8|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/nn505723h|qnAP7eN19sAJflnekZC_rQzETKMN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.026|238.0|0.64|15.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06084g|qnEe59QEDKC3hTLNEq9WqnYN15qs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|70.4|0.271|1.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']|['NiCoO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.006|qnGWs80Jab8V0PgPyukVIzQkUS-s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|199.7|0.6970000000000001|13.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta08827b|qnOl2M2hYWOjmDG6o8ZRslrXrWDZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.72|6.1|0.38|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2018.513|qnUciza07SSDEGRs_tAKJooc8o56|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.867|101.0|0.136|1.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']|['NiO-c']|['ZnO-np', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0113-2|qnYsKSgF59BkC7jI1ub71N6bbMFI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.6|0.722|16.55|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|qn_DCmoHNYOvtqeHNuPu2AQlNskg|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.8|0.7120000000000001|13.63|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|qnqtxn75qe-knoJ2-qd0gXdnolyY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.6200001727424491|1.0|169.1|0.585|9.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2017.04.043|qnyS-2Xka2jYUEmRC3676tGsragb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbBr0.5I2.5. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0400002175275285|1.106|112.7|0.49|5.14|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.07.006|qnzo3SqWMAsB0ZNbkFdvappmUtho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.3|0.611|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|qo-iqrnqBXNn-9hRTd7HnmWdvU26|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br251C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br251|Cs0.05FA0.79MA0.16PbBr2.51I2.49|1.6300001738087604|1.1|221.3|0.732|17.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.093|qo2dfo-mzH_mxncBM5c3yinsR-Fd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr2.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|86.30000000000001|0.595|4.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|qo9qmBo5PFrz2w6FuMTgHCSf8tO7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|111.2|0.62|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|qoETa4npsJhIYpJE9DEISpt-26np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|120.0|0.46|4.3|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['Graphene oxide']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|qoGGgysH-LlCSXuu5wekYGEzTJMJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|qoJk-zrVDduuJPF5FSMEl1jQAAAZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2700001354215498|0.24|93.0|0.406|0.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b00118|qoKuUUijmUZ_YGkW9aIfBNeofoHv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|221.2|0.66|15.05|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b09809|qoMsAk3oPTk9hZQqg3cbGTDATDQG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.14|215.0|0.7|17.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.8b02408|qoR37xLSGw2pbaZevRl3jrAXE5yo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.8|0.74|16.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|qoSZr5yByxKMf4VrWLlFpHt2pAGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.01|228.0|0.755|17.4|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiP2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201700920|qoVOK_yrQyUnFXxCB61emfzsSpT9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br291C100H600I9N100Pb100|Pb100C100N100H600I9Br291|MAPbBr2.91I0.09||1.31|51.4|0.55|3.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/ente.201900737|qoVd8r7iMAZEtGP6Yra_GNkNF_1q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr2.91I0.09. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.8|222.9|0.474|8.46|['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO-c', 'ZnO-nw']|bulk|https://doi.org/10.7567/JJAP.57.06KB03|qoZewFyNs1qh1GL6d2BFMCf4yqbE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|211.3|0.698|14.88|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCA-1', 'Au']|['PCA-1']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801248|qooOJBBVsDX821OqjR2P48MnATg4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PCA-1', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7900001908697432|0.93|87.6|0.54|4.4||['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1002/solr.202200008|qos5N4cwBz2AiXezfK9mqe4WougO|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|170.0|0.65|11.6|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5′′-n-hexyl-(2,2′; 5′,2′′-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )"", 'Au']"|"[""Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5′′-n-hexyl-(2,2′; 5′,2′′-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja503272q|qotvLpWITcaDUTlsXxZJ0HYTei9j|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5′′-n-hexyl-(2,2′; 5′,2′′-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.03|213.1|0.76|16.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|qouD93JIe3ShU7RtEAP_ef35_DW2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|qp0S5XZjL0qJ3t26mg8AwekJlB2T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.0|0.56|10.81|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1155/2017/2562968|qp2p-vdQvSV6WLTV7glTnGxasF9s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||1.04|173.6|0.7|14.78|['PEN', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03696-1|qpDWB2HkmOq9N3I05fSdjq5SFnWC|a perovskite solar cell with the following device stack: ['PEN', 'Graphene', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|2.05000021859384|1.15|93.2|0.69|6.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|qpIezeyIsCjmAtVSiGeoyYoMvr-9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br50C100H519I250N181Pb100|Pb100C100N181H519I250Br50|FA0.81MA0.19PbBr0.5I2.5||1.11|235.9|0.74|20.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee02252f|qpTkGaVI-PQvZcpIFDwWehQHhPmk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.19PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|139.1|0.59|7.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|qp_uj2wU-80oymSBzME-ZuUAfD_u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|156.6|0.64|9.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj02074h|qq-YvTSBgKVyfAzQqPk-xuY5tW8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C50H293I129N57Pb50|Pb50C50N57H293I129Br21|FA0.14MA0.86PbBr0.42I2.58||0.96|219.3|0.779|16.4|['SLG', 'ITO', '3,6-PCzTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['3,6-PCzTPA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.9b00372|qq1avU3ahq76k4iGHrUS4SVkqQ8e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3,6-PCzTPA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.14MA0.86PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|183.0|0.59|9.6|['SLG', 'resist', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1063/1.4918751|qq44P8VczgmM1Q2U5jKtqfJSPC7T|a perovskite solar cell with the following device stack: ['SLG', 'resist', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -C17Cs2H85I60N34Pb20Rb|Cs2RbPb20C17N34H85I60|Cs0.1FA0.85Rb0.05PbI3||1.11|245.2|0.72|19.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|qq9xFxGc-MX8ik5QtdhWRcdrYNC9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.85Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|148.0|0.63|9.0|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1016/j.solmat.2016.10.035|qqFQAwSKoJBLa3IO791VdpD53F4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.898|207.0|0.7|13.0|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'MoO3', 'Au']|['TaTm', 'MoO3']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acs.chemmater.9b01396|qqHixTatUcic6EKhWM8bPDzkwV6A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'TaTm', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.97|0.7759999999999999|16.94|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta08791e|qqR-sUGckxiy3gqc03akH-onoLwX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.99|234.0|0.66|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']|['CuFeO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14740|qqW2aawz_QQw4yAxLE1dj-7PyQvc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuFeO2-np', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|136.0|0.4579999999999999|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta01219d|qqZPTChSXc97lzNN7AdgA0m8TWu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|215.3|0.746|17.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solidstatesciences.2019.03.024|qqcmje23WVxLAB_5gG4qSvxF7RGJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|117.0|0.57|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep25648|qqin3PapEtYpfhlPGmVY1w9CZKJk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|204.7|0.67|14.39|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|qqo79PDDHfKA6BQARwIFSho58cLJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|156.7|0.523|6.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c5ta02238j|qqod9_DFdmzyXjZkJJg32PwBdFTI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.5|0.667|13.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|qquM5VCRBNJfnzd7oKWFSZptp7BW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|185.0|0.782|15.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2018.03.020|qr3XlVXDbKZdiJQnVjGkSaPSd9L-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.35|27.0|0.55|2.02|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05613b|qr9x8vOJl4E0VAx38t5ntUrkImOt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6380001746618096|1.05|217.6|0.6629999999999999|15.15|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|qrCC-b-_YiScyg2dOLWGwo067bKz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|201.3|0.574|11.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5TA06813D|qrFtrG0rs1DbOsC9l7Wqf5mdSuxa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.76|47.8|0.581|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|qrHgbUymQIOfS3P49y1bxsxv4INH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.085|243.1|0.7020000000000001|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.041|qrLchlAxb_XoC5zylthS63sPpxe9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.054|171.1|0.53|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03890a|qrZG1wi4mzfMNEiPrLrr4E7uzP7C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|67.0|0.51|3.4|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|qrcoM896daacUMW21JaPLm0teyfN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|194.0|0.674|13.7|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.016|qrnyYy0rDYOckEF50wGDjRw5z7qS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|24.4|0.26|0.32|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.052301|qrz7cG2vs_HGCPaRoGmhwvqi7uSw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|219.2|0.73|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.08.002|qs5BrVXqM4F014YD0jux-mhcP1V8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.5|0.633|12.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']|['DAHI', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.8b01650|qsI6SS2h0MGIfnEwXmCNybL-8CeZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|222.2|0.73|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b02848|qsRNs3GGfA3yUYnS3aTR1TIDT8C6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|203.0|0.37|7.2|['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'Au']|['PDCBT']|['C60-SAM']|bulk|https://doi.org/10.1126/science.aao5561|qsT08ZEr38fzYpUxNwHyyD-tYHlQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|191.0|0.71|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|qsZtuFZYaelimigXvBy9uP2ZAPXk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.13|231.0|0.76|19.9|['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', '3-(1-pyridinio)-1-propanesulfonate']|bulk|https://doi.org/10.1039/c8ee02242a|qs_OuvbLwJkTXvoHn35E8mKdnr8g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.598|106.0|0.39|2.45|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06595|qsr1mX-FAulHGYYXq69CocqAWGJe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|165.79999999999998|0.57|7.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.iecr.9b00795|qstcRO5_qy0AgUEZGkqYpulaFCIO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KIPIG']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3200001407531068|0.1889999999999999|223.6|0.281|0.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.156351|qsyUGTJTvmyQuM8cFCahDtGy1LTf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.67|15.8|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1557/adv.2018.515|qtHH1wbFR34bjNAcgacUTIcCtrct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|222.6|0.755|18.68|['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'DPC60']|bulk|https://doi.org/10.1002/smtd.201900476|qtJfMpgRYDe_sETcf8fODKxrmhxh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'DPC60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6459999999999999|50.0|0.61|4.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1149/07401.0305ecst|qtKKsOBbYOAhVqQIdsFyjoBjW4kt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C24H64I28N18Sn9|Sn9C24N18H64I28|(PEA)2FA8Sn9I28|1.410000150349909|0.57|144.70000000000002|0.66|5.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1021/jacs.7b01815|qtNJq1XvJtHk7Z0iKXO1AG0aJoEC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (PEA)2FA8Sn9I28. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.04|218.0|0.65|12.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|qtn0BRiLE0tEOC7LX7jbGFElUmd8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|203.78|0.5589999999999999|11.52|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|qtsHIZOhZbwY9mLacqqNjeBXOx1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C78Cs22H390I85N156Pb100|Cs22Pb100C78N156H390I85Br15|Cs0.22FA0.78PbBr0.15I0.85|1.670000178074006|1.19|203.3|0.817|19.76||['NiO']|['BCP', 'C60']|not processed|https://doi.org/10.1002/adma.202201451|qtuf0lG4f5p7pA3yjRY2mWVfMI0J|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.22FA0.78PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|224.8|0.758|17.95|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|qu3dob9kl7ZFev4WDu2YeXyxolJp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04575a|qu4qlfqX7QW3UZotyfiNDZP4fKO2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.0|0.77|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b12137|qu5klJmPzGo285xGlNJG-hvTVqKq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|105.0|0.2019999999999999|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta02184g|quEhXJDGWAu9Ge4KdlLZtipJWyIa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|146.5|0.614|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|quLYBV8_owzKdNF0e3wowOJbr_yF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br25C48Cs2H248I125N88Pb50|Cs2Pb50C48N88H248I125Br25|Cs0.04FA0.80MA0.16PbBr0.50I2.50|1.6350001743419162|1.05|182.0|0.76|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|quheTIuTwseOEY3hPxVGtfGrIuxI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.50I2.50. -Br3Cs10I27Sn10|Cs10Sn10I27Br3|CsSnBr0.3I2.7||0.12|4.9|0.25|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jp5126624|quvL7hAXecI2VbyJJwzNHj6PBJZ1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnBr0.3I2.7. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|200.0||17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9sc01183h|qvCQZbu6tvHPy9PqjSEnv9Ez4gNW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|238.2|0.735|19.36|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|qvGqBgXKipldGx7ZCIeyjfmvQIfc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|219.7|0.726|17.44|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.008|qvJtS3gZkqqyKhaLs2YSM2I7eD97|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.91|221.1|0.56|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']|['PEDOT:PSS']|['DNDIF3']|bulk|https://doi.org/10.1002/asia.201901452|qvT6Qxw9ILobabwFjauVlQPTqxhr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DNDIF3', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.835|53.7|0.53|2.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|qvgf0xA97h2O5knthT9v8X9oY7pR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|218.8|0.746|17.08|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8ta01617h|qvlzSbg6h2wtdeledy03PeNVot2M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.0|0.58|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|qvocVh_J4nY_L9tQxDauJ9LGxFdM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.92|174.5|0.69|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.044|qvpL_2etp3MgfR1Xvmj7S1WCWAW0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.4800001578140891|0.991|227.3|0.679|15.29|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']|['Carbon-nt', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04190|qvtWd5UNEc1aiRTQ-Zgwwbrk-2EB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Carbon-nt', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.019|211.4|0.7490000000000001|16.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1063/1.5048424|qwDJZwY_YR_P6T83kYzKyVUqZWY0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.1|227.0|0.797|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|qwFnCC-RlnKIXpZPHo61kF2MdU0k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.108|181.4|0.72|14.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|qwH951zBw2Yc8X_k5kVS397NhcdD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.06|199.8|0.733|15.51|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|qwIVGyhX6rZtm75VkaZm2RJqzR-4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|165.7|0.69|10.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|qwnTVTndJ-0b_nD_NbtrYfaXub77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|152.89999999999998|0.71|10.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr01717d|qwokQw-6qARlnaLKOM6tk6xttiIB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|193.5|0.76|15.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.003|qx4xr7rzYqNxy5AJxtPEyxSi3gyd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.922|190.0|0.764|14.5|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|qx7Qio11tObay1pA0YXgHBe8Tmvx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|228.7|0.7490000000000001|18.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b01740|qxBaaGdRz3gG4kAawl8gibUglIP7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|235.6|0.773|20.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|qxMU1cptWdVaRTfv82BEqK8HZ3UY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|qxPk_NVr-wt2EM77na7maTKfcEQH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.11|237.0|0.78|20.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|qxV3F9Fj0NeIV_3CgvixAGV45grN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -Ag5Bi5Br28Cs10|Cs10Ag5Bi5Br28|AgCs2BiBr5.6||0.78|19.0|0.637|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta10422d|qxWAA-Jd6HqP0m9JATWNrMLh9TiY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2BiBr5.6. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.19|182.4|0.7559999999999999|16.46|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00278|qxdCiktbm-bW9n2TbE3vbYUUtRWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -Br33C100H517I267N183Pb100|Pb100C100N183H517I267Br33|FA0.83MA0.17PbBr0.33I2.67|1.5900001695435149|1.04|244.3|0.75|18.2|['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO4-c', 'ZnSO4-mp']|bulk|https://doi.org/10.1039/c9cc07398a|qxgDqrgpE52dUjvMpmaEMnzOVBnA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.33I2.67. -Br60C95Cs5H494I240N171Pb100|Cs5Pb100C95N171H494I240Br60|Cs0.05FA0.76MA0.19PbBr0.6I2.4|1.5900001695435149|1.16|236.0|0.784|21.43|['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', '3-(1-pyridinio)-1-propanesulfonate']|bulk|https://doi.org/10.1039/c8ee02242a|qxntXslCYDo7vzBjwkz2k8l-eTM5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', '3-(1-pyridinio)-1-propanesulfonate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.76MA0.19PbBr0.6I2.4. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.518|140.7|0.708|5.16|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/anie.201811539|qxnvoQeDitrTbkQXH1oaEs5qGaCb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|192.7|0.55|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.04.191|qy1RHEpEzcKmgjoimgpEsok1EekP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|201.6|0.598|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|qyLWqc-rRrYdRMoGsQ7T5NwBNruk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|229.5|0.76|19.09|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.11.004|qyQZBazOgZt6I_94AJqwPlmkmyir|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.062|215.2|0.7340000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|qyQyl-PORtKQNvtwiMnRdo4a8vW7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.0|0.6990000000000001|15.96|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']|['NiO']|['PCBM-60', 'PEOz']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|qySWJF-a91P-TIDSUI1XqNVMocXh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Sn5|Sn5C5N5H30I12Br3|MASnBr0.6I2.4|1.3600001450183523|0.19|133.4|0.321|0.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/anie.201707037|qyaIxuNSQwwJCqmPPwoG0cBU5idk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MASnBr0.6I2.4. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.135|219.7|0.741|18.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|qyv-YiXcZzif3rFMx6b11FXkJzu-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|227.8|0.705|18.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|qz0Qb99AwLnsmy835DHMbDpQK0tj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|156.8|0.491|6.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.002|qz13fxeg2088DG1gXDFd071j2HpR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C50Cs50H260I249N90Pb100|Cs50Pb100C50N90H260I249Br51|Cs0.5FA0.4MA0.1PbBr0.51I2.49|1.7000001812729404|1.146|170.0|0.82|16.0|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1002/aenm.201703506|qz9UHqyhyn3EjxzTr6v5bELaog4d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is Cs0.5FA0.4MA0.1PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.75|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OEtTAD', 'Au']|['Spiro-OEtTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|qzHwSRrjsnOABuqUuMSrczjA0KNf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OEtTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.978|170.39999999999998|0.556|9.62|['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c']|bulk|https://doi.org/10.1039/c6ta04726b|qzaNvmOkVCnCc-2B1lecKrsykdrX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5800001684772036|1.1|204.0|0.69|15.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|qzhGzPYcSoFkU1yO71qUSmukscFu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|227.0|0.66|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8se00332g|qzhSq5cqrgZkJK1nmzFXQp6kKO9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I57N37Pb20|Pb20C20N37H103I57Br3|FA0.85MA0.15PbBr0.15I2.85||1.1|207.0|0.7|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.08.062|qzt8Zy1OfFQPCAkxN3dbV6hD4I35|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.972|189.0|0.816|15.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|r-12j4sdif-hPI5Hdrauswff3yFF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|168.6|0.627|10.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-016-5196-8|r-1gQoy8i_kVOUpVpIDyi-JodfSJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.05|197.7|0.757|15.73|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||r-5L5L8pN16JoFmzr2e_Aaae9Aay|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|141.1|0.6|6.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|r-5j6f7nCzP5_wnvYyQpdB9VOFS8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.0|0.73|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM13', 'Ag']|['SM13']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|r-8s1cAZiCRkRvvpFBKxfz1EXkQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM13', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.7|0.74|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|r-CzzPQCAfROA7tgHJvVj3ElW5l0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C64Cl4H312I180N121Pb61|Pb61C64N121H312I180Cl4|BAFA60Pb61Cl4I180||1.06|229.0|0.703|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|r-No-RvwfPBDJksbj9QMKDbYNgT_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAFA60Pb61Cl4I180. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|1.08|196.2|0.6|12.71|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|r-S1xJRXeFlHXsFqR_ZtMDqsF1h4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -C12H63I30N10OPb10|Pb10C12N10H63OI30|(5-AVA)0.05MA0.95PbI3||0.84|139.70000000000002|0.513|6.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta01383c|r-TQ0luLyE4Zxdxu6uXRwUfO9zD7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is (5-AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|88.6|0.5|4.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.02.012|r-WVDfTDk12FqnGwSO7FOvgy4fh6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.9|0.78|18.98|"['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)"", 'Au']"|"[""9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)""]"|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201803025|r-ZkbHn24o0P5ESjoG8-Q_eodeI-|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', ""9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|144.3|0.56|6.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|r-anM-gwXI-OfxANTLYhvWohBd8o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|187.7|0.63|11.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6tc02307j|r-fDi9LxtioWw4f7-tqs1YWkq1Sn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.06|23.1|0.69|1.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta08203k|r-u5qv1uQW8qLVuR_NqUt3_GyNXA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|159.4|0.69|9.92|['Ti', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1246/cl.170804|r0Eh74kTfRTCg7siWL-7Q54_UyW2|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|94.2|0.759|5.8|['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CZTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|r0Hik73IpVgetW4Bfwuydk5BiWOf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|82.8|0.57|4.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508015c|r0TMCI-SoyIVYHG0FvQbw2G0S8Oj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C47Cs3H243I150N86Pb50|Cs3Pb50C47N86H243I150|Cs0.06FA0.78MA0.16PbI3||1.1|220.0|0.78|19.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|r0aGR-AvXdgkeUDN5jFz6kFWlVLP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.903|151.4|0.371|5.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|r0aHUKTKnbpXNqns34QG8Gw5UF8w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPb1.0Br3||1.209|39.64|0.521|2.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|r0rvACJnMGfUjOK9PgqPNbvApYr0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|156.0|0.7|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2494/photopolymer.29.581|r0w_mPfLn-HHUiQMMDQ1zFIlO8Xq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br55C90Cs10H464I255N166Pb100|Cs10Pb100C90N166H464I255Br55|Cs0.1FA0.76MA0.14PbBr0.55I2.55|1.6100001716761378|0.93|214.5|0.6|11.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EP02', 'Au']|['EP02']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c07586|r19qZGLbXxdpFSdOsrCpuj52Vtj6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EP02', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|181.3|0.64|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00010|r1LTySFkFb2nHR7Dty0BZ866BG0N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|0.0|0.45|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|r1PqPDNNxfviW6rmlCeU80l4MESn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.7|11.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|r1Zfu5Ym7Rse1bMPfL8OZ7AEGsiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.1|0.7|14.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600493|r1cWth1fs16ghHwNl4104yRI8Lfb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07625|r1hfAcBK0NcXFGi24W4DweDMcJWT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|160.0|0.58|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|r1ntn4jc8RC4VOtFzPkFMNIYjwVh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.086|234.5|0.7909999999999999|20.15|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']|['NiO-c']|['PCBM-60', 'Ca(acac)2']|bulk|https://doi.org/10.1039/c9tc03259b|r23b-E9HQvrH2zRw3RDBW54QNHAN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ca(acac)2', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7040000000000001|196.8|0.424|5.91|['SLG', 'ITO', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PbI2']|bulk|https://doi.org/10.1002/adfm.201706317|r2ScrBZJnVpxHUYlL5DQwjZQbLu3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C47Cs3H243I150N86Pb50|Cs3Pb50C47N86H243I150|Cs0.06FA0.78MA0.16PbI3||1.13|230.2|0.778|20.38|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|r2TAjuKJ3BbrTiL0FMox-No1h_gC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.039|212.1|0.72|15.93|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['NDP-V', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.8b12675|r2W0Gx9u13Ypb_0esJOBsFC98Qvx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'NDP-V', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.976|189.5|0.5670000000000001|10.49|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|r2WQU09KMgcadbRSRG3HweFkAjeR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.2|0.74|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']|['Imidazonium iodide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.035|r2XSo5dOSqej732BNr_N_anGgqlv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Imidazolium iodide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.6000001706098266|1.03|228.9|0.76|17.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b00930|r2_SzSbMWe4HRKorkD38w8vEDkiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|212.3|0.758|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|r2hgti-2XnqcDCs_kDHQWLiBzN0o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6100001716761378|1.11|235.0|0.76|20.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b23485|r2me6psLUpoeYhhjkRLca7kNRczs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|173.2|0.657|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.09.048|r2pF1IP806VO88n-0cJtsAoQKsZj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.85|170.0|0.43|6.2|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1021/cm503803u|r2qAhYqQHLpzo4rFw7r00u-wVCuH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|187.2|0.439|6.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|r2ymoLZ9A-gI9jDmmIAyGvyD4QAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C100H600I270N100Pb100|Pb100C100N100H600I270Br3|MAPbBr0.03I2.7||0.959|237.0|0.746|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2020.104984|r32q142bOZFrOkNTqU12rpMiXwp4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.03I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.5|0.7440000000000001|19.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|r32wkgg3UYD7KYOsUB5Lkxa9Z5L4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|219.0|0.575|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5093873|r36sYBsThU53m6PVvgMziyAjy2aC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CGeH6I3N|GeCNH6I3|MAGeI3||0.345|23.2|0.36|0.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|r3LJfEHqHywXbIr2MHjNKCDRxNTQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.178|138.5|0.7|10.36|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'SnO2-c', 'Ag']|['NiMgLiO']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta05802h|r3RMcgQBTij-cNIxbWW9BKukFvvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'SnO2-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|222.9|0.52|10.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PABA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PABA-SAM']|bulk|https://doi.org/10.1039/c5ra17129f|r3cXQpgU9Il2eB1l0PY5zbOB0c4W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PABA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5Cs5H25I14N10Pb5|Cs5Pb5C5N10H25I14Br|CsFAPbBr0.2I2.8|1.7300001844718749|1.085|157.20000000000002|0.8|13.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'TmPyPB', 'Ag']|['NiO-c']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|r3fHS8DkHES8UxQuFTqHAtfEHcIS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|117.0|0.59|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA05070C|r3vnnPeQsK82EdiNhUR6ch17-8zc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|193.1|0.743|14.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08418d|r468MbgXqZ6gyvP034tIcuhG5oKd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.973|193.0|0.69|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|r47lzyODPHrDDQR6f7FrPuiMSijh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.75|17.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']|['RCP']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|r4VAHtzOsZIxl_mLKFdB_P5AJmJm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||0.997|192.9|0.67|14.53|['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnS2']|bulk|https://doi.org/10.1002/adfm.201805168|r4X0lpZZnKzrEa3dvpc9HqA5mxGR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|151.0|0.485|4.8|['SLG', 'ITO', 'NiO-c', 'Au-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'Au-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr06741g|r4pT5sSzBQKgdmyYra-FuYoIlbtf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Au-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|138.0|0.35|3.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2014.08.015|r4qQNmPVlZJhB2KytuPj4hsHOJqq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|159.0|0.63|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV7', 'Au']|['COPV7']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|r4u6k0FqURjzsm4dMGO9xWi-LP2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV7', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.5219999999999998|72.4|0.804|8.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.021|r5AkCT_PEVxKaoPt0nZeSYgjPxPv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|125.0|0.57|4.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2018.03.020|r5Ek-b_zqZUEBEuz9YsBLRb-jpLe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|52.5|0.51|2.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|r5FKx9KoK4JM5skvZlCxuDejhIJE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H117I57N23Pb20|Pb20C20N23H117I57Br3|FA0.15MA0.85PbBr0.15I2.85||1.08|214.9|0.708|16.52|['SLG', 'ITO', 'Ag-np; NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']|['Ag-np; NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.06.102|r5Z7NaS-_DWw89WJmFZWfgNev5s4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-np; NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.15I2.85. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.79|177.8|0.4|5.62|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1002/solr.201800359|r5xEjKcCmA0swO7-2m6OqeR5BDIX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.79|213.0|0.5|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150743|r68Rzw-2ZCIZTZ2WE_EJpWUiT1P2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.99|214.0|0.64|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700150|r6I_ol8SoI6jqftofRLLrZ4eyPYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.92|239.0|0.68|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-9734-4|r6vKAEIpbhmP6oJG-8BgFmujjqtI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.23|137.6|0.49|1.56|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00383|r6ziBBST3OcxWz29SRFeAk_bBJc3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||0.92|120.0|0.573|10.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1364/PRJ.393647|r74QuL58In0XQv_IEIPNeAcu-2jO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900197|r7BEztYd4XhR6yjc-nkl1jZ7wiMm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.0|228.6|0.691|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta12890e|r7BPIcFZBdocM14MNqxm70CFZhFM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|116.0|0.64|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|r7GjSY0d4_52XT5ClyeQKAlnuBlZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|188.0|0.6970000000000001|13.7|['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2015.09.054|r7O81BabXfIprAkHDCq1PyAo9D7z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|207.0|0.8|17.8|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c8ee00162f|r7P2Ys4JFJC0bZcuCG1X_Q6_3E7X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.5|0.72|14.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.088|r7XEegG24qPAK1LbqKPFECBI43qD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|193.0|0.49|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.03.045|r7hljk3WH2MIhxYa7GShIXCuQYoG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.091|218.4|0.755|17.27|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']|['NiO-c']|['PS', 'PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|r7xp_UjXve3LCGybA6SbkOJA4hf2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PS', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br69C93Cs7H488I231N163Pb100|Cs7Pb100C93N163H488I231Br69|Cs0.07FA0.7MA0.23PbBr0.69I2.31||1.108|233.4|0.722|18.67|['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnOS', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b11001|r804-EXcHrF3D2RJti13iP6QWt5o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnOS', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.7MA0.23PbBr0.69I2.31. -Br58C50H300I87N50Pb50|Pb50C50N50H300I87Br58|MAPbBr1.16I1.74|1.900000202599169|0.6|2.0|0.68|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1179/1433075X14Y.0000000252|r8OJXWk_vkAyRyiVeYbOKkRM5we4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.16I1.74. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.96|163.0|0.573|8.99|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; PDI-DA', 'Ag']|['NiO-c']|['PCBM-60; PDI-DA']|bulk|https://doi.org/10.1021/acsaem.9b01154|r8VJJ3cjgwIeskWWzNnyBVtQfn5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60; PDI-DA', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|202.9|0.703|14.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|r8Z3D0e3-A8xwyI9TAp_0y_2TObD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|23.1|0.28|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,3′,5,5′-tetrasubstituted 1,1′-biphenyl', 'Au']|['3,3′,5,5′-tetrasubstituted 1,1′-biphenyl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|r8b2v-N2ojjNDF4er_Dl0zFEYGCA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,3′,5,5′-tetrasubstituted 1,1′-biphenyl', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|157.0|0.688|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01563d|r8k0MJyigmGnGLCB7a634U2n4BzP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5880001693302526|0.9|221.0|0.625|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra03068a|r8mxSlflXjZeNbIo0mTS6jP8OUBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.3|0.71|17.04|['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO-c', 'SnO2-c']|bulk|https://doi.org/10.1002/advs.201700031|r8r_kpaLLJZRRYWjWibG7CnwHqF5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|216.0|0.725|16.98|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta12206g|r8tvsqwOApwP_ge3U6mwXcnkdYpK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H533I250N167Pb100|Pb100C100N167H533I250Br50|FA0.67MA0.33PbBr0.5I2.5||||0.64|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201802985|r8wYAXvcWfslu6K64pfNGilge9hH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.5I2.5. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4||1.08|220.4|0.69|16.52|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-018-24436-6|r9LXV8kpZjwryAi32A4pBBUghs4M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.4|0.74|16.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'CeOx', 'Ag']|['NiO-c']|['PCBM-60', 'CeOx']|bulk|https://doi.org/10.1016/j.jpowsour.2018.03.079|r9QoMapgQBNmpSi3xtXTueVVfvoH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'CeOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|203.8|0.66|9.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10294a|r9ULUFQLMjvsXOJjrphOdpEN4bwM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I49N37Pb20|Pb20C20N37H103I49Br9|FA0.85MA0.15PbBr0.45I2.45||1.14|235.0|0.73|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1501170|r9Y6cQqj6BlvllF7z9Od_yZV1ibs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|184.7|0.75|15.07|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta07617k|r9htt4cHVtXQzBhmjVQerh985iY6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.2|217.0|0.74|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|r9kTsyYp6pQ2TSuCR2-FU9qXvPBN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5|1.6000001706098266|1.09|215.0|0.705|16.73|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b00830|r9or35vhztkVcwdr7N-9GuBXcKA9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|123.65|0.518|6.15|['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|r9x_hCqFQD5vMYfv-l3-th6uhVRd|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw; Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.112|223.0|0.53|11.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01041|r9ywWxDMMaZZkJJxaYtvjzVuGykf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|200.0|0.7|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee03907f|rA3Ii3TuDjUVlCkay-iNhkx7VuY_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|184.1|0.71|12.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70; ZnO-np', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-70; ZnO-np', 'TiO2-c']|bulk|https://doi.org/10.1007/s13233-018-6086-0|rA7jFpIT7C-XyBmdUHLKr8eyHppF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70; ZnO-np', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br600Cs200Pb199Zn|Cs200ZnPb199Br600|CsPb0.995Zn0.005Br3|2.2500002399200683|1.56|73.0|0.8059999999999999|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|rA8vSk4_r4bJbVR7UeoVje0Ly2um|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.995Zn0.005Br3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.92|191.0|0.532|9.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|rAMjA324NIn17RyO1nUL64G2oGgP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.912|222.0|0.6509999999999999|13.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|rAQnifElGoLaaEt9shh_I_eJ5nnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.3|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|rATBL8idSs5UY_lkdPcNzrS-42lr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.4|0.59|11.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solmat.2019.109927|rA_YYAT6XoFDxrLswhgwHzhGHf4m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|213.9|0.43|6.63|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.cplett.2015.09.044|rAbspn2w59Vobr07mDCEAbftJ3tp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|127.3|0.752|9.38|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta08193a|rAgbGO2fxTZSxw0YC_CdIrjbtrgJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|197.0|0.78|16.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|rArTWkIZF63mLhrE2E8LIh9rX6dw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|161.0|0.433|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.062|rB0pkur_ZuIbr26xjtB7VRAt-MRj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.225|157.0|0.3929999999999999|1.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.10.088|rB5o1WmvmsQY3vj-bCR9ZHjKvMyL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|205.0|0.75|16.5|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|rBPnPelgCFI2J-FtRc4YBqAT_vJ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|150.8|0.523|6.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.003|rBZDaRGWOhdj9JEbRDoy4PPKNP5z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|170.0|0.61|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700449|rBlCzFDfabK3bNWfHTsGeGBJBdle|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.16|127.0|0.7040000000000001|11.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|rBxY0msNW2QRmP-pFGPY4NwSzZpG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|9.6|0.71|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee02465f|rBzj9QenffeosRSxm3eu_pkgGvm1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||1.3|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine"", 'Au']"|"[""N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|rC7HsZIGe3ilY87DWoBOFRYVn5zV|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|176.0|0.74|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'LiF']|bulk|https://doi.org/10.1002/aenm.201600994|rCDYYcQaWEiaJm_3xt0tG8_b5s_y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.18|148.6|0.73|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201803269|rCXz8p_ggy53InM17lskFittTucN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|10.2|0.22|0.0|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|rCZZmdRFhXR-hHNUyc7bblohsCAG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b01330|rChKmQrSlNqgdG_Ah5nT6XNIIqPN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|212.87|0.675|15.44|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiMgLiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra06365b|rClxMuG3flom5LRWLvTU_Mhv3Q77|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.0|0.6859999999999999|13.76|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1557/adv.2018.413|rD1iJWSQEZ0W3OoDxEX5l9k76wDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|227.34000000000003|0.588|12.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.06.054|rD9c7EsyFzCDufQcQ1Du-JpDakhg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br35C93Cs8H477I265N174Pb100|Cs8Pb100C93N174H477I265Br35|Cs0.08FA0.81MA0.12PbBr0.35I2.65||0.984|230.5|0.627|14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'HTM3', 'Au']|['N2,N,N8,N8-tetrakis[2,2-bis(4-methoxyphenyl)ethenyl]-4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine2,8-diamine']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1002/anie.201903705|rDNcQ-Wus8dT_z9gAjYHg3BVouEi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'HTM3', 'Au']? The composition of the perovskite layer is Cs0.08FA0.81MA0.12PbBr0.35I2.65. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|211.0|0.63|12.5|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|rDR92HRIszF6hbkRapE82hiEASjy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.126|236.0|0.76|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|rDRIUeURFgJ9ygvRwpIqqkdu2jbN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br64C250H1325I186N425Pb250|Pb250C250N425H1325I186Br64|FA0.7MA0.3PbBr0.256I0.744|1.710000182339252|1.15|165.0|0.682|12.95|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|rDV8jiTeheZmjfZ5r3L9rIpN8YF4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.256I0.744. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|227.0|0.78|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|rDcR0biWOfgS1egAzdhYSPOJWtdR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|rDcnL5LSLK_eNTOb9-5_aqIHFCq2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.14|210.0|0.69|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.060|rDhwrQYiB-OtTjAS1C6G1wFBT_Hi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.5|0.79|19.51|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|rDugBv70Eo7bYteAxXG3BcpRz5fa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.099|205.42|0.728|16.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||rDvbJsz-cC6s00IqE1JjZEgNMi8I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.982|205.0|0.585|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|rE2z4zA--sC-PY0X6z1dEac3jtrM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|229.7|0.73|15.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|rE5lvcbx2DGLZbAtjpzaaC8jzdjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H26I6N3O4Pb2|Pb2C9N3H26O4I6|(GABA)0.5MA0.5PbI3||1.01|198.4|0.65|12.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|rEBCCDV-2J1KGydoLv52q7UEDdO5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.5MA0.5PbI3. -Br87C85Cs15H425I213N170Pb100|Cs15Pb100C85N170H425I213Br87|Cs0.15FA0.85PbBr0.87I2.13|1.7200001834055632|1.11|151.0|0.701|11.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'MgF2']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02179|rEOqwR7RBzdmkPJZP-71O4TIFOHe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'MgF2']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.87I2.13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|182.0|0.78|10.52|['SLG', 'ITO', 'PEDOT:PSS', 'Si-np', 'Perovsksite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Si-np']|bulk|https://doi.org/10.1039/c6ra24205g|rEVdwxCS92C49rUt_NDtA_2_E4Fo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Si-np', 'Perovsksite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|221.0|0.7|13.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08536|rEYIaS8nY8swh8MN_6ZWMs7cAIMU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.8|0.59|13.2|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDT-TPA', 'Au']|['IDT-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|rEm9F8-q19IavfVAn9JstFtWzacE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDT-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.7|0.8|19.25|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|rEmgsW3VTUP0BzkffAYKuo4DbtG3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|217.0|0.48|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2014.11.034|rErgXDHzELaTLwdvUs1xvNUqJXw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsISn|CsSnI|CsSnI|1.2700001354215498|0.997|179.7|0.857|15.36||['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1088/1361-6463/ac1e4c|rEsxYwLE4OXTSYwOpNG8_ENHM7zR|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsSnI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|227.0|0.62|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.02.013|rEubFRW-GrU2VOfqqhtFdto69x5e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|178.29999999999998|0.59|9.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.045|rF2iExBwsKlncOcLGMM1i4EskRDe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BaC100H600I300N100Pb99|BaPb99C100N100H600I300|MABa0.01Pb0.99I3||0.98|196.0|0.6779999999999999|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|rF5aayC66rF3VLErxBA6Gq0cfMOb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.01Pb0.99I3. -Br39C87Cs13H435I261N174Pb100|Cs13Pb100C87N174H435I261Br39|Cs0.13FA0.87PbBr0.39I2.61|1.5600001663445808|||||['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1039/c8ee01101j|rF64-GVIlAo3QCxSrqMXpcfqdvcH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.13FA0.87PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|202.1|0.76|14.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|rFHfJtqZE69Op_B4QRVbkJIcnDX6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|200.9|0.748|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|rFHoP3-RZ8JDMsafDZrIMLz7Hsrg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.2|0.71|15.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05974g|rFV_a-rs8YRJHfGvHZKFTMEIHPsD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC20H120I59N20Pb20|Pb20C20N20H120I59Br|MAPbBr0.05I2.95||0.99|196.0|0.792|15.4|['SLG', 'ITO', 'NiCo2O4-np', 'Perovskite', 'PCBM-70', 'Al']|['NiCo2O4-np']|['PCBM-70']|bulk|https://doi.org/10.1002/advs.201701029|rFXxh1V3yRTz-uZEQgrjmwHI1qxd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiCo2O4-np', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.0|0.7|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.5b00953|rFa1oTi8VXsKqMdwa9zPC5xD18UA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|208.8|0.78|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201700131|rFd0kOZx3AidzDzHNsz6BJGNKdE_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|202.8|0.778|16.4|['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']|['Cu2O']|['SiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.077|rFmOD7cizuxykceQ-R3Frc4prCkz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2O', 'Perovskite', 'SiO2-c', 'ZnO-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|147.61|0.2269999999999999|3.31|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|rFvL0ctcFEZG7q8EyFPhk83Qc1Np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|175.0|0.6609999999999999|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7se00536a|rG3lFYEn44rkhFB8QPSiYtWc3b0J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7290000000000001|152.0|0.45|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|rG9tHHbOGrAZy44urvbi6FxO79_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.08|125.0|0.61|8.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|rGAfkwxVmBTeOLOz1U3yWZP9yebG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|137.3|0.49|5.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/cm504558g|rGF028i2PHoC9UFFONO47mlzfB-e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.857|143.0|0.495|6.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05672|rGFmcl3u3y1X-ucBHMGdPYcN52x-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|160.6|0.41|6.93|['SLG', 'Graphene', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S1793604718500091|rGINKvEitlY_30NLE2CDwVakou6O|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C20CsH120I51N20Pb20|CsPb20C20N20H120I51Br9|Cs0.05MAPbBr0.45I2.55||1.007|184.0|0.65|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|rGIg1XWl9TS-o2mo21e7EtsXPklY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MAPbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.211|139.2|0.7120000000000001|12.12|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/C9TA05556H|rGL2_xeQiihDmLoMYyVegjmPms11|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.8|0.8029999999999999|19.31|['SLG', 'ITO', 'PFN', 'C60; PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN', 'C60; PCBM-60']|bulk|https://doi.org/10.1039/c8ta00816g|rGS0PMn9KXQqSosDeJ0ZHoRSbPV3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN', 'C60; PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C23Cs2H115I75N46Pb25|Cs2Pb25C23N46H115I75|Cs0.08FA0.92PbI3|1.5100001610130236|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-021-00831-8|rGSodheDu3NoWQyLmHUhomLs3bod|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.92PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|221.0|0.72|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|rGVSqCqBB67f81SLndtyIodBd-XE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|98.0|0.687|6.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|rGa3ZwOtxetwG17iVxFZXZm0G8SU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|226.4|0.6409999999999999|12.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|rGaz-hjuBHZPlEpeDL6OBaO42QJu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|193.0|0.76|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS', 'PTAA']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c8ee00162f|rGbDREFyQn-XhiBhduyue77zSWzj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.02|237.0|0.66|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910471|rGhs6dzdcmuxhWDs1PaMzqHruTc7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -Br9C18Cs2H93I51N33Pb20|Cs2Pb20C18N33H93I51Br9|Cs0.1FA0.75MA0.15PbBr0.45I2.55||1.05|202.0|0.5|10.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903184|rGizMcE4Y0QcuEei5vzUPIkFoEql|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.075|235.7|0.6990000000000001|17.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1186/s11671-019-3134-4|rGjMftKC2ZosxEtcJBPds_67HnbV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.05|224.0|0.74|15.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']|['SWCNTs', 'PMMA']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01041|rGtLPtqCVy3WE9cSKEnEFfRl8xiR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'PMMA', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|188.3|0.73|14.33|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.06.011|rH-iGtA2T6Y_sXX7pBSVk2whJrlA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|217.5|0.69|16.15|['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00098|rH6s6KMCMb4sKww7KU6qCRJIFEVA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.53|66.39999999999999|0.787|8.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135379|rH9Sk03BfF3XdSpIVk0YgqV-ip0h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.1|175.0|0.5870000000000001|11.2|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'Au', 'PEN']|['PTAA', 'NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201907481|rHD0_zr5_PtRdZ0MkB0-u3vvWiRO|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'NiO-c', 'Au', 'PEN']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|194.2|0.7290000000000001|14.77|['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|rHMVO6GqdrumkCQbkfrJb5098QCv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I259N183Pb100|Pb100C100N183H517I259Br51|FA0.83MA0.17PbBr0.51I2.59|1.6000001706098266|1.17|227.0|0.8|21.1|['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PDCBT', 'WOx', 'Au']|['PDCBT', 'WOx']|['C60-SAM', 'SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1126/science.aao5561|rHRHhQ9RNpelTe2yQcsPXYojcNz-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PDCBT', 'WOx', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.59. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|66.0|0.3939999999999999|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr03366c|rHVQQcM5mn9xuPE2IVWPfStqz-1Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|151.9|0.4529999999999999|8.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|rHXNru2hhMUu7MbOA36WdokOpwse|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br22C100H517I278N183Pb100|Pb100C100N183H517I278Br22|FA0.83MA0.17PbBr0.22I2.78||1.12|240.0|0.77|20.8|['SLG', 'ITO', 'SnO2-c', 'PCBM-60-np', 'Perovskite', 'PDCBT', 'Ta-Wox', 'Au']|['PDCBT', 'Ta-Wox']|['SnO2-c', 'PCBM-60-np']|bulk|https://doi.org/10.1002/adma.201806516|rHZLth8fYWTK3CkibYx3MNrI0LUn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60-np', 'Perovskite', 'PDCBT', 'Ta-Wox', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.22I2.78. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.511|189.0|0.665|6.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee00956b|rHdSHhxkm_pqwDQbzl1dp8_wHBll|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.0|0.69|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.004|rHe4T5_pJdcRnTI7TOMmn-yMBfXm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|1.6000001706098266|1.02|201.0|0.67|13.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1063/1.5126518|rHfNLP_nG5zzseyTp_TRCAP5ABbd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|215.9|0.777|17.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|rHhC7Cl630p1TufwH0DnDijcWR54|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']|['HS-Ph-CN', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|rHi0eOQ9bxoZ4B5YEdcWBNknqexM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HS-Ph-CN', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|181.7|0.71|10.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['Phenyltrichlorosilane', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|rHiLn3gYwozfNmICLXevxsovZu50|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.1|0.7390000000000001|17.72|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|rHpMhHR3_BdQYLNcI6qcKt9wQeuq|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|0.77|72.9|0.386|2.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|rI0gheh0YAWb6LH9DYsuCzetjuK5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.71|157.6|0.3879999999999999|4.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|rI5hAqQTvm71j0F7TsYRxC5c-SYi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|210.7|0.74|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|rI6Fb5k0N8bhINd7U9C6eXr_iSMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.68|298.0|0.53|11.1||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|rIC6bQCvmnYDCTTxuSKQdpqPlru5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.0|0.8|17.0|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|rIGo-GXkr7E0gRzd7njcwTJw_IPJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.4|0.65|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aad2ec|rINzw2VZ4314_Dwp4Wo8cgMZs-32|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|92.3|0.56|3.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm402919x|rIWBf5mh1vSQ53aCKm1dntkUH3i0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br171C84Cs16H424I129N164Pb100|Cs16Pb100C84N164H424I129Br171|Cs0.16FA0.8MA0.04PbBr1.71I1.29|1.8900002015328567|1.21|134.2|0.8140000000000001|13.19|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|rIWsbBtKax-KdY6sYw3NI22JTKWx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'Ag']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.71I1.29. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|236.0|0.76|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj02074h|rIZSZ_OvqhQ1Jg67IlZucTG48LjY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|235.8|0.71|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.110|rIb-_j_527BvsHVNaCYfW1GavrjP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.097|232.1|0.746|19.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|rId37_bLmlJri_BYIlTZuR0MWLuS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.670000178074006|1.05|199.0|0.75|15.6|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|rIgjvqKahrQ7S5e1VjoiC_cCPoWZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.4I2.6. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||||||['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|rImY11oxXsEhHZEDQEAg5iPMFfcY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.9|0.76|16.99|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|rIwuHOrSeewctYYTTu8FR9q02QXH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.04|224.0|0.7709999999999999|17.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|rJZBwK5cR9cCjAmzKXCTVDRqi1qR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|||||16.7|['SLG', 'ITO', 'TiO2-c', 'PPDI-F3N', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PPDI-F3N']|bulk|https://doi.org/10.1039/C7QM00221A|rJZWPbm_LTsd7Mc7YOSogFqmLFJX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PPDI-F3N', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|225.0|0.59|12.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201400355|rJhNXn_8qfXjoWMnWu5fmXcxcf_j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br243C100Cl57H500N200Pb100|Pb100C100N200H500Br243Cl57|FAPbBr2.43Cl0.57|2.360000251649494|1.53|75.0|0.74|6.32|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'ZnO-np', 'ITO']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201901683|rJjx-31smuclFEKlZzIsQTOYdUJf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'ZnO-np', 'ITO']? The composition of the perovskite layer is FAPbBr2.43Cl0.57. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.04|206.7|0.75|16.27|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|rJmxJPAU1fBpd0Hr0gYHG3fupj4L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|186.0|0.74|13.84|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|rJpnTmfCSujepljcxUlzj0bxM4A0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.8|0.64|13.8|['SLG', 'ITO', 'Z10', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Z10']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc05410c|rJr6veZ8GtbLLJlMJBw57tuQbsaZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Z10', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|229.3|0.66|15.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|rJxg2Y2GTj5p9QsRwaZsa1O60yi2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C440H2260I1003N820Pb400|Pb400C440N820H2260I1003Br180|FA0.95MA0.15PbBr0.45I2.5075||1.2|224.8|0.77|20.77|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|rJz1ijVW08WDjA5z1eTpCRSHN2gQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.95MA0.15PbBr0.45I2.5075. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|202.3|0.7959999999999999|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8cp91812k|rK0sG__wrUkMt0rqwqybs2lLTBjg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.19|226.5|0.77|20.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|rKK0UIpQ0md-q8Az_gnHvPesOfra|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|0.875|212.0|0.69|13.1|['SLG', 'FTO', 'NiO-np', 'Graphene oxide', 'Perovskite', 'GO-Li', 'TiO2-c', 'Al']|['NiO-np', 'Graphene oxide']|['GO-Li', 'TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2017.10.015|rKNnoNwiUl4GMXfLnUMxWcEqUi5K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Graphene oxide', 'Perovskite', 'GO-Li', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.08|12.8|0.248|0.03|['PEN', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|rKWAHIT8VkRkK77boWIMR3a6_bOv|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.74|50.8|0.439|1.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|rKnisf2CB2fIJV0q2W4prv5ntohW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.077|201.7|0.685|15.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|rKuSl54H48FfgpfxXRVttRnS3zdc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|171.0|0.64|11.0|['PEN', 'ITO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1039/c6cc02589g|rKxld0c5dotEEZOMObJu4TwboSPN|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.108|224.5|0.7390000000000001|18.39|['SLG', 'ITO', 'NiO', 'PS', 'Perovskite', 'PCBM-60', 'Ag']|['NiO', 'PS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08084h|rKyvBQOCMwHQq199DRvGln8ocdoi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'PS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|238.1|0.659|16.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ra12049d|rL32IZasUHOmyx1dWN4AWRMrWbe9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.0|0.8059999999999999|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|rL3AaVffQhMbyq3txhd-CHhFhBWV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.631|133.3|0.3229999999999999|2.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|rL3s5S6IKTDxCi__Hn_GSuIs6Pd9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.068|211.7|0.76|16.72|['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']|['PTAA']|['PCBC6', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|rL53kZmItXaS6wAFCPHtbDT9cYij|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBC6', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|rL88UbcWT77mHLf1zcI0UVDaMIcz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.014|198.5|0.7120000000000001|14.33|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['NiO-c']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1002/smll.201603225|rLCFmXGUwSOr1O8vzWzkD09AQ90d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.7090000000000001|38.9|0.62|1.62|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|rLF6t-gsqkurzGrwsMcHi_K9MoyL|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|180.4|0.687|12.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.09.048|rLIz_ZqPY0KD3JQIGTG8jqatQtyD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|232.0|0.698|15.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.10.014|rL_iyGM3FsjTLU7eqXNvImNlV2FD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.2|0.738|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00192|rLcQTAs9xPfy31KhPgiCQ3evG6qP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||10.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|rLmYfQP-Jv0YOFEjJnMUvEI6ValT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.38|71.5|0.71|7.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00215|rLn2HSwtPWOKvXDwROZGFhYMPgKB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|153.0|0.634|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms11105|rLxK4strwNmEEhcMCt4s_PDw2Rfr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|215.5|0.76|16.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ta10212c|rLyMAjrdMGKC0oG4I_RmpnGW997a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|163.44|0.7509999999999999|12.96|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|rM-VjLB3GzD3NZrvb-nu_zRQtbD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|206.0|0.767|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-2', 'Au']|['BTT-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201511877|rM6oPA1R5TfA8IsQ5BngOai8utsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-2', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|238.2|0.733|18.86|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'TeO2', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|rMBJUxZ4dn-0pOseBe1LefRdW5zH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'TeO2', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.27|79.9|0.738|7.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.scib.2019.09.022|rMKx7orgRKzIw1rpBog8h2Cp62MF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|139.0|0.5539999999999999|6.5|['SLG', 'ITO', 'PMA', 'Perovskite', 'C60', 'BCP', 'Au']|['PMA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8dt03680b|rM__47RxoV8o3vLEFe07IFm9h1gh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PMA', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7090000000000001|117.0|0.347|2.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|rMiMiJvwNH-SEIc8pvOxZjb0_hwl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|104.9|0.64|6.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|rMpUcbD38NJjZh-e_I1zcOhUIfa4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.59|125.0|0.34|2.5|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b00635|rMq5Bwv29T64wI9k5qrxhE7Dnouh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7859999999999999|147.3|0.608|7.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-aminobenzoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp', '4-aminobenzoic acid-SAM']|bulk|https://doi.org/10.1007/s10854-018-0365-6|rMufJ8eryIDkuV7SDiv13TowAA7P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', '4-aminobenzoic acid-SAM', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|144.0|0.7609999999999999|11.46|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'PSQ1', 'MoO3', 'Ag']|['PSQ1']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201907331|rMx7vjOR2KajFUnxyL_ITE20uaL6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'PSQ1', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br36C95Cs5H487I264N178Pb100|Cs5Pb100C95N178H487I264Br36|Cs0.05FA0.83MA0.12PbBr0.36I2.64|1.6100001716761378|1.18|221.1|0.79|20.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'InP-np', 'Spiro-MeOTAD', 'Au']|['InP-np', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.0c00279|rMzqILWeElJ6AFKjl7gp597i7YEr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'InP-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|213.0|0.628|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00600|rMzxhq5Hb-JFFvf9WblI3_k8G7JM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br546C1291Cs29F240H6149I3094N2168Pb1160|Cs29Pb1160C1291N2168H6149I3094Br546F240|(TFEA)2Cs0.725FA23.925MA4.35Pb29Br13.65I77.35|1.676000178713793|1.096|211.7|0.7829999999999999|18.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/solr.201700125|rN0yxdvb6VPhrBLtYAcoZRYr1BGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TFEA)2Cs0.725FA23.925MA4.35Pb29Br13.65I77.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.645|125.1|0.54|4.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.001|rNAWmJc-xrKv8C5g5bRZBGOxbsy7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.6|0.76|16.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']|['JY5']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|rNCNxKvaK5B7Jy9sAhjFvaC6a1Dh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY5', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|183.0|0.7929999999999999|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/S1872-2067(15)60929-9|rNCXPCG6d82cThlFWH5LXb5RM4_W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|rNEAiJR1Bmk3oP8mi78cmI-LtL9p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|199.3|0.6890000000000001|14.67|['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-nanowalls']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|rNHvxF136UBbodHfH1km6ayVQuNA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-nanowalls', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|172.0|0.69|12.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T102', 'Au']|['T102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4sc00814f|rNINxpH0R7p_PUvb9qQbbWvUdXYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'T102', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|189.3|0.5|8.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|rNJJ-K8m_pkvjKLZD1aMlJhaOHB3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|191.0|0.5|9.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|rNJQREszRoBSO0qbiD1-7rk4t_Ll|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|194.0|0.545|9.8|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['Ag-nw; PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|rNMKt1e7p4VMFJXifhLiuO_91g3Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|39.0|0.745|0.68|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|rNUSYgcnU7bRbwmSMLN6dtRIT7dk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6509999999999999|126.5|0.442|3.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'PANI', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.04.028|rNUXZzUecJ-GtBq7UXhr8i5acv-G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'PANI', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.56|190.0|0.579|5.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|rNUizTAoRozd4FlDU4J_J9RbNHJR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.955|190.2|0.556|10.09|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Graphene oxide']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05955a|rNXGEMHVmfi6f-t3qZbOSiA8_wf4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|213.0|0.74|16.7|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|rNjiGLOVbKaLTskZWgDcK_KIEQNg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|205.7|0.7340000000000001|14.95|['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.04.044|rNqxt8V0Insmp5mNnKuX1fqvojOo|a perovskite solar cell with the following device stack: ['SiO2', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br9C19H98I51N35Pb20|Pb20C19N35H98I51Br9|FA0.8MA0.15PbBr0.45I2.55|||||20.45|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1038/s41560-018-0192-2|rNu_L1M9JV6mNWpuDY3OlZEBns7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|140.2|0.65|8.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|rNu_ZLAm3IfvS-aDabJcL7C_u5fu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|172.0|0.71|11.4|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|rNxSZS1QpEdmwjaBePwXcU8G6GPX|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|159.0|0.562|7.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|rNxclVXVuhmBhLj46ZqLAC2PSCKo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|195.0|0.53|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|rO7jriRFowog8qQHQ2hCaphdVL6x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|182.4|0.67|9.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|rODDWKCb9vSgw09Wdko7suEKaYX9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|167.0|0.75|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|rOElFrxf6k4QM-wKvQ3B2z4qJp-y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.880000200466546|1.212|164.20000000000002|0.767|14.02|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-020-00509-y|rOKCr8AYYDdym8LiR-KVUkFCaJ5k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0759999999999998|234.6|0.835|20.7|['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|rOWItyXLfUNh-Z7pDes2sW7RrNmj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite-sc', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900089|rOWjjP2Q1409pXBKisxSEBzOIdXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||0.521|1.7399999999999998|0.7240000000000001|0.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']|['NaYF4:Yb:Tm-np', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9qm00311h|rOWq26dhBR0zNen0qnyVKCFhUtDV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NaYF4:Yb:Tm-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.84|255.0|0.67|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis-C60', 'Ag']|['PEDOT:PSS']|['ICBA', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201702140|rOfLpIONWlA_yjTVZiaM9NRetYaY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|154.8|0.68|10.47|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'SiO2', 'ZnS', 'Ag', 'ZnS']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-017-1880-0|rOi7m_T-gj7hZrB1OlY53X9DbHNU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag', 'SiO2', 'ZnS', 'Ag', 'ZnS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.703|83.6|0.55|3.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|rOlGVOIcceD7JQnoRzFlXr5LZ9xL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||0.93|222.76|0.6659999999999999|13.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2020.155711|rOpnDZhUwdlXhxKUcPCvqckA4GFN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.1|205.0|0.77|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b11938|rOrTzVd4dVVc_xzQonA0fXhmETVp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.400000149283598|0.374|230.3|0.612|5.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|rOsMgipA-zgr4z5Bn2Xi3XUDFrie|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|186.2|0.6|10.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BChl-2', 'Ag']|['BChl-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.08.051|rP4fTKAESvuolNbLfvP9j9e2grpL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BChl-2', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|1.520000162079335|0.906|215.9|0.465|9.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C8TA05282D|rPFWTwPna6y_xuiQigSkAOpvm4G7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -C5F2H30I13N5Sn5|Sn5C5N5H30I13F2|MASnF0.4I2.6|1.850000197267612|0.38|107.3|0.4|1.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6tc05069g|rPIUg03NfB1BIunYFpKvPSBChs32|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnF0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.116|232.0|0.73|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']|['Al2O3', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|rPKbVuNNF4ZfY-cbdC6L_63kN825|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Al2O3', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.95|162.0|0.6|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04611a|rPLAGo1jw8k1-ZbOEAW3aV3ICbrE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|179.0|0.6|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']|['SWCNTs', 'Graphene oxide', 'PMMA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr01152g|rPNEYc6ZGpdlf7Ikbrchma9o7xdO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SWCNTs', 'Graphene oxide', 'PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|227.5|0.698|16.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']|['PTAA']|['none']|bulk|https://doi.org/10.1007/s10853-019-04145-9|rPZ19NTV1Z3Yt-ZgKpIiUsPHJf95|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Ti', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|206.0|0.784|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.017|rP_oQo8d4pznPGwD2hDS8TIWXzkx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|203.0|0.6759999999999999|12.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1038/srep13211|rPb5uaMgICLoRQ2LeiYqxAX1m2ow|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|131.8|0.6679999999999999|8.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr06033d|rPc6mli__iGUIyWCAEjOeWvzpJFj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|211.9|0.5660000000000001|10.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|rPdihws3FzjnzyIdfjLleswge7WU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|180.4|0.8190000000000001|15.47|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|rPgzBVaGVqBBZkrsD4DAgaaMSwXf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|198.5|0.65|12.08|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|rPmAkluDSEWVGcQfS2wXtxsGnhon|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|218.0|0.55|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|rPw-kVGcp5hMoSMSxZVTWDi9CGGx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.071|210.8|0.588|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|rQ0quQjkMvCSKiJ6bPm5OsTXWcI8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.3|0.657|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|rQ49Nc0AuWyEHLkr3Jg-Ki2kQYH5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.077|218.4|0.69|16.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EH44', 'MoOx', 'Al']|['ETH44']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|rQ66zn-2GEQQYIDOz5YaZecyCGKb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EH44', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|183.5|0.62|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|rQQ344hBTBzdgeiIaVPXuOx9qidr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|96.6|0.5|3.69|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201800669|rQR8TlYyhUTUuTrb7QVDZ0OWU4OV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||1.09|31.0|0.465|1.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|rQVdCVW4uJYiTltnNslDqKu0rRyT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.08|135.1|0.575|8.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.202000501|rQtRrqVPz1sM4bzqEqElPzN6CuTC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.51|76.0|0.8|9.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT-BTH', 'Carbon']|['2-(3,5-bis(5-(5-hexylthiophen-2-yl)thiophen-2-yl)thiophen-2-yl)-3,5-bis(5-(5-hexylthiophen-2-yl)thiophen-2-yl)thiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8qm00337h|rQvtCURb6w_HzJARSCyVmkbI2dmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BT-BTH', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.0|0.7|12.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.8b05731|rR0Lwk6lJadYC2HmcwAp_NlsdAMD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|198.0|0.73|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.06.050|rR5P2scCA0NOHMMZJtcmIyYvjyGA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|183.0|0.584|11.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10827g|rRCMyD94VP6wiriysIY0LC9WOvoU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.784|130.8|0.51|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/36/7/074003|rRD76oqJqqffPUK-BlmumcKIhVv-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|188.0|0.74|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|rRGCM880fEFQ6IccrPVYMYDoKTKR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|168.5|0.65|9.7|['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']|['ZnPc']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jssc.2016.08.034|rRGMEqY1X24JX2oJwU_8hVyOZ6PQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnPc', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|185.0|0.54|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|rRGub5yGM55STFAq8mC3lY6BDx8V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|189.3|0.66|12.08|['SLG', 'FTO', 'CZTS', 'Perovskite', 'PCBM-60', 'Ag']|['CZTS']|['PCBM-60']|bulk|https://doi.org/10.1246/cl.180219|rRHiyVi9R3HT1tNHsFJdosFqfgLq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CZTS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|115.15|0.305|3.51|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|rRM9K2wapg-5oIob77-tB4bat8ql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|231.4|0.75|18.34|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12140k|rRSZ6Ra0vbU3UjDV0Ykx0sFylAjs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.2200001300899923|0.7|219.0|0.66|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|rRWJ_pUQpjNlQb-pByvkCeWeXn1w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.17|228.2|0.77|20.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta03351c|rRn_aj8IX7hHgvsoNj1aeueXinD5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|188.4|0.741|14.87|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta04313a|rRsYBa9cXCnSIe-5xTal-unKhbWY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|42.1|0.58|3.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|rRuPN5NW-uU_dqho7KNmcjGNB8_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.08|222.8|0.715|17.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.10.008|rS7Sej-r2ife5ng7PMkg1kyxYG1m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3||0.77|190.9|0.53|7.96|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-np']|bulk|https://doi.org/10.1016/j.matlet.2020.128174|rSDb869sCtNnJFBNu1oS_IsbVW3w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|189.8|0.76|15.87|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b13621|rSGc4fxu9P2b6p2eBIXJE49tyPOy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C9CsH45I21N18Pb10|CsPb10C9N18H45I21Br9|Cs0.1FA0.9PbBr0.9I2.1|1.678000178927055|1.169|203.1|0.776|18.41||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|rSJtw60FyBYDnFfyX6oTy3UUQj2u|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.5|0.74|17.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.046|rSNLzviQbqKqnceMWjMOrvKHeNOP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.721|16.6|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cu']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms12806|rSRDOJdGzAyK_eYb1TkhKfa9HRsn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.78|17.1|['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['rGO', 'PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700763|rSTpSBdE_BPmCpmWxI5GOL4NHl3d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|130.9|0.54|5.1|['SLG', 'ITO', 'PB2T-SO', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PB2T-SO']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1002/admi.201800090|rSX_pkPkGRA-8UB81XpMI1xRy1wA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PB2T-SO', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4810001579207206|1.11|233.3|0.74|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|rSgQr-DItqY2U0wcrWBKn5n8a5B1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|207.0|0.7040000000000001|14.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Fulleropyrrolidinium Iodide', 'Ag']|['NiO-c']|['Fulleropyrrolidinium Iodide']|bulk|https://doi.org/10.1021/acsami.6b08771|rSkimx5PibuHJ-nl0B_gF-v_HhMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Fulleropyrrolidinium Iodide', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.8|0.562|11.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|rTG7hbgG_xZteSyxbei_Um_9TbIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.05.180|rTImRD30kJEh0TKnMaVjuqySdlxV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']? The composition of the perovskite layer is MAPb1.0I3. -CCl3H5N2Pb|PbCN2H5Cl3|FAPbCl3||0.78|185.8|0.6|8.75|['SLG', 'ITO', 'Perovskite', 'PCBM-70; PTB7-Th', 'Ca', 'Al']|['none']|['PCBM-70; PTB7-Th']|bulk|https://doi.org/10.1002/aelm.201600329|rTtAsLkJ18KasYif4pn-QQwEiXb3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-70; PTB7-Th', 'Ca', 'Al']? The composition of the perovskite layer is FAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|158.4|0.64|11.56|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|rTuzVaOitXiL-LRf94i7O3z7Xd1l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.42|237.92|0.413|4.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|not processed|https://doi.org/10.1039/c8ta10901j|rTwlmL_gTPH2jLPIk_H-yboAmlCA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.8109999999999999|99.0|0.591|4.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201600591|rU2TK0g7uKziQBMTuW2B1eJxvWuX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.71|217.6|0.66|10.2|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|rU2rUtY2K_meqI1ci66hIQJR8tW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.81|54.0|0.74|3.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'D149']|bulk|https://doi.org/10.1246/bcsj.20170423|rU3y9EDOcZT0kcvxtWdqB9-YIMi8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|161.6|0.722|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b02705|rU9SETLdBVt7jF0o1ZhTznmIqOJD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|205.0|0.78|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201500048|rUBNVCuOawZOcGM9zPHmbDcW501G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.1|0.743|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|rUCnqUPeFZdTIsnGOyZLSNWt2ezI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|127.7|0.507|5.43|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPBi', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TPBi']|bulk|https://doi.org/10.1080/15421406.2017.1338095|rUGriwMJOpTGiYDeJRo2g69TQbAI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPBi', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.871|155.5|0.408|5.47|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1038/srep46141|rUI2z0UYhnsjkmKQdENXCbjD8xjE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.1|0.653|14.16|['SLG', 'ITO', 'SnO2-np', 'Dompamin-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Dompamin-SAM']|bulk|https://doi.org/10.1021/acsami.8b10332|rUO3f29IxQSu0cCGspfGAXythLpg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Dompamin-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.918|164.8|0.49|7.45|['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501332|rUTK-Reu4nCAc6UYSRVfP5FlDPYW|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.505|6.4|0.433|0.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.188|rUbL1HpuOI4rMSGtZ0buDbcLt2Mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|223.7|0.71|17.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-019-02990-x|rUcppDneJqItF4BBddEbxA8KpICl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.848|171.6|0.722|10.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||rUeNN7LAkCHQpO-QDgBq5__Y6faH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|120.0|0.59|5.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b02375|rUnMQWST0m1yNSDMQcuzCSbkH5H2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.068|227.0|0.69|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601062|rUqDr8NNT_vLT3mjEhYVHNzjIYV6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|196.0|0.77|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b02532|rUrPcmrMPR24rSxSaYp5okda8Ftj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3|1.5400001642119578|0.999|203.4|0.6629999999999999|13.48|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1039/c6ra14186b|rUswHJJ0oIOXfohRPPLT4akwXqs2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8740000000000001|179.8|0.396|6.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.03.145|rV8JiD2u5RCbQEUII3xjkIiiP5g8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|220.0|0.715|14.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.01.040|rVGNncIbhboZGNlJZA3fLCV7b-CY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|64.0|0.494|3.18|['SLG', 'ITO:ATO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Perylene', 'Au']|['Perylene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4895039|rVWzXkiCWULnCJyY89IFThKhHUVo|a perovskite solar cell with the following device stack: ['SLG', 'ITO:ATO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Perylene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|183.0|0.508|9.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1186/s11671-017-2247-x|rVYP84OOd3a5OuoAvFZtWDXJj8GK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.3|0.72|17.32|['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Carbon', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00098|rVmhXFOv72tC-PTqONas9HTbxeeJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Carbon', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|84.9|0.42|3.34|['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1142/S1793604718500352|rVtC4IvhYFz2QLoztzvZccSl9TM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.0|0.75|15.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00691|rW0wmHcTJ_FWcenhQ2B7LDTUNLfr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|179.0|0.607|10.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp502696w|rW4gfr_6JJNO4Nq6s-0vRctwtvv0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.594|154.69|0.405|3.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||rW5hOsM6Bk57BjLnUc_OEyah2KsE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|175.7|0.69|10.82|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.3390/mi8020055|rW6zMFGhHE1x8pzosw6xFOXY7MeK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.125|249.0|0.745|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-018-0200-6|rW8ezjqfICQUiZCGedRUVCDAUYQI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3|1.6100001716761378|0.98|210.0|0.68|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.185|rWDUNLNvuQXRPFBiJuHr55c1q4_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|164.0|0.52|9.6|['SLG', 'SnO2-c', 'Ag', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'Ag', 'SnO2-c', 'SnO2']|bulk|https://doi.org/10.1002/adma.201606656|rWWpCS8ABK4zxpvq1op3rJpPbYz7|a perovskite solar cell with the following device stack: ['SLG', 'SnO2-c', 'Ag', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.569000167304261|1.06|230.9|0.66|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|rWacN9BLpCnZ0cMi4NuBNdNHXhvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|223.3|0.638|13.39|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|rWbL8o66VVtPD35WlA8LupMdwfw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', '1-ethyl-3-methylimidazolium iodide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.6609999999999999|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b03902|rWnlVqVoz5z_ZnjsFHbifcRn_UxQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.3|60.0|0.7|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.6b00050|rWwV9ZqJYB310vEAl8AOF5_-kB8O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.04|155.5|0.69|11.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|rX7hrcUcX6VCVIPl-almXPhTMIk6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3|1.5900001695435149|0.99|163.9|0.76|12.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901863|rXBAKQS6m6PsiIPENxQOa2wDNESX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|209.9|0.7|15.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974942|rXDFvJl06v2rSbxT-MqL88w9mDbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.325|77.9|0.774|7.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|rXLg9RQS40cpB-6zdgDyA2Gvrrlq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|225.0|0.53|10.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014006|rXMNLU8sqL8cRywNzOU1RanEXoEU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.2|0.7559999999999999|16.37|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']|['NiO-c']|['PCBM-60', 'AgAl-np', 'Au-np', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|rXagv5-71nMHIL4i5BMWzIgFXxIe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl-np', 'Au-np', 'LiF', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|164.89999999999998|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|rXip6Tz3kWZK3rdqni2g3JMxzl_o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.205|142.0|0.7509999999999999|12.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|rXn042lCBrLt7KNWqDvDMHgqoDKF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|203.0|0.769|14.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6qm00309e|rXuyp4hvpzhx7kfD_E6pMyXC5MA3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|168.9|0.71|11.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|rXvEZBwH_RAOBRgGELSIWh2hEcBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|10.0|0.35|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|rYGYuEIC1aoxGaxMA1kYNilKwbHY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|195.8|0.713|14.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8269|rYKWSSKkV1wgN9_DR8IS3z4RxGWD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|249.4|0.763|21.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800568|rYgfUDc8QZ4pF0s22QdWgAF9N3mA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|222.0|0.732|16.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b07346|rYj5TR4EQe9A2__HthBKV3pPFQIS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|15.0|0.355|0.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ta05674e|rYnK_hRerB9WOl0fc-Xcr-Os9rr-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.1|218.0|0.6920000000000001|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00501|rYsoEGWVN_QTULbl_qbj1qqvGul0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|126.0|0.55|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|rYxdgaHOTgJll6tYtY5kZom8TxsS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|149.3|0.628|10.12|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']|['Bifluo']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|rZ33ke5BuQtJx51XFXNkANDKtTrL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.9|0.8059999999999999|18.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE1', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'pi-PFE1']|bulk|https://doi.org/10.1002/aenm.201901257|rZGoYKIOf_BufMhu0V0cngAI0vE6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'pi-PFE1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.0|0.626|13.27|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|rZNlnktxUT3S1UuPeroyhb0oceT_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|rZZtZqZdiAUI9wUzBXVEVlCqo6Ps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|191.0|0.759|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.9b14423|rZ_GJHOiW_gCX0rCnNlI27Ddx9RL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.0|0.722|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|rZieUZ_9jvaEs5MCvXXoFKygKy70|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|177.0|0.61|10.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl403997a|rZkkLxs3EsbjCDlGAQZrm-c3-13j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.73|126.0|0.57|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.54.08KF08|rZmgTolz2eQo9oMRE5QbUuWDVEwj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.0139999999999999|179.0|0.65|11.17|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|rZr7mtw38aWiinKMRI_ywSfsN_fG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.92|60.1|0.71|3.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|rZw46UrbjfnI5WlP0PjKgkK0IzwQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||0.8370000000000001|139.0|0.728|8.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021931|r_7SoZvcWUeIrBgu6Vx2gvFs7dMl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.0|0.727|17.6|['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c', 'n-Butylamine']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|r_9BLpn4MQsRBajU8zmoz0qM1AYm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'n-Butylamine', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|183.0|0.472|7.72|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|r_E-tiB7nsabGin4h5wyK3EyFFJc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.8|0.7759999999999999|18.67|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']|['PCDTBT1']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201801985|r_HUmZU4I4hQr5_LjrFTj1oqE1L5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|150.0|0.37|3.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2016.07.033|r_JpJ9l2w9C8XipxeCpcID9mddah|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.6|0.7559999999999999|18.39|['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1002/aenm.201701144|r_KvFHt9nJjlQqmDVhrQ9tHy4K1A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.4|0.743|14.26|['SLG', 'FTO', 'ZnO-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'TiO2-np']|bulk|https://doi.org/10.1039/c8ra03162b|r_SkyY6Jf0jINItdwxBs91ImdmnH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.06|183.2|0.804|15.55|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|r_VdX-9fXNwYrd0NFUhvKDplYZOm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.958|229.8|0.6920000000000001|15.23|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|r_YnLChKPk0gyEB0dRDuy6cBuFpH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|196.0|0.55|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|r_dG-kLrEDnyQkzIy-EQbjuespqO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|213.8|0.728|16.38|['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.205|r_vWfRRFHVmHWW9lFVL4iCZJ3x1H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H513I300N187Pb100|Pb100C100N187H513I300|FA0.87MA0.13PbI3|1.500000159946712|1.088|218.1|0.7509999999999999|17.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adom.201900018|r_xeTDqHJ-mxawuUTQKW7dXhZPvJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.14|226.0|0.71|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|ra38UdzqXr5wTLU0L6LmQ9zQJGCx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|195.1|0.643|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b05298|raNvnP6qbKe42HXRwupcYKp-40tB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|175.39999999999998|0.63|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|raNwBvQKUgU_FnxaeTG31l9atHnV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.626000173382236|1.01|178.6|0.728|13.18|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|raYJ4DOK_p-B0CKrJbm7yKexEgfE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.11|211.4|0.72|16.98|['SLG', 'FTO', 'Au-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np; SnO2-np']|bulk|https://doi.org/10.1002/aenm.201900720|raYlxpDpg_xK2yHMx5swkTwG4D2c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.542|201.1|0.665|7.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|rablVjga4nak5-z4vyKxA7X7RPYF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|186.0|0.6|7.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.5b10093|raivebLKL6pf21RtKQ0SPTY-OYT4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.1|0.6709999999999999|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2019.104246|ranHKAL5qfbvZ7IAOTnVVJCKYgKU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.009|191.65|0.711|13.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|rb4vdd4ULrRiurkLMPjaUn6WrPz9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|160.10000000000002|0.6990000000000001|12.04|['SLG', 'ITO', 'NiO-np', '2,2’-BiPy', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag', 'CsF']|['NiO-np', '2,2’-BiPy']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.synthmet.2019.116197|rbDDbxRbmHIVsUVCClGaepu9WSjR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', '2,2’-BiPy', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag', 'CsF']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|154.1|0.489|6.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.07.021|rbDmKLc7tgpgn9jmeYMm3Jf_0HSz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.81|168.0|0.58|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|rbLsssn7W0K4lwMR4MGbIiezIErJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|234.7|0.4639999999999999|9.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2020.17288|rbPcaYN6MBL1on2oqqIQrkmktFMW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.56|155.0|0.41|3.57|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ1', 'Au']|['H-Z1']|['SnO2-c']|not processed|https://doi.org/10.1016/j.jechem.2018.07.009|rbTNfQC1kuU9PTq5A5pjW1pFyOCU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'HZ1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|222.9|0.682|10.56|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|rbV_rQOppdAfOMTNyVbpWwg8Iqsn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.34|186.3|0.528|3.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201602992|rbc5AyoRfKYpdlIEsSiRCz6Js83J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.738|130.0|0.66|6.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|rbc8TKnlixcHqGkG4x38JhmIViMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|2.320000247384248|1.11|91.3|0.469|4.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|rbnnqFxiMdpLKb_khi3l7cwf7Yn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br66C95Cs5H485I234N180Pb100|Cs5Pb100C95N180H485I234Br66|Cs0.05FA0.85MA0.1PbBr0.66I2.34||1.183|228.8|0.78|21.11|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'C12H10B2O4', 'Spiro-MeOTAD', 'Au']|['C12H10B2O4', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201805085|rboTt0f_A5VHOxRyqm20_-t-2c9j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'C12H10B2O4', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.66I2.34. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.833|158.0|0.645|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021939|rc2IndL0iFhRA23kBN40myNmnihi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.51|80.60000000000001|0.36|1.47|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|rc6MMS7m9DYv5I_aOEPmVKvmGeZV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I30MgNPb9|MgPb9CNH6I30|MA0.1Mg0.1Pb0.9I3||0.58|65.0|0.423|1.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05720b|rcE5JL-nygIQ9GCPKdeFjCz_sjKA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA0.1Mg0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|171.70000000000002|0.55|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q216', 'Carbon']|['Q216']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700546|rcEMuu3SB50UNbgOGJz_uXY03Jwq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q216', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|191.2|0.7290000000000001|12.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adfm.201503559|rcEybrQaHhAtdb3cI5mo98dAMU8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.1|0.499|11.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuEtPc', 'Au']|['CuEtPc']|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2016.12.067|rcKctXvIMZWENBOUEGdOmN_XBTJX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuEtPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|176.20000000000002|0.536|7.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.04.067|rcN8QFrFkUkBJJC7-gjLpe7SAwrT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7||0.53|54.0|0.52|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700634|rcUfDMpds5ClW5tYe60YQl3-bmhw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|192.1|0.61|9.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40820-016-0094-4|rcY-afrwPR6R0CdG2TjpRDq1wifu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.83|206.0|0.66|11.24|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201804067|rc_lv8nNVhNG2YZyPlVnXEfUqjZ-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|223.5|0.7|15.43|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']|['NiO-c', 'NiO-mp']|['ZnO']|bulk|https://doi.org/10.1039/c7ta07775k|rcbYgOkMytgjr1lrz8EktDXGdLUW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C19CsH98I60N35Pb20|CsPb20C19N35H98I60|Cs0.05FA0.80MA0.15PbI3||1.05|228.0|0.73|17.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|rcemgBUg1eSszOo30n64uy5Tu-Ky|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|210.0|0.723|16.1|['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/advs.201802094|rcqkU1qvqcJeFt1ht4EgGNpm1k4W|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perosvkite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.92|129.9|0.65|7.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|rct8fMT3HCsIkvnz91QXQhD8uNSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -C4CsH23I15N5Pb5|CsPb5C4N5H23I15|Cs0.2FA0.2MA0.6PbI3|1.640000174875072|1.13|237.2|0.75|20.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|rcxHGkoiAQLG_OeZg6-y9azd-e4Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.2MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.0|0.629|11.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3866/PKU.WHXB201607272|rdBAerk2hXWhIjQfIt5UcaJHU4T9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|198.1|0.63|12.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|rdH2uaU2DnwIdvrJxFinumyNC0Vl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.6|0.72|14.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Alq3']|bulk|https://doi.org/10.1039/c8ra01633j|rdMrCRkaMeCzZ_VeAGGij9kwTx8V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Alq3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.735|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|rdReWJehEc45bqTLhlMIcwYEcdtr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.6|0.7|14.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12152494|rdcAjEAImMZZk8BUryWRqiPkg4ZX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.02|184.4|0.752|14.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|rdhk76WDgxvh5w7DzjIVShpDZKoN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H464I249N166Pb100|Cs10Pb100C90N166H464I249Br51|Cs0.1FA0.76MA0.14PbBr0.51I2.49|1.6100001716761378|1.098|218.1|0.779|18.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ee03513f|rdvA4AWdFTi3Jlux4dJhzQQezYbL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.76MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.4|0.71|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'SLG', 'ITO']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|re5gGI3dod2d94B2gaFsPvq0mhha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'SLG', 'ITO']? The composition of the perovskite layer is MAPbI3. -Ag5Bi5Br30Cs9Rb|Cs9RbAg5Bi5Br30|AgCs1.8Rb0.2BiBr6||0.99|19.4|0.72|1.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.037|re61Efs3RkZkatBk0tqW_vecrqfk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs1.8Rb0.2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|181.0|0.506|7.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT1', 'Au']|['pBBTa‐BDT1']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|reQLMzvs3BjdTQV1kWMzXNAuEcpe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'pBBTa‐BDT1', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.17|109.6|0.71|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b00050|reQP6y4DYsvI4dFRxhW1zOCdK7CN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||0.89|208.8|0.48|8.91|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02112|reQXO72JfjTiDX52O5kfhvj5Mn8T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.0|221.7|0.6890000000000001|16.67|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|reYWf5UcPkuX9XF0LO9QOO8J_g2E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br25C100H525I279N175Pb100|Pb100C100N175H525I279Br25|FA0.75MA0.25PbBr0.25I2.79|||||16.86|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsomega.8b01817|reZRCJLKeG-WGLKUcTxkzrfSLPyq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|163.0|0.787|13.4|['SLG', 'ITO', 'ZnO-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'PCBA']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.013|rect3XSdnMX9vAcwh2otY4mPJOgx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|223.0|0.74|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201800181|reiRM05Rk3YHFQAhKFb0AoP5HvKj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|198.9|0.69|13.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab221b|renec8a9NSYaGcZB3IeBwdxnsiJY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Fulleropyrrolidinium Iodide', 'Ag']|['NiO-c']|['Fulleropyrrolidinium Iodide']|bulk|https://doi.org/10.1021/acsami.6b08771|rewTm-YnmrZBmQ69JYf9RbxRRUa6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'Fulleropyrrolidinium Iodide', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|68.2|0.272|1.65|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PT-PDI', 'Al']|['PEDOT:PSS']|['PT-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|rf2U3xu66pmLtF_Te0Ls6QKE1YtY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PT-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|102.0|0.35|2.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.54.08KF02|rfFs25olHxPCbQRSZYQYkBZ9o-6k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|198.7|0.74|16.17|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|rfFvs2E1n7s8wgUsxd3IoFT-cP5L|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br37C100H517I263N183Pb100|Pb100C100N183H517I263Br37|FA0.83MA0.17PbBr0.37I2.63||1.023|174.5|0.491|9.41|['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene; NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|rfGdvt_nnKj6DdZc2Amf-PPCCJlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene; NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.37I2.63. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|214.0|0.731|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra02496g|rfGv7LVgNJ_gCU52q8-a6EqRUWc4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|219.0|0.73|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.8b03084|rfIEN2B6SEfqcLJDPPC0227txLsU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.99|163.29999999999998|0.49|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|rfJtnLteLHY2u8Au6r8c540ItzBF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|209.3|0.71|16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201603968|rfKwQ6hXmGvwMGELxf_uBY9veNBv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.957|88.0|0.552|2.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201532442|rfa_YNs10gYqnHgdijfkDZKFuOmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|219.2|0.688|15.28|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b10979|rfbgDleeBV7PhsMlcRwXUFvMdPmI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|62.0|0.38|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b02744|rfjRqAUDPPBuw-K1DBlc4jqzmnxC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.096|247.9|0.8029999999999999|21.83|['A.R.C.', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.0c01297|rfwi9vTcaGA0H4Qn72NL5YCRKUWJ|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|226.0|0.35|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/C7TA09193A|rg0UdFW5IfWMUUvPImVpP_owB3GR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C94Cs6H470I297N188Pb100|Cs6Pb100C94N188H470I297Br3|Cs0.06FA0.94PbBr0.03I2.97||1.033|247.2|0.75|19.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b11546|rg4H_0jiaXcL9DXPKXQHD30wxMob|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.94PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.6|0.78|19.36|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|rg8kFChEv664EIb0EqaJJ7sYEZqb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.99|173.0|0.6|10.3|['PET', 'PEDOT:PSS', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/aenm.201701569|rgBf0fIhv0bEbDgkDpABR2SlbCgD|a perovskite solar cell with the following device stack: ['PET', 'PEDOT:PSS', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|56.0|0.52|1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201405334|rgEpRECn9snxZEsfy4R9mR5Edu1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|205.0|0.67|12.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|rgKWhabbULuQ61UDDV5384ZHYxdy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|220.0|0.753|16.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|rgQYHKI3_J-4Gsl-HACwQw5FbUGB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703068|rgTAwSJisRnN97ZH2mzoqrpbQqx0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.77|192.3|0.49|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra10148d|rgV1R953skjn5C3hyE41p-gJuLqV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|155.0|0.56|7.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.006|rgfQCStQFFcZam1zUn5mziSMyJeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|68.89999999999999|0.22|1.49|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.03.041|rggbBEVG_TSs2B9LwLLTqL9iqmc9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|109.3|0.529|5.41|['SLG', 'ITO', 'TN-P', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TN-P']|bulk|https://doi.org/10.1039/c9cc06345e|rghcwGnCn_m4OqoT8LCVu0jduDkd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TN-P', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.93|184.0|0.655|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|rgoc5nNaBmvaX66WmfRSHV_ubvy-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C24H126I61N20O2Pb20|Pb20C24N20H126O2I61|(AVA)0.05MA0.95PbI3||0.84|193.7|0.631|10.27|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00158|rgwQu1OTc4_i_OidzDbJkURaH5MP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Galinstan']? The composition of the perovskite layer is (AVA)0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.94|215.0|0.62|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.materresbull.2017.07.043|rgzADy12-ZZdMrwg-C8zkS5niAA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|148.0|0.53|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504451|rh-sxuDyjWS9m2wae0V1E7xZ8k8O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|205.6|0.596|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|rh0V1cqxRvAT3cxwqxIf8E-p6_Do|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.025|221.7|0.73|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|rh4LX_QGIjfGpNKPjgQqG4SjwPDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -C4H21I12N7Pb4|Pb4C4N7H21I12|FA0.75MA0.25PbI3||1.03|211.0|0.7140000000000001|15.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05727f|rhR72IL6YODS-cAeXOj08dAITXw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.75MA0.25PbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3|1.2500001332889268|0.457|196.3|0.5720000000000001|5.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|rhTGPj2-rBXS3oofz1zkVo2yOb9V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|196.2|0.66|12.12|['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['GeO2']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|rhVnWTPvMMQBqrWRGyanOwxYfbGB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'GeO2', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.75|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900143|rhYluhT85ZzIdHHJRkuEIYeW-hS5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.87|161.0|0.72|10.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PDCBT', 'MoOX', 'Au']|['PDCBT']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b02604|rhbMOk0l18yWEdnNeLOyzguqg-kU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PDCBT', 'MoOX', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|190.1|0.595|10.4|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19265c|rhcaNCdwCITZyskqRp94BMaL04tK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|223.3|0.68|15.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-04690-w|rhesPuliAZGUVDDrXXrTHALTTTdM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.1|28.0|0.797|17.1|['SLG', 'ITO', 'TiO2-c', 'NAMF-Br', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'NAMF-Br']|bulk|https://doi.org/10.1039/c8ta07904h|rhf_XZ1NEVoJSQuQ9s0k_OcF5RSY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'NAMF-Br', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|rhqVT40polxcLQuZGa1nvN_ajmfk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|227.0|0.64|12.6|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.07.157|rhtjGaB2bNQjFYElJnzbIC4tHCA_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.82|24.89|0.703|1.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|rhvH87BkQP2siKZlQ3Ue1pBwe-Uz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|212.0|0.67|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1088/0957-4484/27/50/505403|rhyqxnVAvHKm9wm6yxDCSwbJprss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.76|273.5|0.695|14.47|['SLG', 'FTO', 'TiO2-nc', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nanocones', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105433|rhyzXHCDl2EPaiwY919warQZdvfH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nc', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|179.0|0.71|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|ri0Ej_3kYeRDJx212rgUfLaufzNG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.134|231.6|0.728|19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.0c03660|ri29GXhud3JzYQMSy561F3alCjaL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -Br14Cs5IPb5|Cs5Pb5IBr14|CsPbBr2.8I0.2|2.3500002505831827|1.04|54.900000000000006|0.55|3.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-20228-0|riF6B72VTJAF4rX6dRYQX9RRiMA1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2.8I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.1|0.53|13.0|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226957|riI7_pX1Athk6f3y_iRss_3Lovze|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|198.5|0.688|13.94|['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2018.02.136|riISvE9zpj09ult2HqsIWQyaKoSM|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|207.0|0.72|14.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502039k|riR1ZtkwAyfDmq-Re0VfZj3mVGQz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6100001716761378|1.11|232.5|0.65|16.85|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|riRUByOxQeUFb9OZhS70D_8WUOQc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.08|207.4|0.735|15.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2019.104050|ria92rv2M-eMtvC6mIkG0mWj-SdF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is GUMA3Pb3I10. -CsI3Sn|CsSnI3|CsSnI3||0.258|123.8|0.376|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta10901j|riaFJfVBBRtrNOUOm2xsY0VHKMsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsSnI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.04|209.0|0.6|13.1|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|rirmaR8Co-CiB3cYlOhxMcrcK83p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.04|204.0|0.78|16.2|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|ritaP4-Ksfg8vI71_3aLBoGAbz-r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5|1.830000195134989|1.15|144.8|0.73|12.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'FSIP', 'BCP', 'Ag']|['NiO-c']|['FSIP', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801954|rj1qIAUQ3g2-6xHboh3biraZnPf4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'FSIP', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -C16F2H22I4N2Pb|PbC16N2H22I4F2|(f-PEA)2PbI4||1.02|28.3|0.66|1.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.9b00972|rj3gwm75x8wCaXnro7h5liiKL8Wc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (f-PEA)2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.51|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|rjCkp_qWp6__mcLA8Rtzuq1Lr7oJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|169.0|0.3|4.9|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12474|rjHZT_uSeFxQP0AOhbgb-BmWX3Cv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|174.0|0.5539999999999999|8.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']|['5,7-bis(9-ethyl-9H-carbazol-3-yl)-2,3-dihydrothieno[3,4-b][1,4]dioxine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.5b00283|rjJMlUjcDAJmiZayMw1RBeTa_vsR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbazole-based HTM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.987|205.4|0.522|10.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.egypro.2017.03.391|rjJugd7GaVVccaKJo8c5SpBE2o6U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.46|52.0|0.55|4.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cp08392g|rjNSHBc8i3lHN5CbLVXWmCr8--jS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt']? The composition of the perovskite layer is MAPbBr3. -Br4C100H543I296N157Pb100|Pb100C100N157H543I296Br4|FA0.57MA0.43PbBr0.04I2.96||1.143|233.5|0.8029999999999999|21.44|['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'B2Cat2']|bulk|https://doi.org/10.1016/j.isci.2019.09.024|rjSYTwb7Wx__TGxqnehJED2_CIVl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5050001604798675|0.99|187.8|0.679|12.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/2/024208|rjoBqO2gaG3K5XBiNUriJpBeaJVC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|rjr2oaiUd7KAOj2vwOCIhs9LGpRH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|137.0|0.457|6.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5087796|rkCkzJuWcG1I1c14QnGRs1RTdT-I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|78.3|0.457|3.27|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|rkDEXbQ_39EdbTeEYTMOhyoLrmfj|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.103|224.5|0.725|17.94|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9nr07876b|rkFz_3nEqanrAhEpbljwttlAWubg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.88|185.0|0.69|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.01.132|rkK8_rOI9qm2ff-sLxICXGuBCyPG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|112.0|0.73|8.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KTM3', 'Au']|['KTM3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta00486h|rkQzzXKoBLSreW2oV-9zHxLEwGjR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KTM3', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb100|Cs17Pb100C83N166H415I300|Cs0.17FA0.83PbI3||1.06|205.9|0.682|14.87|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806479|rkRKKJqBgqI6LxrEN30mIoahyN7J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.8|0.7559999999999999|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|rkS0JM8rBO59i8Or5YwIXKd0jGHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|215.5|0.759|17.05|['SLG', 'FTO', 'ZnO-c', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-c']|bulk|https://doi.org/10.1039/c7ta04014h|rkcO1iVxVkbbpTimuCTHJ_RxVkkP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.4|0.76|16.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201803025|rkiR8edwSo6t5tDRW_apM8_WuZF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||0.961|215.0|0.659|12.6|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1117/12.2274438|rkpq1NU9SAtuPrFBy3wMwGXcm3mi|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -Br3C19CsH98I57N35Pb20|CsPb20C19N35H98I57Br3|Cs0.05FA0.8MA0.15PbBr0.15I2.85|1.627000173488867|1.17|223.6|0.76|19.93|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CsOAc', 'Spiro-MeOTAD', 'Au']|['CsOAc', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b10616|rkv1op2m_glDS8KJNjXKqHh649AE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CsOAc', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.63|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03046c|rkwoggN4uVJ8N-Nvr0PgR-WXzr_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|213.0|0.64|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.078|rl6_e248SZ2U_zhG3iy6TC_XYKgM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.14|218.0|0.66|16.37|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|rlMdPsO1iwvp8-7g1dsYeQNUkHZy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|178.0|0.59|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201700418|rlWddS2m0VCjz79VYX9Gysr1xmeR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.7|0.67|13.13|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Ag']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|rlrSWCchrJ_-cXKwMo8rV9vzAcqD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|174.0|0.72|11.1|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.06.018|rlxjRjttU9nwqiNpZR7FswEkqH9t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.08|221.0|0.75|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601451|rmUuoeGF2pvNCurHFOnHDoxS70Ob|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.75|16.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|rmVT4C5u32Gjnd-ZUChiQTsiHPxE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.4|199.71|0.542|4.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||rmY82Gmk_3QNKvudXugof9arqh5n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.096|219.23|0.76|18.26|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.7b07754|rmZwQlV0H88JWMZfudwRSs0vetDb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.1|0.696|13.78|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401855|rmaCJsC6ASbgsB-vdjeDTXMuevqc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||0.94|216.6|0.634|12.94|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|rmbWORM-qEoRGSLeOStCI1rNpIw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.01|215.2|0.55|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|rmh7qgXQXvTe4wCbaFJbNZTSndVt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.06|234.6|0.7|17.37|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|rmjW87QwUCuXKXlvK98jZcE4m9MB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.956|225.6|0.6990000000000001|15.07|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c6ta07750a|rmmxGxpBG9fLZGR8kjEfL4fubIye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|138.8|0.647|7.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s11671-017-2393-1|rmzcRhBszvjItpMjnXmK2yrD_mVo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.1|0.61|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b07216|rn4dQDi4CKhWRvPzDztLRM0eijkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.0|154.60000000000002|0.489|7.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2FBTA-1', 'Au']|['2FBTA-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900362|rn9fnNXqigkP3XPgXumcpPl_i2ib|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2FBTA-1', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|211.3|0.76|16.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|rnBtGn0GD01RqojxRsLelYL_8twf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.51||1.02|224.0|0.745|17.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201701935|rnDPzZsgQRbVj9EuCuVBxpx971_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|117.4|0.46|4.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|rnSjOsEmqSGqAnMRYEsYs6Ebx7mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.6500001759413832|1.02|87.10000000000001|0.515|4.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|rnZ6b5MljbQrtyOIsNB723yrsB4H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|168.79999999999998|0.632|11.2|['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12849|rn_g5LMZbUf9X84lksLSO6ocHS8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|203.0|0.68|14.7|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|rneOohRdKL5TojiiUW7lJHVgReQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|233.4|0.75|19.09|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227386|rnku2vdDHbLh6PTTkdVfnfQv0e2N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5429999999999999|201.8|0.6859999999999999|7.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|rnl1Hb34pfcw9Me0DJ2TMXTXFRfe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|187.1|0.7020000000000001|13.66|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.3390/coatings7120215|rnsE2KbB1xkE94lJ6yre9h4UR2Au|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.82|44.2|0.434|1.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acssuschemeng.8b05734|rnxf58o0hoxkg6-2kQQ4-iz6z6eU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.99|184.0|0.6890000000000001|12.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b08744|ro3UpGnmtnXMjt7lRwU6Dm2lpHXW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|211.13|0.66|14.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|roGjQcdgs11UoTpfNDPXjiHv9Wf_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.05|206.0|0.72|15.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|roUjfp94V7j91_G9Wwpj8Lxr_Cxz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.933|221.4|0.56|11.5|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2020.104842|rocKQhxei2gnJD8lWSeG-9d4hwdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|250.0|0.61|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1557/mrc.2018.231|rouWudWpHX2f5Wk8sjILmQH6TQ86|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2500001332889268|0.73|302.9|0.75|16.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.8b00701|rp0QGJwFQJ2ZyNJG2TYM_tAYJDCj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.127|212.1|0.708|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02901b|rpJo-ajk04rbnC81YRwObq-qLPxZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|114.0|0.364|3.69|['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201400932|rpMVV18v4XkVJpnx4KuE4o356anb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||200.0||13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|rpY4INCriSbAvKzTqH0mhrDO9cOe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||1.075|237.2|0.7879999999999999|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b08504|rpYOvhJVjcJrV77rzLsk1e0f76L1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -Br50C95Cs5H491I250N174Sn100|Cs5Sn100C95N174H491I250Br50|Cs0.05FA0.79MA0.16SnBr0.5I2.5|1.450000154615155|0.43|56.7|0.52|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|rpZzlNBthZqXp0aCh5LUG4eG9-LA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16SnBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|236.9|0.6759999999999999|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2019.116107|rpj5a2-iTPMtgvPyqEGbkJIIL_cD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|175.6|0.76|11.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|rpj_0AM2GBEABC9hqp_af997GNIf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.487|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|rps2C7AFCvmBgxsfqLASze9mbSbO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|154.2|0.64|9.34|['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.dyepig.2018.09.021|rpwOt6IJHJc-40p8O7rr6GDXBdNC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.958|184.4|0.613|10.83|['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Zn2SnO4-c', 'rGO; Zn2SnO4-fiber']|bulk|https://doi.org/10.1039/c6ta04726b|rpy2bsJ6GUHv8Le16eSuO9F9erh3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Zn2SnO4-c', 'rGO; Zn2SnO4-fiber', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.1|0.77|18.81|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|rq0TNOHFQtsHqlAzfgypkG9A6wE2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|191.2|0.615|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2017.07.037|rq3Ep4aA-lrdn7JMSTKHJ4UUeCGJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|174.5|0.52|7.85|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.04ES07|rq5iL-HkfubLJjIqsuR6KGZXzQrv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|46.2|0.138|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|rqExRa8B94JyN9BLnUImUKj3KGT9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|106.0|0.38|3.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201400960|rqI97K061RtrzrJuBEPVd_D0sDyj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|66.2|0.769|4.17|['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CZTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|rqM-ZsnqpxSVfp6uM2AWzvV_M1IB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.2|0.736|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b02297|rqcUABbMALaLOrcdSMw1jgCgN6WV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.512000161226286|0.79|150.9|0.35|4.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cp02003a|rqceydaIsZKIRFvd9CiWEjNJ8IJI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|179.8|0.778|14.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|rqeZjh2JHFMLJziXyepx2fQYkqS9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.0|0.774|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9027-1|rqiiIFiSbPMVt5GacVbAFcD2whfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|161.20000000000002|0.59|8.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.11.025|rqkspUgxLbodzwG_0vCGX-vAAJVB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|212.8|0.62|12.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01038|rqmDoMzjYMGhYEBiGwBa4mD7LjXa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.2|0.706|12.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta01595b|rqnUirtDZH3hgB018VzasVXLUrnz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.16|202.0|0.67|15.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201900252|rqqvrI6wfQTJKW6DJG7YMF235k5k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|228.2|0.723|17.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|rr19R1-KQWp6Y4eZUxNtTj_Hk0jK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.78|204.1|0.472|7.56|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc01224a|rr5MLjqpKswiiwh0BZWKVOAsZKhl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|212.6|0.6859999999999999|17.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|rrKXUbqbAMt_1vHER_tcr9IIYaDx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|213.0|0.73|14.92|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta10605f|rrLLR4tHoOBMi01xqXWJBi6Xh-_y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|150.0|0.64|8.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b05986|rrMHCoG-nCV_z0yM78ef59oqz4Yt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3|1.6300001738087604|1.13|238.5|0.79|21.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|rrWaWoGQb-z9Dl69k9E20LRhSjwu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.9|162.3|0.7240000000000001|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.4938570|rrZi-vp1Z9xP5jdnZlnPHnRUoa2d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.08|244.8|0.79|20.79|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|rrZoDdHG1bp68LeqH_b4WjfKKjZJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.07|208.0|0.78|17.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|rra4BGZqp3D8LWbjaleCB82wUDhV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.0||13.92|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c6ee00292g|rrmDZwrhKJFIy_DwcpTVXEQptPje|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|1.03|149.0|0.51|7.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11540|rrnDgsQviB4EGv19D2VqgO62d6MF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|154.0|0.6629999999999999|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.15541/jim20160584|rrvPJnV0UOVfn0rfRkjpbVEV-qJB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|187.3|0.66|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc08269a|rs4e9bSN86htM4mK-06ZmTTsdOoX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H600I210N100Pb100|Pb100C100N100H600I210Br9|MAPbBr0.09I2.1||0.715|139.0|0.4629999999999999|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2020.104984|rs5wKpGLZr8F7SIfxF3JmaE_4zDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.09I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.0|0.71|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2018.07.025|rs7jARZU2N7YgDRGb08h7G0kk7GQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.0|0.765|15.9|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XOP', 'MoO3', 'Ag']|['XOP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|rsJ_NcRgsolpzJn2Ro4As4dXd_Yp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XOP', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.04|197.0|0.76|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|rsX-YdBC5ejCY9mfsl-Ch1PdtKwQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.728|99.8|0.52|3.66|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Ag']|['none']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|rsik9HM1OippVskRnXEzZdUpCc_F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|217.3|0.7240000000000001|16.65|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|rslOHG6Bsp4uIeAk5r7drBImsppA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.767|16.23|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15607|rsnE-o_z7pJSsQFdGN-zZHf-f1Ij|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|204.4|0.713|15.01|['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'Au-nanobipyramide; VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.030|rt0kbYHsSp60s_45b1Y_TfeaQUVr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au-nanobipyramide; VOxs', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|158.3|0.654|9.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|rtCDzzIz5g4rU3AXz5KQF6xheoO-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|83.3|0.48|1.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']|['PEDOT:PSS']|['Corrannulene-derivative']|bulk|https://doi.org/10.1002/ejoc.201700861|rtSTGSMpMzJwwrG7hwIjXWcBSODl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Corannulene-derivative', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|202.6|0.65|13.65|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|rtUlQc00Tv9o-mpprp33ILGpiiay|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.3|0.73|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00549|rtXTtkU0yXJlkDjrl4EBXEQqD2vk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.705|143.1|0.361|3.64|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b02612|rtZAx1WhD3xDFaCx5MUYJRpnSjLk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.0|0.772|17.55|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|rtugQtKuHMJMYCEsSwIVNerCFNoo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7200001834055632|0.86|178.2|0.62|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700480|ru9gVnCzhE_BYljPkHHBR_T7h7QX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.6I2.4. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|||||20.8|"['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine"", 'Au']"|"[""N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine""]"|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201810809|ruHanHppwAaoGbioE53kqfBf71BL|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', ""N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine"", 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55." -BrCClCsH5IN2Pb|CsPbCN2H5IBrCl|CsFAPbBrClI|1.7500001866044976|1.053|159.9|0.7609999999999999|13.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['NiO-c']|['C60', 'TmPyPB']|bulk|https://doi.org/10.1021/acsenergylett.8b01165|ruT0xFCbdzHC_9Nk9l_bm52oLr9t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is CsFAPbBrClI. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49|||||16.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b01101|ruWfDtF6UYf99zVKshcWm0leL0f6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|235.2|0.748|18.91|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|runkfQwfCLsWvGwRi5QYHU6DnoWt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.096|234.1|0.767|19.67|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']|['Ome-TPA-CuPc']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201901019|rupEGsyiAV6_D1hxbAQeMsQsoCZx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Ome-TPA-CuPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|ruzdgzWu9gAXKbL7HxZMrRiQ2ZkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C569H1002I300N100Pb100|Pb100C569N100H1002I300|(PEA)0.67MA0.33PbI3|1.6000001706098266|1.07|184.0|0.71|13.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adma.201801401|rv03MV74zeBG5XSMeo6KB-M3FYOW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.67MA0.33PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|165.2|0.755|13.35|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201501330|rvFPr0oYoiNXxmR1r7ClHHImiBLS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.7|24.6|0.42|0.72|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201800359|rvJofYQGgWaXx3PoXj2ELduPlY_P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||1.07|210.9|0.6890000000000001|15.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.044|rvOSAYPwvnFI_vK-C4MwY8WICgUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6240001731689735|1.05|193.6|0.708|14.39|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|rvPRV3ZG9nsDKWGRvZ10w9dI0hzV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|124.0|0.57|7.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|rvd5szc4xQU_SSM8gMYGVdyhMYgq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.0|0.59|12.2|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|rvnc5J1L2Bi7G9u_nied0KdNjw4t|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|232.8|0.74|18.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00477|rw-Ec5vl986Cu7SBz0mVpIJs6G9F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|170.0|0.44|7.0|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201700029|rw2ql5m5Y3AGFbqEkSpZ-CO9xMxW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.1|0.63|12.93|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|rw5Vk2pcveGIpasAIFaVjQm21IRW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|225.4|0.7509999999999999|16.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01499c|rwEjmosV9y4fBqBqJdbzf7yfZT0Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|228.3|0.7909999999999999|19.72|['MgF2', 'Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903108|rwGthzCVTxn6giU8gi_JuZ9XWxsY|a perovskite solar cell with the following device stack: ['MgF2', 'Willow glass', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|136.8|0.631|7.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3']|bulk|https://doi.org/10.1038/s41598-019-45374-x|rwLVhYqBWrXA5LNhHI-hDiJL0RlT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Pb|PbCN2H5I2Br|FAPbBrI2|2.2680002418394287|0.986|38.86|0.498|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|rwcpDEgLIqJoU3it3OeY9vhI_G0p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|190.0|0.726|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|rwnc89F-QEb-NjeXs37cO6wh3566|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC4H24I11N4Pb4|Pb4C4N4H24I11Br|MAPbBr0.25I2.75||1.01|175.79999999999998|0.69|12.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.09.161|rwrlkY-8_56Iq8Ya8J4tjZuuofVW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.25I2.75. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2|143.3|0.54|9.44|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|rxAGjgkwQYAaWua59y6V-UaCaCYo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|164.0|0.536|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|rxFTre6mSq2kxk52HkXq7gomwpf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.07|1.3|0.21|0.002|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.11.011|rxZLBewTzWBvQw70C1CcLcdyqtdq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|160.5|0.61|8.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|rxdL-BtvpFa6mqmDT9qslzdoL9Sf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7979999999999999|149.0|0.63|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|rxdkawU6F2G3S1W5CfHLS6cC-h_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H143I75N32Pb25|Pb25C25N32H143I75|FA0.28MA0.72PbI3||1.05|222.6|0.64|15.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00602|rxgjhLk8bb4-S0tI1ZWXrENYGirL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.28MA0.72PbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072||||10.89|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|rxl2mFaAcnKRaT9tvoRx5goejg1z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4|1.6100001716761378|1.09|221.0|0.75|17.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1038/nenergy.2017.135|rxmJy-a-vlIZtcqFjqNAsJhGNBJc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -Br30C95Cs5H484I270N181Pb100|Cs5Pb100C95N181H484I270Br30|Cs0.05FA0.86MA0.09PbBr0.3I2.7||1.14|245.0|0.78|21.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b13876|rxpgaK873_UhjoP00x60aOAfyt2U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|171.0|0.71|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b03834|ry1kYJpk47Di4E293WFjgq2yo7yC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|201.1|0.64|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-PO-2CN', 'Au']|['Si-PO-2CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201903599|ry3zZBKyEc5xgEtklE4q0N-6Oj-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-PO-2CN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.520000162079335|0.935|151.0|0.47|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z34', 'Au']|['Z34']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600905|ryCd8CIs0cWVByn3BDlCXi36pO9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Z34', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|223.1|0.6859999999999999|16.2|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135281|ryCzAhPeXiF37kx1sef_aFIqkWQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.0|0.763|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|ryGFpcuQlgOn_AWSp4egrw2ooM6V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|219.9|0.716|16.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.041|ryOa9kJbxwUwRIGR2wYbDBZYLeAv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.5|0.441|8.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']|['TFB']|['TiO2-c']|bulk|https://doi.org/10.1039/c9nr05719f|ryjZjUsDd3c6j_p_1aJzTxMWtxah|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TFB', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|232.0|0.71|17.22|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12140k|ryq8wBNX4prmlxuAKQKM4QwJEncF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|197.0|0.73|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPPI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TPPI']|bulk|https://doi.org/10.1002/smll.201403344|rz6AMBOiCYeDj39kFWAGa_oJ2pks|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TPPI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.7|0.67|13.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc04550e|rz7Y-XAUlRsrG9Ok6IXyupgdk38_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.8|189.1|0.688|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF2']|bulk|https://doi.org/10.1002/asia.201901452|rzBoGBvhCD5SwFdA8eceV4WMSzPU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF2', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|206.2|0.81|18.35|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|rzELx-jb0hN_GULpB3c7pnp1fxZn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br6C10H60I24N10Pb5Sn5|Pb5Sn5C10N10H60I24Br6|MAPb0.5Sn0.5Br0.6I2.4|1.350000143952041|0.89|256.70000000000005|0.75|17.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['ICBM', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201704418|rzNlfCZl46-iUwqqMiqRF_4SPvGs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5Br0.6I2.4. -Br9C22Cs3H132I66N22Pb25|Cs3Pb25C22N22H132I66Br9|Cs0.12MA0.88PbBr0.36I2.64||0.88|204.0|0.596|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1429-3|rze9q78Wz7pyYz4ChzYTmHrDrAiw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.12MA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|193.9|0.296|3.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|rztEACIdf6Vz_A0rWaZfstytOI5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.9|0.805|16.01|['SLG', 'ITO', 'PEDOT:PSS', 'SrGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'SrGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152091|rzwEA9RoEYy8gqJUYG5VVMR-G7h0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'SrGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|231.4|0.63|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|rzxurpPOwT4CEkJ05W4d_kbZJtBQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3900001482172863|0.33|191.8|0.579|3.71|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08679j|s-0GjT3dEcqL6FLaImH5FFZH41De|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|125.0|0.64|7.8|['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-IO']|bulk|https://doi.org/10.1016/j.solmat.2016.10.035|s-7C-fZji-zp4F_fpDJcQlikng-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|188.0|0.44|7.04|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|s-FqtZsA_S039ZERj-7NcFg7I8wF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.76|52.8|0.536|2.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|s-OpPyCuvQ6x2KLlJiGow0qYAfy2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|208.0|0.6|10.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.12.193|s-_3M3Z_Gwa8QtGHEnHE4gAbZ8eU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|131.0|0.731|10.42|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900370|s-ekmmvs5B29Qlc17OjmIwCZ_YQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.8|0.743|16.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04944c|s-fYg81VvaVEKLtu0FZjxonJWFYi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.9|0.649|15.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-018-0319-z|s-hJV6x9n7CPIBZPuKSd19-5_BRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.89|92.1|0.61|5.01|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|s-sb_2eSGJB9fDikcBWT7azdhxke|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5930001698634082|0.98|188.0|0.74|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|s-tgO1mLXU0iRzqUuo-KOKGnVgYP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|180.4|0.5920000000000001|10.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|s-y6FutMtmbNyvwRpTQcvxXwa7Jl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|195.2|0.6|11.16|['SLG', 'FTO', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanofibers']|bulk|https://doi.org/10.1039/c5nr07395b|s0-xxB92DuLm5vSt4z9n1R-NDPaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|152.20000000000002|0.64|8.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1039/C4TA03384A|s01G1lf6sC2CAPP1c_wQwPVtruYp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C94Cs5H485I249N173Pb100|Cs5Pb100C94N173H485I249Br51|Cs0.05FA0.79MA0.15PbBr0.51I2.49||1.015|217.0|0.6990000000000001|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-Heteroacene 2', 'Au']|['S,N-Heteroacene 2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b10039|s01ZaPz2SAx6L6VGBp73IvsfveCN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-Heteroacene 2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|190.0|0.75|15.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b11860|s0Dvy-DQ0396wiqh_Aj_inBz6Fdl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.481|70.4|0.71|7.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Carbon']|['PVAc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.9b05631|s0_ASu--TFeTKbB3bT3B8Ag0wDsA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|167.0|0.526|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra03466g|s0aal1VfhckXxFy41apyR9IBrJmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|185.4|0.75|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1063/1.5010951|s0c_GnjMi2MHx7amNYn0S5jYJh2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|190.0|0.7120000000000001|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|s0hYS68ctry-xrVNGyyEhUrJf-vE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.001|181.7|0.645|11.83|['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']|['Lignosulfonate; PEDOT:PSS; PDA']|['PCBM-60']|bulk|https://doi.org/10.1039/C7TC05276F|s0pCZRh2KESBznz-TUitwbVHBf5w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Lignosulfonate; PEDOT:PSS; PDA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00754c|s0tSp1KzPEsVriqDBdJfe_Vu64I0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.034|213.0|0.73|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|s0tdIbNF9_IHyccfXn0K0QtMUSje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.185|146.7|0.8079999999999999|13.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Aminothiazolium iodide', 'P3HT', 'Au']|['Aminothiazolium iodide', 'P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.104180|s0x00RDysfDCJP5gflva8VTvBLVT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Aminothiazolium iodide', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|230.6|0.72|18.11|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Graphene']|bulk|https://doi.org/10.1021/acsami.8b15665|s0zAYQq3mXK1tmqwAThjlVMfxQs1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.05|204.0|0.74|15.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1007/s11426-016-0289-4|s14C06tydnFtIbg6SpH8ceZh1UPw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|156.0|0.51|6.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'PCPDTBT', 'Ag']|['PCPDTBT']|['TiO2-c', 'TiO2-mp', 'C60-SAM']|bulk|https://doi.org/10.1021/nl401044q|s162kkARlRO9UkcTxHrfR-2YUdDT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'C60-SAM', 'Perovskite', 'PCPDTBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.7|0.59|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b08981|s17Tvd79NLePG2EL732llDO3eCui|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|153.0|0.372|3.9|['SLG', 'ITO', 'NiO-c', 'Au-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'Au-np']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr06741g|s18h8i0PliDbhyeKxi-MMKcxzbwY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Au-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|s1BJhur3IL55aqwiZOGdzP1Jks75|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.72|53.1|0.39|1.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|s1CCWTEPlItGqGrGJRxpnOm_jb9r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|215.0|0.564|11.28|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|s1Jaf3Rv0HUrsZffxiOIt0rScW9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.0|0.69|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502206|s1WUT-sE_CG6u18vnLXfBPzQsWYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|134.70000000000002|0.55|7.04|['SLG', 'ITO', 'TiO2-c', 'PCBM Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.006|s1fIPVp6je503MG39Ti1phFCZ_Vl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|116.0|0.568|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']|['PEDOT:PSS']|['TDTP', 'LiF']|bulk|https://doi.org/10.1039/c7ta01764b|s1mvwwQSEnskBirmbXqDbC-NivF1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'TDTP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.16|247.8|0.782|22.54|['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|s1nNtPZzayUpJK0jGuvV5cy8DRis|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|137.3|0.72|9.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|s1p0esDn8itZcW8ErsiBUmOc5pY3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C10H60I24N10Pb5Sn5|Pb5Sn5C10N10H60I24Br6|MAPb0.5Sn0.5Br0.6I2.4|1.350000143952041|0.9|215.1|0.76|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['ICBM', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201704418|s23ircF-EqTWv0oF6_8oHwWbNEED|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5Br0.6I2.4. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66|||||9.91|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|s2BEEi39JgT1mM_-tA76rZ78MwPx|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|224.0|0.7|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909644|s2XIGG1TAcI2FOglw-ormz0UUsaI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.87|186.9|0.49|7.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr00420a|s2hPrTPKm0hLarJc2MU3lj8HcMaQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|128.0|0.41|4.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3762/bjoc.12.134|s2mrQOTY7peIQx-tPESqdLo5xi1N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C80H440I148N120Pb50|Pb50C80N120H440I148Br3|FA0.8MA0.8PbBr0.06I2.96||1.051|201.8|0.721|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900491|s2n3ciyVcM4ZLgQD3tCZ6iVM0F1D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.8PbBr0.06I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|165.0|0.39|5.5|['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'TIPD; ZnO-np', 'Ag']|['CuInS2', 'Al2O3-np']|['TIPD; ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2019.04.007|s2tq0M10PramFRSXOsPNjs_-NaeW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'TIPD; ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|233.6|0.71|18.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800149|s2vqN2Ua4ylL0yisZWOSUgwwSLJs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.11|220.0|0.774|18.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201903166|s2ycxGY1gsFmiAaxc3b17qr-ekJR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.9|0.79|19.94|['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|s32mp8YMb-Pb4rR3N8VOK2QDTylz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|153.0|0.52|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|s36O_lMH1qoAQcNXeLUPvw0Rxmgb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.04|221.0|0.6|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|s3CmvfV1YgOpKR3hGV7iKPz8xpR6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.029|161.5|0.58|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.007|s3Hj2szVbxp-x7eGwff-bW7Ttr1q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.195|69.5|0.424|3.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aabedd|s3IGIKOetss0_1kgaI38-77yFyEs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|115.0|0.67|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']|['Polymer2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41428-018-0116-9|s3QlaGiDV-eChlBy5Qa0VSrEPHzY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.016|8.66|0.685|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|s3ZC5nfFkUrh0nWiGfxekh6JvrI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|174.20000000000002|0.7120000000000001|12.41|['SLG', 'FTO', 'GO-nanoribbons', 'Perovskite', 'ZnO-np', 'Al']|['GO-nanoribbons']|['ZnO-np']|bulk|https://doi.org/10.1038/srep27773|s3dsPKbvpF3RU3Wh_5HReNvXQc6S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'GO-nanoribbons', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.015|207.6|0.674|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|s3gXYa9br5Va8uEZd_vLZH0T-6Q2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|185.2|0.71|13.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/admi.201600948|s3l30bTWcaaQsmPL3vokzbRE1Xpf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|190.8|0.73|13.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['ITIC; PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.orgel.2018.09.004|s3lsKN2XDx-s9mSHh28F76LESmFQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC; PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|179.0|0.57|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201400345|s3mHtDOnc_H_AQFbwlS0DmvClUHz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.13|246.4|0.753|20.96|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|s3se1CSMVhq7uSdRk8B3muHlBIsW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.94|232.4|0.74|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aay0414|s3tPwKnW2FpGN8i0AEMKyfNbdyh0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.40|1.500000159946712|1.08|210.8|0.659|14.3|['SLG', 'ITO', 'ZSO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZSO-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta05745d|s3zWs0OlOSFYlRlbQeKJWju52X8N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZSO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.40. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|194.4|0.6|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-016-1540-4|s467bVH-Y5WRUBh0pzrYztC_XR68|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.76|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04267H|s49cDuQf9oYuth_CbYPRBBsu6beX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.2|0.698|15.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|s4H-vLi-6WucJCLYQ0e39cdkz14d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.25|64.0|0.72|5.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-QDs', 'Spiro-MeOTAD', 'Ag']|['Si-QDs', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227065|s4MYkb4sWbsOmw8wjcSsdak43APg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Si-QDs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.0|0.659|13.2|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|s4O-A0qM9puAypcxnL3FBMo_kuLz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|177.0|0.759|11.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|s4OO-hwPV19Q5OlynpMv2hpARjrl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.15|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.036|s4RqPCf13fdsGyHyXc4EL-U9DtdH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|177.0|0.41|6.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|s4UI9YA5uv5yWVSeYi4Fab9e223R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.088|203.4|0.6709999999999999|16.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|s4USOuGNxDrWqg_dzY5EfMTIV0O6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|217.0|0.7|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2017.135|s4_FB6fP8fBDKMvm85gkh5dV4PpQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c7ee01145h|s4a9Yf__E1Blkk-8MEKlP9gDffoL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|92.0|0.71|5.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|s4rjJlqMEYkA5WOAWG1vgc3lut2O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|218.9|0.61|11.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aaa230|s4weNqDjTVFSmrmwd5KYTIA2hNqK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ra00043g|s534_nOnWRu87D6YIXGu1iopKHco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|186.4|0.564|6.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02984|s555WlSXDuibP3Wig9IjgmXUVT1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.151|216.03000000000003|0.746|18.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|s5JMs1I839vBe-OuviGkV46_hZDc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|173.0|0.73|12.2|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0se00460j|s5U5ds_LqJw7VHl1YaWUU5E3L8Kc|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.73|15.91|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|s5XMmjHJiX26P-xoFXo_mRaooAVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|117.4|0.723|7.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|s5iC5IDl1qNLRabjXxTr2y-gUiqh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.894|199.8|0.66|10.52|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/adfm.201500616|s5n_Troobd4oCWlcmPsDE4Y5IIMk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.0|179.3|0.722|12.94|['SLG', 'FTO', 'GO-nanoribbons', 'Perovskite', 'ZnO-np', 'Al']|['GO-nanoribbons']|['ZnO-np']|bulk|https://doi.org/10.1038/srep27773|s69bhBEb3lFV6Pvx83F6LtdvMd0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'GO-nanoribbons', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.6459999999999999|210.0|0.33|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|s6AFbqJl6DP5-UJuQSSKY6EBo9bf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|184.4|0.65|11.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|s6BSd7ryHjHOr_c5KwpXS7GnA8-4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|182.1|0.75|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P2', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN-P2']|bulk|https://doi.org/10.1021/acsami.5b11286|s6C2SyeNdgTXrjqM9agv0nX4qpZ8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|177.89999999999998|0.68|12.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500849|s6Gc-LD6XHJo0so9x_ff61tjAQ2w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.02|240.8|0.684|16.83|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C12', 'Au']|['BTTI-C12']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17386|s6LBubUHaEe0PL9HOlLs1pO3uoIr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'BTTI-C12', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.118|233.3|0.706|18.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|s6PAKhK_Od4vLM4-SUIIHdAouzKg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.08|197.2|0.57|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|s6UjEr4iPzli1EueqsNFzqo0I8_C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -AgBr60C20H120N20Pb19|AgPb19C20N20H120Br60|MAAg0.05Pb0.95Br3|2.300000245251625|1.11|29.0|0.704|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|s6cVof935p21fUiP2njnvqhgX3PJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.05Pb0.95Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|225.3|0.674|17.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuO2', 'Au']|['CuO2']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201901430|s6szTBLcETLzyYRiX1fPxXXIWeRK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuO2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|199.0|0.65|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|s6uH7Er5W1LzjEEt09OxFEnyU2o_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.044|123.0|0.701|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|s71tGs4XplO0-lG_Q55qRzgKkK4x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I2N8Pb5Sn3|Pb5Sn3C5N8H27I2|FA0.6MA0.4PbSn0.6I0.4|1.2500001332889268|0.76|277.0|0.743|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aav7911|s728dCi7GIleVYiwQFCodQ4k2TyB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbSn0.6I0.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|189.1|0.55|9.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9sc04900b|s7JUiSWeB9Lxr_vHaexdPe2gZRo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|219.7|0.75|18.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|s7Qg5cZpa0bpBfaSBdfEDJ5_4FZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CCl3H5N2Pb|PbCN2H5Cl3|FAPbCl3||0.5379999999999999|130.0|0.66|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Metal']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11581-017-2256-x|s7ha0P0s7OhKP8tu5Ord47TnEUgn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Metal']? The composition of the perovskite layer is FAPbCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.0|0.757|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/C8TC04525A|s7nLS7j_BIyUkExpXofaQQ-sNZpG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.82|119.3|0.31|3.04|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/12.2257204|s7nTAwbSWI9urPzxd5hcxg2EAzZy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|123.3|0.515|5.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02193|s7r88nLh2nhxWpk5bY-3blI2JC5m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|100.5|0.504|4.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|s7rBu2bwGFZaCE-PDpqmrEgvt_I-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|211.0|0.61|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|s7v879fDzC2jYc8bRhvBP2udhMqo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.5900001695435149|1.114|226.8|0.779|19.68|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7cc07534k|s7vsm1o1f3Ci_s9x-eNQe-4GJRo1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.5800001684772036|1.12|201.0|0.723|15.1|['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|s850mP5uaf3Y6YLRrpjxNU5sA0em|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|2.05000021859384|1.183|99.7|0.721|8.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|s8Ad8SDn6DA3i0cIjzNj86nrtYP-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|110.0|0.41|4.1|['SLG', 'ITO', 'Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Polyacrylonitrile']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8nr05698f|s8DnL-TnzAS_xFQPq22qjB-E0jHt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.055|233.0|0.726|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.08.016|s8XBEuIFDpdopd6SR7Y4YL21e0qh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|131.2|0.69|7.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|s8gmxcWMGz23wsCPkiKyfqkx-xyr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.32|170.0|0.46|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|s8jUYueIPeJkhhBvH5OHMURS1rCK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|199.0|0.76|13.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b11650|s8tFc4cpklWWRVNR5H5Yg_ZtKAaa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|194.1|0.7659999999999999|16.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|s93dSoLOYMkTmLOms_qiJAYmyi-f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|185.7|0.687|13.48|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c5ta04313a|s9Ca6c8pI-vbOj_hJ7e9QCV8sib_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|211.0|0.7|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700444|s9D2QWAmaib_nZkerYWxZxgqgdat|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|161.0|0.71|10.5|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|s9EwjexS2avpmYZN3uomB-rRqLaN|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.39|61.5|0.716|6.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01151j|s9FT1GXVP3iOiXAjXcSsoJTyTKhq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|165.0|0.633|10.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226699|s9LyC3Lbb5UTOIPWa2zS3qemDGA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br75C42Cs8H212I75N82Pb50|Cs8Pb50C42N82H212I75Br75|Cs0.16FA0.8MA0.04PbBr1.5I1.5|1.8200001940686776|1.2|142.6|0.8290000000000001|14.08|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'ITO', 'LiF']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201903085|s9PV6RExNuYbtbBYwIUNV08joR97|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'SnO2-c', 'ITO', 'LiF']? The composition of the perovskite layer is Cs0.16FA0.8MA0.04PbBr1.5I1.5. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.14|187.8|0.62|13.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1039/c8ta09146c|s9R1wZmwZ7q2Wa7HG1cy2PVxUg_a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.6|0.68|2.0|['SLG', 'FTO', 'TiO2-c', 'ZrO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZrO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.6b12509|s9T32JUs1djmYXWTF9pEI20a-S8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZrO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.0|204.0|0.8|16.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|s9_eCVCc8pZl7bTO_I9cra0tFmsF|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.06|201.6|0.715|15.25|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.014|s9d5ZxkdixGLdx_BYUw-wEgDWmmp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|208.1|0.768|17.52|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|s9edWBCZ2ERDl82CBcnAznNVPTQJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I270N166Pb100|Cs17Pb100C83N166H415I270Br30|Cs0.17FA0.83PbBr0.3I2.7||1.07|220.0|0.72|17.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'EVA; MWCNTs', 'Spiro-MeOTAD', 'Au']|['EVA; MWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b15396|s9lmKoF9hdjC_N0SQROjwHYPoSpA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'EVA; MWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.0|0.64|13.62|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.081|s9vb8NWktOSo2ibHtDY2iGOjQ6EG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.085|213.8|0.73|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,2-Bis[3,6-(4,4`-dimethoxydiphenylamino)-9H-carbazol-9-methyl]benzene', 'Au']|['1,2-Bis[3,6-(4,4`-dimethoxydiphenylamino)-9H-carbazol-9-methyl]benzene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201504666|sA0KUtcPOg4PpLdi-KWkZnoMVeE9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,2-Bis[3,6-(4,4`-dimethoxydiphenylamino)-9H-carbazol-9-methyl]benzene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.109|220.2|0.7490000000000001|18.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|sA0k2YyETTRiSWY6v4XKl26iJ6A8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.782|170.7|0.413|5.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|sA37Z1AI4oXBCLHCMlcGBhFzRhd8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|65.7|0.69|3.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4cp00298a|sA81w6GYNMo8X6WhUlvNut6h-rix|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.94|214.0|0.56|12.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.7b00614|sAAqNeCXPhW4q_136Z8LB70LYfX_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.11|209.0|0.78|18.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05081f|sABMcTyPQNkM_Ue7Q5_5PL2KG-b1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|225.9|0.71|17.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201906995|sAFksEmhByTVAKK7WuZ-kRLNhLUd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.047|220.9|0.76|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05484c|sA_AWZE4AQ7u6PRntSoClEoGuZeA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|51.6|0.311|0.85|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|sAe-VELIpKPlxwYDcUqILJrT77yR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056||||6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1016/j.solener.2018.06.041|sArNDgW7mhoEf5VY6KIutRoyg36R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C190Cs10H1083I600N247Pb200|Cs10Pb200C190N247H1083I600|Cs0.05FA0.285MA0.665PbI3||0.947|236.0|0.63|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|sB0Ie0bTwTG_geKEZgi5CbKUXI05|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.285MA0.665PbI3. -BaBr5Cs5I10Pb4|Cs5BaPb4I10Br5|CsBa0.2Pb0.8BrI2|1.8650001988670784|1.27|140.6|0.77|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-12678-5|sB2AVZG8A0DwlNarkECGKcJIx-Aj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBa0.2Pb0.8BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|99.0|0.688|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|sB96oefaMZ9D1JoPFDwqBXI71ZX0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb3Sn|Pb3SnC4N5H23I12|FA0.25MA0.75Pb0.75Sn0.25I3|1.3300001418194185|0.71|219.8|0.75|11.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEABr', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104099|sBF31uQn-SbgVZCgx2jyK1xYFYDa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75Pb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|228.3|0.7659999999999999|19.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12217b|sBFiea0j6gIxrCW-mfkQZCDYMEGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.13|136.2|0.62|9.58|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|sBP89j-mCmHrqzXOZwqTcPpkiCCs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.019|164.60000000000002|0.696|11.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|sBQJpaxMDMnEXtOBQ0OBeFb5oDm7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|0.89|76.8|0.6459999999999999|4.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|sBawhclZDtp5GhUEWw30ZPZNIL04|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3400001428857296|0.33|84.9|0.417|1.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.007|sBcce5Pp2Cnv6zUKBb6dBd648DB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -BrC5H28I14N7Pb5|Pb5C5N7H28I14Br|FA0.4MA0.6PbBr0.2I2.8||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801079|sBh9SCHoZoyC-RE3rakjSB1BMwPd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.2I2.8. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.001|165.9|0.389|6.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|sBs7SsmaRH1Pg3XhBmddcnrJXJSZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br3C19CsH101I57N32Pb20|CsPb20C19N32H101I57Br3|Cs0.05FA0.65MA0.3PbBr0.15I2.85|1.5500001652782691||||14.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|sBuCx9pwZd2OskkLVNnzw8heM4SX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.65MA0.3PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|148.0|0.62|6.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11664-016-4724-x|sBv9UZzhdHuDpDK2tk8qm4BHqgei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|133.3|0.56|6.46|['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'MoO3']|['PCBM-60']|bulk|https://doi.org/10.1002/bkcs.12092|sBvt07ZZfRke-p5okUkroAg4_LUp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'MoO3', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|219.4|0.75|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|sBw1j_Y17_Yhxx83fGwnwRQrzEeO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.89|206.2|0.52|9.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800064|sC661qPgh7L36CUU03nePIGyuCsu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -CsI3Pb|CsPbI3|CsPbI3||0.593|113.0|0.478|3.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|sC6MpMwnHPeF7s7OjSGhLeRwl_D5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.955|221.7|0.664|14.05|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|sC6nIiWUR16RHvCUghmCO_Gsx5LS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.4|0.578|9.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['PbS-QDs']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877003|sC7cUGrnPJV8FCnYPmb6LqjPHGlj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.3|0.631|11.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl', 'Ag']|['ZnChl']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00018|sCCUBNx1GLjE99KLkA_qy0Nrp5SC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnChl', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.10.032|sCDdSoI2O_VDyRMfM4H0WdVnVjOP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||0.937|228.0|0.63|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|sCOxjvHsg9N86Hqd4YQZDH5dDuwF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.07|237.4|0.773|19.64|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|sCSChpUexY3f6nByslaUrmnBAaDj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|129.4|0.637|8.49|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|sCZy9tzKXYLGkdhFdqhub8rJnM2K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.11|157.4|0.7120000000000001|12.48|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|sCrMQD9BYwmDCimlhn1M7E-TwNAD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||1.03|193.3|0.65|12.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|sCwmi68xhY13DHMb3ke-PIaBA-8L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.71|74.0|0.639|3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AgAu-mp']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11720h|sCzcvzysamibnTySZo0HNFd4cFOL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AgAu-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|107.0|0.55|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137418|sD09ghu39rs5T-ci_oy0EBOfDgn3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.0|223.7|0.784|17.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|sD48cDc4SAeDKzXML7Zm6p67lTcB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.544|20.2|0.54|0.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4896779|sD9rEuuf0krnenc-u3nNQphJ5Oiq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|232.5|0.6759999999999999|17.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.9b00350|sDJPfBgaSgtryZ7gVB2z8F7WKi8x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|204.5|0.75|15.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.061|sDL2BO-kVgoaOOiFD3E-BxdZgWqN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.9|160.0|0.64|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|sDMJ0f5kW8I-GH1vaa13RCpajBNH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.025|160.6|0.8140000000000001|13.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|sDTjT0pml4m1uax7KPBHvrD0vj-P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br29Cs10IPb10|Cs10Pb10IBr29|CsPbBr2.9I0.1||0.67|23.0|0.31|0.47|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00103|sDdpKDP-xwEOPzjh5s8GbghUQfEa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'ITO', 'SLG']? The composition of the perovskite layer is CsPbBr2.9I0.1. -Br51C100H513I249N187Pb100|Pb100C100N187H513I249Br51|FA0.87MA0.13PbBr0.51I2.49||1.02|240.5|0.7609999999999999|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b11010|sDgqQTwK83PkXI5V-r9ZkiOXDf2h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|151.0|0.47|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b11584|sDhfcPx-57ZC_oWikvosQQaT0132|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|218.2|0.639|13.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Ag']|['BTT-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09777e|sE0ZsG4oY_Bbh1JAEnzDTV2qxQyU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.3000001386204838|0.68|163.0|0.48|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2014.82|sE7MSZx0l9CJTrzhFp_oTFLgl4rn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.892|223.0|0.4579999999999999|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms9397|sE9kydf8P_MMOAuPF3WtKXGrfOrg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|219.0|0.75|17.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']|['RCP']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|sED4ts9ZRAxCGxHq7ObOVlIctHTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'RCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|125.4|0.57|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|sEKxFLC810PF9PB13LDrj0g9sUbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|170.0|0.62|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5MH00170F|sEQD4AtJ3qMnXuv6sa6KAPSYfdR5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|207.0|0.73|15.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201806779|sEQe8ZhAfW-fIXS2cL7K3J-NGnnQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|201.7|0.7609999999999999|14.78|['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']|['PEDOT:PSS', 'Black phosphorous QDs']|['PCBM-60', 'ZrAcac']|bulk|https://doi.org/10.1021/acs.jpclett.6b02843|sERKhOjLP1S-TDzvQ6E0OqpzXbD3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Black phosphorous QDs', 'Perovskite', 'PCBM-60', 'ZrAcac', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|201.8|0.733|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'FPI-PEIE']|bulk|https://doi.org/10.1039/c6ta09554b|sERQBb9fxwtO9dSH8dtn6Zirhc3u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'FPI-PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|196.0|0.73|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|sEcOHYKNhzbO1CsoWKTT_C2jiaYY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.0|0.72|14.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1039/c5ta09992g|sEeKE6fLmoIgn_jfIijsvafhmdtP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.89|197.4|0.7340000000000001|12.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6qi00580b|sEhgdwlEWtgFWnWaP0zu8SVp-JR-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|127.6|0.6859999999999999|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|sEhvs9h7iaeJ5ARiqMizYJp4QHMm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|176.0|0.6|11.6|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/s41598-017-18970-y|sEjnCzZyBZGO6vYIbMXC1y90YJsJ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|161.20000000000002|0.685|10.18|['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MoO3', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|sEkWClrZzX4MGlROE-pNXiWjuZGh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|100.1|0.503|3.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTTP-CN', 'Au']|['BTTP-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2018.11.024|sEorhR6oO8sEQH1c5vj17lnev3Pk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTTP-CN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.1|0.73|15.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|sEts5HX84p0vf0HWGJCH3ukoef2F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|187.5|0.49|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07511|sEuH9qXb20__naBatCtVgMlfRZWH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|223.3|0.652|14.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|sEwt0-vm5yg2bysobnJhL5ROMOrJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.0|0.64|10.2|['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'C-PCBSD']|bulk|https://doi.org/10.1039/c7tc00966f|sEyaFCEGMoOIBtBKxpa6pzVJKVbJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|235.0|0.785|21.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|sF9FR2sIKvjzw9gIjRc6DojsW8VF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|182.8|0.73|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN-Br']|bulk|https://doi.org/10.1117/12.2187973|sF9g6PxkyT8eEL1CdiF5Ybo458BS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|196.2|0.76|15.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|sFIuy7Kdtp-H0VPEwA98FNllnBJU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.1|0.6990000000000001|13.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BP-TPA', 'Au']|['TPA-BP-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201700139|sFJbl2vCKxcvgYjyZO4xUCGzItki|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BP-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|152.0|0.74|10.9|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|sFMKQ9CRBdCxXy2xpHZEDArNQ98d|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|212.0|0.71|17.1|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|sFSGsv-k_Oy1DApYtnp40qlRIsXa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.0|0.74|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|sFUhxplaDrS69rFSoBwy3dgeJYSR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.085|221.7|0.595|14.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b08669|sFbocarGzeC1f4iwYGwG1rEYxtUC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Sn|SnCN3H6I3|GUSnI3||0.26|1.2|0.36|0.01|['SLG', 'ITO', 'MoO3', 'Perovskite', 'Alq3; C60', 'LiF', 'Ag']|['MoO3']|['Alq3; C60', 'LiF']|bulk|https://doi.org/10.1038/s41598-017-05317-w|sFl64Kaa_opEPHhsj7IHnHjwsq2N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'Alq3; C60', 'LiF', 'Ag']? The composition of the perovskite layer is GUSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.0|0.731|16.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|sFnzrsMUwhWl0cwxuuMzt47GhdLD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|218.3|0.7509999999999999|15.87|['PET', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc00479c|sG55EeA2vNezEH5VDnCx91uiLTuP|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.09|238.6|0.818|21.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']|['DM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201902740|sGBwPJy1eKyH_krFOMGWAoj9pwPE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DM', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|245.0|0.64|15.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solmat.2019.109927|sGc_epYAjrSvXoY-I61jkmWAKOSa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -Br90C85Cs15H442I210N153Pb100|Cs15Pb100C85N153H442I210Br90|Cs0.15FA0.68MA0.17PbBr0.9I2.1|1.740000185538186|1.11|180.0|0.719|14.4||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|sGsZzRoJzI1rLby1xyb2NGDVQBRx|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.68MA0.17PbBr0.9I2.1. -CsI3Sn|CsSnI3|CsSnI3||0.0969999999999999|187.5|0.248|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|sH0DtlO9LwUWBTOD4Tv-Lv49Pkj8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|208.94|0.6779999999999999|11.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|sH3MdkhD5fAGES_clwPjkiwXpu44|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.096|224.3|0.75|18.76|['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI; SnO2-np']|bulk|https://doi.org/10.1021/acs.nanolett.8b00025|sHCqz0TbwvEDWPruWji6qneiyAQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NDI; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|151.1|0.349|3.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.06.069|sHa4xcwyvfaBegrQD3irwntcqIUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.02|195.0|0.69|13.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|sHlqnExBM-htAaoMs4uNdaCz0I-Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|209.5|0.735|15.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|sHqA4qcnEyTRIBeq7KLUnlkTRd0Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br60C83Cs17H415I240N166Pb100|Cs17Pb100C83N166H415I240Br60|Cs0.17FA0.83PbBr0.6I2.4||1.05|220.0|0.795|18.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'V1050', 'Au']|['V1050']|['SnO2-c']|bulk|https://doi.org/10.1002/advs.201700811|sHsFqqcEN2uVp9UWg2ByCqiv4t6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'V1050', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.6I2.4. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.86|179.0|0.7|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b02272|sI-dmHUZ8ulZkBPUhSWIePyW2CbT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.95|136.9|0.36|4.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|sI10-UYbkXc4-JW9t9yYAwiaBr-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|180.0|0.62|9.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|sI7f95N6TW5LAkfHSuSDGi3kiPLg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|189.0|0.541|10.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']|['CuSCN', 'MoOx']|['SnO2-np']|bulk|https://doi.org/10.1088/1674-1056/ab99ae|sIDedwELr_IVAWKbXkqzORYjfWLU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuSCN', 'MoOx', 'Au-grid']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|217.0|0.74|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra09954a|sIE3bT5HJWa9gKIHlqnKLJJ1FpsV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.22|20.0|0.14|0.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Pb']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6cp08392g|sIO390yq9VIEcJ0CdkXykyX4v2xY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Pb']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|210.8|0.77|17.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07689k|sIPbRZP_X3yyybMAfLNpJ7UTest-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|209.9|0.486|10.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150049|sIPj-wqlOVolb1umv8NFHMkoxSxd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||15.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|sIVqYPc0Xk2pBsWFQvN2_QdzQTOJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|181.0|0.619|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|sIWWGsk_8TPRmwqgK6ZHbyY6aTt1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.08|230.0|0.743|18.6|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|sIffK5X0lBIvVsH7hhQhjrk7dkDs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.115|211.0|0.7390000000000001|17.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8nr03580f|sIq5xb1_of0sZC-eH0Dk4wbSXDDg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|188.0|0.69|12.2|['MgF2', 'SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'Au', 'MgF2']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2521479|sIsKRFOmiFKrM1DTH6CIfPPDYEqU|a perovskite solar cell with the following device stack: ['MgF2', 'SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO', 'Au', 'MgF2']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']|['CH3O-PEIA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|sJ54ggbrA4_xKsEg6EgHLFVAoYc9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CH3O-PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|114.0|0.63|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|sJCvjyeWktS5VezPAe18fflhqNrY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|189.5|0.63|11.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|sJGGIXR4dN2Zbe6hL1Sy9pq0ZWoE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.31|216.5|0.647|4.0|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201703800|sJGbzP2eH2SBHQCino_N2OXDYlHw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|231.43|0.7290000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|sJJdX__Esa7wucvFh_AVuaNODrsH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|211.2|0.6970000000000001|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1021/acsami.7b02242|sJKxcqyrHIN8HFLANOVh1_Dk2XVo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|175.0|0.63|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.8b03685|sJMnLQIFRh8EmDLNC5gLmZFVUqrY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|160.79999999999998|0.58|7.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|sJOLDgEPEe5Ix8f1pvVKC8hYbLb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|25.6|0.5|1.14|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.02BF05|sJQUznh0s9w9rfL-qez_aFkDYmbf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|195.0|0.74|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14565|sJSXm8n2oO5UPVecLOV7YOuWmbtO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||246.0|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1364/OE.23.0A1700|sJcLciXWICDOKUikJnBd7ywZxUiH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.915|198.05|0.498|9.01|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|sJjB_2N_uUiuo4NA-bD5BXcKMK9U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.09|187.9|0.73|14.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|sJrVrgHO4TJYJVP-LLiju6yeHjAx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|1.4|0.241|0.0007|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|sJxFEp5Dr-9-SbFmRKrQUxNexQC3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|88.3|0.241|1.69|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PSe-PDI', 'Al']|['PEDOT:PSS']|['PSe-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|sJxdXkwWBtVJS2QAdCc3dNjFLPUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PSe-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|145.6|0.41|3.79|['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'CdS']|bulk|https://doi.org/10.1117/1.JPE.8.045501|sJzkyvEE7Wp3ZlPDPiuW3UqYM1uk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.78|138.0|0.55|6.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|sKLAy9H179FLqWtcqFSIlVtRuGmA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.11|225.1|0.74|18.48|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|sKOZXQgrNOrP8AhQIJ3X4vMsX5vy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.925|199.0|0.534|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']|['BTPA-3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b04614|sKSLPJgdjxg17eU9RtSCd_YdJ8S_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTPA-3', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.86|173.1|0.772|17.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|sKY-zLWmNWvWx87BeioPkdVsdkE2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|203.4|0.7|14.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra28501e|sKYe-lBM9TwcTZFLNvoREV-dFxzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.18|89.9|0.598|6.34|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/smtd.201900831|sKaqzvWCOB39Os8qaNoaJORpDFKT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|68.0|0.49|2.7|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|sKeykXKdMEhnIFJMvbPIolmzXicD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.99|169.4|0.68|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|sKfQK1tqEmySED6esgLReFJ-Xm66|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|197.7|0.62|11.34|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201800264|sKjrjB5SbXqGBdPOe_SnHtjadNQr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s13204-018-0836-3|sL-bVgUIovQXh1Rm7Ruish_Dh6Fq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|172.0|0.718|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|sL7vlLWPhFqRk7ByBPNBRlnwSwtt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br20C18Cs2H93I40N33Pb20|Cs2Pb20C18N33H93I40Br20|Cs0.1FA0.75MA0.15PbBrI2|1.740000185538186|1.19|173.2|0.782|18.69||['PCBM-60', 'BCP']|['PTAA']|bulk|https://doi.org/10.1021/acs.jpcc.1c09739|sLCQHKx5MjqNKtAO5MUgeEjSUQhX|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBrI2. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.037|60.57000000000001|0.5329999999999999|3.34|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'CdS-QDs', 'Perovskite', 'MEH-PPV', 'PEDOT:PSS', 'Au']|['MEH-PPV', 'PEDOT:PSS']|['ZnO-c', 'ZnO-nw', 'CdS-QDs']|bulk|https://doi.org/10.1016/j.nanoen.2014.12.004|sLCas76e10ZT81joc9KBO2zUdeYU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'CdS-QDs', 'Perovskite', 'MEH-PPV', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br13C100H557I293N143Pb100|Pb100C100N143H557I293Br13|FA0.43MA0.57PbBr0.13I2.93||1.0|210.0|0.7|14.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201900390|sLWJYw141w736zMviAeC61RxtQjX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.43MA0.57PbBr0.13I2.93. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4||1.2|183.0|0.79|17.6|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|sLhTrwj6PwLU7-cCeEPB83QLr__R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|155.0|0.655|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-43987-w|sLh_6ssiTQMQSDfZXJTsIAp6MC58|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|217.7|0.62|12.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00377c|sLyQ3RTOtJjxcVKmiwbLKAf71c1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|178.1|0.737|12.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.052|sM-UT-dFyiKuq8vKybmSbNMQ1o7_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|123.6|0.4379999999999999|5.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|sM1GnQptSiA4dk9UkMpGxyjushZI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.3|0.6579999999999999|12.96|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|sM8lzACUG_DGykfvz71oLNi-pzf7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.75|64.7|0.66|3.2|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'Acetonitrile; I2; LiI; TBP', 'Graphite']|['HfO2', 'Acetonitrile; I2; LiI; TBP']|['TiO2-mp']|bulk|https://doi.org/10.1007/s10904-016-0410-y|sMGgGxhs66iOj-fe07t4GDeohvWc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'Acetonitrile; I2; LiI; TBP', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.2|0.732|14.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.10.017|sMHX9ETMGvOL0-Sxr5msaxIVSj3A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.4700001567477778|0.79|102.0|0.542|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.05.122|sMN1D5Bux50AsDubniE02PfG7jnM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanosphere', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|220.8|0.8|19.78|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|sMf3OiKmIAJPDdfFyV7kBqrKbO21|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.6|0.7709999999999999|17.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|sMkbFuk3E5J-uA7obtlmK6RQ2b0K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.99|203.0|0.66|13.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|sMq9V8tHKeNhn8Zxgqh_jTY4K_1y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|227.6|0.741|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|sMtNAR7olfBJOMCYNPN9SWRwC5uM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.26|67.4|0.532|4.52|['SLG', 'ITO', 'Perovskite', 'Au']|['none']|['none']|bulk|https://doi.org/10.1002/adma.201506292|sMyRxiTznZNmnXpw2ixZAPclR-HV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|177.0|0.547|8.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|sN1R3xUREJDHLM7kAnSS9uSaOaei|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|205.4|0.74|14.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|sNB1Itip7fzSij3ykFgW7PL7mb9y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|223.8|0.7759999999999999|20.11|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201901017|sNI1HdYFv5Im-mg0X-7bM_rr1DpD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.1|0.75|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp06953c|sNXX_3NwjD2CoFKV5BT1qFAJmNzX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.1|0.77|18.02|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601156|sNb81ZFThLeKyH-ZgSC7Jp-99wuX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|||||20.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|sNf_HRKy45Bo9nYVLVjV9mhM7fdF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.12|188.0|0.722|15.2|['SLG', 'FTO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/adma.201804402|sNjj3oPJODIi9E736_LCOGXPEZ3q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.925|165.10000000000002|0.73|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|sNqtykQ97nnOEh0d-t0fzklUiW7G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br31Cs100I269Pb100|Cs100Pb100I269Br31|CsPbBr0.31I2.69|1.7500001866044976|0.91|0.3|0.2739999999999999|0.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9qm00168a|sO3FsgNc0PcBHhnkKaM3dpupA90P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is CsPbBr0.31I2.69. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.02|212.0|0.512|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|sOGP0s_OSLhnvJJ1Pb7Zn44FyFOp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.02|84.7|0.716|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.050|sOKe9A1bwBupZJ-c1G6DtHwe8rRc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|154.4|0.49|6.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.11.052|sOM5a45Dj78cJR0BQzgLof4RMtD2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.091|232.0|0.728|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00055|sONfFb7sQ4yRGq19oAD4hKBwpTBg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|157.0|0.51|6.2|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6cc02589g|sOO_eRy6Bu5Xc7I8tNmquFRo7b5m|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.0|0.76|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/C8SE00368H|sOfPl1Nr1aYRXIszlsuZ9m6Vtjyt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.882|219.5|0.625|12.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.02.028|sOrTr6ww8aITsDpNHl30w3hBUlQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|209.4|0.77|17.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|sOt0X87OJ26X4S5IhXKxljgwiRXf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|187.0|0.569|10.5|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800056|sOtBQGVKfQTLd2qJV3A3DO5R0N-O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|220.5|0.7609999999999999|15.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|sP59aCdpD-rhn0S38QvvwVTI3PNB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|0.0|0.318|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|sP7qNODTZrNPWgFXsThCo15V8F3A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|160.0|0.688|9.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b02378|sPWUjSeW1eq-kvZ8QlGh2h3CC5OA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|142.0|0.6|7.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/cm502710r|sPWuwsflQNy6zXJk0SdGihzymSPy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|35.5|0.243|0.88|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.102|sPXfJT37NciVI7EEyqsva-CxA6Je|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.7|0.7340000000000001|15.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|sPa19Og_uXp0vxg8_qhqUT558lsO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.63|75.7|0.435|2.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|sQ1-IzFNQCSpaVBFkIq0xD8bYpsh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|119.0|0.68|7.4|['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'OTS']|bulk|https://doi.org/10.1002/admi.201500837|sQ2A2kGlD0ncTs5Mpw0tuCloH7j6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'OTS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.017|8.0|0.51|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI', 'TiO2', 'Al']|['PEDOT:PSS']|['diPDI', 'TiO2']|bulk|https://doi.org/10.1039/c5ra27620a|sQ3LWsy_iFubmSjX7JZU3HvaftzX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|164.5|0.32|4.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Graphene']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.iecr.6b04768|sQGU2VLbtPIlM6HIiPIBEytYO8if|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Graphene']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8490000000000001|30.0|0.3|0.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|sQ_VdbJs8BlTF7yrqQ-l4_gz_uBr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|184.1|0.563|9.43|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-018-36685-6|sQaWuTRSpquIw98FMxgIhrNE11ul|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|218.6|0.723|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.048|sQfSF8fXvaOdcPCFeU-UZRY50Kml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|188.6|0.575|9.22|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b10022|sQlSpPkcccoJl8m4uvtG7LjX4Y8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|205.4|0.7240000000000001|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12305|sQnWBm1EzUa3Ho1hKAdh37SS-UtK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.138|236.7|0.77|20.55|['A.R.C.', 'SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202003460|sQzg6FgFc7IrqTp_PL-bjj9RTjrP|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.02|189.6|0.648|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|sQzpxep0chk2HOYTgbYAOxKdWNnx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|229.7|0.71|17.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701056|sRCQ2f51IJMjINwFkuxGILGRy9M4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.13|229.4|0.7|18.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.068|sRJnBAkJGDB0PneEIlnzyPHr7vDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.1|0.6990000000000001|15.72|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|sRRzlUFW1aLwCil1T4kMOudC6lh4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|208.8|0.7|12.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep29567|sRTlQwIjafO_STJdAAlKkstL_Q8o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|207.0|0.701|15.49|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.09.064|sRVTumJglAYzT1mD5WxsaE52NJ1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9|||||17.05|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|sRc5ZetM5lDpIDJHiiNkFdE8QB4f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.72|199.8|0.68|9.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/ab2309|sRpKFqxtE4N_LXwX09Gr39w1TGDO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|0.1|0.15|0.001|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCPDT-PDI', 'Al']|['PEDOT:PSS']|['PCPDT-PDI']|bulk|https://doi.org/10.1021/acsami.7b00902|sRrYIYe-4PKR2619dYffBp4GZj52|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCPDT-PDI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|143.2|0.64|7.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|sS4XF0UvP4ntjgnfhKKccGprxat-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.5|0.807|16.24|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|sS4xbq5Ssi0UMpHzACGuVKIZWLjS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br25Cs25F43I7Pb25|Cs25Pb25I7Br25F43|CsPbBrF1.72I0.28|1.850000197267612|1.02|136.9|0.68|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|sS6zQe7sFx9KF50gJiEZU4z3o6zU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrF1.72I0.28. -C95Cs5H491I300N174Pb50Sn50|Cs5Pb50Sn50C95N174H491I300|Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3||1.03|234.6|0.652|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9qm00311h|sS7GCvRV69j_Qt4pHlCVQ6kDRhM6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|140.0|0.64|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201900481|sSEY3aMoe1r_nnc34RB09v44x3P2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']|['MoOx', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04625|sSEdMImJvDvzzXWoeXz4WBaJgLsc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3||0.5|98.9|0.68|3.35|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/NENERGY.2016.178|sSRDVXIfk-yhAhvql2bDCse5Xjyi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.031|219.6|0.743|16.83|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']|['ACR-TPA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|sSV4zRAKgtjEmiF-INkdO7_hOrgl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H85I51N34Pb20|Cs3Pb20C17N34H85I51Br9|Cs0.15FA0.85PbBr0.45I2.55|1.4800001578140891|1.011|218.8|0.795|17.42|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b01180|sSYknIRyHfNl3E4ItPaT45vVsnCB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.45I2.55. -Br45C85Cs15H438I255N157Pb100|Cs15Pb100C85N157H438I255Br45|Cs0.15FA0.72MA0.13PbBr0.45I2.55||1.087|205.4|0.7509999999999999|16.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.09.039|sSbsVexnfVzdEdrTawd8DeThX90I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.72MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.034|217.6|0.76|17.05|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|sSeSPHuujN9MTnZu7qoXF7n5iIHg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|227.8|0.78|17.59|['SLG', 'ITO', 'NiO-np', 'TPI-4MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'TPI-4MEO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|sSsVSgrilBTtwuHdLA6uYCDJhPgf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'TPI-4MEO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.718|160.0|0.412|4.8|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO']|bulk|https://doi.org/10.1002/cphc.201301215|sT02qJtiqqRx4ynN34J_xeRW-qAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|105.0|0.62|7.1|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']|['NiO-c', 'DEA']|['C60', 'PN4N']|bulk|https://doi.org/10.1002/aenm.201602333|sTBDUCogubqyxmIjzctMRDo7zde7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.9|105.43|0.733|6.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|sTCcFAEwyUXcUXl6N2qJwvOMaCS0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.6|0.64|13.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201502610|sTEfqH8C8R5ovOrsbRf99RQVQ0rJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C21Cl2H52I19N7Pb6|Pb6C21N7H52I19Cl2|(CPEA)2MA5Pb6I19||1.024|172.7|0.51|9.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.solener.2019.12.021|sTExVhed2W2EdDiW6IYaTFNs3UG0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CPEA)2MA5Pb6I19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.5|0.7509999999999999|14.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11071073|sTFmB7GdRW-kX2bFX-v09smLeoyl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|227.0|0.753|18.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801208|sTKJoRDMyYrsx0Pk46APw8pT_nkk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|199.8|0.64|10.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b12463|sTLVcodzzi7tnL0NQuSiU9I_VljJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.997|198.6|0.708|14.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ee02272g|sTM3p-pctA0RfyjCGqQQ0RDGdZl3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.131|219.4|0.746|18.5|['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'CPTA']|bulk|https://doi.org/10.1002/adfm.201706317|sTPSDlK1vsTDQFfgluIQNbgdSdjD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'CPTA; PbI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|122.3|0.662|7.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2']|bulk|https://doi.org/10.1039/c5nr08344c|sTa4A8riphhfRyNspot8Fa2ohnM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH23I15N5Pb5|CsPb5C4N5H23I15|Cs0.2FA0.2MA0.6PbI3|1.6200001727424491|1.09|190.0|0.69|15.5|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c8ta03953d|sTcNYgXbgNmgWg0UNh-OLA8iV9TK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.2MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.893|165.76|0.748|11.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||sTkzG0R7QpO5W9q0pslCoEuNPasn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|100.0|0.7|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b00050|sTmwRsf8efK5tp8_6Yl6zD5je8YH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.1|0.652|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|sTpdLAY8OPhfR9KQ0CliYcQtbqp8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|187.81|0.74|14.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|sU1xMjEkv5xDDrbZ5EDe4IFDTwYl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|218.9|0.767|14.63|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1117/12.2506443|sU2Ycd_7PlAroT-7d9w1nk0Imcb8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.91|219.5|0.723|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']|['PEDOT:PSS']|['pBTTz']|bulk|https://doi.org/10.1002/smll.201803339|sUIDgfobMl8uyn8r7VbWJypI7Yzt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|170.7|0.66|10.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|sUKck8x2Ycn6COl9pFmRfph3ZrDo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|70.0|0.53|3.3|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201700194|sUOOpDGG9AV4SfDpEdwf0UYHRin0|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.950000207930726|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|sUXDz1PEl-cq_DSUaTovBZ6mrg0A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|190.1|0.68|12.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|sUeQ5tBlccSfDf_B7laSZQvQpOOh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|229.9|0.73|18.39|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.009|sUpZXkRDRoZRAo65MaeUnQGRLFI0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.06|214.3|0.662|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|sUqLVGDRFfAGnJmbuRXFg-eeZIo4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|216.0|0.69|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|sV0DSwZhyjqU2BHmif7KVZv--WnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||19.39|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|sV8DtsZjot1olL1fCuTFhnq0UC3E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.26|73.0|0.67|6.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|sVF2P73Aayd_Iwqhtn9HjCL7eKCO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.02|124.5|0.789|10.11|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|sVGTUCa5IFr8WbSURbFQSNoIBl4_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|144.4|0.78|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1007/s10118-017-1891-z|sVLSNCO_-9bfoml1eh6NGC84qpsC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|221.6|0.722|17.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705409|sVP10AJPm4sX3BRoSLtSOWDI1ZF2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|9.4|0.654|10.99|['SLG', 'ITO', 'ZnO-c', 'APTES-SAM', 'Perovskite', 'PCBM-60', 'Au']|['PTAA']|['ZnO-c', 'APTES-SAM']|bulk|https://doi.org/10.1002/solr.201800240|sVTKGnxKYaE5Tf35_DbKMccyiFDz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'APTES-SAM', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.81|143.0|0.72|8.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PDMS']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|sVYKTWml_6dqgKq5wvj0pEsjd8MS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.888|166.08|0.615|9.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P3HT', 'MoO3', 'Al']|['PEDOT:PSS']|['P3HT']|bulk|https://doi.org/10.1016/j.synthmet.2019.02.009|sVbEJInoKCQW564Y2OAM9ayn7PHY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P3HT', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||0.982|195.5|0.618|12.52|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.3389/fphy.2018.00099|sVd4sLvBDcKsADk0p3HS8ppM1Nap|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.0|0.607|12.1|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|sVeQSI2z2YxnWVPBBUC7IaNFqwhd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.978|221.1|0.6509999999999999|14.07|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b09153|sVfFHYzX2imcNDI2guCNE3ynv-uz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|160.0|0.68|11.5|['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']|['DFTAB']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|sVfpsUZOIwSfvlPEf4ld3Sx4ctgK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|230.9|0.67|14.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']|['PFB']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.025|sVoh_dHqLQZ-223xkzs2DaznFpUp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PFB', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|234.5|0.7979999999999999|21.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2020.01.004|sVpYRyy3G8wPwbFMhi7U7UD1TXsJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.301|104.2|0.337|1.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05938d|sVyNRWr8LYpHwv0arToYCEv1C3IB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|133.0|0.62|7.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137418|sW2B4irAWOwNCPKCe63b2Kvjk4ul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|117.3|0.48|3.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60', 'bis-C60']|bulk|https://doi.org/10.1039/c6ra03485c|sW5fpGHz1-yyeDGpOd3RlWHX1xoS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.14|232.1|0.76|18.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|sW6KMaInf1GTvI0LLpatgxqmsch5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.8|0.72|16.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00217|sW7-jjY4enQ9VW0liPiI9kaUXplg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2|110.0|0.71|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.7b01067|sW8XyzyAb3DLihxE9Rjq9wtjonh4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.73|115.0|0.5|4.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c4ra13212b|sWDh277yDLh8aDKqgONqBW5qwnNE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|232.4|0.71|17.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801509|sWPS9IR1hNoxla68WTSWJMSX23uT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.15|217.0|0.7879999999999999|19.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201802595|sWRwwBliVSe8LG3H-H3fCph-Y-Sr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.051|211.0|0.644|14.27|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']|['CZTS']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03030a|sWSppuyyN73BLdCOa8kKwQdeDpop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'CZTS', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.025|182.3|0.782|14.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PhCOOH']|bulk|https://doi.org/10.1039/c6ra16839f|sWU8-7pr5mA9vQuWOmrDRkOM6ibx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PhCOOH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|181.9|0.758|15.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|sW_AlpyKeIkM8bu8ZeNJgI4ydAzK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.193|140.6|0.721|12.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c08006|sW_JxlzSIJpe70ZuL7TpCCoQaESx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon Black', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/srep30759|sW_soGNAVmJZam1_l_jvYBkRioQe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5|1.6300001738087604|1.035|222.0|0.64|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.07.046|sWaQ2cFKpHKpuFnRB_tjmFU9zNB8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.9|0.74|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15310|sWcj6sLY42uGeIYZZkpthrQiVk-_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|224.2|0.75|16.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2018.12.010|sWfHySu5tglHxv6ikNYsuEVlS_q8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.093|218.4|0.7|16.77|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-3EtCz', 'MoOx', 'Al']|['EHCz-2EtCz']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|sWnbfWIeN9G429MbJieiXOpZIwyb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-3EtCz', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|165.0|0.6809999999999999|4.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-np', 'Ag']|['NiO-c']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201600619|sWrZTj1jfcd0QAvF2eH4xaHHSezH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'SnO2-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6800001791403176|1.209|202.4|0.804|19.67||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|sWtnAYCHK0hd-yO3E2gsWIA2rEop|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|235.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900397|sX3c8GXf0zjg1uMXMyk-6M3QU_hU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|30.5|0.426|0.65|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02562|sX8vjsLehTDRJeC7J7LnEF47n0Wo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I10N6Pb3|Pb3C4N6H24I10|GUMA3Pb3I10||1.1|193.0|0.67|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1002/adma.201903848|sXBPdOyOSFE3UowFBmpXIAZ6pfdU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|147.0|0.65|8.8|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/cssc.201600051|sXEWeRWCLWOA9sQQjlA8vDa85F2z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.21|72.30000000000001|0.7190000000000001|5.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000008|sXPg12VJtMQWHdkXR0VgIJOL6tAg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|36.9|0.69|2.84|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']|['NiO-c']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.6b00327|sXT6QtEJ7gkmo5tkg8jlq4P2tO1n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Ag4Bi5I19|Ag4Bi5I19|Ag4Bi5I19||0.62|16.299999999999997|0.41|0.42|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matdes.2017.12.036|sXn9D0Tsdn9eimeMUVEaUirKS00-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Ag4Bi5I19. -C22H68I16N6Pb5|Pb5C22N6H68I16|MA2PA4Pb5I16|1.670000178074006|1.12|179.8|0.477|9.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.8b01153|sXuZZv0vCR0jR0sVH_AYuzI4Osh_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA4Pb5I16. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.065|198.82|0.767|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b00980|sXzHiyKVw3SqV-a-mfivL7w8ZVF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.93|177.8|0.629|10.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.6b02583|sYArT2ZWdD-U0-W6PzVhI5vaKb6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.380000147150975|0.283|88.69999999999999|0.5489999999999999|1.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|sYVNajiI_CRlcVMFyWjWPBlxmfjw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C10H60I21N10Pb4Sn6|Pb4Sn6C10N10H60I21Br9|MAPb0.4Sn0.6Br0.9I2.1|1.2500001332889268|0.76|235.3|0.65|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|sYjEhXX81I13bfW5qJXg9dq3-M4p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|164.3|0.728|11.12|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8nr00898a|sYq8CRGrFxol94YDuaqmh4PHTSlQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|175.0|0.69|11.8|['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']|['DFTAB']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|sYvHUUcDu57KXeXx91XvadeAH7TM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFTAB', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.16|228.2|0.6659999999999999|17.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|sZ1chk-BWoJyqHp_Ma3TvKixboKq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|207.9|0.65|13.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adma.201502610|sZNnUPRmGZJV94NWL7YuZ8A0Oc4v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|111.8|0.613|6.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00847|sZP_IPdgfYEguprJJJwooifepCE2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19Sr|SrPb19C20N20H120I60|MAPb0.95Sr0.05I3||0.77|164.0|0.626|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|sZXq66UX6_SS6Vwdk8QbJ-rggHSo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Sr0.05I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.0|0.755|17.5|['SLG', 'FTO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['c-OTPD']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms8747|sZeJGdxzKHx47a3DBp3iKzgXWJnD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'c-OTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||0.98|96.7|0.58|5.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1039/c8ta09146c|sZhbSZ5Csho-0TOYYMREp_6cYY61|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|229.5|0.745|18.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|sZk4-w_WyLtwf8ELZ8-fZMK7FjKT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.1|0.7170000000000001|17.5|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|sZt_smgQPQMV_iMSDPDJaJs6ppqW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.34|156.8|0.7879999999999999|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-020-18015-5|sZw43Yy83K1F8kM2joWIn6hROj2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.1I2.9||1.092|237.4|0.7759999999999999|20.1|['SLG', 'ITO', 'Au@TiO2-nw; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au@TiO2-nw; TiO2-np']|bulk|https://doi.org/10.1039/c7ta02937c|s_-6B_xjeKjD-sAGBWXCHfh5AsNm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Au@TiO2-nw; TiO2-np', 'Perovskte', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|231.7|0.695|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|s_4O0KqMQJedG3uLzC9_azGJOdUf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|87.0|0.34|1.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|s_AWe5YcqmhWwTVN6EKi6Rvo-Q8p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.570000167410892|1.095|218.2|0.725|17.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b06616|s_HpqPbVepawvkxeGWeDuynaSl2X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -Br54C95Cs5H542I246N123Pb100|Cs5Pb100C95N123H542I246Br54|Cs0.05FA0.28MA0.67PbBr0.54I2.46||0.98|68.8|0.8109999999999999|5.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b01611|s_WAIs28LOm050ZvdxH1NURw33_e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.28MA0.67PbBr0.54I2.46. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.09|208.1|0.775|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01271|s_WZXrcJThBEbRaSqSanlme0oN9A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|201.6|0.655|14.43|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|s_eyGcYyKsmmGcje6LMQocwPdGww|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|158.8|0.63|9.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1039/c3nr04857h|s_htIG76N3FH6U7eaq7Xy5eO4Tps|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.0|0.78|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-F', 'Al']|['PEDOT:PSS']|['PCBM-60', 'EFGnPs-F']|bulk|https://doi.org/10.1021/acs.nanolett.7b03225|s_j6eOP-rnmhu73vS0MGUs7OFoFu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-F', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6200001727424491|1.1|214.8|0.69|16.36|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ta04128d|s_k6_4xy04k-UiKMKfk7g-aRtZdb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|197.5|0.6779999999999999|13.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700120|s_p241uWT1k9vDxaaBeGvAnHlGJ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|98.3|0.61|6.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acsami.7b06638|s_rBrX214Vlq7_CZCjgn3ITAc0tv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -C109Cl6H612I300N100Pb100|Pb100C109N100H612I300Cl6|(CIEA)0.03MA0.97PbI3|1.6000001706098266|1.07|223.3|0.767|18.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acsenergylett.9b01975|s_wb3CvrH8txwFO4hdkVweQXxjlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (CIEA)0.03MA0.97PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|149.3|0.55|7.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|saH4ZTkCVeNE5wHqOk8Wld-WonrU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.013||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|saOlWaG6Eo0LPtaJq8YXMu2Y3RX4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.99|221.5|0.69|15.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.07.029|saeF8JaPHucvFTUH8iEcXBEoTEbI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.7|0.64|13.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']|['JY7']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|saj1Z8UQvISWI86iAJxxMYy6INn5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|181.5|0.7340000000000001|12.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|saoycXgOHDlvM5zwg4QsJ9PVSKaz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.96|74.80000000000001|0.477|3.45|['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['In2S3']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|sav3ULnTIuh3dfdT9aVO7fgsZe2J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2S3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|201.0|0.58|10.1|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|sb3RncsUjIWAZCUPZi3qk7w1Hv76|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|180.0|0.74|16.0|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|sb8l5YLt3DerbgDC6g78s7F1oxNK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|170.0|0.68|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-c']|bulk|https://doi.org/10.1002/cssc.201501273|sbBje-tvmCua0dj6kNXr165xQMlT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.8|0.69|16.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.024|sbHOWpZrrgrrz7X_pgIXjUriz21D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|189.0|0.5|9.6|['SLG', 'ITO', 'C60', 'Perovskite', 'H1', 'Au']|['H1']|['C60']|bulk|https://doi.org/10.1021/acsaem.7b00208|sbIC92NvW7hyVYJfBJZ-PrEXTXim|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'H1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.107|210.8|0.705|16.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|sbTwy0J4pLbT4acptps661RmgaBt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3||1.21|147.10000000000002|0.696|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1016/j.nanoen.2019.104130|sbdaSBQxi8Z0zNTtrUQDIdeGqOmY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|207.1|0.77|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|sbeYdTOJD-Gtwymjvp5O172e21np|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.0|0.758|19.0|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['CuOx']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.044|sbi8b1KFC3hODFe3PhLTnGvur63x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.3|0.604|12.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano8090701|sbtP6MqI6B7wG8b9ZYD7IIEFhHRu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br45C78Cs22H390I255N156Pb100|Cs22Pb100C78N156H390I255Br45|Cs0.22FA0.78PbBr0.45I2.55|1.6800001791403176|1.204|207.2|0.817|20.39||['PCBM-60', 'BCP']|['NiO', 'VNPB']|bulk|https://doi.org/10.1002/inf2.12307|sbueAkCNWznXTdcY3QdZFIJy6cLu|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.22FA0.78PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.115|190.0|0.601|12.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|sc7DqDbaMGcRwQkyGaDqzRb3BKtP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.86|142.0|0.6|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502367k|scAqZBT-Ah7D7qrYVAjUIE_VJbWm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.017|5.6000000000000005|0.53|5.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sb2S3', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp', 'Sb2S3']|bulk|https://doi.org/10.1021/jp500449z|scBo6cM5hQb6uvtI2H_bjJPl02pE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sb2S3', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|||||1.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|scNfOCaSzGie3bf0kBZ2l6xedcPY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|187.0|0.6|9.3|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1021/acsaem.9b00547|scO4duZpc_4m_0QaKWyLKwM3SIZn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|203.0|0.779|17.1|['SLG', 'ITO', 'TiO2-c', 'PBCM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PBCM-60']|bulk|https://doi.org/10.1039/c6ta08799j|scbVyUy3QQ6DfQb6jsSO9zqaRArq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PBCM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|165.39999999999998|0.47|6.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.03.037|scf7sXJ3Qg7utMUY0ajavTgLOJpA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.013|229.64|0.675|15.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.7b01211|sciRDH-t4xUpTh66m1q0p6g3LzxD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|193.3|0.63|10.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.03.029|scsyTTU9PYJVjqm4AiXYLO1BWLbT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|218.3|0.63|12.32|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|sctmp0bQ3pBkTlEH2XSOUyOu-BCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|228.4|0.617|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s10854-020-02913-x|scvqONYTYkYhMk_CO90ita3nva6G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.05|192.2|0.71|14.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|sd-ZNpyZP8yJuLzsrORHL-umynoZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.79|204.8|0.66|10.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|sd3_zZ_cEvG29UXxXHhnIaNy6Ys6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CClH6NPb|PbCNH6Br2Cl|MAPbBr2Cl|2.520000268710477|1.31|25.0|0.72|2.27||['Spiro-MeOTAD']|['ITO', 'LT-TiO2:Cl']|not processed|https://doi.org/10.1002/solr.202000718|sd7wOebJU0gVvXDkZlutmuwLq8pJ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr2Cl. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|184.0|0.6459999999999999|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|sdLc5J03SN8_xbvYvllGRjCH6H0r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|230.75|0.794|20.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']|['PTAA']|['TTC', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0282-0|sdW4B5-_rgd7e9laveahcW_9qqAy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C396Cs4H1113I249N159Pb100|Cs4Pb100C396N159H1113I249Br51|(TBA)0.2Cs0.04FA0.63MA0.13PbBr0.51I2.49||1.21|231.8|0.6859999999999999|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|sdXeGKB30jeFBkZSR0LI7QJJ5C8X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.2Cs0.04FA0.63MA0.13PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|204.4|0.46|7.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9pp00071b|sdXzCNOo4QGGnHi1WdRwuPRSvcFt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.78|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c6ta09174a|sdhCGOp0f5dE6Wyxas1RPy00bblq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|178.70000000000002|0.68|11.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01815|sdmvI6gyaVNm9lEtcSxmGXjGeA0R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.04|225.0|0.7|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-020-04896-w|sdwyMeWw1m1xD6fHqbm8IkgBKUsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C17Cs3H86I51N35Pb20|Cs3Pb20C17N35H86I51Br9|Cs0.15FA0.8GA0.05PbBr0.45I2.55|1.6250001732756048|1.229|221.9|0.782|20.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201905739|sdxJ-T9eQt03-uD95f71ZVRQqX3p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.8GA0.05PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|216.1|0.79|18.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c9ta08995k|sdyNI2_leNs4ujlWP72JdVvQUW7l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.05|219.6|0.7020000000000001|16.21|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA', 'Au']|['CZ-STA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|se6DHO0RyqqCb4F3ejedXvfDqk9W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|177.3|0.53|8.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|se7qi-Z6lm5kTQzmHboVGMLS3t-W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.083|203.25|0.739|16.27|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||seB-9x5zc3QMXXxVHpwfyBGklETQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|73.8|0.64|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/0256-307X/30/12/128402|seGzMWWID7JmSbY3JjaNzLbpYwpV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|228.6|0.62|13.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|seHbrnClKiIVeGmlr7bgfP-NApF6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|65.1|0.621|2.95|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|seONrjKF6yUwT2aWRK4PTmU2vywn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|122.8|0.504|5.63|['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']|['Co0.39Cu0.61O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|sePLzrH32IOeUQ3V8Zh7naApu7Ii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.023|217.5|0.607|13.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.egypro.2017.03.391|seQ_dey_H2q-c1pZAokR_4ufUPkB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C4CsH20I3N8Pb5|CsPb5C4N8H20I3Br2|Cs0.2FA0.8PbBr0.4I0.6|1.7900001908697432|1.33|180.6|0.842|20.2||['NiO', 'Me-4PACz']|['PDA', 'C60', 'SnO2']|not processed|https://doi.org/10.1038/s41586-022-05541-z|seX0DUc-BwoQJAZZIyihv11e8IZh|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.4I0.6. -Br66C95Cs5H485I234N180Pb100|Cs5Pb100C95N180H485I234Br66|Cs0.05FA0.85MA0.1PbBr0.66I2.34||1.143|225.7|0.76|19.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201805085|seXa3Bc8xEZn4tDDZe_WBUH56MEj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.1PbBr0.66I2.34. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|204.6|0.73|15.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|se_GOWiqztfnCZiYnB_ikGB0J3rH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C29H121I60N37Sn20|Sn20C29N37H121I60|BA0.15FA0.85SnI3||0.45|172.0|0.672|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ee00956b|serNezNbUGFRIYs_QODZhoLrlvfN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|163.0|0.43|6.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|setzTRusIl-sUN7XYHWy1XEvOgEA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C85Cs15H425I288N170Pb100|Cs15Pb100C85N170H425I288Br12|Cs0.15FA0.85PbBr0.12I2.88|1.6000001706098266|1.129|223.9|0.792|20.0|['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuGaO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.042|sfDoURcNKTSQhdDi8vtCW4uPIH1T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'CuGaO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.12I2.88. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.192|140.7|0.675|11.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c08006|sfFFYJmiHrcH2gK8FjU-LC_UJz_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892||||13.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|sfN8n4j618bNMdXNqErRsOA-CpKM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.28|153.6|0.76|14.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|sfb0oaXOLHmgBdnmV1DxD6kTyg7s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.766|192.36|0.609|8.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||sfjC79byKznFJJsDjqOKnqPTsj8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.813|54.84|0.738|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|sg1YpCXWXCI7C6_c5OgxwB9SxmTx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -CsI3Pb|CsPbI3|CsPbI3|1.7200001834055632|0.97|174.0|0.56|9.1|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201605290|sgEP5PB_Jc4ONlePfcgrUQasSNb5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|224.3|0.7709999999999999|18.86|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['P3CT-N']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9ta06439g|sgGtrzfKZVmHuBuVhIqwbOrjX61z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|228.6|0.768|16.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700214|sgJ0vFhlCz_RjcllW3XL-Rsds3bv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C55H207I65N28Pb20|Pb20C55N28H207I65|BA2FA0.6MA2.4Pb4I13||1.093|120.1|0.721|9.47|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/solr.201800357|sgJ7A8lZOlPbe088cfWpRIc_a63X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2FA0.6MA2.4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|164.0|0.67|10.22|['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuCo2O4']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acssuschemeng.9b03776|sgJaSBF0iQcnjObWEiiAlR5ug7de|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCo2O4', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||210.0||14.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1126/science.aaa0472|sgMSRGTMLAlwca8PgPvYdYC0PvUZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.8|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|sgNjs7xUDJUWRLwPu5TknyMsqmfh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.07|223.0|0.64|15.3|['SLG', 'ITO', 'NiO-c', 'Mercaptoethylamine chlorate', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['NiO-c', 'Mercaptoethylamine chlorate']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.017|sgQDsRq2RUxeugO1yZZ6m6BoRWBc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Mercaptoethylamine chlorate', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.6|0.59|10.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2017.11.058|sgbykHvSFEKUUVlZfM4uSbrOuyN4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.022|8.86|0.628|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b17431|sgk6myO4-CEEsBVRLPjg6VU4mj9d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3000001386204838|0.91|202.0|0.69|12.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/ente.201700422|sgxvkcN17BmwsgofpLy_YXIWk70Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.6|0.74|16.21|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201901026|shCOxogWmRRqc2sqrbV7WwAl3LNE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['WO3-nw@PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|shSIBGCf-PoCMKQzFaRnfN0CmfT7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3-nw@PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.3|0.69|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00894e|shabeZMBR4QLE33uNbrvstQgomd2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4ClH20I6N8Pb4|Pb4C4N8H20I6Br5Cl|FAPbBr1.25Cl0.25I1.5||0.733|63.2|0.476|2.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|shf0oxdJVRPZVT4AzK3kafvyjN3E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr1.25Cl0.25I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|179.8|0.6709999999999999|11.82|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solmat.2016.03.035|si5iK4EdjxgBGpOqgOlWMvzQ24YZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|195.2|0.6|11.16|['SLG', 'FTO', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanofibers']|bulk|https://doi.org/10.1039/c5nr07395b|siB14y6vcT0-YBoBC4XNU2U2pegO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|1.04|99.0|0.51|5.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ra01199k|siDxt-FMVoLCFX5SmGQXledHdOBC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|0.92|0.162|0.0|['SLG', 'ITO', 'Ca', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca']|bulk|https://doi.org/10.1002/adma.201601505|siM6A63J_VvZTx4fu4qVeeAeojli|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.38|76.39999999999999|0.31|0.96|['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']|['OMeTP-SAM']|['CITP-SAM']|bulk|https://doi.org/10.1002/adfm.201805098|siMpRiFsQMFiN06lOy7_lP-HYfsH|a perovskite solar cell with the following device stack: ['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|139.1|0.485|6.12|['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr04585a|siU1d6TOVD21tHS1C_GG6n7kkWfp|a perovskite solar cell with the following device stack: ['SLG', 'ZnO', 'ITO', 'Ag-nw', 'ITO', 'ZnO-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7700001887371206|1.25|129.1|0.76|12.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1039/c9ta07143a|sihgrPFcZwYXanJpWxDH5ZnE4rct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.082|200.2|0.731|15.8|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60', 'C60; Phlm']|bulk|https://doi.org/10.1039/C6EE02100J|sij2diB4w5cVPX4Qs91d3HKGZTpa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H29I12N6Pb5|Pb5C5N6H29I12Br3|FA0.2MA0.8PbBr0.6I2.4||0.021|10.0|0.71|14.9|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/cnma.201900133|sikSo2AMhrPKfL8AyIp8v09xVL3L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.08|223.8|0.75|17.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8cc02329h|sipxl3mgob3BCk_SYZAp_F8La4v_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.985|198.0|0.736|14.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|sjDEUTvjfd77qCahsrsc4yaQve4_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|191.7|0.6970000000000001|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|sjHcgBGeBIiYnHmyZNBjwUzuJ4mc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|181.0|0.76|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|sjUKRm4WpzDqC7LW-Qh0i0xr8uUK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|212.0|0.67|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b09822|sjbNNF5tiysPWOrtRJXxNigJ2Yfv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.036|231.29|0.69|16.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.11.124|sjrAKs3dI8W9Q-KQui3wBmUUy4sg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|204.5|0.688|15.2|['SLG', 'ITO', 'C60; Phlm', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm']|bulk|https://doi.org/10.1039/C6EE02100J|sjsea6NoueEjQ2QmhyWQ-YWTuCfI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.0|0.8109999999999999|19.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']|['NiO-c']|['TPA-3CN', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b15130|sjvcgv_eQULh7BIH9Ivul4e8apJa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TPA-3CN', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.72|143.0|0.303|3.51|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|sk0f73aedMxZEQ5QLmq7gDviDfyp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.15|182.7|0.5479999999999999|11.51|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17141|sk3HzV2Q8bJN9Gxs5QCvetdOkQ8U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.07|221.0|0.772|18.3|['PDMS', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|skKrsaP82TCLAwV6fNeqZ3xzc3WD|a perovskite solar cell with the following device stack: ['PDMS', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.034|222.9|0.67|14.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.006|skLIUgJyFR8_pCp5wVPx9JjgmBCO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.7|0.7559999999999999|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04944c|skMC4pYyKJ2efjL8DLCa5KvQwNQA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|218.6|0.752|18.15|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|skUBLfv7qS7Rs1b3SId8hoPl9JsS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6659999999999999|67.30000000000001|0.291|1.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151723|skcSzN_J-tKrVGFO7WJubmIYGuoM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|205.0|0.58|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7498/aps.64.038403|skifAXqOuggmi3jzu9hqPo3OMrVS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|229.1|0.7979999999999999|20.0|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201808855|skk3S89jo1g8DFcRtuaMm16v4IDE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.48|29.0|0.37|0.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|skkpk16yTKCk522HDBdGIKGg1w7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4800001578140891|0.878|142.0|0.72|8.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/cryst7080252|skvHLLVWfczFkqFjQTyvSK42flFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.017|239.0|0.81|18.78|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PDMS', 'CuSCN', 'Au']|['PDMS', 'CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b16194|sl0vrmi6ZbG3sECCequEM2g4j9Fm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PDMS', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|199.0|0.69|13.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/ente.201900878|sl3r3s7pjUXvuzSjysrcJ5mT-XQT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.7|0.79|18.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsnano.7b06413|slEOsBUKHRgq1bCZj7Aba8Xf3fE8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H489I249N176Pb100|Cs5Pb100C95N176H489I249Br51|Cs0.05FA0.81MA0.14PbBr0.51I2.49||1.12|232.6|0.76|19.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800177|slGZEiZbp_SeSoxHfAX8w2D_Hky7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|201.4|0.52|9.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09797|slLInkI2iHR8B0lmd5GisaDYNuvn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|225.5|0.752|17.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801888|slMS5ElxLJXor8fxhoOOWszKW0ev|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|218.0|0.65|13.2|['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs']|['none']|['C60']|bulk|https://doi.org/10.1039/c7ta09174e|sliEyHFSpFJoyLEjz134FcwRZBeZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'SWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|198.3|0.66|14.19|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|slpvP_TZMkaL01jRhlz6KtetH7dp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.12|212.2|0.7|16.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|sm5CLY3B_lqymc3UXVr5Ii6aFDnl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.13|227.0|0.74|19.24|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|sm8wubIZTgrBirT8WdXuBDrUol0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C59CsH231I80N32Pb25|CsPb25C59N32H231I80|BA2Cs0.2FA0.6MA3.2Pb5I16||1.11|201.9|0.737|16.52|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|not processed|https://doi.org/10.1002/aenm.202001832|smCfaIzCApV_Z524oT_rf0mDYIhJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.2FA0.6MA3.2Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.0|0.74|16.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.11.010|smFlKI1r7_zuw7zXnzXPOUYdwEUF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.28|74.1|0.69|6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBrI2-QDs', 'Carbon']|['CsSnBrI2-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|smGfn2swMVE6_Idi6Zr1cAndU5D0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBrI2-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|166.0|0.516|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|smKk-RDMGwW7IbcQzUTLH9N0-GpZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|189.0|0.69|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|smdlmijDW7I6LF9Bb9QpYIrUXkPS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|170.3|0.65|10.01|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.solener.2016.06.044|smr5j0Wt8bQ6LdNBWKA-wQmuDoBH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.97|165.10000000000002|0.488|7.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']|['TT1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|smvZCHU8TlSlJlQXLjuqrwcZGTKH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT1', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|221.0|0.5760000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/7190801|sn1bdNJ2PvjZIUj1wB4HtyV110R2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|80.5|0.69|4.99|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/1.JPE.5.057405|snEQGf7EtYJyGrAre07olPvllQcO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|156.9|0.7|11.02|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['none']|['Carbon']|bulk|https://doi.org/10.1039/c5ta01343g|snEm9LCnAZI49AuOtw4NTLYUOer6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|180.2|0.31|4.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon-nanowalls']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.iecr.6b04768|snLhHbugEKl4aYLSk6T6lFrCm8GE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon-nanowalls']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.8|0.65|13.24|['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1016/j.physb.2019.07.041|snM1ppcFN8HXXVSFtrE-YDj2CXI6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C6CuH6IN|CuC6NH6IBr2|(C6H4NH2)CuBr2I|1.6500001759413832|0.3|24.4|0.42|0.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201901185|snUmU9LO5q4gLa_F1RQnfWtt6Wlo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (C6H4NH2)CuBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|205.6|0.7|13.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.11.030|snXncF05nzxYwWKBUCneZIjGb_WN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|116.0|0.711|7.2|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|snfFMLffu8b4Mri7mYEDXqYyBr-7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|193.5|0.6579999999999999|13.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au-np', 'Spiro-MeOTAD', 'Au']|['Au-np', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta02852h|snh8U9KzPLLkvT84y17F60idqECQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|snjsRNxGIXpkWGjE08J1M4w1Ktvu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.99|217.0|0.75|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00121|snnGG8qjK_6Zmeon51kpsFCo9pkA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.8|0.76|16.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|sntBgnt8Atvj2fuDZDwuyYg5LTCe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|102.8|0.6|5.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|snu21lavBXtcgE2NhhTxiEbj6O_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.3|0.73|15.07|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|snuMS6HfdShRW1zfGlcHJTOBQCMk|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||1.07|193.5|0.69|14.34|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|snyeBF9eGDRZb_8t7er31NDwpvox|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|159.0|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']|['PEDOT:PSS']|['ZnO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06329|so-6vZh5EqPWC29Ht9Cc_Kiefh1G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.0|0.71|13.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|soEVjywwFMH89q_c6MUh5Xi_BZXk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|193.0|0.69|11.7|['Willow glass', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'PDMS Nanocone']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsnano.5b04284|soFTyqRHNFWmsaW9_yJvSWW-3GTJ|a perovskite solar cell with the following device stack: ['Willow glass', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'PDMS Nanocone']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|199.6|0.6779999999999999|14.61|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c6ta04503k|soNbq3KRwnzKzljnpCY6AhpIHAlE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.2|0.618|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.11.183|soRC6MOizd6lKKFoK8CFGlqimZBk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.633000174128654|1.06|196.0|0.736|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00328|soZ0YwgZxthmZFkFHEmQjgi4pMvg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.001|189.4|0.741|13.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-3PA', 'Au']|['mp-SFX-3PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|sob31DLMadC4WXwTmZBwnbtjvFRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-3PA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|180.6|0.777|15.2|['SLG', 'FTO', 'Oxo-Graphene', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['oxo-Graphene']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C6TA03755K|sobfj5BEaFs6EKxle6LcnKxcfsoq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Oxo-Graphene', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|177.5|0.72|13.45|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.12.031|soc3pn2FPFgsaM4DGLQ4p5andY7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I70N166Pb100|Cs17Pb100C83N166H415I70Br30|Cs0.17FA0.83PbBr0.3I0.7|1.7200001834055632|1.171|196.0|0.76|17.36||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/solr.202200134|soxYj7sXI3eRlVsXGf0GP_iP_sBf|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|211.1|0.53|11.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793604718500807|sp-9ayXhKl2yrpgoqbiW5AbyLYhL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.245|127.26|0.629|9.96|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||sp043LBpElO3pFTHhrYYSCXJ4jOl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.7|0.74|15.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|sp16RbgbGadjQMm2LPswyGwkoPEZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.8|0.71|15.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms7142|sp1_QVQuw9TeSMC2JkWcxEB5qIdv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.520000162079335|1.05|228.6|0.61|14.5|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/slct.201802792|spCyb-2fY6DBYcm13XvvH8x50WRY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|177.10000000000002|0.6459999999999999|10.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C8TC02754D|spD99JIBfkx4Ec8Z6f1dvwmI0Z6f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.07|185.8|0.7929999999999999|14.7|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PolyTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201801234|spDvHXGMFUtoustSoJG8Vvbr-_gy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|191.9|0.64|11.05|['SLG', 'ITO', 'CuSCN-3D', 'Perovskite', 'C60', 'Bphen', 'Ag']|['CuSCN-3D']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr01135k|spGZ3RQ_x4OX3BlLhNM9u7NlXe0n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN-3D', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3||1.05|151.1|0.73|10.84|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta06719h|spP8Fu7smId8SGSdiQbW9HnppsN8|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|136.5|0.618|7.79|['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|spU8F5jwqnkSHq_hosFsRdTut11S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H300I150N50Pb49Zn|ZnPb49C50N50H300I150|MAPb0.98Zn0.02I3||1.07|210.0|0.71|15.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.047|spbZ_b1LRYKtjznO04gHD5dXejK8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.98Zn0.02I3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.11|230.6|0.7929999999999999|20.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|spcKN3E-0Z-JpG-kCgLe7OkfXz1R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||1.033|189.7|0.621|12.71|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|spdKQapjlXwIRVjgAv_Qd9KZ1YQt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -C5H30I15N6Pb5|Pb5C5N6H30I15|GU0.1MA0.9PbI3||1.09|225.3|0.777|19.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|spgEUG9nhHFZ_rWAdGfuOK0CAl6i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBB-S-N', 'PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903691|sphq7Gm_8u1Yo_pHI3_W9LIXgmAF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBB-S-N', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|180.0|0.61|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.005|spliTeXu9iCFg_uQCwfy1Bn4ETgc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|191.3|0.63|12.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.027|spmThnZopg7UG6kH-7d2v7qKB7_c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.037|211.1|0.6920000000000001|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.052|spmdvErxkhY4YujXV9yNEZIQ_6Hx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|200.7|0.51|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PABA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PABA-SAM']|bulk|https://doi.org/10.1039/c5ra17129f|sq0txftNc9ufB4Tmosui3HEyA8oX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PABA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.02|214.4|0.7|15.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|sq3WnLSTR8m5IHcaAVjhydfUGfdi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|231.7|0.528|7.6|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.026|sq6zqSXjpBzBbHxrP61n1p4-N8eQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|214.6|0.691|13.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.electacta.2017.07.061|sq9PuXlwVzuD6a_EyEWw0Ck3uzSt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.47|15.0|0.23|0.16|['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Graphite', 'FTO']|['none']|['ZnO-nw']|bulk|https://doi.org/10.4067/S0717-97072015000200017|sqT5OueqY5vQv-fDHEHchZDexFeQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-nw', 'Perovskite', 'Graphite', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|68.0|0.4|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901524|sqVzLJUtUXfK16fprkeW8D3ViTOB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7250001839387192|0.8270000000000001|77.2|0.6|3.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep44603|sqZhezdurgXDIFKCTd0C8NvA_lwd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -Br21C40Cs100H200I129N80Pb50|Cs100Pb50C40N80H200I129Br21|Cs02FA0.8PbBr0.42I2.58|1.5900001695435149|1.069|215.0|0.75|17.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5123400|sqb-4Y90z040nUdx2KeMs0Klobmp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs02FA0.8PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|147.0|0.67|9.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Pyridine', 'Spiro-MeOTAD', 'Au']|['Pyridine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz502694g|sqdI2wEMX6Dh7jpMSlmNm2xHw--K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Pyridine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.8|0.726|16.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2019.04.019|sqwxMcWmDvZI0W-olZRpDBg7FUSR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.12|220.0||19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ee02020a|sqzpU7g2hUBSkzfwnXBwS0UQSifY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|226.2|0.648|15.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|srF6JSCEAYyYciUlv6Ytd-2ksk92|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|200.8|0.568|11.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.206|srIh0JQZaZIhJGy2MEI5tKBh_gYP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|220.1|0.75|17.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|srf2zBhwqh7GT41TxSYczIa1cCRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|196.0|0.52|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793604718500807|srjkkhc9aliJi1FzSeiw-hcrdT4l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BiCH6I9NSb|CBiSbNH6I9|MABiSbI9||0.32|4.4|0.34|0.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1186/s40580-017-0120-3|srpaFekzcRUSSfmxMV81TJQs_VzO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MABiSbI9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|178.79999999999998|0.2239999999999999|3.3|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|srqGEc7pefas8cHtotS-X07ZBFgk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|176.5|0.48|2.28|['SLG', 'ITO', 'H5', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['H5']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b10070|srrC1Z1huNaiqrvXDjIcgr4DO10c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'H5', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|224.3|0.74|14.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta03605h|ss8cwB_xrWIzrtwTWzM-Jrs3Ctqt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.548000165065007|1.02|232.0|0.7240000000000001|17.14|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1002/aenm.202000967|ssB-yRop8iTd10n6_X2j7SXZ7euL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|171.0|0.68|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|ssEMzBnIy0CzyW4kKfoYtYfPgTAi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|ssPmVVRha_52XoBOUDHZ9zfC7od1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.075|223.9|0.758|18.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|ssX1X98s-HcKGXBX01OK3X9eLCFD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.804|158.0|0.46|5.9|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c7ta00975e|ssacFH7-jTS9DRXCp0FJzuVqRHNk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7020000000000001|146.0|0.731|7.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201901284|ssayhEbyRByGoVxLHue_KMJ1v0_V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4||0.96|205.0|0.7|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|sscaITfOWSV7eyx_GYydP1bgK2t6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -Br3CsPb|CsPbBr3|CsPb1.0Br3||0.942|18.36|0.65|1.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1038/nenergy.2016.194|ssiXm8aDRWNDCBpUtGjS5ybuTaAz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|146.1|0.72|9.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|ssmvkkoU77HjFxymoxnxYEb5Yb_5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.13|229.0|0.77|19.86|['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']|['NiO-c']|['ADAHCl', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03131f|ssorfH_T-PbRqSoz_rEcS5eQ16to|a perovskite solar cell with the following device stack: ['CdSeS-QDs', 'SLG', 'ITO', 'NiO-c', 'Perovskite', 'ADAHCl', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.0|0.68|12.6|['PET', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-nw']|bulk|https://doi.org/10.1002/solr.201700194|ssr8U0Pj-qUDPj3VgphToIZF0UMi|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6409999999999999|68.0|0.32|1.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H2', 'Au']|['Porphyrin-H2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800242|ssvTmnUUKBmqP-FhqIzfHu8ppW0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Porphyrin-H2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br204C380Cs20H1957I996N703Pb400|Cs20Pb400C380N703H1957I996Br204|Cs0.05FA0.8075MA0.1425PbBr0.51I2.49||1.1|231.1|0.764|19.38|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']|['Co-Porphyrin']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.9b13278|st0Jo2gZCCwVj35SmMqJKThlhOxj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|214.1|0.75|15.65|['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.054|st9N7HeBmav5XmJUWd0k0K8ppiE2|a perovskite solar cell with the following device stack: ['ITO', 'PEN', 'WOx', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|144.0|0.58|8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.06.104|stBhV9d7ejRB7OG1gxU_uxZafQJQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|1.12|210.0|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|stLiE_zfvzAM6Qq0eU_kKm5Tu4GY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|220.91000000000005|0.7190000000000001|16.27|['SLG', 'FTO', 'TiO2-c', 'SiW11O39-POM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiW11O39-POM']|bulk|https://doi.org/10.1002/cssc.201701027|stQ94JyMNbPPqT_Grhtrnpo5m8OC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiW11O39-POM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|223.4|0.73|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-QA-DPA', 'Ag']|['DPA-QA-DPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11361k|stUPkSHeixPrGrjwFZlTh_CX3hQv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPA-QA-DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|220.0|0.775|19.0|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['Unknown']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.7b01439|stUWrqbGQoHIi5Zs0DUsprCeZRHp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|190.0|0.71|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|stbTgFpmMVD3IcBiYNSYgWCEkfg3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|171.0|0.72|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.018|sthMgBsMG2jPSGw588oCrjmx2Ifd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||0.88|171.17999999999998|0.534|8.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|stiGZC6Zb7ipSDOY_1-Ai_cbxffv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|172.0|0.69|11.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09819c|stp0QTKVu-5nGd7Lu5O35o_Obydb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|34.4|0.51|1.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|su7Q-3x5EVlZ7HCnkpnwa6X9OpbC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.0|0.56|11.0|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-04028-8|suTDICbdD6FNB3cS9rnkLE_I9ONu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|213.9|0.6729999999999999|13.61|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|suWClr_3D8blr0_tgZaK0_N3QFPB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|175.79999999999998|0.664|10.17|['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6641/aae071|suiZ7KEhiGDwyOAar26PiKctBb3h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.2|81.8|0.63|6.21|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|sul79U9ZEn739ZbXmBFqsmvsFl9k|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.84|140.0|0.51|6.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3938/jkps.69.406|sunaTe3rsrHM17j2_QQvYY4kUrV8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776||||11.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1002/adma.201705393|surW11k5Xk_-wngczDaTPFzf4zLG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C100H533I300N167Pb100|Pb100C100N167H533I300|FA0.67MA0.33PbI3|1.5280001629323845|0.971|227.04|0.628|13.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|suvbf5qKUP4i2rIXJzkdvqOzt0Ck|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.67MA0.33PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|221.0|0.64|10.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|sv0Nb99qCtjMw_A1OQ0v_yE8bgRR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.94|215.0|0.747|15.48|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|sv0vexO6QF0JjEvrvk6I2qYZFhzx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|122.8|0.631|7.59|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.11.037|sv6qgYeILAebZ3Q6v1Tim-B6WSrB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|45.0|0.34|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|svEfEogkdC1Wuw71-ZyYRF-MXZG0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.12|232.0|0.79|20.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)']|bulk|https://doi.org/10.1021/acsaem.9b00162|svEfUxhalxri2tjeomgx17bNnqEn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; Poly(N-vinylcarbazole)', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.0|0.67|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|svFmoeMprtwTyPKqghOxxTLczNhy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|125.0|0.55|6.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.10.077|svZfy4M4lu6ThaBC3wY6lJEGJZZM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H476I249N168Pb100|Cs8Pb100C92N168H476I249Br51|Cs0.08FA0.76MA0.16PbBr0.51I2.49||0.767|150.8|0.283|3.27|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3389/fphy.2018.00099|svfRvNMyfcYOYQ6IJ-6OJet5_RGh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|125.4|0.49|6.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3740/MRSK.2018.28.4.235|svk6qfRKCw_Drg7s19VfE3C-t_2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|219.0|0.69|15.2|['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adom.201600819|svoahYCqBQDIvFf4cqr3jU2yogT_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|222.3|0.752|19.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|swPYXPfRBCK1ZU2y4h6JwOtOsa94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br33C100H517I267N183Pb100|Pb100C100N183H517I267Br33|FA0.83MA0.17PbBr0.33I2.67|1.5900001695435149|1.04|244.8|0.76|19.37|['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO4-c', 'ZnSO4-mp']|bulk|https://doi.org/10.1039/c9cc07398a|swVOj2is_7DMFcuZrmejG70XuIEt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO4-c', 'ZnSO4-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.7|0.74|16.01|['SLG', 'ITO', 'NDI-P', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['NDI-P']|bulk|https://doi.org/10.1039/c9cc06345e|sw_kzQyBM1eJaQf0MyZNSh8EwBaj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NDI-P', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ta05309e|swblOj8n94VJG2KnH6I8mXSIJmcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60:PS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.63|81.0|0.22|0.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4984284|swci7B4KAg8TExlWyi9i2uOK10_a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|214.3|0.66|14.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NaYF2@SiO2-np', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'NaYF2@SiO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.8b06606|swjTEcu8xASNEQNQ3k6MgjN8H7Gu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NaYF2@SiO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|169.4|0.616|10.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-14920-w|swke2v9tzW6w0L8nm6Y_VGgkueDf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|221.9|0.672|14.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.tsf.2018.05.052|swww0TIYuNtECFzi9_KApdJ8erFR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|43.4|0.7140000000000001|4.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.03.021|sx-0i78WgHmhtHstDdLUq71t_FGc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|219.6|0.696|15.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|sxGosQxV1lE0ffjMA-F4SkCaKbm4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|240.4|0.7709999999999999|19.82|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00847|sxMcAb677Mlt7-ZLLO6s9FvomPjm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.5|0.728|15.55|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssr.201800505|sxSv0xxdtN30XA3DXlDdOeQ6DvOC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|182.3|0.68|11.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|sxTF8samSVRVFUAsLpp8jXJeS6jp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|162.0|0.691|9.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BAFB', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['BAFB', 'ZnO-np']|bulk|https://doi.org/10.1039/c5nj02957k|sxcdDRLSrH05If3nsKivB9Be6hRV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BAFB', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|126.0|0.502|6.4|['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['VB-MeO-FDPA']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8ta12060a|sxdwxwdPFBAaAmGopWuhkYi60JGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VB-MeO-FDPA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.0|243.0|0.7|17.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.05.078|sxfj5BO0fis5MwbA6oMr8SNKXkqx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|152.0|0.53|7.8|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|sxgWvjaEYMmqVYoJk9NYn4RUGFnZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5760000000000001|83.0|0.307|1.47|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr07758c|sxnpcAlPk8hRukczhBS1ekwFC04s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.591|12.62|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1007/s12274-016-1407-0|sxpRDwRQJ0NWAUBC4NSY3NbjEMwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.023|229.0|0.61|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.030|sy-4a3y3xru4kft1X7kNNGPoRKaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|218.5|0.65|12.55|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|sy8VJZ2MHvT0liQs2zOEUtpoHj3V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.05|247.5|0.7290000000000001|19.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227586|syBKjOUOdr0RyVy5PCdOwUy6T174|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|188.0|0.6|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|syEdzY-7FNzxmvwD63OGIwJ6bUUI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.59|111.6|0.309|2.02|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.07.072|syOh7cQMgpPFPIlmKPKaP7mG9X6t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||1.16|232.8|0.78|19.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201900466|sydY-eoBmRBdLG3IcN7F-IvrSOUS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.8|0.745|14.33|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201802323|syiiDkR6QJWILq84CvoLBwNIj1TA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.92|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|syj8a7Wfm8Sam1Np89a45gZNRXJY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|128.0||7.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/coatings8080256|syo_qhnEhsHx8Q7th9G-_IY0RgqH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|206.7|0.765|14.18|['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['VOx']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01944|sytVdmyO-6xGspWJDofGOiLMGkGK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|207.0|0.48|8.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-IO']|bulk|https://doi.org/10.1002/advs.201500105|syv6UPrXgiXxK3aqrARIUdilCFG4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-IO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.91|195.7|0.741|13.24|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ee01675a|syzAxIKeuGNsI8s3qIPMXCUmHJja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|174.01|0.408|5.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|sz0ON6KWhdTxpDTIlkMhv0lSCHKX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H22I7N6Pb23|Pb23C10N6H22I7|(PDMA)FA2Pb23I7|1.5300001631456466|0.878|50.95|0.647|2.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|sz7HjRqDmfgQt59cnYPEzQACpHD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb23I7. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|szEYyvR3xfcmXvEisd0D8qMue7Bf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|227.7|0.789|18.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|szGSolUcHCwPFqyN2NSsP2CXw0C6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.11|231.3|0.75|20.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900336|szKu2Ak31_T08i5i4-mNZBnetzpr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|202.9|0.675|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']|['Y2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00432|szP_jEDKgJuyu-W0uvhvcMhDH5f4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C18H93I20N33Pb20|Pb20C18N33H93I20Br9|FA0.75MA0.15PbBr0.45I||1.03|210.0|0.66|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-Bu', 'Au']|['CuPc-Bu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803287|szXC6EEjw-5CkzsEVVPTqnrRkrAc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuPc-Bu', 'Au']? The composition of the perovskite layer is FA0.75MA0.15PbBr0.45I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7000001812729404|1.06|204.0|0.65|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']|['Graphene oxide', 'CuBuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp04538g|szeXV8-OXGUaeDx9eFy6aT_6hiNK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'CuBuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|158.2|0.62|9.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1039/c7nr08797g|szli8D6eATKf8br5awsLgGJLcJ5E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.095|215.6|0.688|15.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|szljljZnVSijHNBLSiMBRL5JZYEA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.3|0.815|17.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.055|szuLLbZt4yuvgfSqI3QqwNey-U7r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.877|194.0|0.665|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504564|szvqQjWntYi0vZUxI4kuSjoBoQ_N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; MAI', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C6H24I7N3Pb2|Pb2C6N3H24I7|BAMA2Pb2I7||0.42|52.0|0.501|1.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1016/j.electacta.2017.04.067|t-5XRIZiIt31MQBkZhf1X4jf4vGQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BAMA2Pb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|187.7|0.5660000000000001|10.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2015.05.042|t-5tvuSkuAXn3vDijMBbHsHo8ArV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.3|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|t-FPn7kgA68kwuufGPTWhRKzNfmn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI|1.6300001738087604|1.204|215.8|0.77|20.01||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/d2cp02358j|t-OAB0phzFXt9og4YtYDA1BWcCl5|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAPbBrI. -Br3CsPb|CsPbBr3|CsPbBr3||1.14|67.9|0.7|5.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2018.03.009|t-dfahXxqEHNGk2E9t5Ifw-2K_Rv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C87H210I65N25Pb20|Pb20C87N25H210I65|(PEA)1.6BA0.4MA3Pb4I13||1.19|185.0|0.688|15.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta12476k|t-kwnKI06ZKXc7b3Aj_pCNqm0SsK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)1.6BA0.4MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|211.0|0.59|12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3ee43707h|t-mYdjWPwY4Oz3OmYVBojqtohfr9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.045|194.0|0.63|13.3|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b07999|t-sK1D6XFB8GclMGPIVNQPZROvi7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.3|0.59|9.9|['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201306271|t-tqn9CwBCsXefBXqWeTWZjJxP9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||0.95|163.29999999999998|0.58|9.03|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.12.038|t-zVhQZ5KZrdxp2Yx656r9p7-B-J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag-nw', 'C60']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|t0-z1pQfr_gjMFXJ1A94WrinoXHl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.01|232.0|0.81|19.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|t01Gq0LConNEyEEsQCB4VhhYPf3I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.84|75.19999999999999|0.43|2.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab2535|t07du-mGYOkhhBPyX1EKTGxlRjuf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.94|138.0|0.52|6.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.02.018|t08ibGT2C0aFhnxUO9Wpxqu4XHbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.0|0.77|18.6|['SLG', 'FTO', 'TiO2-c', 'BaSnO3-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'BaSnO3-np']|bulk|https://doi.org/10.1126/science.aam6620|t0G3QooChMDnIJsqVNA8-UfUuoom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'BaSnO3-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|220.0|0.65|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600868|t0K3MdBd8F941RoOuRnswuKd_WYR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.6|0.63|13.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b11329|t0O1NLolrAXLpcenkcTeSQ6SSWLK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|191.0|0.55|7.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|t0O_o2csBZOJL_QkgtF46nTUA9Dk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -C6H15I4NPb|PbC6NH15I4|HAPbI4|2.2000002345885115|0.77|21.6|0.322|0.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.langmuir.9b02524|t0Q-M2Kkmr-tWNuhTHIwpcQ-EDja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|215.1|0.73|16.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|t0bMrDPRQhhW0LPUyE3Ldip3sBth|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4CsH20I12N8Pb5|CsPb5C4N8H20I12Br3|Cs0.2FA0.8PbBr0.6I2.4|1.6800001791403176|1.07|206.7|0.774|17.16||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2021.106608|t0f0YatXbQND6h2OmuYsXbwm3F6E|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.6I2.4. -Br51C100H513I261N187Pb100|Pb100C100N187H513I261Br51|FA0.87MA0.13PbBr0.51I2.61||1.01|223.3|0.621|14.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']|['iDM1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/en13112897|t0fJs0XlvH0GzzHjJzl8d3pGZKUU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'iDM1', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.51I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.22|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|t0kO8fOoCTaadC8ksqlgxfHXxYRa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.06|37.5|0.26|0.05|['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['MgO', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings7030036|t0l1UfcEf_AkBaEreu9UGNR8h3Ip|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'TiO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.6|0.78|18.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ee01179e|t0pp5ZtNWxLX5kH5xzvUHfQLTevh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.113|154.73000000000002|0.685|11.97|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|t0sZ4aB-B3MuPw9J2JU5YzNSsGhA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|74.0|0.31|1.8|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am508678p|t0saDHUKzsieHENt9HpE-HZLPi0F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|161.0|0.639|9.4|['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']|['CuOx']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b10803|t0xuWUQ82WEGjcH7S82HNozkpkys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.0|0.8|19.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1063/1.5061821|t1-0pD6TTjzFPZAzZ9nIfuJ4L3Nu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|137.3|0.62|7.47|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2015.05.028|t15NoKfhvF4uz6FxANltqb1JUgQA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|240.5|0.73|18.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|t1A1eoyvFOKM_HIY-6RqTAEbHZ3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|183.0|0.61|10.1|['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']|['CuInS2', 'Al2O3-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.04.007|t1Kuw5S_XXroOcnJ1YeZfTD6Z6_V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuInS2', 'Al2O3-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|198.9|0.54|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8060416|t1OonyWLSRStJxH3gUsjXlck6ARo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.093|229.8|0.6990000000000001|17.54|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|t1P4D0T9WIE-adOEU8Rcz-JyM10m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.0|0.79|18.7|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|t1UwCk_vmmxAUG2io51RX18redQE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br25Cs25F47I3Pb25|Cs25Pb25I3Br25F47|CsPbBrF1.88I0.12|1.850000197267612||137.10000000000002|0.67|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02899k|t1cc9sad79ZxlGKvRw-X0aKKTlCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrF1.88I0.12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|139.5|0.67|9.08|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10854-019-01942-5|t1jbrOGBIRtYdRsSjpCi5AahuYqJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.123|221.0|0.64|15.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|t217MR_ghyZyfydch4_ujvVKSYls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|193.2|0.645|12.14|['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-MeOTAD)', 'Au']|['TPB(2-MeOTAD)']|['ZnO-c', 'MgO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc05773g|t2WusirK8EFiJQWlIwK0mOqlLtfQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'MgO', 'TiO2-mp', 'Perovskite', 'TPB(2-MeOTAD)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|237.3|0.56|14.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.04.127|t2dGStSrIKR0C05_lvZ1fIC5v4ES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|80.0|0.37|1.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|t2hObi7F8bQgZ4ZLsIF3-CGUsyWE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.15|208.3|0.68|16.29|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|not processed|https://doi.org/10.1039/c9ta01755k|t2jR_sIjLzWETBnAJ3sTBjBMn8MN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|185.4|0.62|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.014|t2q0Z3ZPY-EJRoXer9NUnzylWRCy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.551|210.0|0.3|3.85|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1088/1757-899X/289/1/012001|t2vBbYzlLnQ0eHm4afRI_J2OUgpe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.54|221.2|0.71|8.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900285|t3C5kY8JFV2u9EuMtK96MDVzEKOd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|177.89999999999998|0.679|13.31|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEAI', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|t3HafKDKGxktprmwRkZDB6mD-edy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEAI', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.97|239.0|0.62|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21775c|t3Q0XxMuNwQMGdOhJpzgeJJOw4JN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|209.9|0.71|15.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NCHEM.2324|t3Se4u1xrW_0_ZxmGHyfTSYMRNhB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.2|67.4|0.7390000000000001|5.98|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|t3X-poqSRISUGsvAO9XgsJXnCO87|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|195.3|0.67|10.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.5b01381|t3ZaA2MI5aXWSfKKJc_McJXgUI01|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.50I2.50|1.6500001759413832|1.13|196.0|0.72|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|t3qWIn5ADkVU-521Omswaw1BbK6X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.50I2.50. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|231.0|0.8109999999999999|21.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|t3t0uWzKhEHQY9rT8BN89VPoza02|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.73|117.0|0.547|4.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|t49bAItWaSJOfWDiaUvj2xxO0ca6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.1|0.696|13.78|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PolyTDP']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201500436|t4OXo2gz7tw1jPqMACvbiRIbFdMt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.2|0.75|17.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10094b|t4aT1tIwAy0gpieraReocVcu1n3Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|233.9|0.71|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201600428|t4qbYE33YCOQD7seGUFUzGbCi8Uj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.82|198.7|0.615|10.02|['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTCA']|bulk|https://doi.org/10.1002/solr.201800205|t4rpgAN1r5KGXOUnipldf9fOAGvr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTCA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|155.0|0.66|10.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-017-02039-5|t4ukAiy4zovx0qQFTpVIUvHZAiE6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.0|205.0|0.66|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201401137|t51veAfo6OVoAF1tn-FvpekETndu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.61|198.0|0.64|7.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|t51wEuNyAJXJd3YEevsVNm3tSrjm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|191.0|0.612|12.3|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['LiMgNiO']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms15330|t594WyiW97qV8W6Hhe52vxYMn4Up|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|213.0|0.6|13.3|['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'WOx', 'Au']|['PDCBT', 'WOx']|['C60-SAM']|bulk|https://doi.org/10.1126/science.aao5561|t5MObvM4o2rSlwUT7WTgM_alkuVR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-SAM', 'Perovskite', 'PDCBT', 'WOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|162.60000000000002|0.61|9.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Liq', 'Al']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1039/c8nj04131h|t5WwqLl5aYMnNLhDoq9a6b3HQdAQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Liq', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.247|141.6|0.7440000000000001|13.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|t5_N2IAJU9hb5sySwpoRRrWMufew|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.0|0.73|14.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']|['PEDOT:PSS']|['C70']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|t5dWf2TlpRsz_y2oiHi9RoDE5iZe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|73.0|0.42|4.53|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'MDMO-PPV', 'MoO3', 'Al']|['MDMO-PPV']|['ZnO-nw']|bulk|https://doi.org/10.1021/acsami.6b06878|t5ea5txG2Mr_ys7qpHOaUeP-0xcS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'MDMO-PPV', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.86|211.2|0.62|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt; P3HT', 'Au']|['Carbon-nt; P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s12200-016-0566-7|t5k5zcnvdb4ZwHEWNf3QTzaGuXro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon-nt; P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.13|230.6|0.78|20.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07617k|t5kQaQ1W8wMgwNZsZITWHbYCGLz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -C3Cl2H18N3Pb|PbC3N3H18Cl2|MA3PbCl2||0.942|233.6|0.46|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s13204-020-01357-3|t62dkgPu-giso75GilR6HtJ_OVAg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MA3PbCl2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.2|0.81|18.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900402|t6HgQ5N2uMF3svjcw7rYWFY4ZCUa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|235.8|0.62|12.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|t6TQWT5mQLsHpo7GzaW-dNwpkUBZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -C14H34I16N10Pb5S2|Pb5C14N10H34S2I16|(ThMA)2FA4Pb5I16|1.500000159946712|1.016|220.2|0.742|16.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adma.202001470|t6aWMC0PzzMvsEvVx1lcunC9RfEz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (ThMA)2FA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|135.8|0.6|8.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|t6hZdEKWHkbPy8iesScEhgP5Dt9o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|192.2|0.687|12.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|t6qqZiaZg6xItSbw7Ii8hTF5TnDh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|t6rH5fdTu0z3Kr_00f7NSLtj-GoC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|229.0|0.5710000000000001|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Al']|['PEDOT:PSS']|['PDPP3T; PCBM-60']|bulk|https://doi.org/10.1007/s40843-015-0102-x|t7-OaVI4h2U6o5cVieIBZN2F6Y9V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PDPP3T; PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2000002345885115|1.31|51.5|0.33|2.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta06115j|t7EvuRI0rQbJAfmiH699KOEhUpwI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbBr3. -Br51C96Cs4H496I249N176Pb100|Cs4Pb100C96N176H496I249Br51|Cs0.04FA0.80MA0.16PbBr0.51I2.49|1.6100001716761378|1.01|176.29999999999998|0.607|11.05|['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202004357|t7ORLctrqjc4bz5Y9KP2bkJmCWhA|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.04FA0.80MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|11.1|0.42|0.4|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|t7Qx_rFxjwTjsLuGBp1poMi1EaxB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.97|223.0|0.73|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|t7eyXVmMB5u6q5elWSKMP0QuXPAD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|188.6|0.71|13.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|t7gbN8EGn9mYSLa9c4P7qufpZ7Fq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.095|227.6|0.76|18.94|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02634j|t7jDS6DuB37iZOZrJOEBkDvLAwvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C20F2H46I13N6Pb4|Pb4C20N6H46I13F2|(mF1PEA)MA4Pb4I13|1.6000001706098266|1.097|145.6|0.524|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41467-019-08980-x|t7k_hRIg5A_3dCypVpNpbP7sq49z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (mF1PEA)MA4Pb4I13. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.627000173488867|0.894|146.9|0.483|6.46|['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Black P-QDs']|bulk|https://doi.org/10.1039/c8ta01408f|t7pDhFUZtMTKX4pOtwEpQBVJgcT2|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -Br10C45Cs5H252I140N63Pb50|Cs5Pb50C45N63H252I140Br10|Cs0.10FA0.36MA0.54PbBr0.2I2.8||0.98|148.6|0.6|8.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']|['NiCo2O4-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.12.031|t7pOkyrNKgahUDJwYnFQMsuwng0K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiCo2O4-np', 'Au']? The composition of the perovskite layer is Cs0.10FA0.36MA0.54PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800278|t7u1VMeoy5u9fdIjC2jpo7RywtZ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.0|0.72|16.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600999|t7x2LQi_1XsL7kg78Ztp3OmYF9Zo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|t84S48oRovEAKmwSnWsEQAyqUICL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|235.2|0.59|14.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b06799|t87CqGDYRq0It_7uir7BxC4POClh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|178.0|0.58|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/er.3485|t8Gijr_fjJCo8pOFJJl8DuRECZWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C190CsH978I510N352Pb200|CsPb200C190N352H978I510Br90|Cs0.005FA0.81MA0.14PbBr0.45I2.55||1.13|223.4|0.727|17.69|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '3,6-triphenylamine-carbazole', 'Au']|['3,6-triphenylamine-carbazole']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b07859|t8IyLHmIdSHItfpdZl9tDygb0VL8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '3,6-triphenylamine-carbazole', 'Au']? The composition of the perovskite layer is Cs0.005FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|242.0|0.69|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b10091|t8OFS9VkVzjGwrP76iXi89AHaLKO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|190.7|0.63|12.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01558|t8RrW5upOBZvAQV8HPVwX7lIL9Wp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.8859999999999999|199.2|0.542|9.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.mssp.2019.104908|t8WNX6aNHBg1ZtQNuaUg-SUXZRO3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|122.0|0.6970000000000001|8.47|['SLG', 'Ni', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']|['NiO-c']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1016/j.solmat.2019.03.002|t8lUKPuuUF5KHFs6qJ--v0G2JqDF|a perovskite solar cell with the following device stack: ['SLG', 'Ni', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEIE', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|240.6|0.79|20.0|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.nanoen.2018.02.014|t8mLwpEe8oV7d8ZKq1ojdfzKYQ-M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|t8uKsyunUnuTIkmOLv8gesd-oXrU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.0|0.67|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2019.112141|t8unQBk-DTVvK9u9TtYf5XXxxn0w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|||||14.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b00980|t8veV2_owVyTOkblc24DLfrufmag|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|100.0|0.477|4.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiF', 'Au', 'Ag']|['PEDOT:PSS']|['LiF']|bulk|https://doi.org/10.1186/s11671-017-2381-5|t95K5AC1kmKpfewO4q4-lQtNv2sK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'LiF', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.964|135.0|0.6|7.4|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|t9O1eyS4yN8z_AIj5euvg3bM6yNR|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9Cs20I51Pb20|Cs20Pb20I51Br9|CsPbBr0.45I2.55||1.22|171.29999999999998|0.775|16.14|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|t9PQuG2guWTWJtL3jVOCz8MSd1r1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|189.0|0.7440000000000001|14.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b14499|t9XrTQe678MfQ40Hb7Uf4zmVpuk4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|208.2|0.69|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606555|t9YOruCsuIXFq2DGG3_AYoZVg2bE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|194.2|0.53|9.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2017.10.035|t9ZaDM7L523CICLDi-nXJ_Y_MG6z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|224.0|0.74|19.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201506049|t9_DIfTgvnYWN85FyBb_sSpuGjyd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.042|57.3|0.303|0.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC03', 'Ag']|['YC03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201800454|t9jlqHTiYgQF1ut1q3Cwj5g1LlDN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YC03', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|233.9|0.778|20.03|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201900417|t9qSVHZNZAc67GXLBFRUWJS37a_Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H507I279N193Pb100|Pb100C100N193H507I279Br21|FA0.93MA0.07PbBr0.21I2.79||1.0|169.4|0.5529999999999999|9.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.05.018|t9qd6-EtvvLg55jF0nhOY6Va8ez5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.07PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|218.0|0.64|12.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601575|tA5zSsRo6S9j2aq0P9Kao5r9qKwj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.122|231.7|0.7509999999999999|19.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|tA85cxkOvP30UCImgb2gLzFJ9IeZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||2.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|tABgHh08XHryn0yRig3l_67OITCU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.85|77.1|0.4|2.63|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|tABj0Dc0en3aawXumpiXIkerEq1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.005|149.5|0.6890000000000001|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']|['SBFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|tAHOZvXFVqzf_aqB8aggBSyU0QxH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SBFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.12|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|tAV40SiIWdnsswhChEpM_HunTrhV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br33C100H533I267N167Pb100|Pb100C100N167H533I267Br33|FA0.67MA0.33PbBr0.33I2.67||1.02|141.0|0.711|10.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|tAYjN_QhJKfwbfHACV5cuP8MPFG0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.67MA0.33PbBr0.33I2.67. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|tAbDKq4k6aQowomXBHaDOgaQGoYP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C4H21I9N7Pb4|Pb4C4N7H21I9Br3|FA0.75MA0.25PbBr0.75I2.25||1.15|195.0|0.73|16.37|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.8b08075|tAg4Ob76zBrmYvJ3MgvroSDEc-U_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|170.7|0.66|10.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|tAhZMY4_5ZLune2HVRbqXdHBb57-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2||0.4429999999999999|20.0|0.5329999999999999|0.47|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'Ca', 'Al']|['MoOx']|['C60']|bulk|https://doi.org/10.1007/s12274-016-1051-8|tAsATw_6P0VuEGMnxpVBqzlDmqyj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'Ca', 'Al']? The composition of the perovskite layer is FASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|32.9|0.731|2.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|tAsrsek43Phgl2sf4ufEkpvkBka8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OiPrTAD', 'Au']|['Spiro-OiPrTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s11426-018-9432-x|tB0jzkDcWuzL3BZVPWYto3I06GUG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-OiPrTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7||1.06|210.0|0.67|14.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1039/c8ta08306a|tB50eZY5_iAIdbrI1-XFVdp5NzuL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -C9CsH47I30N16Pb5Sn5|CsPb5Sn5C9N16H47I30|Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3||0.752|313.0|0.7929999999999999|18.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/adma.201907058|tB8hAEvb70cY4eoiGR5zoIeFsnK4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.0|0.69|15.1|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.egypro.2017.03.300|tBIJkiFHUhCZH69ZSAw1D0w6RwRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|200.7|0.58|11.27|['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PEG']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.018|tBOjzOFlu5qYffh5iroNkzHEMrqC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|213.0|0.703|16.47|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1109/JPHOMV.2018.2877002|tBP4pGnz1wzdulzCTDA4d3FPaalF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|218.0|0.64|12.85|['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['V2O5', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01303e|tBXC6d5yzVKThEf7dS6vPNQ8U-0_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.0|0.7190000000000001|18.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta09260a|tBY79UBq8H8scBLPnTukUNMrHpEP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|175.6|0.68|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1039/C4TA03384A|tBZCrWSxeHi2OzMkWNDRve_-3nJd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|200.5|0.6829999999999999|14.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.036|tBdV7Vx38snHBIN0omT_olvZmvNg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.899|176.70000000000002|0.627|9.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|tBlkXBUUnKJdRKEg3w_XCXCUe2DF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|189.0|0.76|13.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|tBqOoZP8vAWxGJ-DK0SlXs08IXxw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|188.2|0.659|12.77|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/cssc.201903025|tC-0zrZw4fqXZZOgK6jf97Eoxy2o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|207.7|0.74|16.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|tC2EXOlt3ZQCoMYBq_4YXR6vvj__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4PbSn3|PbSn3C4N4H24I12|MAPb0.25Sn0.75I3||0.7|190.0|0.64|8.51|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9926-y|tC4xyUyn9nQRMo9dZ450FGBjC-CW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'H2PtCl6']? The composition of the perovskite layer is MAPb0.25Sn0.75I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|232.0|0.78|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|tC68SOraSaHX-yHywS7J-MJSp8tS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|144.0|0.47|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10055k|tCI-DlEbpc9hqO4309qcKjXGRj_b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.135|212.4|0.792|18.83|['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|tCTpwaCA8zcde_wduqSF3fjQ-TwY|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|71.9|0.44|3.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.009|tCU4lLaNqQcckyXT24QWtJVfxujy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3|1.3700001460846638|0.67|184.0|0.53|6.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|tCVoi5bHoH_gYcOImHXYvQICYMQE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.48|81.1|0.198|0.77|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601130|tChNLTbdtvMjr9XS3kON7JCER0iO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|174.3|0.6729999999999999|11.98|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b11084|tCo22D-BLF2kTZfva3IQ7XWxOclQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH24I15N4Pb5|CsPb5C4N4H24I15|Cs0.2MA0.8PbI3|1.6200001727424491|0.92|175.0|0.69|11.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.185|tCq1o0Lzge_QgNr7nZIPjUO3OV0j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2MA0.8PbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.07|227.8|0.726|17.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|tCsk7Ll20mJQ5-QP-OASYC7VEfQB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|227.0|0.726|17.29|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201902543|tCv6P_WRRZKXawgF0AxG9ciT9Xg-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|129.3|0.67|7.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|tCvL84l97NSAQ78gEY9Id_Hpm9po|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|158.0|0.55|7.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra25160e|tD-4upYBrk6BGyoA15PtaNJjJR1e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2018.03.228|tD49a379LLveHlaTilVt4urXC3rY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.5|0.7|15.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|tD6lbgutkTSOunr0P8GLhMNsDMmb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.8|0.672|14.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cplu.201600415|tD6oHTl6wpQEyEDNphEhOcw3T1la|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|67.0|0.42|2.2|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|tDhzGtbCdJqkpp6exYiB8b6OE9zI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|236.0|0.605|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00938|tDs0Os8vlDo-_d-QA3JrGYwaC7Hj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.3|0.75|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b11901|tE-l6OTYZinS9n_5cuqTT_e67y0P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.9|226.0||14.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|tE60CfGfxA4amglcC4NYWEKSXb8W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C25H150I75N32Pb25|Pb25C25N32H150I75|GU0.14MA0.86PbI3||0.83|237.3|0.7|13.79|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1364/OME.6.003651|tEBgyKXARnHpW80yEbIaT3rVS5dW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is GU0.14MA0.86PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|tECz-XIsuHJPqafg3o-Kfg2_O5Of|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.3|0.779|18.28|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']|['NiO']|['PCBM-60', 'PEOz']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|tEE4HzooE-7iSBy-iDOaSchcamIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.640000174875072|1.02|96.4|0.565|5.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|tEEdBB2K6sB1W1VkcZEImdfVDuI1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -C50H273I150N77Pb50|Pb50C50N77H273I150|FA0.54MA0.46PbI3||1.06|235.9|0.693|17.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110110|tEJaQ1K1NMjqAjE84M78hDcjrBrQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.54MA0.46PbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.96|209.0|0.67|13.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00286|tETVWScfctfjcdlzhdWEh4GXmPra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.32|206.0|0.59|3.87|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|tEioyzr0Ki2fZJNngDuuwY2SgOGn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|188.3|0.5770000000000001|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ee02693a|tEoPi7lKaexaEQyCrJSCb8J2KKuF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -H12I9N3Sb2|Sb2N3H12I9|(NH4)3Sb2I9|2.2700002420526912|0.56|7.199999999999999|0.298|0.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|tEzjz3zOuYR7n4xLdPwxUl1bZl_H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|209.0|0.722|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201402461|tFD5pJvK8x91b8B0l4CFuKOm66cx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.7|0.64|11.49|['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'Nb2O5']|bulk|https://doi.org/10.1016/j.orgel.2018.06.038|tFH2MTukHOYY0D41l51ntU_E-PMG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|91.0|0.26|1.8|['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2019.116232|tFWqXLOxerwEex019PWsWVsSTWFV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|94.0|0.79|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|tFiYjdtm2Ix6MsAEYE9hzkXG-WoB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.3|0.6659999999999999|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01558|tFrNsadxemwYyz1We7lGkRLkqmuW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|197.4|0.679|11.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2016.10.025|tFzSixG8IYD1omgfDTPt7AxMIPZm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|0.83|168.0|0.52|7.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acs.chemmater.6b00711|tGJAW7gA1Ayh2xZ3pBJ43ZYhgCv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C50H267I129N83Pb50|Pb50C50N83H267I129Br21|FA0.66MA0.34PbBr0.42I2.58|1.6200001727424491|1.04|221.0|0.74|16.9|['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']|['TAPC']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03454d|tGOwIH4V1uc9Hsh3wppRzrvaMgPT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.66MA0.34PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|235.0|0.655|15.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201502541|tGW4Bn1OnpaXDuIpd9mvQjA2gJYD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.115|226.6|0.7170000000000001|18.09|['SLG', 'FTO', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw']|bulk|https://doi.org/10.1016/j.cej.2018.06.124|tGnF6hRVs_TkGlV22MhJB3cqT2zu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -Ag4Bi3Br24Cs8Sb|Cs8Ag4Bi3SbBr24|AgCs2Bi0.75Sb0.25Br6||0.64|10.3|0.379|0.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mattod.2019.04.023|tGpUtNbVqJCDikN8-3w3eFTkKkz5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgCs2Bi0.75Sb0.25Br6. -C6H16I4N2Pb|PbC6N2H16I4|(HdA)PbI4|2.440000260179985|0.725|17.35|0.471|0.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c6ta05055g|tH-aVmMpwf3CrJfAJqCDa-AZbzzM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (HdA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.2|0.64|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600942|tH0vVfThqtuWtssinH_M1C0DoD_M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|193.9|0.722|12.09|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|tH11ZLMCobf5MaBLQCa_igaT2fIa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.17|61.0|0.69|5.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701140|tHMkoAB4yqfoUL4tIyRM-WuSvhk-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.851|183.0|0.483|7.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|tHQw6LO_yUE44grasgSO4oaMwXQQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15Pb1.0Br0.45I2.55|1.5500001652782691|1.053|227.8|0.7959999999999999|19.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-019-08364-1|tHTsgca_agNEgxBD3zItChakB0dq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|133.0|0.6579999999999999|8.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|tHUIdL0K_0K3CF11xK9UqfGT_9OD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|220.2|0.657|15.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201901406|tHd7QaPAj_RaBe6XYQVZS2JuY4Vg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.125|224.9|0.6970000000000001|17.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-018-0324-8|tHhC9HG947pXdL4ySMLzbZGtWovv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072||||10.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|tHj6YzdU6tlJK3o8PayFgzus_aHj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|214.2|0.76|16.16|['PET', 'Ag-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.202003422|tHsb33K7G-ApNjqlwm8fi357Bu_V|a perovskite solar cell with the following device stack: ['PET', 'Ag-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|211.0|0.504|9.5|['SLG', 'ITO', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2017.08.001|tHtcWOHsTTqKdTW4A_emp1b0sarH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-70', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.07|247.8|0.746|19.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227586|tI6vXN99uqQa9EtDue4J5TWzDDmL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.54|72.8|0.769|8.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Carbon']|['PVAc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.9b05631|tI7xWrY8opRy1v4MUeqV3m-jmcvq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVAc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C200H1200I600N200Pb199Sb|Pb199C200SbN200H1200I600|MAPb0.995Sb0.005I3||0.94|167.39999999999998|0.542|8.53|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201800274|tIHTruBiw1_RdYmlA5uRw7kZ_oZ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb0.995Sb0.005I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|59.0|0.35|1.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|tIX7IFkXAqFRsdPlha0qZZxTmXED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|1.06|234.0|0.708|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41563-019-0478-1|tIXGv_88p1g07rozQyuImRrecKcQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.8640000000000001|167.0|0.619|8.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|tIXVXuLxZQdBWCu9uKKHOul7RtUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.0|0.525|10.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ra18648j|tIYhbDLq5QvarAh_ib908gQyj0NH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|139.1|0.682|8.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr01714a|tI_YEhONxnqcCmsg7n_OowLu_W0O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.115|191.1|0.7759999999999999|16.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b07927|tIbyZzjMehc-O3A2vu8WdSaI4g6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|184.7|0.423|6.84|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/ab2a5c|tIe9pcabPHurMmPloZu87uuLHTGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.1|250.0|0.8029999999999999|22.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aan2301|tIqlUuwr0tnF3twbIdjj99jBOv5c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892||||6.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.05.071|tIrulGkZCOYVUiG1vO9N4yP486dT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|170.0|0.68|10.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|tIztSkTR68Rcj3a0RnpYm0wHumKG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|56.7|0.731|3.35|['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CZTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jpcs.2019.01.008|tJ-RNXDA2bO9ghkbBgoDgdp_9k6b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CZTS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.898|208.9|0.6|11.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']|['PEDOT:PSS']|['F8BT', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.05.026|tJ-rWD203ZjCpE4PPkI80Niax1NQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F8BT', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|194.4|0.72|14.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|tJHsHBvPtG85fShhNnNMJIdy350c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|186.0|0.774|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b05058|tJKvMtsgcj0nKGeLY-WpK6CcgKbK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|127.8|0.7040000000000001|8.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|tJLZZlPLCzq-1VwPeYL6RdAkGbvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|226.0|0.72|16.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-20', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8-20']|bulk|https://doi.org/10.1039/c7cc09452c|tJNX0-8fIYelHpco50XDuiKBcCcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-20', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.0|0.698|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NaYF4:Yb:Er-np', 'Spiro-MeOTAD', 'Au']|['NaYF4:Yb:Er-np', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.058|tJNk-jcp5DTDyHd8zeZ0Z4LqA35p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NaYF4:Yb:Er-np', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|231.5|0.67|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|tJOPQ8ve6g2TtOu-cJDdsqWtK_dz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.959|194.1|0.784|14.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['DBP', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c9tc00064j|tJPy1l_q6rdbTcDE0VPJQUdu9l-V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'DBP', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|11.0|0.6|0.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|tJTRX-7u6UEK5NgpTiohyl-ERwnF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8340000000000001|173.79999999999998|0.706|10.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|tJVdJtWZ4j2DQpdhnuZDIVwiED4P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.7|0.7120000000000001|17.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b01740|tJVgd3tX74SpWNfPriq_vNzEjczY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta10510c|tJWK9UJ6GNhQpxtIi9GSUv_rxc7C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.01|151.2|0.6|10.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b06050|tJbCkf3ZmPjowjqi5JtYL9ClLm_7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||0.924|174.0|0.64|10.3|['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['KY7F22-np']|bulk|https://doi.org/10.1021/acsaem.8b00518|tJb_JbeS1hMMGXoD3pf3tc6UqUgS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'KY7F22-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -C19CsH98I51N35Pb20|CsPb20C19N35H98I51|Cs0.05FA0.80MA0.15PbI2.55||1.061|236.1|0.77|19.02|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.chempr.2018.08.004|tJbq9fQ0k0c_zMaephQrGRlTB-9i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbI2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.9|0.52|10.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06687e|tJfb5KNkpauDPWMb5_o3l-cWAn9R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8909999999999999|232.2|0.66|13.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|tJkWhCM_2VmE8NTlb6JmspS4c11y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|156.0|0.47|7.8|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|tJkxfOOuCpby9NBdNjyXA9AdCGEA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5650001668777365|1.09|231.6|0.7|17.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800088|tJlMWt5D6XjZTAadVkLIM4fFLmEO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.095|202.18|0.735|16.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||tJsteGNbqtyxs-73mdvkN4Qivdth|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -C25H150I75N25Pb23Sb2|Pb23C25Sb2N25H150I75|MAPb0.92Sb0.08I3|1.6500001759413832|0.98|157.6|0.51|7.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|tJw5LYNqegRIi_9c6eAQyoJzPChb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.92Sb0.08I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|225.2|0.7609999999999999|17.83|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.146|tK3ZVRdx3LZaruPG-_taamovtb58|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.623000173062343|1.06|204.2|0.706|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b03116|tK6dWwynsBqKLYqaIEwxqMzfIB5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|179.0|0.57|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01575|tK7l4ONOBX2Wu8ZvBlxiiFmhgL1z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.0|0.62|10.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b06819|tKB7Tp4aKhiRmJq74LgE-zu1WKL_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|170.0|0.32|4.4|['SLG', 'FTO', 'TiO2-c', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZIF-8']|bulk|https://doi.org/10.1002/jccs.201800173|tKCjiXShs-9BUh7kL2jMtY7p7NiX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|228.0|0.58|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jacs.7b09526|tKHzHuHA6F4fwV5xAsb0syr_jTA9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.7170000000000001|21.6|0.7040000000000001|1.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500717|tKQBJentnn5xBC_ljZu_2vNo6qNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.079|205.0|0.7|15.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.04.098|tKReMEPNEsdm9Zld1skfYZY1kAaO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.12|231.8|0.8029999999999999|20.56|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adma.201800515|tKayFgmXeHdS2GXJwtVRMtui7eXv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|213.1|0.69|14.57|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201802163|tKd_t95gfX2o6u1R7T-1cAXP5dCv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.9|['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6ee00183a|tKimfcCCg7utJF-A-1S5YgpRsHpd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS|Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.195|215.0|0.757|19.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aai9081|tKp3YzZdlKiSp19_bSwokEiczYsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7490000000000001|116.7|0.45|3.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|tKwpFopm-I7pLHZPSlW7qTngTLqa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.009|229.8|0.755|17.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'V1160', 'Au']|['V1160']|['TiO2-c', 'TiO2-mp', 'SnO2']|bulk|https://doi.org/10.1002/solr.201900224|tL6t6_6z-073P9M7qG8qY7rqdlBu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2', 'Perovskite', 'V1160', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.320000247384248|1.06|15.7|0.43|0.72|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz400348q|tL7eJgBEFNOz5nQZeQRO2XFuCJyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br8C5H30I7N5Pb5|Pb5C5N5H30I7Br8|MAPbBr1.6I1.4||1.021|226.3|0.722|16.78|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|tLDrHq2iyDNumPDbws9Om4vn0xOE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.6I1.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|211.3|0.77|17.01|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDTCN', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|tLEI3buReSTBBpbuTvAatfkUxBh7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|222.1|0.78|19.12|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']|['PCDTBT1']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201801985|tLKauFMn_wNcHPJDnhr8o0a5oBtc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'PCDTBT1', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.6500001759413832|1.04|67.30000000000001|0.492|3.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201700215|tLbUS1dhmWqO2KvGuM3v2MoK17BD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.04|178.1|0.615|11.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|tLc8GkTU347CGtuNS3v8wndVXcKB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|205.5|0.6579999999999999|11.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c7ra00274b|tLkYqMWXh6v_JI1YQutvZq5J4nqa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|50.0|0.524|2.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|tLlEyFsfXYSzdWxmgArv_ItfJRte|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|201.0|0.69|13.59|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.matlet.2018.04.092|tLnCVe2w9FpWzndTjrf30-KXfPSj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.22|132.0|0.6|9.4|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.3390/ma12091394|tLqzsRXXife32jEZx1LgaOUQ83nC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|153.0|0.49|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2016.03.045|tLsfWe0Tuqv9YRw-hCV79FJJbnar|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.02|204.9|0.7509999999999999|15.72|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']|['NiMgLiO']|['PCBM-60', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ee01675a|tMCyWo4lZJwPYzzg2By7fPusir7K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'TiO2-c', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|tMexFCv_fPPl_d8HAMOuqHn7ncAR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|161.5|0.57|8.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|tMg8MN4h2L9mnQzHPWx8h6NxOvUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|111.1|0.632|6.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp; ZrO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2016.07.003|tMjgLrnx7_i0JC5-30TWYnwf44ED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp; ZrO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.746000186177973|1.08|165.39999999999998|0.618|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|tMk8GiOfAl3O2zojfATaR2l32LTO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.0|227.0|0.67|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b01049|tMq4lWWr-JLBR9riJ4PSLLmmWfAg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||1.0|210.0|0.76|16.0|['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['NiO-np', 'PTAA']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|tMwU4SSzw8mv0n01B5OSJeK-nohi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'PTAA', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|212.9|0.667|13.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B[BMPDP]2', 'Au']|['B[BMPDP]2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc05814g|tN0m2i4UGz3orZkIYwjOeUB_3zqm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B[BMPDP]2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|162.0|0.41|5.7|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|tNBRNGIzTmpfraOaSbnkYADkfuaR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|142.0|0.65|6.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz500113x|tNFcUYdjsumv_1ZPUM9U5ACHLCks|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|195.0|0.8|17.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']|['NiO-c']|['PCBM-60', 'PrCMA']|bulk|https://doi.org/10.1117/12.2237085|tNGm5tLLo94v0k_36OW955ONFyuZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PrCMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|149.4|0.72|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN3', 'Au']|['YN3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta12139g|tNGv15iunUbBj1Dpw5C7qJ5CYeqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN3', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|tNIDaLZrELwhTvkBdjPGRTujy4Uk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.684|61.5|0.57|2.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b03796|tNO-jvvgu_yi8jfTI6Txui5oz9F6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.11|226.9|0.7190000000000001|18.02|['SLG', 'FTO', 'Au-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Au-np; SnO2-np']|bulk|https://doi.org/10.1002/aenm.201900720|tNP9ZJ3D5rx4_DMKtFSYrH4MkIvB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Au-np; SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -Br21C40Cs100H200I129N80Pb50|Cs100Pb50C40N80H200I129Br21|Cs02FA0.8PbBr0.42I2.58|1.5900001695435149|1.11|217.0|0.446|10.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5123400|tNUBiNU-n7A2_9TwaCF-HYM5axdB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs02FA0.8PbBr0.42I2.58. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3|1.6000001706098266|1.05|230.5|0.606|14.71|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/solr.201900096|tNX8Mr3e8Rc9LVsTJfjM-f5B9_OP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.0|0.8|12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta07714a|tNeCJ3XvX5r_vLvTPg0CZ4LTsdqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|149.0|0.596|6.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|tNrMh_OZgxz0aFcahFnspZwbtdNb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|2.05000021859384|1.22|102.7|0.74|8.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2019.143990|tNy5L__TcxGxxN_m-eTk1mByxIl1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.5|69.0|0.69|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO7', 'Au']|['SO7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00077|tOGQl6pBWzBNkVgUfpVn4xcZC02J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SO7', 'Au']? The composition of the perovskite layer is FAPbBr3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604|1.07|221.8|0.687|16.67|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|tOHvNpxkUJLohdsJwDgXWV9kXZBB|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|238.6|0.54|12.95|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s00339-019-2769-4|tOJR6NOGEXOa65xvG7OvE9seFq1q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.02|196.0|0.76|15.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']|['Carbozole @ S14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|tON7FHm6ydPcRlCzD4PrGU7wJAHR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6100001716761378|1.08|235.0|0.77|19.6|['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta10168j|tOTgldSeUSHuwvcZDt6YKPnpvI0W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-n', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -Br4C5H30I11N5Pb5|Pb5C5N5H30I11Br4|MAPbBr0.8I2.2||0.989|228.8|0.726|16.35|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.solmat.2016.08.027|tOaBalJsiHVMhckDfMh8rr807J0d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.8I2.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.0|0.73|15.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1117/12.2213249|tOiKQCaQ7IX33pXBRUKZ81JIrJg3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5300001631456466|1.09|240.0|0.758|19.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900220|tOnURNkhC4UKWHMy573-rmkLRbNs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|170.0|0.653|10.76|['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene; TFSA', 'PET']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|tOpS2rlD_4c8FfmHsF_3SDdvozne|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene; TFSA', 'PET']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|201.4|0.615|13.71|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'C60', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['C60']|bulk|https://doi.org/10.1039/c6ee00462h|tOrx3VuBkw_JLfs8jWAyK2RM8uz7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'C60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0800002217927744|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']|['NiO-c']|['none']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.048|tP0ZAPnLb04wHqJYu8E7eMjoc4By|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'MoOx', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|201.7|0.67|14.39|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/ente.201700437|tPB0immgjAG5BZenew4VYBg-pBxH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|212.5|0.77|18.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2810844|tPCF7Kiz4iYpQzdoJ1DU6T6uUTAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|192.0|0.754|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA06718B|tPHTlRwHF1437SJa8mhui7ZY_Cpg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|4.9|0.925|10.1|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.310|tPLN2_JQbklpXjHYvLTYlsRboPN5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|194.9|0.28|2.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|tPLOe3f1Nwc4ECdDod33tEA-x9yt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.728|64.5|0.477|2.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941219|tPLdhydqbY3rl29WYzbd38BlgJTS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|203.5|0.7|15.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9111627|tP_Pxv5A1SHGkFykwb48XTuoKgJq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.96|217.1|0.6|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06673|tPf_jWF0rS4ftE_EPvnwx1lxQrYN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br16C95Cs5H491I84N174Pb100|Cs5Pb100C95N174H491I84Br16|Cs0.05FA0.79MA0.16PbBr0.16I0.84||1.04|219.3|0.727|16.66|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01882|tPhDYqhVTiHC-lZZQqTvRzc_FSuy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.16I0.84. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|156.0|0.71|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201400231|tPjKpQXlNmkTgwlGcNCPd1TPV63q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|200.0|0.625|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05576|tPlZ6MiovnxDTimydNUxIC594SU9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|165.0|0.51|7.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.04.042|tPw7cqMlPsyAOmXDR3dGx7Mx94D6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.8|0.726|17.62|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|tPwJYhNHHrz8LVrvbq-GM9juQ6pM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.9|0.56|9.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS0.25Se0.75; rGO', 'Au']|['CZTS0.75Se0.25; rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/celc.201801459|tQ0Kv7Ali8geZR2rcHlwN9g9-mlo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CZTS0.25Se0.75; rGO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.062|223.0|0.767|18.17|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCA-1', 'Au']|['PCA-1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801248|tQPghRY_h3OhYE5OJmDk1HeRbM6S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCA-1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.81|159.4|0.46|5.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.047|tQUe1yGNSDxmxxxsI3kEp3SedNiv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'Carbon', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466||||11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|tQYYR4akWc0xD_b9TZjtn-Ar6NQK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|183.2|0.71|12.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.12.025|tQ_eG0so_OU5RorvYRGBThyHQt8_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|168.29999999999998|0.69|12.06|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta01593c|tQcDl6VfYkaj7K1kxiAP3bUdVY3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.703|16.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsphotonics.7b00138|tQis8yIymzASXfts78BEmsLmppsp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|188.3|0.6809999999999999|12.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|tQjPSxxlmamihIgTZi5qBlqVghFK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|181.9|0.66|11.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra01718a|tQqjF1feI0r4Vz7tM8vZX574uIIg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.1|0.67|15.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201600428|tQyUH231U1RDlsrdArCkti1tLgTH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|210.9|0.449|8.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.01.035|tR-m_Q42z230FhjN69NS-f7uSFD1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrC2CsH11IN3Pb|CsPbC2N3H11IBr|CsFAMAPbBrI||1.07|178.4|0.67|13.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/hlca.202000044|tR5J06rbbi9e284Q5hC6lTJcsBAJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFAMAPbBrI. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.122|230.4|0.76|18.01|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|tR6MEL4D4zEqruCgTHHzSO3Q7k2m|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|143.8|0.648|14.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|tR9ggkw6ukoVaHCUc2pWhHY2kv1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|207.3|0.643|12.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s40843-016-5159-x|tRBTtxkiCU_X9FhRss7_yJW08dy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|24.4|0.45|1.1|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma13010243|tRGlE1ZATtA-cS-1bQP5rhP1g1H9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.2|0.49|10.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ee00409a|tRI8gC56LOMp8kMnZ3dUQNEVC7US|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3|1.2500001332889268|0.422|237.6|0.382|0.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b09018|tRImYpEsL0dCtPmYTvATQx1nZLy5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.433|177.17|0.252|1.94|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/adfm.201806427|tROxWMrVsAn9dekAuR8N_TxPOwZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.0|0.66|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|tRfKb6IQ8pOoMjDBpMPH5lluoXtA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3|1.5500001652782691|1.0|225.1|0.736|16.48|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|tRqnMK3AiY0GUFcyWu3CqCF50VL3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.089|206.01|0.637|14.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD-4MeTPA', 'Au']|['TPD-4MeTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03931j|tRzCvkfANah-82q_4rXAJodObcNE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPD-4MeTPA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br11C20H103I49N37Pb20|Pb20C20N37H103I49Br11|FA0.85MA0.15PbBr0.55I2.45||1.08|219.0|0.75|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b05353|tS3LE1NEGnA3OHZHS3K5B4FE1nux|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.55I2.45. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|188.6|0.55|8.47|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1142/S1793604717500175|tS4Q-s23CbenMLo86PyirYPjicU_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.6|0.78|18.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201700131|tS7rfjWBGmOfi3zq7wyZURgKsFij|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|tS82Mo3atrGugYFBiR_kOokI75xx|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3|1.4700001567477778|0.82|245.6|0.7|14.09|['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.066|tSALZ50YqbCFe9WL_vPM_Jy8lZC2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|185.9|0.682|13.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.026|tSGmsNv_7l59unlTCFi30T7JP0Jc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.73|184.0|0.65|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|tSJkjffwbP7K_Zaz5sFFYfEhFGdZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -Br42C95Cs5H490I258N175Pb100|Cs5Pb100C95N175H490I258Br42|Cs0.05FA0.8MA0.15PbBr0.42I2.58||1.083|222.6|0.7709999999999999|18.45|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9cc04364k|tSKmKuQhDWiQA4yt136NYwExjBEs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.42I2.58. -CsI3Pb|CsPbI3|CsPbI3||1.06|205.6|0.7759999999999999|16.91|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']|['18-crown-6 ether', 'Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/d0ta01968b|tSM-Z08qsKaLrVBAliVFzPn8bePC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', '18-crown-6 ether', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|197.0|0.6|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b12137|tSNuuGbQbrycByHR26bQd8XxWNh7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.06|239.5|0.775|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|tSOEUX5WvKU56erhCB-qYdHCmFBT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|108.5|0.26|2.37|['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'ICBA']|bulk|https://doi.org/10.1002/aenm.201700226|tSPXOwTBgJX3Z4iYoC_Z_0750Rl2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.2|0.77|12.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|tSZBwu3bsQq3KR3-v8PQAyPJBVeF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.5|0.616|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180384|tSbV-eTfydHGRxuA5Cj0vho7UFS9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs4H494I255N178Pb100|Cs4Pb100C96N178H494I255Br45|Cs0.04FA0.82MA0.14PbBr0.45I2.55||1.11|220.9|0.757|19.05|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']|['PBDB-T', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201706126|tScwZ2XsKdNWFMD3GKuEE02G-v7h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PBDB-T', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.04FA0.82MA0.14PbBr0.45I2.55. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.09|182.0|0.565|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b17141|tSgmOuvtPzX6g5kpRECS4BIKu58a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|217.7|0.67|13.6|['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['FeO', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cp01432a|tSrLkShvjTC4SaaqReREmauu0WKT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'FeO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|200.0|0.69|14.35|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1016/j.jcis.2018.08.009|tSuX0OO91R1J62R0gtyd0D6wgq0g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.6600001770076949|0.99|191.8|0.69|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.024|tSvqrZiYAlHUxqUksLu1jpNLLonC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|185.3|0.604|7.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1098/rsos.172158|tSyKmEvwo0vQI2-syrbyoi3kxiDJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.934|191.0|0.65|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|tT-Pl-eXzB566Ly1nA8UcECcWv_G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.556000165918056|0.93|148.0|0.51|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aaa616|tTEt1vKwDjvlunLNoDCsL4s3OX6c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.5500001652782691||||19.59|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|tTJcyiq3cHra2X_BRFrV7UM7Fnam|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|157.4|0.72|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|tTMBFCcHKfbmqmrgub-G6oT_jFuJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|172.0|0.67|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT0FMeDPA', 'Carbon']|['BDT0FMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.08.070|tTNZWTHNgpKPRJqt1AWznffYVDTw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT0FMeDPA', 'Carbon']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.11|221.7|0.725|17.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|tTPIl-4PkpQhdVDyzRLNQnPTaR2q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4||0.8|21.3|0.57|0.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|2D|https://doi.org/10.1246/cl.170428|tTZagrBOL7rB-CWG-LetV2hN5cub|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.08|106.4|0.64|7.38|['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'N749']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b23532|tThEqR6oucRglSmniTUh7BMo-23C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'N749', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|213.3|0.6|10.37|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c', 'ZnO-nw', 'PCBM-60']|bulk|https://doi.org/10.1364/OME.6.003651|tU0sUiF3NbxbqbOFj9TX2lSpceGx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|217.0|0.72|13.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj03089a|tU1WT--HqWxmFfCNoxt__UTuqduz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.14|233.9|0.821|21.9||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|tU9PpF0QOYwRkS-UKNWcSAbDNjX2|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.0|0.708|13.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|tULjrMIikHiBnnx25Ep9uT3hataS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|193.0|0.562|9.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PPV', 'Au']|['PPV']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|tULzykKZfJrf7UAutsiM1pz3D42v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PPV', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.848|149.0|0.55|7.05|"['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]"|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00610|tUWr6Oh9wUrw6cCxm03AuI6s4ILZ|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', ""Field's metal""]? The composition of the perovskite layer is MAPbI3." -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.03|222.0|0.65|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc07785e|tUZfYKb5hL15aFMMY_dHPGcG2w5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|80.7|0.515|3.99|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDQT', 'Au']|['PDQT']|['ZnO-c']|bulk|https://doi.org/10.1039/c7tc00966f|tUe71AX57kckrZ4egRJmu810A1Ek|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PDQT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.31|70.7|0.779|7.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc03359a|tUk4TQB6x7GBkDAOFQFnvMFBwY1I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.962|222.0|0.545|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|tUk6IRKMCUM1IyKngqbf3a3lAdTR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|187.4|0.64|11.15|['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01815|tUkfVe2-MOPEQvcP5UNHrt_yvAiS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7|||||17.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|tUrj7jLSSTK8tmtn9nJCq6raxyXw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.1|118.4|0.644|8.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1016/j.joule.2018.07.018|tUuMGJTxxqzo00pRNDbJYMTFrU4j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|226.2|0.63|12.6|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['SnO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.01.017|tV2-raeB2lXSvamfKjHNuunWIRPY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|139.0|0.44|5.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.15250|tV4J9LVBIAMJSiJbkxMIln8wzs5Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|232.2|0.65|15.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.04.127|tV4ZTLrQz1v0dFXjNnUaZTp-DPq8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|tV6zTn0xpR8Knub2KopJVxYX9fRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -Br39C83Cs17H423I261N158Pb100|Cs17Pb100C83N158H423I261Br39|Cs0.17FA0.75MA0.08PbBr0.39I2.61|1.6100001716761378|0.91|184.8|0.502|8.04|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'COi8DFIC', 'BCP', 'Ag']|['NiO-np']|['COi8DFIC', 'BCP']|bulk|https://doi.org/10.3390/nano10061082|tV9GApRAPs5Rsrbb0Io9v7B9R9bo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'COi8DFIC', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.75MA0.08PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|173.0|0.665|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Cu', 'SnO2-c']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1002/aenm.201602599|tVAA28TgxnKK6eE-LLuL6Ml-H5zz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Cu', 'SnO2-c']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|127.4|0.75|9.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01592|tVAim6mvh6zpaBS1p4FigcQa34Bv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|198.6|0.5529999999999999|11.52|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta00973a|tVCrXEInTfrglTfIJ1xNnw2t3XbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C91H470I242N167Pb100|Pb100C91N167H470I242Br48|FA0.76MA0.15PbBr0.48I2.42||1.137|202.0|0.72|16.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah4046|tVDHuL6G9eaf76JBzG6Kn_GlKi2p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.76MA0.15PbBr0.48I2.42. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|206.0|0.612|7.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|tVPISiOqYQmvA8_sD4_pbm8PcP1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.0|0.6679999999999999|15.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr06410a|tV_i5AoXZWfHC3EnZdUzZ1psMOWI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|213.0|0.787|16.0|['SLG', 'ITO', 'r-GO-NH', 'Perovskite', 'PCBM-60', 'Ag']|['r-GO-NH']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201701640|tVaCeJFweq6hRN0cbRtuakgS54DB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'r-GO-NH', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.3|0.62|14.12|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|tVeXEBtluttmaRgOx1CND5XlhQMO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|228.4|0.76|19.03|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8se00451j|tVjnMB_2fV9dvxr-23DD0COBH8Xu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.6|0.7070000000000001|17.0|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|tVniqVrEok_dTkNuEms5Hh9VvVEv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.038|227.0|0.72|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms10379|tVnsiLnxrpfy2KSCoB2gyxdPMYFb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C236H4121I2431N931Pb780|Pb780C236N931H4121I2431Br45|(NH4)6.8FA0.15MA2.21Pb7.8Br0.45I24.31||1.06|206.9|0.7290000000000001|15.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|tVy-Ub6U4Afkq4PDAhvtRh-l9ZG8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA2.21Pb7.8Br0.45I24.31. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|119.4|0.78|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02646c|tW35hQJzBtVlz_WG_1SO4lW0jsSv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.7|0.787|19.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|tW5Ioi6GH66nhj0_hzVTmqvXaGlI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.04|196.9|0.69|14.34|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|tW6ksxOP-6CFtVh_r7QZpyt6zXfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|225.47|0.5760000000000001|11.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.06.054|tW7oEuGeZq4iRVHQRySjv2TQZY_i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||1.03|203.3|0.642|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|tW9L0vnyAR-HKW9LBQwEp_LL2W8i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.0|135.8|0.7509999999999999|10.26|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|tWIZF6B6gqO4fzPq8enJvBfEvs48|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|238.8|0.637|15.42|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.135281|tWKMNBlO5XYnKNRRpApLioDcq0lF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.97|216.0|0.75|15.9|['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|tWWeMlKorzsVBGvg1NheygazBs75|a perovskite solar cell with the following device stack: ['PI', 'Cu-grid', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|209.7|0.772|11.29|['SLG', 'ITO', 'NiO-c', 'NBP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NBP-BC']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b02720|tWs5iBK07nGpFWBEol-1zl6GyokN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NBP-BC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|181.4|0.506|8.44|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.02.010|tXEWW3G3fS_tJRbM0bT9c2dZcN_F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|205.0|0.72|15.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Oct', 'Au']|['Azu-Oct']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|tXHGrm5P7KWVBZX9a8NmHZ5SHYsL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Azu-Oct', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C10H51I27N19Pb10|Pb10C10N19H51I27Br2|FA0.9MA0.1PbBr0.2I2.7||1.09|238.6|0.78|20.29|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Graphene oxide', 'PTAA', 'Au']|['Graphene oxide', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aax8018|tXMCe-V78AJUdHmQ8slyiujKZAjw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Graphene oxide', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.2I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|142.89999999999998|0.58|6.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02969|tXPR0OwqkZ0J8ui6xX4p79NQJDpJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|201.1|0.61|10.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|tXQ8iaCGWFoGYVrlwzasLhop3XaX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.08|84.2|0.64|5.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|tXRk1n1SooB_ObFoi0d0LM6Mcwm6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.7|0.71|14.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']|['P3HT', 'SWCNTs', 'PMMA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601079|tXSDlob--ZtVrRdcCIGIee2w645g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'SWCNTs', 'PMMA', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br510C900Cs50H4653I2490K50N1647Pb1000|Cs50K50Pb1000C900N1647H4653I2490Br510|Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49||1.11|216.8|0.773|18.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b07610|tXZWduTKUm0V5zoGZdzV8BFtE7DC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.853|80.1|0.66|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|tX_S0Kr0PVYTANvGSodp9AwU0o6Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|107.0|0.61|5.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|tXgFT_PhbMEBh7ViRMYdvvlup5fi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|199.8|0.613|13.41|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|tXilzu-siB0Su8tDlzFQiT0t5gv9|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|209.2|0.6970000000000001|13.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Graphite']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b18530|tXyRnzEEKumvX8goLF5Mry7RLVqu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|216.0|0.64|13.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/1347-4065/ab241c|tY0hiD_CF1zf9ca03QaSlCxSeWVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|214.6|0.789|16.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|tY6rn-Ljdnm8PpYn_vWysfoAzkEy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|157.0|0.578|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-c']|bulk|https://doi.org/10.1002/cphc.201301153|tY6tiBL1SSb3NL8bPw0uSwL27xDL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C14Cs5H75I285N23Pb100|Cs5Pb100C14N23H75I285Br15|Cs0.05FA0.09MA0.05PbBr0.15I2.85||1.158|236.0|0.8109999999999999|22.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-019-0466-3|tYKFSIAgen0EioZSmBE80MBTIkWk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.09MA0.05PbBr0.15I2.85. -Br3CsPb|CsPbBr3|CsPbBr3||1.35|76.7|0.6759999999999999|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|tYRIIL_bHwkTRvNAxpA6xuMihTvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|144.0|0.6|9.2|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c7ta04014h|tYVn8kTbQ0bC5IYjN3cXTb5X3c9y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||0.4|105.0|0.31|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.09.062|tYZjYwSPlEBAJtJyLJh5RyJSIANS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.0|0.72|16.1|['SLG', 'FTO', 'ZnO-c', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'AZO-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b11245|tYfPHqT_T9V-Q7ISfHgyjG-JSGoB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|183.2|0.6659999999999999|13.82|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEACl', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|tYsUG-3kgrTY4CMIUTMZ8k7RkeFQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEACl', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.8|0.633|13.54|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|tYylbopQ3CpahB2ZvbcIRMQmrWjO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|230.7|0.68|16.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800282|tZ0TF-u93pzKe8tz7kV04PEQo4Or|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|149.60000000000002|0.669|9.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|tZ4zzYaj7lQrIVfffNUw5D-TDGcO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|202.0|0.75|14.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|tZ7owuSmsxCxXJgAN-iQm8_5aoU6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891||||9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07625|tZHVlQoPxHDYa9LJQheaZ89sDtFE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.9|0.703|15.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2018.05.114|tZLJTdpIniwIsTI9PCGRpKYbK_hX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|22.6|0.33|0.55|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.055|tZNW16CbZIekeqPJS6DJAVh_UO3b|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|93.0|0.43|3.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|tZSqqYKjongPLKN7vS_huettwkDZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|218.2|0.768|18.4|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|tZUyz9zp7JOxvM5ijiBv2Wkap_AR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.993|200.0|0.73|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature12340|tZb7yBqlcIoKSWsTOZTUbRcFcMip|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.284|103.1|0.52|6.88|['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']|['none']|['TiO2-np', 'CsBr']|bulk|https://doi.org/10.1021/acsaem.9b00944|tZfDVdV_i5g39ekIJE5UJlKCHBvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'CsBr', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.91|199.0|0.51|9.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|tZlHFU1-CmnUR597XZ7Urj79O3Sj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.644|14.6|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|t_7YLrQG_LRtDTG5FdNF0LzK__dw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I250N166Pb100|Cs17Pb100C83N166H415I250Br51|Cs0.17FA0.83PbBr0.51I2.5||1.11|221.0|0.7390000000000001|18.1|['SLG', 'FTO', 'TiO2-c', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-np']|bulk|https://doi.org/10.1016/j.electacta.2019.135280|t_7y7XmlZTvp9KsQr7Y3Muaxp72k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.5. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.58|194.0|0.611|6.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|t_FQY9YUcWLhw_rFhCX11XNFxKYB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|180.0|0.55|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|t_JFsLHHvuKK1s0z8rA3G17xaWSW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|7.0|0.5|6.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201505140|t_Sx6JBOmeEaoXbbzfseB3aTU8im|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|217.0|0.772|18.5|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1002/adma.201604493|t__WTahPwTsIZ7DtqDeC_YB-utyb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.91|175.0|0.626|9.97|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF1', 'Au']|['BTF1']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|t_bWalzezV56U9OFSfjeQJxlC6q9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'BTF1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|237.3|0.691|17.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7ra12049d|ta0PqcWyq9XSgVKsfpbBuWY7AZo_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|210.56|0.687|14.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2']|bulk|https://doi.org/10.1088/1361-6463/aa9df8|ta2b9Jcj9YGCWxM0FcR4F9WjWSpZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|175.2|0.675|10.65|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.023|ta4zZqJiI-4Xa5hMppLd5KQ-2YWA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|209.0|0.69|15.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c6ta01074a|ta6gT-AadNqzEc9GPKfpmstBHvg1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||1.13|244.4|0.765|20.64|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|ta7gENE7U2zpGlmx6_PBDz_aSxnx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|223.8|0.73|14.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/ejoc.201700861|ta7oh4QwC5xHYWnZ8BGv1u0US1K7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|181.0|0.6579999999999999|11.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01118|ta9PNpUocnahk-XZYGjnxRaqS9iB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C40Cs100H200I129N80Pb50|Cs100Pb50C40N80H200I129Br21|Cs02FA0.8PbBr0.42I2.58|1.5900001695435149|1.048|237.0|0.767|19.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1063/1.5123400|ta9pYOHDIIaX0--CWWzRf8Zv2INs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs02FA0.8PbBr0.42I2.58. -Br9C4Cl3H20N8Pb4|Pb4C4N8H20Br9Cl3|FAPbBr2.25Cl0.75|2.3900002548484283|1.23|48.4|0.64|3.79|['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PSS']|['PSS', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901683|taADlLBW5Z-Vn_H7VGfapybQxxBL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PSS', 'Perovskite', 'PSS', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPbBr2.25Cl0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|222.0|0.75|15.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1021/acsami.7b18643|taARF7SBG6XwkRghyUYQEZJlogfV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.3|0.51|9.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|taJlk4DoKkJp-nkZJAR3VAUjI3CV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.991|207.5|0.73|15.09|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|taK7P0vWT1BcaMc6G2jcsPpQ4zUT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|taT9QT21w7PunEGPbYhbDWP3pSlg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -Br5C4H24I300N4Pb4|Pb4C4N4H24I300Br5|MAPbBr1.25I75|1.760000187670809|1.055|142.5|0.64|9.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|taTCL1svFvE4aRUkD4K4HZJDlx_Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr1.25I75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|186.0|0.615|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|tafWWOTnaNlxJhG6JXSOUi7XVx7o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.139|227.8|0.732|18.89|['SLG', 'FTO', 'MgO', 'SnO2-np', 'Ethanol amine', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['MgO', 'SnO2-np', 'Ethanol amine']|bulk|https://doi.org/10.1039/c9nr07876b|tanC7ETzMGfjhvgxAPpVIg3qsan-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'MgO', 'SnO2-np', 'Ethanol amine', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5950001700766705|1.06|193.0|0.71|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b10418|tardvM3gxsl2JQu4a93YpqQLp1iO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|196.2|0.611|12.45|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|tatNdHvngFRk_FA2uhJNIDN3odo9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|211.7|0.635|13.5|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTT-TPA', 'Au']|['IDTT-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|tau3U7tuEf6Z8oNvF9CeeZhEj7oa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTT-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.121|207.1|0.759|17.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|tauSEDRa_DeNV_eSMzmuJidTZkx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br51C75Cs25H390I249N135Pb100|Cs25Pb100C75N135H390I249Br51|Cs0.25FA0.6MA0.15PbBr0.51I2.49|1.6800001791403176|1.13|181.0|0.674|13.8||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.1c00810|tb3k6LIqDDoSmSLoBMRresOXudxe|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.6MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|229.6|0.78|19.36|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|tbA3H4pQdzVWIAUKOlT3izT_aZjY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.2|133.9|0.79|12.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1126/sciadv.aao4204|tbB9mL_KS7orGuD-2nhgT0eMy5kv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|216.5|0.659|15.13|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.6b13362|tbFOtDZITsRhiwcCZd2eqLegGlzN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201503099|tbHmlakpVinUKpf0_437OEeb_ebs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.66|14.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.245|tbO2sjKa9WNnKw_HbazYSR9B1YNd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|140.0|0.375|4.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|tbTyk5MfeiGvETI-bjj0G-4bXula|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'AZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|217.0|0.603|11.6|['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['Ag:CuO-nanofibers', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/pc.25527|tbVv2-7KD0aYid11DOcANATLTh7S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag:CuO-nanofibers', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100Cs100H517I250N183Pb100|Cs100Pb100C100N183H517I250Br50|CsFA0.83MA0.17PbBr0.5I2.5||1.0659999999999998|214.45|0.74|17.09|['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SWCNTs; TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.03.015|tb_IcuTIfN7lclsbZ5F08EgcohhN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SWCNTs; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsFA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|206.0|0.69|15.26|['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'CuI']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/ma12091406|tbcYpb4oGY0fDFzLjyPbIobqiBE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'CuI', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|225.0|0.74|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V950', 'Au']|['V950']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.01.015|tbhWVJSE-aqcWRWwehKCre7wUhDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'V950', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||1.01|38.2|0.65|2.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.9b00238|tcAgIy2Wn2NyYUcnjS4uG8tqYlUg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.24|74.0|0.603|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th-PDI', 'Au']|['Th-PDI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04828a|tcJRlEcAvZMMRgM9-4pwBeLW6AeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Th-PDI', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|194.0|0.65|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nl401044q|tcTjBvjaGdhivz0__Fyf_G5nzkIp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.6|0.78|18.27|['SLG', 'ITO', 'SnO2-c', 'CBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'CBA-SAM']|bulk|https://doi.org/10.1021/acs.nanolett.6b04015|tcazh6zRe_azSOjojcDvzqbFE7QJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'CBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|111.0|0.5479999999999999|5.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MUTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|td51vbzJJwyCvimYgRUDKVT7REFg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C104Cs5H531I260N197Pb100|Cs5Pb100C104N197H531I260Br40|Cs0.05FA0.93MA0.11PbBr0.40I2.6||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11433-019-9356-1|tdHH3KBr81egZzGMxq_QrdbDTc2K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.93MA0.11PbBr0.40I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.94|194.8|0.5329999999999999|10.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'Ag']|['PEDOT:PSS']|['ITIC']|bulk|https://doi.org/10.1021/acsami.8b04861|tdUVkevi3oPyIMen6CC6VeXlk1CN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ITIC', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|225.0|0.7659999999999999|18.61|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']|['PTAA']|['PCBM-60', 'Polyethylimine']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.021|tdUt5gxOyDstfwxZlm1n9a8L3fOI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Polyethylimine', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|218.0|0.74|17.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800278|tdYgOJR3fUFTSTkp93vrkbKPY20p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.14|265.0|0.818|24.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|tdcJwbg1PI85KmRlR8OuMqpJQ_Cy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|106.6|0.58|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12323|tdosV4K9GpT8LYvbCIYHGDEbBrdw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|107.0|0.57|5.6|['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'Ag']|['NiO-c', 'DEA']|['C60']|bulk|https://doi.org/10.1002/aenm.201602333|tdpo6NkBYqwGlCyTFr8j7xbyvYwc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'DEA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.063|190.27|0.762|15.42|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||tdqZBICZU1pIxQLScv_NwFZsRAIi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|39.7|0.415|1.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|te0Gxqe2HMctzd5dc3OvCe-X7IE1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|139.0|0.51|5.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-OR', 'Au']|['P-OR']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|te1YYH3Vq-d8MLe6VHBqQovBDo9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-OR', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||17.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|te2qDrqVo71QcLZbAFTyuNF0EUSl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.85|223.8|0.5|10.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.005|teBA9EIx2vNOOc5J5VNoob3GTPn7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -C5H30I45N5Sb8Sn2|Sn2C5Sb8N5H30I45|MASb1.6Sn0.4I9|1.850000197267612|0.66|52.2|0.55|1.89|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b12018|teHZXf0VxMFkVJHZDL_0WTb9s4GM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MASb1.6Sn0.4I9. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6300001738087604|0.95|178.5|0.56|9.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201705545|teQQnkcPUmXyZLkqz3ccM9UrGMW2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201503298|teRlVt4_TDCdlzPpjiB2lP5X9_kb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.95|219.7|0.72|14.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']|['Spiro-MeOTAD', 'Cu2O']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-018-25975-8|temwypnFxu9-9V3dj-j50cSUVEes|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Cu2O', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.92|213.4|0.65|12.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jssc.2017.03.005|teq8mV2_U6RXbg2FA5MmD_GWGHsc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.385|200.43|0.55|4.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||tf15eydip6aombyyOzVMXjiPpnv8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|143.0|0.544|6.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']|['PCBM-60']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|tfBmiN5NJIxDSwDr24KT1c0dnoNA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H600I279N100Pb100|Pb100C100N100H600I279Br21|MAPbBr0.21I2.79||0.966|198.7|0.752|14.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2820909|tfJl7Tq776tC1e1BbTSnWoNOT9nm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|60.0|0.23|1.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|tfPc4QbT3CKHKyTaqmUrIWRfT_-S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|234.1|0.7|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7CC01573A|tf_F7VPV_C8sD9E6asGcDStMEqln|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|179.8|0.72|13.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'MUTAB']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|tf_y-5c-pjYGaga3SO4DNLf_ktn9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MUTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|135.6|0.3279999999999999|2.45|['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.09.047|tfnugzUAuklLFKChN4UUXd241dD0|a perovskite solar cell with the following device stack: ['PAA-PEG', 'Ti', 'PANI', 'Perovskite', 'PCBM-60', 'Ti-grid']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|165.2|0.54|8.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5026797|tfqM5UGG2Xwliixpel-RyPRb0Dbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|238.0|0.731|17.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|tfxsHGRv8ZoiZXN7k3PNuPcWvTws|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C25Eu2H150I75N25Pb23|Eu2Pb23C25N25H150I75|MAEu0.08Pb0.92I3||1.0|209.0|0.758|15.8|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra12754e|tg4lxJfP5h1KSRJgR2-UTKIqFRuU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAEu0.08Pb0.92I3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.121|223.0|0.759|17.91|['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc05864d|tgCUXk_nq_3OrWYeRsibyr-Pzh5y|a perovskite solar cell with the following device stack: ['NaYF4:Eu-np', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|225.7|0.71|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'Ag']|['M104']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|tgUcDvKIywOnaVwHcTv1FEYIr24F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M104', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|209.8|0.66|13.64|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1002/ppsc.201800137|tg_7JKmR4PPk9V31e5cPZjjogNst|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.112|234.0|0.82|21.2|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|tgcqktoUf8eo-ptH1NTERnfoxqNz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.105|220.3|0.763|18.57|['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00375|tgeVkMDzyWT01ixXmuDoi-1Z5m5t|a perovskite solar cell with the following device stack: ['Mn:CsPbCl3-QDs', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|182.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|tgkgKawEay3S027qyqbxUn4xTCsG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.836|196.4|0.63|10.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600229|tgouYKrKdDPHQyR7c-9z8Gppw9xW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H600I300N100Pb93|Pb93C100N100H600I300|MAPb0.93I3|1.4400001535488438|0.91|195.3|0.568||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.175|tgqcC7vnZM5daDqAJSm2Ytcynl3q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPb0.93I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|219.0|0.73|15.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['NiO-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|tgsj5IhVEyGsgO1BcRf80F1B8wOx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.054|205.7|0.68|14.74|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.03.176|tgu-xJEdZF6grz2Ia9_6MAvnb238|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|197.6|0.698|13.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-404', 'Au']|['SGT-404']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06716a|tgzV9ExbvsdhBY9P0EvhZEKWCN7U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-404', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'C60-np']|bulk|https://doi.org/10.1039/c8ta10510c|th7oUuFqnfILSabDQY4N4RMNoqp-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'C60-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.0|0.75|10.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta06163c|th85a7wrIwIcveUAZg2G9K-gp2Lv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.908|226.0|0.685|14.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|th9awPzKrg5koFM6lvE3Xhi_Ydez|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|230.0|0.68|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10228|thFR_YFtoolCD8ViPhokoQzgyK-X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19Zn|ZnPb19C20N20H120I60|MAPb0.95Zn0.05I3||0.98|173.0|0.648|11.0|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.047|thFjBJ9g8m33GwYMBPAmt-v0N5Gf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Zn0.05I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|181.0|0.568|10.9|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.jechem.2017.09.026|thKCEtCdbc0R0tGqmDePE-on9yx4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.9|161.6|0.688|10.13|['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9070932|thQiFmkZtnmJii5dvVf0OF-Rr9VL|a perovskite solar cell with the following device stack: ['SLG', 'Ni:Au-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|123.9|0.43|3.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|thSC9TBHdxG4HryBHUqk8-R4BCjw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.08|237.0|0.75|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806053|thU6WWclYylQqyyNVQN6IZu-Kava|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.16|202.0|0.71|16.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b13740|thUfktj1dm1Wd394d4Cayb62CMog|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|189.0|0.63|12.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b09322|thfVqEc8Et8RIru0NYfaIfN_sj98|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.109|210.7|0.7040000000000001|16.37|['SLG', 'ITO', 'ZnO-c', '1,2 ethanedithio', 'Perovskite', 'PZn-FTPA', 'Au']|['PZn-FTPA']|['ZnO-c', '1,2 ethanedithio']|bulk|https://doi.org/10.1021/acsami.8b10170|thhyAg80QLuSxm21PNiggEDusHcK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2 ethanedithio', 'Perovskite', 'PZn-FTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.33|70.5|0.698|6.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|thn-o7Td-WIYY_Ims1VXAtYc3_qD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|210.2|0.77|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|thpciJffENqnnXpig11EtGCV80Ly|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|75.0|0.21|1.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|thzYRtLUmwytlN5OA1Lj-W537wPD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|214.0|0.76|16.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41598-019-41328-5|ti-LKnzHI8qHqpPtIEFWZnYgjP1j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|216.5|0.675|15.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cp03934g|ti7IUD3a76g5sYA9lZ4fD8C87Kgq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.904|155.0|0.655|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz5011187|tiBEUFIu0nRPjSeo8BXYbS-cfA3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|168.70000000000002|0.502|7.88|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c5ta04313a|tiWpxoETvPPancbgsahriASoX10G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.1|0.628|15.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|tiXaiV4SptrzW8e7NJi9WJ3yMpB9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|239.0|0.69|16.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.150385|til5z45GBUJb9VN8eWFY1CEX3ThY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||17.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|tiq67s7OUbTL7KEbZv1Czc8HlhkF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.103|181.2|0.6920000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE11|tiyEni86ua-I369xNoB5S4P6tx1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8370000000000001|165.39999999999998|0.7490000000000001|10.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|tiywUCs8eRwHTMeFdcPSmkDMhZc2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|180.0|0.688|11.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2']|bulk|https://doi.org/10.1039/c5nr08344c|tj1YOba7HH9HZy_Zn-4bqN-Efb0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||||16.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201803244|tj3HWx7FPv0VyJdETuaLJfu-1xNv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.0|0.38|7.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|tj82p6EHdRGNUQBwu9f-aKKtrl7l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.05|120.0|0.514|6.5|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2018.08.005|tjHfgLphbmovicW_PCdWSU7w4pXV|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.79|15.730000000000002|0.693|0.8590000000000001|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|tjMWEEumFk5JR61BD25abXeb-X0l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|213.6|0.68|15.35|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta00398c|tjOztJ8Gj448EAINEM4Diqk6P7dD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.71|213.0|0.47|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']|['Graphene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01606|tjPbJzxyRh5j5VCPeTbHtY5LQjAZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|209.0|0.63|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|tjZ0rXDaiWMH0MoQcOySCZJKGZ10|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.6|0.69|15.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00726|tjnThidOkwZJNQ0t0JdxZ7nKZbAt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|189.0|0.65|9.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|tjtJYXvluvxoMS1914kR_Q5gf4GE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.500000159946712|1.05|175.0|0.54|9.99|['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']|['PEDOT:PSS', 'VOx']|['N2200; PCBM-70; TT']|bulk|https://doi.org/10.1117/12.2240755|tk3EcgLuwFtySmoSck1Yk9PNroTb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Vox', 'Perovskite', 'N2200; PCBM-70; TT', 'Al']? The composition of the perovskite layer is MAPbBr0.3I2.7. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.981|161.0|0.557|8.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.180216|tk4_d-soe_97bqGulLGDYBpAXhg-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|201.1|0.61|1.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|tkDCrp5fLq7ht0nvmpdZQ5Jtdn9u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|169.0|0.6|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZnO-mp']|bulk|https://doi.org/10.1038/s41598-018-20296-2|tkKrtVY1TeWG33-ohdDVAqp2CkC4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.4|0.61|12.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b01558|tkQeMJ3pom4zXJsawC6r_xvvsg82|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|158.0|0.4|5.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/APEX.7.121601|tkdXQf2cl7sLatk-NaMki_GMlWxa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.95|218.6|0.71|14.71|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|tkk0aWXSZhPHuEfHasNk38bSASFG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.095|195.7|0.775|16.61|['SLG', 'ITO', 'PTAA', 'Perovskite', 'CMB-vTA', 'PCBM-60', 'AZO', 'Ag']|['PTAA']|['CMB-vTA', 'PCBM-60', 'AZO']|bulk|https://doi.org/10.1021/jacs.9b03639|tkpYhgm5XxL9zMvohM-E1BKJV44f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'CMB-vTA', 'PCBM-60', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|209.3|0.627|14.18|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|tkr3D9ZEc6LfjP6FNs5y_R_Ifl2a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|||||['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|tkwC7VRXoSTgda7d1rJ8r0Ya9fOx|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|1.11|39.3|0.745|3.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06177f|tl8Ft7NdSGs6ov20FLbTOpEbuDgI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|225.09|0.763|16.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|tlDGLL4WQN2YbGbwb1xj8abfjpFa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.6300001738087604|||||['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800794|tlHRyMeHX7CPWQ-madcbWCdsTMeh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|231.5|0.794|19.58|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta02144a|tlWaNgHDiqZq-0HdgUJ3xWceCPA6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.0|0.71|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']|['tetra-substituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|tlYKSE0Y65DybSGwInecxGqb2T1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Tetra-substituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.116|225.0|0.76|19.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|tlrO7NuYkB0BGFbt_8DMg0j3NryX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|190.2|0.752|14.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/coatings9110766|tlsZubQHs6bxcARJ0jIqYVnSicqR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br78C189Cs10H972I522N361Pb200|Cs10Pb200C189N361H972I522Br78|Cs0.05FA0.81GU0.025MA0.11PbBr0.39I2.61||1.124|216.1|0.7290000000000001|17.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900234|tm4DmzpOs6OtGFNOam--EOcyY1dG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81GU0.025MA0.11PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']|['SAF-5']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201807094|tmEGHvl54R9g2O5zmMA1RW5arEHh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SAF-5', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.8|0.67|12.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.6b03089|tmH4s-YfGIAnNY_E2gCE1qEUpR-4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|176.0|0.65|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08021a|tmKXjecQI_f01wg549rXK4eA0feC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.909|206.1|0.716|13.41|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ta03164a|tmYWxK9mW1NOzPXMX3L3NsqT_9gE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|192.0|0.69|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc09556a|tmaVeepwfc11qWUDRlq_Bd8Ieqll|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH5IN2Pb|PbCN2H5IBr3|FAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|tmd8rWPDyvGOdTS6mW6cuyL5dFbt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6500001759413832|1.025|175.0|0.71|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03322a|tmkAeJSJXa4_pm-J07zwKAwM9n4c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|227.0|0.75|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.01.015|tmwSIce90DCAt7htjXFJS8osCM04|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.08|185.0|0.72|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|tnMWeaWf3Klnj0PyVkCIofZ6s5ud|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C40H240I111N40Pb40|Pb40C40N40H240I111Br9|MAPbBr0.225I2.775||0.79|182.0|0.46|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05470b|tnNJlFZ3Qsxy9YLoSQ32tpoHKN3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.225I2.775. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.04|184.6|0.787|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Au']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.jpclett.9b00750|tnObkdEY4EcsCSKqvwuvprdiQQUc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Au']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|119.8|0.43|4.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|tnOg80rykpkmFXjGL0Ec3fJCPTGH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPb1.0BrI2|1.9200002047317917|0.9|117.4|0.602|6.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b14039|tnQz_QSaV5tI94ayhODYXI56dk_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb1.0BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|151.0|0.41|5.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.025|tnTl3nsrn_8B6kZvptEuO1V-q5C2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|126.0|0.62|4.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|tnXJP3X1DxMVMXhEJ6jRO6RmojvX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|205.4|0.54|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793604718500807|tnjMgAAlGWZiLnsceHA9neRyaAeq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|221.9|0.706|16.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2877022|tnpdU9YWA-dnb1Ukhb3KnYrro7PX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|207.4|0.66|12.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Th-OMeTPA', 'Au']|['Triazine-Th-OMeTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc04550e|to-pUthdUSLAXF5ViGq4tsjp-ovo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Th-OMeTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|183.0|0.77|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ra06631d|to4xSlYStMsFjccvA6r7Z_ZF7lkj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.12|225.0|0.77|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703659|toDfBx36ymAQ1x9mnHC-YRg4cQNY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.02|228.8|0.6859999999999999|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.10.001|toMdMJlCGg9VeEm3LlO50s_sddhQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||16.33|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|toOoQZZ35a57TkCM616P75uENjC7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|218.0|0.682|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502104|toT-wcPa3TAkKkUp6J2l39vUi9F_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.879|155.29999999999998|0.6409999999999999|8.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp04902k|toYMwXfToSoJ2GcuP3_A2SslF-iG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.012|8.299999999999999|0.41|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-Ome', 'Au']|['3,6-cbz-EDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|tokIEOGqayK75NKPR_OTOZIQA6lt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-Ome', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.92|182.6|0.51|8.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800909|toxoix8OmpSjVWXhCYJp5FGq0A8K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|193.3|0.629|12.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|tozAJT4KKQV0bDz9XbDupd4-hra_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3|1.5400001642119578|0.9|214.0|0.516|9.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solener.2020.05.041|tpAJm0VzCVpNy0K_7vYG4EzMY777|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.831|160.6|0.405|5.41|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|tpKQJQkxCu_L6Wex4P2LxXWWlYOj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br19C200H1000I181N400Pb200|Pb200C200N400H1000I181Br19|FAPbBr0.095I0.905|1.5900001695435149|1.107|183.8|0.7170000000000001|14.58|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|tpKkikkDdxT3gxnQhFEsB_8CL17E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.095I0.905. -C910Cs91H4702I3000N1668Pb1000|Cs91Pb1000C910N1668H4702I3000|Cs0.091FA0.758MA0.152PbI3||1.04|222.3|0.72|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ee03051k|tpjiDvChBiaJrA4IU2oODLx9cGnp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.091FA0.758MA0.152PbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.96|179.0|0.75|12.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.026|tpnKK4espAIsDsvEFv9DUgnucWbE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.02|219.0|0.679|15.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b19390|tpohdVWv7htvRpxe1LxwM8KkKDbS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.570000167410892|1.03|210.9|0.72|15.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606801|tprVBBEyfqKQ8faGuleKdAQiRJL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.019|9.5|0.65|11.59|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']|['H101']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|tprq2dcWt7rN9-qdgDZ_OlJqAe5a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.0|0.7559999999999999|17.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|tq2oLexOfSNiCy2Jrlopx6SV1iHO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|149.0|0.72|10.1|['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2BaSnS4']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|tq6lgkCr2bcCOzIe9aOFnJo6GaO6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH5I2N2Sn|SnCN2H5I2Br|FASnBrI2|1.5500001652782691|0.6|198.2|0.64|7.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpclett.0c01859|tqA8lxbpG3ob7YZsW00YB1VUrXBR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is FASnBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|198.0|0.62|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8']|bulk|https://doi.org/10.1002/jccs.201800173|tqCipKtHZrFSi3oigxQ4w18R721E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|80.0|0.72|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b05986|tqDlx0phWabpNG37ky2d18O5NXtm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|201.0|0.5|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TC03077G|tqHE40-NlvU7ypn-NDcdjwNf8miC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.074|216.0|0.6809999999999999|15.8|['SLG', 'FTO', 'TiO2-c', 'CuI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CuI']|bulk|https://doi.org/10.1002/aenm.201702235|tqLbKtZrI_ImgnDL5NJlHkLnWQ3K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CuI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.82||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b12799|tqM2nvUfPzHIirxjryzCjULU64pf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.14|228.3|0.7959999999999999|20.71|['SLG', 'ITO', 'NiO-np', 'NaCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np', 'NaCl']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/aenm.201803872|tqP3TvULVzImiko_QzoBq2GQNf1V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'NaCl', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|155.29999999999998|0.43|5.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/1.JPE.7.022003|tqPnavYKsMgF2oDkdXwfC4vKKDO5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.901|231.1|0.65|13.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9ta02459j|tqSvbdefx6OR-JdFqPLDECP2_4QJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|198.4|0.778|16.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2017.12.043|tqTMpIjBzqz50cHuN9IMJd6mgflA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.13|217.0|0.826|20.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.9b07594|tqTXkrq-ATJzvTtpCbB7AzTnKjHa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.62|112.0|0.315|2.19|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1071/CH15245|tqY9TNeEIfJgmBvK76r-2GIVdtBR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.12|238.4|0.778|20.78|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|tqcpJtApdTc7ypPUQj3IdgiRowJe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|207.3|0.79|18.1|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|tqf3pqUaTt3rjca6H0WYJyYmkpkN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|185.3|0.74|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.08.013|tqpdrb3tj8oO4JYjn8yxHJu8kM_W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.44|16.299999999999997|0.493|0.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB8']|['TiO2-c']|not processed|https://doi.org/10.1007/s13204-018-0744-6|tqtZJFJiAwLk1346CnVTV-4Bz0CE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpcs.2019.03.025|tquJzMdJAn1ZYSXieT2dNWc-fl59|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.9|0.62|13.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']|['CuGaO2']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|tr-X8URimhwj6FKe8F4l7qWICG7X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuGaO2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|199.0|0.59|11.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08231f|tr3S4lCHlSB0dA9f-pXGc2ct_vxD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.06|219.0|0.69|16.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|tr8oc4vITbCLzsj9kyWVEN38xoYo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8079999999999999|168.0|0.58|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|trGZwW0QBo_BWAbgpkpEFjtgZi0u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.0|0.79|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|trI71FjH8lRzpXPlGLKJvUo1hG7i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|139.3|0.63|8.52|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c5ta01200g|trIupqambDQwQx-0jY1XClpgC6lc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.8|0.63|13.34|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.087|trOhuIBdhRjhQFWr8J3bHCKs3v3s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.165|210.8|0.778|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|trfDJXJH5fTj0HfTj12zz9qgURZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.091|222.6|0.76|18.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2018.07.106|trgqzTOC14FZwUzKkPjhnrb4wgIP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|201.0|0.72|19.4|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'pTPA-DBTP', 'Au']|['pTPA-DBTP']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|trqJYqRJWANzlg8pHxcadg1yNeTe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'pTPA-DBTP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.0|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|trsXMjMaqURA46ad8Zqr9PxXmMys|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.11|125.0|0.624|8.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|2D|https://doi.org/10.1021/acsami.0c05714|trvf4MEGAmSrQHeFSjxy247hVrnV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|196.0|0.7959999999999999|17.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b14592|ts2dEHtjcgMOpw79y1RqMaS1xvBP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.14|235.4|0.77|20.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.6b02613|tsHmHuq9neVUEQiSPzl-2HRFcSB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|170.39999999999998|0.575|9.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.10.018|tsJHDELduGLFeHxa3gBY3h3EYfy5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.926|168.0|0.63|10.31|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|tsMETRI36TJ1pHkYxyTFO1r7wW81|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|123.2|0.63|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|tsPYKDgsVybicCaj-l15i2cnPFcL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8|129.0|0.3|3.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']|['DR3TBDTT']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|tsSJ19mVthnurhVppg_zCbPqY68K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DR3TBDTT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.7|166.1|0.46|5.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00526e|tsbQD8qGzSN8QYXvZWZ05eN1Ti7A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|210.3|0.7|14.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3791/55307|tsr_gOFb9kIkuWGyyMyFF_mT-5aY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|187.6|0.6859999999999999|13.07|['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']|['CuPc']|['C60']|bulk|https://doi.org/10.1039/c5ta07829f|tsz3MGNbuIfmZlVL6xoB3nzkzEPa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'CuPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|87.25|0.4039999999999999|3.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|tsznaAMzaumVm2V_0H7mTEUAg--b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|171.29999999999998|0.5660000000000001|8.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.01.035|ttE4YmX6UV10eiSMP0fcVCCBXit1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.17|229.2|0.74|19.84|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|ttE7InsRi51fc0I3V7J9CgS3zONX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.0|0.7|10.78|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c6ta09174a|ttKob_HHw5TkOmD5GZnOKbr01ZyY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.26|69.6|0.57|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|ttLgRhJCj2g2e2aGhiwTSxKGECoz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|205.0|0.63|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201700173|ttS6wCQia52w7mRNVtb2UAQHZiUa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|91.0|0.36|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|ttTa97Qeq71p5TBpRWAgOVJnxeuO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.759|151.4|0.4529999999999999|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|ttetRUBnaOkji1dGpmbz-ZeuTF7A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|176.0|0.62|10.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ra25160e|ttvYo3cFEZkIqGdN1grM7Ge2wtFq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|226.4|0.7240000000000001|15.37|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|ttvhHPaS_JnWr8T5Cm3P9Wfgq6eW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|172.7|0.746|13.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.jpclett.6b00058|tuQqYKQ1EL6MQkrf-eDOQfcIGULl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||1.147|233.5|0.748|20.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaf8060|tuT-kWMo2PgY4i6VWyRRMNZKoDTT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.085|226.2|0.73|17.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']|['Y2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00607|tuUK2UkPmNDgwewVXhS1lR9eyVWj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|136.3|0.76|10.96|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solener.2019.08.026|tuWK2NDPLckAyYjzon_3KRR1GOCR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.5500001652782691|0.76|256.0|0.684|13.27|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|tubceNpXbs_gYt6l9eEXa8Yl9FSa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.81|130.0|0.638|6.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01589d|tubo7riXZr2LbfIrPIrixd0Nrd8k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008|0.93|185.0|0.46|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03577e|tuduz6meGtAXP-I1vkA3HYipwzb2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|162.0|0.69|9.8|['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['WO3']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c8cp00645h|turHNn-x6VudrZkrBOZ5XYOY1yFz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'WO3', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|212.0|0.75|16.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00328|turaMQ09hKEnGFoSbwtyCqzmq7Nu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr05917a|tv1vCrbcf3eTrA72SAn4IfFMPB6R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|174.0|0.596|9.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|tv3AQiMvLUDsDN9VMCy0QfN1lan0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|107.1|0.59|4.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201306217|tv4dvKeuCf4sc96dRRYZmMknFmHn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.011|214.5|0.75|16.26|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201800083|tv6NFdbJ2SrjemlNFRdvuXuAWteI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.109|189.9|0.6920000000000001|14.57|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|tv7jq5EVAe4QbHI2GTNVCERpcwbe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -Br72C165Cs35H840I528N315Pb200|Cs35Pb200C165N315H840I528Br72|Cs0.175FA0.750MA0.075PbBr0.36I2.64||1.134|221.9|0.813|19.9|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']|['NiO-np']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1021/acsenergylett.0c01130|tvCxpKNzLd4JSnOtwhvT4-2S1qak|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO', 'Ag']? The composition of the perovskite layer is Cs0.175FA0.750MA0.075PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|186.9|0.67|12.31|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1002/ppsc.201800137|tvRvS4xlbr2QXVI8oBL5mpUDaXct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|158.0|0.56|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']|['NiO-c']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c9tc03922h|tvZqBb4T38AINjhlpiaelNyZf-Zx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.951|165.0|0.72|11.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 1', 'Au']|['2,2′-[(4,5-Bis(1-octylnonyl)-dithieno[2,3-d:2′3′-d]thieno[3,2-b:4,5-b′]dipyrrole-2,7-diyl)bis(2,3-dihydrothieno[3,4-b][1,4]dioxin-5,5′-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03865k|tvh9Mg_ylilt8haa3YdpEBCkuw5E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|212.1|0.733|13.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|tvmcSSl52j13IO8VI0EuZ4zXY7nE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr00372b|tvpYUIvDPlQQf7hX1mB7myBeyUqV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|200.1|0.74|15.42|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.004|tvqsZjpm8I0J1YVFyGOgpfxomRKx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3||0.8|78.0|0.8|4.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|tvr8j7pTxZaAVjke_WJAJUXoXX2i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5980001703965645|0.89|197.0|0.6609999999999999|11.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-1872-8|tvxZJI0ewlNrXS-wP9c_hV5dHY-5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C177Cs3H565I140N74Pb24Sn16|Cs3Pb24Sn16C177N74H565I140|BA2Cs0.15FA0.85Pb1.2Sn0.8I7|1.2700001354215498|0.61|139.0|0.59|5.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1021/acsenergylett.8b01411|tvzEh9N5bbM0foLfxbF2mcmWZ-Hs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2Cs0.15FA0.85Pb1.2Sn0.8I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|154.1|0.7|9.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201600303|tw4xphEi_x7AcnTVcbobknU525eZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.0|0.785|19.7|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']|['P3']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|twDwUdOIOzqXArxkLR_3fZd99o6V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb20|Cs2Pb20C18N33H93I50Br10|Cs0.1FA0.75MA0.15PbBr0.5I2.5||1.09|201.1|0.696|15.25|['PEN', 'ITO', 'PyCEE', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PyCEE']|bulk|https://doi.org/10.1021/acsami.9b03304|twOaPnfTWI2eJGqsXqhKj6r4VZZH|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PyCEE', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.5I2.5. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.06|216.0|0.688|16.0|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|twTXxPnXNujfLviu1-vItnADf1VY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.038|129.13|0.255|3.41|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|twY3p6yRPlhGtRtHIvUqQWBSmYgD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|199.5|0.69|15.47|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.027|twd_nZYS3-VXDXZ92OwIGL3AK0nM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|103.4|0.59|4.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.03.022|twdoZ7MY5Qlbb7TFL5dk8kW7AR8E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H53I29N17Pb10|Pb10C10N17H53I29Br|FA0.7MA0.3PbBr0.10I2.90|1.5800001684772036|1.06|231.0|0.71|17.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105430|twdvWFos59bSEPjVP_uS9IovILyt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.10I2.90. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|151.0|0.593|8.1|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|twjjfq0VttsBXL89XX8f0_laHvXD|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|181.7|0.61|11.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneDTPA', 'Au']|['EtheneDTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201502741|twpiEPI-eMcP4MXHnDyLv0MAGHJz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EtheneDTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6880001799933666|0.96|206.0|0.76|15.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.6b05770|twq8tI82H0ZiFWzQ__qeXBOLyKkY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.06|84.9|0.603|5.43|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|tx59bc4uFIjegtFDgCX6tUXxeAdH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.626000173382236|1.01|174.8|0.727|12.88|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|txEbhipiMm-Ko4afOxns7fK_EpUO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|112.7|0.75|8.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IC60BA', 'bis-C60', 'Ag']|['PEDOT:PSS']|['IC60BA', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201402321|txGvLmEXxKrS0PNe1AI0_u_Vc3AE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IC60BA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.32|64.6|0.26|0.54|['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b16499|txHUAyfAphKi4YXdQQf-3hZssZFg|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Cu', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.063|179.0|0.72|13.7|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|txh-bxder8F5K_8BXcqRDqE7q4zG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|210.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|txk4pioFNVyyWMp3IdjuiLqhKKd2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3CsPb|CsPbBr3|CsPbBr3||0.89|62.2|0.684|3.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.050|txtMMcxxiV-GZz38gn1Yrj-u0QMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.14|213.0|0.74|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|txttjmt-rYWlbAc9eO-4hkQLb9gG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|127.0|0.56|7.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c6ra07686f|tyQwKefMbD1nEzsO8wO8LlqCeGN0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|214.1|0.49|10.18|['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Ag-np; TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8100815|tyY7ntVPKYstWWh-zAuWtzJ6eKhM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Ag-np; TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|160.0|0.53|10.6|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|tymA_1X0MlrlHr_2owQfZQcJNPJV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|200.9|0.49|8.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2015.10.003|tyoTDviW9hb0BPtz8obzrp9AuTwX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8109999999999999|125.1|0.6859999999999999|6.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp06418k|tyrDVnMHn7CXhqc_X4ihERfcECXG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.65|224.7|0.431|6.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Au']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1038/srep39132|tys0rR5xCsIn9VStSarFkV07Zyun|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|173.79999999999998|0.53|8.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ce00724e|tyt_52XZCk-pcl53kpt6W53xJPlY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|238.1|0.698|17.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']|['2mF-X59']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800352|tz2d96cYX7RK1cliMytTN6M8iU5P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '2mF-X59', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|192.2|0.63|11.4|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solener.2018.03.054|tz2lx1xS8mMa1k_Nztrp_BazopB_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|204.0|0.609|13.2|['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1039/c8mh00511g|tz4le9BJc6xmdaUv43Ym2OMmAxee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.938|232.03000000000003|0.52|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201900681|tz9kGyoP6TsYrGf2YqnUoO9aGhf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.048|211.5|0.71|16.15|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2019.05.067|tzCFIFkuLf_MgFg1rnrl4JqZvmT_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|214.0|0.59|11.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/ncomms15688|tzCG92MR5B-ALsbUJEjJz1nbKQSN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.818|116.0|0.5539999999999999|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2557|tzTB-4RCIR1deN73lVyOSWJgua9p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|1.406|67.2|0.7709999999999999|7.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|tzVNuVjt7BR8xawTOLK4EXIh3HT4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|224.3|0.665|16.18|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|tzYeWIq1N1d5v9AaI_b5LnK5VH2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.94|197.7|0.5|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|tz_UfgGDbr26QlCbTUwuT1-cnH6W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|219.5|0.65|14.94|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/ente.201900868|tzpZEjQkggT5c5-H09ipuzvXBPpy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag', 'WO3']? The composition of the perovskite layer is MAPbI3. -C9H29I7N4Pb2|Pb2C9N4H29I7|BA2FAPb2I7||0.88|24.700000000000003|0.332|0.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1111/jace.16284|tzyfFx24PTGHHTsy2BP59dcoaihp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2FAPb2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|227.5|0.76|19.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']|['PEDOT:PSS']|['PCBM-60; F8TBT']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|u-1zGv_Hv2Roru96Aw5n57CkJsPe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; F8TBT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MAI', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01508|u-IhsnS0TYoCSCgaTJWS5YD0b9Nk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|54.0|0.6559999999999999|3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsnano.6b00225|u-WSkG54KNO9uciHqLxFmWbSY4W5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.06|84.60000000000001|0.655|5.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.202001535|u-bRdNX8wW9YbAaylLvqy_ttgzeh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.1|0.644|9.29|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.07.041|u-idTBnhR6UKO2hRSksmHnqR8KMn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.04|216.4|0.6920000000000001|15.5|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|u-s0voT6XT-hmYIUmeUB4i7Ohymo|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -Br54C81Cs19H405I246N162Pb100|Cs19Pb100C81N162H405I246Br54|Cs0.19FA0.81PbBr0.54I2.46||1.08|190.0|0.75|16.0|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.solmat.2017.07.013|u0-5CQb0PsGc2fYvBnYmX5h-nV8K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.19FA0.81PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|216.0|0.767|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b14423|u02v_dRk2Oe2mNqjuxb6NWAb4eiJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|14.4|0.602|0.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta01198a|u07WLlCKd48Aac8mCGAZ2g513xbT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|226.6|0.75|18.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|u0DYgCXi9Rf1u0xuYdKyWAjk0aIo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|117.9|0.64|8.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']|['CoPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2016.07.013|u0RKfFpUwX74LXghF0J2JD2VuBYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CoPcNO2-COU', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||1.01|233.4|0.69|16.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta06688h|u0RgEYO9UG5yeFPkK6HyfI-5Na_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|167.89999999999998|0.64|8.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.093|u0SNCG5JMR4yEqprOAJYEXr-Xs6C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.33|55.5|0.8|5.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; ONC3']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09353a|u0UbRi-PpY1MVj3WfE0GAdU2dcfC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; ONC3']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|198.2|0.6609999999999999|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.003|u0l_hClsnsrTrDmmH6iwf7lcvEjD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.99|223.1|0.68|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|u0n97J75n5G4cknk58QgP2jggoBC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.96|192.0|0.82|15.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/admi.201801667|u0niU6QIJZrSkExqiTucUJbjzM7q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.16|225.2|0.81|21.1|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|u12JfoLloQWI6uH6PqtA2SLreF5I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|206.0|0.738|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-DPP-ZnPc', 'Au']|['ZnPc-DPP-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|u1Fb8SYTgIas1rtsFEZhS24J0AyY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPc-DPP-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||14.35|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|u1NWrMFcp87x2rwYFOwWNsWURMn-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.8|0.77|16.94|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/solr.201800103|u1OaAoYUVqG2d39qBw1Bn4QoS189|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|u1RwTofDM-JKLlhx0r1oLTU_xVaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.0|0.78|18.9|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|u1aPVr5yHtkgJLUsCU6K0Ny-g_l8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|141.2|0.623|7.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0365-6|u1cDSnyLldoHwaaxbLtO7QNln9mU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|189.8|0.534|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.09.078|u1kVS4DkBO61rd_ZkBeGGbDqEQhW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.99|158.2|0.62|9.71|['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-np', 'ITO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03240g|u1kbnFN0PX5F3-41ZweL-qrP6sQB|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-np', 'ITO']? The composition of the perovskite layer is MAPb1.0I3. -Br11C25H125I64N50Pb25|Pb25C25N50H125I64Br11|FAPbBr0.44I2.56||1.1|230.0|0.76|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201601882|u25Dc_hcBYq_C_q_mNBw-qpzZ89z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.44I2.56. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.137|210.0|0.747|17.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|u2BDSuVLjTA-dy9pZKAthGEBlHMx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|179.59|0.747|12.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6nr00011h|u2GjfGa289rTBRP9ND8gNfQ-eMtG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN-P1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.486|229.1|0.64|6.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201902418|u2eAOB930UBMBve8BHG53vo30iyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MASnI3. -C9H26I13N5Pb4|Pb4C9N5H26I13|(3AMP)MA3Pb4I13||1.0|99.0|0.7120000000000001|7.02|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|u2p6DQ3Kwzewrpxo1Ox7aNwLPaJy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA3Pb4I13. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.93|191.0|0.61|10.8|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|u2ryoepPfnq2im5EZiZtvWUjFm4R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.693|10.9|0.596|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|u2y6E4qraFNdYAmBbpY1DqFiv5AC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|165.6|0.701|10.9|['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201501406|u364orhzMDxIaOZzWvV9LIK5DUbk|a perovskite solar cell with the following device stack: ['NOA63', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'GaIn']? The composition of the perovskite layer is MAPbI3. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.1|179.20000000000002|0.762|15.02|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|u3C45Y4d7I9_pSDCZAxudS6nO2Nc|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.965|209.1|0.6859999999999999|13.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2015.11.025|u3EA1RULWsALfrQl4OHnDCI5Q1bW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.42|90.0|0.35|1.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|u3LOIPqWDYRwJmASH9BEC-uX-hlz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.921|192.1|0.78|13.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|u3NCuBkQ9h3s8zFkT99jUKevkRpP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|198.0|0.75|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703054|u3Qs6Wl4mFOag3W2_BV9r-vPEfST|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.954|192.66|0.734|13.48|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||u3eQRIt6Sj_hLwUs7YN25zCl83wV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|153.7|0.6|8.9|['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1021/acs.jpcc.6b10288|u3i2UIvEY2nZAji8zKIu7R1cEaPI|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'WO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr600C200H1200N200Pb199|AgPb199C200N200H1200Br600|MAAg0.005Pb0.995Br3|2.300000245251625|0.902|36.5|0.72|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.1c02847|u3o_dRXDXa2a92HYjhC2mb72wnxq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.005Pb0.995Br3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2800002431190025|1.15|35.2|0.62|2.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9117-4|u3yBTVt_lIMxHoaJ6F5LSRyeRJY6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.163|216.0|0.7|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|u4G6W0EaEmnJ_KfR-s2Z7WCYxHMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.02|184.9|0.721|13.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']|['CuSCN']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b07318|u4LUobXuxGttwSpZ6eAluN_E0iUd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuSCN', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|44.0|0.41|6.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S9', 'Au']|['S9']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2017.07.004|u4Q3guHE-dgXDpSns-rxsZEDqdub|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S9', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|128.3|0.7609999999999999|7.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra13082h|u4QC1Q13KLxPhRC3GcmoXMASgROb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Pb97Sr3|Cs100Sr3Pb97Br300|CsPb0.97Sr0.03Br3|2.2700002420526912|1.54|77.1|0.8109999999999999|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|u4bh9vGjncFSijqUYZVfCtdNnKT5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPb0.97Sr0.03Br3. -Br24C19CsH114I36N19Pb20|CsPb20C19N19H114I36Br24|Cs0.05MA0.95PbBr1.2I1.8||1.11|188.9|0.478|9.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/smll.201906681|u4f3eXIzhUXmssRrcKuFfapPGdiu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95PbBr1.2I1.8. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.1|229.0|0.8029999999999999|20.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900293|u4f9oRkveThAiDb1-4PjsgYTDxfv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8009999999999999|198.0|0.546|8.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/celc.201900532|u4qSxejZczPsydt5Ic481YUO09XJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|153.4|0.738|11.34|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1142/S2010135X18500066|u50DchiX0W7Kh-YKn75BFuQ2EtUL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|139.3|0.59|6.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|u53XK5ZzRm_Tzmw0qEmEOF4eU9I1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br98C187Cs13H964I502N345Pb200|Cs13Pb200C187N345H964I502Br98|Cs0.065FA0.79MA0.145PbBr0.49I2.51||1.11|202.0|0.75|16.9|['SLG', 'ITO', 'Ni', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']|['Ni', 'NiMgO']|['PCBM-60', 'ZnMgO']|bulk|https://doi.org/10.1002/solr.201800151|u56slMYx84j2xtfE8FzbkCBGZNIw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ni', 'NiMgO', 'Perovskite', 'PCBM-60', 'ZnMgO', 'Al']? The composition of the perovskite layer is Cs0.065FA0.79MA0.145PbBr0.49I2.51. -Br4C9CsH54I6N9Pb10|CsPb10C9N9H54I6Br4|Cs0.1MA0.9PbBr0.4I0.6|1.8200001940686776|1.11|141.7|0.683|10.71||['PEDOT:PSS']|['PCBM-60; BCP']|not processed|https://doi.org/10.1002/solr.202000384|u5E8WyBSxmy8beicxxgX5ZzypShv|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1MA0.9PbBr0.4I0.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|198.1|0.7609999999999999|15.51|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc02457c|u5KwmxtD86Z0MuCfrMRbGA2a5e9S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.08|234.7|0.823|20.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803476|u5M-dlePUih2P54jwIq1pKfjIfkD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.0|0.757|17.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|u5RahJW0M4taZ2iEuuql72JKpkw-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|178.0|0.5870000000000001|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2A2', 'Au']|['Y2A2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00432|u5V83tABiGD5EPOmaDDtnoF98rTV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y2A2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.665|14.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|u5WqXd61WO1GkPLishDWAD5bA6NE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.4|0.6579999999999999|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.6b03089|u5dz68zRrVlnsLaJtArrzsNeZ4j1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|201.4|0.77|13.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA2C', 'Au']|['TPA2C']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2019.08.036|u5et_kQmHM4eBKsgZ4tAwLIAivXR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'TPA2C', 'Au']? The composition of the perovskite layer is MAPbI3. -Br726C1681Cs39F240H8159I4114N2888Pb1600|Cs39Pb1600C1681N2888H8159I4114Br726F240|(TFEA)2Cs0.975FA32.175MA5.85Pb40Br18.15I102.85|1.6670001777541128|1.097|212.5|0.787|18.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1002/solr.201700125|u5g64QkfY2hX6SUuus6zdAHGOlD_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TFEA)2Cs0.975FA32.175MA5.85Pb40Br18.15I102.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|211.1|0.7170000000000001|15.9|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta08084h|u5mNh_kBh-C3-qIx7sRbtIT08chz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.951|198.9|0.341|6.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6528/aab795|u5qNYh8QbbRd9pbW514DQ_zd4pLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.07|219.3|0.69|16.2|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|u5wjgSBf6f44rUKo95JCI-YQODNx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|154.2|0.67|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.08.029|u5zAQjOpyzJ8V8JM-OitB8i0llJt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|201.4|0.551|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2391-3|u62Kal0Wa9Af7OJ6zH1PXlvXq8db|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|165.0|0.62|10.31|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|u64xv_EFZd7xIIGgS4fqtbzGJ0qU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|0.866|155.6|0.4589999999999999|6.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TA11181E|u6CCBeyhE9WSl-LJOLitMqy81kEb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -C10H22I10N6Pb3|Pb3C10N6H22I10|(PDMA)FA2Pb3I10|1.5300001631456466|0.868|73.97|0.626|4.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.nanolett.8b03552|u6HeAq0RsmIG99PF9EKq_gB2aBja|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PDMA)FA2Pb3I10. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.500000159946712|1.1|231.0|0.7909999999999999|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|u6KAN25YLJoVfkGiOy6RNdwHolnp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|140.8|0.7|8.92|['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|u6M8rSYUz5nNutDbcX95SJ7NZjXw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|182.6|0.7|11.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.optmat.2016.07.039|u6S7OPoxL5YjJc7VxOCBatqDDhel|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C6CuH6IN|CuC6NH6IBr2|(C6H4NH2)CuBr2I|1.6300001738087604|0.32|180.0|0.35|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-np', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b00086|u6SFDItrjRGaME48j4hiVca5vPHf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (C6H4NH2)CuBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|180.8|0.77|12.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.6b13324|u6tsKGJUcWc7QtnxE3D2LonLx_mO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|85.60000000000001|0.42|3.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|u6ubKyAY86YB9oYmfm5qSW-c3i8e|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br9C47Cs3H243I141N86Pb50|Cs3Pb50C47N86H243I141Br9|Cs0.06FA0.78MA0.16PbBr0.18I2.82||1.1|215.0|0.79|18.5|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acs.chemmater.8b02002|u72PlfCpmF4Rau1Tz3MAIUpmSaMO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.18I2.82. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|223.3|0.7879999999999999|19.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|u73nAHvNm_K4SY6wwN5N6ilS7DvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.157|31.3|0.427|0.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|u7FBDimBi3hPcVt8i3rVwz1jzR32|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|203.0|0.7829999999999999|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr03265j|u7Rcx7zZA7ArF362d6xoRcZbTvhg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.244|134.83|0.647|10.85|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||u7k06Rr8vO9zQW-gFzpE8R8tH372|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.5|0.6659999999999999|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.09.033|u7rN4mJVcDqXDk283inBwywljJEy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.0|0.595|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja410659k|u7uRJFUL4a8a6lBt_202-3uxEdhp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|228.0|0.67|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adma.201705786|u81hK_h_ygYKBb7wEQ_rbFjM5ynU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.835|163.0|0.55|7.5|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01128|u8Jfij0xLWViDen62x9X3v-3QKmo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6800001791403176|1.106|192.6|0.753|14.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.01.034|u8KwsvDXm8_Zz0BPQbH1LfaWMKb-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|229.6||19.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'IDIC', 'C60', 'BCP', 'Cu']|['PTAA']|['IDIC', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604545|u8OL-pMLIqpssu1llG4L7noo-20r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'IDIC', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|78.86|0.52|2.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|u8SUVFp4NJzaVqHRzcgyNANWeDr_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|228.5|0.745|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.8b01336|u8VzACMKpu7oKnjPea5vrkXALYUW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.9|0.72|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-4A', 'MoO3', 'Ag']|['Ph-TPA-4A']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01278h|u8ZcAMwO0Fnma_xgLhHwVSL2wDhm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ph-TPA-4A', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.08|136.0|0.71|10.43|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|u8gWgEluzBJXihPfkR2NQFKQ-LIT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.12|231.1|0.71|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Methylthiophene', 'Spiro-MeOTAD', 'Au']|['3-Methylthiophene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703143|u8jiecbwEBxZmDPVwL83w4vbOM5G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', '3-Methylthiophene', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.975|176.6|0.534|9.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-03766-4|u8lA1OGVH5Npndq478mZFkADGmhF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|153.2||7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b01550|u8lB4KPvxxF125lkYwaWeW2dPLzy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon', 'Perovskite']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.1|220.3|0.778|18.9|['SLG', 'FTO', 'SnO2-np; TiO2-np; MXene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np; TiO2-np; MXene']|bulk|https://doi.org/10.1007/s40820-020-0379-5|u8yovYccszmj9pOvaOtpLwpfQl1v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np; TiO2-np; MXene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|193.5|0.759|15.29|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|u9336qCEWWd08aqArMIWrZ8Z0XPz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br13C95Cs5H488I287N177Pb100|Cs5Pb100C95N177H488I287Br13|Cs0.05FA0.82MA0.13PbBr0.13I2.87||1.07|231.0|0.765|18.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903696|u97GWvlwS7LXerhR-bpHm1TGzmw6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.13I2.87. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.17|225.0|0.81|21.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta06718c|u97Rkr2PIaSeUqfZdeixoWTuDgpV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br251C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br251|Cs0.05FA0.79MA0.16PbBr2.51I2.49|1.6300001738087604|1.126|211.6|0.7340000000000001|17.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.093|u9ALxda87WEO5lTnii4p7DNrTm-N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr2.51I2.49. -C100H543I300N157Pb100|Pb100C100N157H543I300|FA0.57MA0.43PbI3||0.97|183.0|0.49|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-017-9044-y|u9FycTkHZlk6R5wqq0QQJvGqfGrl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.57MA0.43PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.0|0.72|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201701804|u9QbXTeM6V2PNkBLMC7hadWuEE2I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|242.3|0.5|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12132037|u9m-uEzGxHTuqeJbYtf7M5UlzHlR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|212.0|0.7859999999999999|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6ee03201j|u9mgDZ1Jd7ZEgCCn8oKAa5sCcmuS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|220.5|0.52|10.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.024|u9q6LRhuaED1qWM0rtNgS9NwUz3e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.872|195.1|0.75|12.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM']|bulk|https://doi.org/10.1021/ja5125594|u9q_NLbMOXEoZh7DZQrBwShib3VI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Silane-SAM', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.3600001450183523|0.63|126.7|0.37|2.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b08859|u9vatL2LGPkU7bPuStbV14k2MeJf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|220.9|0.7509999999999999|18.25|['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CPTA']|bulk|https://doi.org/10.1002/adfm.201706317|u9whvHnMQKkaeAB8yGB4HN0oudFs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.91|194.1|0.62|10.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'ZnO-c', 'Al']|['PEDOT:PSS']|['C60', 'ZnO-c']|bulk|https://doi.org/10.1063/1.4938570|u9yuCiGkMD-uiAPX3D4NG1kU0t9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'ZnO-c', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|175.9|0.7559999999999999|12.77|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta10288j|uA09_4Ke7gsGjSseW9w2jhhKiYeA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.077|208.7|0.597|13.41|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp509896u|uA96WEeOexKeFVYN0H7Jw1JPS15H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|214.0|0.74|17.34|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'SnO2-np']|not processed|https://doi.org/10.1039/d0ta04721j|uABuWJPiHqMoHq11m9Tt3GQX8m3w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C43Cs7H215I150N86Pb50|Cs7Pb50C43N86H215I150|Cs0.14FA0.86PbI3||1.017|194.2|0.716|14.15|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta06557h|uACLZWKuVwQGBh5u9yOlUgC93iSP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.14FA0.86PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|225.7|0.645|12.95|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|uAGVpFTdwPvJ-GzUdaS1WX7_DMAT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H491I251N174Pb100|Cs5Pb100C95N174H491I251Br49|Cs0.05FA0.79MA0.16PbBr0.49I2.51||1.147|218.7|0.762|19.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']|['Polystyrene', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b04776|uAL3BPztzKRgOXwhLOllNcVJm1mr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polystyrene', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|221.0|0.73|18.0|['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b10994|uAY7JhhIf1HZHiCACD6Vo8dc4kb1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.0|0.47|8.9|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1021/acsami.6b12474|uAYoKapeTfeIGj7_64wN7Xjb8iSc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.906|221.0|0.66|12.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'SiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.044|uAaz2ogQhMKxel6QCmFC7vRJD8YT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|186.3|0.62|11.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.6b01535|uAbxJI1t0E2gNwdFfz8cihCkikCh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|117.0|0.43|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|uAdHul0bSaKSBMmeNZ2ZRV_ZCMS3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.72|177.0|0.57|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.cplett.2016.08.067|uAiEuhI4Ip1qpjxmXTfdjxFgJv2O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|174.0|0.462|5.78|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c8ta12254g|uAiNK55LlRp5wMPL2Sl2ve_pxJzz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10CoH60I30N10Pb9|CoPb9C10N10H60I30|MACo0.1Pb0.9I3||0.78|64.0|0.58|2.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|uApjFAhQnVDOG-_IUsQ94q9Wncn5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MACo0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|176.4|0.71|11.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/ncomms13938|uAqDwdztE6a_7I5AcJuS7-nygwBC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.15|244.9|0.799|22.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['PEAI', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|uAt8Jrtbo5z0To5qi-iwcLUXP9mv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.4|0.65|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aad2ec|uAuo3K5_dywWFpLhOFNP3IOF2Dfe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.0|0.804|15.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jiec.2019.08.004|uB6jPTAYiakAHBNR7shTDfnPA6v3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H21I12N7Sn4|Sn4C4N7H21I12|FA0.75MA0.25SnI3||0.45|145.0|0.63|4.11|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1246/cl.190163|uB9LBHUBr4ji5y7i06QhmhSHj5-D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is FA0.75MA0.25SnI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.65|47.6|0.445|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBDTTT-C', 'Au']|['PBDTTT-C']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|uBBfEuI4wxajcT0A1dJ6l57ICH3G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PBDTTT-C', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|91.0|0.55|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']|['Polymer3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41428-018-0116-9|uBEQlAFaNnZnQJiSKvg-Hgl1-aOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Polymer1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.09|225.8|0.7909999999999999|18.98|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.apsusc.2018.04.230|uBFgqq3sVHXmJE8kjeDni8XVzx9_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|228.7|0.7490000000000001|18.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/smll.201704007|uBO9_WbSGr4Wrmpc5RCC2gbhMUsd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|24.0|0.25|0.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT-3,6-TPA', 'Au']|['TT-3,6-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201701790|uBPCKmdf0BVN4p9HIeVvUU3dMFKd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT-3,6-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|224.0|0.76|18.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04267h|uBPjww_ARB_QxExs0Gm2eqONNmtt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|232.0|0.77|20.17|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.isci.2019.10.021|uBUiy9VjNsSe5MOhdCHj6aRdKmYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.14|219.0|0.77|19.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02020a|uBbAS7E7U5MamH7hh89ddPDv0wS4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.94|211.1|0.57|11.57|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/ente.201700437|uBhpqaeiOz-AbRzgFd-mF4Aa--Ix|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|45.4|0.632|2.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnNc', 'Au']|['ZnNc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974797|uBpE8xz3Eoy_hkViplzD-Ol6db2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnNc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|230.4|0.43|9.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|uBuvJg6uMe0QrqRgD4leu2IgGLEt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17H74I30N11O4Pb10|Pb10C17N11H74O4I30|(GABA)0.1MA0.9PbI3|1.5400001642119578|1.1|220.8|0.75|18.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c8ta00948a|uBv-ypAA8CzSjT-jVTwKUM4jugFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (GABA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.4|0.63|10.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|uBzEYYGQGRvMhZ8E0ixEqAMB5k1y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.15|215.7|0.754|18.69|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|uC3ZmY9gxP6n2TakN1PxLWWT2x6G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.387|0.6|0.545|0.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta09036b|uCDjogF5HJTa5SekjMhplPDWROQ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|196.0|0.71|14.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1038/nphoton.2013.342|uCN_WIG_B1dlX6fWEuynPIBgyS3E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C94Cs6H485I255N173Pb100|Cs6Pb100C94N173H485I255Br45|Cs0.06FA0.79MA0.15PbBr0.45I2.55||1.124|228.0|0.76|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ee00928g|uCNrga-poZmF7LM1zTAQ02rQWQyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.79MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|137.6|0.48|5.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CNTPA-PCBM', 'bis-C60', 'Ag']|['PEDOT:PSS']|['CNTPA-PCBM', 'bis-C60']|bulk|https://doi.org/10.1039/c5mh00026b|uCOBKYqTZCNhbRR7GDQuw8_q43Ko|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'CNTPA-PCBM', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|205.6|0.6859999999999999|14.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|uCZ3RhcVLt3AHB5Tc17Cs6ObA3as|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|204.8|0.6779999999999999|13.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6nr00206d|uC_YFW_-By5ULalLlvj1IBkdvroQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6200001727424491|1.11|197.2|0.67|14.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/solr.201800327|uCt-WYAFnzdcgXoeDkodyTGIhyfk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|213.1|0.71|15.24|['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PASQ-IDT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|uCxD-1Wh8umVOtY8HSZozOzGHAL8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||1.0|175.0|0.733|12.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|uD-1kipRgfZ9aMLxwWO1So7DTbCB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.52|110.0|0.38|2.17|['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']|['OMeTP-SAM']|['CITP-SAM']|bulk|https://doi.org/10.1002/adfm.201805098|uD5dgRMbPIQIvG3gxhefMaD_Wxd1|a perovskite solar cell with the following device stack: ['SLG', 'Au', 'OMeTP-SAM', 'Perovskite', 'CITP-SAM', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.053|199.0|0.605|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00110c|uDE1_HS-Z0yojDOu0eT8_pQuCEOi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|219.6|0.701|14.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.01.029|uDLJQZlAhiNtm8xeq9KYDxbTqyeM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100Cs5H517I83N183Pb100|Cs5Pb100C100N183H517I83Br17|Cs0.05FA0.83MA0.17PbBr0.17I0.83||1.071|191.5|0.65|13.26|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1002/slct.201800804|uDMBbBAnEZ2Lu_gtPtVYvcAWC_4A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|187.0|0.76|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1063/1.4901510|uDOi8r10UW5U1dUuLrQfQLCmezcy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -Br46C100H515I254N185Pb100|Pb100C100N185H515I254Br46|FA0.85MA0.15PbBr0.46I2.54||1.125|232.4|0.7190000000000001|18.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.027|uDQ8LAV4vkKDWxK3p0zgl92lQUdX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-9', 'Au']|['PEH-9']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|uDVXkYtTgZm2gALAqzj_WyMnXpG7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-9', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|233.9|0.778|20.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|uDf7bOd2nDs_GNHKQki4CN60vbe_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|69.3|0.77|7.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|uDiKkN7yUYQBnkuJ12bXOesVJp-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.31|215.6|0.6|4.01|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800290|uE0nQJDJUHpbl57kaY1B_kZBJIP4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Al', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|211.8|0.62|12.01|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|uELGgMvlx2fNKZ-ytjBbiMtM0IcB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|175.0|0.627|10.3|['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']|['PEDOT:PSS']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1039/c7nr03963h|uESUAZXdwewlz5bc0rhd0jSnhwMx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'C60', 'Perovskite', 'PEDOT:PSS', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|223.0|0.774|19.3|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.9b00608|uEV2HYTqz2AoVnRnz9ZMmR3l6ITA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|24.6|1.01|2.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b00660|uEVXDwxlLEgs-d6KUyvWNmiqnePE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|182.0|0.563|10.5|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['LiMgNiO']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms15330|uEaP-9Kchf8ogDjM63gHI3qODzud|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.022|10.9|0.7440000000000001|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'NH4I']|bulk|https://doi.org/10.1021/acsami.7b12721|uEeTWa9tWSzjbVBFINux6-xafCDI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'NH4I', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|125.0|0.57|6.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b04338|uEhqQwjQTQo1AiKZQGafutoxP-_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|185.0|0.585|12.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|uEkxBZuN-1BpNu-NFFs5atS1NQnD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.92|166.8|0.757|11.62|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|uEqt0r-D871ahNDSvjhocdWj2ypx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.0|0.721|17.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S2010135X18500091|uEroDh3dvMiwXh8gDtBP62ffe_CM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.36|219.0|0.64|5.03|['SLG', 'FTO', 'PEG; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00383|uF1Lb8QJpL52tk9U9-Exw0knRDak|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEG; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|207.7|0.66|12.79|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9qi00557a|uF7VMAop1ewqP58WrDAjr8xgSlyl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.087|211.48|0.69|15.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|uFK0ALy6Vvdh_2wZFJoB3kL8r58n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5100001610130236|1.025|221.7|0.73|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta05422g|uFP1qQXujHhQk4Hp5iezum3dtPoo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br12C94Cs6H477I288N181Pb100|Cs6Pb100C94N181H477I288Br12|Cs0.06FA0.87MA0.07PbBr0.12I2.88||0.96|211.0|0.534|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/d0ta03376f|uFU_WiqtSmYPS2-K8w5sckrCdl2x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.87MA0.07PbBr0.12I2.88. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.35|36.3|0.4379999999999999|0.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.6b04507|uFZsuOWl1M8NI-Yu7Kf063DCO82P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.89|61.5|0.7|3.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|uFaUr_R2OxEQyRILMeYuYZo4jwHi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.4|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.024|uFb6QJ_ATYzuSW_dHMBStZBepXVm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|10.07|0.65|13.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']|['SP-01']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|uFlmbLKVRdFxVwz7kEB6-Tvpk-_t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|236.0|0.72|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.004|uFlpfFvIJ3yBGMpx48qFmEx4nqVx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.115|205.7|0.758|17.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9cc09002a|uFoALSqd8HR_f0936yEmNhMr_9O-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C2ClH10I5N4Pb2|Pb2C2N4H10I5Cl|FAPbCl0.5I2.5||0.7929999999999999|38.1|0.56|1.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974793|uFxw4_FOeyv2kx6pPpRhjYmptkAn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbCl0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|217.5|0.67|14.03|['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-3D']|bulk|https://doi.org/10.1039/c6ta00893c|uG57oLz3nqDFGlfPUeQGvGiSBID8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-3D', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|191.3|0.69|14.23|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|uGF_Va_NYu7ib7oJVm7pslQ799kZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|222.2|0.56|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.surfcoat.2018.12.069|uGGFnzsGKJfxgjb54IFetfhOCxTg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br81C85Cs15H425I219N170Pb100|Cs15Pb100C85N170H425I219Br81|Cs0.15FA0.85PbBr0.81I2.19|1.7200001834055632|1.12|183.0|0.65|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701048|uGHC0HY_q6gEV5q4o9u4OuqZuLrx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|186.0|0.61|10.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-020-03664-5|uGMvDQaXg3C8xUZ3UCj6MsmeiMca|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.1|210.0|0.68|15.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPcNO2-OBFPh', 'Au']|['ZnPcNO2-OBFPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.045|uGPBev2vA-xiKMqzD4mRpLaSdiEN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPcNO2-OBFPh', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.154|229.2|0.77|20.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.047|uGXbAF1V2vlyDN7Nr3mxXB9adsgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|191.0|0.54|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02544g|uGaIlD9xxv2HOtTvkklreSfv7NP9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|31.7|0.62|2.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'BCP']|bulk|https://doi.org/10.1002/adma.201301327|uGfL2Ks-pQBgBloIXfk-GNohFmyd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|225.5|0.76|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.029|uGm4HA-CwY1fXODdT6BNJgDEA1_D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|157.10000000000002|0.758|11.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|uGstSrxW-lDlaB5QVSRcv9Vhye1M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.05|187.6|0.715|14.19|['SLG', 'FTO', 'TCl-PDI', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TCl-PDI']|bulk|https://doi.org/10.1002/cssc.201802421|uH4Pqj3QvFc3zTLEr5j7QoBTR4kK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TCl-PDI', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|1.11|224.4|0.78|19.43|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00856|uHDpC8_g_2eetMeGVseMyEusgoOO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.11|171.4|0.765|14.56|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|uHGmFjiZCmXI-lnevigKrjMrA_xg|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|202.1|0.632|15.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|uHI8roL5jQMRVcTfdRwQikCXOmhk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|210.6|0.634|13.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201800625|uHRBU5fZvYU7pvqe3v8Zk9Mi5KI_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.06|223.4|0.72|17.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'TS-CuPc']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|uHfpVjTCdvzLvnoNARj8pqbgPcMj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'TS-CuPc', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.39|221.2|0.57|4.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.006|uHgHfatazXCBHlPLC1fXJI3lKAf6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|151.0|0.75|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|uHiWDiInRLZiVXu_diWJAcGXLSGx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|198.6|0.492|9.51|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ZnBu4Pc', 'Au']|['ZnBu4Pc']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900119|uHkMV0CG3qP5Ffjw1_81EXBFKeMj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'ZnBu4Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C321Cs4H959I249N163Pb100|Cs4Pb100C321N163H959I249Br51|(TBA)0.15Cs0.04FA0.67MA0.14PbBr0.51I2.49||1.2|234.5|0.703|19.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|uHoh26mOLecQi3AEhJoU2fAoi9L_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.15Cs0.04FA0.67MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|207.0|0.6940000000000001|14.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19203c|uI9sqdl6_35z1jNSdp1slkIfrH3B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.2|0.665|13.37|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|uIAuesAk9C8PQ2CL2nHWi5JuN054|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|180.0|0.76|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b07837|uIMI3WsvVfnQV6oaRKx4OZMrShia|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.777|182.3|0.498|7.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.09.078|uIRG3wt8P6pqfrynGXquUVKxOYXN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.607000171356244|1.1|215.6|0.7440000000000001|15.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b08026|uIh589d8ytE-xIOgOflw3Nh59GrA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|188.0|0.7559999999999999|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO-np', 'SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b17701|uIjWPrlhRtM8QRYYdLIBHo2LE-fU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'SnO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85|1.6000001706098266|1.08|233.7|0.75|18.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226914|uIqgNAnuBTTcy5zgf46q_AMD76LI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|209.5|0.662|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16312|uJ4WZN60oY7aeiH3F2sG86Pn6Nae|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|224.8|0.7609999999999999|17.43|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.202000107|uJCFtQ00JdcW9bMhdsu7OPbVQ3Rh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|125.2|0.55|6.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c7ta10945h|uJF4fPAtX80vzaEgpTIhc8zmVJt-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H491I261N174Pb100|Cs5Pb100C95N174H491I261Br39|Cs0.05FA0.79MA0.16PbBr0.39I2.61|1.5900001695435149|1.03|167.0|0.46|7.9|['SLG', 'ITO', 'SnO2-np', 'EPA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'EPA']|bulk|https://doi.org/10.1016/j.solener.2020.04.035|uJFkWV6Ty6gXB-7dYrgXeS923ome|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'EPA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.39I2.61. -Cs2I6Sn|Cs2SnI6|Cs2SnI6|1.4800001578140891|0.48|11.1|0.38|0.21|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600166|uJH0mLKli3U8tfr_PSVSutvmDGID|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is Cs2SnI6. -Br180C83Cs17H415I120N166Pb100|Cs17Pb100C83N166H415I120Br180|Cs0.17FA0.83PbBr1.8I1.2|1.930000205798103|1.175|145.0|0.61|10.4|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|uJJqPFutML91msjQNyE004TYMD0D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.8I1.2. -C4H21I12N7Pb4|Pb4C4N7H21I12|FA0.75MA0.25PbI3|1.5300001631456466|0.831|179.4|0.621|9.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.12.170|uJVtSjxCkWsopKLcTADGta1R9n3f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.75MA0.25PbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.0590000000000002|189.5|0.7490000000000001|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-07485-3|uJXA4YEk-hPrc72S_ToWaTQ_pwYL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|165.0|0.55|9.3|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.9b05567|uJZoyoYmGOl2XZMQ3xJTfI8Hci2r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|166.0|0.58|9.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|uJaHqtJLTVglrGY0DaAGPxYnDFX8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.952|156.8|0.67|9.98|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|uJdUaAdQZqnyCLVu4Quuwc7nEazK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.081|213.2|0.77|13.82|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808119|uJiKHMaAOfzwdjGmor91PjJdiFWp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|226.2|0.6|12.65|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7CC01573A|uJv7KKFdoxrLVKWQVArBHuZxWMiN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|167.5|0.56|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4928516|uJxUC8ieN9_6gTjdgqb5lwJrc90o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.08|0.0|0.0|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Al']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1039/c5ta10696f|uK8NswsrZ-HSkAVCFwQJHGx8s31l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|231.0|0.758|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00496|uKII-4RHMwl4o6e51TMtCBrcM3u6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.11|219.8|0.78|19.04|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|uKQ7So8ane4ZfX9E60oUWBYMUB0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|90.0|0.5|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|uKlXj2SjjT-DrV4Gp6iCE9BH6DTb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.048|153.9|0.68|11.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5099-1|uKpNFMEdGJNA5pRvL0a7m04FZOCL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.09|227.7|0.737|19.0|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'PMMA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|uKu4xgEpdVyr4eTJVVS2Xncmb1Fl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.11|164.20000000000002|0.767|13.98|['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201900847|uKzvecEXK3y9GNTtt97qeKfe9F8S|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.06|236.0|0.81|19.5|['SLG', 'FTO', 'NiO-c', 'BMIMBF4', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']|['NiO-c', 'BMIMBF4']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41586-019-1357-2|uL-3k-6mJRjcgSRraHFpJol4VeAB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'BMIMBF4', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.5670000000000001|4.1|0.373|0.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|uL76VD1QiqYfZnwK03YLGgMJbQ7j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|229.0|0.77|18.16|['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Bi2Te3']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15320|uL7DuH72iqQxpGfEeFmajdmu5stL|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Bi2Te3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.5|0.68|19.0|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'pDPA-DBTP', 'Au']|['pDPA-DBTP']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|uLG0d_3_EHGGdHU1J8ADLnU8pJZR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'pDPA-DBTP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6240001731689735|1.05|190.3|0.713|14.19|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|uLRBFfhr_KReHSLMND5twMGH87xv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.014|196.5|0.733|14.61|['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']|['m-MTDATA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201803126|uLVkjfTwSEzJ5Dzd0Y4Wq9JSssjA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'm-MTDATA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Cs3I9Sb2|Cs3Sb2I9|Cs3Sb2I9|2.05000021859384|0.68|46.2|0.371|1.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b16349|uLajPgAcEMelj9Ag_oxI9RrjVEam|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|78.0|0.68|4.2|['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|uLimmaK2yBghpnRDWrShb9H5Qp2T|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|222.3|0.757|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta11925b|uLivMr_Lu7y9YICaf0KT9mOEKe10|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br63C92Cs8H483I237N161Pb100|Cs8Pb100C92N161H483I237Br63|Cs0.08FA0.69MA0.23PbBr0.63I2.37||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.018|uLv9U1mka-C9rMraJGHaDsA1HNoo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.08FA0.69MA0.23PbBr0.63I2.37. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|204.4|0.74|16.26|['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']|['N,N‐di‐p‐methylthiophenylamine']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|uM2JKRUaGESAX7cWi7VcLUfLJlNO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'N,N‐di‐p‐methylthiophenylamine', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C5H30I12N5Pb5|Pb5C5N5H30I12Br3|MAPbBr0.6I2.4|1.7000001812729404|1.129|117.2|0.7|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'TPD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.5b01716|uM69S-gCST8UGQRXrmdspzGS29u4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'TPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|180.0|0.44|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|uM7d8WSytY-HzVr8ukt06wqApTt8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|230.1|0.7509999999999999|19.34|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b08658|uMDw5sX1nFTC5Y1TrO0vjspvmq3M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.93|12.7|0.19|0.2|['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Al2O3-c', 'TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701160|uMHH5QQQD9eMapNMQ_Ezo1qv4ky8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Al2O3-c', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.001|202.4|0.759|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']|['mp-SFX-2PA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6qm00097e|uMKf871am9t9szFRzYFMPKUJIMvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'mp-SFX-2PA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|227.0|0.79|17.9|['SLG', 'FTO', 'NiO-c', 'BMIMBF4', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']|['NiO-c', 'BMIMBF4']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41586-019-1357-2|uMP1HjKI_ng6I8DvVQGJ2gmCDAlT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'BMIMBF4', 'Perovskite', 'PCBM-60', 'BCP', 'Cr', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.0|213.6|0.7240000000000001|15.43|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTC6-TPA', 'Au']|['IDTC6-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8tc00385h|uMQ-wTpQ-hLC0SL4uk-GjJWNCsIY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDTC6-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|162.0|0.674|11.8|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Unknown']|bulk|https://doi.org/10.1039/c9se00438f|uMbfXb2Q0uYapG1F0EI9c7kO2KYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|232.1|0.61|15.69|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/solr.201600027|uMeKarvwkNdC6zatWBZSyh-ocyGx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.086|204.9|0.6759999999999999|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.02.050|uMzmqn6fBwF0z0h3cb3IAUAP7u4B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb3Sn|Pb3SnC11N5H42I13|BA2MA3Pb3SnI13||0.8|185.0|0.6970000000000001|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/acsami.7b15059|uNX3FVFPv8NuXk280FfFEACHTwXT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb3SnI13. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.03|186.2|0.755|13.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|uNuK5sPPYc9dOBOyXCszrxrZzbPB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|184.0|0.6890000000000001|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.01.023|uNwvn1wMtFhaN6sC9FmjeWKd4IHw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.6|0.78|17.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C7SC00077D|uO5LrJQhfIvFdFLIyBBJZz6VgXUb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.7|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|uO5kWxWMjgjWAa2ROT37NNN2uubo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H1053I510N207Pb200|Cs20Pb200C180N207H1053I510Br90|Cs0.1FA0.135MA0.765PbBr0.45I2.55||1.17|216.6|0.6890000000000001|17.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c03180|uODb-rv5FqY8_vmNINx7JETxdXfv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.135MA0.765PbBr0.45I2.55. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.63|223.0|0.43|5.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|uOHfa5kSWQWQxKgJZDpCEFIsg9me|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.5|0.79|18.5|['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CuCrO2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201702762|uOIKY-anpcRXmE818pI1oDdhtafM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuCrO2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|181.6|0.67|12.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.007|uOP0aQ-foerHyLyJfO8TUfUgM0Fu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.041|202.8|0.677|14.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee01079b|uOSwGGh4iDvbC1y40zoaCtJO-q1t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|182.4|0.775|15.54|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01026|uOamKlZU6UpRjHl3flsFyT8xPavD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br40C94Cs5H496I260N162Pb75Sn25|Cs5Pb75Sn25C94N162H496I260Br40|Cs0.05FA0.68MA0.26Pb0.75Sn0.25Br0.4I2.6|1.3600001450183523|0.79|250.5|0.7190000000000001|14.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201804603|uOn9lw3yagSp1WULua0ubi-Niy_M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.68MA0.26Pb0.75Sn0.25Br0.4I2.6. -Br3C85Cs15H434I297N161Pb100|Cs15Pb100C85N161H434I297Br3|Cs0.15FA0.76MA0.09PbBr0.03I2.97|1.599000170503195|1.05|225.3|0.698|16.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|uP4RyLW99vU3y2n2mHtFWAXHj3Cn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.76MA0.09PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|180.58|0.705|13.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201701027|uP7Q6apU_M7Tmr4joHompvzQDjcj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|206.0|0.61|13.6|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1002/aelm.201600470|uPBK3ECu_0rhKpDfkx9fhUMpKYmf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.883|201.5|0.608|10.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|not processed|https://doi.org/10.1038/ncomms15684|uPGYjWFddWa0h7pYar6B8pt97R9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|169.60000000000002|0.57|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.04.082|uPIrLV7DFfEG3eO-XivbqcJcKzC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|194.2|0.68|11.99|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/C7SC00077D|uPZNK_NztbOSK7BIcAe9UiIsjrwU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5100001610130236|1.14|239.0|0.722|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b12678|uPZuoFY4U61bPdBS4g9FJcZzsDIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|215.0|0.67|13.2|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.02.010|uQ4qcT_XOrLpnPYPZTNlR2NSre__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4|1.626000173382236|1.136|213.0|0.782|18.92||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|uQG9lZJSNkc1gaXcgEuo9LsVDCiV|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|134.0|0.778|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2557|uQHCheUDNhg6TC7vykcuTjJWMeRX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|231.6|0.752|18.99|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8nr07638c|uQJNMyq94PJyotzrhLKSRMoKBQ2Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.657|116.0|0.59|4.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/nn404323g|uQSQjqVF3qF0txIiK5t7TQGiDvU3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr300C100H600N100Pb99|AgPb99C100N100H600Br300|MAAg0.01Pb0.99Br3|2.300000245251625|1.107|36.8|0.707|2.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|uQdIv85UfLSkjnPLa4rb_Hq7BuMM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|207.1|0.647|13.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.09.134|uQomEWr45XWfcmgFVZwJlRlMvbaz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|193.8|0.635|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr08350h|uR1FlogW3aOUlJfz1g9guYT8ylL1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|220.0|0.7879999999999999|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00741|uR8LzfalGSZ0rOkR5n9U4oh7Hvnz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.0|0.728|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00980|uRbUYUD8U6PtHB0VDgzReot5ao1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.005|235.3|0.644|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solmat.2017.04.035|uRbmmqgrODrxB3f1MVxJD9gWz7NG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|185.0|0.643|11.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag@Au-np']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.025|uRmIOe2iU4pj_m6hT5n7kTJS-ID5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag@Au-np']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.07|227.0|0.662|16.17|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|uRpLZ1CAIigLCpk_QxHeTFckhWaS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|221.0|0.767|18.9|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-019-08455-z|uS5OEk1h2vJ2vqNF2PLR9xm8rCs1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|152.3|0.546|7.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|uS8cTMA-hZ9ET3wlL9rJRAh41OPC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.7120000000000001|193.0|0.26|3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2015.09.215|uSBBQqAKuMqhr8baZ51UTrQUy32B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.95|195.0|0.69|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|uSVfr1Bzl1GH2_x_up2yoj5RX4ej|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.809|214.0|0.5920000000000001|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03255e|uSXbqxudu73pku1y8Cn68WEGsk4w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Bi3CH5I10N2|CBi3N2H5I10|FABi3I10|1.810000193002366|0.45|38.8|0.497|0.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|2D|https://doi.org/10.1007/s12274-018-2151-4|uSaVFvQhRNuJ0z2h0Thi_kfAuhIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FABi3I10. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266||||14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.042|uSaoC2vWyz2EkeDaftbSsmKANLJ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Cs20I60Pb17|Cs20Pb17I60|CsPb0.85I3|1.930000205798103|0.79|128.0|0.7|7.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|uSbyWyNBoqDSSgcjcNzUIPCs7igk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.85I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.0|0.71|16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.002|uSi5r5o0hiJh_2fPyWWnu0K59OZk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|213.0|0.79|18.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-2', 'Au']|['HL-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02556d|uSjqMO1JWVY2ByvLl8VsAtyhwkAB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HL-2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||1.11|249.4|0.763|21.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201802223|uSm0d_c8aQcUuIdN72HWIAnNyEta|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|135.8|0.63|7.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-OMe', 'Au', 'Ag']|['BTT-OMe']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ajoc.201800490|uSqPWhfxBD5hBZTGbROqMY8y4PDP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BTT-OMe', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|116.8|0.62|4.47|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|uSu7Hy8mzYVIgvkXWa2tSlmJWS9q|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.945|221.0|0.61|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01939g|uT16nq2kAPQahKKY8v88-dHC8HbX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H119I60N21Pb20|Pb20C20N21H119I60|FA0.05MA0.95PbI3||0.94|214.9|0.81|16.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc02507j|uT1DXWB9O-ju2xgqV6psk7-_U5h5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.05MA0.95PbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55|1.6000001706098266|1.12|218.1|0.75|18.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c9ta01755k|uT48R7jaLjWV-jvwU0OerBvEknz1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8140000000000001|103.9|0.7040000000000001|5.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp06418k|uT8qSzWsXe46c9pN9XyYKtP4ecBy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.875|154.3|0.562|7.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4b', 'Au']|['4b @ triphenylamine modified azobenzene dyes']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2016.10.018|uTCTgXrJt0Xvs_u8Ut6WUCo_esxD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '4b', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.79|128.3|0.6940000000000001|7.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|uTnSEsHydDjyd--AAe-Z5tHDbirX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|192.0|0.52|10.36|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|uTzxOSDnC36YzmCdkM_BsDQOc_vw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C90Cs10H513I300N117Pb100|Cs10Pb100C90N117H513I300|Cs0.1FA0.27MA0.63PbI3||0.949|233.0|0.61|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc08124g|uU1MYwH3aDhyvq3Upr86HFrEEeS2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.27MA0.63PbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.99|239.0|0.69|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|uU7t81L6q2NMZp2Lx7WmahRS6O6F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|228.9|0.62|12.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2017.05.027|uU9hpuK7qMVI5vUfVmXRFdVwML7z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5250001626124907|0.98|234.9|0.723|16.65|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.202002366|uUIokGBX_FNihhJTygnHkKvKCp5d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.074|215.6|0.75|17.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.176|uUJivFTctuuTYnDWB8gUr5yzawlH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.09|228.2|0.799|19.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|uUL2IZ3hZnPoaVZHQkYRo_81Gudk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|227.0|0.752|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta05560a|uUSOTxxJUdGlt7zHIC-n6IUgSAoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.012|196.3|0.73|14.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|uUW4bA-VfuFWJLCexYmUw0qrG9K8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|172.8|0.735|13.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201601193|uUZTKlENc7L_AYd_xB8GDDrWdTha|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|234.0|0.66|17.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201906017|uUbxrnexyvm0sbNMt48JhoRMTCAV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|211.1|0.675|13.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|uUd7de1kEYlipPW9IGQV4nFQRjKf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4CsH20I5N8Pb5|CsPb5C4N8H20I5|Cs0.2FA0.8PbI|1.570000167410892||||15.06||['NiO', '2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.202202144|uUhjRHL5QSOyio1gkrGzWuKJDHf4|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|180.7|0.73|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PDINO']|bulk|https://doi.org/10.1039/c6ta08655a|uUtBP5PJUw9FU0bG0RKkUlgbuRFa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PDINO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.14|238.0|0.71|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07369g|uUy7LVQWWT40jii9fnKqg2LDUq_f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.999|192.0|0.642|12.3|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|uV3OLIExLAhewQqQjZrl9lqQ4Eig|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|114.6|0.43|4.88|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/am507108u|uVHim9JriXsUgTZj5u1qMKt2Kes-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|174.1|0.71|10.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|uV_3DTeuxf6W7o4gBFkDAvoAg8Ia|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.128|227.0|0.736|18.7|['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1002/solr.201800338|uVaaKx08A8Og4oKXpfmn2mjTpuVZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.768|186.2|0.475|7.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|uVcm1B_6IcPNAcobnNj3WlEQezlh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.0|0.67|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3-disubstituted azulene', 'Au']|['1,3-disubstituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|uVq9-INyMkchdkbsNG8WgOLf22jJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1,3-disubstituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.91|195.0|0.6|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra07579k|uVvCXhezKHC50Hif5ACgqiCVxOyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|236.4|0.662|17.23|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|uVzqnWY2RwECBoWNxSfWkCFPBn71|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.9|213.9|0.65|12.46|['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['SnO2-c', 'TiO2-c']|bulk|https://doi.org/10.1039/c8ta00526e|uW-saiDEV92Ur5oIxM6ZBFVK1eme|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8759999999999999|149.0|0.71|9.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2888835|uW2EcTY3qoZ1h0QD17N_St493u5T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|uW2vJPmpZDGsNgql0ik2oGXhNcOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|221.2|0.7390000000000001|17.0|['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS', 'PTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701659|uW7q8g_AnFHGQdLAj0aFkV2ZVpyS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.1|230.5|0.716|17.0|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.0c05527|uW949pW2tjtFa1ZnzbA4jXTzOqed|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|214.0|0.535|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|uWEMhVTZsgWilZqhZIqY9irOvQF8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|133.9|0.586|7.78|['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60']|bulk|https://doi.org/10.1039/c7ta10366b|uWFsyMjf4Z0ZKWZKTz5a4SJzuXgl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.64|149.70000000000002|0.705|6.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|uWP2mfOtKqExXRc-mZEmWOWiUsZi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|177.39999999999998|0.6679999999999999|12.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800061|uWcDjPWQp_AK_x3Ro28layvV7Bcm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3N3Pb|PbCN3H6I3|GUPbI3||0.515|0.0|0.11|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.56.08MC05|uWehurqABFhN1vc5HAuqdWAFtTRj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.17|214.0|0.71|18.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00509e|uWhbisykUk9JPeoJ5pbWjtXOxt3n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.024|10.4|0.49|12.2|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1117/12.2291595|uWiMJAe-XMptUazkhcI7KGLK_q-c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|185.0|0.7879999999999999|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM3', 'Au']|['HTM3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta12407a|uWk7-0iN05JT3qFpAYAfMQq91whq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|204.41|0.752|16.88|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']|['NiMgLiO']|['PCBM-60', 'CeOx-np']|bulk|https://doi.org/10.1021/acsnano.7b07754|uWmiyQZDchGxADh7kIGhlb_VbILN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'CeOx-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|186.2|0.53|9.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep33649|uWqB_jGjkmP4PhAqnoTgUBzzct3p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.12|221.0|0.7190000000000001|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201909737|uX6O7CYO1duGLVg_ZGXEQt-uMyL5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.07|232.0|0.74|18.3|['SLG', 'AZO', 'ZnO-c', 'ZTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZTO', 'PCBM-60']|bulk|https://doi.org/10.1016/j.cej.2018.12.056|uXJG29klhM0DrDqtkZ-aIkR6HYIS|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'ZnO-c', 'ZTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|uXVeUxYQuTNLglfnZvlJGEwvlslj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|231.0|0.64|13.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.7b00147|uXlx_mFqRO-jTPkhVK-cxTTFnRtH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -AlCCl4H6N|AlCNH6Cl4|MAAlCl4|2.800000298567196|0.23|6.3|0.65|0.96|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6641/aab455|uXxvne0E19I1IJhcSbMbVwzB__nm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAAlCl4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|229.0|0.55|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'BCP', 'Ag']|['PEDOT:PSS']|['C70', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b11049|uY4WW-EALihPQVn-OgwkyH1kIKqa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.7|0.71|16.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra21448g|uY5RZfhGe0ScK7mssPNVJT3LHt2h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.6100001716761378|1.08|221.0|0.687|16.34|['SLG', 'ITO', 'EDTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['EDTA']|bulk|https://doi.org/10.1038/s41467-018-05760-x|uY6OfdJc_WTXnc26BURRY_2BlHgA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'EDTA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|221.8|0.8|18.12|['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PASQ-IDT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|uY7px1lAniJ-h9wDZ8_uOMTFPcXN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.8|0.72|14.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-70', 'TiO2']|bulk|https://doi.org/10.1016/j.solmat.2018.12.010|uYBEFQ_m0YMQ73NRecAJTd94Xmda|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.005|115.0|0.67|6.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06268|uYF61AFs55cdKNuUOjKiH1IY09B-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|1.3100001396867953|0.78|190.0|0.6709999999999999|9.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6NR00301J|uYI6CK4Q3wVl2JtgKsH64UNFVRUv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|216.0|0.7|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201606574|uYLZPVlKKRONAb8W9o5zgbzQsOmu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|99.0|0.59|4.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM01', 'Ag']|['SM01']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|uYSQKnDpFe1lSOkmE5zuJIHbQTPs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SM01', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.04|234.5|0.6579999999999999|15.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|uYpICKAUNEIDKf0WPBHn_D6OKqfv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|163.0|0.5720000000000001|8.13|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|uZ06NHUq7Ip5gsbn2fQo4ccdJJyc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C3H18I9N3Sb2|C3Sb2N3H18I9|MA3Sb2I9|2.3500002505831827|0.78|19.4|0.54|0.87|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.9b02958|uZA4LpTylWJHVKb__57u3_BorEyj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MA3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|191.4|0.705|14.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-08187-4|uZGNJvgoDdyOygODaFXzGDtYmZsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.976|177.89999999999998|0.598|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.10.018|uZKvX6kDAv0_HxkMtDtGGlfcEPWW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.8909999999999999|210.2|0.6679999999999999|12.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.12.170|uZL-qFx3OCA-hXggPjeCK9AaN1Bs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.2000001279573695|0.66|290.0|0.73|13.8|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'C60-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['ZnO-np', 'SnO2-np', 'C60-SAM']|bulk|https://doi.org/10.1039/c8qm00620b|uZR5JU1PG95Aj5ekuL5olcSLFMUL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'C60-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|216.5|0.807|19.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|uZW9aKG7wnfBTgv38jQ3FJGODKr8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.09|204.1|0.7829999999999999|17.42|['SLG', 'ITO', 'Graphene oxide', 'PTFTS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['Graphene oxide', 'PTFTS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.072|uZeFwCR5MeOaebcM9uR5CESJIRA7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PTFTS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|187.0|0.664|12.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|uZjHMAhSbVRRBF0_kGCo7GeNfUv0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C19CsH99I54N34Pb20|CsPb20C19N34H99I54Br6|Cs0.05FA0.75MA0.2PbBr0.3I2.7||1.05|195.0|0.74|15.4|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c7ta02405c|uZknOZEw-DivKrQQh9VHBAr2mh9I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Al']? The composition of the perovskite layer is Cs0.05FA0.75MA0.2PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|206.37|0.7020000000000001|13.67|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acs.cgd.9b00024|uZoUZnchOkh9qfPdNYipbpEohyeV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.892|224.47|0.619|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b02201|uZxPI2_2yBiwwrlEGDXeVJWl5MQ8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|91.9|0.52|4.9|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/C6RA07549E|uZz_vWQmwnema23Anly5nnaI1lBU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|97.0|0.51|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|u_3eWR6j6M55FB-5RdHt9KcMwZ7x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|238.4|0.75|19.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.04.127|u_6G9F6mk3dUhnc0xHc3SYb1DQRp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|223.8|0.503|9.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.01.035|u_9p1YHRphdovstzGVDYjIN4ylb5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|167.0|0.56|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|u_Iu1x6lRdBLuqFvqd7vY1gO_wZa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.08|132.0|0.73|10.41|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09859j|u_M2EESeFwHJt2TKrcyomau56sBk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|196.3|0.7829999999999999|17.4|['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700226|u_MKeUJoIruKhI9vyJXGorbloIcF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'PCBM-60', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|144.1|0.56|5.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5086692|u_Txi76IVIA8ePVrrip21-NO0oAa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.16|10.0|0.273|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|u_ZVnbtfKAaq9yhZoSbYCF4iQ5qC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.8|103.7|0.83|6.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|u_bP8_V0CO053l0TMRUNBiMX2KDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br11C16H83I51K4N29Pb20|K4Pb20C16N29H83I51Br11|FA0.65K0.2MA0.15PbBr0.55I2.55|1.5900001695435149|1.13|214.2|0.579|14.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|u_jmpnAMAv0MkUOe300gz-xrvqjw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.65K0.2MA0.15PbBr0.55I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.930000205798103|1.33|159.8|0.78|15.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/d0ta05118g|u_oWZKcUfphRCdVvYVbyrST_a3od|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|u_ps5OK9tZZ7zflVCNMVn1pEAzwM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.056|187.52|0.645|12.78|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||u_wMfwJ675OoS-hr03jTgCooKhdu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||0.91|100.8|0.51|4.69|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/solr.201800359|u_ze2BSW2br8eAPtfDXWpt2oYKGk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.15|230.0|0.74|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201706287|ua8mC599c-r6Fafppjx8TS3oyKXc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.3600001450183523|0.302|147.79999999999998|0.474|2.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00645|uaIqqeUMNg_oTEBmiTFGxa82ditx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.9|204.8|0.72|13.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.05.044|ua_QiKY0fvHKDDD8aqg2naoXePQR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|219.8|0.679|13.37|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|uadN_XPoNNcxZ-PuHAUvEhTrjQR1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.76|162.0|0.56|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acssuschemeng.9b04772|uaeUjQ5dycTbDMxEv6Nz9O5AR08U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -Br50C94Cs5H486I250N172Pb100|Cs5Pb100C94N172H486I250Br50|Cs0.05FA0.78MA0.16PbBr0.5I2.5||1.13|208.5|0.777|18.29|['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['HfO2', 'SnO2-np']|bulk|https://doi.org/10.1039/c8ta11945g|uaosx2gqbVZRBiT8nDOffKYTsdtQ|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'HfO2', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.78MA0.16PbBr0.5I2.5. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.7200001834055632|1.17|179.0|0.755|15.1|['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|uaufcbpnEGmhslwwT0Fot_hLVspO|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|174.0|0.745|13.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.01.010|uaxsYgiRIn4EZq8gADOw_SZ8d54M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']|['3-F-br-4C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|ub10s0kAzzekGX4YOx5VnrBKLXHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3-F-br-4C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.068|196.4|0.789|16.55|['SLG', 'ITO', 'NiO-c', 'MOF-808', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'MOF-808']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201801715|ubAgfEtddnyRF7SHQDze3Ij5xg7B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'MOF-808', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|2.05000021859384|1.02|7.6|0.63|0.49|['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2']|bulk|https://doi.org/10.1002/advs.201700759|ubAoA-xYkJGrwlZSUX7baj8Pt2l7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -Br3CsPb|CsPbBr3|CsPbBr3||1.24|74.0|0.73|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|ubNaiatPcKPzWW1x_qxrkZY0J0ee|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br9C50H270I141N80Pb20Sn30|Pb20Sn30C50N80H270I141Br9|FA0.6MA0.4Pb0.4Sn0.6Br0.18I2.82|1.2720001356348118|0.882|285.7|0.7440000000000001|18.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803135|ubREoJjGmnUaFb9umFZiIExSMOTd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4Pb0.4Sn0.6Br0.18I2.82. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|204.1|0.602|11.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1361-6528/aac293|ubS6LovmsAJwF_F9_85EsezemchD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|94.1|0.618|4.63|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201401855|ubSzdgYytgijnjJnDc5y3EFpRZlG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.061|212.9|0.723|16.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|ubTEdP5HY3POlldH2pNyWTDva8B_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|190.5|0.44|7.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|ubXJ5VjGM7rzb4oARsaXvqmmbtWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.21|84.9|0.63|6.46|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|ubaGYw9mkTvb6Situkr51YtbAIft|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|241.0|0.715|18.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4953834|ubbJWqzVqte7qquoKi_6ornaRQBA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|190.0|0.67|12.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|ubcnh-ngdaX9oHAUZawcQc1K9XIU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCsI4|CsBiI4|CsBiI4|1.780000189803432|0.55|21.9|0.47|0.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']|['TQ1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.inorgchem.9b01233|ubfFxTnrxyvvrQrYUqm_YETR60Gt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TQ1', 'Au']? The composition of the perovskite layer is CsBiI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.071|221.0|0.74|18.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']|['NiO-np']|['Choline chloride', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201903559|ubkRmqCq2iCKJ_1ClwwejLC1wFTo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'Choline chloride', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036||||12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|ubpkEZG8en1LfJdWU4RTl8BwwZDG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.8|0.6970000000000001|14.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta06172e|ubr8Nlar-vINQ9s7go63jR9jNa1p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12254g|ubxsUiGSWYJ9VhOSPuztJnU7sXI1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|180.10000000000002|0.6|11.33|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2017.03.144|ucRewsUh8SNxnhv6tsdidumC_GBH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8220000000000001|122.3|0.6829999999999999|6.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cp06418k|ucVcPV8LZ7mc21K1Hau5Odinm1f2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.089|224.0|0.767|18.8|['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.9b10186|uckREAm8UO6754U4rlxMjEfrhlra|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.88|202.0|0.62|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201404007|ucnOVpmknHwcsMsIW8rOrI77hs6q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.05|213.0|0.725|16.1|['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60; PCBDAN']|bulk|https://doi.org/10.1002/advs.201700018|ud1mqXe6A_3E_Xf7JYutwrbHFSOs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60; PCBDAN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|201.0|0.67|13.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']|['none']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01099|udC9Q46Na5NeiDT95IrB9Q7cBy2E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.87|209.4|0.41|7.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2018.03.236|udIaaKC3NteG1uIZr02TADHjg3sb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.4|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|udJhPEXz_TyXbSNQA-L6RPbQl8cg|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|170.55999999999997|0.478|6.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|udVN-bcUzHBjO3bwYwYXkMUi211w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|197.0|0.609|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|ud_g0fEnfNlZCe1mcSEBKeOifjI0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.4|0.75|17.97|['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO', '1,2-ethanedithiol']|bulk|https://doi.org/10.1002/aenm.201702934|udcSHQEAa4L216SWFBTJRvdez2jz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', '1,2-ethanedithiol', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.760000187670809|1.16|130.0|0.55|7.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|udlE5Sx8muo_Qg5H6fxngC4k_BZq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|174.0|0.57|9.0|['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1088/1361-6528/aae9b6|udqph39bBExlgmd1uMpuFqy9AQG2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.946|143.2|0.66|9.08|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|ue6GmotTEKJdiIdbikXTFvwgqMs9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.7|0.62|12.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.08.028|ueCnq_EIZlmBuvUghznh3ETbTiEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.615|196.2|0.545|6.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|ueHLyJ5N38mz77NeoZONcfDBChuR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -C269F9H1026I325N125Pb100|Pb100C269N125H1026I325F9|(F3EA)0.12BA1.88MA3Pb4I13|1.6500001759413832|1.02|175.6|0.736|13.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|ue_LENkGiMwGNSfGmbi0lI3KQUIC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F3EA)0.12BA1.88MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|188.0|0.65|11.0|['PEN', 'SWCNTs', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['MoO3', 'PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpclett.7b02229|uej0lsW1B7E12f3M147vCqUiMKTW|a perovskite solar cell with the following device stack: ['PEN', 'SWCNTs', 'MoO3', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Cs10I30Pb9|Cs10Pb9I30|CsPb0.9I3|1.8400001962013004|0.914|152.0|0.76|10.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|ueriH-nG1BDiQVKfCBVme2BnAq99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|163.70000000000002|0.56|8.28|"['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)"", 'Au']"|"[""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)""]"|['SnO2-c']|bulk|https://doi.org/10.1016/j.dyepig.2019.01.059|ueyKPmHfEnm4w0kpKqUzMbKOj9Jc|"a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', ""4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|215.3|0.63|11.25|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.3762/bjnano.10.228|uf4h1GwPS1hK6ov2F9AGRtzHm2_-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|62.3|0.6559999999999999|3.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsnano.6b00225|uf6zdk_IvMbc9Sg0MvS4Zr_8o_Tt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag-nw', 'Dielectric-Mirror']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|208.9|0.7959999999999999|16.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|ufSDrn48ygUnXaTdySVl4o47fss3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br17C100H517I83N183Pb100|Pb100C100N183H517I83Br17|FA0.83MA0.17PbBr0.17I0.83||0.95|213.3|0.65|13.17|['SLG', 'ITO', 'Ts-CuPc', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc', 'PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.7b02223|ufYUwXtIn7-eLmUr1kT-VYMLaucx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ts-CuPc', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|209.2|0.49|10.5|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.orgel.2018.12.030|uf_M-ShbCOCzqLPeZxC_SAnYli23|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b11465|ufc5h3hCEIda9i2P08Vk_9eZ7jTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.28|110.7|0.605|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|ufjlSTG7WwcB5IOusnh4Y2KdHrCi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|195.4|0.7390000000000001|16.01|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02987|ufm8XABK2IVn2WZ7Fv_nEjy7nUrJ|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.08|240.0|0.74|19.2|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c']|bulk|https://doi.org/10.1021/acsanm.8b00859|ufpTyv8ogtU_j6TJUbi4dyOVahrv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|169.0|0.65|10.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201800130|ufsexKS9y6OId75hSMOVL8Rzt8BD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.1|0.7440000000000001|18.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|ufx1UFGuGCpN4pIDBCekZ1nSLo7R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|227.4|0.716|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta00539c|ug73ZlJhQ4x3iNFskznBFvShBMaJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3|1.5400001642119578|1.06|227.9|0.726|17.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b02257|ugEsnV2EWu3Bx1IBe6u5drsEb6a9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.6100001716761378|1.0|207.0|0.6629999999999999|13.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|ugR2ctDiqjxC2z-QFM21KFjrbyXr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.7909999999999999|61.5|0.243|1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NP1', 'Au']|['NP1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702379|ugRxyI65OJrrBI2194-zDBDD2bm3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NP1', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.02|153.8|0.73|12.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra13289a|ugXd6XnuY09xWaEcZuvjmayHCqwa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|21.0|0.66|1.39|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-PCBOE', 'ZnO', 'Al']|['PEDOT:PSS']|['bis-PCBOE', 'ZnO']|bulk|https://doi.org/10.1246/cl.160881|ugbBLJT9IErsO6JLYYE9Lk2mwpSY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'bis-PCBOE', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.6|0.69|14.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5nr07347b|ugbmfKzNWHZdW1wuS00goAnKgIQ2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.9|198.0|0.66|12.0|['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|ugf0GrrxqcFF-EkwahBfyDTlJKdI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'P1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.94|70.9|0.49|3.27|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|ugmbARqTirGcLITO5-E4itH07ZMQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|ugvNj0atjsTl1mH7WPr7j2psFidL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.084|13.9|0.26|0.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.06.037|uh3rXMlMYwnMDqg43s6qvQQYcywL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|201.8|0.4|6.84|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|uh9nzwemXTJzUkhdVW8eGM1mVD-a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.02|9.86|0.64|12.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']|['SP-01']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|uhDMM-tZf0LiFezekxhcOmy_3kTq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SP-01', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|169.0|0.75|11.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ra09691j|uhGONz46NwyAmZy7O527xlIfGvyk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155|0.77|203.0|0.5670000000000001|8.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|uhdTgJH-bfMEkixex5Fb_CN6vStc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|214.8|0.7340000000000001|16.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12305|uheRmxwpbTTLYDpGprKgB_HHzlGv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.081|170.27|0.535|9.5|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.tsf.2017.07.003|uhmbcAZrlqADglz60ZtYPJH-_aZY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br500C500H2976I1455N524Pb500|Pb500C500N524H2976I1455Br500|FA0.048MA0.952PbBrI2.91||1.079|235.3|0.705|17.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110197|uhrfvby2atNh_Sy5hHtuXt4MTHZn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.048MA0.952PbBrI2.91. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.65|132.0|0.272|2.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|ui2pPb_ugVM66wJ-dqvY7buSDCG5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|uiAqxKtk790DmA1xr4A1lveEWHoR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55|1.6000001706098266|1.173|228.0|0.795|21.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.049|uiHTKLD0QNYHoDxa6Ebtu8lIF4xi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.0|0.36|6.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/C7TA09193A|uiMv-TKxtErCUgHsRuygfcXU90Lv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|96.3|0.364|3.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|uiQRhI44qzes8RGO_aIrXA0pstNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|195.7|0.696|15.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.09.034|uiVHIdQlkDhWfSBvMxhUET9jZqtv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.757|92.7|0.416|2.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|uiWc5MEIaMRvRUL1MhfzPFeb-r5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|168.0|0.43|6.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07091k|ui_At_MAfgGqZqkAMy1TJVB7mk-A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|229.3|0.7020000000000001|18.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|uibu0afUICVjcRm_xfW14lOyip0b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|197.9|0.721|15.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc02954c|uigePrIU2e7SKbiz9C1adT5CfrQ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.05|221.2|0.71|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5131300|uihda2NQYuvj12VpBYrDSuD4eyOz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|169.3|0.63|10.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|uiq-fArlUduLL_2wLOWxAhDarvZ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|185.4|0.472|8.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|ujAOvAY1_2BWUcSY5zqssDNb7eqA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.941|140.2|0.65|8.66|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|ujL91PRxo0Fcwr0rptHHe2KQF-ZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|218.0|0.728|18.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00888|ujU5yY5TtaCIRO1WU-i8PHdXHq19|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.15|180.0|0.66|13.7|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'V950', 'Au']|['V950']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.01.015|ujY5T3lbbrYn9qrP13laulmlMloQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'V950', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|137.0|0.67|7.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4ee01546k|ujb35Euoo-Mz8Z1jGlCiEb-UahAc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.7500001866044976|1.0|171.29999999999998|0.62|10.59|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz502429u|ujdKdkrKMeImSwwxNyByAY_dnMa2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|174.0|0.586|11.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06143e|ujf5m9f0zs8-5orJ7734nEecZ_3T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|224.2|0.7140000000000001|16.08|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'Al2O3-c']|bulk|https://doi.org/10.1007/s12274-016-1407-0|ujohYq-GTvUajybGBdv8gFnQq4XJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Al2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|233.9|0.71|17.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201800758|uk2-l2xm0SELmLQnMqS9oSVM4ycc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.725|5.8|0.38|0.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201800409|uk3VeOJoXov6ZZCshMcHg1fIWv7w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br640C1831Cs667H9321I1860N3496Pb2500|Cs667Pb2500C1831N3496H9321I1860Br640|Cs0.2668FA0.666MA0.0664PbBr0.256I0.744|1.710000182339252|0.848|197.2|0.62|10.38|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|uk7vUF74fMMhzr4F7Z1tlT8ViLZB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2668FA0.666MA0.0664PbBr0.256I0.744. -Br8C19CsH98I52N35Pb20|CsPb20C19N35H98I52Br8|Cs0.05FA0.8MA0.15PbBr0.4I2.6||0.907|156.0|0.56|7.96|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V841', 'Au']|['V841']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201600762|ukF2XJ1gLk_dllDDZbfux1-idR2u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'V841', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|110.0|0.58|5.7|['SLG', 'FTO', 'TiO2-nt', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nt', 'ZnO-c']|bulk|https://doi.org/10.1088/1361-6528/aae9b6|ukV6A5-fYYNtCoqBec2duBkdFPrc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nt', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|61.1|0.39|1.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.03.037|ukY-ATICG0fY-0e16pEDdHkjOZcE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I242N176Pb95|Cs5Pb95C95N176H489I242Br43|Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42|1.640000174875072|1.09|216.7|0.64|15.15|['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['NbOx']|bulk|https://doi.org/10.1039/c8ta06436a|ukYym7UxUFL1HRd9cpEWrWVQvnaA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NbOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.967|203.7|0.6659999999999999|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b00979|ukotsw_7EpywFEJPu6uD-_QDNjto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|219.0|0.732|16.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.7567/APEX.11.105501|ukxvyJwq41771vQZq_pCsFPhp-Ly|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|208.6|0.72|16.22|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.041|ukyduU8hIJxR4OH4vc5SfeqLb9Ss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||9.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.001|ul1qB_xx4Ya-hvosiH7rCavX3lNa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|ul89zn4yabtV07b2I3Ow_A7uShw5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|207.4|0.65|14.11|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-DPPA', 'Au']|['PZn-DPPA']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201701526|ulCLYhMIncroTFjgbREGXjp1tLss|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PZn-DPPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|171.1|0.6920000000000001|12.63|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|ulLN8tT9NFht_zbApKqIXoH5gyAV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.12|109.3|0.69|8.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|ulSJwrGMCft76gCbIBM4jNolP0qg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|86.0|0.331|2.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|ulb_BI3p6nkctZjEsaG-qxjsppd3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|214.3|0.69|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|ulg5Rt66W_4mHst9jgZ_tOLAhXCD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|180.2|0.654|12.04|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|ullmQSqLA0oXzydzZWsweX9-VYZz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.013|9.1|0.7809999999999999|9.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.chemmater.5b00041|ulp2PYJF26O-20ps6PP14489zeSh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.15|241.0|0.76|20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903654|ulyK1Rr2BhogCz1K2wRp4SBKTAtZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|226.1|0.758|17.75|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/C6TA05095F|um0NXv3eSozJVQ1pZywIieGz59OV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.12|143.0|0.693|11.1|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2019.12.011|um1QbL1f-v1as9Nr88Muam_uj1Ni|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.5|0.76|16.53|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|um1SjkVVnkBY7j9LDOYuH70afOZ5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|161.0|0.36|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4TA04385E|um1n-5kAxD0IWmGMsvEOYR1E2Yp_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.272|115.7|0.66|9.71|['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['NiO-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|um5nlNESet8JZd0_otkdQmZE4mRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|199.0|0.73|15.72|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201702182|um9t3naBrqab9Xmbb8QdB1-Xs7lP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.99|210.0|0.521|10.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s10854-017-8094-9|umIKm_38iXkQ4H7UpJ3lqU_f5j0U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.093|234.1|0.758|19.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201900838|umNUaGvg2Q3ZzFCbd-EWNc2J2QTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|224.0|0.708|15.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b13259|umf6BsUlf8FigH8pVn5Quc3szKXH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.5429999999999999|203.0|0.6859999999999999|7.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|umq0-7k_-Aw3KOWVa-wg0cPbsmc8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|219.2|0.627|12.34|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|umr6cMyvT08h07sHGWwG5X1-ufMf|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||1.0|204.6|0.38|7.58|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1166/jnn.2018.14385|umxbTcP8FInI1BuSjpyjJiO0viIB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.916|159.8|0.65|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB-DCB21', 'Au']|['PTB-DCB21']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201402033|un4tpwgWL4IsMehWHQ0dNfnsxgLD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB-DCB21', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9400002068644144|1.213|146.4|0.79|14.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|unClzR-lsscRl2CgH95TMt386MUK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|208.6|0.77|16.11|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.cplett.2017.12.012|unGIZjzj_esdu0LDHjwV2uOOqTer|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.662|89.54|0.595|3.53|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|unHQzoYYrlwTDbPN6xkAUpY22jDf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|224.8|0.7559999999999999|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|unJFeEiARs9KSpuWDqetRqvZLR6c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.02|203.0|0.61|12.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b07318|un_vI6jKff_gElFB_5fBKOPizWA5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -Br45C219H1979I884N404Pb270|Pb270C219N404H1979I884Br45|(NH4)1.7FA0.15MA2.04Pb2.7Br0.45I8.84||0.95|134.9|0.6940000000000001|7.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|undW3ltDp_7YQlsWv_G2Bs46U64P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)1.7FA0.15MA2.04Pb2.7Br0.45I8.84. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|216.2|0.76|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.009|unehDvdSuXHTSZ-3ep0NjdA5b1ho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0477-z|unnqOZSkwFT3etuSokGCHEtP0dyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|213.3|0.74|15.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.mtener.2017.06.009|unrwG3-pFuGy1tqYpOJpJKvKlO3c|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C149Cs5H805I294N238Pb100|Cs5Pb100C149N238H805I294Br6|Cs0.05FA0.89MA0.6PbBr0.06I2.94||1.037|212.0|0.642|14.2|['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201800133|unuOVAD2wZsDoyrqRxYf8wKSZeW1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.89MA0.6PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.84|110.5|0.61|5.75|['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PDI2']|bulk|https://doi.org/10.1016/j.solmat.2016.10.041|uo22F9CXTpXcV0fPuowrbmMNyhx8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.171214|uo7S4x7i6v2zqpjHcrQ9eQc9feDf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.4|0.528|11.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.192|uoLru09y0fMNTZO9M7ZSydV8WWLy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9400002068644144|1.19|151.8|0.7440000000000001|13.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201902279|uoZ67ah0F3UY3u5f0aX2ohjOFqo5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85||0.973|214.1|0.616|12.83|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1039/c9tc03111a|uof_MIEnAjjfG5sOuBWgeU4vJiVJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|226.1|0.711|15.09|['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['1-ethyl-3-methylimidazolium iodide', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|uofbbemh8tb0MAgRqAqAlKChqOq9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '1-ethyl-3-methylimidazolium iodide', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.0|0.7|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.01.004|uphVBiI_AfHDdNjBrc0Up1_Y6dIz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|95.0|0.5|4.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C4EE02539C|upkyrJQ1YYFjjS3dpQgFTk9DFLhg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|149.4|0.6759999999999999|9.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta05053k|upnPhlyKTUYBM_0sM3gW47Qvy6UF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -C67H195I65N40Sn20|Sn20C67N40H195I65|(PEA)0.6BA1.4FA3Sn4I13||0.48|175.79999999999998|0.506|4.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'LiF']|2D|https://doi.org/10.1021/acsenergylett.9b00954|upx2vhPYDhUG1LYRS8UHV6WvAY-i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)0.6BA1.4FA3Sn4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.5|70.0|0.38|1.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|uq7D86xB-iujELfZC5Y-LbaaWy_T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.300000245251625|1.3869999999999998|67.8|0.75|7.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; MWCNTs']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8dt03296c|uqM4rEvouzaDAXXDnfxnzP14egaO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon black; MWCNTs']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|164.0|0.469|5.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']|['NiCoO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.006|uqTL1-rMpqVCNhKC0Gk6z0ocC80B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|208.0|0.785|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|uqVOPJ78AXPr4u9zUIEL2RcAQK9L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|208.0|0.738|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|uqWFDMTwsjF9QLdFLmsn2GQQfbbs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|217.4|0.61|13.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07511|uqZEePdLsK4WcIYzl0YncNVe9asP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H39I15N5Sn5|Sn5C10N5H39I15|HA0.2MA0.8SnI3|1.3000001386204838|0.36|137.0|0.46|2.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1039/c8ta07699e|uqb0hWd6U_59C3yxWKlsEkbPYnjL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is HA0.2MA0.8SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.01|231.2|0.74|17.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.12.013|uqfxxsZyc7K_sELhLYQKACfQtex3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|224.5|0.7559999999999999|15.21|['SLG', 'ITO', 'PTAA', 'perovkite', 'PCBM-60', 'Bphen', 'Cu']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2019.05.003|uqgKx40H0S8Af0-npsKY85T1Q3Ro|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'perovkite', 'PCBM-60', 'Bphen', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C50H253I50N97Pb50|Pb50C50N97H253I50Br3|FA0.94MA0.06PbBr0.06I||1.01|227.0|0.65|15.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.01.029|uqi19UUto-j-McKNti0XZGovKdqf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.94MA0.06PbBr0.06I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|162.0|0.64|10.0|"['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']"|"[""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile""]"|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee01220h|uqmfnUdUFl7afYff-WaAP1xu82-6|"a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', ""2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile"", 'Au']? The composition of the perovskite layer is MAPbI3." -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|215.8|0.72|15.43|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|uqrXw8R9oxOn9mKeYfRop7nioy_6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.088|203.4|0.6709999999999999|14.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|uqwZm5x9jTg4e5_Fq_Vayqw8KH32|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.05|226.3|0.799|18.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803476|ur917SzIKsAJahq2tY-VDHtpBjeD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|||||['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1126/science.aau5701|urGUm4f6DZwC1zyRKcQDkSNslpu0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|196.3|0.708|12.11|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1117/12.2506443|urIOFKbpBuYJ4AZHFyoy2f-jfAyH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|171.0|0.685|12.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201800324|urVstN195gLipyJOcRr9W2d1n8n8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|189.0|0.7|12.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta00658a|urZ3QC4RL69-MhqnbOnl8pFh8Oon|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.0|0.79|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500844|ur_0wFmXxeWeRtfcp38FtQNxrquB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|88.4|0.66|4.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.07.238|urawFPiFgfocq6ydBrSLrod1O3s3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|195.0|0.65|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04051e|urk5dW-HaJABK9YwATj1PnVu5Awy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.989|122.6|0.545|6.61|['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']|['Co0.939Cu0.061O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.langmuir.7b00127|urs1D1W2iRFnkUEq3fj8y78gpJqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CoCuO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.47|200.4|0.62|5.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1701293|us2z-mdzz0LWPMNED6IgKXDQcN2t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|207.3|0.74|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta05053k|us4XQ99T57FpVbUYUIVpLG4K1Q36|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.0|0.75|14.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.9b14423|us5ByDz4c6VQCP-N_HczrWMPSfy0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb19Sn|Pb19SnC20N20H120I60|MAPb0.95Sn0.05I3||1.06|232.8|0.68|16.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201800258|usCSSIVA4x4zLmywSTybkUx3cDbI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb0.95Sn0.05I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|||||13.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2018.10.011|usNiFq534obWLQZBHuuz9SweCcqz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|218.5|0.6990000000000001|15.96|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700173|usWHEpeDw3UFNDPwgJfgf8hJDygk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|140.0|0.68|8.8|['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2BaSnS4']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08426e|usd89WIPhk8YeQ9bG6b_ruLy1u70|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu2BaSnS4', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|122.0|0.62|7.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.007|usf228gXW0BKjFC445NZmjU4XPhr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2Cs3H12I15N2Pb5|Cs3Pb5C2N2H12I15|Cs0.60MA0.40PbI3|1.6800001791403176|1.01|15.0|0.52|0.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|uszrLvauF-eD8erYgjYKOCBKo3Ek|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.60MA0.40PbI3. -C61H256I121N41Pb40|Pb40C61N41H256I121|(NMA)2MA39Pb40I121|1.6100001716761378|1.07|205.0|0.733|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1038/s41598-019-57015-4|ut1Vt6NBrgXJEjRZFz8nXcckO5w1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NMA)2MA39Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.93|127.5|0.495|5.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|ut4NpfWAImgKgbL9-Gi2d4rfc6cr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|202.9|0.6709999999999999|12.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta07983g|utUsJlTYrXy0Bf3EwUaT2gAvOsf2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.985|208.0|0.67|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']|['FU7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|ut_Fq8DWAl6TrAszrohIFPsScCq6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FU7', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H488I255N177Pb100|Cs5Pb100C95N177H488I255Br45|Cs0.05FA0.82MA0.13PbBr0.45I2.55||1.078|217.1|0.769|17.98|['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'LiF']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03898a|utc2BGVN1eJxbdOwOdwZKkthVR_2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'LiF', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.82MA0.13PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.96|121.3|0.59|7.41|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07549e|utdPitRB2oJcPESEC6CYHh1Vg2Kw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.95|209.0|0.58|9.9|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.055|uteY_cH2Nal_Rb2PJL4rmnMuoOx8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|106.0|0.67|6.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|utiFst_-Y0rv61nNYbxP8e2loFSt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.11|156.2|0.7020000000000001|12.26|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|utiaE1eJxHgB_U3_h6xTSIH460M-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBrI2. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|||||10.03|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|utnRBhaApzjMq6Xy4iEHh1wFILMF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|0.65|207.9|0.3929999999999999|5.28|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Au']|['none']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|utr3sv2mnIhlyo8ERRjIiXc1B7-5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.135|216.0|0.73|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|uu-9kcW5dfyXThNTq7lootSkzwlU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.944|168.79999999999998|0.1689999999999999|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|uu2H0C1ZMI3B58b0w7NyiT3A8HUQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H117I51N23Pb20|Pb20C20N23H117I51Br9|FA0.15MA0.85PbBr0.45I2.55||1.058|226.5|0.763|18.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800905|uu7HSKzfjhWjkt9_YGDyccujoeb2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|182.0|0.58|8.34|['SLG', 'ITO', 'CuSCN-2D', 'Perovskite', 'C60', 'Bphen', 'Ag']|['CuSCN-2D']|['C60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr01135k|uu87WvZyLQT1XLolLXPTATSrlfdN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN-2D', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|1.007|35.0|0.439|1.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.035|uuC6OUR_176NUC6ct0cr8pw7yE0e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|202.0|0.78|17.0|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1126/sciadv.aat3604|uuS09jjqWbXnz6QryBoMo-Mf7WDb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|148.0|0.71|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600210|uuTv__fQNt__QqQ3_lyAdaW_mcW1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBi2I7|AgBi2I7|AgBi2I7||0.46|16.0|0.56|0.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700634|uuUXPNGqsLc_HkpLg8Zl_pk_I5Zq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgBi2I7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|194.8|0.7|12.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cphc.201601245|uuZcW2rSQYNRAs2fxtOG6KrS6gV7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.3|0.631|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']|['DAHI', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.8b01650|uujqkdzXGRkwlIJdzHeobInwpkwd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DAHI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.02|210.0|0.6459999999999999|13.8|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|uukKMwXVgjedFMz09FLbZ12M00T3|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|208.0|0.74|13.85|['SLG', 'ITO', 'MC8-9-NPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['MC8-9-NPC']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2018.01.005|uupnYM3W2nX2bLjE5z5WnCK2hHsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MC8-9-NPC', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7900001908697432|0.98|164.60000000000002|0.675|9.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11474|uurdzOk0XYeI171UfDxHfslvC_EG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.021|206.0|0.73|14.9|['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/smll.201702775|uv5xo-Jz1LOBQmnqJwlnWAVWA-rL|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|131.0|0.4629999999999999|5.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|uvHw4hm4CZkHzwDqH0U6NVd3QIu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.1|216.7|0.65|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|uvIvPkq7UWYcDfWDrE6kYGhDjw8P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|141.2|0.63|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|uvJZbcQ0uyb07fAX7byrT2n7nJoe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||0.938|201.2|0.581|10.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.148|uvVnMJMT3E6Fz2u60Y31KBSKjAM4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7Pb1.0I3||1.037|221.9|0.72|16.76|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201804067|uvWDfHzu0IUqm-Jp1LXDamYXT2OM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.078|204.1|0.684|15.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|uvYztEfkFnchmlGG3xbDkR8sb73i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|9.1|0.19|0.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.3390/ma11081417|uv_6VQE089wgnWWCPKMspaipzZQH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|236.5|0.64|13.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|uvcoFOLu4hecK194b1elQqqllh3B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.5|0.73|17.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cplu.201700471|uvmp4Ld70__7vzlYmIRo9BSO_fsq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.0|0.73|16.9|['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-macroporous']|bulk|https://doi.org/10.1002/adfm.201804356|uvwxxVhiQZ9Ei4IRC90jaas9yz1f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-macroporous', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|184.0|0.688|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201601309|uvx0xkbUS7LIZhpEuHEVk3OFOJBK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|192.8|0.69|13.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11071073|uvzdM6khTaoxxOFHMRvlBlN4n8Mq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.11|224.5|0.817|20.37||['PCBM-60', 'BCP']|['PTAA', 'HTAB']|bulk|https://doi.org/10.1021/acsami.1c22020|uw4rLKI2iREJbrt-mOAvEoi-C0uF|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|190.0|0.7120000000000001|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.10.106|uwMqvObmuyQBFf_zT6jcZFj_dj8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.904|96.2|0.489|4.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201600591|uwQYFaaNC0UIHso5KGtySSeMyI4T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -Br3C95Cs5H491I297N174Pb100|Cs5Pb100C95N174H491I297Br3|Cs0.05FA0.79MA0.16PbBr0.03I2.97||0.94|132.10000000000002|0.492|6.12|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900204|uwdhfGyff_pU_S55FzRTDOTwfBMv|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|181.0|0.65|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta07545f|uweLm28rc2YjiPr1fGjmVROcis4v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|119.0|0.427|2.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b05078|uwf0MvqJuAUA-TMx34_6cmlknEbb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C32Cs5H185I300N39Pb100|Cs5Pb100C32N39H185I300|Cs0.05FA0.07MA0.25PbI3|1.5100001610130236|1.18|236.0|0.79|21.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.202000995|uwmPT8PuZPp4wsnnLE7k5YcQEfDg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.07MA0.25PbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.07|230.0|0.73|18.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|uwzjQBJiQI8WlZzyyUorXBlinNb-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|213.9|0.77|15.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.orgel.2018.01.009|ux6AVB7Jei9gV_itsRe3gY2Gt2RH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|183.0|0.77|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12303|ux8tOTAeIjuk20cyxqN0TUd1rS7o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.0|0.759|18.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsnano.7b08561|uxAsuM7vMNUpduLwjefHkGUhLEkp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['Cyptop', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smtd.201700244|uxMw5sApEjrgcI5lC_1nmeggPlDD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'Cytop', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||1.0|205.5|0.68|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2018.10.001|uxRAf_uC6YK4UJRH2ZKV57fH7F9J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.589|13.8|0.67|0.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201304022|uxR_zQAFGjl-mVv1Clql-lgn5uDS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.769|75.9|0.32|1.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.12.118|uxX6kju9Wc1O-CcmssUVZTeC8Rhz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.65|13.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta02203d|uxYTm2GQe-Uucgz2iuaVZlhOROkk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2Cs3H12I15N2Pb5|Cs3Pb5C2N2H12I15|Cs0.6MA0.4PbI3||0.96|54.7|0.63|3.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|uxb-p_8_Z4jqBBB_HDUeuDbFH8qm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.6MA0.4PbI3. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6|||||0.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800217|uxloWV4QUnCZEPadRb7tSb8a8Pga|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.1|0.7090000000000001|16.91|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|uy4HBO0N_Y5kcOI2SZ6N9ffAUSuA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C8Cs2H40I21N16Pb10|Cs2Pb10C8N16H40I21Br9|Cs0.2FA0.8PbBr0.9I2.1|1.7500001866044976|1.204|176.0|0.746|15.5|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD', 'MoOx']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/acsenergylett.7b01287|uy977bVq-UF9RRAaM8sjG4KIqptN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.078|217.8|0.708|16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b14270|uyAxx91UKvuNnhM_IJ8LMAf_mx2Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|180.9|0.61|9.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.06.020|uyJwQv5FzSkvGeyj9umXOyqeB0ox|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.0|0.8|16.86|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|uySRH03W_43O3KDNQLBxP_H9iBTy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|155.0|0.425|4.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|uyWPlI-bPNXOUQhePJUz6uoN9W3_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.84|77.9|0.58|3.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.126667|uybqDKAeB8147Fve--jnFQd29zY-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|201.3|0.654|11.5|['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adem.201900976|uyexdZgiRROVBqM9lbdmW3VsGN9M|a perovskite solar cell with the following device stack: ['Ag-np', 'SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|185.0|0.72|11.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c6ta08021a|uyzZ27zBeqvdB3or1hMfCjZny4-Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.77|110.0|0.62|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.1228604|uz7_UB9Ge5TuUhsnNFJjGa1OeaL9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.098|223.2|0.7809999999999999|19.16|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900125|uzMJatK1Ypo6sDTkkagzFTfavkW-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|94.4|0.5|3.93|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.06.001|uzgboTk_zOMZUtQkLrJ7KFxijm_F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|185.9|0.782|13.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s13391-018-0075-5|uzkPz-E9CtoQY02R6YeUU9aYCP6l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.11|213.6|0.7|16.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|uzliW60YQSlyk7qC4iY6wjtXBVJN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.09|156.9|0.71|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|uzrqrghGkVdTKLt_DIwEeiV1z18D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|215.8|0.74|17.87|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ra10603g|uzzmDc3R7jI38PG5P7jljRAChPLB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|179.0|0.65|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ACE‐ANT‐ACE', 'Ag']|['ACE‐ANT‐ACE']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703007|v-68Uc3LR3f1yn66Zxfqqva9cOeY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ACE‐ANT‐ACE', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.139|236.8|0.8140000000000001|21.95|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta08042b|v-7mFAbJt605-lLQEs5_wIQNZxcC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CsI3Pb|CsPbI3|CsPbI3||0.97|160.10000000000002|0.65|8.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201900517|v-A2dMJfepyq71y_GMkUX5qpGT2q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|209.5|0.79|17.96|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|v-KFI6XDVlLNy0mUPSZ3Q3UFdpxm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||4.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|v-a40_JuetJGPxbsih-gqHLVPqon|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.09|216.0|0.73|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|v-b0kUYkun_DKtYiM4Q98U3HYFhv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C83Cs17H415I300N166Pb99Sn|Cs17Pb99SnC83N166H415I300|Cs0.17FA0.83Pb0.99Sn0.01I3|1.520000162079335|0.75|125.0|0.639|5.9|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|v-bnGsCD7dpMlpdCusSTNew1gL9s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.99Sn0.01I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|152.4|0.586|9.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nl500399m|v-ezPzdw7ZzC-IAGuWTWw96hHLNp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|87.5|0.311|2.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-017-2326-z|v-mVVIiLQsSag_NtFR9oGNp8EFi_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|174.0|0.76|11.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|v-t5Y_o4qa71mLFBQ6FNjwMtDAsH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|183.0|0.75|15.24|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['NiO-c']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.184|v02wq57k7OIcdKHocedEgoCi5t-2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|204.3|0.62|10.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201800593|v04swvN82lP3fxg_BCd-IxsVia5o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|157.0|0.68|9.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c5mh00026b|v06R_ncmZtcOBPhm2whxUEbbVDP5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|206.0|0.61|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ni']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jp506991x|v0DL246ihTZYZ3zEVGfeog1dM901|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ni']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|201.9|0.748|14.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6ta03115c|v0DPNop0f0MrQnmAMi6G7AOSlzwq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|193.5|0.609|12.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|v0O_f2fx_J0cerdwJ1Wpwh1l2wlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|185.0|0.64|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/c4cc07518h|v0axedsVYNBsDlKKVSVGJdTTU5eE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|215.0|0.595|9.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-015-1020-2|v0dDX7W_33yWPxvs5gwDmyQK2_PC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|215.0|0.6990000000000001|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cap.2018.10.020|v0dTVjGCIE18wvlkqWD4lkYKXkPO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.08|220.5|0.71|16.86|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|v0fLIvOSGzALfIh9U-2g7lwPwleV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7||1.11|225.3|0.795|19.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1002/adfm.201807565|v0r3UkOC7eIsvIKVbfR8ZWYKo4Cf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.09|224.0|0.7|17.09|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'X25', 'Au']|['X25']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|v0ybY0HAS3i388KtRYvM_IO2tyf-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'X25', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|128.0|0.62|5.8|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|v10qv1XuaRP7elsAbWuW9Ix0wiO5|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||1.07|225.0|0.75|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201606831|v11eo0bk2ZCFsvi0gxlSqccXX4xv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|110.9|0.474|5.05|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep20357|v12Yvzt1TO7R6f3qvFNgsPqTC0Tm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|150.0|0.67|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14555|v13t3TSCt-SGxWSkIZyJSNIAdb4h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|156.6|0.799|19.18|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|v18b3a16D3hyOt_Hlt7yVZagER9X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.893|175.0|0.5670000000000001|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201601309|v1JXT5mCeKouERRz-7VFXw1IVdcr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.863|186.5|0.535|8.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN', 'rGO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01094g|v1tAn0v5SnQe_rDuTHdDOpolbmAn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|226.6|0.78|15.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Graphene', 'Al']|['PEDOT:PSS']|['Graphene nanoribbons hPDI3-Pyr-hPDI3']|bulk|https://doi.org/10.1002/anie.201706895|v1x7czb8eq1pSEtMe7lxTIAexIC9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Graphene', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|211.4|0.76|14.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra08334g|v1yUWuuk1ma0MjbP2koiBrJmXPQy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.461|92.4|0.754|10.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900030|v1yb4KixVwWNitnA0mew8bFCblc4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|240.6|0.747|17.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-018-2556-8|v20o-AxT1JsT6v86CnRQq4pbhEs_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.667|114.0|0.3879999999999999|2.95|['PET', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta05728g|v2BHFacGpDrvJtIUCTm1R0TY8JIP|a perovskite solar cell with the following device stack: ['PET', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.977|157.0|0.74|11.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|v2G5a9xupolAF_yT-7ev3-wELW41|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.02|217.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta10661c|v2IFgUJnE6nTHCU32N4r8LIgkXw1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5||0.938|206.0|0.634|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.10.012|v2TNsWf2SjnLj9PeUsMadcXQp2w7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|143.0|0.6|8.6|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['NiO-np']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/srep30759|v2VmRR7rjK-N4TObWji5Y6TPDbes|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|215.1|0.79|16.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00400|v2aoaa1y3eNfbZD-HGF0BZGkliUa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||15.88|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1002/smll.201900606|v2biuekEfWMwXBiU-B3pghewuggY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.03|157.5|0.629|10.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201532944|v2fUociZvAfnNh1vRjEVsrV6efBy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.156|233.0|0.772|20.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|v2i8a4Ii5WMB6gIq2zuhSRcSYPpH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.79|187.3|0.331|4.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']|['PEDOT:PSS']|['none']|bulk|https://doi.org/10.1038/srep39132|v2kXPLUnRhLf5CASEfVQKVdOvs6N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Ti', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|43.5|0.434|1.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.7b02314|v2mQbjdFV14NXqQphFhYMM3Q47Og|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.9|42.0||1.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.05.180|v2nNyiJ_ehrbEN3Q7s5CJ-qGuXv1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Graphite ribbon']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.98|181.0|0.633|11.28|['SLG', 'ITO', 'SiTP-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']|['SiTP-OMeTPA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta09716f|v2otOdfe3OwizEIBZTiF-ZGJl4zK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SiTP-OMeTPA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.99|179.8|0.701|12.4|['SLG', 'ITO', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['SWCNTs', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7nr02404e|v2wCvot4EQqF3rFY_kYmQMCb2E0_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SWCNTs', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.04|207.0|0.742|16.7|['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|v3-bSFagWdR3CZvav2ZKGXawqWKu|a perovskite solar cell with the following device stack: ['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.01|206.0|0.62|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|v37SrKVUBOdY9aH7Z25s59Mgd9bY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.7120000000000001|15.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8cc09557d|v3DnmNpjFA_g6LV0vnLsYSv8MQje|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|40.0|0.366|1.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|v3NXPVqNwSaxZtt1kW1HnAj2P_zS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|201.9|0.722|15.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b00549|v3b9OAvzx0s6bPB4G8Q1znHSlTi-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|227.1|0.64|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|v3tkkjrlKu1zOp7xxVZSSCIStDVQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|157.0|0.67|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1557/adv.2016.285|v3yCaPNNzxlP9dhfiekRE0oqSAi2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.135|221.7|0.6890000000000001|17.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|v4-S_CnrNClxOfovdfWtwuAW99LG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|185.0|0.77|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1002/adma.201405171|v4AeovDlyu8JRVKY7ewgJNqBGfsv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|198.1|0.7120000000000001|11.27|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|v4JoN__ZYdVZ2YeitZvdOd5wjWuX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -C40H95I32N13Pb10|Pb10C40N13H95I32|(PEA)2FA0.5MA3.5Pb5I16||1.14|133.1|0.68|9.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta03022k|v4Ndt_lwlEcxtnAScfyE3tzKTwVt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2FA0.5MA3.5Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|158.7|0.4|5.0|['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti3C2Tx']|bulk|https://doi.org/10.1002/adfm.201905694|v4PN1rrbnh_t--xG-MDvfAeqCnW-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||0.994|199.0|0.73|13.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6CP03851D|v4QZuxqVHRRFP90EwgpehaB2u7_L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|232.0|0.68|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07513|v4SW3LB_JmOy0absQBcWVbZPN2b2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.88|201.7|0.723|12.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|v4VHZ7f2nyr8sBmJcCJ0wRF0UuUC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378||||13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b01857|v4f40qc2gEOpz_Pwk9ZNOuGuW5l_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBiI7|AgBiI7|AgBiI7||0.57|12.5|0.39|0.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.03.085|v4g1YnfCgb1eei-Ic1lMNMLgyfx9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBiI7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|148.7|0.655|5.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.01.027|v4jl3VEhhrGjXd9etVrRzAGp335J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.0|0.76|16.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201804005|v4mo9YNtaNBVPCve76YtxvlryImX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.07|189.0|0.71|13.9|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-TTB', 'VOx', 'Au']|['Spiro-TTB', 'VOx']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c9se00081j|v4rVDGNYmvFs-zQ_LRinQRLzSYJ0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-TTB', 'VOx', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br50C100H513I250N187Pb100|Pb100C100N187H513I250Br50|FA0.87MA0.13PbBr0.5I2.5|||||15.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.joule.2019.05.016|v4wTs6kJiWZ7nUXGZMBuyM-C9PNb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|216.0|0.66|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c6ra28669k|v51U1DyddZy-PZv1OtzzpYJfsC7M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|115.4|0.68|6.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201803801|v52E2b_tZ1OL9hxKtJw_uiaZOv8k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|202.0|0.75|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05718|v5JDDB1irIsTt8UfXutfzD3fysEK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.47|216.8|0.632|6.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']|['BDT-4D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|v5JFsZuRMe5CiPFER5hv2Wdx8AU4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-4D', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.966|190.0|0.66|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature22072|v5LOuMPwuHGUauU2wua1hJ--wbL0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.95|87.2|0.607|5.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2018.12.097|v5XhVLCtPlPVfOXqzEjBPXEVRHN3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr2I. -Br3C4H24I9N4Pb4|Pb4C4N4H24I9Br3|MAPbBr0.75I2.25||0.968|203.0|0.71|13.8|['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Si-nw']|bulk|https://doi.org/10.1016/j.ceramint.2019.04.221|v5Y8NuFO593Oylv9KenlkngvVVXK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Si-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|204.0|0.7|10.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00739b|v5YTHQX4RCZ4vyYoDgzAlARmZJQP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.804|96.1|0.489|3.84|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2016.09.014|v5gdLX-UI_kec4DGaetOEAu62t5o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|230.1|0.81|20.78|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.104229|v5miKmsRetghU4HhP-F6sVBOTh7Q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|216.9|0.728|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c7ee02901b|v5xPz2hI2zWtZ_1X8ixFSKuHeLen|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br6Cs2Ti|Cs2TiBr6|Cs2TiBr6|1.8000001919360546|1.02|56.900000000000006|0.564|3.22|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1016/j.joule.2018.01.009|v5xpB-QLeZv27mo5lPM2SgS_YBtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs2TiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.111|218.3|0.7390000000000001|16.58|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01556|v60otOp22r3GYIIuR0FsywohwZIu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.0|0.74|16.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'CU']|['PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02503|v65LVFK-CXApSeNq-9fnKguhm1QL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'CU']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.95|172.0|0.73|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|v6CGmCulTXZJ3lrMqM-HRITNLQat|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.09|209.0|0.75|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180719|v6IKSpGZyCinOal4WhcnqJD3xSWm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|235.2|0.76|20.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Sinapoyl malate']|bulk|https://doi.org/10.1002/adma.201800568|v6IKtmKPFxqLQH1Fi3AIjxOwwzcU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Sinapoyl malate', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CsI3Sn|CsSnI3|CsSnI3||0.41|180.0|0.4629999999999999|3.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.8b02555|v6NsNkUySQmGW0rCLyu8N32hKzNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|199.8|0.39|8.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|v6T-IRq9CkEiJZ9TO7qLlf_jcuIv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.45|28.1|0.31|0.4|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|v6TM5myTK2fg4h8sqxYIsVIfx7jT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.500000159946712|0.88|178.70000000000002|0.66|10.34|['Willow glass', 'Graphene', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta00299e|v6Yu0USXmtI1gltE0hYZuDtBaOTl|a perovskite solar cell with the following device stack: ['Willow glass', 'Graphene', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAMAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.38|71.3|0.62|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8se00442k|v6Z7A69IzA6icfIXXaCDkg9DFhvy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|218.4|0.61|13.72|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.electacta.2018.07.178|v6_SpAnhkS_0iBjLJNaxaaQYzMSe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|181.0|0.7|12.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1557/adv.2016.285|v6czuO-mwp3EqvSkz2LKi5Dp61Kb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.902|159.60000000000002|0.365|5.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/jp509896u|v72kyIWC-ninl6gGQcgLySFkr1si|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|145.6|0.547|7.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr06692a|v7JiXTrhaYj17a5G0xhtGQa-A8hk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|218.1|0.71|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3791/55307|v7WbvbcjUbgXzH3SrHQUofAdjoLG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.91|219.5|0.723|14.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']|['PEDOT:PSS']|['pBTTz']|bulk|https://doi.org/10.1002/smll.201803339|v7eqZt4adfgduB-FoZX_735SWjXf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'pBTTz', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.96|205.0|0.62|12.08|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/am.2016.85|v7kJt5hOrncRVthvbbqNw79oEW6w|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5600001663445808|1.07|192.8|0.418|8.46|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|v7mq9wi2BrW_DRDChpnFQ8UHAl8S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|138.8|0.62|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra11379f|v7q-F6-y1M2C_g8Dw2QJbik9FL5p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||14.94|['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['TS-CuPc']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201701688|v7rSdxqYkR5PoS9VEUHdvC3xhHF6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TS-CuPc', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|181.0|0.78|13.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-H', 'Al']|['PEDOT:PSS']|['PCBM-60', 'EFGnPs-H']|bulk|https://doi.org/10.1021/acs.nanolett.7b03225|v7tnIMythDxcVWWWql8Qsze_nG6b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'EFGnPs-H', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|202.5|0.63|13.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8cp07461e|v81XlK4xe8TIaC2E9IDcZGXCC4po|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.747|44.0|0.344|1.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(10-butyl-3,7-diphenylphenoxazine)', 'Au']|['10-butyl-3,7-diphenylphenoxazine']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2019.04.003|v820YN3EvM7-tQKwZv3Wesu7Vcm7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '(10-butyl-3,7-diphenylphenoxazine)', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|213.0|0.731|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02388b|v8Ty2TFrKn5l70_yyeyiDlUAnQ4V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|189.0|0.7|13.3|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1038/nphoton.2013.342|v8aQU7O3WyVVBDwKQl1a13Yo0kPS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|203.1|0.72|12.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|v8mYWPG7ZuyyCyqeczyn4X3I-Skt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.95|220.9|0.5720000000000001|12.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|v8qhRXUWsXJQDllSs7bFeY2CuxYq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H491I261N174Pb100|Cs5Pb100C95N174H491I261Br39|Cs0.05FA0.79MA0.16PbBr0.39I2.61|1.5900001695435149|1.01|176.0|0.66|11.8|['SLG', 'ITO', 'NiO-c', 'BBA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'BBA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.04.035|v8rhpMjgenQjQiJ-p_MT6h0KXwPA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'BBA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.39I2.61. -C4H23I4N5Pb4|Pb4C4N5H23I4|FA0.25MA0.75PbI||0.98|186.0|0.6920000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11801-019-8118-1|v8to0rQy-LMork9WU-lBPrbSaqqn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75PbI. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.363|157.47|0.591|3.4|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b02216|v9-zvUGAJwJo7s1R6DDyXPPYQkIm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|236.0|0.65|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01592|v9CNgTtWAfTPDiR9TXzqSz2aB2XO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.873|122.5|0.6679999999999999|7.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2016.04.059|v9GcLCJBKwT33l85zAoi1imcbj0b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C19CsH98I50N35Pb20|CsPb20C19N35H98I50Br10|Cs0.05FA0.8MA0.15PbBr0.5I2.5||1.13|232.0|0.8|20.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']|['PTAA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201807435|v9GdNMFdZboNFiuIJan3y8e77YKN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|162.60000000000002|0.696|12.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|v9Iop_5GYVXGMN2CfpgiKNN2AiMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|179.0|0.54|10.05|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.tsf.2018.03.057|v9Y4JzMGKuedEK5ypMMPsFgwu8yU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C87Cs10H448I248N161Pb100|Cs10Pb100C87N161H448I248Br39|Cs0.1FA0.74MA0.13PbBr0.39I2.48||0.975|109.2|0.66|7.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTB3', 'Au']|['TTB3']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800681|v9ai0158WXmei7QuHufRuzldzviw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TTB3', 'Au']? The composition of the perovskite layer is Cs0.1FA0.74MA0.13PbBr0.39I2.48. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|145.0|0.69|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|v9c4z_KZ5QSCIegvQnsfrQZA_zNm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.1|0.61|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|v9iy7rt2TMIzztVvbBCajmxzRegL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.129|207.6|0.64|15.0|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1039/C6EE02100J|v9uG3NBAb8aiuBfQKkLkV6zJvd8I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCsH5I6N2Pb2|CsPb2CN2H5I6|Cs0.5FA0.5PbI3|1.640000174875072|1.17|183.0|0.7829999999999999|16.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|v9uHydko-m6J9AaZLQ2ua-15ZJpk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.5FA0.5PbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.205|146.9|0.774|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/advs.201801123|v9vHHOhx17N0IKGng3CglgRXeEq7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br2C17Cs3H87I58N32Pb20|Cs3Pb20C17N32H87I58Br2|Cs0.15FA0.75MA0.1PbBr0.1I2.9||1.04|221.9|0.63|14.54|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c']|bulk|https://doi.org/10.1002/adom.201801153|vA2rOPCqf91NEAlUWYbxNAy8fgkk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.975|211.1|0.65|13.4|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1088/0256-307X/32/7/078401|vA6qap7gOws5Xug39loBoh9S0FRo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C95Cs5H487I251N178Pb100|Cs5Pb100C95N178H487I251Br49|Cs0.05FA0.83MA0.12PbBr0.49I2.51|1.6000001706098266|1.13|211.0|0.55|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b02115|vADevsERimjTKJ1NOgfT9lNbTZys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|122.0|0.417|4.0|['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']|['NiO-c', 'Ni']|['Ti', 'C60']|bulk|https://doi.org/10.1039/c8ee03517b|vANZnlP5jaGq8c-Q36bhXGdDcDMp|a perovskite solar cell with the following device stack: ['PET', 'Al2O3', 'Ti', 'C60', 'Perovskite', 'NiO-c', 'Ni', 'Al2O3', 'PET']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.12|157.5|0.723|12.81|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|vAer0A6IXxeNMuDfOg8nc4TO0ZcG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|222.0|0.754|18.76|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c7tc04899h|vAfR1B6pVYKKuEa4w9SFbOi5X0g9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|150.0|0.66|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b04338|vAuhkbvMNOSLDhCFgeCFAkjTa9hp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.6|0.78|17.54|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['IDTCN', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06730a|vB1HV8CGyTzBVZe9TEStmcp_UwM9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'IDTCN', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.450000154615155|1.0|220.0|0.76|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b02787|vB8D8YhM_lNnclkMwiwZRPp9_sNQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C83Cs17H415I300N166Pb70Sn30|Cs17Pb70Sn30C83N166H415I300|Cs0.17FA0.83Pb0.7Sn0.3I3|1.3300001418194185|0.82|265.0|0.706|16.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|vBDMBY3LH_Isxprq0XuGzVVRgXWJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.8|0.59|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra15378j|vBEtTYTcrG62gEFvPiPlGYCLeo5G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|236.5|0.61|14.26|['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'CdS']|bulk|https://doi.org/10.1002/admi.201600729|vBMdaduFTuhyCbxI6Th3eKmaujnJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|165.0|0.55|9.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02734|vB_QB_RrLN_DMtCiXiSnvof8WBmN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.741|195.12|0.368|5.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||vBfCStG8Kw1K1TgOIHloy5t76vJE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.16|212.3|0.6920000000000001|17.03|['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'APTES-SAM']|bulk|https://doi.org/10.1039/c6ta08783c|vBgOqU227QwkaS3UaJ2cUYStt7DF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'APTES-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.7300001844718749|0.39|182.0|0.29|2.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM2', 'Au']|['HTM2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02960a|vBl1qBU03Hi3XOxcTXycZIXPKlcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.052|205.0|0.638|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02371|vBq10o7yyydErAH_-sHNgIvQZTDh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -C10H53I30N17Pb7Sn3|Pb7Sn3C10N17H53I30|FA0.7MA0.3Pb0.7Sn0.3I3|1.2600001343552385|0.78|236.0|0.74|13.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PTAA']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/C8TA03054E|vBwig1XEsmXLb46_2vcekPPCKytP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is FA0.7MA0.3Pb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|173.29999999999998|0.612|9.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CdSe-QDs']|bulk|https://doi.org/10.1016/j.jpowsour.2017.11.062|vC01bvaVaXukhGv5jVGnC2p8DYBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CdSe-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.897|126.1|0.64|7.24|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA', 'Ag']|['P3TAA']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|vC66lYgXKMkPSEmthzi6FfWyhKYk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3TAA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|36.0|0.48|1.8|['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']|['MoO3', 'NPB']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta00168h|vCi1FKeLtY5XUU0sYJi4g6XH5nlU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'NPB', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|215.0|0.75|16.32|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b18200|vCrhYbcG-KWNbioEV1Bu26QEB31S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|148.2|0.6970000000000001|8.89|['SLG', 'Ag-nw', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9020193|vCuMP-oS4jyRDm4l8IbPE88E0FBZ|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.115|224.8|0.69|17.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.047|vD1s1D71blIr-tl5aQqrqBUvL1lS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.010000214328594|1.2|102.4|0.746|9.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|vDQoPocTGVf_guRoPaBsiINpKS_2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.802|169.0|0.73|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201401808|vDRM2f2xmtCMtJb0PIDf_P50f_rE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|146.0|0.42|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']|['Graphene oxide; NiO-c']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01775|vDhnKZ_gjWUiiCylgpRJINr-Dn4p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide; NiO-c', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|119.7|0.71|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800034|vDmuSzk9b7diDblt8xF1tHz3kE6k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|148.0|0.47|5.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|vDoy9p6ZRk8kEoduds5aRkvSwgrK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|214.0|0.61|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|vE5ous0aiPKHhci-2sI9Fiad_gRB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.0|0.73|13.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|vEET7KNWxAtxKnril3ygu94qQA69|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.5|0.73|14.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc04405g|vEFjFvgFAutNrWUbtNBtTmYBlitj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|207.3|0.675|15.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9se00003h|vEMBNdba9Kv6WeQObS6ILtLNuBRd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.018|10.0|0.48|8.8|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1117/12.2291595|vEUOo7SFuSRmeKqc5fOvNiQPvxrb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|89.0|0.69|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Au']|['MoS2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|vEUverwUxM5PbjnJeumxh9kecNJG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoS2', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.08|184.1|0.7929999999999999|15.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|vE_GA3W5g_Um7N2S7NntR6_WkWsK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.1|150.1|0.6809999999999999|11.22|['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']|['P3CT']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.chemmater.9b03277|vEbtPtXLfkgKTSYCRdsaCiibZKoL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3Ct', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|110.0|0.41|5.4|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|vEg4xh0ZtVekoMZz9fPQmLoPubMr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|133.6|0.57|8.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900109|vFAd5xlQ4pJuA2lsUuToTrrILv7i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|209.5|0.701|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.016|vFS6UXcksCGcdUk3rpUFwj7xEi3O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|156.5|0.723|10.86|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']|['PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1038/srep27773|vFYI7CtwfbPslAvckld2GmzM0Uaq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.153|230.6|0.79|20.7|['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'PTAA', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'ImAcHcl']|bulk|https://doi.org/10.1002/adma.201902902|vFhGkxMFHa689kyrEOoJg7QUNB0b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ImAcHcl', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|225.0|0.78|18.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|vFjFg4f7OkFvGm6t6tZVpSlSNoiM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|139.1|0.66|8.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.3390/cryst8090358|vFyzAJEG6rG-AUsM3sJMciVODHpM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.144|267.0|0.7759999999999999|23.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|vG-zBQyBGutepo8c1-yXGTtHokl6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.0|0.7609999999999999|17.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b19538|vG074NaMI9NE7qVTD1DP_KvOJ1dp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|118.2|0.5|4.37|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']|['NiO-np']|['C60', 'Bphen']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.019|vG2wHsgmMkZHKLTsu19l-TgsOWH8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.674|143.7|0.633|6.15|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jphotochem.2018.04.025|vGGbiqoLJiRZmLW_0Cuzd5YuGqp8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|168.5|0.73|11.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201500328|vGHXFW_ShgS2uBcsAW9CI4lXTiRC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||0.93|184.4|0.716|12.53|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/s41598-018-19612-7|vGJ8yN8EkyXddfjJ4D3yTcPmJ9s_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|228.65|0.46|9.39|['SLG', 'FTO', 'TiO2-c', '1-OMe-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Au']|['P3HT']|['TiO2-c', '1-OMe-SAM']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.189|vGKEkCSJDaPgergaizkEdQCMjXSf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '1-OMe-SAM', 'Perovskite', 'P3HT', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|124.7|0.6729999999999999|7.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.04.153|vG_VDi3sSFLMuYR2JJzx5cGkvolp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|vGaW__6b_OBPhQaaaRKt675ZKCOE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']|['WO3']|['TiO2-c']|bulk|https://doi.org/10.1038/srep37378|vGx8cZw0xcmiH4v9NYmlLKTVEh0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'WO3', 'Ag']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|131.1|0.59|7.7|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1149/07202.0275ecst|vH-cUnCY1X-7DCOzHIRN5008Qv2d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|161.0|0.5379999999999999|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4943019|vHJyvmsGnjnWIB18BoUBsfvE0Ak-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.885|174.0|0.46|6.9|['SLG', 'ITO', 'AZO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['AZO-np']|bulk|https://doi.org/10.1021/acsaem.9b01160|vHN7D9hBIawA0DZJz6H2Mz8yK0rZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.1|0.722|13.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta10470c|vHRbdRdF8Gf1kqI4-CBA1uBVB8R8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.57|145.7|0.37|3.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|vHeBPQwJTDhvF8RGzEVm_cVI-i0V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|175.2|0.67|11.8|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']|['P3CT-K']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03444|vHk7O-hTGi0S3unJ5_yF8cvWg0_K|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'SnO2-c', 'Al']? The composition of the perovskite layer is MAPbI3. -Br15C78Cs22H390I85N156Pb100|Cs22Pb100C78N156H390I85Br15|Cs0.22FA0.78PbBr0.15I0.85|1.670000178074006|1.19|203.3|0.817|19.76||['NiO']|['BCP', 'C60']|bulk|https://doi.org/10.1002/adma.202201451|vHkmhteTMA90x59OR4dHOaotIlPo|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.22FA0.78PbBr0.15I0.85. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||0.99|150.0|0.63|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|vHpsqS6q5t6xZdpaFNNRD9n6oz4d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|199.0|0.46|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01924|vHxDIKHKxGyUSSKLPLHeNcIvzYuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.06|166.70000000000002|0.73|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|vI4fyKSeEnVtDnUnyDnlpLxNqk08|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|221.7|0.64|14.3|['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEIE', 'SnO2-np', 'ITIC']|bulk|https://doi.org/10.1016/j.electacta.2018.10.138|vI4wvM4DQ4hccHWZSvTITmyXGRsm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'SnO2-np', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.5900001695435149|1.089|223.1|0.753|18.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c7cc07534k|vIChU8FDGBaQrqhqBPXdago42Qzh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.13|225.0|0.71|18.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201901284|vIIYZtxivzw7EpZhzyJJw4M0_bVI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.5|0.7290000000000001|17.36|['SLG', 'FTO', 'TiO2-c', 'KH570', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'KH570']|bulk|https://doi.org/10.1039/c7tc02603j|vIJ7xCTiV9uS3CHI5EM4xoP_VjQM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'KH570', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br20C83Cs17H415I80N166Pb100|Cs17Pb100C83N166H415I80Br20|Cs0.17FA0.83PbBr0.2I0.8||1.244|208.0|0.795|20.56||['Spiro-MeOTAD']|['SnO2 Nanoparticle']|not processed|https://doi.org/10.1002/solr.202200252|vIhqryy8p9kulrEd-W4YzZUXf01v|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.2I0.8. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.72|52.2|0.556|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|vIvvChXQMF1ebsi_Vw50gqQQiyvW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201700509|vJ-IL1PSvPi8fLoxM25e_kImtsdD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.16|245.3|0.812|23.07|['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c', 'SnO2-c']|bulk|https://doi.org/10.1002/adma.201905766|vJ5mZrcDLeM0V5_raWZNagguixIj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|209.5|0.66|14.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|vJKh82t5KlmR3tNnhg5stNdi-ubz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|170.2|0.418|7.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S1793604718500091|vJRkUao0mdpfDwQrJ_ctsjHLkMX6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br9C37H355I170N74Pb54|Pb54C37N74H355I170Br9|(NH4)1.7FA0.15MA1.7Pb2.7Br0.45I8.5||0.94|155.29999999999998|0.593|8.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acssuschemeng.8b03604|vJWC9R5nwh-897Ee4_M9uMgv6e9x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)1.7FA0.15MA1.7Pb2.7Br0.45I8.5. -C217Cs3H822I260N97Pb80|Cs3Pb80C217N97H822I260|BA2Cs0.15MA2.85Pb4I13||1.01|171.6|0.7090000000000001|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1038/s41467-019-08843-5|vJfGm8uiTmFkO6iU3GejDhbo8y4v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2Cs0.15MA2.85Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.5|0.742|17.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|vJlm9YE32arg-V-sYuJI7F7A3-MQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.11|241.6|0.79|21.08|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|vK1Hb4BYS5IeEDYOSgoAbTBRw2yQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|207.8|0.643|13.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227267|vK2feLVmty8Q_lNpdP7DCT4qfQgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.06|176.4|0.73|13.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|vKH6dgjjAYZmBB1ZCi2a-4OmEaxQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|153.1|0.74|8.51|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2762525|vKK3vt8NPyNuJWDtlGxvN_r84gdP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.95|195.0|0.7|12.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201606608|vKMT6uLyEaMF33GKQcmAEEL-KCb0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|236.0|0.7859999999999999|20.2|['SLG', 'ITO', 'TFB', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']|['TFB']|['C60', 'B4PyMPM']|bulk|https://doi.org/10.1002/adfm.201807556|vKUIWTKMy4vEyzDsb7g-_juq47_x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TFB', 'Perovskite', 'C60', 'B4PyMPM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.0|0.66|14.2|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn5029828|vKUw832Xb0qmL7ffBnTsGmIw1eTf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.2|0.735|15.6|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|vKVK6NuKvK8fRyYAn_kSdjrbq_N5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|173.29999999999998|0.6|9.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|vKhcd8K1c7fP4UYXfN0axNr8L3u9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|173.0|0.56|10.3|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta01839d|vKm8bVoq0gxsUb8pAYmmu9bzXMJj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|208.7|0.71|15.84|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.7b02679|vKny4J_0RgAwAhUQxBK-2r2OuT0u|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.11|127.8|0.754|10.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b12179|vKxDFvk4MrtbcQaoHJQEdM9ZJTeS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|210.5|0.677|14.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2391-3|vL3WXArio3t5qWCWp9bJFH1Ho5Zz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|205.0|0.5720000000000001|11.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|vLCoWXy6jXuVJWPO0mUtg_BsqtCv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.142|229.9|0.76|20.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta02916h|vLFcC-6lM2TFqXF6HYFlEel5wT8X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|145.0|0.55|7.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b12367|vLVXOzbzXopuVDrCGjlslh_wL8wr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Au-np; NiO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8390000000000001|85.0|0.645|2.97|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s10854-018-9518-x|vLVfXfPYLi5YBpvH3-IQaL_Y0h2t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.064|178.9|0.563|10.72|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.7b11157|vLcB5903ea_Hyt3YxHv9v-wnXh8l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|1.08|187.0|0.7440000000000001|15.0|['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11411|vLioNdcwOX9WpKmYOllinj_jSuOa|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'PTAA', 'Graphene', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|0.96|180.10000000000002|0.44|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am503728d|vLtVo7ckxP_AXzLAbmjHFIM5A2rL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|189.0|0.49|9.42|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|vM5ESoEPXluN_XsX1qv8GHipIpK_|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|128.0|0.6|7.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms6784|vM7BYvMVWVirio4eCQd-2ICctY3O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.52|15.6|0.39|0.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|vMGcoleJegJeTbwZHwZd-7atZTg-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|211.3|0.75|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01434|vMH6RQWOBsh6d2iRqdkkai-tQtHC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|199.8|0.67|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|vMU7PtAL57Oi8Nxuu4R5X7Gdn7h_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|178.0|0.537|9.15|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1016/j.apsusc.2016.03.079|vMUlnhX6e3nAlsrBJxGDKbkBzLVK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.3|0.73|14.76|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|vMd-T0l8JkF4v50IZDCUYIqbnmho|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|230.4|0.67|17.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.10.034|vMnV15FTLOBrHgzxY5Nv6k6wmHYI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|115.0|0.616|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.008|vMtEL8OC3MJUIaEs7D45eeIhTjyK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|189.0|0.617|10.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5ee03620h|vMumzqvVdqYmasCumGLDedeGt2rG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C18CsH93I60N33Pb20Rb|CsRbPb20C18N33H93I60|Cs0.05FA0.75MA0.15Rb0.05PbI3||1.16|226.4|0.73|19.4|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|vMwGmOwzABbdqg4Sdu3pDsBhELhP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.75MA0.15Rb0.05PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.76|17.3|0.28|0.53|['SLG', 'ITO', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnS']|bulk|https://doi.org/10.1039/c5ta01200g|vMxdzh4zv8rFHTUwODmclr-ijLJc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|203.9|0.73|15.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.07.083|vNAyo7dNmQtZyOFIG5MeEP7IaG1O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|143.0|0.66|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1002/adfm.201603023|vNBA6M0D0H0lwgfklY5LXTjpm8bk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.6|['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1038/s41598-017-18970-y|vNJZDzCdiO1Fu3XIGrw4QMzv4pf_|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.741|162.0|0.68|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|vNZHl3eoibtOOZKmhgImA3tjeBh7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|93.9|0.66|3.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201306217|vNZ_3Q0OLgbeKVyEXNXpXAlbu6C7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|236.0|0.68|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.002|vNfPK_X6PWjjyNAMzit4Fhsr5se4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.903|177.39999999999998|0.601|9.84|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|vNgetJBSJuS90VcHBTlrgX8QVmBs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|135.8|0.46|6.68|['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1016/j.solmat.2018.01.017|vNipYoZ_0lte1-_RV1kivBhRprCc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|193.0|0.65|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA07972E|vNo_FUfxzMNLwjXe1wQ7lwLv8W05|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']|['FBA2']|['C60']|bulk|https://doi.org/10.1039/c9sc01697j|vNqVPawQLQbmV0ii4wj7s85kNKEc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'FBA2', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INPb|PbCNH6IBr2|MAPbBr2I||1.14|121.1|0.474|6.57|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|vO-vfcXegjAj_bmQT-Yj7jrWPRAz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|236.3|0.6779999999999999|14.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.002|vO6lDMjnVo2fDZsdhUcG4n3FFdNO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|159.60000000000002|0.432|6.56|['SLG', 'FTO', 'Graphene', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Graphene', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2016.08.013|vOCCXulpQULySPdDvoDsZDCUOAwk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Graphene', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I24NPb7|Pb7CNH6I24|MA0.125Pb0.875I3||0.7|148.0|0.45|5.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc03375k|vOaMkuibTqvpCZXgC2xkO7pPknIP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MA0.125Pb0.875I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'MAI']|bulk|https://doi.org/10.1186/s11671-016-1540-4|vOvvhkeB2GtjFIb84SqU3IzRXtcv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'MAI', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.87|171.93|0.804|12.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||vOwTIO8mXQR_BX3sWGmLnnUUYcSZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|50.0|0.5|2.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/adv.2016.272|vOz6itZxlhiwsV3sAXmdyMQiSHqW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C101H520I255N187Pb100|Pb100C101N187H520I255Br45|FA0.86MA0.15PbBr0.45I2.55||1.1|223.0|0.725|17.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11314e|vP3iRZC2aOZ2lyPrMuTzQ9VsiRal|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.86MA0.15PbBr0.45I2.55. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.68|37.0|0.75|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-07655-3|vP7aznU_QL3156YtAH7OU4UXAoTl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.09|222.9|0.731|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPy', 'Au']|['ZnPy']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.08.056|vPEO_W3X5W6HgkUjiycaHMVTunkF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPy', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|3.8|0.18|0.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|vPHLgA-qg2PTn63uH1vKc_NeuBcH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.10000000000002|0.58|9.67|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.electacta.2016.02.147|vPLNJdP9Q8daIffYXBnznVaXtIoL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|146.5|0.7|8.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/am506785k|vPZOFaJWFyow71tmYMIaPDS12Iqo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||1.03|198.0|0.74|15.2|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|vPm8dSyVFMaQKMpd9F4R-_54nbgG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.079|201.6|0.687|15.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|vPqx03OwM1Xe32C8UqMJ2WROFf9Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7900001908697432|0.92|163.4|0.535|8.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b11474|vQ7cDbhJFJDMqFLWqgXtRHmNxmfY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.07|218.4|0.74|18.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900336|vQFSj6MnSK1gXsfpQdi7ylKWaR5_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.0|0.628|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|vQMOuxPaVqCxB0C5Z4doUFO-GLDt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|177.5|0.72|11.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.047|vQMZqrEivjt5C0gc9CFj0t-9B2gB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.09|208.0|0.74|16.3|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|vQOQz78Lwnc58YIjDMntAeV03UaQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.16|153.5|0.762|12.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.202000501|vQQX0VvuPZ27ymPI4fbtm534WrsU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C19Cl2CsH114I58N19Pb19Sn|CsPb19SnC19N19H114I58Cl2|Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9||0.8490000000000001|186.0|0.621|9.82|['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.02CE03|vQYVCKYskCcVHv8aDY3wMxiX0zvQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-np', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.043|192.7|0.713|14.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|vQdrJvRIPqyUEcLxMWAjKrR6Dj0n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|146.5|0.64|9.44|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-70', 'BCP', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-70', 'BCP']|bulk|https://doi.org/10.1038/srep04756|vQo-2hsmdU0E0moN4ewzC3bL7vg5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-70', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|101.0|0.471|3.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201600502|vQo8fXmulggRpDSEsaTFEussPf28|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -I9Rb3Sb2|Rb3Sb2I9|Rb3Sb2I9|2.030000216461217|0.66|18.4|0.63|0.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b00676|vQtslQVsHzoAZ41LPlFYViqocp4X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Rb3Sb2I9. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.11|97.7|0.623|6.84|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|vQyjv3BMJx_dfBFLWjZ368PMDwXS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|155.9|0.31|4.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00531|vR3Y9FGSExuCQeFzhvQPVMwEI40J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|186.0|0.665|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pip.2557|vRAe0Fu00cCloTj8lslPeLGKging|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6500001759413832|0.872|90.9|0.3|2.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/jacs.5b03796|vRJKVY-lCeBojvbf3iM4ORAnMNU9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|130.0|0.68|9.0|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|vRR0qLdyOCZQ1dY92d_HN1qOIPG4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|198.0|0.65|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|vRR1W12mOB2tiF22mOsIaxrsZTZG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.491|129.0|0.49|3.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta01310g|vRTbP_hrNukzoVSwRXlgyOZMvwth|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|189.0|0.41|6.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.7b00147|vRajFsl9mQp3Osc2XWFPlBnCRAji|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|203.0|0.55|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAZ-[MeOTPA]2', 'Au']|['TAZ-[MeOTPA]2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/asia.201501178|vRhqPoz04FbO3i3SPac21r0QRj9l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TAZ-[MeOTPA]2', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.986|219.9|0.773|16.76|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|vRkutSJ0yusgnos6iULcvaXFWAoi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|73.5|0.3779999999999999|2.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|vRnSL2VYJ3qPbQIyHOjpRUEubCLp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|177.39999999999998|0.722|11.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-ETA', 'Au']|['PEDOT:PSS']|['PCBM-60', 'C60-ETA']|bulk|https://doi.org/10.1039/c6ta07876a|vRu3Jn6Llu00Mvo8Y0wNA3ABy_zX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-ETA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|210.7|0.613|10.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.03.024|vRznvRdGdff-TqUZNZ7KUtSXfAnG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.06|225.0|0.722|17.2|['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|vS1VOTVTQ0nXi-I5brUv9xPAC4Xx|a perovskite solar cell with the following device stack: ['SLG', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.175|218.6|0.8140000000000001|20.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|vS5cTfPBQoVPxO-pjmoR0K6BeJnz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|145.0|0.4|4.2|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']|['PEDOT:PSS', 'PolyTPD']|['none']|bulk|https://doi.org/10.1002/aenm.201400345|vSIdpiD_CqRMH2pyYQajNP6-J7pO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|209.5|0.79|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta06851k|vSP4NXBFtEY4zxO0zn7bzx23g6Sr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|243.4|0.73|19.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta11800k|vSQiQ35hkSBKouMLoPUrQLLXkOy9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br510C980Cs17H5050I2490N1810Pb1000|Cs17Pb1000C980N1810H5050I2490Br510|Cs0.017FA0.83MA0.15PbBr0.51I2.49||||||['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'C60']|bulk|https://doi.org/10.1002/adfm.201900466|vShk8rZcGG-uL6gxx6pkCCjNx3BX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.017FA0.83MA0.15PbBr0.51I2.49. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3|1.3000001386204838|0.53|213.0|0.524|5.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|vSixWjuy0lb9rkcTxxBGgY2haFbw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|217.1|0.77|18.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606555|vSo9IDFYTLaRNS1HXR_EoFclExw2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.178|138.5|0.7|10.36|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'SnO2-c', 'Ag']|['NiMgLiO']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ta05802h|vT6NOV3YuFho_Q_cDI8cRpf6sO_K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'SnO2-c', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6000001706098266|1.11|234.8|0.74|18.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07368f|vTFPQ5NjcNtNhjcJWJprMO-3s7xH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br51C90Cs10H457I249N173Pb100|Cs10Pb100C90N173H457I249Br51|Cs0.10FA0.83MA0.07PbBr0.51I2.49|1.6300001738087604|1.071|210.0|0.72|16.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|vTJ372LtOEPgMoPnpFEw0UXNv0nP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.83MA0.07PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|189.2|0.75|14.72|['SLG', 'ITO', 'LiQ; PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['LiQ; PEIE', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2017.09.039|vTPR58OEqk9VqWOGcRc4P2qIyDqq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'LiQ; PEIE', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.92|233.8|0.65|13.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|vTXG_Xm1-uzmKDs2nI-0sY_tJSha|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br120C83Cs17H415I180N166Pb100|Cs17Pb100C83N166H415I180Br120|Cs0.17FA0.83PbBr1.2I1.8||1.2|187.0|0.71|16.7|['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/adma.201604186|vTZNTntBFt_gsvezDxwW3-GiEGHo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|197.0|0.606|12.35|['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201501264|vTbs_8P_sLLEOOA5Oy2S18KcDJVP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|137.0|0.7070000000000001|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|vTstcGvCsXD2zsuuMxfRkxvF7snh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.809|167.10000000000002|0.55|7.56|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903365|vU1h4-SJ9EffTmLmxoT1z-O_jBkC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is CsPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.76|44.900000000000006|0.34|1.16|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|vU5yNj3dVNeD0Y5lO2k_kfVJXB5A|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|234.0|0.74|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/bcsj.20190241|vUJdJ_IEL8fkqva3VP6zzdbXg9A6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|154.0|0.64|8.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4906073|vUM-kvbtCtjFYqHdJRLufpl2n2on|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|238.6|0.747|19.75|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2‐aminoterephthalic acid', 'Spiro-MeOTAD', 'Ag']|['2‐aminoterephthalic acid', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201915422|vUMQifJqpVeg5wcVQHVK2JufT3dZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2‐aminoterephthalic acid', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|147.79999999999998|0.75|11.45|['SLG', 'ITO', 'Cu:NiO', 'Perovskite', 'PC(70)BM', 'AZO', 'Al']|['Cu:NiO']|['PCBM-70', 'AZO']|bulk|https://doi.org/10.1063/1.4991030|vUPM-HJFOZ2n4l4BXyfhxeZWn6pI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu:NiO', 'Perovskite', 'PC(70)BM', 'AZO', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.76|126.8|0.45|4.32|['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np', 'PCBM-60']|bulk|https://doi.org/10.1007/s11082-018-1652-4|vUbRMG0KFAuSM1jYQCo5SCcWBJiS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.041|vUfHw_N_Wc_mEkPOPHWKlOtl7ZOK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|207.1|0.586|12.87|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|vUoD1AdBO5_nTGZjeba4oxediLSQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.096|215.7|0.7390000000000001|17.46|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.069|vUtmuG6ti0dafU0MRTx1z3XDQ8vo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|208.3|0.75|19.6|['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'WPF‐6‐oxy‐F']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.002|vUxdtoR4Q1aDpavKat-nINZ4yZrd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'WPF‐6‐oxy‐F', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|228.9|0.76|19.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02121j|vV34CO40F86zbipzsuWLeZRS3jkd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.06|171.0|0.73|12.3|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-TTB', 'VOx', 'ITO']|['Spiro-TTB', 'VOx']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c9se00081j|vVH7vaZMYSCXoPIpPy2HpFeJCwIH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-TTB', 'VOx', 'ITO']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|241.6|0.6|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|vVO7BEISRY2UOtcOypdbL7VXoZJf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3|1.5400001642119578|0.877|221.5|0.6709999999999999|13.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2015.12.170|vVPuUqcqLQFuC6XltbWMSPMEbws_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3|1.5500001652782691|1.12|242.5|0.7909999999999999|21.48|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41566-019-0398-2|vVdGFdneDHUFqwh7f_1cXElXHL0H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|229.7|0.706|18.55|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8nr00540k|vVh5M_aYOt1WpqBrJoWqw2RW9wUb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|180.4|0.752|14.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|vViEbeF9ToLo5WWkMJBYwF0a2sEG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br87C100H600I213N100Pb100|Pb100C100N100H600I213Br87|MAPbBr0.87I2.13||0.81|128.1|||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep39333|vVu3l7DM4bKgk-TwEkKoWASacNEE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr0.87I2.13. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||0.895|203.0|0.7559999999999999|13.7|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']|['Spiro p-xylene']|['SnO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01122|vVye4XB8dUndWNzRTw8aRzM-6Zxk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro p-xylene', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|108.0|0.346|3.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1-(N,N-di-p-methoxyphenylamine)pyrene', 'Au']|['1-(N,N-di-p-methoxyphenylamine)pyrene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja410659k|vW3ydIzUWhDAQt_ZYmS-UJNPfubL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '1-(N,N-di-p-methoxyphenylamine)pyrene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|213.7|0.7020000000000001|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.06.112|vW482lbQKebkiv6R_FGaRwA_V4BO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|131.0|0.76|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|vWAzZJY19rpMtSQRHVJFEUeJnqI5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|218.9|0.7|14.04|['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-2TNDI']|bulk|https://doi.org/10.1039/C7SC00077D|vWCC89UFaFEM3NsRkMLpZsBqPuSO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.1|221.0|0.752|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703659|vWCdhRAKGO-ZRPJ0IlAukzS3QXaz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.098|208.2|0.72|16.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NNANO.2014.181|vWFySJvwy6LEzc43bviR7VG8s0dm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5900001695435149|1.08|232.3|0.76|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ETPM']|bulk|https://doi.org/10.1021/acsami.9b00528|vWMjoN93U2b6xzfcDfiaYquiPWIw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ETPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.753|69.6|0.53|2.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['Unknown']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c5ra02325d|vWTQnNrMhrbAfCmabtjL64YmA0cp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.640000174875072|1.16|157.0|0.7|12.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1021/acsenergylett.8b01181|vWURGR06zc1fo8ICi_Py2iIsm1Fs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -Br39C100H513I261N187Pb100|Pb100C100N187H513I261Br39|FA0.87MA0.13PbBr0.39I2.61||1.09|228.0|0.8|17.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900053|vWYG_taQ929Co4IINkDSd8pJZhWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3||0.93|186.3|0.736|12.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.202000393|vWdDBBwsKhbm2azhrKdN_qLGiFDP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.928|145.0|0.618|8.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1155/2018/2473152|vWlyoGUImDXKTtXuiGZpkcBbINg1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|238.0|0.74|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2018.11.066|vWtjQL7WlTmovafzRynXagMk6kwy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|231.0|0.795|20.6|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/acs.jpcc.9b11483|vWwDAduGq_ba6_cH0kpu0H_ynaby|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|190.4|0.64|11.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.07.002|vWzXDqbu6H9yHVLyQjs2rxq8oCqF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.08|195.6|0.7929999999999999|16.48|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|vX8_HSuAIjCm6gpRMDBR5p5r7eKb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br75C83Cs17H415I225N166Pb100|Cs17Pb100C83N166H415I225Br75|Cs0.17FA0.83PbBr0.75I2.25||1.04|188.9|0.7|14.03|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']|['V997']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/asia.201700173|vXAkoT4lbOvalFH3BlbSLdgxaKkG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'V997', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.04|210.0|0.62|13.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoballs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nanoballs']|bulk|https://doi.org/10.1007/s40843-019-9452-1|vXKCNkB9NZA4Sztxfez471VKX3UR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanoballs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C8H24I4N2Pb|PbC8N2H24I4|BA2PbI4|2.3500002505831827|0.9|11.4|0.39|0.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02284d|vXVNBlb_iJ5O6IcZS42g-wnO75yV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|182.2|0.62|10.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|vXVwr3wo85qxItvnXGWrrM_jNuw-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|218.0|0.71|15.0|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1021/acsaem.8b00094|vXqxTjwkLYoXx8n8Yr-wdR7mUZ8k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.83|63.0|0.33|3.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/ph5000067|vXrYyqWOM_cII1GBwTPq__8Nl2z5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.099|170.0|0.65|12.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1361-6463/aad7de|vY0grXdHTAClojXmgw2tErNvwKoP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC5H26I4N9Pb5|Pb5C5N9H26I4Br|FA0.8MA0.2PbBr0.2I0.8||1.1|229.0|0.809|20.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RR)', 'Al']|['PEDOT:PSS']|['NDI-ID (RR)']|bulk|https://doi.org/10.1002/adfm.201905951|vY6lqWcl9QE3sKF-p1sG4gi3D7TX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDI-ID(RR)', 'Al']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I0.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|179.0|0.59|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01169|vY74znlpjRfp_lquFNzTwIqUnTiA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||0.84|176.0|0.552|8.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mssp.2019.06.015|vYCdqoYFldSbi-iCXjoZSiSGU98s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.1|0.68|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep16098|vYNWZPTjWWzrhZ46kWih7IG5tnwZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8440000000000001|213.3|0.6579999999999999|11.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201602120|vYSEzJDaN-FrD6egLjM486IYMcDV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|230.1|0.434|6.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|vYt7valVJS0XJDojiet4OIjgW8Ax|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|214.6|0.754|17.44|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']|['ITIC']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|vYwyrEX9a9fpmkGFIwOpbFPlu7u2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'ITIC', 'Au']? The composition of the perovskite layer is MAPbI3. -AgBr30C10H60N10Pb9|AgPb9C10N10H60Br30|MAAg0.1Pb0.9Br3|2.300000245251625|0.89|19.3|0.626|0.891891892|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|vZ0ztwxFu8QU6UQ6rRq4QHySl8b6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.1Pb0.9Br3. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3||1.1|244.9|0.7140000000000001|19.15|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1038/s41566-019-0398-2|vZ3HgwToD8OCv6zdiGAVTrKEz9u2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|vZ6Pkka3Vv06vV0DU-OOq38JwWbm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|217.0|0.787|18.0|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Crosslinked TCTA-BVP', 'Ag']|['Crosslinked TCTA-BVP']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201601165|vZDQ5S7pO5UFU4kv9oIboa9rBOZQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Crosslinked TCTA-BVP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6000001706098266|0.98|202.4|0.62|12.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|vZFRtTyf9G_h7mq22JkryBLcLOAl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.047|229.8|0.713|17.5|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.031|vZH-zvR6_xuPXpGlucP-IW5isyW3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br15C20CsH103I45N37Pb20|CsPb20C20N37H103I45Br15|Cs0.05FA0.85MA0.15PbBr0.75I2.25||1.147|189.2|0.733|15.9|['SLG', 'IWO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'KCl']|bulk|https://doi.org/10.1039/c9ta10712f|vZHy8Qq6VTN4bVs4FiN_ZsYAVFiP|a perovskite solar cell with the following device stack: ['SLG', 'IWO', 'SnO2-c', 'KCl', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.62|40.4|0.568|1.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201401872|vZKiviq2vnoYfGGa8MjJZ37XfcxW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0659999999999998|225.0|0.772|18.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201803766|vZRKTl3-d4ZrjZzP4F-zngu3kk3U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703068|vZSFfu-o8tMM_dbAWHiBN4xPQ5eb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']|['NiO-c']|['CSCNT@Al2O3-c']|bulk|https://doi.org/10.1002/adfm.201703068|vZXIi2TKViwEW2Iv7--Yv11bP1HX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CSCNT@Al2O3-c', 'CSCNT@SnO2']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|206.2|0.65|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b08981|vZasz9pirQ8sqcp5LDw1cZS8DaQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.01|159.70000000000002|0.561|9.06|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-07204-y|vZbJ8fzMyH1T2gatRv79yUQ2vi0H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.8|0.7170000000000001|15.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|vZbQfiodS11HO6pgFRcGLOO6yVlq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|210.0|0.73|15.78|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra10695e|vZgvXtLnKArD_AyfACn5bjBDoLVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.512|218.45|0.479|5.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||vZnAFmO41AtGpoGVXHgiv1snZm4f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.46|155.9|0.271|1.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta09080f|vZnjV58wdWJsMc4ZE6xC0AHUzgbJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|210.8|0.742|15.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.solener.2018.10.025|vZrXvBL_VlC1xnfoUJGTRblA6rYS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||0.65|112.0|0.46|3.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|vZwel05T3jvAz_Te_24o631AMkrw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.927|160.6|0.446|6.57|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.151723|v_4H40ZesADrjQU7lj19wVpbAa6J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.81|61.1|0.44|2.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|v_6R3tTXaJYNMKxbwvp0qxqwH9fr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7500001866044976|0.773|153.9|0.5670000000000001|6.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4fd00128a|v_DsBWS-gQbM37GDK9ykjNGDZfbq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -C2H10I6N4PbSn|PbSnC2N4H10I6|FAPb0.5Sn0.5I3||0.695|283.7|0.546|10.76|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1117/12.2275492|v_O31RVTltNOcucJC6o3OGTiZ1zF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FAPb0.5Sn0.5I3. -C3CsH15I12N6Pb2Sn2|CsPb2Sn2C3N6H15I12|Cs0.25FA0.75Pb0.5Sn0.5I3||0.79|249.5|0.72|13.86|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cjoc.201900219|v_eQHdTBFJX477SQgqLYQjCprN0i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.25FA0.75Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|214.5|0.703|15.95|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms15684|v_iKvTLrMEQBVLA_M8Ujor8YXjWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55||1.107|220.9|0.757|18.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'V886', 'Au']|['V886']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201704351|v_payLCLbOXqW174Y4UW35B6mmz6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'V886', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.2|0.75|17.83|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.isci.2019.11.007|v_rHGLg-PDd7q3ahBpcjYAvxvSQC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|25.0|0.33|0.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|v_rIcwYTaUDWEgRXsu9ix29DMMvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|224.1|0.725|17.55|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1016/j.solmat.2018.01.021|va0vK9G-YI0V35GebAURLnEwyYDG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.11|227.1|0.72|17.9|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M109', 'Au']|['M109']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|va3O-v5Epx8J0ifS4sf09-ch4LFP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M109', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -C10H36I13N4Pb4|Pb4C10N4H36I13|BA2MA2Pb4I13||1.24|198.6|0.7040000000000001|17.26|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|2D|https://doi.org/10.1002/adma.201903889|va4wXPpkdGI9dv4I2EvF2mTJk4Vy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA2Pb4I13. -Br11C18H93I51K2N33Pb20|K2Pb20C18N33H93I51Br11|FA0.75K0.1MA0.15PbBr0.55I2.55|1.5900001695435149|0.98|224.5|0.687|15.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|va5oiLMhiHcMzYKxS6ex8MPGm28p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75K0.1MA0.15PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|186.5|0.7|11.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1021/acs.jpcc.5b08294|vaDNJzmDB9w4o0XOG8eE8FVBsvsw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|232.2|0.75|18.52|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801509|vaGSblD-qGo53qfVSRSaEnRQkopc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C90CsH464I255N166Pb100|CsPb100C90N166H464I255Br45|Cs0.01FA0.76MA0.14PbBr0.45I2.55||1.036|224.6|0.71|16.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1000', 'Ag']|['V1000']|['TiO2-c', 'TiO2-mp', 'SnO2-c']|bulk|https://doi.org/10.1039/c8tc06297h|vaHOAUYugsGw13jrnBZ-nwO7bI8Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'SnO2-c', 'Perovskite', 'V1000', 'Ag']? The composition of the perovskite layer is Cs0.01FA0.76MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.007|213.0|0.75|16.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b07999|vaPQcb0rjzGLXt_k-iGs-Vux3q9Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09721b|vaXIEIJUFFsrKZnqV28ggk4s-IQg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|187.3|0.728|14.85|['SLG', 'ITO', 'MoO3', 'TBDI', 'Perovskite', 'IPH', 'PDINO', 'Ag']|['MoO3', 'TBDI']|['IPH', 'PDINO']|bulk|https://doi.org/10.1016/j.solmat.2017.01.037|vaYowDYtMcWSrKzfOCxH6QemEnuC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TBDI', 'Perovskite', 'IPH', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100Cs5H517I255N183Pb100|Cs5Pb100C100N183H517I255Br45|Cs0.05FA0.83MA0.17PbBr0.45I2.55||1.16|215.3|0.74|18.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.010|va_wU5fEhL9PvaoFCZ7LdDi28aeW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.45I2.55. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8Pb1.0I3|||||16.48|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']|['NiO']|['PCBM-60', 'PN6']|bulk|https://doi.org/10.1039/c7tc00882a|vac-3818lJR0RQH7lM9yMLRhIOS_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PN6', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8Pb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|236.7|0.6859999999999999|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.8b00938|vafuCYDJbKV0GNxGAZwIxuUWyahQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|183.0|0.58|9.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3ra43228a|vaxBLx7aU4s-HCjDjLVDWd-j0ID0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.14|178.79999999999998|0.7879999999999999|16.07|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|vb0t7OKb5s7zUSZBz0oBGKJLI2tL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.6|0.69|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900235|vb13eZtQEBBrHyjbZo8jVoGU9sSr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.8|298.0|0.7|17.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|vbDq3r5Ovw7czuagocIhbfK6ArYi|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|212.6|0.66|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07511|vbQcdvkiJWzJlmhKqo3JgeUp0DWJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.08|224.0|0.716|17.32|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|vbVGfyOJFFulb6Rb999iTAWF7Qik|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.19|156.6|0.741|13.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']|['PTAA']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09855g|vbXcBxQ8b58fQoUvW7IXCoQtG0US|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PTAA', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|130.0|0.78|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.202000191|vbnMf40UdGfmNpUd1IHjkbU6ttmz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|217.9|0.693|14.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|vc0ZJKAnSj4nnYsJ0HdBVNDVrctE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.570000167410892|1.02|199.5|0.634|12.92|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.01.016|vc4Tj4MEAJzklLZYcPEVDRTt1ixW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.6509999999999999|120.0|0.42|3.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b02443|vc7pKpfQWvjzgilge4WQvunJR-5p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br47C100H517I253N183Pb100|Pb100C100N183H517I253Br47|FA0.83MA0.17PbBr0.47I2.53|1.6100001716761378|1.1|216.2|0.6859999999999999|16.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'BaTiO3']|bulk|https://doi.org/10.1021/acsami.8b16358|vc9CYdSwCLtarYB0Zd_a4o22VKkd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'BaTiO3', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|177.5|0.69|12.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201500829|vcC-cdMnjgFAL30eNh9T1v6YktUl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6INPb|PbCNH6IBr|MAPbBrI||1.03|148.8|0.68|10.43|['PET', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta10585e|vcRJBfWesypc12nBXZMI9gYj1s9Q|a perovskite solar cell with the following device stack: ['PET', 'Ag-nw', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|191.8|0.61|11.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|vcYNtCAP4DV52tObKok6-Nz9vpJ0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|119.0|0.3989999999999999|4.92|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2018.05.086|vc_o9qAoOsYsig4NxJp3F5qZS4Hq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|148.8|0.7170000000000001|11.02|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|vcdxW_lTW33PiP8QJcfttH-lxPud|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.04|219.0|0.66|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-I', 'Au']|['OIPC-I']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.202001460|vcgQ7666nbEYmvmT4rSeXlle1e54|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'OIPC-I', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I100N174Pb100|Cs5Pb100C95N174H491I100Br51|Cs0.05FA0.79MA0.16PbBr0.51I||1.09|232.0|0.777|19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b10828|vcmkTKzgoVfTNLJdcyDwAN81YM2y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5800001684772036|1.13|208.6|0.716|16.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900011|vcvci6tbIITOPKYy59-qMYB8G3oo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|142.0|0.59|7.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solmat.2019.110288|vcvenlH8cwYhrQ0bCbZ6jWj5i8F1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.520000162079335|0.8959999999999999|204.0|0.545|9.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|vcxvlhm4pgiYF-oX4IIS5-Iis-9P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.5|0.675|12.0|['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PDBT-co-TT', 'Au']|['PDBT-co-TT']|['ZnO-c', 'C-PCBSD']|bulk|https://doi.org/10.1039/c7tc00966f|vd-83M7FvGbHj3Qqh0RKtIqB_Xuf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'C-PCBSD', 'Perovskite', 'PDBT-co-TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.0|0.58|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900972|vd4qDQzc0wBhNAz1ZCWVuR5eihZL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.999|200.0|0.76|15.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta00989a|vdDw8AuDzNXZlV06UmOFdvqy-ONl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.133|119.2|0.564|7.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900374|vdM-akwPDmhUQPlJ0BfO3hc513Yg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|244.1|0.66|17.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|vdM2c6q0O-oZvwqN07o0dH4Bj5lP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|219.1|0.721|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7tc05252a|vdWf5JchbynRnw0ZhriuZpBF2eM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C4H20I9N8Sn4|Sn4C4N8H20I9Br3|FASnBr0.75I2.25|1.6300001738087604|0.37|170.0|0.64|4.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00976|vdcne5FFvhS7vPzSMfLrUNCbBc5r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FASnBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|138.0|0.36|4.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2015.10.014|vdoyBTWTIC7KK5WmTWUVsR6gkOnf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|142.7|0.76|9.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900235|vdpdOfmWvND79v997sKkpYOLmRRh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|233.2|0.79|18.84|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703236|ve36b3erMOgax-B8BlvXpcG6hqqf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1||1.05|228.3|0.74|17.71|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta12561a|veO4FZMp15gFKo5jPh8ik8gRWdlu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -C11H42I4N5Pb|PbC11N5H42I4|BA2MA3PbI4||0.98|134.0|0.61|8.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|2D|https://doi.org/10.1021/acsenergylett.9b01821|veRlFUw8azN2v7Itoy1Wflow7KiK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is BA2MA3PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.9|0.79|19.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201900106|veUHAQYm4-ZTl6ALXd_dUL0qWLuY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|193.3|0.7|14.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600493|veX2eglnP1u4ZmYPBMG6WsEOCV5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.28|88.0|0.65|7.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|vedbw7QqpGaGHUyG-s1zLCC-8FiO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.968|135.0|0.53|6.9|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|vede5ftBfRmzg9djwrHTsmDFk-tI|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C17Cs3H102I60N17Pb20|Cs3Pb20C17N17H102I60|Cs0.15MA0.85PbI3||0.721|145.0|0.66|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|veoR5hqt5OaHwYdZl4QSoewIPG7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15MA0.85PbI3. -Br510C980Cs20H5060I249N1800Pb1000|Cs20Pb1000C980N1800H5060I249Br510|Cs0.02FA0.82MA0.16PbBr0.51I0.249||1.09|220.0|0.711|17.1|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c7ta03331a|vet88Zu8o3v-xf2TKhv8pcqsGqQ1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.82MA0.16PbBr0.51I0.249. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||0.6779999999999999|196.9|0.488|6.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag-nw', 'Spiro-MeOTAD', 'Au']|['Au-nw', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201700151|vewdvFluPS0GZoGEFRe0MHSdci7T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag-nw', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|203.0|0.7659999999999999|15.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06394e|vf2LSl0laGYKpv7FLn-eDvkpXn0P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|150.0|0.35|4.2|['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PANI:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2019.116232|vf2MC4M0k88PGlIacZ6vixU_REfQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb3|Pb3CNH6I3|MAPb3I3||0.94|207.4|0.69|13.52|['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'Fullerenol']|bulk|https://doi.org/10.1021/acsami.6b04895|vfIiXTCGcnRJ42FlptV1ahSeDPlS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb3I3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6500001759413832|1.141|217.0|0.7040000000000001|17.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee03874j|vfM4f6MSwff9QVHbc1hejaRp-cn0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|181.6|0.6|11.57|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.011|vfQpuaCAVxhSyM6w7456_fWBdGbd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|177.0|0.48|7.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110130|vfYJkwUMFDySekRbEGV14DmDf-Aa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|210.2|0.7|14.91|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|vf_kCmN6aF2z6MurxlS4drJV-pRA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.182|224.2|0.77|20.55|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|vfbkjjVH5KLXHG-QlHezQL8SMzGP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|192.8|0.5920000000000001|11.76|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|vfcUzMAn5SglkyuVN_0kuGP5bEh5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|156.0|0.66|8.3|['SLG', 'ITO', 'sGO', 'Perovskite', 'PCBM-60', 'Ag']|['sGO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ra10113a|vfcivIHKR7x1k66i240_74zaW9Te|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'sGO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3||0.95|246.3|0.57|13.47|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|vfhtZbiuCL62XpRcU5hsGG5kE5uU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|210.0|0.71|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']|['PEDOT:PSS']|['C70']|bulk|https://doi.org/10.1016/j.nanoen.2016.04.057|vfl4ksM9Xt49ODKl5FtI-z29PWz6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.929|181.59|0.644|10.87|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||vfqjTNmm1H8NiqpEHbu8SvObcdrV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.99|224.2|0.7|15.56|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1674-1056/27/1/018804|vftPZolWvFNtmfzKQyg9xkdFVdyL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br75Cs23Li2Pb25|Cs23Li2Pb25Br75|Cs0.92Li0.08PbBr3|2.240000238853757|1.354|64.7|0.735|6.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800164|vfwSAhelNWS-sW6tUHLJUEjy8Zne|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.92Li0.08PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|167.39999999999998|0.6970000000000001|10.89|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01939h|vg38QgqnVCVHy9ET7HClQrT6QgII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.106|222.9|0.695|16.92|['SLG', 'FTO', 'SnO2-c', 'BMIMBF4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'BMIMBF4']|bulk|https://doi.org/10.1002/aenm.201903231|vg3Ab22NmQnrUJa9czs-AtHNNmdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'BMIMBF4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2825228|vgZ64PpCFKD1Vy8HcknFr_ppDdme|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|190.1|0.63|12.93|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|vgg-HABisTT-nZztk1u1KgFvaiYn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.007|204.5|0.5|10.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|vgmavPAi5o6s5nI048wYItsPXQL8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.7|0.74|15.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-5', 'Au']|['THY-5']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900143|vgoxa756uT1jLObVdO1286IMjdS3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-5', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.16|174.0|0.68|13.7|['SLG', 'FTO', 'NiO-c', 'Al2O3-mp; Au@SnO2-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c', 'Al2O3-mp; Au@SnO2-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/advs.201500312|vh3qP8_3949wGZt-SBLzeYPivhPF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Al2O3-mp; Au@SnO2-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|225.2|0.72|16.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK2', 'Au']|['YK2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01731c|vh4iaEb-RVTYSgEXHU-9mA8Wlskx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YK2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.276|71.7|0.713|6.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|vhA_cxkm-2AX-8iSpFczzEzN5oPF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.8959999999999999|154.70000000000002|0.251|3.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/am5077588|vhLD_F0l8aXzwxt1aTeyenr0_8hq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC2H12I5N2Pb2|Pb2C2N2H12I5Br|MAPbBr0.5I2.5|1.683000179460211|1.08|165.39999999999998|0.618|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.06.064|vhLwdE9YweRUDVGIgc8yybMvSSjl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.5I2.5. -Br51C245Cs5H799I249N166Pb100|Cs5Pb100C245N166H799I249Br51|(TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49||1.2|236.8|0.726|20.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|vhhE3OK76tBeY7FhO4U_OwR3jcbx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|205.49|0.72|15.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|vhiK-nanjtmPN5JrLb6gH_WUgwdj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I70N166Pb100|Cs17Pb100C83N166H415I70Br30|Cs0.17FA0.83PbBr0.3I0.7|1.7200001834055632|1.219|199.9|0.8|19.46||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1002/solr.202200134|vhms1U4bNvbH3pUe7nenCj8NDQgr|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|199.7|0.618|11.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'MAAc']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|vhsHV5BRZxR2jT7BMcWeX1oo_pKr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'MAAc']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|212.6|0.726|16.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|vhuBjGBYRZ4ewuUn6sH9Y9NIU7oR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.074|218.0|0.816|19.1|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1002/aenm.201602121|vhxNWaZMrnFd6bWX4KWAPuQgUOao|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|157.20000000000002|0.449|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM03', 'MoO3', 'Ag']|['KM03']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|vi-T8evEF1quPnbZqjgbO8f6RJ8u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM03', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|182.9|0.805|15.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903751|vi83VvQOz_TYEgQ1bSuXkLDNLxBX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|208.4|0.722|15.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2019.01.102|viCjRLtGyBSYru6hVMzculI640a1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||8.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1039/C6CP08177K|viSocZvXwQqfX7fsDEcUjQyALG8R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.0|0.68|13.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|viclwp5iFzxmvPj_C3ihrfqZJd94|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br8C85H425I292N170Pb100|Pb100C85N170H425I292Br8|FA0.85PbBr0.08I2.92|||||19.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.nanolett.9b02142|vihVCJ1TM5LTCg6ym55zBntUonHu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85PbBr0.08I2.92. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.76|167.0|0.522|6.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.langmuir.9b02524|vijJrOOqZwbJWVILqIC1Fy6OF_VB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.8MA0.15PbBr0.45I2.55||1.09|225.0|0.742|17.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta12890e|vj7VcHYkctyyiv_yggTgf8GADCqW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.725|226.0|0.767|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta08979h|vj8bkR0duT_9WkssaXhKjLnN2PgA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.052|212.69|0.75|16.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM4', 'Au']|['HTM4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41598-017-00271-z|vjJioELYnSnbaq4Emzt_0NeuaSWx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM4', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|227.0|0.7959999999999999|19.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201902021|vjYGiSP6uAECZw9Mv1xhqTSINeOU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|200.9|0.71|14.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-4', 'Au']|['THY-4']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900143|vje4TCcS4fJJ_bKng3z8PoTmgkn7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'THY-4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.963|177.10000000000002|0.73|12.45|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.085|vjfh65LTUQueRg2y8OYIXhPHlJy8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|159.70000000000002|0.687|9.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta10288j|vju0KI1eDbxBmvV5qHheSzeal9L5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|210.0|||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ra07048f|vjxMOXeHuX6R1zrwtjOz5K1DbiWQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|187.3|0.657|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta05008e|vk-6Q0wod3gw_tLan20NZae5H8OE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.922|210.0|0.6679999999999999|12.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|vk3-uCJhFitJxWKU5ln6sBEwOdFJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.115|202.8|0.7979999999999999|18.0|['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTM', 'F6-TCNNQ; TaTm']|['C60; PhIm', 'C60']|bulk|https://doi.org/10.1039/c6ee02100j|vkAyIn3_5aa710pidhyg3Fh4_Z-C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.7|0.6629999999999999|15.59|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|vkHsxWzrx8_5UGzMn57PzUJcQtUP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.0|0.73|15.7|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/adma.201604186|vkP04ffdJTiVk64WIkmv9cH1pcw2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|67.2|0.77|6.77|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp', 'Carbon-QDs']|bulk|https://doi.org/10.1039/c8cc04271c|vkP7vGyiPr2gFLO6qEggRfnFEMF9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Carbon-QDs', 'Perovskite', 'Carbon', 'Perovskite', 'Carbon-QDs', 'TiO2-mp', 'TiO2-c', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.094|196.0|0.812|17.4|['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']|['TaTm', 'F6-TCNNQ; TaTm']|['C60; Phlm', 'C60']|bulk|https://doi.org/10.1021/acsenergylett.7b01217|vkTE0sQch2Hky1LOahzOijY0xyES|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; Phlm', 'C60', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|2.300000245251625|0.65|4.2|0.86|0.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1557/s43578-021-00155-z|vklkzoa3PpHKmUfDRJrMlgFq0fMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs3Bi2I9. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|181.0|0.44|7.8|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201800591|vl0NIS5KLjvgvFE0d4BG7p0TPRuE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|165.0|0.46|7.3|['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['CdSe-QDs']|bulk|https://doi.org/10.1039/c4tc01875c|vlDi2pfcyHFWxJpF3vpbKJg1B1rO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdSe-Qds', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||1.19|119.1|0.74|10.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.066|vlEIv-LnvTzE3kL3Dxqz88EWsTev|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.255|7.0|0.24|0.04|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/pssa.201700089|vlPEPD0FR9ik8-RK3lXUe081oE5N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br150C100H517I150N183Pb100|Pb100C100N183H517I150Br150|FA0.83MA0.17PbBr1.5I1.5|1.8400001962013004|1.04|155.0|0.62|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05795h|vlTRztQK-3qGXlcY7aV7Rf1MOPjB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.972|182.0|0.46|8.1|['SLG', 'ITO', 'TaTm', 'Perovskite', 'PCBM-60', 'AZO-np', 'Au']|['TaTm']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsami.9b20981|vlWiA7_O3SImSnxcal67S5mWdPPV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TaTm', 'Perovskite', 'PCBM-60', 'AZO-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|167.39999999999998|0.6|8.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'rGO', 'FTO', 'SLG']|['rGO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.01.084|vlekMhGQxnA15U4n_BTBNCpaCsRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'rGO', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.693|105.0|0.62|4.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10971-019-04957-w|vlmvqcBG_sucYSsBZP_uvomG6BF_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|130.0|0.467|4.72|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aa8ffd|vln0O6u-D7NAsyab7Zrd4SUAt7VC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|194.3|0.68|11.56|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|vlwRhw92-AqcSyRs_8hlg6KL7J7t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br40C100H517I260N183Pb100|Pb100C100N183H517I260Br40|FA0.83MA0.17PbBr0.4I2.6||1.04|207.6|0.701|15.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201800378|vlzx0rA2IuLTS-XpnQimp_Obk8ml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|224.5|0.75|17.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|vm-RBkLdIAcO0heKEgDbyzQp9w0G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.097|215.0|0.758|17.88|['SLG', 'FTO', 'TiO2-c', 'Graphydine-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphdiyne-QDs']|bulk|https://doi.org/10.1002/admi.201701117|vmJ9VDI2NOXxY8iF3cc-G3Au_2RJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphydine-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|190.0|0.64|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8me00023a|vmTJbbobHs7jZ17vdHyy5O6cVVLz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|187.6|0.602|11.81|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00566|vmWjZyoR_FXKh_6_ep2xCEfjUyeF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.156|234.5|0.79|21.35|['SLG', 'FTO', 'SnO2-nw', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201900558|vmXEOIZaeSgLE0dstGsaah7654LK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.07|199.8|0.753|15.17|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b00747|vmcXsu2K_gRcqBJNKQpS8K69Tx_5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.33|40.2|0.38|0.53|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.6b05862|vmd2kk-LEf1PtrvRj-sQ2gw8jieO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.78|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|vmfqkLL_iNjWYkcfbT7VM3h4adyL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C83Cs17H415I70N166Pb100|Cs17Pb100C83N166H415I70Br30|Cs0.17FA0.83PbBr0.3I0.7|1.7200001834055632|1.171|196.0|0.76|17.36||['Spiro-MeOTAD']|['SnO2']|not processed|https://doi.org/10.1002/solr.202200134|vmwPqCMcLXf5TdnBKsMjhLqIBzHy|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.3I0.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|131.0|0.43|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']|['X60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.synthmet.2017.08.007|vmzU46OFilBKmDLxAcNd-0hhoHtf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'X60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|62.0|0.61|3.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|vnEisAwYyoSrp7fmjSbuUmR7Kht7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.888|176.0|0.62|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep00591|vnF4P5ZL2ER78CyuV87Hp-8uEIXL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.96|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.optmat.2019.01.059|vnYLo7hW960IYDcIsHPMhnKfWarw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49|1.5500001652782691|1.11|221.0|0.76|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b03532|vnifXKmzVdaEpBpi7DWcVG_bKmYA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -Br17C94Cs6H487I83N171Pb100|Cs6Pb100C94N171H487I83Br17|Cs0.06FA0.77MA0.17PbBr0.17I0.83||1.09|214.0|0.725|17.6|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201801978|vnlDL8qgaGlL17sUAs1clvWDqxW8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.77MA0.17PbBr0.17I0.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|149.8|0.6779999999999999|8.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|vnrgcP1iaWsYZWYRoa85WZGZKQaG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.0|0.379|7.15|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.7b00069|vns8u58R5e8lztBCepnNU_YjC5Nx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.01|167.8|0.65|11.0|['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['CdS']|bulk|https://doi.org/10.1039/c5ta01200g|vnvZ-iyk4ymVtsYmprxBeiTJDIlo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H17I3N3Sn|SnC9N3H17I3|(PEA)FASnI3||0.32|182.6|0.67|4.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|not processed|https://doi.org/10.1021/acsenergylett.8b00085|vnyzxIR57LyNnVDT4Rvx1IFZ9o_H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-8', 'Au']|['PEH-8']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|vo0iywaQYaehVPIeFNlftVWGnQhl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-8', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|236.1|0.74|19.26|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800149|voDL-OwaWCjbf-GLwcwTq0Va5v5b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|70.4|0.68|4.07|['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06011c|voH9TnqN5AMX2p_6zwuuEeQ4MHA7|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.124|232.9|0.7|17.47|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900333|voTOfWzFazP3fHWxDbNZnQH0HLxA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|89.1|0.267|0.32|['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b18090|voZ65OFlyndk6A52r206c81oHYJE|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.125|212.5|0.7090000000000001|16.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|voZ9NmYwtdkiNlNkkfyXhMeP0OFF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|200.0|0.713|14.25|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|vofOVlldeAC0GJPJJmTK8D1_n3ew|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb5Sn15|Cs2Pb5Sn15C18N33H93I50Br10|Cs0.1FA0.75MA0.15Pb0.25Sn0.75Br0.5I2.5|1.2900001375541723||||10.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|von1zhJpCQSOXnAN9aVk0HDANsdT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Pb0.25Sn0.75Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|211.0|0.72|16.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.09.057|vp0ksNzCPK3-hhUFImrC6Ke414Bb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.1|192.0|0.77|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800192|vp2aOer1o4eTcF6jjc8RaPM509lf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.84|147.20000000000002|0.621|7.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra15512j|vpJm2xthVue146IAmf3RQVWXciw6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|185.0|0.605|11.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2019.07.010|vpLGkt8orHMs6QcxguOdhAjAzbmU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.134|233.3|0.763|20.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|vpMd5qjfQMoEZoA12ij3F4_IQf67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.19|119.0|0.32|0.73|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'TiO2-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c', 'ZnO-nw', 'TiO2-np']|bulk|https://doi.org/10.1016/j.tsf.2018.07.039|vpN3RZ4EckGJt9fsbVKRA8sbVi1q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'TiO2-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|140.9|0.58|7.6|['PET', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3389/fmats.2019.00310|vpS9KLmd58psIQyXGK0mS_TVkpIb|a perovskite solar cell with the following device stack: ['PET', 'SnO2-c', 'Au', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.37|72.69999999999999|0.75|7.51|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|vpUHDT1IT5muOQ0qyj25524TeqM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|207.0|0.7|14.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201800568|vpnzSlyTQjzxaRQ-AKldHXrmeu91|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|223.6|0.6679999999999999|16.6|['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['WO3']|bulk|https://doi.org/10.1002/admi.201901406|vpqmm29dt4228qlX9ekkKHSvZa6-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|203.8|0.69|14.09|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C5EE02155C|vpvLzWCti3vIIECENgwO2CEwTs4H|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.03|225.4|0.71|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201904372|vpweS2D80n9qfaG9wr0utAR_TLTa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|205.0|0.6|10.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6nr03359h|vpxCuepHQ6RHpUkgWo-SPWnxVfRA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.145|226.0|0.768|19.6|['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']|['MeO-2PACz']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02268f|vpzT7NYhZW78JGnfrrAY63XFu56q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MeO-2PACz', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.0|0.599|12.23|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.06.187|vpzcfWrgzhgSQ_bDPYxzmflQr18q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|229.0|0.731|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr04288k|vqEFk3-ArhskDUio_XJE_1vz_gFb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|203.0|0.735|16.4|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HPB-OMeDPA', 'Au']|['HPB-OMeDPA']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.010|vqFVtqoiMJaImfH87VknCA8nMz4S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HPB-OMeDPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.7|0.76|16.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201800066|vqLJFK6xhRrHizBRbOgCoSq2VwD3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6|1.670000178074006|1.03|193.0|0.72|14.5|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|vqTZoRnDQCf5HPY2_5MKkU_BxqgN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.4I2.6. -C6H15I3NSn|SnC6NH15I3|HASnI3||0.156|26.200000000000003|0.27|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201902418|vqUcL8aS_d344FFQl6YggZUAU_Mj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is HASnI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3|1.5400001642119578||||11.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.18214|vqcqgmHaXwK8sdnVFKfiw9TOrkTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|211.1|0.732|16.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.026|vqhyeDjni5xmBczq-KrWYeS2_2uf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|198.4|0.76|15.5|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.7567/JJAP.56.090305|vqpfi9hQZa5ahA5K2UwbW4xFlyuv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.016|191.03000000000003|0.708|13.75|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||vqqnVXMv21V0T1By4kfaSj4wQIBO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|90.0|0.446|4.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']|['PEDOT:PSS']|['C60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201402461|vr-iIdqpMoYiz2zdNOkVDTPxoXsq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Bphen', 'Ca', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|107.0|0.6|5.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.140074|vr01XTBxvjyoIOaii19lMyLI0ulr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|221.5|0.76|17.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08622a|vr5TPAfzbRf7o5s8gHyLke8QWDAY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|184.0|0.636|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.3390/molecules21040542|vrBpCg04SIpDaQckoaj0AfgsKy4v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||12.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2015.06.018|vrRgdFKpbhNgkXysmuHlnLbfrGls|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|160.0|0.58|8.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/nn5058672|vrSKuKktNvhZCNp5RJGYY1TVMKXH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|139.0|0.71|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2016.06.037|vrUTrGn4kKXllEEIyggohnajjNFZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.9|181.6|0.39|6.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.07.039|vrimQOiHbidWM-_R3i9ChdkR-irt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|152.79999999999998|0.55|7.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C6', 'Au']|['3,6-di(2H-imidazol-2-ylidene)cyclohexa 1,4-diene-C6']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201600923|vrnWgQ7opzOfnFSbxCXoHKiXjMaM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DIQ-C6', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|0.613|146.16|0.737|6.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||vryiAdNahEx635lVqTF8hryLKrA_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.47|106.7|0.4579999999999999|2.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201532944|vs2ullMFVwcIMh7NXeHLxjT4ztCb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.14|232.0|0.797|21.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705763|vs4o4TPqygswuYPEm0YEFRvFrV59|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -AgBiBr6Cs2|Cs2AgBiBr6|AgCs2BiBr6||0.89|6.3|0.61|0.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/nano9121760|vsC9HMgfaG1Sv-4ZLRN1F-q1RPjL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is AgCs2BiBr6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|240.0|0.52|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2016.2642639|vsP17rIrZ00AVnt2MBbUGlvgI1d-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.743|124.0|0.61|5.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10971-019-04957-w|vsaWmGFbB4Xk1nasdtFH1MQwZy10|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Pt', 'Si']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.111|195.0|0.6459999999999999|14.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b16963|vslzBa8_XUJUuWjwPv40GlhT1RT-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|231.0|0.8029999999999999|20.1|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['PolyTPD']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9qm00112c|vt7KyvD3OI-h_pFWHmu34FW5UST9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.68|137.0|0.39|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta05470b|vtBzmKrGsE1kS5E1y59lXEVi9wiq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.21|215.0|0.77|19.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.joule.2017.09.009|vtMuqBsPIfYtB4S3nkK-K8jm9i12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|168.1|0.61|9.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.078|vtX4DBlygZeU3xNT51BD3MEbqKdp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|209.0|0.82|17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|vtYpHdjSQm3FxZ9VA_yazt86r_hP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|0.94|179.0|0.75|12.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']|['Carbozole @ S14']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|vtuBRGLxvAOkvxrULJqr8EoEZ-pn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S14', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|180.0|0.57|9.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11081e|vu0Fk3jB7nWzjI2kVg0A4f7UlMkA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br24C60Cs40H300I75N120Pb100|Cs40Pb100C60N120H300I75Br24|Cs0.4FA0.6PbBr0.24I0.75|1.8000001919360546||||17.1||['NiO nanocrystals', 'VNPB']|['BCP', 'C60']|not processed|https://doi.org/10.1002/adma.202110356|vu7DZRg4hzmUXW3qYAjDvWGIJrPi|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.4FA0.6PbBr0.24I0.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.87|208.0|0.71|12.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.08.011|vuBI-9XHK1wmP1eF2qwwAXrOxxg3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.963|134.2|0.55|7.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|vuHjXLUjN0ZE9eQbBojxdV8OlDBm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C890Cs5H2265I249N215Pb100|Cs5Pb100C890N215H2265I249Br51|(TBA)0.5Cs0.05FA0.75MA0.15PbBr0.51I2.49||1.19|234.3|0.71|19.81|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.029|vuLtHauw58VDmJAAT9JxOedjPxWu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.5Cs0.05FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|226.1|0.768|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801888|vuPMtOKljxv5AnLWzHIJ218a59XW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|190.4|0.72|15.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|vuPmyA-yLDi6PY6QEi8Khwta7bGr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5100001610130236|1.12|228.0|0.76|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.037|vuU5Fm_-lIlwNM2YPyCxdpjXPH6x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|175.3|0.59|8.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']|['PEDOT:PSS']|['MATS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.11.031|vuXwFerZ2UVqaZ_Eux33eVAJw4cO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MATS', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|218.5|0.615|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/cryst8010044|vub9tjNfbObpU3PixEZ_zP01I_jT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|221.0|0.76|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|vudyMGHuAnLagxL71gtjC8EkC865|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.757|133.0|0.44|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2015.08.010|vueDz2b3RssJ41CpG15LJ9RxSocV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.05|251.1|0.79|20.93|['Moth eye PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0325-6|vufAjFEiJagvnLUIZl7bOSZSD3_t|a perovskite solar cell with the following device stack: ['Moth eye PDMS', 'SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.032|223.4|0.71|16.28|['SLG', 'FTO', 'SnO2-nw', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw', 'SnO2-nw']|bulk|https://doi.org/10.1002/solr.201900558|vufC4lqZzhyiyPg1tnP0rCl4tEA9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.98|243.0|0.765|18.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|vunzzhaj_xBlpcpykhRrmnYdcMP4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||200.7|0.58|12.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'IT-M', 'Zn(acac)2', 'Ag']|['PTAA']|['IT-M', 'Zn(acac)2']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|vv1D6qIn3gVMtohz6IjPT-LwFFCL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'IT-M', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.4|50.5|0.7490000000000001|5.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-019-10124-0|vvHxDXRUH4vPVqmNXLrG3xQjkNj3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.039|197.1|0.609|13.38|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|vvK0MT2q9QLR3qnccPSs-Q46So_O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.98|171.5|0.66|11.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|vvKA68Oja3dA6snlC4eSDSrCwQrw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|216.2|0.73|14.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7ta08204e|vvNzorFy73dGiAE8kOV802N0TrH6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.06|189.4|0.61|12.1|['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.04.034|vvOPyKruyfx0NI1zNELkcSYLt9ip|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|201.4|0.66|12.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|vvTmzfKRReGCA7Zi-I-i_pLmmQtx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.069|235.0|0.732|18.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|vvfRQB1oSyvHdk2HOZFMgyj0bhxk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|188.6|0.61|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc08269a|vvh9Whc3Z8D6aiKaKYrnhRNwebpX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|219.0|0.75|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.03.158|vvyJ_3LKvygyGHFPGwzNDPTomjvL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|222.5|0.774|18.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|vvzVbt9hZ8dBlak2y41ilZYVtm7y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.0|0.685|13.54|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|vw-t5w9R1CjErLPIMAu7me1XK6Bv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|182.8|0.5770000000000001|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-C11H22-SH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'HOOC-C11H22-SH']|bulk|https://doi.org/10.1039/c5nr01820j|vw1zknf4AwJGBfcmATUlXbaFwn_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-C11H22-SH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.27|42.1|0.3|0.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|vw2gKR0AAV20QPiWcRV_FOsM6xRw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.05|225.4|0.684|16.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-020-1306-0|vw7XuB4vfP44JaS7Y9HCUCXdOUQB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|227.1|0.61|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|vw9RqPCVX86zzeUHrtexA1Skf2JG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|157.5|0.7|10.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBS', 'Au']|['TPBS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06493c|vwIN6P06EgFqRgpFvqOreZqzbjpK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.211|0.77|0.29|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta02711f|vwKIisQmlMlKKPrs61k76Cdo7SFw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|173.0|0.54|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '5,7-disubstituted azulene', 'Au']|['5,7-disubstituted azulene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b11008|vwQQH5nd_EoWo3h66vh60fxndNpG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '5,7-disubstituted azulene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.09|224.0||20.7|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|vwYSXMKf0ScD7Dy5qrJypI7WjU-Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C5F2H30I13N5Sn5|Sn5C5N5H30I13F2|MASnF0.4I2.6|1.850000197267612|0.46|55.5|0.36|0.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6tc05069g|vwgAwzDIaDxrslkqAXDnBnhQtBs_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnF0.4I2.6. -C101H503I300N200Sn100|Sn100C101N200H503I300|EDA0.01FA0.99SnI3|1.380000147150975|0.56|228.0|0.74|9.37|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', '1,2-diaminoethane', 'C60', 'BCP', 'Ag', 'Au']|['PEDOT:PSS']|['1,2-diaminoethane', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpclett.9b02024|vwjrMOjXul5TNWGZMgtmuQUndPp0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', '1,2-diaminoethane', 'C60', 'BCP', 'Ag', 'Au']? The composition of the perovskite layer is EDA0.01FA0.99SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.984|202.5|0.6829999999999999|13.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'SLG', 'ITO']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|vwmmfDohkia14TKUrYCyD27I-6L5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'SLG', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.0|0.772|17.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']|['NiO-c']|['PCBM-60', 'DPO']|bulk|https://doi.org/10.1002/admi.201900434|vwmvaYtgD1kG0XBU5efcVnYA1svv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'DPO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.022|205.9|0.735|15.45|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-4926/38/1/014001|vwuyVYK_Xm9QdQE9xfqY3NeTuynF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.101|225.6|0.768|18.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06879k|vwv2iouPbOyKhpm45G-utQqY0F2n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.706|47.0|0.45|1.4|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|vwwRZt1ktVaz-ZEca5hK5rMGTs63|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.004|165.0|0.6729999999999999|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|vxA2DKjvKdNiWLBQ6OtMb-5X1Vmn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|232.6|0.61|15.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|vxMx2WdZb51vd__ZzfGRC0tu1fLY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|116.9|0.61|7.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|vxTwOYyaVjCxD5IlL9bvhcGHvybf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|167.89999999999998|0.537|7.12|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']|['PEDOT:PSS']|['PCBM-70', 'ZrO2']|bulk|https://doi.org/10.1021/acs.chemmater.5b03991|vxV1RVL_rzLLZ6313JGQVMOMHp1c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZrO2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.89|147.89999999999998|0.6809999999999999|8.92|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/smll.201403399|vxVRxFZjAKP0F4AcaN4XS88cT6Iw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|139.0|0.67|5.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta04051e|vxX1ClbE2Qe1ZiDCysmU_9Njvxwl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.045|183.0|0.693|13.2|['SLG', 'WO3', 'Ag', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta08287a|vxaS45I3kCeVJPFp4j3D7u903_-j|a perovskite solar cell with the following device stack: ['SLG', 'WO3', 'Ag', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.97|146.3|0.527|7.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|vxbAJhnMsPGdy2KeJMVQ72G-onqX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|211.4|0.731|14.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|vxgeQh34f7wEZQdibh3wWFs8qMu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H56I29N14Pb10|Pb10C10N14H56I29Br|FA0.4MA0.6PbBr0.1I2.9|1.5600001663445808|1.01|214.0|0.725|15.6|['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-P2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901204|vxhbb88v9k1YwTacAon_hbZgywp9|a perovskite solar cell with the following device stack: ['SLG', 'DWCNTs', 'PTAA', 'PFN-P2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.4MA0.6PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|211.8|0.738|14.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8cc03672a|vxlk8EWzcrb85O3vYvstZNafpB-Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.88|172.7|0.47|7.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H64', 'Au']|['H64']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2017.09.019|vxwbWURg60UzsG_tE0K-dzATBJfD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'H64', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|204.0|0.72|15.3|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.7b01179|vxzEKtkbZBAJyB6T4ozMixvAf_bR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.03|219.0|0.58|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|vy2V5La4EVt5R8SiosoB7W-DXcCk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br14C17Cs3H87I46N32Pb20|Cs3Pb20C17N32H87I46Br14|Cs0.15FA0.75MA0.1PbBr0.7I2.3||1.08|194.4|0.682|14.32|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/solr.201800313|vynEVEBkLultBqDGj9zhrCVEoIym|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.75MA0.1PbBr0.7I2.3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|227.1|0.773|17.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.jpowsour.2018.09.007|vypm4KYbVtq0J5ZMGGF6FAeodMfy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|203.5|0.672|14.36|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900266|vys6QK8HRcvSQauYKTFh3HD_XXN8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|161.4|0.52|8.15|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/am506672j|vyvcV4TleKEkhDqraxVJz8CXClF4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|194.4|0.5770000000000001|10.75|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1002/solr.201700217|vyvxLWALJBkUPqHnbn_JWJV67a4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|154.8|0.68|12.59|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ta10899h|vzD8RBRuP4atoiqeHoT08a_udNgd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.62|['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DMZ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/smll.201904715|vzF7Ahvv1gO6eSaEKUlGm9rWxATf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DMZ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|218.0|0.726|15.9|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1038/srep13211|vzFQDh7gwHPHOCwZBK41st8AAw4q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C19CsH98I51N35Pb20|CsPb20C19N35H98I51Br9|Cs0.05FA0.80MA0.15PbBr0.45I2.55||1.125|228.6|0.736|20.1|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00055|vzNaT9ewgEVMILZK6oJSKjFmo1wC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|236.4|0.731|17.46|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/pssr.201800505|vzRqn7R7EdPaGuvhQimlPaLP6Klp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.01|190.5|0.741|14.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|vzVT0N1g9idCdNxodfglBl9VSo8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br50Cs50I100LaPb49|Cs50LaPb49I100Br50|CsLa0.02Pb0.98BrI2|1.9190002046251604|1.12|116.6|0.612|8.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc05736f|vzbg4keeiGftA93Jn5mFTpEwrlVz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsLa0.02Pb0.98BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7nr02650a|vzcCYzSGUPvzCKILK0NxfWAozUi0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.18|135.9|0.726|11.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201800007|vzf-DGcJFxS957OhVP5Q0O6_Q_2V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C100H521I300N179Pb100|Pb100C100N179H521I300|FA0.79MA0.21PbI3||0.89|192.0|0.56|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ra07579k|vzi6zME1--OWvGwduea9Q4JdkRNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.79MA0.21PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.6|0.73|16.3|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|vziYi8r0HByqtTIJT14iz5giEYu6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|118.0|0.5539999999999999|6.2|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'TTB-TTQ', 'Au']|['TTB-TTQ']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201500471|vzihhoXczhXAGUlb6J2lj4JiUrKU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'TTB-TTQ', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|152.0|0.611|9.42|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/nl4024287|vzk_vyyr3rn5havCpX301PC_juJA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|156.0|0.67|11.2|['SLG', 'FTO', 'TiO2-c', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Graphene']|bulk|https://doi.org/10.1039/c8nr04441d|vzqGeRnZUpo7YpAfIzFReuFYHqcH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Graphene', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|230.1|0.8029999999999999|19.81|['SLG', 'FTO', 'WOx', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx', 'SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.021|vzzu8pv_HVNosrSFxcmE-M8IyizN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|213.0|0.67|14.0|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|w-07ataaA9ZLI3CGo5M2thiDkXP0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|w-AL525K1EhXktZSsoNFgDwuuc1K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.1|217.0|0.706|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr03021a|w-AwvDitrjLYFcC-SPOPn-U2srPb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.033|213.8|0.795|13.49|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PTAA']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c9ta03896e|w-GNLAHMXT0eH6PRcDg2C8WolVMI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.084|204.5|0.688|15.2|['SLG', 'ITO', 'C60; PhIm', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']|['TaTM', 'F6-TCNNQ; TaTm']|['C60; PhIm']|bulk|https://doi.org/10.1039/c6ee02100j|w-Slz2wnt0M6Jy-RiPZz1FzWBI7N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60; PhIm', 'Perovskite', 'TaTm', 'F6-TCNNQ; TaTm', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H101I60N41Sn20|Sn20C20N41H101I60|FA0.95GU0.05SnI3||0.51|209.0|0.6970000000000001|7.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201804835|w-VKX-PR7KwtPG2DrQKb6rH5rrSI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.95GU0.05SnI3. -CsI3Pb|CsPbI3|CsPbI3||1.072|191.7|0.76|15.61|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.8b07927|w-Vb3zWf7XV8ozvHwYtWZr7Q3oA6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.97|235.9|0.622|14.3|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/aenm.201800399|w-WAq6bDV37huliwi2bBMgdeANit|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|168.9|0.635|9.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b05255|w-cclVhyQYiAG9_-Km9kJ9oC4dt9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.255|70.19999999999999|0.7070000000000001|6.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227092|w-mCAOvfx774PCr2_sUqUNd-DaMn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|63.8|0.41|1.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|w-vc_v4EMcvGplZkgOzymGK_61M4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.101|208.1|0.703|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|w-xfd0BVMTWI1k6VUHdeIOlAgSX6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|218.7|0.76|17.62|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|w0AzrsqtSId6qaHCc1b-5nTr3St8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.02|10.0|0.62|12.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|w0MaWr88r9VTqG0G32lbFtAzyIRx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|186.0|0.66|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|w0zVCyFQ52qrFmKkewdy_ObaNtEy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|221.5|0.72|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|w17tg_q5YCX8lvbUzlQ8QAY4aELk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br11C16Cs4H83I51N29Pb20|Cs4Pb20C16N29H83I51Br11|Cs0.2FA0.65MA0.15PbBr0.55I2.55|1.850000197267612|1.11|220.9|0.6809999999999999|16.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.0c08396|w18vRHMI5Vtejg7ctwXzIpY2Dh9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.65MA0.15PbBr0.55I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|229.0|0.67|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|w1U9mHepMGb8b0uobWwjjAolNWGQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.79|120.6|0.72|6.79|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsomega.7b00814|w1YojUPPzLIP5tkDERSNu14b3T29|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br3C100H510I291N190Pb100|Pb100C100N190H510I291Br3|FA0.9MA0.1PbBr0.03I2.91||0.76|187.4|0.62|13.52|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.3390/coatings8090314|w1aSkN91-76xrfx86X-ocKwu5j0J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.91. -C14H42I10N4Pb3|Pb3C14N4H42I10|HA2MA2Pb3I10|1.9600002089970368|0.731|124.47|0.637|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|w1fZAClE5bwljM-swtsGqgp06ds8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.028|193.4|0.66|13.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta05413j|w1ffcXd20Kjv7xhLk_SBbMvXTd4u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.013|231.0|0.731|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.059|w1lSYJt-XuPUV4ru2t8GVmhtb5TX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|145.0|0.56|7.0|['Ti', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Carbon-nt', 'Ag']|['Carbon-nt']|['TiO2-nw', 'TiO2-np']|bulk|https://doi.org/10.1002/smll.201600326|w1n97eeHGCosh0qK3wGe5t9uMajR|a perovskite solar cell with the following device stack: ['Ti', 'TiO2-nw', 'TiO2-np', 'Perovskite', 'Carbon-nt', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.96|120.6|0.735|8.49|['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AAO']|bulk|https://doi.org/10.1002/aenm.201601055|w1nColETHjWcI0l6Gt8u33er3UC2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AAO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO-flakes', 'Spiro-MeOTAD', 'Au']|['rGO-flakes', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b05514|w1ttCNviwjtGrHTN8A80o8SK1X8E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'rGO-flakes', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|232.0|0.7|18.15|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta03782e|w1yGIhAQh7UZBlZm3g7xjfZCsVYF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|204.8|0.7390000000000001|15.39|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201901719|w27dddjt9mFw3sXg3Gf9A9q5ufyQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.95|198.0|0.51|9.59|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1002/admi.201801773|w29IVMlGSJihAQcDhh7ec8QIYEuz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C90Cs10H450I249N180Pb100|Cs10Pb100C90N180H450I249Br51|Cs0.1FA0.9PbBr0.51I2.49||0.95|197.0|0.63|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00538e|w2M5CzkqDqcbyYPLSHYZ9KShfIZ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|215.03|0.72|16.28|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|w2MFnK50RHdr6394DiyWonhvuh-D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|179.0|0.66|10.0|['SLG', 'ITO', 'Perovskite', 'Diketopyrrolopyrrole', 'MoO3', 'Ag']|['Diketopyrrolopyrrole']|['none']|bulk|https://doi.org/10.1021/acsami.5b10555|w2Zqhtr5DP6GlWquHtrP62XlsSgn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Diketopyrrolopyrrole', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.6000001706098266|1.04|211.9|0.61|13.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|w2c7n1GbPrbWRxK2aOvOLSYklYhw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|230.1|0.77|18.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta03541e|w2hu0eJT7SrJczCWzGurioJp7pJT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6300001738087604|1.12|220.9|0.726|17.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201703399|w2n8UXK6e5Jbw_AkJpVYTlB0k9-o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3CsSn|CsSnBr3|CsSnBr3|1.8000001919360546|0.42|16.0|0.521|0.35|['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']|['MoO3']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.09.009|w2piKyRoxS4p2KizjzzK1S_PaXY-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsSnBr3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|217.8|0.78|16.16|['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.202003422|w2xNpk2lcHYnoT1ZZbHEODBX8d4U|a perovskite solar cell with the following device stack: ['PET', 'Ni-mesh:PH1000', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|168.0|0.518|8.9|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag@Au-np']|['PTAA']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.025|w2z1r3UcDM-3wBJNJQkJ6Ja1Ftsh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Ag@Au-np']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.10FA0.75MA0.15PbBr0.51I2.49|1.6300001738087604|1.157|223.0|0.75|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aah5557|w3-xA4PWV6Addwau5zl_vWrKuHzW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.75MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|202.0|0.695|14.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta05291c|w331SeCZy473GKxyGbKOfr3Iu4RC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br11C50H260I50N90Pb50|Pb50C50N90H260I50Br11|FA0.8MA0.2PbBr0.22I|1.5300001631456466|1.01|218.0|0.76|16.9|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|w33Uv-CPFBHbVRKTDtxurND0fgsF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.22I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|229.9|0.757|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00859|w35TsM7Av12UsKbcGAvxGSyCkVzP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|186.2|0.67|11.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.7b11168|w369R1Ex499fGrf9lSfMFNfVPIhZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|90.0|||['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201602922|w37FrVyusecFjK-zUEqMb8zMEyFT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.4|0.78|19.34|['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSO', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta09101g|w39Toc59_3rsupefsJkdx7yjbjjN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSO', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.28|80.0|0.25|0.56|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta06163c|w3NJ-2W-NPcQu474i1MmXjkzYuRC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55||1.132|228.8|0.7559999999999999|19.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|w3aIyQUuai0BXEiRlRmZq7sHPzy-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.16|133.0|0.6|9.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|w3dVTWzEnsLbCgm1TpcACD0YN_Xh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CsI3Pb|CsPbI3|CsPbI3||0.75|30.0|0.58|1.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acs.jpcc.8b04613|w3oVPIk2yR-JvoKCS5yG8-4Kvtjp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is CsPbI3. -Bi3CsI10|CsBi3I10|CsBi3I10|1.7700001887371206|0.47|26.0|0.38|0.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3TI', 'Au']|['P3TI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201702169|w3pAjrWV-OQzcP71L_cB3hWJ8byx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3TI', 'Au']? The composition of the perovskite layer is CsBi3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|198.2|0.7|9.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b01364|w3smvSRRykjF74gDEJXrie8pUiWg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.782|93.2|0.56|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|w4-xR96vR80s0MnXeLtGAywCgKMY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|218.0|0.706|16.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201601768|w428mTgIPBI0SRpeutWBbufpqbv7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|146.0|0.63|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta00568j|w43D4SMOjgEzMS5X69C4db5aj5Zo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.998|204.0|0.73|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssr.201510386|w45gNdzIpY86MYEQdq8FabHgGjZ9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|206.0|0.643|12.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.05.039|w4BZQb-a5ZIlaPrd2O1lrlhZASRT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.1|0.742|16.77|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.3390/nano9070935|w4BnuLVbka1f0YsEKGn3YPaXwYkK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.07|202.2|0.737|15.95|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|w4t_lHuPymGjv1VVdXWgFFUTf_gI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|169.0|0.47|6.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|w539NuMCjaesEiELUr6s6cwKlJvV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|106.4|0.461||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijleo.2018.09.175|w5Dl5zhJDMeuvPtVdqUZ7qsYp1ad|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|205.0|0.625|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|w5JMzNScfmA63OgBTBR4dQWGGRYo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|190.0|0.57|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c4ee01216j|w5iqOt6fr1dyzr8wRdE0Ey4SmtNc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|217.0|0.66|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']|['Graphene oxide', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.03.027|w64KMnIeoXpbeOCDCq21XqBHYpuV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphene oxide', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.04|148.0|0.73|11.2|['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.081|w6SCh59wRKwC0vIZKB_rGq5iZ3Jy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovsite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.7|0.6920000000000001|16.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S2010135X18500091|w6uAI3d_KmIazcclFuvPrv65Nhrm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|209.0|0.7|15.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00837|w6vlB5kHU_pG7MRIHOtVSDM_031e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|233.2|0.753|17.71|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|w6xypqztXw9qMroOwlvO3ivq5eFW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|216.0|0.74|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b09803|w74CzJwVKcFAoiF9-GMvRCl3LPZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7nr04362g|w7BXcd-kOUOU7H4zd-jlCST5qkNw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C55H258I121N41Pb40|Pb40C55N41H258I121|(PEA)2MA39Pb40I121||1.09|225.6|0.742|18.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|w7DONSRuUbvoJKm12zTvv_oaaTNN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA39Pb40I121. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0||15.2|['SLG', 'ITO', 'ZnO-c', 'PO-TAZ', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['PO-TAZ', 'ZnO-c']|bulk|https://doi.org/10.1039/c6ee00292g|w7EAMGXOIS1giy2ZjJ757-P0xqfu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'PO-TAZ', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.003|160.6|0.6890000000000001|11.09|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|w7FF5pebT5Y_napOKFZW6mWL83h4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||0.8170000000000001|184.0|0.578|9.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.153272|w7GsAsls8dPHrhlS4mi65gfka4h1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.92|201.0|0.755|13.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201900484|w7PwAMMfnIjNr_RnkSIsgIAjL4wK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.95|225.4|0.812|17.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b09758|w7RsXW-pzFc4Ah8mAKBD3HmZ7fY_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|231.0|0.773|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900397|w7WAhZRUEz7cIQ7kbIvep2JGL7aE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9400002068644144|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|w7WM46cOiL9z-yAYuW1CdkDUfAW4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.079|235.0|0.69|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04246b|w7_M13jaXpKQdEcZUutqdspUehbx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.9|0.726|16.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|w7_iJtumj117lPiB2MTAY2T6pomF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|168.79999999999998|0.603|9.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|w7d6o0-ffBaLwqHSeyUMB84gxBLs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|168.6|0.743|10.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1080/15421406.2018.1456072|w7fSTrWoPEiyy5kvLLrG4rmfZAsJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.93|168.0|0.52|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|w7iYtaFLmXQf8d5UVNLjZ1xo_qye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C90Cs10H513I300N117Pb100|Cs10Pb100C90N117H513I300|Cs0.1FA0.27MA0.63PbI3||1.098|228.2|0.7979999999999999|19.98|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|w7us8ToLVpRRqr7tgLgvsxdUZ4NI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.27MA0.63PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|226.0|0.64|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.053|w85aDUsdh6XEqL5gh8AJS0N9DQbD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.4|0.735|15.16|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.020|w87jqiLUxgw11KeIkonJ45bC-nMX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.072|214.5|0.784|18.04|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-V', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|w89ybROUccLItiXby80zbdtefFIf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|w8EXztwf9UyamAuOmoZZUH3iWSYB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|128.2|0.539|7.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|w8Euc9uDsf_F2WdOhmiPpBBNWdvb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.379|97.0|0.32|1.2|['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/cssc.201501659|w8FJaTrHaWAt6ECKP-0uddQPOMyO|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|230.0|0.63|13.1|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1002/anie.201800816|w8WWW7pRF_axOvzbx38G4swbsdfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.715|14.1|0.175|0.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-TET)', 'Al']|['PEDOT:PSS']|['P(NDI2OD-TET)']|bulk|https://doi.org/10.1039/c5ta10696f|w8Zzety2RG9HmwEwV_m2tpVxQYtC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'P(NDI2OD-TET)', 'Al']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.13|209.4|0.72|17.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|w8h7XZeOaXh9KdOlcqM_AT2YhMwy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'Graphite']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.03.095|w8qdp-YQ8zcbgCUpqjapP00djDIn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|139.0|0.564|6.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4974796|w8s2R4GIYhL-QO-X9Qor2JZIwx1u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.057|235.6|0.8059999999999999|20.08|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.0c01297|w8um-dsck74ljbh4ecBg9G5Y0_wN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|117.0|0.61|6.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jz501869F|w8zJoSs-IoBzDxV-XwdO5mKinJa6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.570000167410892|1.04|229.6|0.7190000000000001|17.27|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901716|w96tloO32zY5MlWiAXgkAAXOwdso|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.11|213.0|0.75|18.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|w97qeKwDz2a6J_PNEGnVUUyHgXBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|174.0|0.5579999999999999|8.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-nanofibers']|bulk|https://doi.org/10.1002/celc.201900532|w9BiFqRJY1dwp9kyhSwgIxtdiKTp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nanofibers', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|218.3|0.75|15.4|['SLG', 'FTO', 'TiO2-c', '2-PA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', '2-PA-SAM']|bulk|https://doi.org/10.1016/j.apsusc.2018.08.088|w9H4uye48m9C4WN0Bxq1DZhndCxU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', '2-PA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691||||6.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.2109/jcersj2.16279|w9M1XvT4XmFq2KnTV0Y65nZ6O_xJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H50I27N20Pb10|Pb10C10N20H50I27Br3|FAPbBr0.3I2.7||0.99|191.2|0.6829999999999999|12.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800658|w9SQUtyo7eXPHvMIDA38me_8uqoT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|155.0|0.37|5.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'AZO', 'BCP']|bulk|https://doi.org/10.1021/acsami.6b07368|w9UKGTJOk2mnSx3p2AKk9p991DHG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|153.1|0.72|9.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2016.05.154|w9Y4d_ROWcymfGfRPEYoXI0NQN4I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.96|196.0|0.7040000000000001|13.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']|['B186']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|w9hovDyYbyQHRXlpcwk4sTGTNmer|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'B186', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|203.2|0.685|11.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C7TC05276F|w9nhou03RluB4Js0w99eD1B45nsA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.092|227.4|0.784|19.47|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1039/c8se00200b|w9uPzspo1b-0oSRGHCkUSR205JXs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.73|16.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.017|w9yXV-z-k9Od60MuWP31mNck2e2i|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|194.0|0.6579999999999999|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.12.045|w9ylEss95C4GKCB5ANxrfu7xXaTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.78|182.6|0.496|7.08|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1016/j.mssp.2020.104915|wA34sSUaT61d1FWcFI58Je3aDE-1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br13C100H513I283N187Pb100|Pb100C100N187H513I283Br13|FA0.87MA0.13PbBr0.13I2.83||1.02|201.9|0.5720000000000001|11.66|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta05744g|wA4-8vSQ3qYv6pWushr0wgxo3gp1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.87MA0.13PbBr0.13I2.83. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.841|58.0|0.5|9.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.opelre.2017.07.004|wAA08evYEY6sHMsEqHYqssgrx-iO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.01|174.7|0.715|12.59|['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201904735|wAC53svj2LZ8BDShf5Km8HSwiikN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.626000173382236|1.01|180.7|0.721|13.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b03116|wADxrpimcucPNqCT6fNpVmgCWrvF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.05|217.2|0.741|16.98|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|wAE87h82CEbrKeNCc7ksYilwWY9h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.95|191.0|0.58|10.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|wAEjhI3vYvvSIorrvMJYs7MBCtE7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|174.0|0.65|10.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep21257|wAItqdQgI8OC3O9c_t1BW2LALTg0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.05|221.8|0.73|16.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.08.056|wANZrEPQzfs98zn7Bq5ZnzOcHH-t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|193.0|0.6709999999999999|12.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta07545f|wAP7O_5pRXQUnE1XVtrq0ICW1KhI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|144.70000000000002|0.68|10.87|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.05.003|wA_wagI6Ep9MKabgmM8L_61xHz6C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|202.4|0.731|15.76|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|wAqeYnk0oj1IoNiy5nOFrDzro153|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.06|141.0|0.58|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201800185|wAzP8RRLMhVmdWvX773gwu6StyxI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -C16Cs59H24I181N2Pb60|Cs59Pb60C16N2H24I181|(PEA)2Cs59Pb60I181|1.7300001844718749|1.07|165.9|0.7|12.2|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|2D|https://doi.org/10.1016/j.joule.2018.05.004|wB50hZg33mi_n5CBcY--2BPfdFVN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2Cs59Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|236.2|0.7|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b02463|wB5nNcEc-AmXR3g3eG8bA-1hTp3N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|202.5|0.772|15.79|['SLG', 'ITO', 'Graphene', 'AuCl3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['Graphene', 'AuCl3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2018.06.068|wB7V6yRtc5W2vt1v8M9QfEw1SV6_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene', 'AuCl3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|||||17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2418-9|wBFUT5_fEihKZCElxJoNsBOShnW9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -C40H240Hg3I120N40Pb37|Hg3Pb37C40N40H240I120|MAHg0.075Pb0.925I3||0.88|170.0|0.7|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpclett.6b02122|wBJCooDDGSY8N8Hp5GUvIKPxfuzK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAHg0.075Pb0.925I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.1|218.1|0.794|19.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/advs.201901840|wBY_pqKBKA6NinVCLkhO9NwQwSAw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.973|220.0|0.622|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.03.030|wBqc-slCTrQG4LHvwspbGzt9ywlF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.017|181.89|0.649|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|wBrCH-RmPGqiDPBieTQTlxmcCB-9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.764|61.0|0.62|2.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|wC-pWBB2mVcfSDNf-ntReDwxWZDp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|208.0|0.81|18.2|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|wC0KLxwM3aUWkE86Lv6dU3FMZ1sY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu', 'Ag']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.953|249.2|0.57|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|wC4CR1rYo2IXXDKlizZ62UGBrj2k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.133|208.4|0.737|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|wCAT-sAuVjZR3fp88Z9LR7Zvb8Bs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|231.5|0.774|19.88|['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['CPTA', 'BACl']|bulk|https://doi.org/10.1016/j.chempr.2019.02.025|wCKq0tYjE3zli40bwL-tT9slYcph|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CPTA', 'BACl', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.570000167410892|1.03|163.2|0.68|11.66|['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ee01799a|wCSFApXQ_v3q_B59fngGOacbqsPZ|a perovskite solar cell with the following device stack: ['PDMS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C20H117I60N23Pb20|Pb20C20N23H117I60|FA0.15MA0.85PbI3||||||['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900511|wCVNns9PQOOit1eK1i1Hqi17Ihtt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.15MA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|76.6|0.238|1.09|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.08.031|wCXAoxJoGeo11VbobHeu-j3Dsvcr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|152.0|0.56|6.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|wCZEu0biWXCu82tcEPTPXQcO8Fk7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.2|104.0|0.146|1.0|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Methanol-hydroquinolatolithium', 'Ag']|['none']|['PCBM-60', 'Methanol-hydroquinolatolithium']|bulk|https://doi.org/10.1002/solr.201800084|wCbxcJKzRWjINz_JRX4NCe94OGY4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Methanol-hydroquinolatolithium', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|213.4|0.7190000000000001|16.84|['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Na2SO4']|bulk|https://doi.org/10.1016/j.solener.2019.09.056|wCiR_EHbYRC0PfxK9nZ3Pu0FeTGL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Na2SO4', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|193.0|0.56|9.98|['SLG', 'TCO', 'TiO2-c', 'SrTiO3:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SrTiO3:TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.10.090|wD-q_LMswhdQ_1q9-QljM9yNhPi3|a perovskite solar cell with the following device stack: ['SLG', 'TCO', 'TiO2-c', 'SrTiO3:TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.1|0.69|14.64|['ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.matlet.2019.07.092|wD0jV_1Fa9XqB7botbN5UqE1PMqV|a perovskite solar cell with the following device stack: ['ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.06|202.0|0.68|14.5|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00545|wD47kTZqxTEwMtkPhIpqYe1oangP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.913|126.0|0.66|7.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|wDGmHxmbBxOCgB8TuWE_eMOTxML8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||16.48|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201701688|wDGwnzzsWTrL-OeC29Ysb8hHnxas|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6600001770076949|||||['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/nature18306|wDReSaM_-d8Q5ZTzvbvSIhBuTxLN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.623|151.4|0.47|4.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']|['Ethyl acetate; I2; LiI; TBP; Urea']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1021/jz401527q|wDUndCg_3uP08CO0gbA4Oq0XIgjZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP; Urea', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -Br90C192Cs5H990I500N354Pb200|Cs5Pb200C192N354H990I500Br90|Cs0.025FA0.81MA0.15PbBr0.45I2.5||1.094|220.5|0.784|18.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7se00036g|wDZ6suLyZwuAInVNud3ZyOssJiB0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.025FA0.81MA0.15PbBr0.45I2.5. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.10MA0.90PbI3|1.5400001642119578|1.05|101.0|0.73|7.68|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|wDZUN6gvjhLuSDjmAQZTZuZ-mtmx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.10MA0.90PbI3. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.13|216.7|0.622|15.2|['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.orglett.9b02635|wD_xucQDMYd4Mk8hG3ZBjQVyBMpF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|222.0|0.649|12.1|['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']|['Ag-nw; PEDOT:PSS']|['PCBM-60; CTAB']|bulk|https://doi.org/10.3390/mi10100682|wDadfU5HEzxogFyuoyqaGEH9Mvk3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-nw; PEDOT:PSS', 'Perovskite', 'PCBM-60; CTAB', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|230.5|0.7609999999999999|18.41|['SLG', 'ITO', 'CuI', 'Cu@CuI-nw', 'Perovskite', 'PCBM-60', 'Ag']|['CuI', 'Cu@CuI-nw']|['PCBM-60']|bulk|https://doi.org/10.1007/s11426-018-9386-5|wDahwGhxeTV4Mnw2WvG1A9Pm4IRA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuI', 'Cu@CuI-nw', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.950000207930726|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800216|wDeRz2j_xRkoDWTsciyglwZlCnoW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.71|149.8|0.511|5.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.04.055|wDhlGWXZShAq6E3VLRHg5ujaFFtL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.17|225.7|0.7290000000000001|20.4|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/adma.201806095|wDo8Ts8EaOENBFqUUu8F4Rsv2qWs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.085|198.9|0.758|16.36|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||wDrJhacQE3muqX4bTe974kZAKU-R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.97|200.6|0.56|10.82|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|wEOUf7Th51nBmHAvwdF2-8clrpDc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/jp508162p|wET_P9hNXad3Jtly9UyDYKjVFi7f|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|111.7|0.377|4.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201501145|wEWvf88McWqsny07fjQr-tlgaPQ5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Graphene', 'PMMA', 'PDMS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|227.1|0.68|15.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|wEdPe0L1-hPj2AIyq5aln2nC5bQn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|197.4|0.65|11.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|wEwGw-5ftqdMs-nK5PJEOEMuCtvx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|233.8|0.733|19.95|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9cc06155j|wEwaChk90_lczHf1WiD3xLKgMqf1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|13.3|0.3|0.27|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|wF92mDbYazu_vqIV1FcYdLUSREEj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.03|208.0|0.765|16.38|['SLG', 'ITO', 'V1036:C2', 'Perovskite', 'C60', 'BCP', 'Cu']|['V1036:C2']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201801892|wFB-udtYdi1YpC7t92KDTs8yKS8w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V1036:C2', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|182.1|0.72|12.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|wFDQ_w0ceyeXNFzbUfD6YHwlnZv0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.934|95.6|0.62|5.56|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c7ta07660f|wFHhFnDoug1O5DbpqZWoevYP7qA0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|193.6|0.455|7.16|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5159-x|wFI9bDz6qMIbCrrpJZyTT-a1I2bC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|83.0|0.24|1.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV6', 'Au']|['COPV6']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b04002|wFO7dg1FcQ0jWYoD4OhUjufqiEmq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'COPV6', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|0.0|0.2|0.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/ma12193142|wFTJUgDxP2Nmcp5ctYRbhKYZAYfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.98|71.39999999999999|0.7190000000000001|5.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2017.05.050|wFUeEBmYN2PVKycW0dgXdYzdNwCU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.014|190.4|0.73|14.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40843-016-5099-1|wFWn-EaIzfK6U1qj4DLbRSyWA8Fv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|161.0|0.59|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4cc04680c|wFXx5tzJ0OeJNZnhDHNDD7AQxfXT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|127.8|0.596|6.45|['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2016.07.010|wFyfhXsBwVYrU_qWnRGBIiqpZN_Q|a perovskite solar cell with the following device stack: ['NOA63', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'MoO3 ∣ Au ∣ Ag ∣ MoO3', 'Alq3']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|152.4|0.688|11.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag-nw', 'PDMS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705409|wG2Cx7XrNlGwO_0161JT1ydpTyaS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'Ag-nw', 'PDMS']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.972|175.6|0.71|12.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.mattod.2017.12.002|wG545LUrb-d0Iof8hKxGFIvseF_1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|232.5|0.76|18.21|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np']|bulk|https://doi.org/10.1002/anie.201911518|wG6AORItSfksoyl-59HgrsKwjwaG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.500000159946712|1.03|210.0|0.688|14.9|['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']|['IDF-SFXPh', 'MoO3']|['C60']|bulk|https://doi.org/10.1002/adfm.201901296|wGCzGIigzpTO7FxV7tUSupbMfJ8s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'IDF-SFXPh', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|219.0|0.72|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|wGElPda5bJ7Mp_ngAiv4FIUOIdI8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|211.1|0.7070000000000001|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BPV-TPA', 'Au']|['TPA-BPV-TPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aelm.201700139|wGGuz66h0GNUYHKOqbPlL5kc9q_l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPA-BPV-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4|1.6100001716761378|0.97|201.0|0.77|15.1|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.nanolett.0c00663|wGHycv2MNppBssb1GBV0J4GKLcH0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|195.2|0.58|9.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.019|wGJWJRhAUwePeOyg_pIoD0dV_uCd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|217.2|0.49|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3']|bulk|https://doi.org/10.1016/j.orgel.2019.03.022|wGOgFsqQFrEH87j4Jix7E65UV9u-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'PbTiO3', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C23Cs2H118I66N43Pb25|Cs2Pb25C23N43H118I66Br9|Cs0.08FA0.8MA0.12PbBr0.36I2.64||1.101|242.5|0.7979999999999999|20.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'CBA-SAM']|bulk|https://doi.org/10.1021/acsami.9b18034|wGeH2n7iWuP7GK5Sz1snVZowmDjW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'CBA-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.08FA0.8MA0.12PbBr0.36I2.64. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|184.4|0.625|12.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']|['PTB7']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.122830|wGiZ-mwb4XR6SmzIA086yP4_4J5n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTB7', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|197.3|0.7040000000000001|13.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|wGkYNBuuJr8WqDCZyps0yk0q9Tkf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I251N177Pb100|Pb100C96N177H495I251Br45|FA0.81MA0.15PbBr0.45I2.51||0.949|181.3|0.609|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaf8060|wH1MBa9QRmiQUFnCp1q6NuWqRwiU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.06|197.8|0.758|15.81|['SLG', 'ITO', 'MoOx', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['MoOx', 'F4TCNQ']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01004|wH3PQGylejIEryvp3CL3Wp1AijNG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoOx', 'F4-TCNQ', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br680C1900Cs100H9823I5320N3477Pb2000|Cs100Pb2000C1900N3477H9823I5320Br680|Cs0.05FA0.7885MA0.1615PbBr0.34I2.66||||0.7|12.0|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adem.201900288|wH4TYSuQ67RzZciU0wh7UGNwa7o6|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.34I2.66. -Br3CsPb|CsPbBr3|CsPbBr3|||||5.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00358|wHO0ykapPZX5uS9pAP7onKc-Tinu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|213.2|0.743|17.71|['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1002/adma.201801935|wHZSVuJL6cZuc3RG9K5fI5h9YsUh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|213.0|0.755|16.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.04.029|wHkb8sLt6fXv-o9m7N3TAytpEztQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|230.0|0.72|18.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.9b01783|wHqeRXyR3Mu5-UEs_NQW77W--ifR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|185.0|0.62|17.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00350|wHr1o6MwOLwY5mEYH-yQoMVFirtN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2|1.7900001908697432|1.147|153.0|0.752|13.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201901980|wHs99yTWXqAuf5hms07-S9tIYuRE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|203.2|0.6920000000000001|14.62|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-np']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.105|wI0aGFWcciiMvZ_V2MaGX5R_oheG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3000Cs1000Cu3Pb997|Cs1000Cu3Pb997Br3000|CsCu0.003Pb0.997Br3||1.455|63.4|0.768|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|wI2b7cnrM5CfljfO6-BLL4OvChVU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsCu0.003Pb0.997Br3. -Br640C2332Cs166H12327I1860N3997Pb2500|Cs166Pb2500C2332N3997H12327I1860Br640|Cs0.0664FA0.666MA0.2668PbBr0.256I0.744|1.710000182339252|1.037|196.7|0.685|13.96|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|wI2tMNEdDbNJkn5Hac84fCSTvCuv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.0664FA0.666MA0.2668PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.956|219.0|0.674|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|wI3TuEJQhpXNcIyqdB1igxCWFpJ3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|225.0|0.748|18.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|wIPsaLnAfEOGW6wnGwkcI64aAiOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|110.0|0.77|7.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']|['PEDOT:PSS']|['IPH']|bulk|https://doi.org/10.1002/adma.201603016|wIVTBNAvk1U1DLzXO96QNnSyx1f4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'IPH', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -C50H267I150N83Pb25Sn25|Pb25Sn25C50N83H267I150|FA0.66MA0.34Pb0.5Sn0.5I3|1.2600001343552385|0.7|272.0|0.69|13.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000566|wIhc-fo5UZBHZ_lI0ckgwTSNr1Rn|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.66MA0.34Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.99|212.0|0.679|14.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'DOR3T-TBDT; PCBM-70', 'MoO3', 'Ag']|['DOR3T-TBDT; PCBM-70']|['TiO2-c']|bulk|https://doi.org/10.1021/nl504168q|wIkgWN-aBITmLSR2OXodS52KIlVN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'DOR3T-TBDT; PCBM-70', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|146.5|0.68|8.56|['PI', 'Ag-np', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.3390/polym11030427|wIq8mm1viZFmcAieePw8jTJShGG1|a perovskite solar cell with the following device stack: ['PI', 'Ag-np', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|160.2|0.47|6.97|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.09.070|wJBu4oyGfakClKw5LqcS1eVz1H2S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C75H378I181N61Pb60|Pb60C75N61H378I181|(PEA)2MA59Pb60I181||1.06|224.5|0.773|18.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|wJH70iQOe2IWpJ3Gr-vN9uANaIe4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA59Pb60I181. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|225.8|0.763|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|wJPBDX0n1p9dfIYUXldgPsN7jISW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.4|71.2|0.757|7.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|wJUxlxqK27TP9i4pIKtQ0E8bJEfj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|225.3|0.75|18.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|wJXmDpyzopC4y3onePp8iRp57CyI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|147.6|0.41|4.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ijhydene.2018.03.226|wJbz24sn3AsA-sEtrGvtHaNVQkR0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||1.05|240.0|0.74|18.61|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/science.aat3583|wJcGyDa07MBHRvRDuDbF5w2UR-Q4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.994|175.0|0.59|10.0|['SLG', 'FTO', '(RhCp*Cp)2', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['(RhCp*Cp)2', 'C60']|bulk|https://doi.org/10.1039/c8me00031j|wJuMWs_DcWwQXKLF5HVOoFs-SI6H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', '(RhCp*Cp)2', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.2|0.72|15.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700487|wK2wmi294-SFGTWw4aK2rZ6QNM_J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.1|0.777|16.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|wK3A4L5rUKKLPADiVDRSqwbeJZN8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|147.0|0.62|8.7|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1021/acsenergylett.8b01300|wK5btwgxKkrCF3XSJ8aTIL-Zd5Gu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.95|185.2|0.6809999999999999|12.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09365|wK6Gw3mG94j_M8FNaONDiMUN3iBG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|202.0|0.618|10.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja410659k|wK7KsKTEruIOtETPMVmWDNFMHO__|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|154.0|0.7140000000000001|9.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2018.05.033|wK7ahBT5wcnO191U1SMgiWIcQmn9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.7300001844718749|0.86|176.1|0.622|9.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12236|wKAl5ZNGARbgWz7FIjLBoxca6DZj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|152.89999999999998|0.53|8.22|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1149/07202.0275ecst|wKTvkvQ1v3gyfxiLgIRCPUOGqZtV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|223.7|0.722|17.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|wK_PEGKb1DUh1jBUIm5SEUDV-XDF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|178.0|0.53|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b13868|wKbag3WuK6fLoNFFk6axDwC-GcDy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C1900Cs100H9823I6000N3477Pb2000|Cs100Pb2000C1900N3477H9823I6000|Cs0.05FA0.7885MA0.1615PbI3||1.03|194.0|0.73|14.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-MPH', 'Au']|['EDOT-MPH']|['TiO2-c']|bulk|https://doi.org/10.1039/c8me00023a|wKduunsf-dWsF4G71J_HJviU2YQk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'EDOT-MPH', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.6|61.4|0.69|2.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-017-1264-6|wKoN6QXIMftrpx-rKc2fPJROpgvv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I||0.34|178.0|0.53|2.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta08332c|wKscrVsrqs8BQhfX9IrtsipVeDuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.42|221.9|0.5379999999999999|5.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-2D', 'Au']|['BDT-2D']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201905393|wKz3JGARePWV0ArmCPgGsn-JjtL_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT-2D', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|128.8|0.73|7.9|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['Graphene oxide']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c4nr03181d|wKzo9gcatPnHc_U8eWgyx_mwuxzT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|224.0|0.701|15.1|['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS', 'NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c8tc02906g|wL-2oIMm9NvOyhii09NTHBQ8Wg98|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||17.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|wL71CujYnABeprQnPY9vP7520Ue6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|207.0|0.74|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.08.061|wLAGANtxprw5jEoeIjU39RoF8ps7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55|1.5900001695435149|1.062|217.3|0.76|17.27|['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201807604|wLIib2xHdk4yCupFL4KnfYxl-1GB|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br30C100Ge3H517I270N183Pb97|Pb97Ge3C100N183H517I270Br30|FA0.83MA0.17Ge0.03Pb0.97Br0.3I2.7||1.12|246.2|0.77|21.98|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903299|wLT6dRGFbEx2tXkohlwyg6QFXZd6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17Ge0.03Pb0.97Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.4|0.753|16.72|['SLG', 'ITO', 'PDTON35', 'SnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C-PDTON', 'SnO']|bulk|https://doi.org/10.1039/c7ee03275g|wLjpVxEe6EjLxCU4JDJDGpO8VMz3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PDTON35', 'SnO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|157.0|0.69|10.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jssc.2015.08.002|wM-eYosAQwYI2O-svHoUpvPXK9Dl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|121.3|0.59|7.41|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/C6RA07549E|wM4w0oX5ASG_yj5hpZaxqBKbqV1X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.079|187.1|0.8270000000000001|16.63|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|wMB2DEzmgRs8z4Ltz05uHVxxoBwj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.9|0.723|17.21|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c9tc03259b|wMD5IBMCQFvlnrMU6TcxBaWCr043|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.100000223925397|1.213|118.1|0.61|8.74|['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['NiO-c', 'TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2020.04.024|wMJUlpIpiXTjIwWfz4aONiJElGmD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.900000202599169|1.18|135.0|0.64|10.37|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']|['none']|['Nb2O5']|bulk|https://doi.org/10.1002/cssc.201802690|wMMGfUpGAKFRTacNQvUlDieS5zBr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|174.5|0.52|7.85|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1117/12.2257204|wMPDPnqkx-EyLGfeGpyJkkCL3y_q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BiCH5I3N2Pb|PbCBiN2H5I3|FABiPbI3|1.6000001706098266|0.87|231.8|0.61|12.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/srep34319|wMRlMbm-zsvNjV_WXXqVr8-Np5eI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FABiPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|226.2|0.795|19.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|wMU20yiKgc_P92kc2URBW8cTob3a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.932|204.0|0.605|11.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16029|wM_Ojwr8jPdkzJ4jTxZd66l-eN6x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs20I59Sn|Cs20SnI59|CsSn0.05I2.95||0.4|152.0|0.52|3.2|['SLG', 'FTO', 'TiO2-nw', 'N719', 'Perovskite', 'CZTS-np', 'Au']|['CZTS-np']|['TiO2-nw', 'N719']|bulk|https://doi.org/10.1016/j.jcis.2018.12.100|wMxEZxNsrGrnLO-emLnkhm5kQGer|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'N719', 'Perovskite', 'CZTS-np', 'Au']? The composition of the perovskite layer is CsSn0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.037|87.91|0.191|1.74|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|wN0nPiDsbGBKv3s1q-IDkEEqyUet|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|211.0|0.7140000000000001|16.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.06.069|wN6NoHdJ7hAvvLZAcvdyUMASj_BL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.96|140.0|0.63|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1039/c8ta06976j|wNIu603PwS23tgsoctad5Qb2G4ZT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.3|0.41|6.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'po-TPE-4DPA', 'Ag']|['po-TPE-4DPA']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201603672|wNQMa-DXX2ybPclnnwZXebZ-vIid|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'po-TPE-4DPA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.87|47.0|0.66|13.6|['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'CdSe-tetrapod']|bulk|https://doi.org/10.1088/1361-6528/aaf158|wNQ_xPfxLLZz2pyxBTSGun5mNV9U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'CdSe-tetrapod', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|212.0|0.75|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|wNdGFDecoR0jiU_qliyfakBTvNgo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|140.39999999999998|0.747|9.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc02193c|wNe1AUjusMDHZo4gd3emEOXEs3zo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|222.0|0.741|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09543k|wNrcb5d0bhqKs3OLtvKEyIJCWXK3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|189.3|0.705|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b05880|wO0hwdor273NLxwsvLLwcfj9uuxj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.0|240.0|0.715|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta07674f|wO92N2_XGCCO-pTPb0U7t16_WRJF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.105|225.0|0.73|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|wO9cuhtYPTydeT2SUm2eIdEOI461|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H114I57N26Pb20|Pb20C20N26H114I57Br3|FA0.3MA0.7PbBr0.15I2.85|1.6000001706098266|1.06|204.8|0.77|16.72|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']|['NiO']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1016/j.nanoen.2016.02.033|wOEhLO9x_GYeDnTwETmIuFqyWgnp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60:C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.0|0.662|15.59|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227419|wOHU_I2GrEl-yilg_xzuIY1EqrmG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|214.0|0.63|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO']|bulk|https://doi.org/10.1039/c5ta01898f|wO_VV0TCFl2_NGuJF_cUUSrweCh_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO', 'Al']? The composition of the perovskite layer is MAPbI3. -Br2C4H21I10N7Pb4|Pb4C4N7H21I10Br2|FA0.75MA0.25PbBr0.5I2.5||0.83|97.0|0.4|3.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2019.109995|wObCNwPAifzXQjKFq4DfCaD2QNw5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|wOhswAxK5_ar_KeC25CtgHZ3Vct4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|122.1|0.452|4.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.solener.2018.05.049|wOxm_winZKfsVmEc1tzZuIJb_Ygn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.5460001648517447|0.985|238.5|0.7709999999999999|18.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01978|wOy5SVvKrtcWb-PMh3i_Chf64Jym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.08|189.97|0.707|14.5|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||wP804sGdrelY-KKqKPLa_3zalejz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|211.8|0.57|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|wPBh43_F6zHR2UhrDqHcMfEhDvTo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|0.94|206.0|0.65|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Flu', 'Au']|['Triazine-Flu']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta07369c|wPI4grFs3xuyUBAKEwWB0jo4VJG9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Triazine-Flu', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|162.36|0.743|12.81|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|wPU5k_NXKpqmsAbGn4KsCGGFxukP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1002/adma.201804637|wPfE4r_FyrcXwysrIZgBFos4VfRJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|235.6|0.68|16.34|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12140k|wPi6K0XX4dLD3Ph1sEBAz1P9RUlT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|wPlL_fKoj5hqY0YhE9u0stQPiKFX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.14|157.89999999999998|0.79|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']|['IEICO-4F', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5124539|wPxVdW9Jim-3t78iXQ-XFn-z8aS0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'IEICO-4F', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.94|212.0|0.61|12.17|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|wPz8CJ9FKGuw_CBA3Nrsw4UewuZz|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.1|235.3|0.7|18.05|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|wQ2T_V8NMM-iPlwLaU0Gd3SxiWSB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|186.2|0.687|14.1|['SLG', 'ITO', 'SnO2-np', 'PbF2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PbF2']|bulk|https://doi.org/10.1039/c8nr05504a|wQ6-Zbt3x-_RBAxzlMf8w21gnVv7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PbF2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|215.6|0.7|15.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/aenm.201502027|wQ9VonetX343pnU7AYiBexAgrChJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.02|156.9|0.6|9.73|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nanocubes', 'BCP', 'Ag', 'MoO3']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41598-017-11193-1|wQF2DKV2UnV4xjtvDvLMgOYkffrp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nanocubes', 'BCP', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -C20F2H46I16N6Pb5|Pb5C20N6H46I16F2|(4FPEA)2MA4Pb5I16||||||['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PTAA']|['PCBM-60', 'PEI']|2D|https://doi.org/10.1002/adma.201901673|wQOxNT6LnOJ735gwV0ZygyeLBypv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is (4FPEA)2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.85|179.4|0.46|6.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cnma.201800064|wQRpP8idOR_VS_fuYLRcBab8Cpw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.207|143.2|0.753|13.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|wQaYX7FaftlqkffB_ldVbBjW8S3d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.855|133.2|0.5329999999999999|6.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|wQueiuSPMQiLshK8NYjeAUbps6qJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|228.4|0.67|14.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|wQvt9NUrFfbRmZjVbQw9D_xxORop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|163.5|0.53|7.75|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw', 'TiO2-c']|bulk|https://doi.org/10.1016/j.mssp.2018.10.034|wR54DjE2FwL6FXkmw83IJIOSEcwO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.0|0.78|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C7TC02652H|wRB4BkajRdUVIl6IAFrfrnLI-FEo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|191.0|0.51|9.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']|['C5PcH2', 'MoOx']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.01.027|wRVy2e73asLkdZTFevDvssJ9T5OE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C5PcH2', 'MoOx', 'Au']? The composition of the perovskite layer is MAPbI3. -LaS3Y|LaYS3|LaYS3|2.000000213262283|0.0|0.0||0.0|['Quartz', 'TaN', 'TaS2', 'Perovskite', 'CdS', 'ITO']|['none']|['CdS']|bulk|https://doi.org/10.1021/acs.chemmater.9b00478|wR_ZenVB1GnH0G2n2lYgYvI75jCj|a perovskite solar cell with the following device stack: ['Quartz', 'TaN', 'TaS2', 'Perovskite', 'CdS', 'ITO']? The composition of the perovskite layer is LaYS3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.979|190.8|0.555|10.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2015.10.023|wRa1MqEN3RngZCon7IMABRHCcvLA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|175.0|0.68|11.8|['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Au-np']|bulk|https://doi.org/10.1002/aenm.201500038|wRe1s0fUHjYK3LI-muqH-OhVA1CK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Au-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4.0I13||1.14|192.3|0.68|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201903293|wRqT2c0JMGApBNIq0aIWdgYjeQSj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4.0I13. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.12|234.1|0.74|19.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|wRwEJLgNBEz7B7AetO3UT9Akp65M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.05|203.3|0.764|16.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900183|wS-svbF3IuqqWKbhpbU7zJ9HEzoI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|176.5|0.782|12.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee01138d|wS1suHZzCLOpYgNq8fOgNjck7xn2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|225.0|0.6779999999999999|16.97|['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PTAA']|['PCBM-60']|bulk|https://doi.org/10.1039/c7ta04995a|wSSD6qWj0gAV6GJfJnz8RzlHf6vG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PTAA', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|236.5|0.763|20.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.068|wSV-aBQUYc7Huykgr4y5s0_d4KSy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.0|0.74|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201801508|wSXexSmGBENQy_C_shxJchJYun5D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|226.0|0.731|17.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04003|wSa76lvTa1_kQkKZjGZuA_wbeYMt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|221.7|0.7979999999999999|19.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|wSiVPn3-BaG0ezW3RFKzu0NZoLw5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b00895|wSmxawFtYPQCrNUhBE_O9FN3thYu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.0|0.6|14.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.028|wSo3pU_JafaiBf4Xvjih2iP2lGZ6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|192.0|0.58|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2017.07.019|wSv8aY4mdIUG3IDBz1vderi9cxQe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|229.1|0.7140000000000001|16.37|['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Ag-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c7ra13744c|wT1UcfeklbES_O0ylz0557XAC4h_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Ag-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C20H117I57N23Pb20|Pb20C20N23H117I57Br3|FA0.15MA0.85PbBr0.15I2.85||1.1|223.2|0.7490000000000001|18.4|['SLG', 'ITO', 'Ag-np; NiO-c', 'Perovskite', 'Poly(9-vinylcarbazole)', 'PCBM-60', 'AgAl']|['Ag-np; NiO-c']|['Poly(9-vinylcarbazole)', 'PCBM-60']|bulk|https://doi.org/10.1016/j.electacta.2019.06.102|wT4EeMSEQPegm0txkgkLfDdHPCtL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ag-np; NiO-c', 'Perovskite', 'Poly(9-vinylcarbazole)', 'PCBM-60', 'AgAl']? The composition of the perovskite layer is FA0.15MA0.85PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|186.6|0.73|11.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201700105|wT7VA1MloqQnJk7aANlgHVOeyVLj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|141.0|0.58|6.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6tc05189h|wTC5xfrppRyNnjd58T6WdKIVYKNI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|||||5.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|wTIWR3R_RwO9Et26nTZEHriMpuQT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|212.4|0.741|17.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|wTQ0rEPFBS_7YteJq9k1EaqCAhid|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.026|163.4|0.585|9.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.0c06211|wTQ68bVWVFc4l6K6TvigPwLQID6x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H491I253N174Pb100|Cs5Pb100C95N174H491I253Br47|Cs0.05FA0.79MA0.16PbBr0.47I2.53||1.12|230.0|0.7070000000000001|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201900830|wTRVFpiPubf-MB1nh3kiOFXT7Bge|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.738|96.5|0.52|3.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ssc.2017.12.022|wTS46Px7cLKiaqgoGga9K22d8Ij8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|215.0|0.59|10.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2018.08.013|wTjPReRCrUisTnMtJ1t8lFO32MCL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|173.29999999999998|0.63|9.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1142/S1793292018501023|wTjre3VV3DuAcDXg6ASCrCRSIbMk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|138.5|0.67|7.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00514|wTqaXjX09_UijtrewuTMCi8qu2rZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|250.0|0.51|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201900481|wTst1A1ARUfcXOFddU-KJzQnKasq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|240.3|0.6459999999999999|14.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.05.055|wTz-L5i42L45CQhMYPDHezFF6a9G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.97|86.89999999999999|0.607|5.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|wU0GGnQwdoYmj7GSmCHWMzGYuueG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.99|171.0|0.56|9.1|['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01755f|wU1kmlBPyOv9g4WhEPxEBu81QJZl|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|84.0|0.44|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c3cc44177f|wUJ1HbOAf0TMu_aE5S3Mqss78bk0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|239.9|0.76|20.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['P(VDF-TrFE)', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201902222|wUNIqAJsjLh3jeWT5AZ5LzMEljeT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P(VDF-TrFE)', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.02|211.0|0.68|14.8|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|wUZ985Itp_qpSslocuOEfIT4TgvO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.2|0.68|13.75|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b12637|wUeLkMeFWaiWx3Cc2nRm_x5QVx9a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.28|150.0|0.77|14.1|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-np', 'Sb']|['NiMgLiO']|['TiO2-np']|bulk|https://doi.org/10.1021/acsami.9b17464|wUeZhPLhA23ZFtTMqIHsMLvB6DJX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'TiO2-np', 'Sb']? The composition of the perovskite layer is CsPbBrI2. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625|0.74|165.5|0.349|4.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1039/c9ra02036e|wUiDmVx3d2xOUcfXOVXRbiC8gnMA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|179.0|0.7|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra01532e|wUxV69tw8wdiNDAY1KckLXLN_T5R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.058|215.8|0.64|14.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-MeFl', 'MoOx', 'Al']|['EHCz-MeFl']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|wUyedJ3Tg3lOnSPWxdXpNX9EHxPF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'EHCz-MeFl', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -Br2400C1804Cs95H9324I3600N3304Pb2000Rb100|Cs95Rb100Pb2000C1804N3304H9324I3600Br2400|Cs0.0475FA0.75MA0.152Rb0.05PbBr1.2I1.8|1.780000189803432|1.16|179.8|0.748|15.59||['PC60BM/Rh']|['ITO', 'PTAA']|not processed|https://doi.org/10.1002/solr.202000740|wV9HdwwhO8DzB5tHuLkZaElba_j6|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.0475FA0.75MA0.152Rb0.05PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|213.9|0.81|18.54|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']|['JY6']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc04606e|wVGs9xsZB4XNGdDLkpJ2MrgTCdDP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'JY6', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.400000255914739|0.53|6.2|0.4|0.13|['SLG', 'FTO', 'AZO-np', 'Perovskite', 'PTB7', 'MoO3', 'Al']|['PTB9']|['AZO-np']|not processed|https://doi.org/10.1007/s13204-018-0744-6|wVLhmrrlNTDlB47WNdJHD3aZAi5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'AZO-np', 'Perovskite', 'PTB7', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|165.0|0.67|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|wVOCZlnX4gNxjGs3aIj4yLHDI3gM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|108.6|0.51|5.7|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1007/s40843-017-9130-x|wVSRxjyCvtLpnQPNlQep9cfOBjhV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br100Cs99I200Pb100Rb|Cs99RbPb100I200Br100|Cs0.99Rb0.01PbBrI2|1.900000202599169|1.32|162.5|0.8|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.202000164|wVTviHd7IFZbDHaE8IsVoWNDgBlD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is Cs0.99Rb0.01PbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|202.8|||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.237|wVk_sc0pMbxJgnWgOQH5igcxYEbo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|0.95|149.0|0.7070000000000001|10.02|['SLG', 'ITO', 'BTF1', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['BTF1']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05484j|wVngYEOy1JAbtNHBEMZvn112xj-l|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'BTF1', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|173.0|0.733|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1039/c5nr07457f|wVp-U-PBi0m_-djmSAT6BGkoIaVp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|160.0|0.53|8.1|['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-np']|bulk|https://doi.org/10.1016/j.jpowsour.2014.12.104|wWCqCFCbxkZO8MZzhfzNSYzpIkHh|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-c', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.0|217.0|0.75|16.4|['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']|['TAPC']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta03454d|wWExGk78essC8YEHloIHEJyXuGoI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C2H12I3N2Pb2|Pb2C2N2H12I3Br3|MAPbBr1.5I1.5||1.11|118.5|0.6990000000000001|9.18|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|wW_wBwwTgDIUlBj7I1AxtcCd27SS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBr1.5I1.5. -Br45C100Cs5H517I255N183Pb100|Cs5Pb100C100N183H517I255Br45|Cs0.05FA0.83MA0.17PbBr0.45I2.55||1.15|219.1|0.74|18.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.010|wWt8CcxKyzhQ4NG5AnLaZv0F-nYO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.45I2.55. -Br2C2Cl2CuH12N2|CuC2N2H12Br2Cl2|MA2CuBr2Cl2|2.12000022605802|0.256|2.16|0.32|0.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.inorgchem.5b01896|wWxvjDSEAZUhZ__OgUzKs-jQ7KuB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2CuBr2Cl2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|150.0|0.53|7.95|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acs.jpcc.9b10407|wX7HevrmF3mPCFfm9WN4Hj-Zxm69|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.067|185.7|0.635|12.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CJ-02', 'Au']|['CJ-02']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b00702|wXC8mhR9P7VIzxs6zuAmzH2x3sQF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CJ-02', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.0|0.7290000000000001|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c5cc05879a|wXKG3m0ACp03rjVBYiJsH00ckvpV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br900C1900Cs100H9823I5100N3477Pb2000|Cs100Pb2000C1900N3477H9823I5100Br900|Cs0.05FA0.7885MA0.1615PbBr0.45I2.55||1.15|221.0|0.81|20.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']|['PVP', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b00555|wXLHY2lH3dhUshrS3KLE3KX-rCf1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PVP', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|208.2|0.59|11.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.solmat.2019.109927|wXPBVn0eCv5GtwrfWghWbNToSHnA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -Br200C1900Cs100H9823I1800N3477Pb2000|Cs100Pb2000C1900N3477H9823I1800Br200|Cs0.05FA0.7885MA0.1615PbBr0.1I0.9||1.06|242.8|0.735|18.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2020.105805|wXRNe781ZDccrz1JpekT9cYb1TSE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.1I0.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8170000000000001|84.65|0.607|3.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta08038g|wXVvf6Qdfi5zGU3Qpm6mtpkqbefB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|108.28|0.55|9.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ee03664f|wXh9WKQJkhY8o6ShGvLjLsImvSIT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|178.0|0.68|11.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c7sc05095j|wXlHSrWHWEv3AN7EkO1T-urmX0nw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.997|151.0|0.7390000000000001|11.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jcis.2017.09.108|wXqznZWYPwTdEWTl1jMvufOGcmza|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H27I15N8Pb5|Pb5C5N8H27I15|FA0.6MA0.4PbI3||0.925|170.10000000000002|0.633|9.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1016/j.optmat.2018.07.072|wXsYXMRBeiR2MZ2hAVu1Dz0xle8S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is FA0.6MA0.4PbI3. -C5H30I13N7Pb4|Pb4C5N7H30I13|GUMA4Pb4I13||0.96|156.0|0.6459999999999999|9.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1039/c8ta06976j|wY0aZpNzNj0DhHKIR3s50w_6WWFx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is GUMA4Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||7.7|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2732223|wY6QY-Lj3SmS1qjc6jnsmUcNda75|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Sn|CsSnI3|CsSnI3|1.3000001386204838|0.25|240.0|0.386|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.7b00171|wY6mv2Zhc9wx4Lg59zlKz5mjIl8p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsSnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.072|216.09000000000003|0.6629999999999999|15.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']|['CuP']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01904|wYLet6EJbOWyLr-rbMNQ05yabKOd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuP', 'Au']? The composition of the perovskite layer is MAPbI3. -C91Cs9H546I300N91Pb100|Cs9Pb100C91N91H546I300|Cs0.09MA0.91PbI3|1.5900001695435149|1.05|224.2|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra28501e|wYSwzPYUEGpz2sZLmfKrVUKFFsIw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09MA0.91PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.99|217.0|0.7070000000000001|15.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']|['NiO-c']|['ZnO-np']|bulk|https://doi.org/10.1038/NNANO.2015.230|wYW77XFClAT1ZtUZqR-DwaZpC39Z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.765|190.8|0.562|9.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|wYZB1HTX4MkAGP4iURj4ILr9OA0m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.0|0.68|14.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.039|wYjQCaPG_aGIf-uUvt8Yvlf_Vs9g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7||1.146|230.6|0.7979999999999999|19.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']|['PbS-QDs', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.isci.2019.100762|wYkRrPqwywXU8MqX3bf0SPsz47tb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PbS-QDs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|181.8|0.52|8.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01909|wYsxOcn-O9aHNh4AQOSsy233g-uF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|211.0|0.76|15.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|wZ9xCMKE1-P0iSL1fNuY6pkLJbST|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|224.8|0.63|15.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02924|wZCF8XguiWGelpOViEKqDoyz3TzM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C1576Cs8H9380I249N1652Pb100|Cs8Pb100C1576N1652H9380I249Br51|Cs0.08FA0.76MA15PbBr0.51I2.49|1.6200001727424491|0.88|194.0|0.49|8.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-017-8094-9|wZFCDQ9WRcRYmvcDrDKopIXlZb0V|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.76MA15PbBr0.51I2.49. -C19CsH114I60N19Pb20|CsPb20C19N19H114I60|Cs0.05MA0.95PbI3||1.03|211.4|0.7909999999999999|17.22|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201801010|wZHB-MNx8516At2cMi6ndxKhQAIJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05MA0.95PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.9|0.703|15.63|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']|['NiO']|['PCBM-60', 'PEOz']|bulk|https://doi.org/10.1016/j.mtener.2016.11.001|wZRnFvZEpYZBaYM0xItgp2pj3gmL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'PEOz', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|0.894|78.7|0.53|3.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|wZUbs9hu6vK2jzRpWulN3bAvlxnT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.13|217.2|0.735|18.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|wZY2m6YRwRZhTAPBt5PJ8FV-dfya|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|92.0|0.62|5.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cc07062k|wZcQRyvgKNBAgA_LAwIrDjQ3q9JH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|178.5|0.727|12.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S0218625X19500197|wZwKnyeKdhy5fd9vvlqb0RawzKPP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|212.1|0.45|9.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07511|wZxGEVfy62ubMOPHqOK2WNVYgud8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|140.0|0.7|9.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900138|wZxil8a5FkUmRlvr79S-FzYubG6J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|1.088|205.6|0.685|15.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b15008|w_BiSuEpVcjL14H7xWCoTK8EGvio|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.0|0.7240000000000001|16.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b01136|w_JiFjvnWzG_G4V4iopr8bN8suO0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|112.9|0.564|5.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5nr01433f|w_QtX_BrZyKsg3-ODn6G7UjJpWz8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C80Cl9Cs20H400I246N160Pb100|Cs20Pb100C80N160H400I246Br45Cl9|Cs0.2FA0.8PbBr0.45Cl0.09I2.46|1.6600001770076949|1.2|207.8|0.814|20.31||['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.202107359|w_cHVRdx1RcrHhUEmos7X_vHBxkk|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.45Cl0.09I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.915|221.0|0.57|11.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Co3O4-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Co3O4-mp']|bulk|https://doi.org/10.1039/c7nr08289d|w_eXoIIsLYwVToO2AiRVxvLQhBM0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Co3O4-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.909|44.0|0.563|2.25|['SLG', 'ITO', 'MoO3', 'CH3NH3PbI3', 'C60', 'TmPyPB', 'Ag']|['MoO3']|['C60', 'TmTyPB']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|w_wU_8sb51OThwhsFYFYzGY8iHmr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'CH3NH3PbI3', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.196|236.7|0.774|21.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|wa1zrYgjM5-Ze1msn_CmacFniIWj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|180.6|0.66|12.2|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.8b00803|wa5kTDk8d8TkwZ3URMAUsKdwZz4s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|194.0|0.65|13.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee03806e|waAVZNjbGlDHbDXcM14vkzpXvTKB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.05|179.8|0.7|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.141|waGR_s-p8ngMjxXwerQG9xOthnQt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|217.6|0.58|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']|['MoOx', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04625|waM87_QNnC7O8f3dYxwC-ojvX4xL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.82|86.5|0.579|4.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201600591|waOy2Zh5JoyHTZmpFqKrdPzvnWuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.092|225.8|0.763|18.81|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.tsf.2018.08.015|waRN1k0ZfhhMwfTZ42-YyX8j1liU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|231.7|0.59|10.79|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.04.041|waWAktiRRxI9ZZ7S3qXFaMOcuyLs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|199.0|0.648|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5nr08935b|waZrppHS_6mWdz-IGIMpQvBNvHeT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|195.0|0.736|14.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.105573|wa_5A6qfZUom72qLfMGUJL51PXj2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|196.6|0.635|14.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|waeyRn8ihTXbxZ7nJtCsFRsV7rAG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C100H503I291N197Pb100|Pb100C100N197H503I291Br9|FA0.97MA0.03PbBr0.09I2.91||1.08|244.4|0.7859999999999999|20.79|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900198|waiqqbpJwRRqOil_X_pZdU5IquYi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.97MA0.03PbBr0.09I2.91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']|['H101']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2016.05.122|wajmOQQA_8nqlm3c0IJdgAHtpO32|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'H101', 'Au']? The composition of the perovskite layer is MAPbI3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|1.08|122.0|0.66|8.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|wavbim9hFxrWLqaUbPZrYlLIAEfi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.046|214.1|0.667|14.94|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|wbCUfJVSKURDeKtBuMBSdG6Z5hkR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|159.8|0.63|9.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1166/jnn.2018.14904|wbTUgCYdSNrBpeXy_8YjM25uhc2M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.09|224.0|0.72|17.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201501320|wbZbm_gXJJgSl-B5wnia9gJ6m7qE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.4860001584538762|1.08|219.2|0.73|17.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta01203a|wbayTPfe89ff4bZtUdjdDVKRkR53|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|188.6|0.5820000000000001|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201900278|wbg-yFPcI-UoaQ51l3Tx_VFsc0a3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.434|215.03|0.488|4.55|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||wbkFo_e6HUMWbF_oLsI-ToUG1jr0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Ag20Bi20CsI60|CsAg20Bi20I60|Cs0.15Ag3Bi3I9|1.8600001983339236|0.72|68.7|0.544|3.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|wbkwrSz7jJl916FHcFaKDTUdQ9h5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Cs0.15Ag3Bi3I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|143.3|0.604|8.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta04790d|wbtG_J_H_tcxEKvgYv6jRSA6mAxj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb3Sn2|Pb3Sn2C5N5H30I15|MAPb0.6Sn0.4I3||0.82|243.4|0.748|14.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|wbuhKXd6bp_PRnNovlEZ-bcnSL1q|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.04|196.2|0.73|15.24|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO']|bulk|https://doi.org/10.1016/j.electacta.2018.08.117|wbveg6SA4KacEIpd0W9oXcEv-V8U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C50H300I41N50Pb50|Pb50C50N50H300I41Br9|MAPbBr0.18I0.82|1.6600001770076949|1.08|170.0|0.74|14.0||['Spiro-MeOTAD']|['SnO2', 'PCBM-60']|bulk|https://doi.org/10.1039/d1se01692j|wc4mBqtOXZ4Muwid1yqnsEH4jRIL|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.18I0.82. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.3|0.72|17.23|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta12140k|wcAMoO9ej-_YdgshXyB7ur4dd-5v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|213.3|0.73|15.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|wcBd1Om7I-WVivZzEX9gGNLkS964|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.06|6.0|0.209|0.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F-PDI', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['F-PDI', 'ZnO-np']|bulk|https://doi.org/10.1039/c7ta02617j|wcCKCLef8gR3HAlRuk1cTk_9WVyo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F-PDI', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|172.8|0.706|12.18|['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|wcJjGeYoZ79VfRWKHM60uMSMD3XO|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|187.9|0.64|12.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|wcJzpA3NiZG87zDTfnhPtaa6W4nR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|207.9|0.5579999999999999|10.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'LiF', 'Al']|['PEDOT:PSS']|['C70', 'LiF']|bulk|https://doi.org/10.1007/s11426-016-0115-x|wcO0f6ZJHNYYUFxsqVVdMGc-JnLi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.883|159.1|0.483|6.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/26/6/068803|wcYV5yDvheiOcZbond2npCzFUm0H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|185.0|0.73|13.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4nr04007d|wceFsPa3aBo84SwVKv91vn-Z2kXg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|220.4|0.765|17.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-018-2685-6|wchsawINWZtcM1SBdotL8btYQna_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13||1.13|137.0|0.605|9.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta12476k|wchzBlxVDdtTN89CTmfFMGEEV1JO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.89|160.0|0.74|10.5|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201400960|wcoSt137_seKrhGgDzH7iq_O7noP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|181.8|0.68|11.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-019-01258-4|wd06D6SsIWJSrA8OwP2s20dVR2LV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C10H51I27N19Pb10|Pb10C10N19H51I27Br2|FA0.9MA0.1PbBr0.2I2.7||1.08|231.8|0.733|18.02|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CI-GO', 'PTAA', 'Au']|['CI-GO', 'PTAA']|['SnO2-np']|bulk|https://doi.org/10.1126/science.aax8018|wd7W5JWMMwSAJjZmbVMvneO-lmg9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'CI-GO', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.2I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|240.1|0.6629999999999999|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile', 'Ag']|['2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.002|wd9RgyIP_lrTnlYBl1o9e1_5ije-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2′,3′-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb20|Cs2Pb20C18N33H93I50Br10|Cs0.1FA0.75MA0.15PbBr0.5I2.5|1.5900001695435149|0.98|123.7|0.69|8.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|wdBDbE2xwk0rJfVALlON1nIEMxNb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|230.0|0.67|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|wdKckitjjnBpSasvp0dacq-3uSuZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|162.39999999999998|0.55|9.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.05.007|wdZCZBRq7QXBuBWr2IplGzT4LT14|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.137|242.0|0.807|21.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|wdkYTmD7rjsvUgbWOXYOGo_2ih1S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|220.2|0.698|15.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']|['cyclopenta[2,1-b; 3,4-b′]dithiophene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr06095a|wdlzlaTA6NRKuyJxTnNQGdNJIW99|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'cyclopenta[2,1-b; 3,4-b′]dithiophene', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|166.6|0.72|10.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5cp02705e|wdvNK2xO5nRc5JIjfMNgvV1WlmNJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.6|53.0|0.364|1.16|['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/c5ta01532d|wdyIjdHwc8gHYbfyRIRIxKSj4k7K|a perovskite solar cell with the following device stack: ['Steel', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.94|93.1|0.5|4.38|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.joule.2018.05.004|wdza6Ej5A9tt0H-WzCQZ43jH5hx1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|220.0|0.682|15.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10854-018-00628-8|we1OXcHQ0VcUzxc_1Xiktn3LrO7V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.06|165.7|0.63|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y1', 'Au']|['Y1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.7b01434|weNAaIBUrfYzl_Jh6A3a0Csv_rTG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Y1', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3CsPb|CsPbBr3|CsPbBr3||1.3|81.8|0.765|8.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']|['CsSnBr3-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.091|wekDaROfIB6ju5fPwWjjRuQCQyYe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CsSnBr3-QDs', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -C12H30I4N2Pb|PbC12N2H30I4|HA2PbI4|2.3700002527158053|0.53|26.5|0.357|0.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1039/c9ta01569h|wekihG16M5FLPd9qJ01bq7Rl8jqp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is HA2PbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|137.0|0.38|5.1|['PET', 'ITO', 'PEDOT:PSS', '3-aminopropanoic acid-SAM', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS', '3-aminopropanoic acid-SAM']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta07008b|weqYB8SZAoE_9ydwWFIn_bwkjGvH|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', '3-aminopropanoic acid-SAM', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|202.5|0.532|9.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1002/cphc.201500456|wetFUofE9kLy7pmnV1kM770HbovY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.96|261.4|0.4679999999999999|11.74|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|wf2UYQTQRY9mjjyaV_WYcpqtNo6n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|186.0|0.55|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc09556a|wf80wgnKTQhivO0ZawcyagVJUnYs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|74.80000000000001|0.37|1.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcrysgro.2018.03.030|wf9gMB7KzG0-piEUG-LA5a7w3FGm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|243.0|0.737|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|wfWoPsGf7caau8xRUFWGp8ApjMea|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.96|211.0|0.68|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.01.132|wfX1Bg7wfFiru_WNkIk2amLkD9Y_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|175.0|0.55|9.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|wfdO6A90ar0Gyv40q10RFjBLneqj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.036|231.3|0.679|15.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.01.006|wffbqikpwwHXs8F0kd39wFzNBNfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|193.7|0.7|14.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600493|wg16X_2DXQSk7tFApRl8P3Hs1tOK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.0|0.7559999999999999|16.97|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']|['NiO-c']|['C60']|bulk|https://doi.org/10.1002/adma.201600619|wg1UBymH7d-WmYtcL1KBwvrxUKQl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|197.0|0.64|12.2|['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Polystyrene-ns', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201700418|wgGNNoihZlyzwGI50Hr7NyfnTmVe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Polystyrene-ns', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C25H127I75N48Pb25|Pb25C25N48H127I75|FA0.92MA0.08PbI3||1.03|226.5|0.72|16.98|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s10854-018-9437-x|wgHe6SmvqXj1Ogmey_pyJIIs7QTz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.92MA0.08PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.5|0.612|11.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.egypro.2017.03.1025|wgqp0HXg_rOnSmwq3clcHOrAOmgE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.627000173488867|0.945|159.8|0.581|8.77|['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Black P-QDs']|bulk|https://doi.org/10.1039/c8ta01408f|whHMzwjZi0L5Y2oScNmGRE-BCRg6|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.804|166.0|0.6|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra00066a|whN6iD0fniWMLj4aOxUb1noUakxQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.922|185.8|0.6940000000000001|11.84|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.5b06444|whNPVRgeNpIukhaQoX3mlZ6jdaGB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|217.4|0.64|13.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2019.04.127|whZpJ_nf-qe4xlIHGDfLnLUaYBj6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.12|230.4|0.8|20.65||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.cej.2021.130685|whby32fyrQ4q6CIGaCiRxeCDyH6b|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.935|178.2|0.7879999999999999|13.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1039/c6ta09125c|whissDcpu1UCU58xfmNDsxtYyxt7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|196.7|0.775|15.66|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08565j|whjA3UA5ppirSYjgRe5kJYeHVuCp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|195.0|0.7859999999999999|15.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b18745|whmxcjoDPaPqjmQbM8NM3IRY0mMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|121.9|0.59|5.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201901186|wht-gWCq_P-5t7WkL_3F5TeIdBim|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.4|0.748|17.45|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201902898|wi2g5pm9TnnerkfJAJAsWmsGRqxc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br8Cs4I4Pb3Sn|Cs4Pb3SnI4Br8|CsPb0.75Sn0.25Br2I||1.21|125.7|0.758|11.1|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1002/aenm.201800525|wi83ST50l_fvnzt9fUrrPJC-E0r7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPb0.75Sn0.25Br2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|189.2|0.48|8.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1142/S1793604718500807|wi8t3knM8HRfEDnHab1SE9eBbD8z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|232.3|0.75|18.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.01.105|wiJpP2kNT58iDTeWaR-Toyys1VRU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.98|187.7|0.64|11.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00893c|wiOC29-Td-6S516xv_vKARzc6yjT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C8H32I16N4Pb5|Pb5C8N4H32I16|(PEI)2MA4Pb5I16|1.8000001919360546|1.16|102.2|0.59|6.98|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.chemmater.6b00711|wiV8WyC0z1zMcIjnEIgVQS5bjtmn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is (PEI)2MA4Pb5I16. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.859000198227292|1.231|136.86|0.622|10.48|['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']|['2PACz']|['C60', 'BCP']|bulk||wiVjdg05NG2iQPawtutBNC4dpG1b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '2PACz', 'Perovskite', 'C60', 'SnO2', 'Cu']? The composition of the perovskite layer is FAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||0.94|167.0|0.696|10.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.spmi.2018.03.081|wiWqVcId_3wmqksAvodJqyuCdnkP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|187.0|0.76|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta06452g|wi_PmxA9iJnh3HxPZKR1D2XxE-wR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|85.0|0.625|4.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|wib3dYj2154T2ZsH4699vm1gwlkm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|220.0|0.76|16.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEG', 'Spiro-MeOTAD', 'Ag']|['PEG', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2017.12.135|wibTVHMb6qKb6GZeXIu6u7AtLACF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEG', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.32|153.4|0.795|16.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.202000691|wibsMYDL9eqPH-BQiI3BncipA8gl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|220.3|0.632|14.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7tc03845c|wifFZBDhjO7fKVe3QxufjrhPMEXx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.500000159946712|1.1|208.7|0.731|16.75|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152887|wifJv1UfJkhnDNCZGhRyhcnerp3g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.917|173.2|0.526|8.35|['SLG', 'ITO', 'sGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['sGO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05955a|wihRTQxguQ8kQUftIyQ1F97UN8EK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'sGO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.117|224.7|0.7|17.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.047|wimPT2pzuQ7pf-u5gw6h2h8E_hL5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|179.5|0.794|13.65|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|wimcipdcm9r2XhYJiPoEzaE2mQae|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C15Cs5H75I42N30Pb20|Cs5Pb20C15N30H75I42Br18|Cs0.25FA0.75PbBr0.9I2.1|1.7290001843652438|1.207|184.8|0.775|17.29||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|wj2nybNg0drl0ZK9vo5hryNwQqRH|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.9I2.1. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.18|59.0|0.33|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201901601|wjO2m6g8sA9I3v0WDImxPknGPHoM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|210.0|0.7659999999999999|17.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c5ee01720c|wjQ4MAuv81_2hqswq0gDrhk1lca6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|187.64|0.7|13.51|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta04919j|wjdapRcaYHmqfbjnJAGpW5Ek6zqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|230.2|0.701|16.61|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.09.050|wjjyEWkkOw4_pazo9bVXUr6u8nu5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|221.4|0.66|13.99|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-017-9096-2|wjtxwqZwNfJoqedbbA35qltKEp53|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.435|129.4|0.352|1.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/coatings5040646|wk5jbW49tirpI30HvcareW5EATo1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.83|48.5|0.2239999999999999|0.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphite', 'FTO', 'SLG']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2014.10.017|wk6zJs5LnRyfQrNP5fAfZIkOLoXp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Graphite', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.063|217.0|0.762|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|wk9u5Y6tMvhApjMX2Rb4Rnm6RIe2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -Br5C196Cs4H1100I595N272Pb200|Cs4Pb200C196N272H1100I595Br5|Cs0.02FA0.38MA0.6PbBr0.025I2.975||0.16|57.3|0.335|0.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201809194|wkB-oGZVVK6Iy_Ha-7pU5FIAwTs9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is Cs0.02FA0.38MA0.6PbBr0.025I2.975. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|204.2|0.68|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b04894|wkIQalZ3wHD-PesU_aObN9sDEmL2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.969|182.0|0.695|12.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-8', 'Au']|['PEH-8']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6sc01478j|wkQ1nAuXjuc8NbnFDTRg9k3AJ6BP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-8', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201700226|wkd9wVCo8qF8qSZY1d03PhiP8ypE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.05|222.0|0.73|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']|['S,N-heteropentacene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201501510|wkkK8KrMJUiGn-2NhOgV1vVeF503|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.995|151.0|0.69|10.4|['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C70']|bulk|https://doi.org/10.1002/cssc.201600051|wkpwH77swhw9kyviko2wcN94rM2H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C70', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|192.0|0.57|10.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1137/130934258|wkuVeqQghviaAhsp6Ogah22uH2UW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|215.0|0.81|18.8|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ta01606c|wl-He0noxR0sOaxl-TGLxEVLZZbp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.0|243.0|0.737|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|wl7HAe-ZvF5kxNJ5nCAkNVQWX1wU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|136.9|0.64|7.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cplett.2016.09.046|wlfAdyWDVYP-DA-fvYyxOZYOLkex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.03|223.5|0.74|17.07|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Cu9S5-np', 'Au']|['Spiro-MeOTAD', 'Cu9S5-np']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b08888|wli7bgUuBXwvpOzUmrjlJ4xAyoGT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Cu9S5-np', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.2|224.3|0.78|20.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|wloIExiQtiAsxbiWzSgGtoy9tjLO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -Br90C180Cs20H927I510N333Pb200|Cs20Pb200C180N333H927I510Br90|Cs0.1FA0.765MA0.135PbBr0.45I2.55|1.6110001717827689|1.061|212.8|0.696|15.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp08022g|wlr4xmm_09hL7SrMiEXEqjgEmU2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.765MA0.135PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|176.0|0.71|10.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2017.09.062|wltVmpvdZwgf9ouMFW8sCCPcAAyt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||0.79|158.2|0.639|9.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|wmANhWSMZK6tvBKt80_zMDb_PL87|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br102C191Cs10H987I500N350Pb200|Cs10Pb200C191N350H987I500Br102|Cs0.05FA0.795MA0.16PbBr0.51I2.5||1.0|160.0|0.275|4.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.051|wmCTGZb7fRPTrhz3UrqsvqJ6m5mM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.795MA0.16PbBr0.51I2.5. -Br4C95Cs5H520I296N145Pb100|Cs5Pb100C95N145H520I296Br4|Cs0.05FA0.5MA0.45PbBr0.04I2.96||1.138|229.6|0.72|18.82|['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'B2Cat2']|bulk|https://doi.org/10.1002/solr.201900217|wmOy5ervgXhc4dXu-qdD8eLkGeKt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'B2Cat2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.5MA0.45PbBr0.04I2.96. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.1|206.0|0.797|18.06|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-TXA', 'MoO3', 'Ag']|['PPyra-TXA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|wmV4pyO9gKIbC3a0DzmrWx7yq93P|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-TXA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br65C91Cs9H488I235N149Pb100|Cs9Pb100C91N149H488I235Br65|Cs0.09FA0.58MA0.33PbBr0.65I2.35|1.5900001695435149|1.1|228.0|0.73|18.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903654|wmkUhUJClsr3gGxKNl6CqHq_oXHY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.09FA0.58MA0.33PbBr0.65I2.35. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|172.0|0.52|9.04|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/admi.201600122|wmnUZ_Q2m_LfQ5EOt8hksdYXa_Ch|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|136.5|0.7|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2014.12.022|wmxnKQr4T_a2qY8h3qSwDf_Se1w-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|176.70000000000002|0.63|11.02|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['NiO-c']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/acsomega.7b00538|wn2e39eNrxPH4LARQKcEg0q_W5wn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.979|194.7|0.529|10.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s10853-019-04199-9|wn3M4eUuMTS5VD-IE8v38grolVq1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.78|0.72|16.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|wn68E0aiqnb-PTBj0OQ31sRtAlMU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|202.5|0.79|17.59|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b16649|wn6tIowvsS0ZsKEeTu53ZpUwb_3o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|186.2|0.7509999999999999|15.71|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|wn8gX_hEAKR80v2wU-IEnWKRf4hs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|213.0|0.66|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature12340|wnNMWBZYlTYlXBb8l1Y1LNbjz0Nk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|225.0|0.79|18.96|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-np']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta08819e|wnO1SXckoy4fLLHPUajbCyuLLlfe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.72|0.139999999999999|0.3|0.0|['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']|['Cu2O']|['ZnO-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.024|wnaAqqAi1mO9ab4NCweJPpl0659G|a perovskite solar cell with the following device stack: ['ITO', 'ZnO-c', 'Perovskite', 'Cu2O', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.0|0.768|18.3|['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/ncomms8747|wndpz5K_lMoZ27v5O8MxEv1vkwPx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|178.5|0.693|13.37|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.03.164|wnhTMWM_Ut6BwTDN4mwY66-3RYpB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.86|155.8|0.5|6.76|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b02784|wnjn6b76jeVbDq9LqcFBmNneGCvh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.122|221.4|0.711|17.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|wnl1CyOCHUl1TygQuVViRNwIw4B6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||||||['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|wo2IDIASCqdKnURISdD-DlSKNTnN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|10.6|0.73|17.38|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.6b05862|wo4R4jpqeb9uebEoj2oufFw4Sknp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.55|97.3|0.367|2.3|['Au', '4-methoxythiophenol', 'Perovskite', '4-chlorothiophenol', 'Au']|['4-chlorothiophenol']|['4-methoxythiophenol']|bulk|https://doi.org/10.1038/s41467-017-00588-3|wo7PgJTZsQkAIDHQCKIy2YKX3qYR|a perovskite solar cell with the following device stack: ['Au', '4-methoxythiophenol', 'Perovskite', '4-chlorothiophenol', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97|1.5810001685838346|1.05|236.0|0.7120000000000001|17.62|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|wo91UYQk7tDQewxrSJmhvMGLCnX3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br204C380Cs20H1957I996N703Pb400|Cs20Pb400C380N703H1957I996Br204|Cs0.05FA0.8075MA0.1425PbBr0.51I2.49||1.08|227.9|0.7559999999999999|18.76|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']|['Co-Porphyrin']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.9b13278|woB_OPiF7jIQXFhnZluk77azfd7W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Co-Porphyrin', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|158.3|0.617|8.59|['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c5nr01988e|woBgUsJPF7QD3iiqt67XRZmqcvDG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCBM-60', 'BCP', 'Perovskite', 'PEDOT:PSS', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.chempr.2018.01.018|wobT5uKiGXZa9aYkppSaYlcTh_Fl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|168.5|0.733|11.38|['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acs.macromol.8b00919|woq-cr_HZfkAO7XURgCC5KViKAwR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOS:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5|1.8600001983339236|1.175|158.0|0.6459999999999999|12.0|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|woxUVm1Odb64ipGIWd06_B4q19D_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|201.0|0.691|12.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Graphene oxide']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.6b02064|wp-iTxhLugeXiJcvoG8ZNSEC8o_J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrC10H51I29N19Pb10|Pb10C10N19H51I29Br|FA0.9MA0.1PbBr0.1I2.9|1.5600001663445808|1.11|230.6|0.7929999999999999|20.24|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01356|wp0GM3tALC7udVLuKQrPg8hT1Dzk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.1I2.9. -Br2CsIPb|CsPbIBr2|CsPbBr2I|1.880000200466546|1.03|116.0|0.63|7.6|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152768|wp6Z69ku-IW_zCWf0GMqhaibCt3Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|163.9|0.74|10.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2016.08.029|wp8OLK-xT9p3G9_1m6t-lXaLyzEe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.07|200.3|0.56|11.94|['SLG', 'ITO', 'PTAA', 'Perovskite', 'IT-M', 'Zn(acac)2', 'Ag']|['PTAA']|['IT-M', 'Zn(acac)2']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|wpFwzqtgr65DMyNBNgvffLEXU1Ri|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'IT-M', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.3|0.511|10.48|['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']|['none']|['C60']|bulk|https://doi.org/10.1039/c9ta00118b|wpKhKNKdNPBkiUh13vtLbvRO83hK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7||1.061|213.0|0.71|16.1|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b09515|wpOyxfi1EI5oSK6FX9EnknB0r8hx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.87|172.8|0.797|11.75|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ee00222b|wpR-jQAq3-PZppfJjRTLRDHDHMjI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.5|6.5|0.33|0.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|wpTv7EGa8DrrPBbxNbsPVWA5joIf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -Br5C27CsH145I55N44Pb20|CsPb20C27N44H145I55Br5|Cs0.05FA0.85MA0.5PbBr0.25I2.75||1.13|248.0|0.79|22.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DBC-OMeDPA', 'Au']|['DBC-OMeDPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.9b01949|wpcy9-SRbW319uGx-MnosukSPThX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DBC-OMeDPA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.5PbBr0.25I2.75. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|228.6|0.6940000000000001|16.2|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']|['NiO-c', 'NiO-mp']|['ZnO']|bulk|https://doi.org/10.1039/c7ta07775k|wpdPvkmUWhZTenN61Vi0fkeW_tgy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovsite', 'ZnO', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.0|['SLG', 'ITO', 'PANI-PAMSA', 'Perovskite', 'C60', 'BCP', 'Al']|['PANI-PAMSA']|['C60', 'BCP']|bulk|https://doi.org/10.1134/S1063785019080303|wpftFmnB3e2jj_cqK4MFI-xbZ0SS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PANI-PAMSA', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.655|14.8|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.029|wplZLmpfd7_e3N__CSfqhU4YjgXP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.5I2.5||1.06|243.0|0.72|18.6|['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c']|bulk|https://doi.org/10.1021/acsanm.8b00859|wprXS2K9e2M4ONz1v4gssK0yMb74|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|199.0|0.627|11.64|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1063/1.5047765|wpu-F6VfoImV03vxgoQhgC3dtLIJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|wpvw09yXRg9tkZmg2MZufSOyEnY5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|87.0|0.52|3.55|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/jp512101d|wq4O4ZTjm7C3uTxoZGAt6FAu-oOY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.97|143.0|0.664|9.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|wqH5JLYb82niVf6heXJSXCC7yZKK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.06|137.5|0.764|11.17|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['Nb2O5', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900091|wqJibdkkyh6HNdBop_5be_FLAVo0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'Nb2O5', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|210.8|0.44|8.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aaa230|wqP_0lPLpBZIA-X5XXu3JEsdpQ2p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2800002431190025|1.27|48.4|0.599|3.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|not processed|https://doi.org/10.1021/acsenergylett.6b00517|wqav9_Q6w9gQ4HowNIMGiU4j9bpY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|110.0|0.53|4.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1591/aadb46|wqbCin8aimNbE4qMMGfufIpsxMw0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C29H138I60N20Pb20|Pb20C29N20H138I60|(TBA)0.03MA0.97PbI3||0.81|187.1|0.58|8.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/c7ta06735f|wqlDdRLAIe-CnnVm72M0aNsBGras|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (TBA)0.03MA0.97PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.23|80.9|0.63|6.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|wqrcFaIf243R_qwBn7zAR8U58CkY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Br45C219H4019I2414N914Pb780|Pb780C219N914H4019I2414Br45|(NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14||1.05|221.2|0.7120000000000001|16.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1007/s40843-018-9343-1|wr2Qy94OCHRxiyrs2SP9ggGoBuXQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.012|197.3|0.669|13.29|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']|['NiO-c']|['CdS-np']|bulk|https://doi.org/10.1039/c7cc09838c|wr2vsBzsbvu1CoKJXyFJvil6z6L5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'CdS-np', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.794|164.4|0.64|8.3|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2018.08.279|wr7nHeKLlx7lUfuxVI50LRC70sDw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|177.89999999999998|0.63|11.72|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|wr8_tvqrfY7HkWIaHCaZX7E2B0tz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|19.2|0.28|0.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.5b00122|wr9_ejcK0zcFQ1X5cjp30uxjryWf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6100001716761378||167.0|0.65|11.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900463|wrC1uMFg6Uw3o89Zq6NImDeSTbLo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3Cs4I9Pb4|Cs4Pb4I9Br3|CsPbBr0.75I2.25||1.16|147.0|0.653|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.joule.2019.11.007|wrCDChsp5FYfaQPFAD-K-NpTnfZG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.75I2.25. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|182.9|0.6|10.29|['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Nb2O5']|bulk|https://doi.org/10.1016/j.solener.2018.03.054|wrDB-k-NvemhZWzvqLKFpq3xm2dC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sr|SrPb9C10N10H60I30|MAPb0.9Sr0.1I3||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.ceramint.2020.02.203|wrKumfPzmA_GgWGbE-vPX7k6KfjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.9Sr0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|166.0|0.22|3.5|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD', 'MoO3']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta02502h|wrM_RMaXsMTbSwaz51JMnSj-_ntJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|229.1|0.72|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.07.107|wrZXcPgDlxF17tZr98WfUloW29q_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13||1.06|166.0|0.5870000000000001|10.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.9b02366|wrgWqViCfTsRSHob7R2veSrzY6ir|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.0|0.7|15.27|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.9b12323|wrnSpSHBClVwx9WDZ-MDTVhzI2DU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.7|0.706|16.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/ab3604|wsGZOTjC0VqYHQ788cDGPSepJHxJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'AgAl']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.812|175.10000000000002|0.56|7.91|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|wsHRdokR9fQCjBfKwko3LapiwnDM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br300Cs91Pb100Rb9|Cs91Rb9Pb100Br300|Cs0.91Rb0.09PbBr3|2.3100002463179368|1.5|81.8|0.8|10.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']|['J61-ITIC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227151|wsNRnKK29oYAandTy-QpabjaFd8F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'J61-ITIC', 'Carbon']? The composition of the perovskite layer is Cs0.91Rb0.09PbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|200.0|0.75|15.7|['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']|['PTAA']|['TiO2', 'C60']|bulk|https://doi.org/10.1039/c7ta09178h|wsOTJ_Xwx86MYgqtVdAbMV-hjvvt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'C60', 'Perovskite', 'PTAA', 'Au', 'Organosilicate']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|216.0|0.82|18.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1002/solr.201900104|wsR6-9btKLHJiIMeIRBZSgKejbgh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|199.0|0.7929999999999999|14.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.03.019|wsRe4m8CKNNDeBVRj2CCZQAWP8Br|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||0.97|112.0|0.63|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7b06268|wsTObPf8ov-m3cgrD17Z4J2jg49S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.11|151.0|0.728|12.19|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|wsVzUb8GHCh9oNFl-UWGS3yCs2bN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.5|0.67|14.6|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']|['ACR-TPA']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta01248a|wsnINZSACp8CPKKGMPhWxkSf4gh7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'ACR-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.69|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|wsnUzeQE0LxofPwZ6_l7wXtS5bO9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.99|169.89999999999998|0.617|10.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9se00306a|wsvVfMbTUJ7KwkSoOwJtq-KAJOLt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.97|182.4|0.586|9.9|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c5ta06574g|wt-jWq5geaBYJ63meiSRScsGOnCm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|97.5|0.528|3.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acssuschemeng.7b03382|wt7Q835ZZowSkaXlLEXbntZPStJA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4|140.0|0.45|4.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|wt7xIMfiSz6chNEwbj3c1iR8JyNR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|181.0|0.76|12.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00509|wtFY6IHgXJR0DPtkylK6JOFdpgvn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br15C100H512I285N188Pb100|Pb100C100N188H512I285Br15|FA0.88MA0.12PbBr0.15I2.85||0.88|185.5|0.66|10.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01327|wtH3OTSh-80GNJwi-VcHn_sglvrB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.88MA0.12PbBr0.15I2.85. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|130.39999999999998|0.774|18.22|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|wtMBtYuT4Gry1E-_kV_Lp3b2lKfJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.92|190.0|0.57|2.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|wtMzwlC2JpASOJ9jQL9npVxdkZEa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.022|4.83|0.915|10.3|['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.310|wtTRnq0J13sXGmEGaeJOcf2WRgNs|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|208.2|0.75|16.24|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|wtc6VcM7TAvIGPXIO0fTeYjSbcMi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16|1.6500001759413832|1.11|51.0|0.62|3.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201702498|wtlJrXPLtZc6lbDnYO1DScQu_xYR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8200001940686776||181.7|||['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1002/adma.201705393|wtobf9ry0h9RpTg4RiEv53ftq_4d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||1.02|143.4|0.38|5.57|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1016/j.jpowsour.2019.03.037|wtpw4KmfTROfLWZ6XkYney3Xm4iT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -Br3CsPb|CsPbBr3|CsPbBr3||1.28|56.3|0.76|5.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; ONC1']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8nr09353a|wtvR5iYbq9re7siERVP11wstUYKk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MWCNTs; ONC1']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|223.0|0.68|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4cc07367c|wtzEG1-QeZhVHbcXKTxiz2i3S0by|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|151.0|0.501|7.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9050666|wtzcgSE6c_7r3fuK78OUSxMptIvE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|182.0|0.649|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr07450b|wu2dOTkDCm0KYIPTCxA3vsSPvUTo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||1.06|222.3|0.73|17.23|['PET', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'NiO-nw']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.9b00760|wuBr_w6HNpqvwkSVvAWz0AQNZ_Uc|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'NiO-nw', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.59|158.0|0.664|6.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/advs.201700204|wuCO-dIHHOtXRplWknK9JkSsXbf7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|239.4|0.67|15.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|wuEWePh3JzRPAauUKqbn4MbHmpPc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.49|233.3|0.67|7.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.040|wuGqWUaXL43oORL2v1zCnezQZGnz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|210.3|0.755|15.1|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-70', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b10668|wuJYzMx081FQLQQ6FJ3YAHnmN1Ro|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|184.7|0.735|13.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.11.024|wuPD9BN6torgEkYbSyMI_XoQZtfz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|233.3|0.7559999999999999|18.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-hollow spheres; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-hollow spheres; TiO2-mp']|bulk|https://doi.org/10.1016/j.jcis.2019.12.004|wuXk35TC3fhabwO3uj0VEmBfM6jE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-hollow spheres; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|228.0|0.71|16.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2017.01.240|wu_OXwPgW6_jM-2mTTjyKz3OBq5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|138.5|0.61|7.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ce02151d|wuapZlrtdohGXBHyvRGlffgOMsmr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.024|175.2|0.737|13.22|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.047|wuaprXn6zgEgm1BjBYkIjW7l3jYX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.0|0.7|14.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b06859|wup4MqJx7dGFxAujalrre_yJg-VW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.045|236.7|0.6729999999999999|16.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201900939|wusxcejNwjTsm204jsdPyKlo4v5t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|214.0|0.532|10.12|['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1016/j.jssc.2019.05.027|wuuNwBD9mKXI8EgDwL8D0ME8bJwa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|212.0|0.56|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PEG']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.018|wuveG_m94OP28lM1bQwB2fDnD5wR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|71.0|0.48|2.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-OR', 'Au']|['P-OR']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee00709k|wv7a461o6Tg3dCX55xnK7gTUUOVC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'P-OR', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.04|189.0|0.68|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.5b03169|wvFhvSQF0F2ITLaWAGSx1mS31SdL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.6000001706098266|1.07|232.0|0.78|19.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00162|wvNwiwNQEWxC_DeIZdNau4rNpPjK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|243.5|0.5820000000000001|13.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2019.06.161|wvQ6Elv7hPL448ZsFaJ32rvRIDdL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.0|0.64|13.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.06.007|wvVxl5AjQ1fXKmqDG3aI8vNDcV-L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.121|234.5|0.7340000000000001|19.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|wvdtcAVETZfnEJX8rlHKG7-p1msI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.021|8.5|0.54|9.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI:DMBI', 'TiO2', 'Al']|['PEDOT:PSS']|['diPDI', 'TiO2']|bulk|https://doi.org/10.1039/c5ra27620a|wvdwsbWUMnwvw0vJLYkjGhh1v4zf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'diPDI:DMBI', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.08|181.6|0.76|14.94|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|wvlf9B8gazuYV8zXWE3-uMYDRHtU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|217.3|0.68|15.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|wvzx181HhAPrDhdjqs342QZzQ2tR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|200.0|0.75|15.0|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ta11280g|wwMEuXpmTaGDvm2o_DceTwDwNR7N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br21C99H516I279N177Pb100|Pb100C99N177H516I279Br21|FA0.78MA0.21PbBr0.21I2.79||1.0|194.5|0.736|13.7|['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiPc']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9cc01266d|wwQ4iGG2C4jpfHhhpnjW_ZrPG81T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiPc', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.78MA0.21PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|240.9|0.49|7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Pt', 'FTO']|['CuI']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12132037|wwSZPY76ObkkHqDc6UfioXTSmfyn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuI', 'Pt', 'FTO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.53|122.0|0.331|2.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|ww_veY85yRdwlAgceEO42dlQChPe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -AgBiI7|AgBiI7|AgBiI7||0.62|22.4|0.371|0.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.matlet.2018.03.085|wx3X3iIHiemWcz6gg1nuGo7dPWCW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is AgBiI7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|151.2|0.64|9.38|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C70']|bulk|https://doi.org/10.1016/j.orgel.2018.07.009|wx6WtiseZAUMso88-24G_uCFnzTa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C70', 'Al']? The composition of the perovskite layer is MAPbI3. -C9CsH54I30N9Pb10|CsPb10C9N9H54I30|Cs0.1MA0.9PbI3||0.83|172.8|0.69|10.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.10.092|wxL4xGTgmRgJLCbxnDZ2kZbUXFAG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.1MA0.9PbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||1.051|210.0|0.696|15.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|wxb6aZHoTKJuO8OuDZ_limxMzEQJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -C10H60I30N10Pb9Sb|Pb9C10SbN10H60I30|MAPb0.9Sb0.1I3|1.670000178074006|0.89|111.6|0.32|3.18|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.7b06963|wxlQ7TqH3VxmoLMp7nwYGBsdetIm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.9Sb0.1I3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.064|223.2|0.685|16.28|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta10170a|wxnNHze6amkZQYbDIsZWO6GBQzRO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|203.0|0.76|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14561|wxxuIP_mCWs3S4VKaF2LuLGEJc-Z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|194.0|0.57|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b07216|wy1IQ_8QOpD6LgVHfK5UQ_b5uUNu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|154.8|0.62|8.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn502115k|wy6vVYErQOCEcvm-6j3GU6cY2b9r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.243|135.6|0.74|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.8b01553|wyAo8j0kEfDXn2qUT2kfCdrP7KCG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.022|189.01|0.727|14.03|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||wyJ2588-RaCtGP8X3KNfOEEI0Onl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|144.0|0.3779999999999999|5.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1186/s11671-017-2326-z|wyKE8WukQ_HdqXqpVU_a6AubbvVJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|193.7||13.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604545|wyP1UfwV4kk1vmJ78JVVM-q47luN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.762|173.29999999999998|0.3779999999999999|5.0|['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTO']|bulk|https://doi.org/10.1002/adfm.201806427|wyaD5rezlTZODTHasC9_oaoifQwG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.74|228.3|0.68|12.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']|['PEDOT:PSS']|['NDIF1']|bulk|https://doi.org/10.1002/asia.201901452|wykZeg9PmleNAdZWI7cERtwi-kS9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'NDIF1', 'C60', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|196.0|0.34|6.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11771b|wynVutOdKEqc5oAKrNssc5ihQzNG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|11.8|0.3|0.3|['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']|['none']|['CdS']|bulk|https://doi.org/10.1016/j.solener.2019.05.060|wyttOIpJWXuznhUNtRQA4b8_vLSr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdS', 'Perovskite', 'Carbon', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5800001684772036|1.07|229.0|0.72|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201804402|wz1vZ4rJMvbozDXxiMqj3a7xr5lA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.068|169.0|0.7190000000000001|13.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|wz4khKrLVIVrm3XMnePwu3OiTjs_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|215.0|0.68|13.98|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']|['MWCNTs; Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403462|wzMqRVfdeVA2ozYmbShCs-_xSDct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MWCNTs; Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H26I15N9Pb5|Pb5C5N9H26I15|FA0.8MA0.2PbI3||0.98|187.5|0.615|11.33|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc01104k|wzVnln5_S5iVKKci1E2mzTJFaEqN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.02|143.0|0.64|9.33|['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'C60']|bulk|https://doi.org/10.1039/c7sc05484j|wzn_0wKNOvrumyZeaMnSfPT5VOvP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.964|188.0|0.69|12.3|['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1002/aenm.201500568|wzr3c414vE3tMUZ5r6mHXmXBaOd9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.952|199.1|0.5479999999999999|10.38|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c9ta08929b|wzs7jSBsc1J9hDGqpKsxRYRncmem|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.01|213.0|0.747|16.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9tc00555b|wztCXPyXfkcEAs7ww_OJfqDlgAb8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.15|0.6|12.29|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Se', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|wzturzm6YPLJhR9o8UVTsOvVR1ma|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Se', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.25|72.1|0.25|0.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1007/s11664-019-07307-2|wzzCCveXvTK2dcpuBQLB6hAybTgr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|221.4|0.65|14.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|wzzp9bstQuqJNOzygfSjAyfjQbDJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|181.0|0.72|12.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|x--mzn93WbTgKrtEQL_kcg22Rcjf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149||||13.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.9b02621|x-DRHFari9rNyNbQhnM2av86EAiv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPb1.0BrI2|1.6000001706098266|0.66|120.1|0.493|3.88|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']|['none']|['ZnO-c']|bulk|https://doi.org/10.1016/j.mssp.2017.04.022|x-G4oEKllJP-GJQwIPugF3Ga8hLT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPb1.0BrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.25|10.0|0.25|0.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6528/aa5bec|x-GFMYI4A8AgB-VfB90SrLkvFmAC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|225.3|0.74|16.09|['SLG', 'ITO', 'NBNDD', 'Perovskite', 'PCBM-60', 'Al']|['NBNDD']|['PCBM-60']|bulk|https://doi.org/10.1166/jnn.2018.16064|x-OgS017y47JwV6Am1ZGY6NCYYfD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NBNDD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.97|190.7|0.5|8.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr06715d|x-V_fEYoD0yJfOsI0dua14iEEIi4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||0.96|181.0|0.68|12.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2927927|x-WcADMVKBQv9tTcduLuHu7_s8gZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|204.3|0.78|17.49|['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']|['PFN; PTPD']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|x-awsjtvMWLSA8hJq6mrj8QkSFxd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN; PTPD', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|120.1|0.53|5.21|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.vacuum.2019.109077|x-iJN2nxumG24A4Sv7G8I4XwejnY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|106.0|0.47|4.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jcrysgro.2018.03.030|x-rEUnBWyBLxHGcNKEpJZ3kKInii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br5C19CsH98I55N35Pb20|CsPb20C19N35H98I55Br5|Cs0.05FA0.80MA0.15PbBr0.25I2.75||1.09|231.0|0.76|19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|x-rJ7Jj_-DMTk6u1EEVrjuPnj7Zm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|76.2|0.59|4.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr00130c|x-w_7MgXlSrOq8S6NtxpRcQP2n8G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.05|227.0|0.72|17.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05667|x07XS3rpTlsRbpgGpbgurWi4mpCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|197.0|0.59|11.12|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s12274-019-2556-8|x08rxFU2CJ71EtOISSs-XgsiesXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|211.0|0.7909999999999999|16.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PPDIDTT', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PPDIDTT', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c6qm00309e|x0HCqz_KCrwqwALVhgVj7hdEQzA5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PPDIDTT', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|188.0|0.603|12.3|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c5ta01207d|x0IAlaE5KXrGKUrnWYVtaVuMDhVO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|178.5|0.695|10.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07079|x0Lh4KDcGvUqxwUtk-rBfdm0-zgf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|1.07|217.0|0.77|17.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']|['Al2O3-c', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02687g|x0P1yhI_J20TbhKeV2j1G-pVx4BZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Al2O3-c', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.93|218.0|0.507|10.3|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsami.7b04833|x0QPRjMJ1FeM1SBKAdv8Llx9nUQi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|177.5|0.49|7.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta04997g|x0SQ1-iWlNJO6a4YCdHnBYLw4sNV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.72|155.0|0.52|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acssuschemeng.9b04772|x0XsfUjeJO6s4CC0_0ZyfIqWwhqb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.82|68.0|0.56|3.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.065|x0ayz_-_ab97K85EPpvdwR_zU2P1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.98|189.1|0.61|11.3|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/solr.201900229|x0n6q1nUmTsi9afrXSo5rxgaAECQ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.9|0.74|16.46|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|x0uagzhzuK6YGXHY22HSsDazsCRQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.085|215.9|0.628|14.7|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.05.011|x103GLh1wGi-Ed4zzZUMiQBihhTu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|124.7|0.687|7.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']|['PEDOT:PSS']|['C60']|bulk|https://doi.org/10.1016/j.apmt.2016.03.002|x1LNoglDetHf2ii5DToLBT1PO4Zu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.036|175.2|0.446|8.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1016/j.orgel.2019.105560|x1R2VBJ8b-7cUHbokhYsolAv8nHq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO', 'IZTO']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.500000159946712|1.08|189.9|0.769|15.75|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jallcom.2019.152887|x1UM5VCiguMF8xEetpW-hwFrq6Kf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbI3. -BiC4H12KNO6Te|KC4BiNH12TeO6|KBABiTeO6|1.9400002068644144|0.3|0.8999999999999999|0.31|0.02|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']|['I2-electrolyte']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.9b01025|x1ZvgEdC7DVyZZCPCQUtMYRJKM9f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'I2-electrolyte', 'Pt', 'FTO']? The composition of the perovskite layer is KBABiTeO6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.052|205.4|0.642|13.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02323|x1aO5j6MQXQa6Skt152VgMFMph91|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|214.0|0.55|13.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|x1dNtMTn9jc0HmqkcPAYReJaY8cI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|211.0|0.5|8.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra03370e|x1kK8DrGcmtRg5wT4cS1hunzsV8h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br12C10H60I18N10Pb5Sn5|Pb5Sn5C10N10H60I18Br12|MAPb0.50Sn0.50Br1.2I1.8|1.4800001578140891|0.57|60.2|0.68|2.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acs.nanolett.6b03857|x1mY9-HWtXttS2X8V3-63NAtyWfV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.50Sn0.50Br1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.94|176.29999999999998|0.55|8.99|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2018.03.017|x1pjk_5tcBx0jaBiB0HKPRzSLtXW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|209.4|0.68|13.23|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta00976j|x2ABQ_rsPkdtTp93XaHZ-Enxzwvd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|196.9|0.74|14.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|x2ElJosqYT3Pl_CoHmB-x13ctUUw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|134.0|0.63|9.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apmt.2017.11.003|x2IDpBAsLrbAfcs9LlNbj1LhEmsF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.12|228.2|0.7759999999999999|20.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201801637|x2_VZ3q4RciSnsIQwCum2VoMvmul|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|195.9|0.68|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6528/aa6956|x2e1U5a689QZ-N6TG3T34EkP3fjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8|1.5300001631456466|0.97|182.0|0.66|12.0|['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly(3-bromothiophene)']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.03.001|x2eGBA6LoYbua_AuVWoAW_brNnhQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PBT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.086|201.6|0.65|14.29|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.mssp.2019.104809|x2hqOK8FA6nc7kEwDVsfAUXPVfdZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.884|151.0|0.64|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nt']|bulk|https://doi.org/10.1016/j.tsf.2015.12.001|x2hzCh_c1KG37wi-EPU9COqWq1Us|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|230.7|0.71|11.9|['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2; WOx']|bulk|https://doi.org/10.1002/adma.201505241|x2kuaNW3zaf43lBEY3D4z7HiJ50x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2; WOx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|94.0|0.447|4.4|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1016/j.nanoen.2015.11.008|x3BQlWDddps8mnQeKWCSg0MV9hdE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/1347-4065/ab073e|x3BrLNtlZNdz2LvAttD4CHMxVc_4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.7|0.763|16.77|['SLG', 'ITO', 'MC-43', 'Perovskite', 'PCBM-60', 'Ag']|['MC-43']|['MC-43']|bulk|https://doi.org/10.1039/c8ee01831f|x3HbSoWCuqgayeF2sqxNq7Hdjio4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MC-43', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.13|225.6|0.77|19.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904347|x3MfTI3zLj0g_55gNmZ8jDazWJdu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|226.0|0.758|16.3|['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']|['PVBT-SO3']|['PCBM-60', 'C60/C70-N']|bulk|https://doi.org/10.1021/acscentsci.7b00454|x3MjETLOTDydvXohjN3MxYVPFWuG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PVBT-SO3', 'Perovskite', 'PCBM-60', 'C60/C70-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|131.0|0.72|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c']|bulk|https://doi.org/10.1039/c7se00383h|x3XNj0gGO4TAJ1qSfJhMkbL37BDj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|126.0|0.68|8.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.05.057|x3aJDeVEWE5t3r0I0dX3Pa9wxP9k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|1.6000001706098266|0.9|109.5|0.467|4.64|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00001|x3aNhL33tZ21mg9fmUBvpcE1H3EF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|197.4|0.687|14.3|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|x3apPaPbGI8jwb7CynaY5qfeEHeW|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.3|0.73|16.44|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|x3lo8jHlFQPrso6zZL85M0FiR__p|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.74|106.7|0.54|4.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c3nr00218g|x3oDC9RGidDZ4EMATMpGaG4Oh0Iw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.958|160.6|0.669|10.3|['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['rGO', 'CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.07.022|x3sSK8TEp2iMz2H2saj_r096Y8HN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.51|9.31|['SLG', 'ITO', 'ZnO-c; Graphene-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c; Graphene-np']|bulk|https://doi.org/10.15541/jim20160218|x3slCze3DloSfi2XmQZikjs6Ivyc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c; Graphene-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|234.5|0.65|14.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|x3vdhGXOA-6Ihxb7ZWRMq4UgZITn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -I9Rb3Sb2|Rb3Sb2I9|Rb3Sb2I9|2.240000238853757|0.24|8.4|0.366|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']|['PolyTPD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03310|x42kfFFAx0qJdrOJnav0xXYsar4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PolyTPD', 'Au']? The composition of the perovskite layer is Rb3Sb2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|194.2|0.65|11.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900990|x4MbwakQRz_75vcZdgGpCzH_0p3s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|197.0|0.67|13.1|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1007/s10854-016-5492-3|x4RPWQum6iSqfr0rmHSMVAbqmaL-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|174.0|0.44|4.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|x4WgqwMjWVYv0PXyipwq1F5R8oiv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|161.70000000000002|0.6|9.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']|['P3TAA-co-P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.polymer.2019.121973|x4YkcIQyf26RG_SQi9SIzr1b9cto|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Pervskite', 'P3TAA-co-P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.5800001684772036|1.07|219.6|0.8140000000000001|18.6|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'TET', 'Au']|['TET']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/solr.201700175|x4dJ_DngvmFv6-mO1WhJ2bGWZdtm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'TET', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|140.7|0.43|5.87|['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']|['PTAA']|['PEI', 'ICBA']|bulk|https://doi.org/10.1002/aenm.201700226|x4ertS42I0g4pq6EFTWbhv4xCv9G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'ICBA', 'Perovskite', 'PTAA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|224.8|0.55|11.68|['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS', 'PEG']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.05.018|x4lYm5jEVYcUnLp86yS1Vj7R-d6o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEG', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|225.0|0.5|10.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs']|['none']|['TiO2-c']|bulk|https://doi.org/10.1557/mrc.2018.142|x4m0mv5yeRVGK3Pn4MoeEwHLiLLe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|211.0|0.52|12.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|x4tyBCKQSO5QzGpI0X2K2NPeEdtG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9H28I13N5Pb4|Pb4C9N5H28I13|(4AMPY)MA3Pb4I13||0.96|96.0|0.59|5.47|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.9b06398|x51FiYvm6y6R_SECzjyKhoTmeFo4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (4AMPY)MA3Pb4I13. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.918|189.6|0.68|11.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-helices', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-helices']|bulk|https://doi.org/10.1039/c4ta04988h|x5HREZeC5nYxdP5KdUo_0PoiQruU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-helices', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.035|214.2|0.6409999999999999|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|x5N2IapINkNhvjmhJIG5d4k6ugiY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -Br15C93Cs7H465I285N186Pb100|Cs7Pb100C93N186H465I285Br15|Cs0.07FA0.93PbBr0.15I2.85|1.6200001727424491|1.03|207.5|0.66|14.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.04.012|x5TX-2esyO2I63EifwoFHcM7uf5U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.07FA0.93PbBr0.15I2.85. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.2200001300899923|0.87|262.0|0.69|15.18|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['ICBM', 'bis-C60']|bulk|https://doi.org/10.1021/acsenergylett.7b00847|x5UxaKC4kHgW6xXCEWR8qM3Xi-8-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.05|222.75|0.738|17.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-421', 'Au']|['SGT-421']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|x5els51pfK-OAYF1iHeui34JOL9m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-421', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|221.9|0.7120000000000001|15.48|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']|['TAPC', 'MoO3; TAPC']|['Ca', 'C60']|bulk|https://doi.org/10.1002/adma.201601505|x5huiAjyZC9z5yJG-_dZQCuhCxoV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TAPC', 'MoO3; TAPC', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3|1.280000136487861|0.32|150.0|0.35|2.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.015|x5pOHL4wYKf8L9LkkpVB8MRmIxCO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|208.8|0.71|14.31|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc05328f|x5tmD9txQ9Ghza01S8vFJHUr6AC8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.orgel.2018.09.027|x5yr8WI-uUuvlnnxuQB076CQSECa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.01|186.0|0.61|12.1|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta01839d|x6Ats6ddAlbySL3TVrBv3Xs_bwhp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|28.3|0.3929999999999999|1.03|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1246/cl.150246|x6BpZs-kJYI52a2kzMPhemq0aB-I|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.15|156.6|0.81|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']|['poly(DTSTPD-r-BThTPD)']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.0c00244|x6EjZT0PIUeVRcS2mkIEPNr8VaoC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'poly(DTSTPD-r-BThTPD)', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|170.0|0.44|8.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00013|x6RyV4o2VLzJY0DV4hWM2-AA1tSk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|175.0|0.73|14.3|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1002/adma.201403939|x6cBvk4VVPOytKyWi09jWQMqu52O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2Cs3I9|Cs3Bi2I9|Cs3Bi2I9|1.8000001919360546|0.47|17.6|0.45|0.37|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PTAA']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1039/c9tc02181g|x6izKilsFS16lEl7Daxr8FlPsk6W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is Cs3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.4529999999999999|111.0|0.5379999999999999|2.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta01310g|x6jnX-oqQwfC3nKwX4Q8Zr7uBAuM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|127.7|0.693|8.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.physb.2017.07.065|x6pBLoxVl4tl7sBoIPKew9iLefn6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|148.0|0.48|5.0|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1126/science.1228604|x6tAqLPQXM7smvjk5OcODzGk356f|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|||||13.0|['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1557/jmr.2017.264|x6zSmMFq700HOW7ero3L5Hb9x_82|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|235.9|0.784|19.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201801717|x7-g1nrbRuXINKD1QY3TtoVWzcIO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.08|198.0|0.765|16.17|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900602|x7Urqyx24uMCh3RCP9mRouWp1VGS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br300CsPb99|CsPb99Br300|Cs0.01Pb0.99Br3||1.369|51.1|0.7120000000000001|5.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cej.2019.121930|x7bZXsrC-5SQBKzrGnkLrhzhpgvj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.01Pb0.99Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.9|161.0|0.55|8.6|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c3ee40810h|x7e0Xm-1wYRcfJoAhDN1LsOBe8n3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|169.60000000000002|0.72|10.44|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00408|x86OYYamOjiZwC_HQo0e2j5fUE3W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|0.99|175.6|0.66|11.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']|['A101']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|x88LJ1EX5YsrUwHi-SJNTynbbkj3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A101', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.06|219.0|0.629|14.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']|['asy-PBTBDT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00479j|x8CIefKznITCeFczeDzZAVLHMstT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'asy-PBTBDT', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|207.6|0.73|15.1|['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|x8SsI_5chaTslsdST3Bj8uM5YGEL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br48C93Cs5H481I252N170Pb100|Cs5Pb100C93N170H481I252Br48|Cs0.05FA0.77MA0.16PbBr0.48I2.52||1.118|216.2|0.71|17.23|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.8b02431|x8cnqbtn70NMboUbL7R0WiRxu1MF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.77MA0.16PbBr0.48I2.52. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.07|224.0|0.785|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|x8dlXYFJhXWwPRyRVtYKYbKI373Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.968|183.4|0.6559999999999999|11.64|['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b13372|x8muk1dnxZvRXeYD-9NmYeGdcCiP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|196.5|0.585|11.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1007/s12274-016-1407-0|x8s-sXo-BnEoHDLdulUzigvF-cWF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|154.5|0.73|11.21|['SLG', 'ITO', 'PEDOT:PSS', 'Na3C6H5O7', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS', 'Na3C6H5O7']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8tc06043f|x8uyq75OszpCDaKuYipZwr5KX_Tx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Na3C6H5O7', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.016|162.10000000000002|0.742|12.23|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c8tc00455b|x8v-JRFUg_BOguqh3F0jcDrmNJET|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.0|0.65|11.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b10994|x91jeSklDqZVWCJzbNj6zIb31cFA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.923|84.0|0.665|5.19|['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1039/c6tc04639h|x9DYInV7dl2IvDB1jDH2VYn9-yTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'SiO2-np', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|214.4|0.56|8.38|['SLG', 'ITO', 'TiO2-c', 'PNP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PNP']|bulk|https://doi.org/10.1016/j.solmat.2018.01.006|x9GRl6J3OezTpiacDHLCcpHchpfl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PNP', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|199.6|0.6970000000000001|13.93|['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|x9GZumBP_pOT-49vVDV06RgfPcV_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.998|192.0|0.7340000000000001|14.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201600920|x9Hl-OlPVp2EDtHZvBzShYIjd84Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.98|144.0|0.68|9.3|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|x9Hy-DTfXwId2vDNHulBuU2vVc4O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55||1.07|225.5|0.7|15.0|['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M107', 'Au']|['M107']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1039/c8cc08283a|x9UUfeRld9-1nkAI8QU6TrsVBR_B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'M107', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|238.6|0.789|20.5|['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np', 'MgO-EA', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201705596|x9YUOraYAI61uPW0wh9_px8TCYhO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'MgO-EA', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|209.8|0.59|12.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110130|x9gT_dIKv_m4O0kdCKmPRqoXfqm9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|155.1|0.815|12.14|['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']|['rGO', 'CuSCN']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.07.022|x9uk4P1ivycLaIHCYi9ovxux70oY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'rGO', 'CuSCN', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|220.4|0.742|17.35|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.081|x9wLsC1Ze4_JcEo_NxSv--cxie0j|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.0|0.7609999999999999|14.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201401685|x9ztPww7U5JUIRDCcbFTfqQP6U0h|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|162.39999999999998|0.718|11.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.202000393|xA1niiiW4gsKMKfyT0u7-maESFH-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|185.4|0.764|15.3|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'PDINO', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['IPH', 'PDINO']|bulk|https://doi.org/10.1016/j.solmat.2017.01.037|xADDRFf_XLF8va8DaTjqLXiiy6yU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'IPH', 'PDINO', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.061|202.0|0.61|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b11584|xAELekqfs4khIP5CWQAFUMQdvFWg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|204.8|0.72|15.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ee02139e|xAT9mLDN0kk4fy5PRqlIx84JTzNj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.978|184.2|0.634|11.42|['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['GAN']|bulk|https://doi.org/10.1039/c9ta08929b|xAh4vUPJ-qmZkhyteEJl2f3lREP0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'GaN', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.1|70.0|0.71|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00341|xAi-JxNR0DAw9UnmPjGPt3cT7FUt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|204.0|0.58|11.7|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.02.028|xAtNB3zM79NJafRZJAHnezmUYjeh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au', 'MoO3']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.94|97.9|0.29|2.66|['SLG', 'ITO', 'ZnO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['ZnO', 'MgZnO']|bulk|https://doi.org/10.1016/j.synthmet.2020.116412|xB1SQXefMzbH-5sXSmNDYsIwM1zH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'MgZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|201.0|0.594|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10853-019-03655-w|xB2WBh2GayZg_PA-hrFVr_boRoPA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|223.0|0.76|17.35|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc01058k|xBNz02PvxRwH4Y2cAqfQYfrlPQC3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|202.2|0.515|9.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|xBSvyFZa5O4vppjek46pEePxgfGy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.11|218.0|0.68|16.3|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|xB_rbhe6eC2mlo0Z-fUT_y3oolaR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|221.5|0.75|18.23|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/adma.201804454|xBbME9yGW2GGS4fC1_6QjY1L1ni1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.17|219.5|0.72|19.01|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c6ee02390h|xBoGBk9qFvkFj1GojEkxXSspjNEC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.0|0.62|13.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Ag-np', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b02799|xBubGTvHBEqIPv7sFpBTNkke99p2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|185.0|0.72|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502009r|xC-uQA8TqjigB9YbhwKQH_gVlsHd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|165.0|0.6|8.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/2053-1591/aab8b4|xC1G3i4P-Jfxeea2TAq5OGVk5oXo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|212.0|0.639|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.05.062|xC41sz9JLXz3mY4Nt-qSB5CtFRFg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H50I30N20Pb7Sn3|Pb7Sn3C10N20H50I30|FAPb0.7Sn0.3I3|1.3400001428857296|0.72|253.0|0.78|14.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PEIA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201807024|xC6UYE4Ly9k0kQ-Tg1klYgx0XNCZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FAPb0.7Sn0.3I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.116|228.0|0.73|18.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|xC9PCQZE6TrPuIvAD7UTNl5HwoYr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|161.20000000000002|0.46|5.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.08.006|xCKfTUSQrt1CMd1oLgO7xBP846Y9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|200.6|0.63|13.57|['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2018.10.028|xCRhW6p72dNP8m7Q9xFfIGLjNQnY|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEI', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19H42I13N5Pb4|Pb4C19N5H42I13|(PEA)2MA3Pb4I13|1.7200001834055632|0.94|77.0|0.65|4.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|2D|https://doi.org/10.1002/advs.201900548|xC_8Ml2SgEnn3vU0_Vukz_Bas1EJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is (PEA)2MA3Pb4I13. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.72|307.0|0.6|15.4||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|xCiyRpc3ctOBX-oUwOkv_KsT3VNm|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.5|0.7390000000000001|18.0|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b00293|xCj8bMal5nwylbyLthrw3jIKXDP7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.14|236.0|0.77|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|xCt5PhCY_2mXUlO6if6FS5txT2t1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.88|204.7|0.67|12.01|['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b01545|xD0Qc3gvd2J230ZC-l3TObO0QPvB|a perovskite solar cell with the following device stack: ['PET', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|223.1|0.703|16.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|xDM_HnxVEHx7lFZFFGB5NsabXYzD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|228.4|0.742|17.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr07789c|xDMgu3O7qOCq8Y2j15zG-llw6v0P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49||1.061|205.1|0.745|16.22|['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuPc', 'PEI']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.004|xDOIJTU1S9I8nQMF2ozRFeIAI3vQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuPc', 'PEI', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|217.0|0.39|9.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']|['NiO-c']|['PTEG-1']|bulk|https://doi.org/10.1063/1.4992783|xDPTufKeGuPLXg0Gyhb8Hoid_KhP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PTEG-1', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.75|122.0|0.5579999999999999|5.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AgAu-mp']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra11720h|xDaLhqrQEPH67E_oh5wspxakchXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'AgAu-mp']? The composition of the perovskite layer is MAPbI3. -Br21C46Cs4H237I119N85Pb50|Cs4Pb50C46N85H237I119Br21|Cs0.08FA0.78MA0.14PbBr0.42I2.38|1.6100001716761378|1.03|210.9|0.396|8.62|['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']|['NiO-np']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00603|xDexucdBMA4k9EztfMjVOEmZE6ob|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'NiO-np', 'Ag']? The composition of the perovskite layer is Cs0.08FA0.78MA0.14PbBr0.42I2.38. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.03|184.6|0.7170000000000001|13.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TTE-1', 'Au']|['TTE-1']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201811593|xDlkZz9hZd_KU2659LSg0OS8kRhq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'TTE-1', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|129.0|0.5|5.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S1793292014400013|xDzaGYXGdJYsrOC3Elgus0_J8Uvv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|1.500000159946712|0.999|203.2|0.546|11.08|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/C8TA05282D|xE7V24GklyDoD3IiWH6lMvYRjSSK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis‐C60', 'Ag']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.002|206.61|0.687|14.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-FA', 'Au']|['DMFA-FA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01471a|xE7sTrXkCQZNQfFWMTrm3RsSdade|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DMFA-FA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|229.3|0.67|14.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']|['BDTT:DPPD:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|xEHGTh_WOBI9BYVLpxdKxnJUyxXi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDTT:DPPD:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.928|142.0|0.45|5.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1088/2053-1591/ab1541|xEhKdkHignM7TK4_NW45YhK5v0Z1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon', 'Graphite']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|206.0|0.43|8.18|['SLG', 'FTO', 'TiO2-c', 'SnO2@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2@TiO2-np']|bulk|https://doi.org/10.1007/s10971-020-05221-2|xEzZRW_ih78Etzu-m-SmRslMgzWR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2@TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.1|229.5|0.72|18.18|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s40843-020-1306-0|xF0l2ifvUDIex1wOoWEwJvze9VTh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.02|221.9|0.72|16.23|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|xFKXjwZOW6s44jG3wjTfmOnYmaoF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555|1.6000001706098266|0.81|184.6|0.5|7.48|['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']|['P3HT']|['PEIE', 'C60']|bulk|https://doi.org/10.1021/acsaem.9b00856|xFQMWjZmHAF_tzidQ5-GXz07cXx1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'C60', 'Perovskite', 'P3HT', 'MoOx', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|185.4|0.624|12.3|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2019.06.011|xFZJpmGFGaiRj_qng6nd-sHO_0_L|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|215.0|0.73|16.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02566a|xFhTlFsXUXQzaAAW2Z7JBNeqW6t6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|127.9|0.48|5.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201901186|xFpyZYQuIx5XNrXx6loQNw14mGlA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.9|196.0|0.7240000000000001|12.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|xFueHyOhQVJ4MAZ7JssYg1t3Q1A2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|219.2|0.73|17.43|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201703879|xFwGm5fEdg-hfWfaDj2LK9OxfW4C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C10H53I29N17Pb10|Pb10C10N17H53I29Br3|FA0.7MA0.3PbBr0.3I2.9||1.03|207.0|0.68|14.5|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/adfm.201905883|xG5EMIfOoYJsX7Vj3abAnuWGC_eG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.7MA0.3PbBr0.3I2.9. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.0590000000000002|189.5|0.75|15.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-018-06915-6|xGHRShiRMvXSlWmbbuaQF7oT6SKW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br97C95Cs5H484I3N181Pb100|Cs5Pb100C95N181H484I3Br97|Cs0.05FA0.86MA0.09PbBr0.97I0.03||1.041|234.9|0.748|18.3||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1016/j.jallcom.2022.164722|xGSuTp_-ZPoYKCW6tTZ2dhiOGJxh|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.05FA0.86MA0.09PbBr0.97I0.03. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|150.0|0.77|10.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1021/acsami.6b02169|xGTV9CDptkt3Q5CyBCe-8QkfwD8C|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.057|195.74|0.756|15.65|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||xGUk46T_DJpigwVv2FgA9N0Vlv_F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.54|241.0|0.7140000000000001|15.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152742|xGXLRPZ50BwD2a4SqcnYiszU8Jh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C96Cs5H495I255N177Pb100|Cs5Pb100C96N177H495I255Br45|Cs0.05FA0.81MA0.15PbBr0.45I2.55||1.128|219.1|0.77|19.03|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.8b02624|xGZVTfTgYlha0TyPyyZ422Dl78kp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.15PbBr0.45I2.55. -CCsH5I6N2Pb2|CsPb2CN2H5I6|Cs0.5FA0.5PbI3|1.640000174875072|1.17|183.0|0.7829999999999999|16.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|not processed|https://doi.org/10.1038/s41560-019-0535-7|xGsdO3CBOj0-0cM_PW-ERDNeiE4c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.5FA0.5PbI3. -C83Cs17H415I300N166Pb70Sn30|Cs17Pb70Sn30C83N166H415I300|Cs0.17FA0.83Pb0.7Sn0.3I3|1.3200001407531068|0.8|236.0|0.687|12.5|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|xGuIwavQiQqdAJ0LLTIEg5-5Dc8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.7Sn0.3I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.146|210.5|0.7340000000000001|17.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|xGyFj670QxjIaX9de_9ObezUj7xQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|216.3|0.722|16.56|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201801306|xH22xBqTz-QO89Yi1zijRXx_21YI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C90Cs10H465I249N165Pb100|Cs10Pb100C90N165H465I249Br51|Cs0.1FA0.75MA0.15PbBr0.51I2.49||1.16|208.7|0.797|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201705763|xH49mq1iIMypHce86kh5Qj4DL4fK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.51I2.49. -Br3C90Cs10H459I297N171Pb100|Cs10Pb100C90N171H459I297Br3|Cs0.10FA0.81MA0.09PbBr0.03I2.97|1.6000001706098266|1.1|244.7|0.758|20.45|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201908343|xH9CSMZiMroBbFCovPgjSdVx6nwU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.10FA0.81MA0.09PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.858|172.3|0.6|8.9|['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-nw', 'AZO-c']|bulk|https://doi.org/10.1039/c4cc04908j|xHBbpoOB1sX_Lr99xAzlFG32Imdo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ZnO-nw', 'AZO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18Cs2H93I20N33Pb20Rb|Cs2RbPb20C18N33H93I20|Cs0.1FA0.75MA0.15Rb0.05PbI|1.7200001834055632|1.262|188.0|0.755|17.9||['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|not processed|https://doi.org/10.1039/D1TA05699A|xHPNQQnUozo-9qAtN86mYEUx4fCY|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.1FA0.75MA0.15Rb0.05PbI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.953|166.0|0.72|11.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 1', 'Au']|['2,2′-[(4,5-Bis(1-octylnonyl)-dithieno[2,3-d:2′3′-d]thieno[3,2-b:4,5-b′]dipyrrole-2,7-diyl)bis(2,3-dihydrothieno[3,4-b][1,4]dioxin-5,5′-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03865k|xHVOIAKc2z_LEysI31ySAnjq6MCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'S,N-heteropentacene based HTM 1', 'Au']? The composition of the perovskite layer is MAPbI3. -Br780C1900Cs100H9747I5220N3553Pb2000|Cs100Pb2000C1900N3553H9747I5220Br780|Cs0.05FA0.8265MA0.1235PbBr0.39I2.61||1.063|208.0|0.6970000000000001|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nr06278e|xHWLEkuXss0X5qEit29-9yVfyRbk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8265MA0.1235PbBr0.39I2.61. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.172|228.2|0.69|18.45|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201801237|xHWSFWmlU1lJ7IKR0BMYgj_2f45J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb3Sn2|Pb3Sn2C5N5H30I15|MAPb0.6Sn0.4I3||0.82|255.1|0.758|15.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|xHXu4WvPjPLXslRkdzzT87roN1h9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|193.4|0.66|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM07', 'MoO3', 'Ag']|['KM07']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc06791k|xHbSsPXilxczo56mCGiazo-qa2zA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'KM07', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|98.1|0.35|2.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']|['MeO-TPD']|['TiO2-c']|bulk|https://doi.org/10.1038/srep07725|xHdZ0ro80h2RGpmNvshtJwoYgY5l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'MeO-TPD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55||1.093|212.2|0.764|17.71|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b00953|xHn72S-U-J4GBWjmAjLRSjZnOsI4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.0|0.71|15.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs', 'Spiro-MeOTAD', 'Ag']|['P3HT; SWCNTs', 'Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|xHp8xMDOidSZJoxbPF_Hsz1yiYhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||17.0|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60', 'C60-ETA']|bulk|https://doi.org/10.1039/c6ta07876a|xHpu9PoYKZPR4UeHrDzPX1cS7_ct|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'C60-ETA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.02|200.3|0.71|14.49|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201804217|xHxvKTK3vNfeT3b-fIDnFUaISftK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.300000245251625||||5.58|['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['BenMeIM-Cl', 'C60']|bulk|https://doi.org/10.1016/j.jssc.2018.12.007|xI0M8C0GKrDA43JTVFh3W9mL33JI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'BenMeIM-Cl', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br3H12I6N3Sb2|Sb2N3H12I6Br3|(NH4)3Sb2Br3I6|2.4900002655115423|0.76|7.7|0.325|0.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1002/anie.201702265|xIDNWtZDmYSF-xRRxgjEBa8jm0bi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is (NH4)3Sb2Br3I6. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.66|218.3|0.64|9.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|xITaqYhFkyqPEETGj5edj5RH18OE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|240.5|0.73|18.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta07043a|xIVVOCYmBwSGARoL3qZ0lUkVFaU8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5400001642119578|1.031|219.0|0.73|16.48|['SLG', 'FTO', 'TiO2-c', 'rGO; TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'rGO:TiO2-nanofibrse']|bulk|https://doi.org/10.1016/j.energy.2019.116396|xIVxuCSgsMujDruWW8AAlnvQ5cIA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'rGO; TiO2-nanofibers', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.162|228.8|0.8140000000000001|21.63|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'CdZnSeS-QDs', 'C60', 'BCP', 'Cu']|['NiO-c']|['CdZnSeS-QDs', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta12368g|xIhCSmqMsSHqfwHTzKmVO0nci59t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'CdZnSeS-QDs', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.3|0.755|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201800066|xIy_69Xtfxoc-I53FcIu-dIX2dyx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.878|166.0|0.451|6.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2-QDs', 'Au']|['CuInS2-QDs']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b05104|xJ2T6-X07Pb_F_Pd9f1vX3BS4BK3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuInS2-QDs', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.6|0.716|16.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|xJ7vLApxnyd-tlKhYFR5PpN9erMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.94|120.3|0.591|6.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|xJDW-WeMhzdEiBRlbgqzk2O2Kd-D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -C7H33I15N5OPb5|Pb5C7N5H33OI15|(5-AVA)0.1MA0.9PbI3||0.91|234.3|0.64|14.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02163|xJUoVKRijmcfp6QuDqQNt2EY_CSL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Carbon-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is (5-AVA)0.1MA0.9PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.85|202.0|0.768|13.2|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'TiO2', 'BCP']|bulk|https://doi.org/10.1016/j.matlet.2018.09.141|xJZ7m-e6pdJ2CxrI9lakE1v16XEq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br17C100H517I283N183Pb100|Pb100C100N183H517I283Br17|FA0.83MA0.17PbBr0.17I2.83||1.1|201.0|0.7120000000000001|15.66|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201900720|xJgMO_qmlhL4qXenodPqJSxG6X3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.17I2.83. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.858|202.0|0.648|11.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.accounts.5b00440|xJi0vC8FLZa-uxWOkL45zWpFFrY2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.82|192.0|0.54|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.150743|xJlATB2hd4_z2d-atUCp_d2jlwwP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|217.0|0.76|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201505255|xJrNYE5rPyz-V5NufCih1WXkkjuk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.0|0.55|11.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.5b01924|xJtlMiGUtOGs2nuu6TbdrqaVjJo_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|249.41|0.7240000000000001|17.92|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|xK3FunL0S2hdWgvcUO3L2aoFUzi3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|184.0|0.64|11.3|['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-mp']|bulk|https://doi.org/10.1016/j.solener.2018.08.004|xKCpuWhvsIkbtaN4F9dHocUmrKj2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.45|248.7|0.63|7.05|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.006|xKSzLahEdSCbxGD4awKvqsOX87Me|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|186.0|0.51|8.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b06780|xKatL2s4pqjZW53LdwHr3GTsvAJw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.08|212.5|0.61|13.99|['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC', 'Zn(acac)2', 'Ag']|['PTAA']|['ITIC', 'Zn(acac)2']|bulk|https://doi.org/10.1016/j.solener.2019.07.073|xKgt3ghc-wAOntmu6PuVyi8inpNv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'ITIC', 'Zn(acac)2', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|239.7|0.75|19.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.03.046|xKiWd60qIRVkLhXWTrjPgMguikMP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MnOx', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|226.4|0.64|15.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2941181|xKvsfOQF7uZNOnNzvrNHRznWUW_u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3|||||10.2|['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.03.061|xKx5gOdaWRHf8LxTpvirGRDhZp4F|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.25|128.6|0.75|12.06|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']|['PTB7']|['TiO2-c']|not processed|https://doi.org/10.1039/c9ta07143a|xKzzZVOcWXX3FAFSUYSTNagOHviF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTB7', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|185.9|0.67|11.94|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.7603279|xL-MV7Vv3sDq30QVBHkbwcMxMViH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|180.6|0.72|11.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c4ta04647a|xL0IODxz1YsFu_o-95vpF05RJ-_4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br64C175Cs75H875I186N350Pb250|Cs75Pb250C175N350H875I186Br64|Cs0.3FA0.7PbBr0.256I0.744|1.7200001834055632|0.988|179.8|0.6759999999999999|12.01|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsnano.7b02867|xL2rIwMxFmRQiJ75jxPHO0Yd5JFn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.3FA0.7PbBr0.256I0.744. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.826|174.5|0.66|9.52|['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']|['rGO']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.07.022|xL38cBjbx839ssd1B2DxtBbX8_4x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|120.0|0.44|4.19|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|xL6aZCq0SZcCbEY5AiucAPVsgLRy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|224.0|0.685|16.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']|['TB4-ZnPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cptc.201900245|xLSeXOWndbddXvBpG3EUlUM8MlvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TB4-ZnPc', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|236.4|0.557|11.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.07.038|xLWHXCvcqxIBdGUGsvzN8PATzeEu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|194.0|0.61|11.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|xLWMj683u1xkOFOj1CwM1F5U_wYn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|231.7|0.6609999999999999|15.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1142/S179329201950022X|xLbwWzLtl-lbNaH0HGXpAgtMvKu4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|194.0|0.54|11.3|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|xLkrmQnzflcmq-cGv0rvkqop1ks5|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|221.5|0.782|17.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b02141|xM8WvaaM0UweXmX5o1IIrMTDtSE9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2400C1804Cs95H9324I3600N3304Pb2000Rb100|Cs95Rb100Pb2000C1804N3304H9324I3600Br2400|Cs0.0475FA0.75MA0.152Rb0.05PbBr1.2I1.8|1.780000189803432|1.11|162.39999999999998|0.77|13.93||['PC60BM/Rh']|['ITO', 'PTAA']|not processed|https://doi.org/10.1002/solr.202000740|xMGJvSsKDFJruAjrmvtnCW4A3LNB|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.0475FA0.75MA0.152Rb0.05PbBr1.2I1.8. -Br3C20H120I57N20Pb20|Pb20C20N20H120I57Br3|MAPbBr0.15I2.85||1.0|100.3|0.59|5.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b01033|xMaz32rjZva8MSgN_TIa5qSWmvuE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|215.0|0.79|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5cc10608g|xMwD1Z7c2j3KPI5qkixVVgpP-CVZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.38|61.5|0.705|5.98|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1002/adma.201800855|xNDW9MjVQJ05H2qmNmTqm9LNb2OW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|225.0|0.743|17.3|['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']|['none']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603850|xNiOVnpCipib0P3jmyzNf54St0z0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|120.0|0.73|7.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b00026|xNpLan3pmM7zHIO_pqHnroIfWmqp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|212.0|0.65|14.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/smll.201804005|xNpROPsXYSUpMPQVnY072QGyMiF-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.08|203.0|0.755|16.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900602|xNuqWTRtRos5rb9SbAsiwstjsuJQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|224.7|0.66|14.97|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'TZ1', 'Ag']|['TZ1']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2924745|xO8_519ZPksJwqmZ95b1CgBmPA7Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'TZ1', 'Ag']? The composition of the perovskite layer is MAPbI3. -C85Cs15H484I300N111Pb100|Cs15Pb100C85N111H484I300|Cs0.15FA0.26MA0.59PbI3||1.06|213.0|0.764|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2019.110200|xOBfjuhJVrLx87o686pP7A77t1XU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.26MA0.59PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|219.0|0.726|15.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00457a|xOCMXcG4b7r-Y9KbH3h9LbB0hn9u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|144.2|0.66|9.06|['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Grafted rGO; Polyacrylonitrile']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.11.003|xOGaDdJVGqyLmbLGE8ZoV0dkqtEq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Grafted rGO; Polyacrylonitrile', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|228.3|0.63|14.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|xOOyV-lQq6bS6QzRgoCXGm-H7AsB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|216.7|0.758|17.8|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2020.228443|xORStCuE19s2G4gMdQD-20ok4NnP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|234.5|0.753|19.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800027|xOR_pWx1Nna4Ff9xtArl7MPX1OYl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.98|128.4|0.58|7.54|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ra07549e|xOVXFMEvjnTOsVtTN37srydAF7mY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H51I30N19Pb10|Pb10C10N19H51I30|FA0.9MA0.1PbI3||1.12|232.8|0.762|19.83|['SLG', 'ITO', 'SnO2-c', 'NPC60 OH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'NPC60 OH']|bulk|https://doi.org/10.1021/acsami.9b09238|xOh5mMOBTbz-QARh-xAS8cmn4Twm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'NPC60 OH', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbI3. -Br50C100H517I250N183Pb100|Pb100C100N183H517I250Br50|FA0.83MA0.17PbBr0.50I2.50|||||17.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1186/s11671-017-2418-9|xOnX4gp872La0KAxyuuXZpIUR0pS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.50I2.50. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.16|231.3|0.79|21.2|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103867|xOo8Gs4Y14TBFzqzHYXP0-M-TZ2s|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C100H600I297N100Pb100|Pb100C100N100H600I297Br3|MAPbBr0.03I2.97||1.025|218.0|0.74|17.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201503124|xP-b-z2WfwJI4nvBwLzFqni61vXS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.03I2.97. -C10H53I30N17Pb5Sn5|Pb5Sn5C10N17H53I30|FA0.7MA0.3Pb0.5Sn0.5I3|1.2500001332889268|0.76|298.0|0.65|15.0||['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.202000681|xPDAWnaNytahUCiJr1umYzh_EDWA|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.7MA0.3Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.051|202.5|0.713|15.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2018.10.043|xPJJa0jDvK1UeVKNrzr9T9-Z7MgB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br180C380Cs20H1957I1020N703Pb400|Cs20Pb400C380N703H1957I1020Br180|Cs0.05FA0.8075MA0.1425PbBr0.45I2.55|1.6200001727424491|1.13|230.0|0.736|18.5|['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c9ta08351k|xPKHKusK5CIvUTP316B9B-O5ShOl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.03|208.5|0.5920000000000001|12.78|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201802421|xPRBSdwhq-yG51Vg_vKHD-kTrzs_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.113|200.2|0.7|15.53|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|xPUR20j5mkuUev4xwFB6IiA4Hnke|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|196.0|0.626|11.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'IZO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|xPYUisrZLTphfPNdGQsoTCbnd30W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'IZO', 'Au']? The composition of the perovskite layer is MAPbI3. -C830Cs170H4150I3000N1660Pb999Sn|Cs170Pb999SnC830N1660H4150I3000|Cs0.17FA0.83Pb0.999Sn0.001I3|1.5500001652782691|0.86|55.0|0.693|3.5|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|xPkk7erqTiUSmu-UJAbRBKKCZH2G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.999Sn0.001I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.68|128.0|0.42|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b01521|xPklfYCmqr9NMTbLXG6LkxLyT0NQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|189.2|0.65|10.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2017.10.019|xPmll95AQRFROz4HlCMblKKMBqa7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|145.9|0.29|3.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.05.048|xPstWSl7FvEgQbvNazFUN6p1ooKy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.95|172.0|0.71|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201408638|xPtTmqtsqYWvP_TSOSkarsCQbQfI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C9CsH53I30N10Pb10|CsPb10C9N10H53I30|Cs0.1FA0.1MA0.8Pb1.0I3|||||7.86|['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']|['NiO']|['PCBM-60']|bulk|https://doi.org/10.1039/c7tc00882a|xPtXab7hbc7xXrMVPz8RFNhV8nFe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.1MA0.8Pb1.0I3. -Br46C100H517I254N183Pb100|Pb100C100N183H517I254Br46|FA0.83MA0.17PbBr0.46I2.54|1.570000167410892|1.11|155.0|0.59|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201600624|xQFh-5a2Xm5jgd5xqyAnzOr5pEi0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.46I2.54. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']|['Spiro-MeOTAD', 'PbS']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.05.040|xQHsnUM4Q2d391W_CBObC9BJqM67|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PbS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|226.3|0.6|14.13|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta01730k|xQMqzu25dRylW6TQERNllFagbGuj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|200.0|0.711|15.29|['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']|['NiMgLiO-c']|['SFX-PDI4', 'TiO2-c']|bulk|https://doi.org/10.1002/solr.201700046|xQUTXWfm_L_IaIC-7-y8wE_BHkg_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO-c', 'Perovskite', 'SFX-PDI4', 'TiO2-c', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C20H120I58N20Pb19Sn|Pb19SnC20N20H120I58Br2|MAPb0.95Sn0.05Br0.1I2.9||0.787|77.6|0.731|4.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021931|xQX4k-CIEz0C2H2RLo9y1QHVA3j1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.95Sn0.05Br0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|202.0|0.78|17.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/C8TC01033A|xQaZdp6HeUHdtgZp1fryNZI-rh42|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C14H44I16N10O4Sn5|Sn5C14N10H44O4I16|(5-AVA)2FA4Sn5I16||0.47|156.0|0.5720000000000001|4.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/adfm.201807696|xQco-sLMl6iYdZEb9jJl_eYGUkpO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (5-AVA)2FA4Sn5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.99|146.6|0.489|7.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.027|xQgUR3L64I3TcUWVjdo-hLYMiaUI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.45|175.0|0.32|2.49|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'Ag']|['PEDOT:PSS']|['BCP']|bulk|https://doi.org/10.1002/cphc.201601245|xQgYT5pkAu0MP-b_vQ2wYh65CzAS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.95|190.4|0.58|10.59|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|xR-F7laMxaiiceGr-42KSDQaPsFS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|210.2|0.7440000000000001|16.55|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adma.201606774|xR61twuQ1CQvLzDgh1rSZljDv60D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.97|230.4|0.643|14.37|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.spmi.2017.09.048|xRFXE2p6-aMcXsepr9ug8_Irfx5n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|226.3|0.7|17.17|['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Ti3C2Tx']|bulk|https://doi.org/10.1002/adfm.201905694|xRGCACXg2U8YNEq6atgDaja90rmZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ti3C2Tx', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C20H120I60N20Pb17Sn3|Pb17Sn3C20N20H120I60|MAPb0.85Sn0.15I3|1.5100001610130236|1.018|208.5|0.5870000000000001|12.46|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c8ta05282d|xRNYp8s_kR4-Zqc-pZX4_Ixfar0n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.85Sn0.15I3. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57||0.91|82.2|0.43|3.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|xRTXqr8mgA6ufR-DJyryFwVRSSo7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']|['Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9ee01773a|xRUeCM9GlTrf2RlJ9-S9Bu8Fw06B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Mo(tfd-COCF3)3', 'SWCNTs', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|220.0|0.81|19.3|['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']|['DFH']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee02983d|xR_jnv1ibW4XlplK9mII2PLxn_9r|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DFH', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|228.1|0.792|20.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.06.034|xRcnxB18P7ZOseEFsMSYh0Nzejd_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.07|218.5|0.65|15.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|xRqeLuohX2JheqmZWhOsXyq86hmL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|201.1|0.7|14.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.11638|xRrwnbh2tx3G2mWHSt_m8YJdbNCf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.92|179.0|0.71|11.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-70', 'ZnO-np']|bulk|https://doi.org/10.1063/1.5010261|xRvzHY_bKX_OE4qsAeqvndMTaie5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.726|201.8|0.451|6.61|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-c']|bulk|https://doi.org/10.1002/pssr.201600315|xS9FF10_hOhgqTtHaLeUtMkDnJgG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|162.3|0.436|6.86|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ee02465f|xSCKgTBy95DQ523rTPOPEFkTTM-p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.0|0.6779999999999999|7.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b00900|xSCUiTwPDIz8uDgWZpU64DNu24N2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5300001631456466|0.905|171.6|0.73|11.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201600230|xSN4QIIjRZ6Ez3q6QMnQyX7SVXLq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.861|225.5|0.61|11.82|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.55.122301|xSUMmQzYUWvNunwCfPhPML3IP4eu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.8|0.7|15.3|['SLG', 'FTO', 'Cu0.67Cr0.33O2', 'Perovskite', 'PCBM-60', 'Ag']|['Cu0.67Cr0.33O2']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700058|xSkQHclq6jgl78TuL6_Lk-0jqaeb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Cu0.67Cr0.33O2', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.988|184.1|0.74|13.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|xSn9oZyZsG3B-cPElM5F8IqILvyn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|234.5|0.68|14.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8se00332g|xSo9B66yqg6Il4wkRej9_QQ5GOWd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-c', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -BiCs25I75Pb24|Cs25Pb24BiI75|CsBi0.04Pb0.96I3|1.5600001663445808|0.98|187.7|0.6709999999999999|12.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']|['CuI']|['TiO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b00508|xSodCAWJXVLLcSxc3QFLIkVJgMNT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuI', 'Au']? The composition of the perovskite layer is CsBi0.04Pb0.96I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.917|168.9|0.669|10.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MeO-BPZTPA', 'Au']|['MeO-BPZTPA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jechem.2016.03.021|xSpiUICbTqc1kKjMSwyWis1a16tK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MeO-BPZTPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|174.0|0.655|11.4|['PEN', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEDOT:PSS', 'PEI', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.10.032|xSrGXP0R1xUK96Kmkt-LFurZSrGQ|a perovskite solar cell with the following device stack: ['PEN', 'PEDOT:PSS', 'PEI', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.8|0.7929999999999999|19.32|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|xSseALLDWSf6SEAzXqywn3ho7zz3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|212.1|0.727|15.58|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|xSuGrcZD-cS3KrdQl6NMPfSWjzQb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3||0.92|229.2|0.66|13.93|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.01.065|xT0Auf8z3n1YrXcQrCYewsFwBnfY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|225.0|0.757|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature14133|xT1zp9Q_q0ZpNtSB0xMlg4IYhqVM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|210.8|0.747|16.53|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.104229|xTDW1eM5ZK1f6A04XHaHxA9U4GXi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br5Cs2ISn2|Cs2Sn2IBr5|CsSnBr2.5I0.5|2.360000251649494|0.5720000000000001|0.1|0.372|0.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']|['Carbon']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00100b|xTNYw1WS-JEJqN7uC1YrmJiVaz5z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is CsSnBr2.5I0.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|172.10000000000002|0.71|12.31|['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'CuSCN', 'Ta:Wox-np', 'Carbon']|['CuSCN', 'Ta:Wox-np']|['Fullerene-SAM']|bulk|https://doi.org/10.1002/aenm.201802085|xTPEW0toiJ6yT_wr66rCZiIJNsid|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Fullerene-SAM', 'Perovskite', 'CuSCN', 'Ta:Wox-np', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|131.2|0.488|6.58|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|xTS05POUjUDTAZDGYIfsblTKTdpD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.06|208.0|0.53|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|xTTvQ2TACx9n3IDPXRwNGXqqCoLv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.16|10.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|xT_PbjLLaiyZxbIs72mtY8mXP32V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.69|255.0|0.705|12.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|xTbnvK9k1X0l_YVyp7mHJSK19gzf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|158.0|0.66|15.8|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1038/ncomms3761|xTeQk3IXAhjuQL4Cc1o6na4fJtbK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.83|204.0|0.7|10.4|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/C6TA00739B|xTr8WCwOjhXiXCucgEwwnU0EYYJm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.128|236.0|0.779|20.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|xTrjgupHt0Pq2O-_d5TzltZA1eGL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|195.5|0.72|13.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-10', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'ZIF-8-10']|bulk|https://doi.org/10.1039/c7cc09452c|xTw9pMHUF4tslKnCIo0Ub_2ylbmE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZIF-8-10', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Pb4|Pb4C4N5H23I12|FA0.25MA0.75PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201802223|xU3pQfOvZknYR6IoxMVDpH3fIvyu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is FA0.25MA0.75PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|204.0|0.7240000000000001|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.57.08RE11|xU5I7u66gKstwbDf8uCa5p_HtiNn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.8b00277|xUHjoBhTSQWVbJBVqamLYm6vuUUH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br18C17Cs3H85I42N34Pb20|Cs3Pb20C17N34H85I42Br18|Cs0.15FA0.85PbBr0.9I2.1|1.6800001791403176|1.188|199.6|0.769|18.23||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|xUHmxj-HQsRENJL7oLa12YsuN85T|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.3|0.74|15.12|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta09740a|xUMqbFQxRd5T38zqqVXWrH1I0EJU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.108|227.6|0.797|20.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201903108|xUR_xMJsT16rKn8nL9Eo6K1biyTc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|229.0|0.76|17.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PolyTPD', 'Spiro-MeOTAD', 'Au']|['PolyTPD', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.12.082|xUVgYIShbkekKohsNopTExbaSAzc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PolyTPD', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|215.7|0.5820000000000001|9.52|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta03693c|xUd3Ki2OsXRYefc2Ql3RE_WFYdM5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C50H281I150N69Pb50|Pb50C50N69H281I150|FA0.38MA0.62PbI3||1.071|216.2|0.736|17.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.09.014|xUm2y7WHAJaJ6n7euHup8KnNX_aC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.38MA0.62PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|195.3|0.5539999999999999|9.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00058|xUmg9cHDz3xUrULjvSjomQw2HaP9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.041|219.0|0.735|16.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b03144|xV1w70ncl6mb905SljwKdHutzeCk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9||0.445|4.699999999999999|0.382|0.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1016/j.jallcom.2017.12.188|xVCVwhhyhg275rP58dAPnSG0Bme_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|190.8|0.66|10.64|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2015.10.018|xVLLpZHgQ10EmXKqf3i8ehOQ9qM8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|209.0|0.79|16.24|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b18757|xVRwUnd3OpUobQ3osIJQbwu8F-tn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7||1.014|227.7|0.782|18.06|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']|['NiO-c']|['C60; PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ta11782a|xVRxaDqCuKuIdCwsBGfqP7gmzcHT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'C60; PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbBr0.3I2.7. -Br30C20CsH110I30N30Pb20|CsPb20C20N30H110I30Br30|Cs0.05FA0.5MA0.5PbBr1.5I1.5||1.07|196.4|0.755|15.86|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']|['NiO-np']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1016/j.synthmet.2019.116197|xVkIOesEc9MsyMXcxTDe6RSHIaoG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.5MA0.5PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|195.0|0.7170000000000001|14.9|['Flexible', 'IZO', 'PEIE', 'C60', 'B4PyMPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60', 'B4PyMPM']|bulk|https://doi.org/10.1080/14686996.2019.1633952|xW2hdXEFHtVjaKn7SXAk8neIiFe5|a perovskite solar cell with the following device stack: ['Flexible', 'IZO', 'PEIE', 'C60', 'B4PyMPM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|162.8|0.74|10.99|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta09740a|xW3weYq1_zd6BX4NiNFW2KhD3rt2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|81.7|0.457|3.92|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['TEABr', 'PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|xWLa7LbBYfN_zVYBxhLN8S2lTM2y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'TEABr', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.33000024845056|1.431|64.9|0.7659999999999999|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800060|xWVwCzc_y-pXkvTqoi9_xSwaLUj-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85||1.08|232.9|0.7190000000000001|18.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']|['XPP']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/aenm.201700683|xWu4PN_Z24GQLP9OTk1uoRgYj7oI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'XPP', 'MoO3', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.045|219.4|0.6759999999999999|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M7-BR', 'Au']|['M7-Br']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2016.10.041|xWuJKHPlwod20LAERQjIuBW7wMOZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M7-BR', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|206.3|0.698|15.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc02923g|xWvxCHvOZYzp9I3z2n9-gBBHRWVD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C93Cs7H481I250N170Pb100|Cs7Pb100C93N170H481I250Br50|Cs0.07FA0.77MA0.16PbBr0.50I2.50|1.6390001747684408|1.06|167.0|0.73|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.7b12464|xWyFYIhgtG2ThtaZnCgF3HvP3Woj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.77MA0.16PbBr0.50I2.50. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|183.2|0.69|12.33|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|xWyIsIzYVfQETFBeN7LzJQVJWXl9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.0|0.644|12.15|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|xX6K8r2mFFWVDvwcUdbktJK0DZFz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||0.855|190.4|0.574|9.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']|['NiO']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|xXF9gMcBlWtRtlP6txyf6Qw2JFwv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|156.1|0.68|9.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBC', 'Au']|['TPBC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cc06493c|xXSlgYi2gdlgqZA71OOd3gkJWX02|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TPBC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.085|214.5|0.768|17.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Pyr', 'Au']|['3,6-Pyr']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/solr.201800337|xXVUpmXypUEdgnnry1snjpgieeNL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '3,6-Pyr', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C96H495I255N177Pb100|Pb100C96N177H495I255Br45|FA0.81MA0.15PbBr0.45I2.55||1.18|226.1|0.75|20.01|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1126/science.aap9282|xXVg8T19r7AXBk1r0Ep_JkrXmOpC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is FA0.81MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|156.2|0.688|10.25|['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']|['DBFMT']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227488|xXeOAXIdYTv5tZgn_ngL6osa0Xkh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DBFMT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|217.5|0.67|14.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.024|xXggZPrqO8CHiOvz8kRPiMJkNf-N|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.44|72.30000000000001|0.76|7.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|xXjnkRx7u51xU7aaAj6TQUQ33KJ7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5960001701833018|1.012|164.89999999999998|0.49|8.22|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.01.025|xXlI5G_Ee16FSIcflP78pueenGYT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.071|208.32|0.644|14.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPcNO2-OPh', 'Au']|['ZnPcNO2-OPh']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2017.05.089|xXps920JtrLewvSOWnPihgHhQnQq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'ZnPcNO2-OPh', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.996|169.0|0.7|11.8|['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1002/cssc.201501659|xXqmmPFIue59Hwq1keQIV2r7Q1-c|a perovskite solar cell with the following device stack: ['PET', 'IZO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20Ge20H120I51N20|Ge20C20N20H120I51Br9|MAGeBr0.45I2.55||0.444|23.9|0.46|0.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsaem.8b00007|xXrus3b243pg938n_Lh9fezdGFLH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAGeBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|132.0|0.62|8.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b02868|xXyYOVlreyg_ci4SrqMXZVawwR66|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|193.0|0.667|12.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.10.256|xXzHselnp1-ZKHuNFM-hW2WDk4r2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|131.0|0.35|3.59|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.7498/aps.67.20172463|xY7dNXCo7t5ohKJNzo-8YyYsuqS_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.962|220.8|0.608|13.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|xYclKoUMWaJCXlBo0e11dMDAMnFR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|||||4.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201802080|xYpY2IR6imwh74Re9TsA744uFtP_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.113|207.7|0.69|15.56|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6nr09032j|xYtoK5BM2YCSIFUMKwNC2WnEaINi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBrI2. -C7H12I4N2Pb|PbC7N2H12I4|(PyrEA)PbI4|2.480000264445231|0.76|8.41|0.518|0.34|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|xYvlewDi4S-NDZAOK15wXZYdKxlh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PyrEA)PbI4. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.08|242.2|0.75|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|xZCJkhTdJ497M1z8Ax9mDSJ_dUpx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|182.0|0.7290000000000001|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2017.05.021|xZE6vKi_CW3Lpy21NkFxBPorW7VL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.19|166.0|0.64|12.68|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpcs.2017.03.020|xZILXKOBO-FDewAVbSewkde-yWzM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|138.0|0.589|7.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|xZJ8n1SLbxx6ANFgPjQ9KgGnkGyK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|109.0|0.475|5.0|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2019.01.061|xZO-IvLcDHs2M4JvZLIhSuKoGLqO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|1.6000001706098266|1.16|225.4|0.711|19.12|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.05.010|xZVvslfY4E2dIngDSjnBfYaPf9s1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.15|234.1|0.779|20.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Trimethylamine oxide']|bulk|https://doi.org/10.1021/acsami.9b11229|xZaA4SmHAxEIdBAZyhwYE4Vwcqp6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Trimethylamine oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|221.0|0.73|17.0|['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2']|bulk|https://doi.org/10.1021/acssuschemeng.9b00368|xZiu5FIpIKs_UqTMw5Q0kkQrljKr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|216.7|0.508|10.8|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDT-TPA', 'Au']|['IDT-TPA']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700197|xZllXSCpDzJ2wAwQIaBGnk086RSX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'IDT-TPA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.93|217.4|0.75|15.19|['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']|['PANI']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|xZt2UgcS6DcbrXs-y2_JM1NIUE-K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PANI', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|216.0|0.77|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6mh00160b|xZtRa8xt-IHkPVHlI8WedReh7FIw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.36|77.6|0.76|8.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jechem.2018.10.001|x_4K45Jn04IOX7vTxe7HyUnbVoh8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|84.0|0.66|4.78|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cu']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jallcom.2019.05.051|x_Bfdrekc0A_azmXplMpYSsos_qd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|212.4|0.738|15.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2775162|x_CRikU5naK3wuu7P-w9hqpbDkDk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|229.3|0.68|10.98|['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['WOx']|bulk|https://doi.org/10.1016/j.orgel.2017.04.024|x_Cpaci52EW0kYGlm9PnieJpIgM9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'WOx', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|177.2|0.716|12.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acs.nanolett.7b00289|x_IxghyLaHyyvecCQDKNXTOBsUNl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|166.9|0.645|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b05298|x_J2qBqOAMEZH1EhhUlmPHJVGq2R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|58.9|0.63|2.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201301327|x_L6Y_ws-_9c7HyPLMBj9QjsQFLD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|188.2|0.71|12.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|x_OMRz2Wayhjf2sESzGcd98ykgo8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.6|0.71|10.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta11892f|x_T75V1aTgsBSjFAwmTUBSlvVz5x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'ITO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8690000000000001|183.1|0.753|11.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|x_ZAk5M7ALyW8R-DoxL4XdEablu8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|209.5|0.741|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00125h|x_cv3_ZVTyzXNhYaqAwmiWY267Vd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H490I257N175Pb100|Cs5Pb100C95N175H490I257Br43|Cs0.05FA0.80MA0.15PbBr0.43I2.57||1.08|239.0|0.75|18.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201901519|x_mspCGjkCSsAlqwoJseRiGb4KW_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3||1.072|228.0|0.6940000000000001|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1361-6463/ab938c|x_tu0ryIlKoy3udPRgvHyPH5_kaw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5800001684772036|1.11|231.0|0.71|19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201700677|xa9qi3pZYAUmZcTI7HbwZEzKzM7a|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|128.6|0.6579999999999999|7.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201500456|xaEx-0-V-XJM4twdKZzpg7yT3YG5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.8|221.0|0.56|9.96|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['SnO2-c']|bulk|https://doi.org/10.1039/c8ta00526e|xaHv3MBERpmgDTMgsGc6e5fMW1lC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|202.7|0.61|12.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b05172|xaJXGWXN5iiL_OXb2E4FOpCjTLUc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|222.4|0.789|18.81|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['PCDTBT8']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.12.028|xaUVV5yhJ_Ngtnl252-92O8UU2Oh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|0.955|103.0|0.581|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/pssa.201600591|xaU_u8b9JDvl3wO1DmbisttV-3iE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|207.5|0.55|11.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1109/JPHOTOV.2019.2941181|xaWS5lIPDt23qhHlC7w6Bkn4-Xii|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Pd']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|235.0|0.66|15.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201900027|xaapyD2t8Oj4OFFfix1NkFyuG2LP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C31H162I13N25Sn4|Sn4C31N25H162I13|BA2MA23Sn4I13||0.16|81.4|0.327|0.44|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1002/advs.201800793|xanaJ2wLg_UeH2YnkDQ0wgoKsyD9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is BA2MA23Sn4I13. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.01|195.3|0.713|14.09|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/cssc.201802231|xaqdmsFR5_ihQpN2tEzqZUmcmJ3Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.7|0.7120000000000001|15.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201801171|xasSWi9BNLoqlJYL3i-WgsRHuZE5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.895|141.9|0.477|6.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b02701|xb2e2OhK1uwfQpU4YH4xOnQ6AiX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.01|193.3|0.7|13.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta03990h|xb4PljjqNdKZMI6uosmWxdmHWGmQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||5.32|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|xb5xdGwVeA0qZPTyKV-P5S7A6Ly4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|184.5|0.695|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.023|xb6RIj9GsvEqxYJxv5bPz7Ek-mOP|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3||0.92|157.0|0.61|7.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5mh00170f|xb8ihHSyHQsaKYuTVHrMBMCKU4xu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|216.0|0.69|13.7|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|xbBiIvsO-lmaduidDYvVhWbeyfbE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br12C20H103I48N37Pb20|Pb20C20N37H103I48Br12|FA0.85MA0.15PbBr0.6I2.4||0.89|166.0|0.484|7.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|xbJJVOjaKMBWBLOPPPhOv6nAtwK4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|188.9|0.66|12.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6TA04465D|xbeedIH1qzFuoO2KqiFgiMO_UEla|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.049|190.46|0.777|15.51|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||xbj9sq6GtpLRafW4x2lGVrEKCDA8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.981|196.5|0.743|14.32|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.ceramint.2018.02.147|xbp6IO17WydcY3GstM04s_JOLuso|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|216.0|0.624|13.8|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']|['P1']|['TiO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1021/jacs.9b08424|xbz97H7wm5TYKhDhPcSyBXG8cPRk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'P1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|199.3|0.65|13.31|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']|['P3CT']|['PFPDI']|bulk|https://doi.org/10.1039/c9nr03030a|xc2eQWPosJTfm79PFMzHR6xLKwHj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.3100002463179368|1.39|74.2|0.753|7.76|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2015.08.023|xc3DNAtbo34aeKutyv97t0zBUZjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|204.0|0.703|14.14|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1007/s10853-019-03768-2|xc9lApFDB0yRj6hESpdCntZPtOSk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|224.0|0.6859999999999999|15.21|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.08.020|xcCc-AnnGbPi_7XnsCYTspiO2hjI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|164.89999999999998|0.352|4.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']|['TT80']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt00396b|xcEVh5R_qiV0Uu7SqmxhEtZfS_hU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT80', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|188.5|0.79|14.83|['SLG', 'ITO', 'PTB7-Th; PFN', 'Perovskite', 'PCBM-60', 'Al']|['PTB7-TH; PFN']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201606363|xcO9eIb_13GL7dy5zdjUD20FV0li|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTB7-Th; PFN', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.04|200.5|0.7|14.7|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']|['NiO-c']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1021/acsaem.9b01200|xcjQelqsABZ2v_WlWdp3VzR6eqCj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'TIPD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712||||16.22|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Cz-OMeTAD', 'Au']|['Cz-OMeTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/cssc.201700678|xclQK4ZQuDYdR5yYNtvkj85IcNIW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Cz-OMeTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|232.0|0.73|16.9|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b15175|xcrP6TNDSIumJKeEcHe-RQcRIUPw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|175.6|0.589|8.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1007/s12274-017-1515-5|xcwtrqYL7Kb-YFxQdPYl8BHbsuwU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0590000000000002|213.0|0.804|18.2|['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']|['F6-TCNNQ', 'TaTm']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8se00218e|xczXPG2lYPQfr4PcPSgOw2QkcpCy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ', 'TaTm', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|198.6|0.706|14.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6tc04647a|xd--tEpSJWEMeXOhwLpfD9f-rz15|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.09|221.0|0.73|17.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2019.10.067|xd5zRSTVz_ygnKMJoWH64sqs_wX1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Cs2GeI6Sn|Cs2SnGeI6|CsGe0.5Sn0.5I3|||||6.48|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1038/s41467-018-07951-y|xd8EC3ZhCqIxpetzx8Jii3PuCFdD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsGe0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|168.70000000000002|0.718|11.71|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|xdBdE4Ydt-Hs1P10wJuAkCzJWG0z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb3|Pb3CNH6I3|MAPb3I3||0.92|204.5|0.7|13.16|['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'Fullerenol']|bulk|https://doi.org/10.1021/acsami.6b04895|xdE_TdyHfJKV0NE_apkArfDlsnPq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Fullerenol', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPb3I3. -Br81C100H600I219N100Pb100|Pb100C100N100H600I219Br81|MAPbBr0.81I2.19|1.710000182339252|1.11|167.5|0.51|9.44|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCB-C12', 'AZO', 'Ag']|['PTAA']|['PCB-C12']|bulk|https://doi.org/10.1021/acsami.8b04439|xdEwm94ydvszYtV9y3A_ciJAQ1Of|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCB-C12', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbBr0.81I2.19. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|208.0|0.63|11.92|['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nanosphere']|bulk|https://doi.org/10.1002/aenm.201701722|xdiLh6RkhfhR512Ftn1DtLeGL-y2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nanosphere', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|185.8|0.775|14.97|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2019.144478|xdxIaQTNrDM-XFotYo09WzwvDtkR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.125|240.1|0.743|20.07|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']|['PTAA', 'PMMA']|['PEIE', 'PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/solr.201900243|xe1CzNBhr5ElRrjKeAxZN-7xM3oV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'PEAI', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|183.0|0.59|10.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adfm.201504451|xe2Ce94559GK_sgpYLL3dz6ggxQE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.92|43.8|0.61|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8cc07298a|xe53GcJO0DLBsr9DZKN7pKUAL7oj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -C2H11I3N3Pb|PbC2N3H11I3|FAMAPbI3|1.5460001648517447|1.004|237.4|0.7829999999999999|18.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01978|xeDlnIrksfHeL4QPrbQHu6sexZKA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAMAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|224.0|0.55|10.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.11.119|xeJuZZ96u3P5r-B_42fIbQ-W-gBe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.58|138.0|0.45|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4941226|xeZ-81fU4pSwmQS0PlggLRCFgHD6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|91.0|0.37|2.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta07972e|xedBgo0LEZYDnzCrPkBh9k-3ligv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.003|212.0|0.365|7.77|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1109/PVSC.2015.7355719|xeksWZ4gNrThDb-6mROG89SngfaA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.76|94.6|0.7|5.01|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsomega.7b00814|xesviXjBjaS7ErP9LD-aC0HcQzZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is CsPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.08|201.9|0.7509999999999999|16.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1021/acsami.9b21628|xeuSSpCf_52HoDymfaCgoiyd8TX7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.12|217.4|0.764|18.59|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smtd.201900476|xf0DWzazPFqnbOAJgeb5YaM7_XzT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.009|14.0|0.28|0.0|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1063/1.4941217|xf0rB-Ht4qhOMSy8B445hXjwwZyr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.96|194.8|0.69|12.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-018-0343-z|xf2Wz0HZnLSfONLe3guZoOF6y5ZF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -B14C5F56H30IN5Pb5|B14Pb5C5N5H30IF56|MAPb(BF4)2.80I0.2||0.996|82.69999999999999|0.7|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/aenm.201502009|xf5Kc9ExQOuETQBdAWqfOrTZ0AHi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb(BF4)2.80I0.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||11.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2019.05.019|xf6PngFyArmyFd5RInxzCRbo7yIK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10|||||3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|xf7eCnKYLTvYr3ZLpr7hJa-7rL7_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.08|228.9|0.763|18.05|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1007/s40820-020-00517-y|xfAE8u9lp8ak71WrU8rIPFdnkmt0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.97|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|xfDW3YktT3blJxoEiIwDW0pj0cqC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6140001721026624|1.09|233.4|0.75|19.15|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0nr01142h|xfV2rR2wPn8mDi6OKYsOKUmvfGYg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|215.0|0.73|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.08.011|xfXjaw6j4e8rVAiPoU9YtNisS3sg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|212.0|0.72|14.7|['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|xfY8ErQ_ow8j2XZV03wA580EyzKm|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.84|214.3|0.574|10.34|['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['AZO-c', 'ZnO-nw']|bulk|https://doi.org/10.7567/JJAP.57.06KB03|xfc7OHMr-v1YuHA-ObBb2b7tNOcc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'AZO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|0.84|131.3|0.57|6.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04590a|xfeUwnIgdfD9QLpw2yNw8QOZa7m3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.92|205.2|0.52|9.9|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/smll.201802738|xfzt4PYG2JDlBSNGBoUHK6EmlW59|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|122.81|0.396|4.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/admt.201800156|xg0bEufhCXabL-Dx_3p7GmqCXxuF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|214.6|0.7|15.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2018.07.107|xg3gGicPIlNFCWtkRq7xZhs4dFKV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|160.0|0.4|5.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.03.005|xgA6HGXOiwqNfY7YOuBHb59h7mxn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon; TiO2-np']? The composition of the perovskite layer is MAPbI3. -Br9C2Cs8H10I21N4Pb10|Cs8Pb10C2N4H10I21Br9|Cs0.8FA0.2PbBr0.9I2.1|1.740000185538186|1.18|177.8|0.757|15.94||['C60', 'BCP']|['ITO', 'PTAA']|not processed|https://doi.org/10.1515/nanoph-2020-0634|xgEnk-VuJeCl8caWAvVqVgQhSAho|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.8FA0.2PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|160.51|0.5329999999999999|8.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2017.15118|xgHMXqx-VLClbf3FToe2iBDFwnES|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.93|159.0|0.62|9.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra04611a|xgJbvZHBPWN9q1BqikBgQCc27khH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3||0.95|158.0|0.53|7.4|['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']|['Spiro-MeOTAD', 'PEDOT:PSS']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c5ta01755f|xgZATJaXh3c67aD8PIMr3vwgxZqs|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'TCA', 'PET:Ni-mesh']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.71|271.0|0.695|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|xh11cVfx12GbBy4TbgPeFwI50iTN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.12|210.8|0.76|17.98|['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']|['NiO-c', 'NiO-mp']|['ZnO-np']|bulk|https://doi.org/10.1016/j.joule.2018.10.018|xhAislTKLbHVEfOKpIOvesM_sf0d|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'NiO-mp', 'Perovskite', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|175.6|0.607|10.54|['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b12849|xhLPbog2fPZcCBE5G8B2ze9z7u07|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'In2O3', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.03|185.8|0.5379999999999999|10.35|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9tc03941d|xhThMydhqD8sgQV4pqcw0wsxMlwI|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C2H11IN3Pb|PbC2N3H11IBr3|FAMAPbBr3I|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/adma.201503406|xhW5itcOJuKPpbxsZZ5IEfzQq0oO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAMAPbBr3I. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.01|235.6|0.6459999999999999|15.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1364/OE.26.00A984|xhWhhkLvX3jUQDdTZY5QJAMBk-mM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPb1.0I3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2|120.6|0.72|9.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03622|xhZMhNC8BAbv7s71CnN7HLrHliKS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.4|0.64|12.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/nano8110897|xhadUetQZI5rBn6nJfZ9Vw_NWXDi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|219.6|0.74|17.06|['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnSe']|bulk|https://doi.org/10.1021/acsnano.8b01351|xhg4jobYyYrdbhI2uJk25cyVke1n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnSe', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|165.0|0.66|10.58|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.03.017|xhk3ZiiT2Vy64sT3MoIwVmVytlCI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|226.0|0.622|14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.160059|xhqlASwWbPdbLATeLNTmoPmN-Qd6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|181.4|0.64|11.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta08744a|xhtfW7VcxzGqiyfdgK_oBv_vW8Wq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|206.0|0.435|9.7|['SLG', 'ITO', 'ZnSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnSO']|bulk|https://doi.org/10.1016/j.jechem.2017.09.026|xi1Izn2QcVlGtdHKh12VV03k7cCd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.03|190.0|0.72|14.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms14075|xi3hdQClrwLICn03r30uUZAVwfRj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|222.0|0.64|15.9|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9481-3|xi5ynpKV-P5Lno0dsyGmlDsCAUh0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS', 'PEDOT:PSS', 'PDMS']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|210.7|0.72|14.56|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9nj02074h|xi9Be-LNVYWsV81tQKgavTc56LPM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.939|154.3|0.612|8.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/ja4132246|xiBKPKSUerPijd1bHk0GZpY7IvG1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||11.26|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M106', 'Ag']|['M106']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b02090|xiJmbkJScHkY2pvvhzu-74jPHEw8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M106', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.957|164.0|0.72|11.22|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|xiZIpkPIGebFbNCCrkRfhzhfqPxo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.865|181.9|0.7|11.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/C9RA05357C|xiZRpkwyfGz3Ak0ro1She0mMDp-F|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.05|205.0|0.73|15.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']|['PPDT2FBT']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b12973|xic-5u1dLH0Gd-TFCQ72fRiWH8T3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PPDT2FBT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']|['PEDOT:PSS']|['C60; PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1002/adfm.201904684|xicEacdTb3Ps8LwtTID4n_f6MXEr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60; PCBM-60', 'Zr(acac)4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|230.99|0.738|17.21|['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SrTiO3', 'Graphene; Al2O3-mp']|bulk|https://doi.org/10.1002/aenm.201903369|xinjqxCN6kUovS-VQkz-jCV_lRke|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SrTiO3', 'Graphene; Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.154|208.7|0.7759999999999999|18.68|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900176|xirvfWgyZlbCZRefQ2oncIFXI3s5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br51C20H117I9N23Pb20|Pb20C20N23H117I9Br51|FA0.15MA0.85PbBr2.55I0.45|1.5300001631456466|1.04|205.4|0.72|15.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b10730|xj4fowOBLsWpRDmKKXCFqqgfcPyW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.15MA0.85PbBr2.55I0.45. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.06|227.4|0.77|18.56|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['3-acetylpyridine', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/C9TA07238A|xj5MeczxtWe9ohDo-aarr7p9yR-d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', '3-acetylpyridine', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|149.4|0.675|9.37|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8tc00768c|xj7BfIJEl349wL4hv-_pjlKT6xqZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Cu; Cu2O']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.11|228.4|0.7659999999999999|19.51|['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'PCBM-60']|bulk|https://doi.org/10.1002/smtd.201900476|xj8p3nzivNHgfF1w9qGIaxftbXHf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.775|46.1|0.696|2.66|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']|['none']|['ZnO-np']|bulk|https://doi.org/10.1021/acsaem.8b02232|xjE1wzPVxHXtABEz8bu-ewsBXhTk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.053|161.9|0.6859999999999999|11.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105453|xjNpmcI_I1vqu44OM2UBhOjfKXUx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|188.4|0.644|11.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/chem.201703382|xjOLXrrtgb3JdKY0Fh6_5qmbteZ4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.97|230.0|0.75|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|xjP9L3Cz-T4K6rnTDs9tBrjIIvED|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|180.3|0.78|15.39|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta10597b|xjTmpGxok_sE1ZNSh_gaKaWp5Ov5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.79|213.2|0.51|8.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT; Graphene', 'Au']|['PEDOT; Graphene']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s00289-018-2275-4|xje-aDipoygJDC2HO9oZ3CarjOAX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT; Graphene', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|200.0|0.655|13.3|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|xjpg2O0jMjWzGykHmQSfyYug3Noh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.07|214.9|0.7170000000000001|15.85|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|xjpuxsJFIIar0KgLmXZI0llH4-iR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5500001652782691|1.015|240.0|0.654|15.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M4; PCBM-60', 'Au']|['M4; PCBM-60']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03564|xjx8P_x6yJXWf4ZrT-0lAGHT273q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'M4; PCBM-60', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.08|212.0|0.601|13.7|['SLG', 'ITO', 'ZnSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnSO']|bulk|https://doi.org/10.1016/j.jechem.2017.09.026|xk4I8pxTKw393svLS6oudU7gOz_o|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnSO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.046|186.7|0.672|13.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||xkKR_GEF5Y2Bowm_CI7Ze-Gy2fq3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.2009999999999998|144.8|0.7609999999999999|13.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201801123|xka86wNdh9SasoH-AKh0mO0XI8j0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||1.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1155/2017/8107073|xkdlZRf-ThL6LhunyMRiP-ScZ21B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|155.1|0.58|7.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Ag-np', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.7b02799|xkhuFJM8AQ6DAoIcljQ0FA1PeLkY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag-np', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|93.1|0.494|3.91|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3DDT', 'Ag']|['P3DDT']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.6b10651|xklLdzLWZFo83PMFTAUIKu8Gggan|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'P3DDT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|1.06|225.1|0.78|18.54|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01928|xkvh3RBZY5xfKpWTKK7Wd4Ur8uhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.7240000000000001|52.1|0.59|2.22|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']|['none']|['TiO2-nt']|bulk|https://doi.org/10.1039/c9ce00533a|xl4V50N9ZfJWimCiZ7lHHrPz6kAD|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Ag']? The composition of the perovskite layer is MAPbBr3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.8200001940686776|1.17|147.0|0.7|12.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']|['NiO-c']|['C60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201702140|xlIOm22Id5d2xFh7AOG6HPoP_lHs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.868|127.0|0.58|6.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|xlND0z0T5e9BpwuMp5EvSs-kdKmP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||212.0|0.71|15.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2726563|xlPXoNKmEPkqaBb46NGif90prXAG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.8|0.7140000000000001|15.03|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsaem.9b00486|xlPyvXXEBszmR56hFA50rH899h7b|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.887|198.0|0.75|13.1|['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['Spiro-MeOTAD']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsaem.7b00208|xl__O40ManNSZeZj6P7AnO2YbdLN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Spiro-MeOTAD', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.016|216.0|0.77|16.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Poly-N-vinylcarbazole', 'Spiro-MeOTAD', 'Au']|['Poly-N-vinylcarbazole', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09314k|xld8MzhEdU5mAZPAmy5AUC0oeDFe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Poly-N-vinylcarbazole', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.21|64.0|0.53|4.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T30P', 'Au']|['T30P']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|xllLeIEwt_Goym5rPERq62-sxuDB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T30P', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|208.3|0.731|15.84|['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']|['c-TCTA']|['c-HATNA', 'bis-C60']|bulk|https://doi.org/10.1016/j.joule.2017.11.006|xm-VPW6wXQXQCzq7jlVyCdX1F98D|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'c-TCTA', 'Perovskite', 'c-HATNA', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||13.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ra13582c|xm08H9dinUV2CgXJyVomBqJUPNyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.04|144.3|0.8140000000000001|12.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2019.04.067|xmPxRyQbtGSoIodJOIaQi2GLaJ6b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|218.0|0.77|16.8|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201903653|xmdqK0A3RNqXRgU20zCd2soWJ4TJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.04|227.0|0.68|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.03.021|xmeM3dLzSgNZZGyuc_PQ9DxfTXWN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.03|225.8|0.69|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ra10294a|xn-XuicEsLmmWzbNAghM2r9l1Y2g|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.855|170.0|0.55|8.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.10.024|xn3_5yfoHxkfY9FA9UkEQ6KQD9VD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5800001684772036|1.125|226.3|0.75|18.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta00931g|xnF45HNjMGXnrRjjPULc2jRktA8T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|179.60000000000002|0.66|11.88|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['NiO-c']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.jpcc.8b05374|xnLO-oKInkLFVcW-QJPJkHRNplRN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.69|13.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|xnXDDHr6_T5eYUePhhDgBVkaDCPX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.97|209.9|0.733|14.89|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.3390/nano8090720|xnX_hRGUBNkOuCCdynbd9MWE-Dvu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|221.5|0.75|18.52|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta12597c|xnZ7DkAz9bmuqB0oD70OZtPhGFor|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPbBr0.45I2.55||0.81|212.3|0.69|11.8|['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1088/1674-1056/27/1/018804|xniyIJUIs2fGrBoAuHZ3dbzc7wi4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.45I2.55. -Br8C20Cs5H100I67N40Pb25|Cs5Pb25C20N40H100I67Br8|Cs0.2FA0.8PbBr0.32I2.68||1.009|220.8|0.762|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2017.11.045|xnkT6J8-qUbi3v5QMDq4cdwbGYiu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbBr0.32I2.68. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5100001610130236|1.05|205.9|0.66|14.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ra07603c|xnr6M3imC0mBbNwBL4lHzui-uqRP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|45.4|0.54|2.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c4fd00155a|xnwVY_J0uOljLX-RYTs1zcCb08No|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|151.1|0.335|5.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c4ta06198e|xnxpT3hW9yHE7zmeL82hZwW2kflC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.025|192.5|0.75|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s10854-017-7203-0|xny0yNYkBDvxaW6S0hvpu3qtYTis|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Ag']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.75|96.5|0.68|4.92|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'Acetonitrile; I2; LiI; PMII; Propylene glycol; TBP', 'Graphite']|['HfO2', 'Acetonitrile; I2; LiI; PMII; Propylene glycol; TBP']|['TiO2-mp']|bulk|https://doi.org/10.1007/s10904-016-0410-y|xo2ZWyLDE6LFlsb8pDCUkx85m86H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'Acetonitrile; I2; LiI; PMII; Propylene glycol; TBP', 'Graphite']? The composition of the perovskite layer is MASnCl3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||0.76|47.0|0.727|2.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'D149']|bulk|https://doi.org/10.1246/bcsj.20170423|xoIIlrfdooVFg-pU8pcFAmgFwLX0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'D149', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|126.0|0.732|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NPHOTON.2013.80|xoKpY4_UUjNLb19ZqC1KCIKiftZo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.2600002409863795|1.4|64.6|0.792|7.14|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.152903|xoP9HGh6HCayEcMo1Vg4D6Cb5tZZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|238.0|0.532|12.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.surfcoat.2018.09.072|xoQDXl7DkhBJpeINZNrVFHPUZOfv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|220.4|0.7|15.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']|['PCDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta03103c|xoWBzV9ldwYYUCIqaJkr39wjw42K|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCDTBT', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C8H40I24N16Pb3Sn5|Pb3Sn5C8N16H40I24|FAPb0.375Sn0.625I3|1.210000129023681|0.537|176.35000000000002|0.545|6.19|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1126/science.aaf9717|xoWF4SmBUv95iqucDuQRuLDPt8RX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is FAPb0.375Sn0.625I3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3|1.5100001610130236|0.97|210.0|0.72|15.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201601881|xoYmfsOcIIIj3dI6OBFH_cdi7Xw3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.8540000000000001|113.5|0.58|5.72|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|xo_-RduiRQDDsyFNTh7MdlCBW3o6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3|1.400000149283598|0.31|160.7|0.626|3.12|['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201606964|xodM37S-tMDdGqxQwZrbeDPIMvJA|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.14|234.0|0.7659999999999999|19.45|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['PMMA', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201701256|xop1tSXmrfF_cMydKrQwpYUNhWu7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|209.8|0.6459999999999999|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.6b03445|xoqYrsGyW7SGI2PL1MgK0ALh_gqo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|210.0|0.68|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.11.013|xosuUNEHuMVcJGhFFIUF-wcN8rdk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.45|76.8|0.78|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']|['MnS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|xowtdThGcZL3eww1zgC078ilF2FW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MnS', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.911|186.4|0.69|11.75|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/am5057807|xp51yIoxZKEk8sYQ-o3aPRqIGHLu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|145.6|0.816|14.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PF8-TAA', 'Au']|['PF8-TAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b03413|xp5IoZybVaLuh0yhGuPgNdurkvo3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PF8-TAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Br39C91Cs5H467I261N170Pb100|Cs5Pb100C91N170H467I261Br39|Cs0.05FA0.79MA0.12PbBr0.39I2.61||1.05|219.0|0.731|16.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp03760k|xp6vY4tTEhgZsui_BghmVt6b2-WA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.12PbBr0.39I2.61. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.115|226.0|0.75|19.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|xpFSoXvYrcQS4Db5rUGNis9y6-Lt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|100.0|0.31|2.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']|['p-DTS(FBTTh2)2']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|xpM_2TcODCFtr27WY_XYJge_sZ5k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'p-DTS(FBTTh2)2', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.878|144.3|0.53|6.81|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']|['none']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1039/c6ta01715k|xpSM8fjvkDwoqHBKybdyubylPAB4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'Perovskite', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -Br300Cs100Pb97Sm3|Cs100Sm3Pb97Br300|CsPb0.97Sm0.03Br3||1.615|78.1|0.855|10.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']|['CuCrO2-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/anie.201910843|xpXStx1aHQcbXanGRyiy_3bE8rSn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuCrO2-np', 'Carbon']? The composition of the perovskite layer is CsPb0.97Sm0.03Br3. -C95Cs5H489I300N176Pb100|Cs5Pb100C95N176H489I300|Cs0.05FA0.81MA0.14PbI3||1.06|223.0|0.695|16.54|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201808357|xpYkq0dmtDGTn6DxpJ9XtMFUOkwd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|220.0|0.65|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsnano.8b06062|xpevaWtm8k6kNcDhZtEJBAMLHcrS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|184.0|0.649|11.22|['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene; TFSA', 'PET', 'Ag']|['PTAA', 'PEDOT:PSS']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.10.190|xppYCpIDgB9OMaqx-pdpfVTwI6cr|a perovskite solar cell with the following device stack: ['PET', 'Graphene; TETA', 'ZnO-np', 'Perovskite', 'PTAA', 'PEDOT:PSS', 'Graphene; TFSA', 'PET', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C17Cs3H85I57N34Pb20|Cs3Pb20C17N34H85I57Br3|Cs0.15FA0.85PbBr0.15I2.85|1.5900001695435149|1.0|224.0|0.74|15.0|['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/adma.201603747|xpsRTtIK4Ug7gbm5wN-wHLnBdEFD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.15I2.85. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.07|223.6|0.67|16.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN1', 'Cu']|['YN1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b04003|xq6zqE1NkZdpyb7Q373apbUYxDdK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'YN1', 'Cu']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -Br3C10H60I27N10Pb10|Pb10C10N10H60I27Br3|MAPbBr0.3I2.7|1.6200001727424491|1.056|208.5|0.68|14.92|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2019.04.053|xq7bnXKS5-6Bg7jvDu1l4Lh0E2Aa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD']? The composition of the perovskite layer is MAPbBr0.3I2.7. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.43|232.2|0.63|6.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1701293|xqESmiQ5RTmga8wS-MBbKm-PNHCT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.71|6.0|0.19|0.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'PEDOT:PSS', 'Ni-grid']|['SWCNTs', 'PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1038/s41467-017-01842-4|xqHHB2gRr48bpiuK0cdnepCGDLxD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'SWCNTs', 'PEDOT:PSS', 'Ni-grid']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.1|204.0|0.77|17.5|['SLG', 'FTO', 'TiO2-c', 'AgInS2-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'AgInS2-QDs; TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.029|xqKi9bFOYKaVSuYbftA6MbdDScvp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'AgInS2-QDs; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|126.0|0.78|10.95|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b15607|xqUD14vw2-85jp0MdZVPZNf10zF2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.825|164.0|0.753|10.19|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2015.06.024|xqamVZEG0cV8jqyrMDHxCfL_F5Vn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'IZO']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|192.8|0.622|12.11|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1021/acsami.9b12829|xqdjOj9anbZRhZ8CW5Q8_b1ZRpfG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/adfm.201809129|xqiJxDOtdm9YO6t7UV4k24yGWlhm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['P3CT-N']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1038/s41467-018-06204-2|xql1HCsbXm4OXoY7kHExcJV0Tvwl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|182.8|0.7609999999999999|13.49|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7', 'Ag']|['NiO-c']|['HATNAS3C7']|bulk|https://doi.org/10.1002/anie.201604399|xqlX6eHOIqyIvbAzQPFLUvoHDDzw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'HATNAS3C7', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|173.29999999999998|0.68|12.37|['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']|['PEDOT:PSS', 'PSS-Na']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201700184|xqrH1aCpZGpd97r8vtrnJNVwiRmN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PSS-Na', 'Perovskite', 'PCBM-60', 'PEI', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|205.0|0.66|13.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.07.088|xr-ns9LO9TEgxQWCSLjufqCGymMY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.0|0.61|14.4|['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np; TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01331|xr11l3zp7X36RylP52m0cIFnRkML|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np; TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br80C83Cs17H415I220N166Pb100|Cs17Pb100C83N166H415I220Br80|Cs0.17FA0.83PbBr0.8I2.2|1.7200001834055632|1.244|195.0|0.767|18.6|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|xr8kdngkssykmiiBk7Z01mfzBm4r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.8I2.2. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.8|175.6|0.74|10.46|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'Spiro-MeOTAD', 'Graphite']|['HfO2', 'Spiro-MeOTAD']|['TiO2-mp']|bulk|https://doi.org/10.1007/s10904-016-0410-y|xrD8BJREEO6TW3VC6ZMArePTCEZO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'HfO2', 'Spiro-MeOTAD', 'Graphite']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|158.0|0.62|11.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|xrE3KaH84zr_Nq3ocJ9hq_R6M9AX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|184.5|0.72|12.5|['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5', 'TiO2-mp']|bulk|https://doi.org/10.3791/59929|xrEA9Gg5tNYmtNHMJqFqKomR_Y_C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C93Cs7H465I300N186Pb100|Cs7Pb100C93N186H465I300|Cs0.07FA0.93PbI3||0.957|223.8|0.631|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/s41560-019-0406-2|xrNRfO15pAYRetCMqpU-PEyN4OQR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.93PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.01|188.3|0.546|7.61|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b16601|xraSyp10WdfP8paUgWuhkEd1bdkC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.865|155.29999999999998|0.43|5.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02710a|xrc8jtTqnnL419hUjAmT2NxCRGk3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C18H36I10N4Pb3|Pb3C18N4H36I10|(PEA)2MA2Pb3I10||0.9|98.0|0.368|3.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1016/j.solmat.2018.11.030|xrgtNbYvZpkcmvVatL_SdoPpyVJJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is (PEA)2MA2Pb3I10. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.935|188.0|0.71|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.009|xrho9bZkMnAVS193GbFo5XrJ9Gdv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.073|174.0|0.74|13.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jz502009r|xrn7ag79YILh-pDFDPtmIMJjFPDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H487I255N178Pb100|Cs5Pb100C95N178H487I255Br45|Cs0.05FA0.83MA0.12PbBr0.45I2.55||1.1|198.3|0.55|12.02|['SLG', 'ITO', 'C60-lactone', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60-lactone']|bulk|https://doi.org/10.1021/acs.orglett.9b02635|xry1f1McBlFkaaK6JtPJfiJv1ph1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60-lactone', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.12PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|205.4|0.71|15.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01221|xryqtXbyYzWNbjx-Pbtj-rx1gAtr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.0|219.8|0.56|12.43|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01075|xsAQS3SAQOT1BtNUvym_nh3D9D_Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|220.0|0.7609999999999999|17.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/jacs.5b11740|xsBsDM1M4PwiJX4s3Pq2nVzMoWDW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.971|180.0|0.55|9.7|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1021/acsaem.7b00208|xsDAyzpQxgN54nf0vPleWCSb2P4T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.112|232.9|0.737|19.21|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1088/1361-6528/ab55a1|xsF4DLnoBqaOaLt-aE5QbRzd6bux|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8640000000000001|172.0|0.66|9.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b07703|xsFBNOtJjr-fUiuXnI2TxOKIKBvJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.08|213.3|0.7|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.048|xsJaU-8DgEd-knJdd-lkCHXdADZN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.875|141.9|0.46|5.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.electacta.2018.09.203|xsOMaaeekgKqEEhOCOpRQXa8dXPi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.690000180206629|1.08|196.3|0.753|15.83|['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201900602|xsVrqVAhCfck5uK6lWL4JoEtvxVO|a perovskite solar cell with the following device stack: ['A.R.C.', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|162.0|0.41|5.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2016.09.112|xsfLy75loqDY1L4xm7Tqtwi_bywK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.02|197.3|0.79|15.9|['SLG', 'ITO', 'P3HT', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3HT', 'Al2O3-mp']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.jechem.2019.03.033|xshWyCPiaFUikLodRl8q6DwxS_j2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3HT', 'Al2O3-mp', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C41H121I60N37Sn20|Sn20C41N37H121I60|(PEA)0.15FA0.85SnI3||0.61|220.0|0.701|9.41|['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1016/j.joule.2018.09.012|xsnbtc1zFDEGuF1nN0eEZCWf5URy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)0.15FA0.85SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.923|150.2|0.595|8.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jallcom.2017.11.081|xspoJDmjarty10qSbYZsknsaJUgT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|154.3|0.805|15.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b01859|xsqNnEac4eWUoycxckTfSnTxxG4v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBrI2. -C10FeH60I30N10Pb9|FePb9C10N10H60I30|MAFe0.1Pb0.9I3|1.6100001716761378||||5.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c7ta01327b|xstE1ACjwmGQv5nVP7k20DBhWGvo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAFe0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.797|101.0|0.43|3.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/srep03132|xt68lDsEB38-t34oqqEbCYzhrNq4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon-mp']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.23|74.4|0.61|5.55|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|xt6qMSN9N2OtBhZcCq_QQyCIye5G|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -C121H618I300N100Pb100|Pb100C121N100H618I300|(PEA)0.03MA0.97PbI3|1.6000001706098266|1.06|211.0|0.833|18.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|xtA6O_4Bq_Z-X2S4_bK8L0bcVONu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)0.03MA0.97PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.06|247.0|0.775|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aaa9272|xtB3Y3gxWnY3CuA1xhHlrxXbP3qk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|193.0|0.7809999999999999|16.58|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2017.08.014|xtF0uua97lQ_1S9csblL25IkEBu7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|236.2|0.768|19.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|xtM4Fc316cL48kgl13erU5bgm6b5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|187.6|0.76|14.4|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|xtQiirNRrWuHevgHu3S5uymeEj0z|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C4CsH20I9N8Pb5|CsPb5C4N8H20I9Br6|Cs0.2FA0.8PbBr1.2I1.8|1.8200001940686776|1.18|151.0|0.733|13.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1126/sciadv.aav8925|xtYgFY2ZrSk37IfgKj1f9N8tJ-cJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.2I1.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|209.2|0.49|9.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.02.056|xtZ5CBBAhk9X_aEDE7S1IBipQQDQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|208.1|0.7020000000000001|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00220c|xtcfRcOyLVBK4GB_FWB9hkMaVqcC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.05|232.4|0.72|17.65|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|xtmjXt4W7_pAQHv4-aoonIK7dE-m|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -Br6C4CsH20I9N8Pb5|CsPb5C4N8H20I9Br6|Cs0.2FA0.8PbBr1.2I1.8|1.7700001887371206|1.216|170.0|0.799|16.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1038/s41560-019-0466-3|xu1Su2UFbmpt80ZNFXWET7gb0sIX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.2FA0.8PbBr1.2I1.8. -C100H517I251N183Pb100|Pb100C100N183H517I251|FA0.83MA0.17PbBr0.0I2.51||1.08|228.0|0.79|19.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201703670|xu3x-Il17k7KlXO2xdwLw6SGQX5B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.0I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|185.4|0.62|10.46|['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['CuSCN']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1039/c9qi00557a|xu5sfHTUdcrH6OuY_GPuK8zIX-Bc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuSCN', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.039|90.93|0.19|1.79|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|xuBIkyXbDj5ax8GT6yh0X3DOOUZw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.02|205.5|0.662|13.79|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']|['NiO-c']|['PCBM-60', 'Zr(acac)4']|bulk|https://doi.org/10.1039/c7ee02685d|xuPx1gS6JVFzSN_rxfDwvZhzEd3B|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Zr(acac)4', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|225.0|0.4|8.32|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']|['none']|['SnO2-c']|bulk|https://doi.org/10.1016/j.jallcom.2019.151817|xuRWkaTBJyzVlNrlMd0g4l7RnGss|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.09|216.1|0.73|17.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b02219|xuSwDMtxh9YMp9onuzMkLq6JGFmd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|193.3|0.64|9.46|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra07068j|xufp16k8_Y66FYnijXc7u2_SgjcT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.88|185.0|0.57|9.3|['SLG', 'resist', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1063/1.4918751|xuuKZGp733jly8oRH76wjccRc5CJ|a perovskite solar cell with the following device stack: ['SLG', 'resist', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|195.0|0.557|9.3|['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2016.04.124|xuvSotWcXZWJj4JYR-3e988q_6p1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|203.0|0.71|14.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01939g|xvKs3-ngeF5qseCmQe3sVXuhNDdt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br54C95Cs5H491I246N174Pb100|Cs5Pb100C95N174H491I246Br54|Cs0.05FA0.79MA0.16PbBr0.54I2.46||0.989|212.9|0.589|12.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']|['EH44']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0067-y|xvLTqS8rl2pZNPyJhVZnDvPFrlzy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'EH44', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|29.0|0.713|2.0|['SLG', 'ITO', '3EGO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']|['3EGO-PPV']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsaem.9b01997|xvLo9vHu8IGBB2ArXIl1YXiCCoOG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3EGO-PPV', 'Perovskite', 'PCBM-60', 'BCP', 'cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.5|0.7070000000000001|17.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900249|xvRTD-i12ceK0iw6LuK8KasX1DM4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|107.5|0.55|5.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-1056/27/3/038402|xvZcCNbFvxUCLN8wxW7aTwVJxLAi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|218.8|0.69|15.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ta01824b|xvakPJ-o_Xpvonrs3O0e_4FAR87A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.68|263.0|0.685|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|xw495LeGksWGWJx-6VRlniQqm9j8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.983|198.7|0.61|11.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01038|xw6pZPBq3faY_wd7insJ2KJyM3Fh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|174.0|0.78|12.2|['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']|['Polythiophene']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-015-0755-5|xw9fbDtJNj1cVzW8_yssccQCh-DN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Polythiophene', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|178.0|0.741|11.87|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.saa.2018.09.005|xwIFEQ8Q7bczuA68WA2sS4rbSYt7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.885|177.0|0.544|8.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|xwJfztzWXRtXl4P9rwJqeSTxUqN_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|222.0|0.7509999999999999|17.01|['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PTEG-1']|bulk|https://doi.org/10.1016/j.jpowsour.2018.12.066|xwNNlEBFAgtBHRGhLloe0QEzA_9D|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTEG-1', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.9|190.3|0.72|12.44|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9se00153k|xwQ_DAtBqnwX2Tkxr-lfeVaVh4hU|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.08|210.5|0.772|17.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']|['PTAA']|['C60', 'PEI']|bulk|https://doi.org/10.1039/d0ta00978d|xwQg67qUXW3afz0T-9yZIMuFN3WU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|186.6|0.75|12.22|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/jp508162p|xwbrj5y67JIoY8A6yxQjuoL6ciRf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|163.5|0.65|10.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600493|xwgKOjGTCktmzQdN9S2Qteya4WP9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.956|225.1|0.607|13.07|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.032|xwiFmirOlUKutf9lZNL0bGI-d1ZH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|191.3|0.701|12.01|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1007/s13204-018-0836-3|xwl8rPJmIgATneVXC1UBeVQ6DvlX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5400001642119578|0.89|165.2|0.56|8.23|['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Al']|['Cu2O']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.5b11540|xwsF6dnRcrgSEofuIKmjUfgiD1D-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Cu2O', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.1|106.2|0.6809999999999999|7.96|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.aag2700|xx08hoJMoGN4jy-SyC6xCcNkm6ml|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|225.0|0.74|18.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.04.123|xx1Tp1pGitf9TYj0CM4E976MNTYj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|215.4|0.327|4.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.5b07554|xx5VdS0l9BqNeLchugC5x4TGmJiL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|215.4|0.657|17.24|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/molecules24193466|xx7YtXAG5H49580aUQpLPR_30sGa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.24|146.6|0.75|13.67|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']|['PTAA']|['TiO2-c']|not processed|https://doi.org/10.1002/aenm.201900721|xxI-X32vRAUWnEVnoDfoYGcmHgjP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'MoOx', 'Ag']? The composition of the perovskite layer is CsPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.166|134.5|0.701|11.23|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['SnO2-np']|bulk|https://doi.org/10.1039/C9TA05556H|xxcg0rmPWSVXOoIHjT2W7lFOML_b|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|170.39999999999998|0.37|4.64|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ce00628h|xxgJTVK2RxT3DDDOIdz8cJ8taL9Y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.065|215.3|0.71|16.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|xxmKXrvYKGYb0dgtKI2wpvqlv97Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|0.914|210.0|0.81|15.55|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/srep35705|xxv9f5lEVisQl1Fl226aluxz_npV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.33|189.2|0.61|3.8|['SLG', 'FTO', 'PEG; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS; PEG']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsenergylett.8b00383|xxvZE2BEuLaFhEdPvDGIeD__Xawz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEG; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|233.0|0.66|15.7|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|xxxEnHtCPTzolH_n0JA-2x_ZX5Ey|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|211.9|0.76|17.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cssc.201900106|xy3X_sSIGsI32zpT_W3zNBeNnQbc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|150.0|0.61|8.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1364/OE.24.0A1431|xyFNVlr2KiD53NJrxotuP39XX6hx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|211.3|0.6759999999999999|13.14|['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']|['PEDOT:PSS', 'Au@SiO2-np']|['PCBM-60', 'Rhodamine 101']|bulk|https://doi.org/10.1039/c7se00472a|xyGg4Qo-dUgMJkIYgElpHE0zsRm2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Au@SiO2-np', 'Perovskite', 'PCBM-60', 'Rhodamine 101', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|214.3|0.72|17.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']|['DCZ-OMeTPA']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.103865|xyJgCtKvDVCvgPJry_3lNCVaraNX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DCZ-OMeTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.8000001919360546|0.97|195.9|0.636|12.13|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PTAA']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/ente.201901042|xyfit2ITCkbkgsCnvD4hauoha6Yg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.5900001695435149|1.12|225.0|0.78|19.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201703392|xygUGPVgkVp5R_j3TlGW6uS7Dn8r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|195.9|0.584|11.21|['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO']|['C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.05.004|xyhaMqoi8Id93mCQ9PAXzAF9EphB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.032|256.0|0.43|5.8|['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1088/1361-6463/ab4f07|xyt3Bt3Yf4I2zfBo5Ta8Rk8PK6i0|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.49|80.0|0.34|2.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma11112106|xywvi_BU2KWbVTR8MnE51PNhm5m2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.99|143.0|0.65|9.1|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c8ee01136b|xz2CGfRHDRoApPvUGbcBJAiXopf1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|199.5|0.72|15.37|['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PEI-HI']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2015.10.010|xzCsBTrac4yJUj3mUMdiLVIfnP_4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEI-HI', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.13|229.2|0.78|20.2|['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b01440|xzJbTP3k51nZaIWkO-fbkQzURgIo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br12C17Cs3H85I48N34Pb20|Cs3Pb20C17N34H85I48Br12|Cs0.15FA0.85PbBr0.6I2.4||0.68|164.0|0.428|4.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60; TDPP-CN4', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2019.04.071|xzMCWaBttveS1KCHL6U-SxuclESB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60; TDPP-CN4', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.6I2.4. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.9200002047317917|1.3|131.0|0.652|11.1|['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'H-Z3', 'MoO3', 'Ag']|['H-Z3']|['ZnO-np', 'SnO2-np']|bulk|https://doi.org/10.1002/solr.201900265|xzPG5znYAhlxt-bQ3pq8Rv9kff2J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'SnO2-np', 'Perovskite', 'H-Z3', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.0|0.619|14.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201900557|xzTf3CFmamiR-duoTGdCRXqN20Bb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.08|219.2|0.72|17.04|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c5ee02155c|xzZGPUaBgL_hN2vQyIiZYayuBYHV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.93|182.0|0.59|10.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/s41598-019-45756-1|xz_kVNG8dSQaGjzLLPwia17BHtW_|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.974|184.0|0.7240000000000001|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b15488|xzaB99qLtVNLmQSqIxvykQs0-rVw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|206.3|0.642|11.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.synthmet.2017.02.022|xzg5HYLekh_ctWmFwYJtGKdeFW8I|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.8|0.71|17.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201704181|xzkNiycvdZHT51QNEZnW7gZVRFvE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|146.5|0.7|8.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']|['PEDOT:PSS']|['PCBM-60', 'AZO-np']|bulk|https://doi.org/10.1021/am506785k|xzyPO0fdchO6Ka0FT3BDA1Hm5_95|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'AZO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.838|180.5|0.35|5.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/acsami.8b08383|y-3SA5I-1Ksmt8ZEsheIlsRas1Fy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'AV-Carbon; MAI']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4ta06198e|y-8NLjOd6sFEMjzt8ww5pzzXp7Qo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|210.3|0.79|17.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201801401|y-TXPbV9m1GW8SSn4qtgAxFV4086|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH24I15N4Pb5|CsPb5C4N4H24I15|Cs0.20MA0.80PbI3|1.570000167410892|1.04|67.6|0.65|4.58|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.nanoen.2014.04.017|y-UMT8HsQRUgbw53ASJ9kO3dtn_a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is Cs0.20MA0.80PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.058|212.0|0.755|16.9|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|y-_N89xqJ4g4Zvq_ZrfnDiE4bG1-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3|1.5900001695435149|1.06|244.6|0.7709999999999999|19.98|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b04871|y-pWEySqAVjOGrLvDsx5GpMGReWB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.98|0.748|16.1|['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']|['PTAA']|['TTC', 'C60', 'BCP']|bulk|https://doi.org/10.1007/s40820-019-0282-0|y-tym8BOsTYzduheTSr7yZwhJksX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'TTC', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.850000197267612|1.127|159.8|0.779|14.03|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']|['IEICO; PBDTTT-E-T']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b14957|y02d2On3dDufZG9Q0azDsyBXziZr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'IEICO; PBDTTT-E-T', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|227.3|0.75|16.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s13233-020-8054-8|y0A-jvuGPPSK30nU2L8cO2mCsUCx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|129.4|0.62|6.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02425g|y0A6S1LqgriCFTfoZMs3t8UqBmUI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.92|190.0|0.68|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|y0KFdg812Hp9O_ur0MtH_UbrtUDp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrC5H30I14N5Pb5|Pb5C5N5H30I14Br|MAPbBr0.2I2.8|1.640000174875072|1.04|208.2|0.69|15.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/ente.201700480|y0kGJvpeHzQXS9emQpJ7x2p7oiBd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|230.0|0.67|14.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/solr.201600019|y0m8OFN8ngnmE4zh-LyhUj1H_ZyA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|220.9|0.58|12.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2019.109927|y0qWtjt7no0ftlmFZpguFBWvEPLZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|191.0|0.54|8.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms10030|y0tIVHcPGBXGHe8MrCKwQvlw0l5O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.09|182.9|0.805|15.9|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201903751|y14gx4iTq5Tb8dpAgdPByDl7jmvO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|158.9|0.74|11.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/admi.201500849|y1GhPPx4ncPeaVe1Zw0VYdnpuUZC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.167|228.3|0.768|20.47|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PABA', 'Spiro-MeOTAD', 'Au']|['PABA', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/admi.201901584|y1IJY-MIbHHqPO3qYkJQZBLopSSS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'PABA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|198.1|0.68|14.19|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|y1VxKrp5swSAaBTgEhKUSu60jl_e|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.84|202.0|0.53|9.1|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|y1WWDNt9b6c4i4SHL9uOK9IJkByo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|y1ax5juFXx1-wsWyYapY-nBCOzch|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -Br47C95Cs5H490I253N175Pb100|Cs5Pb100C95N175H490I253Br47|Cs0.05FA0.8MA0.15PbBr0.47I2.53||1.129|226.9|0.727|18.24|['SLG', 'FTO', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-nw']|bulk|https://doi.org/10.1016/j.cej.2018.06.124|y1jMeLR8hOAieMuaC4nZRTJMuNyO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.8MA0.15PbBr0.47I2.53. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|198.7|0.772|14.69|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|y1oyfEsyBWpCDY1i-DGujruwp_Bs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|176.0|0.58|8.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/nature12509|y1rs6VrM_iIeZEKj-8ir18nQut1P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.81|113.8|0.6|5.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.09.067|y1sGvNigQxbxwdmT1ATMvwcVb-uK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|123.7|0.66|8.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60']|bulk|https://doi.org/10.1002/admi.201600484|y1sPSSsyEQ1FH-vMOVBCWc-Jwg8t|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'PEDOT:PSS']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|215.0|0.529|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.09.100|y2JUDcbMuTyyhvtzUvn9cJGjXFod|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8540000000000001|94.2|0.505|4.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1088/1757-899X/303/1/012002|y2VGY-RK1_qJqPnm7W77YLCC8Jx5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.863|116.7|0.59|5.92|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|y2_yBN3e9D2M8wuKvOdt57RA7H0L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.24|64.0|0.55|4.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T40P', 'Au']|['T40P']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|y2mohBHv_n6K3p7BjLcpbZAWpgOu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T40P', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.099|215.7|0.767|18.18|['SLG', 'ITO', 'NiO-c', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c', 'SY1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|y2o6ejB8mTYFNhA5xrRZKY0MD29w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.977|161.0|0.68|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|y2uBM_xW3rQQZu8FE-iNajWAs4Pw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|192.2|0.61|10.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|y3313iIfoyFJYtyfM-G7OP8xMJIc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H59I30N11Pb10|Pb10C10N11H59I30|FA0.1MA0.9PbI3||0.72|183.2|0.355|4.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']|['TT0']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b00425|y332YGrV900ehodO89yYHX5r0y_T|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TT0', 'Au']? The composition of the perovskite layer is FA0.1MA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|235.1|0.7|17.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2018.05.005|y3BbnSDWWVTLRfYHR7T5NFuMXem7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.11|243.9|0.738|19.48|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|y3CSpx10xyf2zZ02u5OSqbmoehv-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|142.0|0.78|8.5|['SLG', 'ITO', 'PEDOT:PSS', 'P3HT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'P3HT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|y3D9in4REnnndzSPAr9tOl6OuEfc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'P3HT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|87.2|0.66|7.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|y3FZvipk7k6llrRKfQvunjYoyXiW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||3.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16437|y3FzlCj13IkvQLR6jcCjHPD8FXsY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br39C95Cs5H485I261N180Pb100|Cs5Pb100C95N180H485I261Br39|Cs0.05FA0.85MA0.10PbBr0.39I2.61||1.07|223.0|0.72|17.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta04246b|y3Nk0vGYVA_9R1eeG8nGSZqq5OOA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.10PbBr0.39I2.61. -Br300Ca3Cs100Pb97|Cs100Ca3Pb97Br300|CsCa0.03Pb0.97Br3|2.2700002420526912|1.47|75.6|0.7959999999999999|8.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201502472|y3O1wB7dxNgq-NEdZl15EfuYbW8k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsCa0.03Pb0.97Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|215.0|0.64|15.2|['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiS2']|bulk|https://doi.org/10.1039/c8ta01143e|y3QgJJMFU-zxAoB49Y5OJl40QBN6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiS2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|144.0|0.65|10.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms8081|y3V2W3X72S_E8Y1k22z9LGJPK6Tf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2200002367211344|0.84|82.2|0.43|2.95|['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'ZnO-c']|bulk|https://doi.org/10.1016/j.solener.2016.10.032|y3c2RF3wp13sem34e076VaMJp2UJ|a perovskite solar cell with the following device stack: ['Nanopaper', 'TiO2', 'Ag', 'TiO2-c', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||0.604|153.78|0.43|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|y3gR-ZUNotrSCrGTJdWHJvqqOrTP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.14|226.6|0.742|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|y3gbT4Ocb80q81CQEMJnDb3WkWoq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808|1.061|218.3|0.703|16.28|['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['PEIE', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta03541a|y3wkqw0vKsDEvK7RYI_R8fzrscXD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEIE', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.85|130.0|0.35|2.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ta01744e|y4FmkX3CRpq-iGg3wRyuJJN49dTA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|216.7|0.732|17.12|['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ta01636k|y4M_IOIuxN5eeQ18EjduXnsdGutF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'ITIC', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|0.95|174.60000000000002|0.42|6.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.9b07381|y4Vmagd8x8oa5COfBGYxw8cEuww9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8290000000000001|200.2|0.721|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.jpcc.6b09722|y4aoliKOxUwoCEbJdqUsRqFLDBn8|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.088|217.7|0.78|21.1|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']|['NiO-c']|['PCBM-60', 'PN4N']|bulk|https://doi.org/10.1016/j.nanoen.2017.02.019|y4dLSMJkveoU8ztQz28W8QvOco3X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PN4N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.02|155.29999999999998|0.474|7.5|['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PEG; ZnO-np']|bulk|https://doi.org/10.1021/acsami.7b02349|y4g4uLHNvaXpWqdAsZy8KDbBWwws|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEG; ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.78|28.2|0.64|1.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|y4gfKix76gM9BZhgLVixNq8H7eov|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.0|0.8|17.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201703054|y4meqj1QZaV-cd0waU64_cVc720g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.04|208.0|0.58|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|y4zTfCLkj_RV7ZPt_qCM7lf7b9s7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.18|59.0|0.46|3.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T60P', 'Au']|['T60P']|['TiO2-c']|bulk|https://doi.org/10.1002/admi.201600506|y4zia-CDAbU_maVHsPWFykniTMp3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'T60P', 'Au']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|||||['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ee00689j|y511mxUg-0IDjNISCznmXfOpy65t|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.54|188.0|0.6970000000000001|12.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta03169a|y5R-GRXqQM21MxscijazIruQg4IV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ba', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.114|226.8|0.785|19.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201904702|y5SD6QSpm5kaSUqjT3bEB_pHQmvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.107|186.0|0.67|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b07496|y5WLQbM_K6Zbj9k87Tm_sON9rtkG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|156.0|0.706|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60-N']|bulk|https://doi.org/10.1021/acsami.5b12740|y5bNOCwmKQMSEjRoT5oyVNYDcaEG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60-N', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|172.10000000000002|0.672|12.73|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']|['Bifluo']|['ZnO-np']|bulk|https://doi.org/10.1016/j.solmat.2018.02.003|y5er7YGQIy17FMaCxxyq5rP-VQzC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'Bifluo', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.08|233.0|0.68|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Benzylamine', 'Spiro-MeOTAD', 'Au']|['Benzylamine', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201603062|y5g7Yhn9_w7Rf3gT-dI9fexR17U_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Benzylamine', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.944|173.9|0.5|7.55|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c6ta01839d|y5kI-O73aPbotzhsS2MnEf7mswlt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.071|211.3|0.6709999999999999|15.19|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|y5mCxgq3Fsdq2NT05KVTvnv6B_Af|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.89|182.0|0.556|9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/NNANO.2015.230|y5rAyigAItWBNH4nYxBGLO2DzSO9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|178.0|0.71|13.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1139/cjc-2015-0427|y5tULqTmj2i-ls6VfWG6vu-WElYK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.513|199.9|0.6759999999999999|6.93|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|y5zwv3WQ9O9O6U5d7CdeF_PMjRUE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|212.5|0.772|17.29|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b08347|y6P_EGuyLK8r-5yj2olCHfGAIAF5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|222.7|0.62|12.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09020f|y6SRXrIxTBzYFW2b5b3VDCqHqcOS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|202.0|0.65|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|y6YsI1BIiI1pUm0wU4-KemzDgAvI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|219.9|0.69|13.88|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.008|y70NNPsFiqdpXdvL_eCrrhxtkBw9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C100H517I251N183Pb100|Pb100C100N183H517I251Br49|FA0.83MA0.17PbBr0.49I2.51|1.6000001706098266|1.1|232.8|0.6890000000000001|17.58|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD', 'MoO3']|['SnO2-np']|bulk|https://doi.org/10.1007/s10853-018-03258-x|y76umcQQ1p5HyEVpcJrqCW7qM3aJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.49I2.51. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|196.0|0.52|11.0|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2017.03.035|y7BXHPpdUWqb33U5ZeTQHI-Cpdvu|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.954|173.9|0.633|10.5|['SLG', 'ITO', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['SY1']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.9b13952|y7ILNeXPOTBGDunRUVKT3RLWQYob|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SY1', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|213.9|0.769|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Au']|['HTM']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b16912|y7IjwVJX5vgfpXKiLU4xeJg1XimB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'HTM', 'Au']? The composition of the perovskite layer is MAPbI3. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.1700002313895768|0.721|2.23|0.222|0.03|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1039/c7ra04924b|y7REaZebqDLN3zl1fzzN5UC6A16U|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|170.0|0.599|8.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ra03175d|y7SRZC_G4-7bZMrszXCwpGyPD1TW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7||1.078|221.0|0.75|17.8|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.8b09515|y7U8WeWgW59GHGQJn9dZCm1QtS4w|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||1.139|225.39|0.772|19.02|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-019-0400-8|y7YpPqABBCRocPIFh-mbVf5NYDHp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.846|193.07|0.532|8.68|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||y7ZmVG0uHkQRSMs9um83XrLAtavZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.61|53.0|0.387|1.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsomega.7b01026|y7fRw9UjNnYB8go5UHmxrIfadYMx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|236.0|0.746|18.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@Ag-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Au@Ag']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.024|y7fnIdZoeVXyWe4c543jbWzGL0Pe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Au@Ag-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.065|182.0|0.6679999999999999|13.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1002/cssc.201600860|y7nISfZ17C9j_FrOEv-B5uQgLPQJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.992|183.2|0.71|12.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1021/acssuschemeng.8b06619|y7rUwKKu2jJt6dBxWmaXveF9cu6v|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|176.70000000000002|0.68|11.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.synthmet.2018.08.013|y7sfoA6UV8ZN02_JdkCeQM-SEWne|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C16H24I4N2Pb|PbC16N2H24I4|(PEA)2PbI4|2.580000275108345|0.81|2.6|0.252|0.053|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|2D|https://doi.org/10.1021/acs.chemmater.8b04064|y7soUl1yLOMnHTSm7T0rOnVULees|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2PbI4. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.003|223.3|0.65|14.56|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16341|y7voaGJ_U09XGW6uPqo5REcPMKxB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.941|169.3|0.531|8.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b00607|y86uxmA6ryYSUvH5EoU_Gofwf7gI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|175.10000000000002|0.69|12.1|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PEIE']|bulk|https://doi.org/10.1002/pssa.201700281|y89da0W5G1Ic2eWpfYuuh27Zh_68|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEIE', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.7|160.0|||['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1007/s10853-017-1842-7|y8D05H6LOwJN_o5G6T3fw7gTpTFk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|185.7|0.49|8.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2017.06.037|y8IoFfjS878e1vPz0dc1OJM1lrXa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.529000163039015|0.95|238.9|0.6779999999999999|15.39|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|y8LOvhScHlr0qaktDKFRRU9AU-IC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|197.8|0.7|14.42|['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']|['PdMe2Pc']|['SnO2-c', 'PCBM-60']|bulk|https://doi.org/10.1039/c7ta07216c|y8Oo0z9aEhKTMSHCCt6_SYnruK2-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'PCBM-60', 'Perovskite', 'PdMe2Pc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7879999999999999|5.0|0.27|0.1|['SLG', 'FTO', 'TiO2-c', 'CeO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Ce2O-mp']|bulk|https://doi.org/10.1002/pssa.201700089|y8SF9z4fmdCrXL0Vtooa0IdFagx4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'CeO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.035|196.5|0.616|12.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.jpcc.6b09722|y8beHDM31_UUfYRk_pSsAr-RzTym|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C100H517I300N183Pb100|Pb100C100N183H517I300|FA0.83MA0.17PbI3||1.154|243.7|0.792|22.26|['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['In2O3-c']|bulk|https://doi.org/10.1002/adma.201905766|y8c5mg5I4xFkIsUK7dA_O0DRmIAJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'In2O3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|199.6|0.731|15.8|['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.024|y8dCMtLe0VIK8oqV_fFQ8s-8soE0|a perovskite solar cell with the following device stack: ['Eu(TTA)2(Phen)MAA', 'SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'NiO', 'Ag', 'NiO', 'NaYF4', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|162.0|0.494|8.09|['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']|['LiMgNiO']|['PCBM-60', 'Carbon-QDs']|bulk|https://doi.org/10.1038/ncomms15330|y8gKuNFQ0X6MbX-9krKCdrkLe0i-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'LiMgNiO-c', 'Perovskite', 'PCBM-60', 'Carbon-QDs', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|||||10.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4991633|y8jXa5ToGHT7GTutMYovQlD-1KnB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|234.1|0.706|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']|['PO-Spiro']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solener.2018.12.014|y8mp_gvNolqXyW4YSkG1F8LUtziS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PO-Spiro', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.84|148.4|0.59|7.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.5.057410|y91uvoQ-bC8z6RiM5w014hfkckSo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.949|173.29999999999998|0.57|9.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q219', 'Carbon']|['Q219']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201700546|y93McQrnx7FMpkSGaVgeT3RIMEeu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Q219', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|220.0|0.56|11.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201900481|y93gTUMBSdMBBb3myoaf97YwHw81|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.526000162719122|1.07|242.7|0.78|20.15|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201902974|y96VP3MIi1v76tpYNX4BJPlnMZZd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49|||||13.5|['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.7b01101|y98-r2j7HHzAnPS615HVFmo_RzA3|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -Br90C92Cs80H483I210N161Pb100|Cs80Pb100C92N161H483I210Br90|Cs0.8FA0.69MA0.23PbBr0.9I2.1||1.18|191.2|0.7|15.79|['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3 ∣ ITO']|['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1021/acsaem.8b00926|y9CRPXDbuglbbWpYBrfCHj_IMb4n|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'MoO3 ∣ ITO']? The composition of the perovskite layer is Cs0.8FA0.69MA0.23PbBr0.9I2.1. -CsI3Pb|CsPbI3|CsPbI3||0.98|87.10000000000001|0.608|5.18|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b09171|y9G8tjMPUc39YIqWCc48iEOH78NQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br10C95Cs5H486I290N179Pb100|Cs5Pb100C95N179H486I290Br10|Cs0.05FA0.84MA0.11PbBr0.1I2.9||1.12|225.4|0.71|17.92|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2019.104189|y9GkI1uAM-FXGgTtyn7ywQtEb-aW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.84MA0.11PbBr0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.15|211.0|0.8|19.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|y9Rpn6WVONvnbLh1raDIrO---BCH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C36H101I52N23Pb16|Pb16C36N23H101I52|(3AMP)FA0.75MA2.25Pb4I13||1.06|125.7|0.736|9.83|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803384|y9dg48i7-rbiy8uS2_kXR8aRJ6fs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)FA0.75MA2.25Pb4I13. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3|1.5800001684772036||||18.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1039/c6ta03381d|y9fgORf6rP6u_68hswlxOe6jfxK5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|1.08|230.9|0.741|18.49|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900045|y9sX7QziqKaDv5_eTXeJILRH7l1B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.2|0.79|18.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800438|yAH7_biXbY3M99mN-QqGDRia8ga0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.06|229.3|0.79|19.2|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'PMMA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|yAKkZb-1Jr85toXlynvoqN5jnBt7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.093|221.4|0.815|19.63|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']|['P3CT-Na']|['PDI-V', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta07349c|yAQSoGtjLsCMsjMc7pU0cRil64HD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'PDI-V', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.05|126.0|0.787|10.4|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201800758|yA_7u44WALSUE2C7LFXlHOeSVEah|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|192.9|0.74|14.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.57.052301|yAhCGKzZAFFOXZlHi9j5pzAYUW3P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|206.0|0.7559999999999999|16.97|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']|['NiO-c']|['C60']|bulk|https://doi.org/10.1002/adma.201600619|yAqX8qi6NsurWlKfpDPvNpayOeXS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|229.0|0.774|19.6|['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA', 'PFN-Br']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201901090|yB2OQwVv09oIbXwVoNY6O_5MQbr3|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN-Br', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6200001727424491|1.12|227.1|0.799|19.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b00991|yB2PqByeDlpd7K7HPbXHcJ592CJ_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br90C183Cs17H915I510N366Pb200|Cs17Pb200C183N366H915I510Br90|Cs0.085FA0.915PbBr0.45I2.55|1.6250001732756048|1.1|227.9|0.767|18.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04936j|yB3vkxJ1RFGg1OVUWhuCMUjvwSvv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.085FA0.915PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|116.6|0.6459999999999999|6.48|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2']|bulk|https://doi.org/10.1039/c5nr08344c|yB6qGmMiGJ1a6ejVQ80Dphh1qP3x|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.500000159946712|1.07|231.7|0.74|18.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201800610|yB7RhDddajzbUq-SC-M1JrppZHF3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -C100H600I300N100Pb97Sb3|Pb97C100Sb3N100H600I300|MAPb0.97Sb0.03I3||0.877|209.0|0.386|7.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/met6070147|yB9XavNKy8GakJt36LPA1nghEdxp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb0.97Sb0.03I3. -CH6I3NPb|PbCNH6I3|MAPbI3||0.91|195.7|0.69|12.27|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5sc03569d|yBFkyNg2_Ou64FVOChdVm5wGM2Qh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|204.0|0.492|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201700474|yBNV0aGZsTjQkklhG5cCCGpOCUp2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||||||['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1246/cl.180211|yBVR3DpKj3pL7zaAQnJPVl-RY2d2|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|177.8|0.55|8.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1021/acsami.6b03724|yBZw3BxPoz-YxMngSJgEeob0E_Fn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.91|194.0|0.8|14.1|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/ncomms10214|yBcqVUMPIfgv7AC3xLIa74pJl0KS|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|1.13|216.0|0.77|18.8|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.8b02408|yBiawLST_g5CT1S8dx6UwjW-iJBz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.943|173.4|0.69|11.36|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']|['NiO-mp']|['TiO2-c', 'TiO2-mp', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acsami.7b02799|yBk6yebc7xpMlNiemgKt5AfL1OTA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Al2O3-mp', 'NiO-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|209.6|0.7490000000000001|15.85|['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jallcom.2019.01.372|yBl5qC-r3vDBauRpI6Y0WwaM9yir|a perovskite solar cell with the following device stack: ['SLG', 'Ag-nw', 'Graphene', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.16|227.0|0.764|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adfm.201809180|yBmBnrL6viHulOeA1Wik3hQzz6Sk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.011|7.800000000000001|0.47|4.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-Ome', 'Au']|['DPP-Ome']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1557/mrc.2018.119|yBn7Y-Fp4DXtEPtzsZssiOgxjQvP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPP-Ome', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691||||7.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-422', 'Au']|['SGT-422']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b20646|yBrgPZrKcxA7V1KluJgICrG7cnsD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SGT-422', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|206.0|0.779|16.8|['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['P3CT-K']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acsami.8b02611|yByhFmrZAhPaOIZ5Qykij-pzefXO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-K', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.02|193.7|0.481|9.51|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1088/1674-1056/27/1/018401|yC6VHYs3WypqKLQnFjlf2L2DSWn4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br31C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br31|Cs0.05FA0.79MA0.16PbBr0.31I2.7||1.14|220.0|0.77|19.3|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/cphc.201800032|yC7-TT1oymI_28IdBwhPaLx7z66Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.31I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|204.0|0.6729999999999999|14.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201502586|yCAfMEKow_-mNrxC_U-hpbL7zSSC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.177|200.0|0.7440000000000001|17.51|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adma.201904408|yCKd3L6_emDSlsvLQ_Y4-JtnJTev|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.056|216.2|0.768|17.54|['SLG', 'ITO', 'PTAA', 'PFNBr', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CA-Br; TPA-PT-C6']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201909509|yCMBcDfOLO8qyqt8WDR0LolCZTOG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFNBr', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|161.0|0.62|8.9|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs', 'Ag']|['P3HT; SWCNTs']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|yCVrG-c2udG7ZmnpG9Oobw6LRUgh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT; SWCNTs', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.95|189.6|0.73|13.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1109/JPHOTOV.2017.2651108|yCW_Blk5GIde4nQO4XzbfxumIeGz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4H24I12N6Pb3|Pb3C4N6H24I12|GUMA3Pb3I12|1.7500001866044976|1.13|180.0|0.6559999999999999|14.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.8b13104|yCbZYSwjmW5yCTIdMohATY4KOR9_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GUMA3Pb3I12. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|181.7|0.755|13.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']|['PEDOT:PSS']|['BCP; PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2018.07.031|yCdoeV4IQn05Twcuu3AEeMeV-onK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'BCP; PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.12|225.4|0.802|19.88|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']|['NiO-c']|['PEAI', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta02389e|yCrn27s1FiVqiKqHuIoUJI00Kdmy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PEAI', 'PCBM-60', 'BCP', 'TeO2', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|188.6|0.741|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']|['PEDOT:PSS']|['PCBM-70']|bulk|https://doi.org/10.1016/j.orgel.2017.10.034|yCugJZXWjlrlf0SlDZ9AivCoonM4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-70', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|238.8|0.767|20.19|['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2‐aminoterephthalic acid', 'Spiro-MeOTAD', 'Ag']|['2‐aminoterephthalic acid', 'Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/anie.201915422|yCzSQ_4DqH8Ppw6X7R8G1iVOHLEz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', '2‐aminoterephthalic acid', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.08|235.0|0.6859999999999999|17.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00691|yD-i_KKMXY0vxWg7hp_QrLq9jf5Q|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.14|226.0|0.778|19.8|['SLG', 'ITO', 'ZnTiO3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnTiO3-c']|bulk|https://doi.org/10.1002/aenm.201901620|yD2PTA4Drole03eK6XsA65VWs8Nz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnTiO3-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|219.0|0.46|8.64|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cp00471k|yD5ANz_N26S8bXXuCxwq0jlFH7tG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.96|183.0|0.61|10.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO']|['NiO-c']|['C60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00926|yD80JG5_3wvDZFlICQ1uu-M9MhU9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-c', 'ITO']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|123.4|0.731|7.76|['SLG', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00796|yDF2Ip5hWRmE4c4lTOYULUXGbKHy|a perovskite solar cell with the following device stack: ['SLG', 'PEI', 'Au', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H60I30N10Pb9Sn|Pb9SnC10N10H60I30|MAPb0.9Sn0.1I3|1.3100001396867953|0.79|158.0|0.619|6.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C6NR00301J|yDQIeieqYs4JHZF5adr6ftPOYV0F|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.9Sn0.1I3. -Br9Cs20I51Pb20|Cs20Pb20I51Br9|CsPbBr0.45I2.55||1.23|133.0|0.68|11.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta07968d|yDR0SI_r8h1yi3Uf5CvEcU6XaB5h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|196.9|0.763|14.57|['SLG', 'ITO', 'Graphene', 'AuCl3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['Graphene', 'AuCl3', 'PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.apsusc.2018.06.068|yDRdbVSPJK4xzw_Xwk5iOsQ7a5My|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene', 'AuCl3', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|180.5|0.48|6.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2016.12323|yDToMP1Dp-PVuTShBec_GljaBjo6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.2600001343552385|0.8|211.2|0.71|11.21|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|yDoFWE0KdbXoK28lG4ZW_JNY2P3a|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -Br10C25H129I65N46Pb25|Pb25C25N46H129I65Br10|FA0.84MA0.16PbBr0.4I2.6|1.5300001631456466|1.08|223.2|0.747|18.07|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5009040|yDuK5KVscZF_HEPbSFJylJ3x4Nzi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.4I2.6. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|162.5|0.56|9.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2018.12.044|yE7jNDoCz8hnv-6f3ySyq5hXDt8l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.68|2.0|0.493|0.07|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|yEBVXIQV0ZXbnJSqslcYRZtSAjHY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||0.86|147.0|0.609|7.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|yENhIBk_rT2hcXLhCuoWiaKfbdhp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16|1.5800001684772036|1.06|202.5|0.738|14.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']|['PEDOT:PSS']|['PCBM-60']|2D|https://doi.org/10.1038/s41566-019-0572-6|yEfC7UWQkfLre4o0khZx0BURXSaJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Cr', 'Au']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|210.0|0.72|16.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|yEj1ad0bP8rOdhaPQ8J4813uqOMV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br49C96Cs4H496I251N176Pb100|Cs4Pb100C96N176H496I251Br49|Cs0.04FA0.8MA0.16PbBr0.49I2.51|1.6200001727424491|1.06|219.8|0.7|16.3|['Willow glass', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acs.jpclett.7b02128|yEun6JJruI18TogfeMm3y43B7z3y|a perovskite solar cell with the following device stack: ['Willow glass', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is Cs0.04FA0.8MA0.16PbBr0.49I2.51. -Br50C100H583I250N117Pb100|Pb100C100N117H583I250Br50|FA0.17MA0.83PbBr0.5I2.5|1.6250001732756048|1.042|227.37|0.6759999999999999|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/C6EE00030D|yEwgcrfQsGl1hNk-ifOQZsIbUsif|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.17MA0.83PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|230.9|0.753|18.09|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acssuschemeng.9b02031|yF2N4aoXA3z-wncPhwOBackgQFgh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||0.92|249.0|0.765|16.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']|['Florinated polymer', 'Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1246/cl.190692|yFOeJ6qRyXo7lq8Z-_Oe2tDWUng0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Florinated polymer', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|211.1|0.79|17.87|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|yFg4Q90fE01gkPAyS4MiNU_a6SCS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|172.0|0.759|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b07781|yG3egS6OyZfIZwhEpFOB3WTKW1KC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.03|195.0|0.684|13.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-2', 'Au']|['TbT-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.joc.9b02769|yG5O9pzhOLnaCDf2rEjczZ46ARfB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TbT-2', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.87|93.0|0.4579999999999999|3.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c4nr02751e|yGEgMoR7n1Y1XLzbXhAmPupYovJp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|77.4|0.29|1.46|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/pssa.201800669|yGHOGFB9u_aayf-lSSnq_akixH3R|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97||1.068|206.2|0.66|16.99|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acssuschemeng.9b03913|yGXOyby4Wrm-GG0nb1PdM_amTjGg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -Br43C100H600I257N100Pb100|Pb100C100N100H600I257Br43|MAPbBr0.43I2.57|||||16.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6ta05209f|yGfRojPU0ixOVmlLTlidCH0sYJ6X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbBr0.43I2.57. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.135|234.5|0.71|18.2|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b07124|yGovs2zV9dH8EqPpjMwAlvGn2ff2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.91|208.0|0.565|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta04616a|yGtuQYH0blzR69CMlWT8z4RVw7Jk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.74|140.5|0.61|6.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|yH0W_EIWDSD-drcjP6XCHDzbou5C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.0|0.74|14.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1038/ncomms14562|yHCkkJ9crsihJnIF_zcwA5KQI4L0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|185.0|0.71|10.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5ta06870c|yHDhMDEVvw5tXNGp8bgU96hkz9o7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|201.9|0.6940000000000001|15.6|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.067|yHIKRnATDmePK82MqVmf8srQzNYT|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|191.7|0.474|7.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.carbon.2019.07.038|yHOAMX_a8xdUliz6iMmC6ZGXDAII|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CCl3H6NSn|SnCNH6Cl3|MASnCl3||0.72|81.4|0.65|3.81|['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']|['Spiro-MeOTAD']|['ZnO-mp']|bulk|https://doi.org/10.1007/s10854-018-9273-z|yHOUIxqGKi-Ju2CVo98OyQkg1Fj_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon']? The composition of the perovskite layer is MASnCl3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|178.78|0.6409999999999999|12.08|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|yHPb5KJkYKyuQnx-ycZauHyo0-yd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H53I30N17Pb10|Pb10C10N17H53I30|FA0.7MA0.3PbI3||1.08|229.2|0.76|18.74|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/solr.201900336|yHS4r1HTVH8qwzR_eMkbZTQP0VAo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.7MA0.3PbI3. -Br51C94Cs6H486I249N172Pb100|Cs6Pb100C94N172H486I249Br51|Cs0.06FA0.78MA0.16PbBr0.51I2.49||||0.76|19.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201902662|yHTO6-23_wNyh7nNBpZzoo9vox0u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.735|182.89|0.473|6.35|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1039/c4ee03664f|yHVzshk8NpSNZV9gcITqx2GlS3fH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8|110.2|0.33|3.59|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6cp03600g|yHWuWqLIYbxPfBilBEFNFfVrI5zK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||0.84|54.0|0.66|3.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.06.059|yH_kiD6IvXk-Rnbh79Gsl6ZwEv4U|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.91|193.0|0.7809999999999999|14.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/aenm.201700977|yHrwgtE78_cr5ypZ33wiJaNoIUAz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.91000020366548|1.14|129.9|0.6|8.93|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2019.02.075|yHzEL-8v7sqOfKxJ5tothN-kdFkl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|217.8|0.74|18.05|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.9b01042|yI5JXFBgpG5JEPJkr-SAIL5gMmgs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.997|220.0|0.57|12.7|['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'SnO2-mp']|bulk|https://doi.org/10.1039/c7ta07663k|yI6-9rs-m5oT0IHeqLQNHEBiUBKa|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'SnO2-c', 'SnO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|216.4|0.6|11.25|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7nr08289d|yI7jyOJF30teJHY5YFLGxrgbUB5y|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.6|0.665|14.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH']|bulk|https://doi.org/10.1039/c5nr01820j|yIXLphNzqQHKbSrtDiFQkWqA_0OS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'HOOC-Ph-SH', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|214.0|0.71|15.8|['SLG', 'ITO', 'PCT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PCT']|['C60', 'BCP']|bulk|https://doi.org/10.1007/s12274-016-1054-5|yIgP-W_o2QlrSlohhiMZ1RMT3YS7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PCT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.021|221.0|0.78|17.61|['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']|['PASQ-IDT']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05026k|yIjD4_E_qFROkFq42r7yzE5IjgoF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PASQ-IDT', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.11|213.0|0.7709999999999999|18.28|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|yIv3jisTx6l7nggZwGIog1SaXb-7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|200.3|0.63|11.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1063/1.5120307|yIxIqfLAJZ3vskSGAV2s_qdyrx7L|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.071|182.07|0.6459999999999999|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphen Oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'Graphene oxide']|bulk|https://doi.org/10.1021/acsenergylett.6b00672|yIxQbsezLN3Xe87N_tjgoTiZOnl3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Graphen Oxide', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|213.2|0.64|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c7ee02048a|yJ-gx2C6xHD87qxPGxhKRYT98hUF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55|1.7300001844718749|1.03|212.9|0.66|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.6b12236|yJKn7yK5lm3NQ1DsFXUVYeklUA-0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|||7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp00460d|yJLBpRlNtEFClUnnuYZC915-bZzD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br21C100H507I279N193Pb100|Pb100C100N193H507I279Br21|FA0.93MA0.07PbBr0.21I2.79||1.01|236.8|0.723|17.97|['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SnO2-np', 'BSO-mp']|bulk|https://doi.org/10.1016/j.joule.2019.05.018|yJV4xrh76-3rP20CT-jt4a5i670O|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SnO2-np', 'BSO-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.93MA0.07PbBr0.21I2.79. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.925|173.2|0.66|10.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr05563f|yJXO3RtqVXplOWxz8WdGljrj7UpB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.640000174875072||||9.31|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|2D|https://doi.org/10.1002/admi.201901259|yJcaF70mQtIA8cswmOLjCsLU4l8W|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|0.857|189.3|0.561|9.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2016.12.079|yJfUR_cORxctNwub63D7x9dIxZJa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|180.0|0.56|10.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['NiO-c']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1002/cnma.201500223|yJgePdw2wf95uKiLfVerPvHSGZDO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C11H30I13N5Pb4|Pb4C11N5H30I13|(BDA)MA3Pb4I13|1.6000001706098266|1.17|139.2|0.741|12.07|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta11744j|yJnyFAIfk6WVabKDQEWCxY-jll9H|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MA3Pb4I13. -C20H103I60N37Pb20|Pb20C20N37H103I60|FA0.85MA0.15PbI3|1.5600001663445808|1.09|240.2|0.7490000000000001|19.55|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900072|yJqEpeeDX8h7MWfzki10M3z4VDyh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5500001652782691|1.12|118.1|0.64|8.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|not processed|https://doi.org/10.1021/acsnano.8b05555|yJs4vfN3v3GNkWdvmdwvTTuu9t_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.13|26.3|0.2789999999999999|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra19702g|yJsLvlo0t14jVsLd3IW337_fFYOC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7|1.5500001652782691|1.07|218.0|0.72|16.4|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c6tc04510c|yJvg5K8KhAUc0pEKM-2OaKlhdP_E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.69|107.0|0.491|3.6|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-62']|bulk|https://doi.org/10.1039/c4nr03366c|yJyu5ojtHW67bBIGRJzniTNRLImF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|176.1|0.61|9.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1063/1.4985826|yK-vZRqiAKBafyXOGjX1CyY6oqTY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|206.7|0.74|15.91|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|yKH4T5u-Khwxi5yKhqi4WI1DKeIu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb3Sn|Pb3SnC11N5H42I13|BA2MA3Pb3SnI13||0.8|198.0|0.71|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/acsami.7b15059|yKJcflRCCdTSHVJzhTbs2vO8EL6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb3SnI13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|226.8|0.6679999999999999|12.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201602120|yKLigUQlvnDzlSYIZKKURiQS2m6M|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|131.0|0.59|7.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1126/science.1243982|yKMog-6A3ERhxHT4vEpiniqxckGX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|236.0|0.66|17.1|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/anie.201906017|yKOFM26BDNEr3lpASWe1l6U_C3db|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|83.0|0.6|4.54|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ta05053k|yKUydWK984SLgCR-OpCBmf4-RM--|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.784|56.0|0.69|3.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/admt.201800688|yKWD-Eu3pHdOdBDNNNeNbScmiWfp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Au', 'Cu', 'MoOx']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.075|228.0|0.77|18.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Poly-N-vinylcarbazole', 'SP-12', 'Au']|['Poly-N-vinylcarbazole', 'SP-12']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta09314k|yKY2sV9HrvvgnHMa2hsxAhpT5S2k|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Poly-N-vinylcarbazole', 'SP-12', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|190.7|0.72|12.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/adma.201600626|yKZIPdyqY7bPAiHuvmbDLKWY9PU4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3||1.08|164.4|0.644|11.3|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900287|yKaUMUeu7jvDtufoWyTjqz6RQTrQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbI3. -Br45C93Cs7H480I255N171Pb100|Cs7Pb100C93N171H480I255Br45|Cs0.07FA0.78MA0.15PbBr0.45I2.55|1.6100001716761378|1.17|227.5|0.762|20.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA']|bulk|https://doi.org/10.1002/aenm.201801208|yKq5nUTGdCJqph_FeSAzUraC4CcD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'PCBM-60; PMMA', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.07FA0.78MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|203.2|0.68|13.26|['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']|['P3CT']|['PFPDI']|bulk|https://doi.org/10.1039/c9nr03030a|yKrQYybrHY8QwmL5mL7Cgz0P88jk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT', 'Perovskite', 'PFPDI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.72|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.007|yKtvXFtwrQNFwc1H77TzxMXzwT12|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|167.0|0.5710000000000001|8.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2016.07.003|yKxp-MveyHpZgO3FPBDFbG3Ib14r|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.83|221.0|0.74|13.8|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8ee01136b|yL3wd6JLSu8NkG_RZ8YfqfxoYUIp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.063|173.0|0.74|13.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/c9py00992b|yL569Iw71W2s1HlGrEiQmL_S9UUH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.092|229.8|0.752|18.28|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.jallcom.2018.07.190|yLANxyc8wlNlNFthzoPbIXUNq5W6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|157.5|0.763|11.95|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2809464|yLF5v9soRlrwnFDWxCcWAU1aMpNy|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.987|206.04|0.654|13.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc01471a|yLK0x_FD3lzuowkmssfPH-Su5DhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|205.6|0.737|15.79|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b02297|yLLPpcDjaBS-K7pgj0cHu--wqmQs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|198.0|0.643|12.4|['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']|['CuS-np']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.5b12776|yLN1Lk-Ptgw25WYnu0r_226Bbcyx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuS-np', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.3|0.76|16.62|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jphotochem.2017.11.031|yLQzfxQk4eLHntwIdAzHbvCH7G-z|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.79|151.0|0.46|5.5|['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.5b05787|yLbADX9SU1z1yXjmW0eXoRkTWENE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|219.2|0.7020000000000001|15.37|['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'Al2O3-mp', 'NiO-np']|bulk|https://doi.org/10.1016/j.nanoen.2019.103964|yLcvuQUojgYBpvlbG6CuJPgBAsMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Al2O3-mp', 'NiO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H23I12N5Sn4|Sn4C4N5H23I12|FA0.25MA0.75SnI3||0.111|33.0|0.42|0.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c9ta02835h|yLeKSrpeX5yX4nugjErNqsE4eOWp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FA0.25MA0.75SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|205.7|0.684|15.12|['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.jcis.2018.07.100|yLk3ctW2BjyDs-gK3a6_HBkXrByL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|183.0|0.59|10.6|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['PCBM-60', 'SnO2-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00926|yLtQDwO3zVCwjvNZLXa4zWLr9tof|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C100H516I255N184Pb100|Pb100C100N184H516I255Br45|FA0.84MA0.16PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201606806|yLv9RT1sCNOUcRj-pLAPC3JLhBen|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.84MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0490000000000002|212.6|0.69|15.38|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ta11004e|yLvuDLDUnaw6DVcRaIQTyEL4zxZf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201703068|yLwUkDa5BwUqXJUmxPLm0_go_vFs|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4900001588804008||||12.36|['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60']|bulk|https://doi.org/10.1021/acsami.6b13410|yM5FGxjQiWWqWcim2Hcsy1PDDxg0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.106|220.5|0.762|18.63|['SLG', 'FTO', 'NiO-c', 'PMMA', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c', 'PMMA']|['PCBM-60']|bulk|https://doi.org/10.1039/c9cc07517h|yM6nL27u47HBfKnwLHoJoTT0F-pl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'PMMA', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|221.1|0.773|18.63|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800230|yMCTBwcCYDs0aP1iBYWdClJH814H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.77|181.6|0.51|7.26|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']|['none']|['ZnO-c']|bulk|https://doi.org/10.1021/jp512101d|yMLOwut9WuXL9MB2TClJKpukGRh6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|191.8|0.75|14.52|['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS; PEI', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|yMNgErDBNRG0B2sXPDvnNXcyrQGs|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS; PEI', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -C19CsH95I60N38Pb20|CsPb20C19N38H95I60|Cs0.05FA0.95PbI3||||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b14954|yMTCEM1ukyenYL6b6v692TCL0fql|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.95PbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.06|205.0|0.73|15.91|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']|['A102']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7cc03444j|yMUBP5EMOeR51hQQpXVsCk4gFlPZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'A102', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3||1.07|223.0|0.807|19.29|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']|['CZ-STA; CZ-TA']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1016/j.nanoen.2018.07.027|yMVh5WJgS7ZySEiBz9Rmr9prgRBX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'CZ-STA; CZ-TA', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|201.2|0.57|11.16|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5nr00225g|yMeXzkRlLZ6VXgjy64_2VMhK33KQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.962|206.0|0.67|13.2|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1039/c6ta04053e|yMj_Pv2wnOfptkqRM2FdOh9DY5tb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.18|211.3|0.7|17.5|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/ente.201901267|yMkS4Al5dklIRtu4rTC76866kH-v|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C200H1200I600N200Pb140Sn51|Pb140Sn51C200N200H1200I600|MAPb0.7Sn0.255I3|1.2600001343552385|0.65|16.7|0.45|0.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C6TC05325D|yMkgbh8pyVDlKwf_a-Ae-CkeSxcg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPb0.7Sn0.255I3. -C45H198I91N31Pb30|Pb30C45N31H198I91|(PEA)2MA29Pb30I91||1.11|203.4|0.7240000000000001|16.34|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/jacs.5b11740|yMsdubc4IpyX0nCCjboJQB_gIFXj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is (PEA)2MA29Pb30I91. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|199.0|0.7140000000000001|15.4|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HFB-OMeDPA', 'Au']|['HFB-OMeDPA']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.010|yMuuKJx0ascAC77IDJuUjgohBF2B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'HFB-OMeDPA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|232.9|0.66|16.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.9b05101|yMw4gHvdGKEEFUS28vnWhdwly751|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8809999999999999|151.0|0.715|9.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b07950|yMz_GsCGJkYPKA1kbzz7bdcP8hLX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|229.8|0.77|17.3|['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'C60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2019.104245|yMzcZfFkp7YOH25vMENDTkmBPTZg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.953|215.0|0.6559999999999999|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FT37', 'Au']|['FT37']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsphotonics.6b00331|yN6u6tFb6Vdccr0UInw_IMXEtTjb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FT37', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|228.2|0.58|13.63|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7se00435d|yNAAyHE6l6asci88Nhu9qNtXuAvt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9CsH45I30N18Pb10|CsPb10C9N18H45I30|Cs0.1FA0.9PbI3|1.5500001652782691|1.07|234.0|0.759|19.0|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201501310|yNCB6fm_zgpcJbk7Sub9jJNsJqpC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.9PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']|['NiO-np']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1038/srep30759|yNE1yowQt6tslBBCuPhgtXGLdEyZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|206.7|0.75|16.43|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.9b00936|yNQNj7FXXWX5rDzYO5NPUqmRPvn6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br42C95Cs5H489I258N176Pb100|Cs5Pb100C95N176H489I258Br42|Cs0.05FA0.81MA0.14PbBr0.42I2.58|1.6100001716761378|0.92|223.7|0.64|13.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.0c11419|yNmBx0mm3J-22O7QjCEUcGIoNLcL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.42I2.58. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|223.8|0.606|11.88|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2016.03.020|yNzhXnCHYKEI2qs_LiHv30waUppn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|124.2|0.69|8.66|['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZrO2-np']|bulk|https://doi.org/10.1134/S0012501619020040|yO0vY3szfOeF59wIlvi4_tRwmFOp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZrO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|189.0|0.705|13.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/NENERGY.2015.12|yO9suil6Go28jGV6dqhSyrPcXGVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|236.7|0.357|8.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1166/jnn.2019.16219|yOAxZbHvpHnueh76pTNHITrawfF5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Metal']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.046|144.0|0.26|4.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Trux2', 'Au']|['TRUX2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b05484|yOS2okeFYN95LaqYBWQrKn3DvSJg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Trux2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Cs5I15Pb3Sn2|Cs5Pb3Sn2I15|CsPb0.6Sn0.4I3|1.380000147150975|0.416|34.7|0.6409999999999999|12.51|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1038/s41467-019-13908-6|yOUESHUjAc-R70qvQRm9fwRV8knW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is CsPb0.6Sn0.4I3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.7|0.1|0.18|0.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']|['NiO-c']|['LiF', 'C60', 'SnO2-c']|bulk|https://doi.org/10.1002/aenm.201800591|yOWNuxD8j6W8qPJwCNB7zQcGuBQG|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'LiF', 'C60', 'SnO2-c', 'ITO', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.97|228.0|0.58|13.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1016/j.apsusc.2018.01.236|yOaQwbMM6EWGv63CDetfcYWc0z_6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.947|208.0|0.64|12.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/14686996.2017.1298974|yOju0hVs2lSNMYXE04vOzivyzRGD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.26|103.3|0.753|9.81|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41467-018-04636-4|yOr_RbZqxhJnhpKJkwgtwysyTOMq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -Br6C5H30I9N5Pb5|Pb5C5N5H30I9Br6|MAPbBr1.2I1.8|1.7700001887371206|1.05|121.0|0.71|9.0|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02769e|yP-Aub8m3BX5Qg8Ke7pfRKMqmg8J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbBr1.2I1.8. -Br50C95Cs5H491I250N174Pb75Sn25|Cs5Pb75Sn25C95N174H491I250Br50|Cs0.05FA0.79MA0.16Pb0.75Sn0.25Br0.5I2.5|1.3400001428857296|0.82|209.8|0.71|12.29|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|yPGjxIFz0P_-LZ3Mxs7K7hvjgeZw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16Pb0.75Sn0.25Br0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|211.1|0.78|17.0|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1002/solr.201700141|yPLVGzWQWcMScWAEfAzSQhGNvZsv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|236.8|0.64|13.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']|['BDT:TT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b11898|yPgV2QrkR96gjgYNr9Q7XyeVb2SK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BDT:TT', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52||0.99|192.0|0.748|14.2|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['NiO-c']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c8ta10827g|yPkkbAG5LQnhoXrsPCYRCBd3YmVH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.07|238.7|0.67|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta02540a|yPuPVNnqp2iTcQoeuFyGQKOOfH_w|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.451|20.1|0.45|0.51|['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1007/s12274-017-1896-5|yQ1hqmELZYSu5HAK2yNrfEaHp70Q|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.6300001738087604|1.03|211.0|0.73|16.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/aenm.202000310|yQ2PuwoxfLBF-x9KEKA2KDbiBPYA|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.07|132.0|0.58|8.19|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b02102|yQ6exlg1lxJdZGghqB20CNAtfBYm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.0|0.61|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.3390/nano9091263|yQDeNOJuk7vURVDoQP8Scz1LoNVi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.3000001386204838|0.736|235.0|0.79|13.7|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7nr03507a|yQKDLhCemp6DEFolHlC13FaR8VBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.138|213.0|0.757|18.39|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|yQSARKZXrVcWpiP-z4k3lfF7DPkW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -Br66C165Cs35H840I534N315Pb200|Cs35Pb200C165N315H840I534Br66|Cs0.175FA0.75MA0.075PbBr0.33I2.67||1.09|228.0|0.746|18.6|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PCBM-60', 'bis-C60']|['NiO-c']|bulk|https://doi.org/10.1039/c7ta07139f|yQWZZIh8IMuuCGdSrxUqIhg5mRc0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is Cs0.175FA0.75MA0.075PbBr0.33I2.67. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||1.09|227.0|0.77|19.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.03.050|yQXr6HOBrwvG04D7c3dGNnqPS-5d|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|202.5|0.7|13.56|['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PFN-2TNDI']|bulk|https://doi.org/10.1039/C7SC00077D|yQaFGlmTNL4XcUlecoYh4hQBVsSJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PFN-2TNDI', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|228.5|0.696|16.06|['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.11.163|yQkwLQKhwMWJgnwaesflRHPkG7C_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|172.60000000000002|0.6609999999999999|11.74|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.3390/nano9070935|yQsi3MB2xLogpMxS-R-xzXpCDzdd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|239.2|0.742|19.33|['SLG', 'ITO', 'NPB', 'Perovskite', 'PCBM-60', 'PDI-Br', 'Ag']|['NPB']|['PCBM-60', 'PDI-Br']|bulk|https://doi.org/10.1021/acsaem.9b00164|yR-TWhMhqvaiUDUsUbZATFgps0zQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NPB', 'Perovskite', 'PCBM-60', 'PDI-Br', 'Ag']? The composition of the perovskite layer is MAPbI3. -C17Cs3H85I60N34Pb20|Cs3Pb20C17N34H85I60|Cs0.15FA0.85PbI3||1.0|233.6|0.6659999999999999|15.56|['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['Poly-TBD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta01049h|yR2dKEqYhrLmmv8muddP_a9x-0vX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.15FA0.85PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|172.7|0.735|13.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b10101|yR3AnoCdtdl5Z2p31nsLHfhmF2JY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br87C100H600I213N100Pb100|Pb100C100N100H600I213Br87|MAPbBr0.87I2.13|1.710000182339252|1.08|218.2|0.71|16.73|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.materresbull.2018.12.013|yR3K4XLV7GAlEA0mge-q2Kcy3Z0B|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBr0.87I2.13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|177.8|0.57|8.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b01909|yR4rj4M_xRtFQXugVrYkOkANLEvs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|211.0|0.63|13.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.7b07216|yR8lfBfKFHKYFUbmB6ycU3zDICCE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|1.12|45.1|0.51|2.59|['SLG', 'ITO:ATO', 'TiO2-c', 'Perovskite', 'Perylene', 'Au']|['Perylene']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4895039|yRAqK3bwZtWoW5OiH5Dx1a7w594A|a perovskite solar cell with the following device stack: ['SLG', 'ITO:ATO', 'TiO2-c', 'Perovskite', 'Perylene', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.836|202.0|0.715|12.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/nature23877|yRKtMCtSoprbHmwRzBwDifqr830u|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.719|187.37|0.609|8.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']|['PEDOT:PSS']|['C60', 'BCP']|bulk||yRMRCTnTUEb8QyXFIV_2CMeP_JY5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -Br43C95Cs5H489I257N176Pb100|Cs5Pb100C95N176H489I257Br43|Cs0.05FA0.81MA0.14PbBr0.43I2.57||1.098|201.6|0.7170000000000001|15.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201802763|yROsiQtBLoaPz7rJixH2MlmAS-QU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.43I2.57. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|118.1|0.6609999999999999|7.2|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1016/j.jpowsour.2016.05.026|yRS5_p5nxx9js8754zR01_eqgrif|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|166.20000000000002|0.76|11.61|['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['Graphene oxide', 'PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2016.02.049|yRYMjlYkBvhTWYwHoLqZ8bU11X5J|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Graphene oxide', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|218.0|0.762|17.5|['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']|['PTA']|['SnO2-np', 'PCBA-60']|bulk|https://doi.org/10.1021/acs.jpcc.9b10709|yRbO_W149qvCYJub1g0EzLxk49GF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PCBA-60', 'Perovskite', 'PTA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.35|63.9|0.74|6.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b06356|yRbqQ1vuFU6VYUloA6KQjWkAG6GZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.948|199.1|0.73|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2@TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2@TiO2-mp']|bulk|https://doi.org/10.1039/c6ra25347d|yRrsWeGFYMhRabJoiYToxctuAPEd|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2@TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.93|200.0|0.667|12.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.4966893|yS-zYDB9YN5EDOp7NvAauE8MviHz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.11|225.0|0.77|19.17|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-NH2', 'Spiro-MeOTAD', 'Au']|['POSS-NH2', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b00050|yS72jTB55rhucxRzTWzwN8OyhrYt|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'POSS-NH2', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|204.2|0.716|13.14|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Lif', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2017.11.013|ySGuxdENVo4U4-jTr6Z-Oe5gWjXI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Lif', 'Al']? The composition of the perovskite layer is MAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85||1.02|87.2|0.526|4.67|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201803476|ySXL88c74A-38fpF5JECCsMvlu8l|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||6.85|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']|['PEDOT:PSS']|['TiO2-c']|bulk|https://doi.org/10.1109/JPHOTOV.2018.2870320|ySi5wI6HKOt7Z6xbIIwSD-hdqdBY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PEDOT:PSS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|193.0|0.69|13.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201802033|ySvyj7wxSARPQUCbcjtfKKbeCULK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.054|223.4|0.746|17.57|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['TAPC']|['PCBM-60', 'BCB']|bulk|https://doi.org/10.1039/c8ta10630d|ySysWg5K7KmDHpc4TnyyIte6NGu-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|180.0|0.75|12.2|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PTAA']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/C5MH00126A|yTB9STiqsQKkIzAQCDg-Fq9o1wf6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C10H57I21N13Pb10|Pb10C10N13H57I21Br9|FA0.3MA0.7PbBr0.9I2.1||1.11|229.9|0.77|20.11|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta12561a|yTDF7I12iLhHURoN4gQhDEbtu1kr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.3MA0.7PbBr0.9I2.1. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3|1.230000131156304|0.88|286.3|0.79|20.09||['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/jacs.0c06288|yTHor_jXEQH5FrqjhWWT9Fr3_V7s|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.06|209.0|0.61|13.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']|['Al2O3', 'CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|yTKvtTPTEC4F4wV9W-DzcSvTYXQU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Al2O3', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8590000000000001|160.10000000000002|0.541|7.43|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.3390/su11143867|yTPaLPWRQv25nbLoEXuGr-o73Qyi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.032|178.2|0.45|8.3|['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60; Phlm', 'Ag']|['F6-TCNNQ; TaTm', 'TaTm']|['C60; Phlm']|bulk|https://doi.org/10.1039/C6EE02100J|yTUg9POY_rbe_oUlibliWt7hflyp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'F6-TCNNQ; TaTm', 'TaTm', 'Perovskite', 'C60; Phlm', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.525|164.5|0.58|6.0|['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['SnO2-np', 'CPTA']|bulk|https://doi.org/10.1002/adfm.201903621|yTa1bwPy3C3jP9fHQFJN8VWvn5A9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'CPTA', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -C20H103I51N37Pb9|Pb9C20N37H103I51|FA0.85MA0.15Pb0.45I2.55||1.144|194.5|0.614|13.67|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1016/j.tsf.2018.04.017|yTazJccTIfRFhSGlFa8VTKhJip70|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15Pb0.45I2.55. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.22|116.3|0.69|9.84|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b03622|yTrwnCHxcx-2GctywHpg6vty2HcU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBrI2. -BaC10H60I30N10Pb9|BaPb9C10N10H60I30|MABa0.1Pb0.9I3||0.84|185.0|0.653|10.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.08.131|yU6EfMyr3G0az6WwzInxQp3J6Prk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MABa0.1Pb0.9I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|208.1|0.7|15.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/1674-4926/38/1/014004|yUD6as61w6nRZPX5HMZA3KX9pWa1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|222.4|0.7340000000000001|17.25|['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c; SWCNTs']|bulk|https://doi.org/10.1002/solr.201900415|yUGbC7iXirjsB3HOIM7cy3Qp21Hc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.816|134.0|0.363|3.97|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbPc', 'Au']|['PbPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.7567/JJAP.55.02BF01|yUHNmVm1TnaSQhhSXMIYKtVaCBdE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PbPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.7300001844718749|1.21|103.0|0.71|9.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c']|not processed|https://doi.org/10.1016/j.joule.2018.08.011|yUJfsBsJD2hk1vQ0QlEKRe74q72C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|187.0|0.76|15.6|['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-np']|bulk|https://doi.org/10.1039/c5ta09520d|yUsSo8PGrJGz3906_flR5aEPqgKE|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'ZnO-np', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|178.5|0.73|14.31|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b01701|yUsuyNuvz_R8AosL-gwhgCPhmU0S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C83Cs17H415I300N166Pb60Sn40|Cs17Pb60Sn40C83N166H415I300|Cs0.17FA0.83Pb0.6Sn0.4I3|1.280000136487861|0.77|252.0|0.63|13.0|['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/d0ee00132e|yV4ETafhknoucq95crpteY_jVchf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83Pb0.6Sn0.4I3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.514|194.5|0.696|6.96|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|yV63O8UF5kMACfY2KFY9RdnnDg22|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||1.09|210.0|0.6629999999999999|15.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.02.049|yV9hFqsIeDAL_SyIwI3f47rMZTPX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3||0.94|193.6|0.65|11.71|['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['V2O5']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1039/c7nr04692h|yVJ9pZpx1PJPTX8xlORvmJjvhzBi|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'V2O5', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.903|172.0|0.72|11.11|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.01.010|yVJo09qtAqQ_b2idKxYnKPOfUWb7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.0|0.63|15.3|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ta02206a|yVXha36wsRj7XqCUVZwnqlcLmMIF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|213.0|0.69|15.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201502206|yVYPowo-CkF41OxwDTRmrqQ3Sceg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5800001684772036|0.8|8.0|0.2|0.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1080/01411594.2018.1527914|yVZ91KhFmPca4F9irsphf7W5plIZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon; PEMA']? The composition of the perovskite layer is FAPbI3. -Br3C20H101I57N39Pb20|Pb20C20N39H101I57Br3|FA0.95MA0.05PbBr0.15I2.85|1.5300001631456466|1.077|240.0|0.779|19.1|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/aenm.201903083|yVfNUJjheboHYEIl2HlRdPpRO6xU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.95MA0.05PbBr0.15I2.85. -Br120C380Cs20H1957I1080N703Pb400|Cs20Pb400C380N703H1957I1080Br120|Cs0.05FA0.8075MA0.1425PbBr0.3I2.7||0.99|205.0|0.64|13.0|['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['CL1-2']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9se00513g|yVhgGjt84iRfLZxd0YQVsf1cNGrQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CL1-2', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.8075MA0.1425PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|206.9|0.621|13.4|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBA']|bulk|https://doi.org/10.1021/acsaem.9b00260|yVk9WPDqbm57FxmwQAFUc1pHLt0M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|153.2|0.628|9.43|['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']|['MoO3', 'PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b04329|yVlLOYtnyGdGFGPeIxjNpzTYmMKG|a perovskite solar cell with the following device stack: ['SLG', 'Ag', 'MoOx', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Cu', 'Ag', 'MoO3']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5900001695435149|1.08|171.9|0.6759999999999999|12.55|['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['PCBM-60']|bulk|https://doi.org/10.1007/s10854-019-01155-w|yVq1pNj_vrozN_4lKNNhkXnVC7tN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|224.2|0.76|18.69|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00060|yVwrCOiNSoJ_kPH_b8SoJhuiVikL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|||||20.4|['SLG', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Cu']|['PTAA']|['Polystyrene', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c7ee00899f|yW1ST9O3V_z4B0vHHZI71u_h-9_Y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'Polystyrene', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.07|216.7|0.774|18.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2018.07.014|yW56k5ZiXsD17rxTKHK4Y2zXayvZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.112|232.4|0.782|20.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aam5655|yW7EFGk8Arm-_N_aIy_qTG6uSILT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'rGO', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.937|202.0|0.67|12.6|['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1021/acsami.6b00520|yWCKhxoCcYWVsanseXrWsohwYuFA|a perovskite solar cell with the following device stack: ['SLG', 'AZO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|148.5|0.4589999999999999|5.82|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']|['PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1039/c7ta07939g|yWFdx_Fu0Ab--XFqAPI2XwK9rQIs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.155|139.60000000000002|0.659|10.62|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1007/s11426-019-9486-0|yWNEQR_0UR-CbMt0TsaiNbwUPxgG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.033|203.8|0.743|15.64|['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'SiO2-np; TiO2-mp']|bulk|https://doi.org/10.1021/acsomega.8b01119|yWNVJVnLlzbUO1zieKhBmVnhIwTY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'SiO2-np; TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C4H24I12N4Pb3Sn|Pb3SnC4N4H24I12|MAPb0.75Sn0.25I3|1.2400001322226155||||8.83|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c6nr00301j|yWRwPYYeE9x3ep_mgrGtSliSO50z|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPb0.75Sn0.25I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.111|224.6|0.742|18.51|['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201700749|yWSZ3BS3MelBB2QAsLBeGDSltFmU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.7|0.61|13.13|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2017.10.079|yWTkvKzqAjZoFlf6PqVj0O9Ubt6o|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2C5H30I13N5Pb5|Pb5C5N5H30I13Br2|MAPbBr0.4I2.6||1.05|225.0|0.74|17.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/ncomms12446|yWa4pUNLCsxcDrjlOWZlr_-avnyV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.4I2.6. -Br3Cs20I57Pb20|Cs20Pb20I57Br3|CsPbBr0.15I2.85|1.7000001812729404|1.135|197.5|0.7659999999999999|16.83|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.chemmater.9b02248|yWasmoTRaHdtpEr22l9imsrJdkvo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|223.6|0.75|17.71|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw', 'CdS']|bulk|https://doi.org/10.1002/admi.201801976|yWm8x7D2urFnPCHMbRz74tX7FySe|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'CdS', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N2PbSn|PbSnC2N2H12I6|MAPb0.5Sn0.5I3||0.66|233.0|0.6709999999999999|10.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Phen-NaDPO']|bulk|https://doi.org/10.1016/j.isci.2018.11.003|yWnYmFCAOZ7yF45IDg7Iqjd9NEc4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Phen-NaDPO', 'Ag']? The composition of the perovskite layer is MAPb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|193.3|0.6629999999999999|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.6b00441|yWq0Ezuo-vZZ3AjPxOse_jm8aVK6|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.66|80.9|0.2739999999999999|1.46|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']|['NiCoO']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.06.006|yWsl4QbgThuIHzf7n1sxPDsWbzz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'NiCoO', 'Al', 'Al203']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.1|218.4|0.72|17.25|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|yWuamP4xblHf2QFR1NlYKWKgzhmc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -Br45C100Cs5H517I255N183Pb100|Cs5Pb100C100N183H517I255Br45|Cs0.05FA0.83MA0.17PbBr0.45I2.55||1.19|214.2|0.76|19.23|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.orgel.2019.02.010|yXBuk2qC1JS3IVm1GvgaKSFCGh4-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|217.0|0.725|17.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/ncomms13503|yXCObqXBayZaioIWrZsXuZBJ60Mx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCCsH5IN2Pb|CsPbCN2H5IBr|CsFAPbBrI|1.7000001812729404||||17.22||['Spiro-MeOTAD']|['SnO2']|bulk|https://doi.org/10.1039/d2cp02358j|yXGaP2H31VThBvRYiCBFMyAeqxW8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is CsFAPbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.02|180.3|0.606|11.06|['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.7b13380|yXJmNNacsAL0tYGxemxZXAjBLGoj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBA', 'Perobskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs10H517I249N183Pb100|Cs10Pb100C100N183H517I249Br51|Cs0.1FA0.83MA0.17PbBr0.51I2.49||0.98|164.0|0.81|13.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adem.201801196|yXMOaQMuCFzn5i7vJ4i4edsKuO6A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.9|140.0|0.56|7.8|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2017.06.039|yXd7WWhZwt07x-riODVJ1_yMO8iH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|212.0|0.731|17.1|['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PCBSD']|bulk|https://doi.org/10.1016/j.dyepig.2018.12.010|yXnXaFtBG931-igewbSiFSd062Jx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'PCBSD', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|156.0|0.477|6.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-nw']|bulk|https://doi.org/10.1039/c4tc02249a|yXssd5IrIrALanLdcUjgVQ7V5GJf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br510C949Cs50H4906I2490N1995Pb1000|Cs50Pb1000C949N1995H4906I2490Br510|Cs0.05FA0.788GU0.129MA0.032PbBr0.51I2.49||1.07|159.0|0.662|11.27|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01893j|yXyNpE-xseYoUqKhQ1buM2BHoS0i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788GU0.129MA0.032PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|201.8|0.74|14.51|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c5ta08450d|yY6zzDksRw9JNrj-c9crP6f5-p7g|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|223.7|0.768|17.16|['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']|['TAPC']|['PCBM-60']|bulk|https://doi.org/10.1002/adfm.201702613|yYB2y2UWZlzuUNfkwcT8ue-DZuXN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAPC', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br600C1900Cs100H9823I5400N3477Pb2000|Cs100Pb2000C1900N3477H9823I5400Br600|Cs0.05FA0.7885MA0.1615PbBr0.3I2.7|1.5800001684772036|0.99|210.0|0.82|16.5|['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PolyTPD']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201603747|yYDoLeD7YyXdaFMCZFVYydW9yG_8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|175.0|0.79|12.9|['SLG', 'ITO', '3C', 'Perovskite', 'C60', 'BCP', 'Ag']|['3C']|['C60', 'BCP']|bulk|https://doi.org/10.1021/jacs.8b01783|yYSssMGDCHrQMf-oSFtt3_EJIAZa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', '3C', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.569|145.1|0.235|1.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021925|yYbi8hx08NrwIeEblkMbcufDCmhD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PMMA', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.24|151.0|0.804|15.1|['SLG', 'ITO', 'SnO2-np', 'PN4N', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np', 'PN4N']|bulk|https://doi.org/10.1002/adma.201901152|yYfrE9NdTq4F6nqVtJFbUd4qGVNq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'PN4N', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|215.0|0.67|15.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TiO2']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|yYm9x3eF008AlAjpg11hOAxfCNrS|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TiO2', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20CsH103I51N37Pb20|CsPb20C20N37H103I51Br9|Cs0.05FA0.85MA0.15PbBr0.45I2.55|||||16.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201901341|yYnKq2o1EDFhEkKWr0lQGKj0ta2W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|232.0|0.78|19.5|['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-nw']|bulk|https://doi.org/10.1039/c8ta09806a|yYtK15Tqodz8QyLSI2-j5jgUHgdT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-nw', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C11H42I13N5Pb4|Pb4C11N5H42I13|BA2MA3Pb4I13|1.6600001770076949|0.94|155.0|0.72|10.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|yZ-PFPMuynGaysxGVgQINtr3BBfF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|180.0|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201500972|yZ0atk3RHL58Lzxt-S7HqBGeczsO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.541|199.6|0.6809999999999999|7.36|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201808059|yZ3AXmm8wPAC-G2VRZOW_HIIqvzN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is FASnI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.5100001610130236|1.08|197.3|0.68|14.57|['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.09.037|yZAb5GXL-NVj-wuZEQE1hqTTMmXZ|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|201.0|0.8|17.3|['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']|['PTAA', 'PFN']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201906763|yZJyIRM_XbDmdeR0_LzGoGlTfp_T|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PFN', 'Perovskite', 'PCBM-60', 'BCP', 'Cu']? The composition of the perovskite layer is MAPbI3. -C5H29I15N6Pb5|Pb5C5N6H29I15|FA0.2MA0.8PbI3||0.95|190.0|0.745|13.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1007/s10853-018-2780-8|yZQ6yU5T1sctsyjz5QEGNK4sHxJk|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.2MA0.8PbI3. -Br5C98Cs2H504I295N182Pb100|Cs2Pb100C98N182H504I295Br5|Cs0.02FA0.84MA0.14PbBr0.05I2.95||1.001|205.4|0.675|13.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphene', 'Au']|['CuSCN', 'Graphene']|['TiO2-c']|bulk|https://doi.org/10.1016/j.carbon.2019.10.101|yZQEMHxCm2O5w8F1dyDemX_MHisX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'Graphene', 'Au']? The composition of the perovskite layer is Cs0.02FA0.84MA0.14PbBr0.05I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.858|151.0|0.61|7.9|['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'ZnO-nw']|bulk|https://doi.org/10.1039/C4NR04383A|yZT8d6k4GNZMMvDnT3UlwZFBEpt8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'ZnO-nw', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4700001567477778|0.97|197.0|0.544|10.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc09873d|yZiHPc1b0eSiuM4LJQaD7Z9yrNlJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.835|112.4|0.7509999999999999|7.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201601030|yZm-b52Y6vCvlyp7gRXg9pr_Y1R1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|219.0|0.76|16.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1002/aenm.201700492|yZqXfAkro3zHf5jIZb7tB9qRQtWE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.3|['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']|['PDCBT', 'MoO3']|['TiO2-np', 'TiO2-c']|bulk|https://doi.org/10.1002/adfm.201909738|yZs6pgToDI3ikgqdkV9SEYKPBipp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'Perovskite', 'PDCBT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.942|158.0|0.7|10.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c3nr05884k|yZtIYIz5gQdWI8ScxH58xse8dShL|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C19CsH98I60N35Pb20|CsPb20C19N35H98I60|Cs0.05FA0.80MA0.15PbI3||1.04|229.0|0.73|17.4|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/c9ta02142f|yZynvoX-rj3kMb4_vv325Xoo5Zqu|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.80MA0.15PbI3. -Br1020C1900Cs100H9823I4980N3477Pb2000|Cs100Pb2000C1900N3477H9823I4980Br1020|Cs0.05FA0.7885MA0.1615PbBr0.51I2.49||1.09|212.0|0.74|17.1|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1002/admi.201900789|y_Ey4y3U7ejvF8dWprJqwcRc8Mj0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|205.4|0.5870000000000001|12.75|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CTZS', 'Au']|['CZTS']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b09572|y_XFBZdKUUZyqYN94V0s4VpI4mI2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CTZS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.8959999999999999|119.0|0.645|6.88|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1063/1.5021920|y_aP0UQPjEqxrz-TCL9BfIL32kBF|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C5H30I15N5Pb3Sn2|Pb3Sn2C5N5H30I15|MAPb0.6Sn0.4I3||0.82|255.1|0.758|15.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201802774|y_b7vM_OPEcQGdE8YHtuUMUceEEs|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPb0.6Sn0.4I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||14.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2016.12.009|y_f8daRo58elEvvkaFqCRci2buAU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3|2.2960002448251005|1.05|20.5|0.931|2.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|y_gDmxjCIpEwxgLcLv3OqDPaKWm1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr3. -Br6C95Cs5H516I294N149Pb100|Cs5Pb100C95N149H516I294Br6|Cs0.05FA0.54MA0.41PbBr0.06I2.94||1.095|240.3|0.748|19.68|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1038/s41560-019-0382-6|y_nw2ylXl7wh510p4RjT7-spRIWg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.54MA0.41PbBr0.06I2.94. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.986|197.0|0.69|13.4|['SLG', 'ITO', 'TRUX2', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['TRUX2']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1021/acsami.7b05484|y_sMQEsiTh0OzVPD0-0b93ST2cwO|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TRUX2', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|209.7|0.67|13.66|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.cej.2019.03.257|y_ukVcJYvaqO-ucXXI5PH3wrYX7M|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.92|215.0|0.603|12.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PT3HT', 'Ag']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11434-016-1050-x|y_ux6bLOFqBc1r1A4c0spF0pcvSh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PT3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.045|155.8|0.684|11.14|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']|['FA-CN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.orgel.2019.105453|ya6BeOkbbFol96M9AHk9aX28v5cU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'FA-CN', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.019|217.3|0.71|15.8|['SLG', 'ITO', 'Z8', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['Z8']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9tc05410c|yaSvy2YN-AwA5ZK_sIh9CNvmSYEe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Z8', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.320000247384248|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2018.11.053|yaZH-MCMwzzbmOeY5zo63WEeht8A|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -BrC5H26I14N9Pb5|Pb5C5N9H26I14Br|FA0.8MA0.2PbBr0.2I2.8||0.99|182.6|0.6859999999999999|12.41|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.nanoen.2016.06.007|yafEpZYRDKtyAvYUwqlqHvGpjnpl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.2I2.8. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|0.87|209.2|0.69|12.49|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']|['CuS']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2019.01.289|yaraUwJG6xHDEGImJRJ_liccpU1h|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|197.0|0.755|15.9|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta06718b|yarnAP_1QFfm3fOqOEFn-qkm5Idx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is MAPbI3. -Br25C19Cs6H95I25N38Pb25|Cs6Pb25C19N38H95I25Br25|Cs0.24FA0.76PbBrI||1.955|206.6|0.67|14.6|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1039/d0se00088d|yatkzk7T74doB0rq4-Ey8NDvDHpr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.24FA0.76PbBrI. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|234.2|0.7240000000000001|17.96|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|yayTo4oZHUzJa3Y4XyW77IAbLmdf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2|1.8900002015328567|1.06|143.9|0.695|10.61|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1063/5.0011918|yaz20jfuubkz0r-JViKiE0yQyX2X|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|0.94|199.3|0.53|10.02|['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|yb-EHlR4jmDMtB3dppcUVM6e1CT-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br3C20H103I17N37Pb20|Pb20C20N37H103I17Br3|FA0.85MA0.15PbBr0.15I0.85|1.6300001738087604||||15.26|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01413|yb0dAttuf6ubwbRPylLpcjIf4n4s|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.15I0.85. -Br3C20H100I57N40Pb20|Pb20C20N40H100I57Br3|FAPbBr0.15I2.85||1.07|221.0|0.77|18.2|['PDMS', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8ta02672f|ybHsz1_1xfGytGMlEDbBNlclWzEL|a perovskite solar cell with the following device stack: ['PDMS', 'Graphene', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is FAPbBr0.15I2.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|209.2|0.78|17.41|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smtd.201900398|ybIXcTx0EZmXe7L3tBwGgdWFe_em|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C20H48I16N6Pb5|Pb5C20N6H48I16|(PEA)2MA4Pb5I16||1.08|148.4|0.65|10.42|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c8ta08203k|ybLR3LATu_JR-0uBAuzdKTegDo4c|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (PEA)2MA4Pb5I16. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.65|54.0|0.31|1.04|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|ybM-kJCD_AQvkE6U5A1g8SDd7Lf-|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.98|138.0|0.643|8.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cssc.201700635|ybMXBKf2XB8hQmp0wRTSmxW3IRex|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|206.5|0.726|15.33|['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C70', 'C60']|bulk|https://doi.org/10.1039/c7ta10366b|ybQcRa-flNXGYAS2XCr6T-4sEsQl|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C70', 'C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CH6NPb|PbCNH6Br3|MAPbBr3||1.045|199.0|0.65|13.58|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b06595|ybcldo-dcCYvxsCWTX211btfC6Cj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|238.4|0.758|19.93|['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'WO3']|bulk|https://doi.org/10.1002/admi.201901406|ybkz1HnmqZhkxX_o6vZe0vdSwOLW|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'WO3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.3500002505831827|1.05|48.0|0.61|3.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227065|ybnq0YZSbTqmtV3tEbCIXTjAe6_2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.6000001706098266|1.03|186.7|0.58|11.15|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60']|bulk|https://doi.org/10.1016/j.orgel.2017.01.022|ybrsCzTCFLEQ62v0I_whDj9WCU8S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'Al']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|232.8|0.65|14.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1016/j.tsf.2019.137627|ybscysuEMG3Zw5pEEp7fdXFz9SN_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|216.0|0.6|12.6|['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np', 'Graphene-QDs']|bulk|https://doi.org/10.1016/j.orgel.2019.105415|yc2HwKUkXilx56p3O-Gdlvxiehz2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Graphene-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.13|227.9|0.6409999999999999|16.52|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c7cc05590k|yc5xCMtGusvhghwWd04md5iygIma|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.82|171.0|0.7|9.74|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1038/srep06953|ycHMTYACFngUFFT4f41wJv7dtiQ7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -C10H57I30N13Pb10|Pb10C10N13H57I30|FA0.3MA0.7PbI3|1.6000001706098266|1.07|236.7|0.74|18.66|['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1016/j.mtener.2019.100351|ycK0KPLJdIkdx5h6hNF9y431MIvo|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FA0.3MA0.7PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.92|215.0|0.69|13.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5dt02587g|ycKSvoOTjF0h20RVu8MgD_OE1C0C|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|148.9|0.502|7.5|['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['ZnO-c', 'PCBM-60']|bulk|https://doi.org/10.1111/jace.14491|ycNk-FVuZMQN7YPVet-ncbw2vEX0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'PCBM-60', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|143.0|0.47|7.0|['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS', 'PolyTPD']|['PCBM-60']|bulk|https://doi.org/10.1039/C3EE43619E|ycPGxXIenh9kpOYMooFctJeEXMh8|a perovskite solar cell with the following device stack: ['PET', 'AZO', 'Ag', 'AZO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is MAPbI3. -Br15C95Cs5H491I85N174Pb100|Cs5Pb100C95N174H491I85Br15|Cs0.05FA0.79MA0.16PbBr0.15I0.85||1.1|227.8|0.792|19.85|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA']|['C60', 'BCP']|bulk|https://doi.org/10.1002/adma.201902781|ycSbL6gv9dkWxA5Y4PtvMEiqrbuN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.15I0.85. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|178.5|0.66|8.82|['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2016.02.016|ycUaNkP7okTulM9tgYoUzPPWeQg4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|149.1|0.3829999999999999|4.91|['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['f-C60']|bulk|https://doi.org/10.1039/c7ta10366b|ycVMeSYIz1ZVbJxJ6awKpfQD74Ey|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'f-C60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|225.5|0.491|11.2|['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']|['TPTPA', 'MoO3']|['Ca', 'C60']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|ycW18aMRIarVr3ZSYHPjZ8c7IKvw|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Ca', 'C60', 'Perovskite', 'TPTPA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|182.0|0.6409999999999999|10.92|['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mtcomm.2017.09.007|ycfbwCZlC_R8tlVDTbqFXYVtMgnP|a perovskite solar cell with the following device stack: ['PEN', 'Planarization', 'SiN', 'ITO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.13|208.3|0.722|16.97|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2019.04.039|ycnYtyILk0i_aol4d9on5UWh6BvY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.847|197.3|0.58|9.74|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/ente.201600320|ycqXPA-rCzXrp_IpmK3ZUg1_L82E|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br18C15Cs5H75I42N30Pb20|Cs5Pb20C15N30H75I42Br18|Cs0.25FA0.75PbBr0.9I2.1|1.7290001843652438|1.218|188.5|0.772|17.74||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|ycvyvYu296o5j3hOeQtBnK9-TFE8|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.25FA0.75PbBr0.9I2.1. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|231.2|0.71|18.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201806317|yd3Y99N8s_sJcuCFWw1EsXT9wA1X|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.07|221.0|0.77|18.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41467-018-06317-8|yd8kgqObLatg3r8K9H4i3f9rvAcI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H491I255N174Pb100|Cs5Pb100C95N174H491I255Br45|Cs0.05FA0.79MA0.16PbBr0.45I2.55|1.5800001684772036|1.13|222.0|0.79|19.8|['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np', 'PCBM-60']|bulk|https://doi.org/10.1021/acsaem.9b01924|ydREwTocDQuXoS0a1pfGIuH3Nnye|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-np', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.3100001396867953|0.99|208.0|0.616|12.8|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.6b13675|ydmdW-kAcTOI6NQd5_6d7MvKQBce|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|13.4|0.59|0.69|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3866/PKU.WHXB201412241|ydmq3apR67sq2hULyC_zzRQ4_8Yx|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag,']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.745|33.0|0.26|0.64|['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']|['NiO-c', 'NiO-mp']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201402032|ydwNRRWN3zFC7UvOZUxMuqAfSTPG|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'NiO-mp', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||4.02|['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['PEDOT:PSS', 'PEDOT:PSS']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/solr.201800118|ydx_q4slHNohWSoZkkRbfB-q3uIG|a perovskite solar cell with the following device stack: ['PET', 'Ag-grid', 'PEDOT:PSS', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.974|204.2|0.78|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['N2200', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.03.033|ydxklpBFQ09rfbUIfcbl7i556z5x|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'N2200', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.008|208.0|0.51|10.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.8b15399|ye4op0fntYAkJjfC_eOIiSVy6R2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.5b09442|yeDJyFbELPifNswABP_EntBOOkDU|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.996|220.8|0.741|16.28|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c6cp06405a|yeKOqOVmn6sdq1cXHp00ziRD1gH0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5500001652782691|0.85|120.0|0.63|6.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/nn4052309|yeRNfm-LcG0FJeCfErl0ZU-jWfUk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|221.5|0.72|15.15|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.optmat.2019.04.014|yeVVCZupMrvdRW2MoM1A3QxJ36mC|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.98|59.2|0.42|2.44|['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']|['Spiro-MeOTAD', 'MoOx']|['ZnO']|bulk|https://doi.org/10.1016/j.synthmet.2020.116412|yeZf3A5yNbUELqi6mx9J0pWJVEJc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO', 'Perovskite', 'Spiro-MeOTAD', 'MoOx', 'Al']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br7C18Cs2H93I53N33Pb20|Cs2Pb20C18N33H93I53Br7|Cs0.1FA0.75MA0.15PbBr0.35I2.65||1.12|230.7|0.8029999999999999|21.0|['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']|['PTAA', 'PMMA']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ee00872a|yebYqUw60GupysYkAJaub5K0t7ch|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'PMMA', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.35I2.65. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.07|205.0|0.79|17.3|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acs.nanolett.7b00847|yednI_QrZP4SspOiEZchQBlqI7tR|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5800001684772036|1.036|186.6|0.7390000000000001|14.31|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.6b08863|yedyq-I9-cAkibd9s664h1hUpESE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|177.0|0.57|9.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1088/1361-6463/aab0d8|yehRmoDsKwU_Q_4eqQxXhKM7jlPZ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|227.5|0.75|18.97|['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c; SWCNTs']|bulk|https://doi.org/10.1002/solr.201900415|yeiVGBcZnTtpZlNN-iVZtgoZHpk5|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c; SWCNTs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.72|38.0|0.41|1.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.8b00887|yep4qeYDXJ8bNhLxKa-DcOTeA7V9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.85|105.0|0.31|2.79|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1088/1674-1056/27/1/018807|yewiN12xD2PTLTiVE9b_QiFtGano|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.128|214.72000000000003|0.725|17.55|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|yf0b3spbA-Q6wyJ7zfMXIri_qmbQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br3C40H240I118N40Pb40|Pb40C40N40H240I118Br3|MAPbBr0.075I2.95|1.6000001706098266|1.06|218.0|0.71|16.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2019.226914|yfAn7z4f0Xrlr-tZk-UfS8CqygiB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbBr0.075I2.95. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|138.0|0.72|8.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsami.8b02549|yfB_8_c36iWcdN_f1CQ8b7HagHFz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br52C100H517I248N183Pb100|Pb100C100N183H517I248Br52|FA0.83MA0.17PbBr0.52I2.48|1.640000174875072|1.14|216.0|0.69|17.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b06320|yfLwrJ34_-Df0P4mBQjjumgmyOK2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.52I2.48. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|0.89|73.4|0.41|2.71|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|yfS3iOqY_q8jTo4XeoMK7BCXlzpK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -Br7C25H150I18N25Pb25|Pb25C25N25H150I18Br7|MAPbBr0.28I0.72|1.7000001812729404|1.12|170.0|0.77|14.5||['PTAA']|['SnO2', 'PCBM-60']|not processed|https://doi.org/10.1039/d1se01692j|yfZ8MpbkuqkxiM9jGqanPomuiSsU|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is MAPbBr0.28I0.72. -Br3CH5N2Pb|PbCN2H5Br3|FAPbBr3||1.04|248.0|0.746|19.3|['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1016/j.actamat.2020.03.036|yfde74AH7hnCLGzNAVlCNVsf23yg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.02|226.8|0.82|17.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adma.201604048|yfsporRX5pDkfnrgkXXQPaY_7VCU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C22H68I16N6Pb5|Pb5C22N6H68I16|MA2PA4Pb5I16|1.670000178074006|1.09|150.2|0.523|8.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1021/acsenergylett.8b01153|yftGC5OUrwtjbYT4Oi4XEJbdUCup|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA2PA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|207.0|0.71|15.2|['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']|['PEDOT:PSS', 'PCDTBT']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1038/NPHOTON.2014.284|yftVIkMQConmLjpS4XvJZVnmI0Sg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PCDTBT', 'Perovskite', 'PCBM-60', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br369C950Cs50H4873I2631N1777Pb1000|Cs50Pb1000C950N1777H4873I2631Br369|Cs0.05FA0.827MA0.123PbBr0.369I2.631||1.107|224.0|0.753|18.65|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/aenm.201803587|yg0ACFxmmjwJ5BA9DSTTDkezkSr-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.827MA0.123PbBr0.369I2.631. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.73|168.0|0.58|7.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1021/am506886d|yg14Me3ozSeQ03w-URH8wl-58doD|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.942|191.2|0.609|11.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']|['C12-silane-SAM', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5cc00128e|yg1ZnAQihgIOVZUtoMNBYn6pZUW0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'C12-silane-SAM', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.67|192.0|0.4|5.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SubPc', 'Au']|['CuPc']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ra12004g|yg5WC6dz7cmV7z9WcR6s3Y3CLFVn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SubPc', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|203.5|0.73|15.45|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201604984|yg85mLMhW0K1sxvm1JhtQ5keA18J|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C9H18I4N3Pb|PbC9N3H18I4|(BDA)MAPbI4||0.9|185.0|0.52|8.7|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01859j|ygP0-HGN9JxcE6_MCcq10pW8xTSE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (BDA)MAPbI4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.07|191.0|0.787|16.08|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-XA', 'MoO3', 'Ag']|['PPyra-XA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|ygSeRxtuIcshKGGqvi44ITZJBvAt|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-XA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.06|215.3|0.79|18.03|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']|['PEDOT:PSS']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta05264f|ygawjcAoXJKISETnnK4B6NUfrGA1|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|200.8|0.69|12.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'FTO', 'SLG']|['PEDOT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.jpowsour.2015.12.003|ygfp-liw0N8_0zIvmnLx4PFvHMDm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEDOT', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|210.0|0.41|7.7|['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c9ra01839e|ygt3gsbuCo7OXMXn_vCU_wwWrWRn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.905|225.31|0.511|10.43|['SLG', 'ITO', 'MoS2; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['MoS2; PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/cssc.201700603|ygwRJ-bF1GFlivcwrbHpumaRIhZb|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoS2; PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br4C68H324I180N122Pb61|Pb61C68N122H324I180Br4|BA2FA60Pb61Br4I180||1.07|241.0|0.7609999999999999|20.62|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|2D|https://doi.org/10.1039/c8ee02542h|yh1iDSiZZnLdTHbTo6xiaTbywACD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is BA2FA60Pb61Br4I180. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.018|211.6|0.728|20.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1088/2053-1583/aad983|yh7MjzAWv278rHj4WA0VCaDnf4R8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.983|122.7|0.51|6.14|['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['ZnO-np']|bulk|https://doi.org/10.1039/c8cp01385c|yhCaeI6GJiyuSEOF9RZMoc94R-Yj|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-np', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -C2H12I6N5Pb2|Pb2C2N5H12I6|GU0.75MA0.25PbI3||0.92|5.9|0.6|0.33|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1038/s41560-017-0054-3|yhHHZp81jF5IJnVDES8oWl4p7QMs|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is GU0.75MA0.25PbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||0.84|54.8|0.3|1.37|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'ITO']|['CuSCN']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01140|yhRNMLtq9_N6KYC1HmGRYQI0EwEE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuSCN', 'ITO']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|132.10000000000002|0.63|7.57|['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.vacuum.2019.109077|yhTB_seI_kfAm_sUJZKEhKNK651V|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-np', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|225.7|0.645|12.95|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']|['PEDOT:PSS']|['PCBM-60', 'TIPD']|bulk|https://doi.org/10.1039/c4nr06240j|yhTQeO5Z-PrvE6M6Om3r1mEH7zfz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'TIPD', 'Al']? The composition of the perovskite layer is MAPbI3. -C12H36I16N6Pb5|Pb5C12N6H36I16|(BDA)MA4Pb5I16||1.09|222.5|0.736|17.91|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Au']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1021/acs.jpclett.9b00750|yhdu_6p4CSlugbA_Xj8nlPKOb3pp|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Au']? The composition of the perovskite layer is (BDA)MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|174.0|0.7440000000000001|13.56|['PES', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['none']|bulk|https://doi.org/10.1002/aenm.201702182|yhgjtQpD15t6EEeSY4P7x5vontbn|a perovskite solar cell with the following device stack: ['PES', 'ITO', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|192.4|0.71|13.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2017.03.030|yhudTfny8d1FPd63FR9TtuzwvnZm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|59.260000000000005|0.262|1.49|['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiMgLiO']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c7ra06365b|yhv4tvTMH-Giz8YM_mr-JmQ_T7PA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiMgLiO', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2C9CsH47I28N16Pb10|CsPb10C9N16H47I28Br2|Cs0.1FA0.7MA0.2PbBr0.2I2.8||0.931|165.7|0.58|8.95|['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['EVA', 'PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/adfm.201902629|yi-0fxSF-B7CQ7ScH9f2txM3_oi-|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'PEDOT:PSS', 'Perovskite', 'EVA', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.7MA0.2PbBr0.2I2.8. -Ag2BiI5|Ag2BiI5|Ag2BiI5|1.8600001983339236|0.67|30.9|0.509|1.07|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']|['PDBD-T']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.nanoen.2019.104362|yi5uLE0I0ZTM5O_4QmsBdTIMJBIp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PDBD-T', 'Au']? The composition of the perovskite layer is Ag2BiI5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.047|212.5|0.745|16.58|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2018.09.176|yi93weiKlwX0FG_1xphp8oORwwHz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -C12H48I16N6Pb5|Pb5C12N6H48I16|BA2MA4Pb5I16||1.13|186.3|0.77|16.26|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1039/c9ta06009j|yiGjK8m2CMQsfgnRE4qYopaYunlx|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is BA2MA4Pb5I16. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|176.5|0.5429999999999999|9.11|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.apsusc.2016.02.206|yiiqsZCT0nRl3V7ANCRHiIFy-Zq0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6300001738087604|1.0|208.6|0.68|14.1|['SLG', 'FTO', 'CdSe', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['CdS', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2019.07.004|yilvxTftywxHv5eXhEBuQt_hIQ4H|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'CdSe', 'PCBM-60', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.889|193.8|0.64|11.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']|['DPPS', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.cplett.2019.136822|yiqOQz7aj5hlUJ_-yzGBp9AcGR0n|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'DPPS', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|208.8|0.757|15.5|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.orgel.2019.01.044|yiwAE1y1LYvvoT3LBuY1GD-FoSX7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.914|89.7|0.401|3.29|['SLG', 'ITO', 'PTAA', 'Perovskite', 'CMB-vTA', 'AZO', 'Ag']|['PTAA']|['CMB-vTA', 'AZO']|bulk|https://doi.org/10.1021/jacs.9b03639|yj-pDMpl_agg-gQ3UI2lyTXlALYL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'CMB-vTA', 'AZO', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBiBr6Cs2|Cs2AgBiBr6|Cs2AgBiBr6|2.2000002345885115|0.71|16.7|0.57|0.68|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']|['PCPDTBT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsenergylett.8b00871|yj7ww1EEMzcJtnLsCfF2GKKu-few|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PCPDTBT', 'Au']? The composition of the perovskite layer is Cs2AgBiBr6. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.21|155.9|0.78|14.69|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|yjI1wRJXTUx5ullkBtTUrS5ynwjf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3||0.97|216.0|0.7|15.7|['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'C60-SAM']|bulk|https://doi.org/10.1021/nn505723h|yjT0-BuKQe3RSRBzNZM2j6U2i7Qk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|149.70000000000002|0.43|5.28|['PET', 'ITO', 'Graphene', 'ZnO-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Graphene', 'ZnO-QDs']|bulk|https://doi.org/10.1021/acs.jpcc.5b00933|yjc7j3sLqNnnDcui9F10cDPWdz6V|a perovskite solar cell with the following device stack: ['PET', 'ITO', 'Graphene', 'ZnO-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.965|196.0|0.715|13.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1021/acsomega.8b01626|yjijOI63K9N7-ZxAkj2ZkmkLTQvd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.06|219.4|0.778|18.16|['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c', 'C60-SAM']|bulk|https://doi.org/10.1002/cssc.201601027|yk0IB2D1FqY1IZZhLGe8GciGnwIi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'C60-SAM', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -Br9C5H30I6N5Pb2Sn3|Pb2Sn3C5N5H30I6Br9|MAPb0.4Sn0.6Br1.8I1.2|1.2900001375541723|0.76|213.8|0.67|10.9|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.7b04011|yk1qrdS1MhgMEGN_i1BiSkI6FBRh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPb0.4Sn0.6Br1.8I1.2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|218.0|0.7709999999999999|18.5|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-np', 'Ag']|['NiO-c']|['C60', 'SnO2-np']|bulk|https://doi.org/10.1002/adma.201600619|yk7zrKXlAJLyhsgbsNiGNrWv1msX|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'SnO2-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|199.0|0.609|12.6|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6ta02105k|ykJKX-JN5sETnICsr5Ijg4pNnE8O|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.5100001610130236|0.94|208.9|0.52|10.21|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']|['PTAA']|['C60']|bulk|https://doi.org/10.1007/s00339-019-2866-4|ykQtyplQ32vuwvjVRbU2LDVurEF0|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'Ag']? The composition of the perovskite layer is FAPbI3. -Br3C100H510I297N190Pb100|Pb100C100N190H510I297Br3|FA0.9MA0.1PbBr0.03I2.97||1.12|244.5|0.74|20.26|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsenergylett.9b02375|ykRYourRvI5tFX4vnhjBIbC0XSHc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'PEAI', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.03I2.97. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.089|223.8|0.725|17.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7 BCz-OMeTAD', 'Au']|['2,7-BCz-OMeTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201800538|ykUdT78M9pKuTz3BgrjBQwRxKvlI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', '2,7 BCz-OMeTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49|1.6200001727424491|1.13|232.9|0.73|19.28|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201808833|yka5O9RnCkoIxC2RiXnhElsvDki6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'MnO3', 'Ag']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C4CsH20I15N8Pb5|CsPb5C4N8H20I15|Cs0.2FA0.8PbI3||1.04|235.0|0.728|17.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.tsf.2019.03.030|ykcAV0xLf7OTdYBEcAd-mLYfIAuK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.2FA0.8PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.94|199.3|0.69|12.85|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2017.08.010|ykcifj15pK6XYsHDuW96xWfxF0fY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|219.4|0.71|16.67|['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1126/sciadv.1700106|ykiGS7HZs-XcaBbyxlzaXwbORXLr|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|218.0|0.418|8.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.6b03989|ykvJVss41K5jKPex8Gu4sHbonNHy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C9CsH45I27N18Pb10|CsPb10C9N18H45I27Br3|Cs0.1FA0.9PbBr0.3I2.7|1.6200001727424491|1.08|229.1|0.772|18.21|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.chemmater.8b02970|yl4JA7N9JkQRXiu2rc9hBRDUJlTv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.9PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|212.5|0.7090000000000001|16.5|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsomega.6b00465|ylO9LcIy-_-Vzju2UyJJvR-V-lBf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br150C83Cs17H415I150N166Pb100|Cs17Pb100C83N166H415I150Br150|Cs0.17FA0.83PbBr1.5I1.5|1.8600001983339236|1.296|162.0|0.715|15.01|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1002/adfm.201803130|ylXmFsUnZzxxMLZs1JHaGRwvB9ue|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.17FA0.83PbBr1.5I1.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|210.1|0.8079999999999999|16.88|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.jiec.2019.08.004|yl_8EnslOjJsnvRVCcR0PZOw1qas|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|210.0|0.691|15.4|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']|['NiO-c']|['PCBM-60', 'PEI']|bulk|https://doi.org/10.1002/aenm.201601660|ylgO2AhjGTmkv1Os1aeVu0g0JuFY|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'PEI', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C83Cs17H415I249N166Pb100|Cs17Pb100C83N166H415I249Br51|Cs0.17FA0.83PbBr0.51I2.49||0.968|204.0|0.7440000000000001|14.7|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']|['NiO-c']|['C60', 'BCP']|bulk|https://doi.org/10.1021/acs.jpcc.8b06459|ylpgUXziAjCLH0TYbayFiBQ1QLYN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.17FA0.83PbBr0.51I2.49. -Br51C92Cs8H475I249N169Pb100|Cs8Pb100C92N169H475I249Br51|Cs0.08FA0.77MA0.15PbBr0.51I2.49|1.6000001706098266|1.045|183.95|0.787|15.14|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']|['PTAA']|['C60', 'BCP']|bulk||ym7Jra4D3gH4NGyIZC2bHUT1BQIv|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'BCP', 'Cu']? The composition of the perovskite layer is Cs0.08FA0.77MA0.15PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|156.0|0.623|8.36|['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1039/c5nr08836d|ymEU4NUErHkitt7SqN6SnG1mgDKk|a perovskite solar cell with the following device stack: ['Epoxy', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|236.4|0.757|18.6|['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsami.9b01587|ymG48tGc18Cere_hn0WeGwwVWRop|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'ZnO-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2016.10.022|ymGmUJiYnB47otCuM9QKA35jPsm2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.948|206.2|0.7170000000000001|14.02|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2015.04.039|ymHkGownZ-fgb7hguO85ABUsq3zm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.11|229.6|0.736|18.73|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']|['PHPT-py']|['TiO2-c']|bulk|https://doi.org/10.1002/advs.201800568|ymaquqcsuaky9oDrkD89e7M5V9gn|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'PHPT-py', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|172.2|0.48|5.83|['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']|['CuOx']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c7ra07725d|ymc9Pv1074jjFU2pfqA_wwHwPixe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'CuOx', 'Perovskite', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -Br9C20H120I51N20Pb20|Pb20C20N20H120I51Br9|MAPb1.0Br0.45I2.55|1.6000001706098266|1.02|207.4|0.7|14.71|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.spmi.2017.03.011|ymhaVuD4LanObv8Iztpc4THdBM2i|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPb1.0Br0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.65|||3.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c4cp00460d|ymnKLkiqgmidotOtlqdeKnaj4mML|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br3C7CsH35I21N14Pb8|CsPb8C7N14H35I21Br3|Cs0.125FA0.875PbBr0.375I2.625|1.6000001706098266|1.129|218.7|0.73|18.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.7b10430|ymwQUDVHn-3WY4eLM2MpL513m6vR|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.125FA0.875PbBr0.375I2.625. -C273F3H1042I325N125Pb100|Pb100C273N125H1042I325F3|(F3EA)0.04BA1.96MA3Pb4I13|1.6600001770076949|0.95|150.8|0.773|11.06|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|2D|https://doi.org/10.1002/aenm.201803024|ymz1h8JxAB12Ag0356BORV98YImU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is (F3EA)0.04BA1.96MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.057|217.93000000000004|0.72|16.52|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acssuschemeng.8b05139|ymzTjwAC06WzaBcA43xjSblFggVE|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.18|151.4|0.72|12.84|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']|['NiO-c']|['ZnO-np', 'C60']|bulk|https://doi.org/10.1002/adma.201907361|ynASbgr7ZiNmP7FRVsvT9bu4Ywd8|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'ZnO-np', 'C60', 'Ag']? The composition of the perovskite layer is CsPbBrI2. -Br9C20H103I51N37Pb20|Pb20C20N37H103I51Br9|FA0.85MA0.15PbBr0.45I2.55||1.115|235.8|0.7559999999999999|20.08|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsnano.7b02015|ynBFOpCz-GwQlddhu6S2wam3DcCQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.45I2.55. -Br5000C9500Cs500H49083I25000N17417Pb10000|Cs500Pb10000C9500N17417H49083I25000Br5000|Cs0.05FA0.7917MA0.1583PbBr0.5I2.5||1.0|167.10000000000002|0.77|12.87|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']|['SDTFCz2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05931|ynQdPGIn1_nZ4_LndUjmid_QMf7p|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'SDTFCz2', 'Au']? The composition of the perovskite layer is Cs0.05FA0.7917MA0.1583PbBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.101|225.2|0.74|18.33|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201704181|ynSPdmFCwIY25UKmWG1fi4dmq_uh|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.09|228.8|0.77|19.2|['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-np']|bulk|https://doi.org/10.1021/acsaem.8b01567|ynZi0iQcnoDaRh6UFsz-MjimFlnf|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs2I6Pt|Cs2PtI6|Cs2PtI6|1.3700001460846638|0.58|12.6|0.49|0.36||['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.0c11429|ynZkaOEIEe7peuQPgREMzpgU3AGZ|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs2PtI6. -Br3CsPb|CsPbBr3|CsPbBr3||1.31|51.0|0.54|3.6|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.6b10227|ynaUkqbkZvfNjH8hdioCI_soIdKB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|178.9|0.49|8.47|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.mssp.2018.10.035|ynbLit2Mk0fwpsQakn51-cUXaXgK|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|158.0|0.62|11.0|['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']|['P3HT', 'P3HT; PMMA']|['ZnO-np']|bulk|https://doi.org/10.1039/c7qm00396j|yniFb_d7eVJaOq8KMn5-pPIEwUVn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-np', 'Perovskite', 'P3HT', 'P3HT; PMMA', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3Pb2|Pb2C2N3H11I6|FA0.5MA0.5PbI3||0.86|175.2|0.52|7.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.electacta.2017.07.040|yniQT30a0if17asLVy27SKpBPWXZ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5600001663445808||||19.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']|['Co-Porphyrin']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/jacs.8b07025|ynj02Qmts84VOmcndhUDu_cEWpBB|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Co-porphyrins', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|213.0|0.67|12.3|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c5cc05253j|ynorINtndet_XWBRZsu8F5WVN7ZB|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|229.6|0.63|13.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ti3C2']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c9ra06091j|yo71S6eVBAS3WXHavKF4VFhejZsP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Ti3C2']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.032|231.9|0.696|16.64|['SLG', 'FTO', 'SnO2-c', 'Perovsite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/jacs.8b01037|yo8I7HXMOhxa3_Qo-vMeJ-20qZl0|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovsite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|187.9|0.7|14.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2018.05.044|yoMky4Ubw8aos8Cacja1Z4nE4UHV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.5|0.742|17.31|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aelm.201700169|yoV9t297-pBER_7BKZ2aY0pzf1FM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -C2H11I6N3PbSn|PbSnC2N3H11I6|FA0.5MA0.5Pb0.5Sn0.5I3||0.63|297.0|0.637|12.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1039/c9ta04366g|yoVQiF4Vp12Y_3JAiSP7ziBqX2Xa|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.5MA0.5Pb0.5Sn0.5I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|176.0|0.71|11.4|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F2', 'BCP', 'Mg', 'Ag']|['PEDOT:PSS']|['Fullerene @ F2']|bulk|https://doi.org/10.1002/solr.201900223|yo_IgxfP6QNR93omFo6ON9G3CbKd|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'F2', 'BCP', 'Mg', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.026|232.0|0.72|17.14|['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1021/acsami.9b16341|yo_PjlVsZG5fojYoLq2joaeuZKs7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.93|213.4|0.54|10.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8ta00303c|yocnGgzWsCjP2cqIRqW66sEFCtYp|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Sn20|Cs2Sn20C18N33H93I50Br10|Cs0.1FA0.75MA0.15SnBr0.5I2.5|1.4400001535488438||||2.81|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c8ta06391e|yoepjDpYQsVWQQqg0Gqn6arVKcZn|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15SnBr0.5I2.5. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|213.0|0.73|16.77|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9tc01058k|yoynGW5LUT0Jmf6TF-0q3hMCNqys|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.96|184.0|0.67|11.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1007/s11172-020-2894-4|yp9YKHfbm2FqEQXarCnmL1DacPKf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|215.5|0.69|14.92|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-W1', 'Ag']|['TPE-2,7-Carbazole W1']|['TiO2-c']|bulk|https://doi.org/10.1002/chem.201605187|ypCo0ongmtUipT53x4a5Uq35Iwcu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'TPE-W1', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.22|83.9|0.65|6.61|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']|['none']|['SnO2-np']|bulk|https://doi.org/10.1039/c8ta09838g|ypDEtAs-GkBlssu__wzCR0I3xoM6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -BrC4H21I11N7Pb4|Pb4C4N7H21I11Br|FA0.75MA0.25PbBr0.25I2.75||1.06|233.4|0.7759999999999999|19.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.nanoen.2017.11.024|ypLKpduM9yGqdKAYb5g5flKUJE8P|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.75MA0.25PbBr0.25I2.75. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.0|148.0|0.65|9.3|['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']|['TAE']|['PCBM-60']|bulk|https://doi.org/10.1002/aenm.201502101|ypMqNuM1EP9YZtz3zW-ZH8zKf_SV|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TAE', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C5H26I12N9Pb5|Pb5C5N9H26I12Br3|FA0.8MA0.2PbBr0.6I2.4||||||['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1002/adma.201805554|ypV9LgUGnEV8wNGro4u6qG8fcC3y|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is FA0.8MA0.2PbBr0.6I2.4. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|160.2|0.46|6.51|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']|['XY1']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/slct.201803002|ypWYZEV9wPGfxqZZVQI0Q4_t7H-R|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'XY1', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|205.0|0.7|13.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.5b09300|ypgrDJ7HkEuhQFTMsaNMp0yI1DGu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br510C949Cs50H4906I2490N1801Pb1000|Cs50Pb1000C949N1801H4906I2490Br510|Cs0.05FA0.788GU0.032MA0.129PbBr0.51I2.49|1.6050001711429822|1.12|231.0|0.784|20.29|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c9ta01893j|ypkY2ooRyQYWH-WZQkATtGG2eo2j|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.788GU0.032MA0.129PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.570000167410892|0.93|183.0|0.5770000000000001|9.83|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1142/S179360471642011X|ypmwaiflG9g-TSIHLqzgYNvRw_mT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|156.8|0.618|9.37|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'ZnO-np']|bulk|https://doi.org/10.1021/acs.chemmater.5b03137|ypppQR2EKlP_fDeBsN3WiL3vyMcU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'ZnO-np', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C100H517I297N183Pb100|Pb100C100N183H517I297Br3|FA0.83MA0.17PbBr0.03I2.97|||||19.5|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.apsusc.2019.04.129|yprOADBvoFU2sugGPpqzRVru-lc9|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.03I2.97. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.83|168.2|0.73|10.2|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adma.201402415|ypu-8yBwP7SAAbTkNqfyHsjpDgzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.1|222.4|0.737|17.94|['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-c']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900192|ypwrK43xQrKh8XQcVNX8k3CVKvOr|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'NiO-c', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br9C20H100I51N40Pb20|Pb20C20N40H100I51Br9|FAPbBr0.45I2.55||1.035|214.2|0.6409999999999999|14.2|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/aenm.201803047|yqBk-5m8Cmc2xLUBEucu_LH8Ptil|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|15.7|0.2|0.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsami.5b10830|yqH89l2cDKbfNTnWgpeSO2HKROTu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au', 'Ag-nw']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|154.0|0.653|9.66|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['ICBA', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c4ee00233d|yqHrT58fkeonoGgKsnQ7bDqWcyDI|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'ICBA', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -C21H54I19N7Pb6|Pb6C21N7H54I19|(PEA)2MA5Pb6I19|1.5500001652782691|0.93|105.8|0.664|6.52|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|2D|https://doi.org/10.1016/j.nanoen.2018.11.019|yqa6Yijoil9GeNloyEn81WRV2lDe|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is (PEA)2MA5Pb6I19. -Br10C20H103I50N37Pb20|Pb20C20N37H103I50Br10|FA0.85MA0.15PbBr0.5I2.5|1.627000173488867|1.03|167.7|0.652|11.0|['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Black P-QDs']|bulk|https://doi.org/10.1039/c8ta01408f|yqgW72i6OAfO0pSvDG80PLrwaQ-F|a perovskite solar cell with the following device stack: ['PEN', 'ITO', 'Black P-QDs', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.85MA0.15PbBr0.5I2.5. -Br48C95Cs5H491I252N174Pb100|Cs5Pb100C95N174H491I252Br48|Cs0.05FA0.79MA0.16PbBr0.48I2.52|1.5500001652782691|0.93|213.4|0.66|13.03|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/c8tc01870g|yqhl-EJNUsI8pNt3gi6S1r8T-8OM|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.48I2.52. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.95|225.0|0.58|12.45|['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']|['CTAB', 'Spiro-MeOTAD']|['Carbon-np; SnO2-np']|bulk|https://doi.org/10.1039/c9ta02631b|yqoh89agKmXoeipa9cRIzGonfCGE|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Carbon-np; SnO2-np', 'Perovskite', 'CTAB', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|223.3|0.8029999999999999|19.15|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']|['P3CT-Na']|['ITCP-M', 'BCP']|bulk|https://doi.org/10.1002/solr.201900565|yqzXdmxb6AhfdkdjcH8yhfYDQUrY|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCP-M', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3C10H51I27N19Pb10|Pb10C10N19H51I27Br3|FA0.9MA0.1PbBr0.3I2.7|1.500000159946712|1.07|225.0|0.73|17.53|['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']|['PTAA']|['C60', 'SnS']|bulk|https://doi.org/10.1039/c8ta10876e|yr39JaUYkxHAZuHEfhB09IJRasBM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'C60', 'SnS', 'Ag']? The composition of the perovskite layer is FA0.9MA0.1PbBr0.3I2.7. -Br2C20CuH120I58N20Pb19|CuPb19C20N20H120I58Br2|MACu0.05Pb0.95Br0.1I2.9|1.6000001706098266|0.96|207.7|0.809|16.17|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']|['PEDOT:PSS']|['PCBM-60', 'LiF']|bulk|https://doi.org/10.1016/j.nanoen.2016.07.022|yr4XhDuDWup89IIj2zMwD-bnO_FW|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'LiF', 'Al']? The composition of the perovskite layer is MACu0.05Pb0.95Br0.1I2.9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|170.0|0.73|10.7|['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['Nb2O5-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/12.2236855|yrCBdnzWkjE9AUbOyt1gV95xq-Zk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Nb2O5-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.05|202.3|0.73|15.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solmat.2018.11.020|yrCM_MJB_2i7dp_wjC4QFwfA5GtH|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -C49CsH245I150N98Pb50|CsPb50C49N98H245I150|Cs0.02FA0.98PbI3||||||['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1038/s41467-018-05454-4|yrKBW7zvoUCsGYBSe8BmlqqB0WOK|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is Cs0.02FA0.98PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|||||['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c6mh00160b|yrLDZu5VlWdId4NMKxuObk_mvlq-|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|242.0|0.65|16.01|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC', 'Au']|['TPC']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.dyepig.2018.07.025|yrRrJ0B0tR2hm6GJqHNUsKvyLGiS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'TBC', 'Au']? The composition of the perovskite layer is MAPbI3. -Br969C1900Cs100H9823I5031N3477Pb2000|Cs100Pb2000C1900N3477H9823I5031Br969|Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155||1.06|190.4|0.621|12.53|['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['FT-OMeTPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1002/solr.201900319|yrUDxqTOn1_6MM6VrrsVqhCAmqgg|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'FT-OMeTPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.04|110.0|0.5870000000000001|6.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2015.12.045|yrXVF1CYxbgUIeHmZ1gAwAAftiXA|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.042|154.0|0.6990000000000001|11.2|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'IZO']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.orgel.2017.12.020|yrarBoleYl9DPZCNyMF8Wom16EHC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskte', 'PCBM-60', 'BCP', 'IZO']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49||1.04|193.0|0.67|13.45|['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-mp', 'TiO2-c']|bulk|https://doi.org/10.1021/acs.nanolett.8b04744|yrcwIEizzte6VB5rEedHehYTePBS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.75|140.7|0.42|4.48|['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.7567/JJAP.57.03EJ06|yrhtbQEuQ6QhQzvEe-nQculhU0Qc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.12|221.9|0.804|18.66|['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['P3CT-N']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c9ta01319a|yrjrkXbwbVxAvvdAOIoPnnJnMAgq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-N', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br3CsPb|CsPbBr3|CsPbBr3||1.24|67.30000000000001|0.593|4.96|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8ta07694d|yrtphj2hx_rLAAOx8Gk858z4-pQw|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.091|208.9|0.7|13.1|['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['Fe2O3']|bulk|https://doi.org/10.1039/c8dt00692j|yrwcQ5uZ6oIeNy5FRVDVVcGKw6Md|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'Fe2O3', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPb1.0I3|1.5500001652782691|0.7|175.0|0.62|7.53|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6ra04743b|ys0GbMtKfpSj8sZ_RgdzW9s5PaVV|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPb1.0I3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.015|221.8|0.752|17.82|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.orgel.2019.06.039|ys2NPh9VJ3FULkjwxBQjp1U_6OgC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|208.0|0.65|13.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b00915|ysBHlBJEhav154kXh0_0I4yw3eju|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|160.0|0.77|12.03|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.6b02375|ysCFWaF4WwNrAaJFd1gFU_Lx4jEX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.0700002207264627|1.11|85.39999999999999|0.62|5.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01430|ysI9xG-tY13Ktd5a-LYD81P4em4G|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr2I. -Cs50I150Pb49|Cs50Pb49I150|CsPb0.98I3|1.710000182339252|0.828|179.0|0.66|9.72|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']|['P3HT']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta11154a|ysRjDhpCoZUd8gekc8M953N4qJPg|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'P3HT', 'Au']? The composition of the perovskite layer is CsPb0.98I3. -Br27C47Cs3H243I123N86Pb50|Cs3Pb50C47N86H243I123Br27|Cs0.06FA0.78MA0.16PbBr0.54I2.46||1.0|186.6|0.71|13.57|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/smll.201701225|ysZ-w62dEial62a7C_HdLXihNmH7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is Cs0.06FA0.78MA0.16PbBr0.54I2.46. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.8|163.5|0.392|5.12|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']|['P3HT']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsami.5b09873|ysch0oKtuPmjSqweysdQHeathpG4|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'P3HT', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br50C95Cs5H491I250N174Pb100|Cs5Pb100C95N174H491I250Br50|Cs0.05FA0.79MA0.16PbBr0.5I2.5||1.04|222.3|0.7140000000000001|16.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.jpowsour.2018.10.008|yspWJjtMQn6DG3zGGAM_3BPuD4vN|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.5I2.5. -BrCH6I2NPb|PbCNH6I2Br|MAPbBrI2||1.08|145.8|0.6579999999999999|10.3|['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['C60']|bulk|https://doi.org/10.1039/c8ta07318j|ysr5-BFB66NQoNNxnaHfX7RkgN42|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'C60', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbBrI2. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.88|171.9|0.67|10.11|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/aenm.201401229|yss0FzJi2Qt0jg5Y7zh6W2y6GhoN|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.11|235.4|0.752|19.79|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1002/adfm.201808667|yssf4gZ5CbKDUYfo_q9taLLMPYUa|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Br2CsIPb|CsPbIBr2|CsPbBr2I|2.05000021859384|1.236|96.5|0.631|7.53|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']|['CuPc']|['TiO2-c']|bulk|https://doi.org/10.1016/j.electacta.2019.135266|ytPEseZQgLnkzSqcsFs50LZs8r4m|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc', 'Carbon']? The composition of the perovskite layer is CsPbBr2I. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|0.85|227.0|0.66|12.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1002/ente.201500045|ytRNastvq-CnTnBtXy_fbFe5Q-Pv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.01|185.4|0.556|10.4|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']|['none']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201800297|ytTf80qKL1OftfHa67CZVg-jm1Ka|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.08|252.0|0.7809999999999999|20.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/science.aay7044|ytYJPjdtuatt96y9VUlScymemJaS|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -C6Cl2H18I4S2Sn|SnC6H18S2I4Cl2|((CH3)3S)2SnCl2I4||0.59|86.6|0.58|2.95|['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']|['none']|['TiO2-mp', 'Z907']|2D|https://doi.org/10.1016/j.matchemphys.2019.122310|ytbcLJsvYHisgbBPtXEswKwLFJzf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Z907', 'Perovskite', 'Pt', 'SLG', 'FTO']? The composition of the perovskite layer is ((CH3)3S)2SnCl2I4. -Br51C10000Cs5H51700I249N18300Pb100|Cs5Pb100C10000N18300H51700I249Br51|Cs0.05FA83MA17PbBr0.51I2.49||1.04|198.7|0.778|16.08|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.8b01271|ytjha7TNZ-XOITMaFVKvuuOruPom|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA83MA17PbBr0.51I2.49. -C5H28I15N7Pb5|Pb5C5N7H28I15|FA0.4MA0.6PbI3||0.932|235.4|0.557|12.05|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1039/c8nr07225f|ytlALtTcBgQCqYmoX0I6EZDlQBwb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is FA0.4MA0.6PbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.08|192.0|0.7120000000000001|15.0|['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']|['PTAA']|['PCBM-60', 'TrNBr']|bulk|https://doi.org/10.1002/adfm.201802320|ytlTJ5KaJv2AuTopkwpfC5IBzD3N|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PTAA', 'Perovskite', 'PCBM-60', 'TrNBr', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br30C95Cs5H491I270N174Pb100|Cs5Pb100C95N174H491I270Br30|Cs0.05FA0.79MA0.16PbBr0.3I2.7||1.01|220.0|0.62|13.7|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']|['CuPc(tBu)4']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.8b01115|ytq5cCJqzDR_EyHXB_LU93q5htlI|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'CuPc(tBu)4', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.3I2.7. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.815|158.0|0.45|5.8|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp', 'ZrO2-mp']|bulk|https://doi.org/10.1021/nl504701y|yuGPdIcTuRc-p5Eu0KfPvs3wd1XQ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'ZrO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6300001738087604|||0.54|11.73|['SLG', 'ITO', 'NiO-np', 'PAS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['NiO-np', 'PAS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1016/j.solener.2020.03.086|yuUNd3c-aYJMLv3e5ExCGClEQTde|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-np', 'PAS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.742|116.0|0.6809999999999999|5.86|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/acs.jpclett.5b00483|yun9WpmsYq7DE1k7KD2ZpNPcPISc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -Cs4I15RbSn5|Cs4RbSn5I15|Cs0.8Rb0.2SnI3||0.48|67.5|0.67|2.19|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|yunT8C2u7zrM37jwUniSdjGkZ1eF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.8Rb0.2SnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|194.0|0.72|13.5|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-2', 'Au']|['PEH-2']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c5ee02014j|yuyuky-CZxstrM0jS6MZTRNB1uBf|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PEH-2', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|146.8|0.59|7.61|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1039/C4RA17316C|yv0NJzve7ktcXJfxDTi6KYZdYSG7|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|202.8|0.6729999999999999|14.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta04444a|yv4Xbl1FZ1iH8EVnNQOb_S0n3Uvb|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3||1.117|229.7|0.721|18.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/solr.201900020|yv4k2mKoqgcyVAmzT-Py0XPfqjX2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.22|10.0|0.37|0.1|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']|['none']|['TiO2-c']|bulk|https://doi.org/10.1063/1.4885548|yvQNBBwdjhRsAbP0anMf9_VBOoWc|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -Br51C100Cs5H517I249N183Pb100|Cs5Pb100C100N183H517I249Br51|Cs0.05FA0.83MA0.17PbBr0.51I2.49|1.6000001706098266|1.061|221.9|0.76|17.89|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'In2O3']|bulk|https://doi.org/10.1016/j.orgel.2019.105426|yvTQgWtBxOP41YyTRcCPuc3ECBmy|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.738|103.0|0.461|4.1|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.matlet.2019.03.021|yva1Vr8_gbZ0CPHPiDySJYn0AoG_|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|212.1|0.5760000000000001|10.0|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']|['MoOx', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.6b04625|yvdnWwOiAe0UObSIHbjCdyzlZ7I1|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'MoOx', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|170.2|0.69|10.59|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']|['PEDOT:PSS']|['Phenyltrichlorosilane', 'PCBM-60']|bulk|https://doi.org/10.1016/j.orgel.2016.09.018|yvqSI2jzaZqea2VfJQglDVNrSjnh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'Phenyltrichlorosilane', 'PCBM-60', 'Ca', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.96|167.39999999999998|0.752|12.04|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']|['PEDOT:PSS']|['C60', 'BCP', 'LiF']|bulk|https://doi.org/10.1021/acsami.6b15095|yw49qa0Tc5-0lRc3UlXyrkfMJhSQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'LiF', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.86|192.5|0.685|11.35|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']|['PEDOT:PSS']|['PCBM-60', 'C60', 'BCP']|bulk|https://doi.org/10.1039/c5ta01595b|ywP83m9nYdtQf7QeXajSaBMKUJxU|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'C60', 'BCP', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|213.0|0.6890000000000001|15.42|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c6nr05917a|ywbKCOn7rtrXFsqgTB_BWLzGWZYv|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI3Pb|CsPbI3|CsPbI3|1.670000178074006|||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']|['none']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.isci.2019.04.025|ywjx_MhFcOyAOx7rbvtstPimltDu|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Carbon']? The composition of the perovskite layer is CsPbI3. -CsI3Pb|CsPbI3|CsPbI3||0.72|141.7|0.49|5.0|['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP', 'Pt', 'FTO', 'SLG']|['Ethyl acetate; I2; LiI; TBP']|['TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b03062|ywkHat8hVj0cAOp4mNgIpYeWy79W|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-mp', 'Perovskite', 'Ethyl acetate; I2; LiI; TBP', 'Pt', 'FTO', 'SLG']? The composition of the perovskite layer is CsPbI3. -CH6I3NSn|SnCNH6I3|MASnI3||0.377|121.0|0.366|1.7|['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS', 'PolyTPD']|['C60', 'BCP']|bulk|https://doi.org/10.1039/c6ra19476a|ywlojS7uxgwxdE7rYPrXxD07VDyh|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'PolyTPD', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is MASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|92.6|0.43|3.02|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.jpowsour.2019.227216|ywphSkXblwcg8ujfRgIAP-Yra3FJ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -C9H26I13N5Pb4|Pb4C9N5H26I13|(3AMP)MA3Pb4I13|1.8700001994002349|1.03|101.6|0.645|6.74|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']|['PEDOT:PSS']|['C60', 'BCP']|2D|https://doi.org/10.1021/jacs.8b00542|ywsrssYuGX3vWrcFHdBIFegxvDe5|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'C60', 'BCP', 'Ag']? The composition of the perovskite layer is (3AMP)MA3Pb4I13. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|209.0|0.698|15.4|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['ZnO-c']|bulk|https://doi.org/10.1021/acsenergylett.8b00493|ywt_LZuJyvk1UrkdW1iiOCvhEQyF|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|227.0|0.7040000000000001|17.1|['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'C60', 'TmPyPB', 'Ag']|['MoO3', 'TPTPA']|['C60', 'TmTyPB']|bulk|https://doi.org/10.1016/j.nanoen.2017.10.026|yww72csOwb2zf9aL-SNKxZDC1LwM|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'MoO3', 'TPTPA', 'Perovskite', 'C60', 'TmPyPB', 'Ag']? The composition of the perovskite layer is MAPbI3. -AgBr600C200H1200N200Pb199|AgPb199C200N200H1200Br600|MAAg0.005Pb0.995Br3|2.300000245251625|1.13|39.2|0.647|2.4|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acsaem.9b01298|yx8Ifw-Ognbp8KCBfTbWWat4BGwz|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAAg0.005Pb0.995Br3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|1.042|217.0|0.75|16.9|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/chem.201801069|yxAVBpLhyzoF5RFzRKI2qx8Cn-d2|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CsI6RbSn2|CsRbSn2I6|Cs0.5Rb0.5SnI3||0.53|21.8|0.44|0.5|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']|['none']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8qm00159f|yxAWI6voad3p4bVJMItN8cPHkTAQ|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'BCP', 'Al']? The composition of the perovskite layer is Cs0.5Rb0.5SnI3. -Br3CsPb|CsPbBr3|CsPbBr3|2.360000251649494|1.27|69.7|0.78|5.8|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.solmat.2018.07.009|yxAaskZ6CWl8pbTLLdngztvye5yT|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is CsPbBr3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||9.0|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solmat.2015.04.021|yxCg51znVXf9FjvNEerQtIxD8BOz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.91|210.0|0.81|15.48|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'PFN']|bulk|https://doi.org/10.1002/aenm.201701305|yxRggVFv_0uLDCL-rDBLcyQShOTC|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'PFN', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br2CH6INSn|SnCNH6IBr2|MASnBr2I|1.7700001887371206|0.41|114.6|0.426|2.06|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/adom.201700615|yxWoV8U1tf71xmE2cuwsH3ih-k9S|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MASnBr2I. -CH5I3N2Pb|PbCN2H5I3|FAPbI3|1.4800001578140891|1.001|189.7|0.604|11.47|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1002/cssc.201403442|yxgP97S81qHA8Dsn03SysVkwA0xl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.99|147.5|0.481|7.02|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acsami.7b04392|yyFIYjEXpA_vFuZW9uUJuOS5BI_3|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br6C17Cs3H85I54N34Pb20|Cs3Pb20C17N34H85I54Br6|Cs0.15FA0.85PbBr0.3I2.7|1.5800001684772036|1.094|226.7|0.755|18.71||['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1039/d1ta04330g|yyIXJ_D0oGI_cqZ3KiPiCXWo5djV|a perovskite solar cell with the following device stack: nan? The composition of the perovskite layer is Cs0.15FA0.85PbBr0.3I2.7. -BrCsI2Pb|CsPbI2Br|CsPbBrI2||1.193|127.0|0.6629999999999999|10.0|['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['ZnO-c']|bulk|https://doi.org/10.1039/c8tc04488k|yyP3lVcrm0d5-G0ly0uvb2ADK5cj|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'ZnO-c', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is CsPbBrI2. -Bi2C3H18I9N3|C3Bi2N3H18I9|MA3Bi2I9|2.2600002409863795|0.61|12.0|0.62|0.46|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpclett.7b01952|yyhdd9fukeYTWX6I2qiQFZ8w_kzo|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MA3Bi2I9. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.06|173.0|0.6|10.9|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']|['NiO-c']|['PCBM-60', 'bis-C60']|bulk|https://doi.org/10.1002/adma.201404189|yz-e9otepBA0xW9DoKaUEl92R_oH|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'bis-C60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6100001716761378|0.63|174.89999999999998|0.8490000000000001|6.05|['SLG', 'ITO', 'DPA-ANR-DPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['DPA-ANR-DPA']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.1039/c8tc01956h|yzRiN2wVMRJnVvJU7y_wECU9Ir_1|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'DPA-ANR-DPA', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br45C95Cs5H489I255N176Pb100|Cs5Pb100C95N176H489I255Br45|Cs0.05FA0.81MA0.14PbBr0.45I2.55||1.03|196.0|0.65|13.04|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']|['LD22']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.8b08168|yzSBtMKRjFzvlQTPzY-ALYhvZPQJ|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'LD22', 'Au']? The composition of the perovskite layer is Cs0.05FA0.81MA0.14PbBr0.45I2.55. -Br9C20H110I51N30Pb20|Pb20C20N30H110I51Br9|FA0.5MA0.5PbBr0.45I2.55||||||['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']|['NiO-np']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c7ta02228j|yzVGFDRPUs9pSsh0DsU0_8VvwOGq|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'NiO-np', 'Au']? The composition of the perovskite layer is FA0.5MA0.5PbBr0.45I2.55. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6200001727424491|0.83|100.7|0.44|3.7|['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'PDI2']|bulk|https://doi.org/10.1016/j.solmat.2016.10.041|yzY7t_2BvLasf6dhNXLeQ_UVZoxq|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PDI2', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.76|135.0|0.53|5.4|['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']|['P3HT']|['TiO2-c', 'Al2O3-mp']|bulk|https://doi.org/10.1021/jz5021795|yzaD6J8rM4yxhEPtDQFVwOn9cJZP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Al2O3-mp', 'Perovskite', 'P3HT', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|215.0|0.615|14.0|['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']|['NiO-c']|['PCBM-60']|bulk|https://doi.org/10.1021/acsami.8b19036|yzbBQ0ymSZTEVn5oQKMsQ--rCI0E|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'NiO-c', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -Br51C95Cs5H491I249N174Pb100|Cs5Pb100C95N174H491I249Br51|Cs0.05FA0.79MA0.16PbBr0.51I2.49|1.6000001706098266|1.01|164.8|0.65|10.74|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1016/j.solener.2019.07.091|yzkuld270jluR_c2_zqGnI4qsZeX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.05FA0.79MA0.16PbBr0.51I2.49. -Br51C100H517I249N183Pb100|Pb100C100N183H517I249Br51|FA0.83MA0.17PbBr0.51I2.49||1.12|222.0|0.78|19.0|['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-c']|bulk|https://doi.org/10.1021/acs.jpclett.9b02488|yzwU4OCXgfaL5QFyNCAw-C0yEKQl|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'SnO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is FA0.83MA0.17PbBr0.51I2.49. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.055|224.5|0.79|18.75|['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'LiF', 'Ag']|['P3CT-Na']|['ITCPTC-Th', 'LiF']|bulk|https://doi.org/10.1039/c8ta00492g|z-3NDmpZX257cAQpKIK4eNet1WVc|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'P3CT-Na', 'Perovskite', 'ITCPTC-Th', 'LiF', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.919|41.7|0.919|7.5|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1021/acsaem.9b00708|z-5OQDcpZ2MXXfv4ObXNwIYgvfQk|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.979|212.0|0.561|11.6|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1016/j.apsusc.2017.12.140|z-bJUmMccfYHFi6A388awrDmwL97|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.87|162.3|0.8|11.34|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']|['PEDOT:PSS']|['PCBM-60', 'BCP']|bulk|https://doi.org/10.3390/nano9020193|z-is6UZvMtfWMj9v7IwI7mFjuSah|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'BCP', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5870001692236215|0.88|207.5|0.59|10.77|['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1016/j.solener.2018.10.037|z-oDlBjxm8wou8gY0dcnv1CA8iUi|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.5900001695435149|0.33|67.1|0.29|0.63|['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']|['none']|['PCBM-60']|bulk|https://doi.org/10.1002/bkcs.12092|z-qPfDCtMDEaq8IVfwhUBJKueei6|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH5I3N2Sn|SnCN2H5I3|FASnI3||0.48|225.4|0.66|6.65|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']|['PTAA']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1126/sciadv.1701293|z-qmecrnETrEkj3lFIxO4VtW0Pw7|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'PTAA', 'Au']? The composition of the perovskite layer is FASnI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.7|44.0|0.14|0.49|['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'TPD', 'MoO3', 'Au']|['TPD']|['TiO2-c', 'PCBM-60']|bulk|https://doi.org/10.1021/acsenergylett.6b00270|z-wctgdxcbZidMFJe5Oz3mxZFtgL|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'TiO2-c', 'PCBM-60', 'Perovskite', 'TPD', 'MoO3', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|218.1|0.746|17.36|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']|['DTS']|['TiO2-c']|bulk|https://doi.org/10.1002/adma.201706576|z0JGVhLQ_TGHkrpw6-tFyRVoGEkD|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'DTS', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|171.1|0.6659999999999999|12.89|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1117/1.JPE.7.022002|z0JhH2SMnJN5Pn9PmNkQdZOYUKf4|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.07|195.2|0.77|16.06|['SLG', 'ITO', 'VOx', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']|['VOx', 'X-DVTPD']|['PCBM-60', 'Bphen']|bulk|https://doi.org/10.1021/acsami.8b04396|z0MXwWl5MlvHEYqlV9JMfTGZBo28|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'VOx', 'X-DVTPD', 'Perovskite', 'PCBM-60', 'Bphen', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.98|197.3|0.57|10.94|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.3390/ma12152494|z0O0qTnx0EMav6qe9rkYEMq9zMnm|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Carbon', 'FTO', 'SLG']? The composition of the perovskite layer is MAPbI3. -Br10C18Cs2H93I50N33Pb20|Cs2Pb20C18N33H93I50Br10|Cs0.1FA0.75MA0.15PbBr0.5I2.5|1.6300001738087604|1.06|191.0|0.72|14.6|['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['SnO2-np']|bulk|https://doi.org/10.1016/j.solmat.2019.110080|z0UPIfqL3KmzYJSmrpu17k4K6M0S|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-np', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is Cs0.1FA0.75MA0.15PbBr0.5I2.5. -Br9C22Cs3H110I66N44Pb25|Cs3Pb25C22N44H110I66Br9|Cs0.12FA0.88PbBr0.36I2.64||1.026|194.9|0.62|12.35|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']|['CuSCN']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/aenm.201702714|z0VnT0kdhB4S3qA2qxaW72EY6Wc9|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'CuSCN', 'Au']? The composition of the perovskite layer is Cs0.12FA0.88PbBr0.36I2.64. -CH6I3NPb|PbCNH6I3|MAPbI3|1.500000159946712|1.02|158.2|0.726|11.7|['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-TXA', 'MoO3', 'Ag']|['PPyra-TXA']|['SnO2-c', 'C60']|bulk|https://doi.org/10.1002/aenm.201700823|z0X275yYkzHr2pfYcqQihLQNV286|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'SnO2-c', 'C60', 'Perovskite', 'PPyra-TXA', 'MoO3', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.89|11.5|0.72|0.074|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1002/cphc.201700910|z0ZYYvGksJXossrxRHSuNINgisxX|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.05|189.0|0.62|12.3|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1038/nature12509|z0a4Fk8fbHZQeW5jp7QLHOizORqP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266||||16.7|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDCE', 'Spiro-MeOTAD', 'Ag']|['BEDCE', 'Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1039/c8ta09724k|z0fL0X6BuKnYK0Dj8GI25XjQ9Cco|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'BEDCE', 'Spiro-MeOTAD', 'Ag']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.78|161.1|0.8059999999999999|10.13|['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']|['PEDOT:PSS']|['PCBM-60']|bulk|https://doi.org/10.1002/asia.201600722|z0hvVFmOUc6-zEVuMhJfdTGppSKz|a perovskite solar cell with the following device stack: ['SLG', 'ITO', 'PEDOT:PSS', 'Perovskite', 'PCBM-60', 'Al']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|0.97|126.1|0.6|7.38|['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']|['Spiro-MeOTAD']|['TiO2-nt']|bulk|https://doi.org/10.1016/j.nanoen.2014.11.042|z0k9u_Jl55b8V7xC5Zj9X8bdK-jN|a perovskite solar cell with the following device stack: ['Ti-foil', 'TiO2-nt', 'Perovskite', 'Spiro-MeOTAD', 'Carbon-nt']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.03|151.7|0.57|8.95|['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c']|bulk|https://doi.org/10.1039/c8tc02237b|z0oMpG_cnY_WuKL9N8PRU4CQiMDP|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. -CH6I3NPb|PbCNH6I3|MAPbI3|1.6000001706098266|1.009|201.1|0.624|12.66|['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']|['Spiro-MeOTAD']|['TiO2-c', 'TiO2-mp']|bulk|https://doi.org/10.1021/acs.jpcc.9b05355|z0sZKKMctBfGtu7ADBNai1LPcsRO|a perovskite solar cell with the following device stack: ['SLG', 'FTO', 'TiO2-c', 'TiO2-mp', 'Perovskite', 'Spiro-MeOTAD', 'Au']? The composition of the perovskite layer is MAPbI3. From ebb8986fd51e2a454220d20be254bbcc8b0e96f4 Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:42:17 +0100 Subject: [PATCH 58/61] add again data/tabular/bicerano_dataset/meta.yaml (#527) * feat: add again data/tabular/bicerano_dataset/meta.yaml * feat: pre-commit checks applied --- data/tabular/bicerano_dataset/meta.yaml | 66 +++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 data/tabular/bicerano_dataset/meta.yaml diff --git a/data/tabular/bicerano_dataset/meta.yaml b/data/tabular/bicerano_dataset/meta.yaml new file mode 100644 index 000000000..382c63d3a --- /dev/null +++ b/data/tabular/bicerano_dataset/meta.yaml @@ -0,0 +1,66 @@ +--- +name: bicerano_dataset +description: |- + This paper outlines a MD simulation workflow based on GPU MD simulation and the + refined optimized potentials for liquid simulation (OPLS) OPLS3e force field to + calculate glass transition temperatures (Tgs) of 315 polymers for which Bicerano + reported experimental values. +targets: + - id: Tg_exp + description: experimental glass transition temperature + units: K + type: float + names: + - noun: experimental glass transition temperature + uris: + - id: Tg_calc + description: calculated glass transition T + units: K + type: float + names: + - noun: computed glass transition temperature + - id: rho_300K_calc + description: computed density at 300K + units: g/cm^3 + type: float + names: + - noun: computed polymer density at 300K +identifiers: + - id: PSMILES + type: PSMILES + description: PSMILES + - id: compound_name + type: Other + names: + - noun: compound name + description: polymer name +license: CC BY 4.0 +links: + - url: https://pubs.acs.org/doi/10.1021/acsapm.0c00524# + description: corresponding publication + - url: + - https://raw.githubusercontent.com/AdrianM0/chemnlp/main/data/tabular/bicerano_dataset/HT_MD_polymer_properties.csv + description: data source +num_points: 315 +bibtex: + - |- + @article{afzal2021, + author = {Afzal, Mohammad Atif Faiz and Browning, Andrea R. and Goldberg, Alexander and Halls, Mathew D. and Gavartin, Jacob L. and Morisato, + Tsuguo and Hughes, Thomas F. and Giesen, David J. and Goose, Joseph E.}, + title = {High-Throughput Molecular Dynamics Simulations and Validation of Thermophysical Properties of Polymers for Various Applications}, + journal = {ACS Applied Polymer Materials}, + volume = {3}, + number = {2}, + pages = {620-630}, + year = {2021}, + doi = {10.1021/acsapm.0c00524}} +templates: + - The polymer with the {PSMILES__description} of {PSMILES#} has an experimental glass transition temperature of {Tg_exp#} K. + - The polymer with the {PSMILES__description} of {PSMILES#} has a computed glass transition temperature of {Tg_calc#} K. + - The polymer with the {PSMILES__description} of {PSMILES#} has a computed density at 300 K of {rho_300K_calc#} g/cc. + - The polymer with the {compound_name__names__noun} of {compound_name#} has an experimental glass transition temperature of {Tg_exp#} K. + - The polymer with the {compound_name__names__noun} of {compound_name#} has a computed glass transition temperature of {Tg_calc#} K. + - The polymer with the {compound_name__names__noun} of {compound_name#} has a computed density at 300 K of {rho_300K_calc#} g/cc. + - |- + Question: What is a polymer with a computed glass transition temperature of {Tg_calc#} K and a computed density at 300 K of {rho_300K_calc#} g/cc. + Answer: A polymer with {PSMILES__description} {PSMILES#} From 7612d91c232af64fad0e464424d35dbbe716e30a Mon Sep 17 00:00:00 2001 From: Michael Pieler <36303596+MicPie@users.noreply.github.com> Date: Thu, 8 Feb 2024 18:17:11 +0100 Subject: [PATCH 59/61] feat: reapply changes (#528) --- data/tabular/bio_ner/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/tabular/bio_ner/meta.yaml b/data/tabular/bio_ner/meta.yaml index af44068d2..a0cb30f83 100644 --- a/data/tabular/bio_ner/meta.yaml +++ b/data/tabular/bio_ner/meta.yaml @@ -1,6 +1,6 @@ --- name: bio_ner -description: NER data. +description: NER task on bio-related text. identifiers: - id: Sentence description: Sentence @@ -19,10 +19,10 @@ targets: names: - noun: JSON output benchmarks: - - name: ??? - link: ??? + - name: bio_ner + link: https://github.com/ML4LitS/bio-datasets split_column: split -license: NEEDS TO BE DEFINED +license: unknown links: - url: https://github.com/ML4LitS/bio-datasets description: ??? From 7331d881a3b743a19d9b868abdc9d4ec478954be Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:52:06 +0200 Subject: [PATCH 60/61] [pre-commit.ci] pre-commit autoupdate (#532) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 4 +- data/check_pandas.py | 1 + data/check_smiles_split.py | 1 + data/natural/preprocess_europepmc.py | 1 + data/natural/preprocess_msds.py | 1 + data/natural/preprocess_nougat.py | 1 + data/postprocess_split.py | 1 + data/tabular/check_smiles_split.py | 1 + data/tabular/odd_one_out/transform.py | 8 ++-- data/tabular/train_test_split.py | 1 + data/text_sampling/text_sampling.py | 42 +++++++++---------- data/train_test_split.py | 1 + experiments/data/merge_epmc_to_jsonl.py | 1 + experiments/data/prepare_gptneox_chemrxiv.py | 1 + experiments/data/prepare_hf_dataset.py | 1 + .../scripts/eval_create_batch_configs.py | 6 +-- experiments/scripts/run_tune.py | 15 ++++--- src/chemnlp/data_val/config.py | 6 +-- src/chemnlp/trainer.py | 1 + 19 files changed, 56 insertions(+), 38 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dc61d41d3..c382fca0a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,13 +21,13 @@ repos: exclude: ^experiments/configs - repo: https://github.com/psf/black - rev: 23.12.1 + rev: 24.3.0 hooks: - id: black language_version: python3 # Should be a command that runs python3.6+ - repo: https://github.com/PyCQA/flake8 - rev: 6.1.0 + rev: 7.0.0 hooks: - id: flake8 args: [--count, --show-source, --statistics] diff --git a/data/check_pandas.py b/data/check_pandas.py index 4526bc08f..5df3390b0 100644 --- a/data/check_pandas.py +++ b/data/check_pandas.py @@ -8,6 +8,7 @@ This script has a command line interface. You can run it using `python check_pandas `, where `` points to a nested set of directories with `data_clean.csv` files. """ + import os from glob import glob from pathlib import Path diff --git a/data/check_smiles_split.py b/data/check_smiles_split.py index df6df7ffe..e3f3c1bc7 100644 --- a/data/check_smiles_split.py +++ b/data/check_smiles_split.py @@ -6,6 +6,7 @@ This script uses dask. This might cause some errors with mismatching data types, for which there are currently a few fallbacks. """ + import os from glob import glob from pathlib import Path diff --git a/data/natural/preprocess_europepmc.py b/data/natural/preprocess_europepmc.py index e2a9b1b7c..92b96bdee 100644 --- a/data/natural/preprocess_europepmc.py +++ b/data/natural/preprocess_europepmc.py @@ -5,6 +5,7 @@ Before running this scripts, the filepaths need to be changed. """ + import json import os import re diff --git a/data/natural/preprocess_msds.py b/data/natural/preprocess_msds.py index 30f21a269..c28f2d7d8 100644 --- a/data/natural/preprocess_msds.py +++ b/data/natural/preprocess_msds.py @@ -3,6 +3,7 @@ You need to change filepaths before running this script """ + import json import os diff --git a/data/natural/preprocess_nougat.py b/data/natural/preprocess_nougat.py index 93fe85cef..f664b5096 100644 --- a/data/natural/preprocess_nougat.py +++ b/data/natural/preprocess_nougat.py @@ -6,6 +6,7 @@ The filepaths need to be updated before running the script. """ + import glob import json import os diff --git a/data/postprocess_split.py b/data/postprocess_split.py index dc2353330..ef8999b0b 100644 --- a/data/postprocess_split.py +++ b/data/postprocess_split.py @@ -5,6 +5,7 @@ This script needs to be run after the splitting script. """ + import os from glob import glob from pathlib import Path diff --git a/data/tabular/check_smiles_split.py b/data/tabular/check_smiles_split.py index a16030c1a..b7149bfaf 100644 --- a/data/tabular/check_smiles_split.py +++ b/data/tabular/check_smiles_split.py @@ -1,4 +1,5 @@ """This script checks for data leakage in the splits of a tabular dataset.""" + import os from glob import glob from pathlib import Path diff --git a/data/tabular/odd_one_out/transform.py b/data/tabular/odd_one_out/transform.py index a529046d6..f79219da1 100644 --- a/data/tabular/odd_one_out/transform.py +++ b/data/tabular/odd_one_out/transform.py @@ -104,9 +104,11 @@ def transform_dataset(dataset, n_permutations): "smi_4": smis[smi_idx_arr[:, 3]], "odd_one_out_idx": odd_one_out_idx, "odd_one_out_mol": [ - smis[smi_idx_arr[i, int(odd_one_out_idx[i])]] - if not np.isnan(odd_one_out_idx[i]) - else np.nan + ( + smis[smi_idx_arr[i, int(odd_one_out_idx[i])]] + if not np.isnan(odd_one_out_idx[i]) + else np.nan + ) for i in range(len(odd_one_out_idx)) ], # "similarity_list": similarity_list, diff --git a/data/tabular/train_test_split.py b/data/tabular/train_test_split.py index a015e62f3..4ec096e89 100644 --- a/data/tabular/train_test_split.py +++ b/data/tabular/train_test_split.py @@ -20,6 +20,7 @@ - Some CSV files contain complicated strings. We cannot parse them in a chunked manner. In this case, we set blocksize=None and read the whole file into memory. """ + import logging import os import random diff --git a/data/text_sampling/text_sampling.py b/data/text_sampling/text_sampling.py index 681ba3b60..94dadbe33 100644 --- a/data/text_sampling/text_sampling.py +++ b/data/text_sampling/text_sampling.py @@ -942,9 +942,9 @@ def export(self, fn_suffix: str = None): inplace=True, ) if self.multiple_choice_benchmarking_templates: - df_out[ - ["output", "answer_choices", "correct_output_index"] - ] = df_out["output"].str.split(pat="", n=2, expand=True) + df_out[["output", "answer_choices", "correct_output_index"]] = ( + df_out["output"].str.split(pat="", n=2, expand=True) + ) df_out["answer_choices"] = df_out["answer_choices"].apply( lambda x: x.split("|") ) @@ -982,15 +982,15 @@ def export(self, fn_suffix: str = None): os.makedirs(output_path_dir, exist_ok=True) output_path = output_path_dir + f"{split}.jsonl" - lm_eval_yaml_template_multiple_choice[ - "task" - ] = self.path_data_dir.split("/")[-1] - lm_eval_yaml_template_multiple_choice[ - "dataset_path" - ] = output_path_dir - lm_eval_yaml_template_multiple_choice[ - "dataset_name" - ] = self.path_data_dir.split("/")[-1] + lm_eval_yaml_template_multiple_choice["task"] = ( + self.path_data_dir.split("/")[-1] + ) + lm_eval_yaml_template_multiple_choice["dataset_path"] = ( + output_path_dir + ) + lm_eval_yaml_template_multiple_choice["dataset_name"] = ( + self.path_data_dir.split("/")[-1] + ) fn_lm_eval_yaml = output_path_dir + "/config.yaml" with open(fn_lm_eval_yaml, "w") as f: @@ -1005,15 +1005,15 @@ def export(self, fn_suffix: str = None): os.makedirs(output_path_dir, exist_ok=True) output_path = output_path_dir + f"{split}_{fn_suffix}.jsonl" - lm_eval_yaml_template_loglikelihood[ - "task" - ] = self.path_data_dir.split("/")[-1] - lm_eval_yaml_template_loglikelihood[ - "dataset_path" - ] = output_path_dir - lm_eval_yaml_template_loglikelihood[ - "dataset_name" - ] = self.path_data_dir.split("/")[-1] + lm_eval_yaml_template_loglikelihood["task"] = ( + self.path_data_dir.split("/")[-1] + ) + lm_eval_yaml_template_loglikelihood["dataset_path"] = ( + output_path_dir + ) + lm_eval_yaml_template_loglikelihood["dataset_name"] = ( + self.path_data_dir.split("/")[-1] + ) fn_lm_eval_yaml = output_path_dir + "/config.yaml" with open(fn_lm_eval_yaml, "w") as f: diff --git a/data/train_test_split.py b/data/train_test_split.py index 650586512..79691c03b 100644 --- a/data/train_test_split.py +++ b/data/train_test_split.py @@ -20,6 +20,7 @@ - Some CSV files contain complicated strings. We cannot parse them in a chunked manner. In this case, we set blocksize=None and read the whole file into memory. """ + import logging import os import random diff --git a/experiments/data/merge_epmc_to_jsonl.py b/experiments/data/merge_epmc_to_jsonl.py index 87632c23b..1c361dc7b 100644 --- a/experiments/data/merge_epmc_to_jsonl.py +++ b/experiments/data/merge_epmc_to_jsonl.py @@ -7,6 +7,7 @@ /2022_05_25/file2.jsonl ... """ + import multiprocessing import os from typing import List diff --git a/experiments/data/prepare_gptneox_chemrxiv.py b/experiments/data/prepare_gptneox_chemrxiv.py index 328d04f74..fc25c3d6b 100644 --- a/experiments/data/prepare_gptneox_chemrxiv.py +++ b/experiments/data/prepare_gptneox_chemrxiv.py @@ -5,6 +5,7 @@ Example usage: python experiments/chem_data_prep.py /fsx/proj-chemnlp/data/ chemnlp/gpt-neox/ """ + import argparse import os diff --git a/experiments/data/prepare_hf_dataset.py b/experiments/data/prepare_hf_dataset.py index 7a6bbe710..0a0a12c03 100644 --- a/experiments/data/prepare_hf_dataset.py +++ b/experiments/data/prepare_hf_dataset.py @@ -5,6 +5,7 @@ Example Usage: python prepare_hf_dataset.py full_path/config.yml """ + import argparse import json import os diff --git a/experiments/scripts/eval_create_batch_configs.py b/experiments/scripts/eval_create_batch_configs.py index c2c1bb274..da0749307 100644 --- a/experiments/scripts/eval_create_batch_configs.py +++ b/experiments/scripts/eval_create_batch_configs.py @@ -20,9 +20,9 @@ def run( ] for model_name in model_names: - raw_config[ - "model_args" - ] = f"pretrained={root_models_path}/{model_name}/{CHECKPOINT_DIR}" + raw_config["model_args"] = ( + f"pretrained={root_models_path}/{model_name}/{CHECKPOINT_DIR}" + ) raw_config["wandb_run_name"] = model_name with open( diff --git a/experiments/scripts/run_tune.py b/experiments/scripts/run_tune.py index d12dc51b5..ec68a0ea8 100644 --- a/experiments/scripts/run_tune.py +++ b/experiments/scripts/run_tune.py @@ -3,6 +3,7 @@ Usage: python run_tune.py """ + import argparse import json import os @@ -98,9 +99,9 @@ def run(config_path: str, config_overrides: Optional[Dict] = None) -> None: model_ref = getattr(transformers, config.model.base) model = model_ref.from_pretrained( pretrained_model_name_or_path=config.model.checkpoint_path or config.model.name, - revision=config.model.revision - if config.model.checkpoint_path is None - else None, + revision=( + config.model.revision if config.model.checkpoint_path is None else None + ), ) if config.prompt_tuning.enabled: @@ -171,9 +172,11 @@ def run(config_path: str, config_overrides: Optional[Dict] = None) -> None: **config.trainer.dict(exclude={"deepspeed_config", "restart_checkpoint"}), report_to="wandb" if config.wandb.enabled else "none", local_rank=local_rank, - deepspeed=CONFIG_DIR / f"deepspeed/{config.trainer.deepspeed_config}" - if config.trainer.deepspeed_config - else None, + deepspeed=( + CONFIG_DIR / f"deepspeed/{config.trainer.deepspeed_config}" + if config.trainer.deepspeed_config + else None + ), ) print_zero_rank(local_rank, training_args) diff --git a/src/chemnlp/data_val/config.py b/src/chemnlp/data_val/config.py index f63ff3c11..1888016ee 100644 --- a/src/chemnlp/data_val/config.py +++ b/src/chemnlp/data_val/config.py @@ -10,9 +10,9 @@ class Data(BaseModel): path: Union[List[str], str] # can be local or S3 directory validation_size: Union[List[float], float] = 0.05 interleave_probs: Optional[List[float]] = None - sampling_criterion: Optional[ - Literal["first_exhausted", "all_exhausted"] - ] = None # as of v2.10.1 + sampling_criterion: Optional[Literal["first_exhausted", "all_exhausted"]] = ( + None # as of v2.10.1 + ) @validator("validation_size") def small_positive_validation_sizes(cls, value_orig): diff --git a/src/chemnlp/trainer.py b/src/chemnlp/trainer.py index 31c0042b2..20fa0a05a 100644 --- a/src/chemnlp/trainer.py +++ b/src/chemnlp/trainer.py @@ -1,4 +1,5 @@ """A custom trainer for modifying data sampling behaviour""" + from typing import Optional import datasets From 3c8752264392a8caf2453d2c9e7674105e2f89af Mon Sep 17 00:00:00 2001 From: Adrian Mirza Date: Sat, 10 Aug 2024 02:06:12 +0200 Subject: [PATCH 61/61] Add msds sigma aldrich dataset (#523) --- .../sigma_aldrich_safety_data/meta.yaml | 935 ++++++++++++++++++ .../sigma_aldrich_safety_data/transform.py | 19 + 2 files changed, 954 insertions(+) create mode 100644 data/tabular/sigma_aldrich_safety_data/meta.yaml create mode 100644 data/tabular/sigma_aldrich_safety_data/transform.py diff --git a/data/tabular/sigma_aldrich_safety_data/meta.yaml b/data/tabular/sigma_aldrich_safety_data/meta.yaml new file mode 100644 index 000000000..61dabc3e7 --- /dev/null +++ b/data/tabular/sigma_aldrich_safety_data/meta.yaml @@ -0,0 +1,935 @@ +--- +name: sigma_aldrich_safety_data +description: |- + "H-statements parsed from the safety datasheets (SDS) coming from Sigma-Aldrich. This dataset refers only to pure compounds." +targets: + - id: H206 + description: fire, blast or projection hazard + type: boolean + names: + - noun: a fire, blast or projection hazard + - id: H208 + description: fire hazard + type: boolean + names: + - noun: a fire hazard + - id: H211 + description: may be sensitive + type: boolean + names: + - adjective: potentially sensitive + - id: H220 + description: extremely flammable gas + type: boolean + names: + - noun: an extremely flammable gas + - id: H221 + description: flammable gas + type: boolean + names: + - adjective: flammable gas + - id: H224 + description: extremely flammable liquid or vapor + type: boolean + names: + - noun: an extremely flammable liquid or vapor + - id: H225 + description: highly flammable liquid and vapor + type: boolean + names: + - noun: a highly flammable liquid or vapor + - id: H226 + description: flammable liquid and vapor + type: boolean + names: + - noun: a flammable liquid or vapor + - id: H228 + description: flammable solid + type: boolean + names: + - noun: a flammable solid + - id: H240 + description: heating may cause an explosion + type: boolean + names: + - noun: potential cause for an explosion + - id: H241 + description: heating may cause a fire or explosion + type: boolean + names: + - adjective: potentially explosive when heated + - id: H242 + description: heating may cause a fire + type: boolean + names: + - adjective: potentially can cause a fire when heated + - id: H250 + description: catches fire spontaneously if exposed to air + type: boolean + names: + - adjective: spontaneously catches fire if exposed to air + - id: H251 + description: self-heating; may catch fire + type: boolean + names: + - adjective: self-heating + - adjective: potentially going to catch fire + - id: H252 + description: self-heating in large quantities; may catch fire + type: boolean + names: + - adjective: self-heating in large quantities + - adjective: potentially going to catch fire + - id: H260 + description: in contact with water releases flammable gases which may ignite spontaneously + type: boolean + names: + - adjective: releasing flammable gases that may ignite spontaneously when in contact with water + - id: H261 + description: in contact with water releases flammable gas + type: boolean + names: + - adjective: releasing flammable gas when in contact with water + - id: H270 + description: may cause or intensify fire; oxidizer + type: boolean + names: + - noun: potential cause or intensifier for fire + - noun: an oxidizer + - id: H271 + description: may cause fire or explosion; strong oxidizer + type: boolean + names: + - noun: potential cause for fire or explosion + - noun: strong oxidizer + - id: H272 + description: may intensify fire; oxidizer + type: boolean + names: + - noun: potential fire intensifier fire + - noun: an oxidizer + - id: H280 + description: contains gas under pressure; may explode if heated + type: boolean + names: + - adjective: contains gas under pressure and may explode if heated + - id: H282 + description: is an extremely flammable chemical under pressure, may explode if heated + type: boolean + names: + - adjective: is an extremely flammable chemical under pressure, may explode if heated + - id: H284 + description: chemical under pressure, may explode if heated + type: boolean + names: + - adjective: is a chemical under pressure, may explode if heated + - id: H290 + description: may be corrosive to metals + type: boolean + names: + - adjective: potenttially corrosive to metals + - id: H300 + description: fatal if swallowed + type: boolean + names: + - adjective: fatal if swallowed + - id: H301 + description: toxic if swallowed + type: boolean + names: + - adjective: toxic if swallowed + - id: H302 + description: harmful if swallowed + type: boolean + names: + - adjective: harmful if swallowed + - id: H304 + description: may be fatal if swallowed and enters airways + type: boolean + names: + - adjective: probably fatal if swallowed and enters airways + - id: H310 + description: fatal in contact with skin + type: boolean + names: + - adjective: fatal in contact with skin + - id: H311 + description: toxic in contact with skin + type: boolean + names: + - adjective: is toxic in contact with skin + - id: H312 + description: harmful in contact with skin + type: boolean + names: + - adjective: is harmful in contact with skin + - id: H314 + description: causes severe skin burns and eye damage + type: boolean + names: + - adjective: causing severe skin burns and eye damage + - id: H315 + description: causes skin irritation + type: boolean + names: + - adjective: causing skin irritation + - id: H317 + description: may cause an allergic skin reaction + type: boolean + names: + - noun: potential cause for an allergic skin reaction + - id: H318 + description: causes serious eye damage + type: boolean + names: + - adjective: causing serious eye damage + - id: H319 + description: causes serious eye irritation + type: boolean + names: + - adjective: causing serious eye irritation + - id: H330 + description: fatal if inhaled + type: boolean + names: + - adjective: fatal if inhaled + - id: H331 + description: toxic if inhaled + type: boolean + names: + - adjective: toxic if inhaled + - id: H332 + description: harmful if inhaled + type: boolean + names: + - adjective: harmful if inhaled + - id: H334 + description: may cause allergy or asthma symptoms or breathing difficulties if inhaled + type: boolean + names: + - adjective: may cause allergy or asthma symptoms or breathing difficulties if inhaled + - id: H335 + description: may cause respiratory irritation + type: boolean + names: + - noun: potential cause for respiratory irritation + - id: H336 + description: may cause drowsiness or dizziness + type: boolean + names: + - noun: potential cause for drowsiness or dizziness + - id: H340 + description: may cause genetic defects + type: boolean + names: + - noun: potential cause for genetic defects + - id: H341 + description: suspected of causing genetic defects + type: boolean + names: + - adjective: suspected of causing genetic defects + - adjective: suspected of causing genetic alterations + - adjective: suspected of causing mutations + - id: H350 + description: may cause cancer + type: boolean + names: + - noun: potential cause for cancer + - id: H351 + description: suspected of causing cancer + type: boolean + names: + - adjective: suspected of causing cancer + - id: H360 + description: may damage fertility or the unborn child + type: boolean + names: + - noun: potential cause for fertility damage or the unborn child + - id: H361 + description: suspected of damaging fertility or the unborn child + type: boolean + names: + - adjective: suspected of damaging fertility or the unborn child + - id: H370 + description: causes damage to organs + type: boolean + names: + - adjective: causing damage to organs + - id: H371 + description: may cause damage to organs + type: boolean + names: + - noun: potential cause for damage to organs + - adjective: potentially causing organ damage + - id: H372 + description: causes damage to organs through prolonged or repeated exposure + type: boolean + names: + - adjective: causing damage to organs through prolonged or repeated exposure + - adjective: causing damage to organs + - id: H373 + description: may cause damage to organs through prolonged or repeated exposure + type: boolean + names: + - noun: potential cause for damage to organs through prolonged or repeated exposure + - id: H400 + description: very toxic to aquatic life + type: boolean + names: + - adjective: very toxic to aquatic life + - id: H410 + description: very toxic to aquatic life with long lasting effects + type: boolean + names: + - adjective: very toxic to aquatic life with long lasting effects + - id: H411 + description: toxic to aquatic life with long lasting effects + type: boolean + names: + - adjective: toxic to aquatic life with long lasting effects + - adjective: toxic to aquatic life + - adjective: inducing long lasting effects on aquatic life + - id: H420 + description: harms public health and the environment by destroying ozone in the upper atmosphere + type: boolean + names: + - adjective: harming public health and the environment by destroying the ozone in the upper atmosphere + - adjective: destroying the ozone in the upper atmosphere + - adjective: harming public health and the environment +identifiers: + - id: SMILES + type: SMILES + description: SMILES +links: + - url: https://www.sigmaaldrich.com/DE/de + description: corresponding source for the safety datasheets +num_points: 6420 +bibtex: [] +templates: + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H206#not &NULL}{H206__names__noun}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H208#not &NULL}{H206__names__noun}. + Assistant: Here is a molecule that is {H206#not &NULL}{H206__names__noun}: {SMILES#}. + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H206#not &NULL}{H206__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + User: I need a molecule that is {H206#not &NULL}{H206__names__noun}. + Assistant: Here is a molecule that is {H206#not &NULL}{H206__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H208#not &NULL}{H208__names__noun}. + Assistant: Here is a molecule that is {H208#not &NULL}{H208__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H211#not &NULL}{H211__names__adjective}. + Assistant: Here is a molecule that is {H211#not &NULL}{H211__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H220#not &NULL}{H220__names__noun}. + Assistant: Here is a molecule that is {H220#not &NULL}{H220__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H221#not &NULL}{H221__names__adjective}. + Assistant: Here is a molecule that is {H221#not &NULL}{H221__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H224#not &NULL}{H224__names__noun}. + Assistant: Here is a molecule that is {H224#not &NULL}{H224__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H225#not &NULL}{H225__names__noun}. + Assistant: Here is a molecule that is {H225#not &NULL}{H225__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H226#not &NULL}{H226__names__noun}. + Assistant: Here is a molecule that is {H226#not &NULL}{H226__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H228#not &NULL}{H228__names__noun}. + Assistant: Here is a molecule that is {H228#not &NULL}{H228__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H240#not &NULL}{H240__names__noun}. + Assistant: Here is a molecule that is {H240#not &NULL}{H240__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H241#not &NULL}{H241__names__adjective}. + Assistant: Here is a molecule that is {H241#not &NULL}{H241__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H242#not &NULL}{H242__names__adjective}. + Assistant: Here is a molecule that is {H242#not &NULL}{H242__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H250#not &NULL}{H250__names__adjective}. + Assistant: Here is a molecule that is {H250#not &NULL}{H250__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H251#not &NULL}{H251__names__adjective}. + Assistant: Here is a molecule that is {H251#not &NULL}{H251__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H252#not &NULL}{H252__names__adjective}. + Assistant: Here is a molecule that is {H252#not &NULL}{H252__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H260#not &NULL}{H260__names__adjective}. + Assistant: Here is a molecule that is {H260#not &NULL}{H260__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H261#not &NULL}{H261__names__adjective}. + Assistant: Here is a molecule that is {H261#not &NULL}{H261__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H270#not &NULL}{H270__names__noun}. + Assistant: Here is a molecule that is {H270#not &NULL}{H270__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H271#not &NULL}{H271__names__noun}. + Assistant: Here is a molecule that is {H271#not &NULL}{H271__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H272#not &NULL}{H272__names__noun}. + Assistant: Here is a molecule that is {H272#not &NULL}{H272__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H280#not &NULL}{H280__names__adjective}. + Assistant: Here is a molecule that is {H280#not &NULL}{H280__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H282#not &NULL}{H282__names__adjective}. + Assistant: Here is a molecule that is {H282#not &NULL}{H282__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H284#not &NULL}{H284__names__adjective}. + Assistant: Here is a molecule that is {H284#not &NULL}{H284__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H290#not &NULL}{H290__names__adjective}. + Assistant: Here is a molecule that is {H290#not &NULL}{H290__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H300#not &NULL}{H300__names__adjective}. + Assistant: Here is a molecule that is {H300#not &NULL}{H300__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H301#not &NULL}{H301__names__adjective}. + Assistant: Here is a molecule that is {H301#not &NULL}{H301__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H302#not &NULL}{H302__names__adjective}. + Assistant: Here is a molecule that is {H302#not &NULL}{H302__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H304#not &NULL}{H304__names__adjective}. + Assistant: Here is a molecule that is {H304#not &NULL}{H304__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H310#not &NULL}{H310__names__adjective}. + Assistant: Here is a molecule that is {H310#not &NULL}{H310__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H311#not &NULL}{H311__names__adjective}. + Assistant: Here is a molecule that is {H311#not &NULL}{H311__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H312#not &NULL}{H312__names__adjective}. + Assistant: Here is a molecule that is {H312#not &NULL}{H312__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H314#not &NULL}{H314__names__adjective}. + Assistant: Here is a molecule that is {H314#not &NULL}{H314__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H315#not &NULL}{H315__names__adjective}. + Assistant: Here is a molecule that is {H315#not &NULL}{H315__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H317#not &NULL}{H317__names__noun}. + Assistant: Here is a molecule that is {H317#not &NULL}{H317__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H318#not &NULL}{H318__names__adjective}. + Assistant: Here is a molecule that is {H318#not &NULL}{H318__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H319#not &NULL}{H319__names__adjective}. + Assistant: Here is a molecule that is {H319#not &NULL}{H319__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H330#not &NULL}{H330__names__adjective}. + Assistant: Here is a molecule that is {H330#not &NULL}{H330__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H331#not &NULL}{H331__names__adjective}. + Assistant: Here is a molecule that is {H331#not &NULL}{H331__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H332#not &NULL}{H332__names__adjective}. + Assistant: Here is a molecule that is {H332#not &NULL}{H332__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H334#not &NULL}{H334__names__adjective}. + Assistant: Here is a molecule that is {H334#not &NULL}{H334__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H335#not &NULL}{H335__names__noun}. + Assistant: Here is a molecule that is {H335#not &NULL}{H335__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H336#not &NULL}{H336__names__noun}. + Assistant: Here is a molecule that is {H336#not &NULL}{H336__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H340#not &NULL}{H340__names__noun}. + Assistant: Here is a molecule that is {H340#not &NULL}{H340__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H341#not &NULL}{H341__names__adjective}. + Assistant: Here is a molecule that is {H341#not &NULL}{H341__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H350#not &NULL}{H350__names__noun}. + Assistant: Here is a molecule that is {H350#not &NULL}{H350__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H351#not &NULL}{H351__names__adjective}. + Assistant: Here is a molecule that is {H351#not &NULL}{H351__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H360#not &NULL}{H360__names__noun}. + Assistant: Here is a molecule that is {H360#not &NULL}{H360__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H361#not &NULL}{H361__names__adjective}. + Assistant: Here is a molecule that is {H361#not &NULL}{H361__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H370#not &NULL}{H370__names__adjective}. + Assistant: Here is a molecule that is {H370#not &NULL}{H370__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H371#not &NULL}{H371__names__noun}. + Assistant: Here is a molecule that is {H371#not &NULL}{H371__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H371#not &NULL}{H371__names__adjective}. + Assistant: Here is a molecule that is {H371#not &NULL}{H371__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H372#not &NULL}{H372__names__adjective}. + Assistant: Here is a molecule that is {H372#not &NULL}{H372__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H373#not &NULL}{H373__names__noun}. + Assistant: Here is a molecule that is {H373#not &NULL}{H373__names__noun}: {SMILES#}. + - |- + User: I need a molecule that is {H400#not &NULL}{H400__names__adjective}. + Assistant: Here is a molecule that is {H400#not &NULL}{H400__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H410#not &NULL}{H410__names__adjective}. + Assistant: Here is a molecule that is {H410#not &NULL}{H410__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H411#not &NULL}{H411__names__adjective}. + Assistant: Here is a molecule that is {H411#not &NULL}{H411__names__adjective}: {SMILES#}. + - |- + User: I need a molecule that is {H420#not &NULL}{H420__names__adjective}. + Assistant: Here is a molecule that is {H420#not &NULL}{H420__names__adjective}: {SMILES#}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H208#not &NULL}{H208__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H211#not &NULL}{H211__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H220#not &NULL}{H220__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H221#not &NULL}{H221__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H224#not &NULL}{H224__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H225#not &NULL}{H225__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H226#not &NULL}{H226__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H228#not &NULL}{H228__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H240#not &NULL}{H240__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H241#not &NULL}{H241__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H242#not &NULL}{H242__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H250#not &NULL}{H250__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H251#not &NULL}{H251__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H252#not &NULL}{H252__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H260#not &NULL}{H260__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H261#not &NULL}{H261__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H270#not &NULL}{H270__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H271#not &NULL}{H271__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H272#not &NULL}{H272__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H280#not &NULL}{H280__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H282#not &NULL}{H282__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H284#not &NULL}{H284__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H290#not &NULL}{H290__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H300#not &NULL}{H300__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H301#not &NULL}{H301__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H302#not &NULL}{H302__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H304#not &NULL}{H304__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H310#not &NULL}{H310__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H311#not &NULL}{H311__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H312#not &NULL}{H312__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H314#not &NULL}{H314__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H315#not &NULL}{H315__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H317#not &NULL}{H317__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H318#not &NULL}{H318__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H319#not &NULL}{H319__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H330#not &NULL}{H330__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H331#not &NULL}{H331__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H332#not &NULL}{H332__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H334#not &NULL}{H334__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H335#not &NULL}{H335__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H336#not &NULL}{H336__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H340#not &NULL}{H340__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H341#not &NULL}{H341__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H350#not &NULL}{H350__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H351#not &NULL}{H351__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H360#not &NULL}{H360__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H361#not &NULL}{H361__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H370#not &NULL}{H370__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H371#not &NULL}{H371__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H371#not &NULL}{H371__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H372#not &NULL}{H372__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H373#not &NULL}{H373__names__noun}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H400#not &NULL}{H400__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H410#not &NULL}{H410__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H411#not &NULL}{H411__names__adjective}. + - The molecule with the {SMILES__description} {#representation of |!}{SMILES#} is {H420#not &NULL}{H420__names__adjective}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H208#not &NULL}{H208__names__noun}. + Assistant: Here is a molecule that is {H208#not &NULL}{H208__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H211#not &NULL}{H211__names__adjective}. + Assistant: Here is a molecule that is {H211#not &NULL}{H211__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H220#not &NULL}{H220__names__noun}. + Assistant: Here is a molecule that is {H220#not &NULL}{H220__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H221#not &NULL}{H221__names__adjective}. + Assistant: Here is a molecule that is {H221#not &NULL}{H221__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H224#not &NULL}{H224__names__noun}. + Assistant: Here is a molecule that is {H224#not &NULL}{H224__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H225#not &NULL}{H225__names__noun}. + Assistant: Here is a molecule that is {H225#not &NULL}{H225__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H226#not &NULL}{H226__names__noun}. + Assistant: Here is a molecule that is {H226#not &NULL}{H226__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H228#not &NULL}{H228__names__noun}. + Assistant: Here is a molecule that is {H228#not &NULL}{H228__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H240#not &NULL}{H240__names__noun}. + Assistant: Here is a molecule that is {H240#not &NULL}{H240__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H241#not &NULL}{H241__names__adjective}. + Assistant: Here is a molecule that is {H241#not &NULL}{H241__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H242#not &NULL}{H242__names__adjective}. + Assistant: Here is a molecule that is {H242#not &NULL}{H242__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H250#not &NULL}{H250__names__adjective}. + Assistant: Here is a molecule that is {H250#not &NULL}{H250__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H251#not &NULL}{H251__names__adjective}. + Assistant: Here is a molecule that is {H251#not &NULL}{H251__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H252#not &NULL}{H252__names__adjective}. + Assistant: Here is a molecule that is {H252#not &NULL}{H252__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H260#not &NULL}{H260__names__adjective}. + Assistant: Here is a molecule that is {H260#not &NULL}{H260__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H261#not &NULL}{H261__names__adjective}. + Assistant: Here is a molecule that is {H261#not &NULL}{H261__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H270#not &NULL}{H270__names__noun}. + Assistant: Here is a molecule that is {H270#not &NULL}{H270__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H271#not &NULL}{H271__names__noun}. + Assistant: Here is a molecule that is {H271#not &NULL}{H271__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H272#not &NULL}{H272__names__noun}. + Assistant: Here is a molecule that is {H272#not &NULL}{H272__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H280#not &NULL}{H280__names__adjective}. + Assistant: Here is a molecule that is {H280#not &NULL}{H280__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H282#not &NULL}{H282__names__adjective}. + Assistant: Here is a molecule that is {H282#not &NULL}{H282__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H284#not &NULL}{H284__names__adjective}. + Assistant: Here is a molecule that is {H284#not &NULL}{H284__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H290#not &NULL}{H290__names__adjective}. + Assistant: Here is a molecule that is {H290#not &NULL}{H290__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H300#not &NULL}{H300__names__adjective}. + Assistant: Here is a molecule that is {H300#not &NULL}{H300__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H301#not &NULL}{H301__names__adjective}. + Assistant: Here is a molecule that is {H301#not &NULL}{H301__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H302#not &NULL}{H302__names__adjective}. + Assistant: Here is a molecule that is {H302#not &NULL}{H302__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H304#not &NULL}{H304__names__adjective}. + Assistant: Here is a molecule that is {H304#not &NULL}{H304__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H310#not &NULL}{H310__names__adjective}. + Assistant: Here is a molecule that is {H310#not &NULL}{H310__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H311#not &NULL}{H311__names__adjective}. + Assistant: Here is a molecule that is {H311#not &NULL}{H311__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H312#not &NULL}{H312__names__adjective}. + Assistant: Here is a molecule that is {H312#not &NULL}{H312__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H314#not &NULL}{H314__names__adjective}. + Assistant: Here is a molecule that is {H314#not &NULL}{H314__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H315#not &NULL}{H315__names__adjective}. + Assistant: Here is a molecule that is {H315#not &NULL}{H315__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H317#not &NULL}{H317__names__noun}. + Assistant: Here is a molecule that is {H317#not &NULL}{H317__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H318#not &NULL}{H318__names__adjective}. + Assistant: Here is a molecule that is {H318#not &NULL}{H318__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H319#not &NULL}{H319__names__adjective}. + Assistant: Here is a molecule that is {H319#not &NULL}{H319__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H330#not &NULL}{H330__names__adjective}. + Assistant: Here is a molecule that is {H330#not &NULL}{H330__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H331#not &NULL}{H331__names__adjective}. + Assistant: Here is a molecule that is {H331#not &NULL}{H331__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H332#not &NULL}{H332__names__adjective}. + Assistant: Here is a molecule that is {H332#not &NULL}{H332__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H334#not &NULL}{H334__names__adjective}. + Assistant: Here is a molecule that is {H334#not &NULL}{H334__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H335#not &NULL}{H335__names__noun}. + Assistant: Here is a molecule that is {H335#not &NULL}{H335__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H336#not &NULL}{H336__names__noun}. + Assistant: Here is a molecule that is {H336#not &NULL}{H336__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H340#not &NULL}{H340__names__noun}. + Assistant: Here is a molecule that is {H340#not &NULL}{H340__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H341#not &NULL}{H341__names__adjective}. + Assistant: Here is a molecule that is {H341#not &NULL}{H341__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H350#not &NULL}{H350__names__noun}. + Assistant: Here is a molecule that is {H350#not &NULL}{H350__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H351#not &NULL}{H351__names__adjective}. + Assistant: Here is a molecule that is {H351#not &NULL}{H351__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H360#not &NULL}{H360__names__noun}. + Assistant: Here is a molecule that is {H360#not &NULL}{H360__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H361#not &NULL}{H361__names__adjective}. + Assistant: Here is a molecule that is {H361#not &NULL}{H361__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H370#not &NULL}{H370__names__adjective}. + Assistant: Here is a molecule that is {H370#not &NULL}{H370__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H371#not &NULL}{H371__names__noun}. + Assistant: Here is a molecule that is {H371#not &NULL}{H371__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H371#not &NULL}{H371__names__adjective}. + Assistant: Here is a molecule that is {H371#not &NULL}{H371__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H372#not &NULL}{H372__names__adjective}. + Assistant: Here is a molecule that is {H372#not &NULL}{H372__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H373#not &NULL}{H373__names__noun}. + Assistant: Here is a molecule that is {H373#not &NULL}{H373__names__noun}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H400#not &NULL}{H400__names__adjective}. + Assistant: Here is a molecule that is {H400#not &NULL}{H400__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H410#not &NULL}{H410__names__adjective}. + Assistant: Here is a molecule that is {H410#not &NULL}{H410__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H411#not &NULL}{H411__names__adjective}. + Assistant: Here is a molecule that is {H411#not &NULL}{H411__names__adjective}: {SMILES#}. + - |- + Chemist: {#Give me|Propose|Come up with!} a molecule that is {H420#not &NULL}{H420__names__adjective}. + Assistant: Here is a molecule that is {H420#not &NULL}{H420__names__adjective}: {SMILES#}. + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H206#not &NULL}{H208__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H211#not &NULL}{H211__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H220#not &NULL}{H220__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H221#not &NULL}{H221__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H224#not &NULL}{H224__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H225#not &NULL}{H225__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H226#not &NULL}{H226__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H228#not &NULL}{H228__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H240#not &NULL}{H240__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H241#not &NULL}{H241__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H242#not &NULL}{H242__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H250#not &NULL}{H250__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H251#not &NULL}{H251__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H252#not &NULL}{H252__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H260#not &NULL}{H260__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H261#not &NULL}{H261__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H270#not &NULL}{H270__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H271#not &NULL}{H271__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H272#not &NULL}{H272__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H280#not &NULL}{H280__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H282#not &NULL}{H282__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H284#not &NULL}{H284__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H290#not &NULL}{H290__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H300#not &NULL}{H300__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H301#not &NULL}{H301__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H302#not &NULL}{H302__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H304#not &NULL}{H304__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H310#not &NULL}{H310__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H311#not &NULL}{H311__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H312#not &NULL}{H312__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H314#not &NULL}{H314__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H315#not &NULL}{H315__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H317#not &NULL}{H317__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H318#not &NULL}{H318__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H319#not &NULL}{H319__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H330#not &NULL}{H330__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H331#not &NULL}{H331__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H332#not &NULL}{H332__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H334#not &NULL}{H334__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H335#not &NULL}{H335__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H336#not &NULL}{H336__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H340#not &NULL}{H340__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H341#not &NULL}{H341__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H350#not &NULL}{H350__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H351#not &NULL}{H351__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H360#not &NULL}{H360__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H361#not &NULL}{H361__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H370#not &NULL}{H370__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H371#not &NULL}{H371__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H371#not &NULL}{H371__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H372#not &NULL}{H372__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H373#not &NULL}{H373__names__noun}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H400#not &NULL}{H400__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H410#not &NULL}{H410__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H411#not &NULL}{H411__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} + - |- + Task: Please classify a molecule based on the description. + Description: A molecule that is {H420#not &NULL}{H420__names__adjective}. + Result: {#Molecule |!}{SMILES__description}: {SMILES#} diff --git a/data/tabular/sigma_aldrich_safety_data/transform.py b/data/tabular/sigma_aldrich_safety_data/transform.py new file mode 100644 index 000000000..d3664cbbc --- /dev/null +++ b/data/tabular/sigma_aldrich_safety_data/transform.py @@ -0,0 +1,19 @@ +import pandas as pd +from huggingface_hub import hf_hub_download + + +def transform_data(): + file = hf_hub_download( + repo_id="chemNLP/msds_sigma_aldrich", + filename="msds.csv", + repo_type="dataset", + ) + + df = pd.read_csv(file) + df = df.drop(columns=["h_statements"]) + df = df.dropna() + df.to_csv("data_clean.csv") + + +if __name__ == "__main__": + transform_data()